@charset "UTF-8";

/* css reset */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
.no-click {
	pointer-events: none;
	cursor: default;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* add */
li {
  list-style: none;
}

video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

/* END css reset */
/* setting */
body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", "Yu Gothic", sans-serif;
  color: #3E4650;
  background: url("https://genova.co.jp/common/img/bgimg.png");
  background-size: contain;
  background-position: left 0 bottom 35%;
  background-attachment: fixed;
  background-repeat: repeat-y;
  background-color: #F2EEEB;
  overflow-wrap: break-word;
}

body#top {
  background: none;
  background-color: none;
}

body#top_en {
  background: none;
  background-color: none;
}

a {
  text-decoration: none;
  color: #368AC3;
}

img {
  width: 100%;
}

.marker {
  background: linear-gradient(transparent 40%, #FFF57E 0%);
  transition: 1s;
  font-weight: 600;
}

.font {
  font-family: "interstate", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.text-right {
  text-align: right;
}

.mb0 {
  margin-bottom: 0 !important;
}

.rotate-180 {
  transform: rotateY(180deg);
}

.center {
  text-align: center;
}

.c-red {
  color: #DA0048;
}

/* fadeIn */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeInD1 {
  -webkit-animation-name: fadeIn2Anime;
  animation-name: fadeIn2Anime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeIn2Anime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn2Anime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUp2 {
  -webkit-animation-name: fadeUp2Anime;
  animation-name: fadeUp2Anime;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUp2Anime {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp2Anime {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUp3 {
  -webkit-animation-name: fadeUpAnime3;
  animation-name: fadeUpAnime3;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime3 {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime3 {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUp4 {
  -webkit-animation-name: fadeUpAnime4;
  animation-name: fadeUpAnime4;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime4 {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime4 {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 拡大 */
.zIn {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 拡大 ディレイ1 */
.zInD1 {
  -webkit-animation-name: zoomIn1Anime;
  animation-name: zoomIn1Anime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomIn1Anime {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomIn1Anime {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 拡大 ディレイ2 */
.zInD2 {
  -webkit-animation-name: zoomIn2Anime;
  animation-name: zoomIn2Anime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomIn2Anime {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomIn2Anime {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 拡大 ディレイ3 */
.zInD3 {
  -webkit-animation-name: zoomIn3Anime;
  animation-name: zoomIn3Anime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomIn3Anime {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomIn3Anime {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 拡大 ディレイ4 */
.zInD4 {
  -webkit-animation-name: zoomIn4Anime;
  animation-name: zoomIn4Anime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomIn4Anime {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomIn4Anime {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.zIn-d3 {
  -webkit-animation-name: zoomIn3Anime;
  animation-name: zoomIn3Anime;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomIn3Anime {
  from {
    transform: scale(0.75);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomIn3Anime {
  from {
    transform: scale(0.75);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 縮小 */
.zOut {
  -webkit-animation-name: zoomOutAnime;
  animation-name: zoomOutAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.75);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.75);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ブラー */
.blur {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(20px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(20px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeLeft-d2 {
  -webkit-animation-name: fadeLeftAnime2;
  animation-name: fadeLeftAnime2;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime2 {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime2 {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeLeft-d3 {
  -webkit-animation-name: fadeLeftAnime3;
  animation-name: fadeLeftAnime3;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime3 {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime3 {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右へ */
.fr-1 {
  -webkit-animation-name: fadeRightAnimefr1;
  animation-name: fadeRightAnimefr1;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnimefr1 {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnimefr1 {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fr-2 {
  -webkit-animation-name: fadeRightAnimefr2;
  animation-name: fadeRightAnimefr2;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnimefr2 {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnimefr2 {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fr-3 {
  -webkit-animation-name: fadeRightAnimefr3;
  animation-name: fadeRightAnimefr3;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnimefr3 {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnimefr3 {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fr-4 {
  -webkit-animation-name: fadeRightAnimefr4;
  animation-name: fadeRightAnimefr4;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnimefr4 {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnimefr4 {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInT,
.fadeInD1T,
.fadeUpT,
.fadeUp2T,
.fadeUp3T,
.fadeUp4T,
.zInT,
.zInD1T,
.zInD2T,
.zInD3T,
.zInD4T,
.zIn-d3T,
.zOutT,
.blurT,
.fadeLeftT,
.fadeLeft-d2T,
.fadeLeft-d3T,
.fadeRightT,
.fr-1T,
.fr-2T,
.fr-3T,
.fr-4T {
  opacity: 0;
}

/* Btn */
.btn-default a {
  display: inline-block;
  border: 1px solid #DA0048;
  color: #DA0048;
  line-height: 1;
  padding: 20px 50px;
  transition: all 0.5s;
}
.btn-under a {
  display: inline-block;
  border: 1px solid #DA0048;
  color: #DA0048;
  line-height: 1;
  padding: 20px 50px;
  transition: all 0.5s;
  width: auto;
}
.btn-default2 a {
  display: inline-block;
  border: 1px solid #DA0048;
  color: #DA0048;
  line-height: 1;
  padding: 20px 50px;
  transition: all 0.5s;
  width: auto;
}

.btn-default a:hover {
  background-color: #DA0048;
  color: #fff;
}

.btn-mini a {
  display: inline-block;
  border: 1px solid #DA0048;
  color: #DA0048;
  line-height: 1;
  padding: 10px 15px;
  transition: all 0.5s;
}

.btn-mini a:hover {
  background-color: #DA0048;
  color: #fff;
}

.btn-white a {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  line-height: 1;
  padding: 20px 50px;
  transition: all 0.5s;
}

.btn-white a:hover {
  background-color: #BC0035;
  color: #fff;
}

.btn-other a {
  background-image: url(/common/img/icon_link_out.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.btn-under a {
  background-image: url(/common/img/icon_link_under.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
}

@media screen and (min-width: 768px) {
  .btn-default a:hover {
    background-color: #DA0048;
    color: #fff;
  }

  .h-s {
    display: inline-block;
    transition: all 0.3s ease 0s;
  }

  .h-s:hover {
    transform: scale(1.05);
  }
}

/* SP */
/* menu-btn */
.sp-menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9019607843);
  padding: 70px 0 0;
  transform: translateX(100vw);
  transition: all 0.3s linear;
  z-index: 10;
}

.sp-menu ul a {
  display: block;
  color: #3E4650;
  padding: 0.5rem 0 0.5rem 4rem;
}

.sp-menu ul li {
  margin: 0.5rem 0;
}

.sp-menu .header-lang {
  text-align: center;
  margin: 60px 0 0;
}

.sp-menu .header-lang a {
  border: solid 1px #3E4650;
  padding: 12px 20px;
  color: #3E4650;
}

.sp-menu .header-spmenu-sns {
  display: flex;
  justify-content: center;
  margin: 50px 0 0;
}

.sp-menu .header-spmenu-sns img {
  width: 45px;
  margin: 0 10px;
}

.sp-menu .header-spmenu-footlogo {
  margin: 50px auto 0;
  text-align: center;
}

.sp-menu .header-spmenu-footlogo img {
  width: 100px;
}

.sp-menu.is-active {
  transform: translateX(0);
}

.sp-menu-btn {
  position: fixed;
  top: 0.3rem;
  right: 1rem;
  z-index: 11;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background: #fff;
}

.sp-menu-btn .openbtn-area {
  transition: all 0.4s;
}

.sp-menu-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #3E4650;
  width: 45%;
}

.sp-menu-btn span:nth-of-type(1) {
  top: 15px;
}

.sp-menu-btn span:nth-of-type(2) {
  top: 23px;
}

.sp-menu-btn span:nth-of-type(3) {
  top: 31px;
}

.sp-menu-btn.active .openbtn-area {
  transform: rotateY(-360deg);
}

.sp-menu-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

.sp-menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.sp-menu-btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

/* head */
#head .header-wrap {
  display: flex;
  background-color: #fff;
  height: 60px;
  border-bottom: 1px #ccc solid;
}

#head .header-wrap .header-logo {
  width: 115px;
  margin: auto;
}

#head .header-wrap .header-logo img {
  margin-top: 2px;
}

#mv .mv-wrapper {
  background: center center no-repeat #111;
  background-size: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  width: 100%;
  position: relative;
}

#mv .mv-wrapper .mv-inner {
  height: 140px;
}

#mv .mv-wrapper .mv-inner .mv-title {
  animation: headtext 0.9s ease-in-out 0.8s forwards;
  -webkit-animation: headtext 0.9s ease-in-out 0.8s forwards;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 40px;
  margin: auto;
  z-index: 6;
  opacity: 0;
  transform: translate(-3%, -50%);
  -webkit-transform: translate(-3%, -50%);
}

#mv .mv-wrapper .mv-inner .mv-title p {
  font-size: 15px;
  margin-bottom: 10px;
}

#mv .mv-wrapper .mv-inner .mv-title h2 {
  font-size: 35px;
  color: #fff;
}

#mv .mv-wrapper .mv-inner .mv-inner-left {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
}

#mv .mv-wrapper .mv-inner .mv-inner-left .p-l-1 {
  opacity: 0;
  fill: #790428;
  z-index: 5;
  animation: headpoly1 0.9s ease-in-out 0.1s forwards;
  -webkit-animation: headpoly1 0.9s ease-in-out 0.1s forwards;
}

#mv .mv-wrapper .mv-inner .mv-inner-left .p-l-2 {
  opacity: 0;
  fill: #C73859;
  z-index: 1;
  animation: headpoly2 1.3s ease-in-out 0.5s forwards;
  -webkit-animation: headpoly2 1.3s ease-in-out 0.5s forwards;
}

#mv .mv-wrapper .mv-inner .mv-inner-right {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  height: 100%;
}

#mv .mv-wrapper .mv-inner .mv-inner-right .p-r-1 {
  opacity: 0;
  fill: #960632;
  animation: headpoly3 1.3s ease-in-out 0.5s forwards;
  -webkit-animation: headpoly3 1.3s ease-in-out 0.5s forwards;
}

#mv .mv-wrapper .mv-inner .mv-movie {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  overflow: hidden;
}

#mv .mv-wrapper .mv-inner .mv-movie .mv-movie-ani {
  animation: headmv 1.7s ease-in-out 0s forwards;
  -webkit-animation: headmv 1.7s ease-in-out 0s forwards;
  opacity: 0;
}

#mv .mv-wrapper .mv-inner .mv-movie video {
  width: 100%;
}

#mv .mv-wrapper .mv-inner .mv-movie::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(81, 180, 217, 0.7007396709) 0%, rgba(203, 88, 185, 0.6979385504) 100%);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

/* PC */
@media screen and (min-width: 768px) {
  .sp-menu-btn {
    display: none;
  }

  .sp-menu {
    display: none;
  }

  #head {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 120px;
  }

  #head .header-wrap {
    display: flex;
    border-bottom: none;
    background-color: #fff;
    height: 120px;
    padding: 0 60px;
  }

  #head .header-wrap.view {
    position: fixed;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9019607843);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
    width: calc(100% - 80px);
    max-width: 1100px;
    height: 70px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: none;
    border-radius: 0px 0px 7px 7px;
    padding: 0 40px;
  }

  #head .header-wrap.view .header-logo {
    width: 120px;
  }

  #head .header-wrap.view .header-logo img {
    width: 120px;
  }

  #head .header-wrap .header-logo {
    margin: auto;
    width: 160px;
  }

  #head .header-wrap .header-logo img {
    width: 160px;
  }

  #head .header-wrap .header-list {
    position: relative;
    margin: auto;
    width: 100%;
  }

  #head .header-wrap .header-list ul {
    display: flex;
    justify-content: right;
    margin-right: 15px;
  }

  #head .header-wrap .header-list ul li {
    margin: 11px 0 0 0;
    padding-bottom: 10px;
  }

  #head .header-wrap .header-list ul li a,
  #head .header-wrap .header-list ul li > span {
    position: relative;
    font-size: 16px;
    padding: 13px 15px;
    color: #3E4650;
    transition: all 0.5s;
    cursor: pointer;
  }

  #head .header-wrap .header-list ul li a::after,
  #head .header-wrap .header-list ul li > span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100% - 30px);
    height: 5px;
    background: #41a2e3;
    transition: all 0.3s;
    transform: scale(0, 1);
    transform-origin: center top;
  }

  #head .header-wrap .header-list ul li a:hover::after,
  #head .header-wrap .header-list ul li > span:hover::after {
    transform: scale(1, 1);
  }

  #head .header-wrap .header-list ul li.on a,
  #head .header-wrap .header-list ul li.on > span {
    position: relative;
  }

  #head .header-wrap .header-list ul li.on a::after,
  #head .header-wrap .header-list ul li.on > span::after {
    transform: scale(1, 1);
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: calc(100% - 30px);
    margin-left: 15px;
    height: 5px;
    background-color: #DA0048;
  }

  #head .header-wrap .header-lang {
    margin: auto;
  }

  #head .header-wrap .header-lang a {
    border: solid 1px #3E4650;
    padding: 12px 20px;
    color: #3E4650;
    transition: all 0.7s;
  }

  #head .header-wrap .header-lang a:hover {
    background-color: #DA0048;
    color: #fff;
  }

  #mv .off .mv-wrapper .mv-inner .mv-title {
    animation: headtext 0.01s ease-in-out 0.01s forwards !important;
    -webkit-animation: headtext 0.01s ease-in-out 0.01s forwards !important;
  }

  #mv .off .mv-wrapper .mv-inner .mv-inner-left .p-l-1 {
    animation: headpoly1 0.01s ease-in-out 0.01s forwards !important;
    -webkit-animation: headpoly1 0.01s ease-in-out 0.01s forwards !important;
  }

  #mv .off .mv-wrapper .mv-inner .mv-inner-left .p-l-2 {
    animation: headpoly2 0.01s ease-in-out 0.01s forwards !important;
    -webkit-animation: headpoly2 0.01s ease-in-out 0.01s forwards !important;
  }

  #mv .off .mv-wrapper .mv-inner .mv-inner-right .p-r-1 {
    animation: headpoly3 0.01s ease-in-out 0.01s forwards !important;
    -webkit-animation: headpoly3 0.01s ease-in-out 0.01s forwards !important;
  }

  #mv .off .mv-wrapper .mv-inner .mv-movie .mv-movie-ani {
    animation: headmv 0.01s ease-in-out 0.01s forwards !important;
    -webkit-animation: headmv 0.01s ease-in-out 0.01s forwards !important;
  }

  #mv .mv-wrapper {
    background: center center no-repeat #111;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  #mv .mv-wrapper .mv-inner {
    height: 400px;
  }

  #mv .mv-wrapper .mv-inner .mv-title {
    animation: headtext 0.9s ease-in-out 2s forwards;
    -webkit-animation: headtext 0.9s ease-in-out 2s forwards;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 120px;
    margin: auto;
    z-index: 6;
    opacity: 0;
    transform: translate(-3%, -50%);
    -webkit-transform: translate(-3%, -50%);
  }

  #mv .mv-wrapper .mv-inner .mv-title p {
    font-size: 25px;
    margin-left: 5px;
    margin-bottom: 10px;
    letter-spacing: 0.25em;
  }

  #mv .mv-wrapper .mv-inner .mv-title h2 {
    font-size: 100px;
    color: #fff;
  }

  #mv .mv-wrapper .mv-inner .mv-inner-left {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
  }

  #mv .mv-wrapper .mv-inner .mv-inner-left .p-l-1 {
    opacity: 0;
    fill: #790428;
    z-index: 5;
    animation: headpoly1 0.9s ease-in-out 1.3s forwards;
    -webkit-animation: headpoly1 0.9s ease-in-out 1.3s forwards;
  }

  #mv .mv-wrapper .mv-inner .mv-inner-left .p-l-2 {
    opacity: 0;
    fill: #C73859;
    z-index: 1;
    animation: headpoly2 1.3s ease-in-out 1.5s forwards;
    -webkit-animation: headpoly2 1.3s ease-in-out 1.5s forwards;
  }

  #mv .mv-wrapper .mv-inner .mv-inner-right {
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    height: 100%;
  }

  #mv .mv-wrapper .mv-inner .mv-inner-right .p-r-1 {
    opacity: 0;
    fill: #960632;
    animation: headpoly3 1.3s ease-in-out 1.5s forwards;
    -webkit-animation: headpoly3 1.3s ease-in-out 1.5s forwards;
  }

  #mv .mv-wrapper .mv-inner .mv-movie {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0%;
    overflow: hidden;
  }

  #mv .mv-wrapper .mv-inner .mv-movie .mv-movie-ani {
    animation: headmv 1.7s ease-in-out 0.1s forwards;
    -webkit-animation: headmv 1.7s ease-in-out 0.1s forwards;
    opacity: 0;
  }

  #mv .mv-wrapper .mv-inner .mv-movie video {
    width: 100%;
  }

  #mv .mv-wrapper .mv-inner .mv-movie::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(81, 180, 217, 0.7007396709) 0%, rgba(203, 88, 185, 0.6979385504) 100%);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
  }
}

@-webkit-keyframes headtext {
  from {
    transform: translate(0, -50%) scale(1.2);
    opacity: 0;
  }

  to {
    transform: translate(0, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes headtext {
  from {
    transform: translate(0, -50%) scale(1.2);
    opacity: 0;
  }

  to {
    transform: translate(0, -50%) scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes headpoly1 {
  0% {
    transform: translate(0, 100%);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes headpoly1 {
  0% {
    transform: translate(0, 100%);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes headpoly2 {
  0% {
    transform: translate(0, -100%);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes headpoly2 {
  0% {
    transform: translate(0, -100%);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes headpoly3 {
  0% {
    transform: translate(100%, 0);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes headpoly3 {
  0% {
    transform: translate(100%, 0);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes headmv {
  from {
    transform: scale(2);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes headmv {
  from {
    transform: scale(2);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* SP */
.footer-wrap {
  background-color: #DA0048;
  margin-top: 50px;
  padding: 40px 0 30px;
}

.footer-wrap .footer-box .footer-left-area .footer-left-front .footer-logo {
  width: 170px;
  margin: 0 auto 30px;
}

.footer-wrap .footer-box .footer-left-area .footer-left-front .footer-logo img {
  margin-bottom: 10px;
}

.footer-wrap .footer-box .footer-left-area .footer-left-front .footer-contact {
  display: none;
}

.footer-wrap .footer-box .footer-left-area .footer-left-under {
  display: none;
}

.footer-wrap .footer-box .footer-right-area .footer-bn {
  margin: 0 auto 40px;
  width: 300px;
}

.footer-wrap .footer-box .footer-right-area .footer-sns {
  text-align: center;
  margin-bottom: 40px;
}

.footer-wrap .footer-box .footer-right-area .footer-sns a {
  margin: 0 10px;
}

.footer-wrap .footer-box .footer-right-area .footer-sns img {
  width: 43px;
}

.footer-wrap .footer-copyright {
  text-align: center;
  color: #fff;
  font-size: 14px;
}

/* PC */
@media screen and (min-width: 768px) {
  .footer-wrap {
    background-color: #DA0048;
    margin-top: 100px;
    padding: 100px 100px 40px;
  }

  .footer-wrap .footer-box {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 70px;
  }

  .footer-wrap .footer-box .footer-left-area {
    min-width: 540px;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-front {
    display: flex;
    margin-bottom: 70px;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-front .footer-logo {
    width: 200px;
    margin: 0;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-front .footer-logo img {
    margin-bottom: 10px;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-front .footer-contact {
    display: initial;
    padding: 20px 60px;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-front .footer-contact a {
    font-size: 15px;
    color: #fff;
    border: 1px solid #fff;
    padding: 20px 60px;
    line-height: 1;
    transition: all 0.5s;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-front .footer-contact a:hover {
    background-color: #BC0035;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-under {
    display: initial;
    margin-bottom: 60px;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-under ul.footer-menu-front {
    font-size: 14px;
    display: flex;
    margin-bottom: 25px;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-under ul.footer-menu-front li {
    list-style: none;
    margin-right: 20px;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-under ul.footer-menu-front a {
    color: #fff;
    transition: all 0.5s;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-under ul.footer-menu-front a:hover {
    opacity: 0.5;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-under ul.footer-menu-under {
    font-size: 12px;
    display: flex;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-under ul.footer-menu-under li {
    list-style: none;
    margin-right: 20px;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-under ul.footer-menu-under a {
    color: #fff;
    list-style: none;
    transition: all 0.5s;
  }

  .footer-wrap .footer-box .footer-left-area .footer-left-under ul.footer-menu-under a:hover {
    opacity: 0.5;
  }

  .footer-wrap .footer-box .footer-right-area {
    min-width: 250px;
  }

  .footer-wrap .footer-box .footer-right-area .footer-bn {
    margin: 0 0 40px 0;
    width: 300px;
  }

  .footer-wrap .footer-box .footer-right-area .footer-bn a {
    opacity: 1;
    transition: all 0.5s;
  }

  .footer-wrap .footer-box .footer-right-area .footer-bn a:hover {
    opacity: 0.6;
  }

  .footer-wrap .footer-box .footer-right-area .footer-sns {
    text-align: right;
    margin-bottom: 0;
  }

  .footer-wrap .footer-box .footer-right-area .footer-sns a {
    margin: 0 0 0 20px;
    opacity: 1;
    transition: all 0.5s;
  }

  .footer-wrap .footer-box .footer-right-area .footer-sns a:hover {
    opacity: 0.5;
  }

  .footer-wrap .footer-box .footer-right-area .footer-sns img {
    width: 43px;
  }

  .footer-wrap .footer-copyright {
    text-align: center;
    color: #fff;
    font-size: 14px;
  }
}

/* SP */
.top_mv_wrap {
  position: relative;
}

.top_mv_wrap .top_mv_mov {
  position: fixed;
  z-index: -1;
  width: 100%;
  background-color: #fff;
}

.top_mv_wrap .top_mv_mov video {
  width: 100%;
  margin-top: 30px;
}

.top_mv_wrap .top_mv_block {
  position: absolute;
  z-index: 2;
  top: 50px;
  width: 100%;
  height: 100%;
}

.top_mv_wrap .top_mv_block .top_mv_txt {
  width: calc(100% - 4em);
  margin: auto;
  padding: 0 2em;
}

.top_mv_wrap .top_mv_block .top_mv_txt .top_mv_title {
  width: 100%;
  max-width: 780px;
}

.top_mv_wrap .top_mv_block .top_mv_txt .top_mv_title_sub {
  margin-top: 15px;
  padding: 0 1em;
}
.top_mv_wrap .top_mv_block .top_mv_txt .top_mv_notice {
  margin-top: 100px;
}

.top_pickup_wrap {
  position: relative;
  z-index: 2;
  padding-top: 275px;
  padding-bottom: 55px;
  width: 100%;
}

.top_pickup_wrap .top_pickup_slide .top_pickup_slide_block {
  max-width: 250px;
  min-height: 390px;
  background: #F2EEEB;
  border-radius: 7px;
  padding: 30px;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
}

.top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_left {
  order: 2;
  max-width: 270px;
  margin-right: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_left .top_pickup_title {
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
}

.top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_left img {
  width: 80%;
  margin: 0 auto 20px;
}

.top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_left p {
  line-height: 1.5;
  font-size: 14px;
  margin: 0 0 10px;
}

.top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_left .btn-default {
  margin-top: auto;
  text-align: center;
}

.top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_right {
  width: 100%;
  order: 1;
  margin-bottom: 20px;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li {
  margin: 0 3px;
}

.slick-dots li button {
  background: #A5AEBA;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  opacity: 1;
}

.slick-dots li button::before {
  color: #A5AEBA;
}

.slick-dots li.slick-active button:before {
  background: #DA0048;
  color: #DA0048;
  opacity: 1;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

.top_service_wrap {
  background-color: none;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.top_service_wrap .top_service_txt_block {
  display: block;
}

.top_service_wrap .top_service_txt_block .top_service_txt_bg {
  display: none;
}

.top_service_wrap .top_service_txt_block .top_service_txt {
  margin: 0 1.5em 0;
}

.top_service_wrap .top_service_txt_block .top_service_txt h2 {
  font-size: 20px;
  font-weight: 500;
  margin-left: 5px;
  margin-bottom: 10px;
  text-align: center;
}

.top_service_wrap .top_service_txt_block .top_service_txt h3 {
  font-size: 60px;
  margin-bottom: 30px;
  text-align: center;
  color: #DA0048;
}

.top_service_wrap .top_service_txt_block .top_service_txt h3 a {
  position: relative;
  color: #DA0048;
}

.top_service_wrap .top_service_txt_block .top_service_txt h3 a::after {
  position: absolute;
  bottom: 14px;
  right: -30px;
  display: block;
  width: 25px;
  height: 25px;
  content: " ";
  background-image: url(/common/img/icon_link_under.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  transition: all 0.5s;
}

.top_service_wrap .top_service_txt_block .top_service_txt p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 20px;
}

.top_service_wrap .top_service_txt_block .top_service_txt .btn-default {
  margin-bottom: 40px;
}

/*0517追加*/
.top_service_wrap_1 .top_service_txt_block {
  display: block;
}

.top_service_wrap_1 .top_service_txt_block .top_service_txt_bg {
  display: none;
}

.top_service_wrap_1 .top_service_txt_block .top_service_txt {
  margin: 0 1.5em 0;
}

.top_service_wrap_1 .top_service_txt_block .top_service_txt h2 {
  font-size: 20px;
  font-weight: 500;
  margin-left: 5px;
  margin-bottom: 10px;
  text-align: center;
}

.top_service_wrap_1 .top_service_txt_block .top_service_txt h3 {
  font-size: 60px;
  margin-bottom: 30px;
  text-align: center;
  color: #DA0048;
}

.top_service_wrap_1 .top_service_txt_block .top_service_txt h3 a {
  position: relative;
  color: #DA0048;
}

.top_service_wrap_1 .top_service_txt_block .top_service_txt h3 a::after {
  position: absolute;
  bottom: 14px;
  right: -30px;
  display: block;
  width: 25px;
  height: 25px;
  content: " ";
  background-image: url(/common/img/icon_link_under.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  transition: all 0.5s;
}

.top_service_wrap_1 .top_service_txt_block .top_service_txt p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 20px;
}

.top_service_wrap_1 .top_service_txt_block .top_service_txt .btn-default {
  margin-bottom: 40px;
}



/*0522追加*/
.top_service_wrap_1 .top_service_txt_block {
  position: relative;
  z-index: 1;
  background-color: transparent;
  width: 100%;
  padding-top: 50px;
}

.top_service_wrap_1 .top_service_txt_block .top_service_txt h3 {
  margin-bottom: 0 !important;
  font-size: 56px;
  white-space: nowrap;
}

.top_service_wrap_1 .top_service_txt_block .top_service_txt h3 span {
  position: relative;
  left: 50%;
  transform: translateX(-50%) !important;
  display: block;
  width: max-content;
}

.top_service_philosophy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 200px;
}

@media screen and (min-width:767px) {
  .top_service_philosophyBlock {
    aspect-ratio: 1 / 1;
    position: relative;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 353px;
    margin: -24px;
    border-radius: 100%;
    background-color: rgb(255 255 255 / 0.5);
    filter: drop-shadow(0 10px 50px rgb(0 0 0 / 0.16));
    text-align: center;
  }

  .top_service_philosophyBlock_en {
    aspect-ratio: 1 / 1;
    position: relative;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 353px;
    margin: -24px;
    border-radius: 100%;
    background-color: rgb(255 255 255 / 0.5);
    filter: drop-shadow(0 10px 50px rgb(0 0 0 / 0.16));
    text-align: center;
  }

  .top_service_philosophyBlock h4 {
    margin-bottom: 36px;
    color: #DA0048;
    font-size: 30px;
    font-weight: 700;
  }

  .top_service_philosophyBlock_en h4 {
    margin-bottom: 36px;
    color: #DA0048;
    font-size: 30px;
    font-weight: 700;
  }

  .top_service_philosophy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 200px;
  }
}

@media screen and (max-width:767px) {
  .top_service_philosophyBlock {
    aspect-ratio: 1 / 1;
    position: relative;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 353px;
    margin: -24px 0px -120px 0px;
    border-radius: 100%;
    /*background-color: rgb(255 255 255 / 0.5);*/
    filter: drop-shadow(0 10px 50px rgb(0 0 0 / 0.16));
    text-align: center;
  }

  .top_service_philosophyBlock_en {
    aspect-ratio: 1 / 1;
    position: relative;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 353px;
    margin: -24px 0px -60px 0px;
    border-radius: 100%;
    /*background-color: rgb(255 255 255 / 0.5);*/
    filter: drop-shadow(0 10px 50px rgb(0 0 0 / 0.16));
    text-align: center;
  }

  .top_service_philosophyBlock h4 {
    margin-bottom: 30px;
    color: #DA0048;
    font-size: 30px;
    font-weight: 700;
  }

  .top_service_philosophyBlock_en h4 {
    margin-bottom: 30px;
    color: #DA0048;
    font-size: 30px;
    font-weight: 700;
  }

  .top_service_philosophy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }

}

/*.top_service_philosophyBlock h4 {
  margin-bottom: 36px;
  color: #DA0048;
  font-size: 35px;
  font-weight: 700;
}*/

@media screen and (max-width:767px) {
  .top_service_philosophyBlock p {
    font-size: 24px;
    line-height: 35px;
    white-space: nowrap;
  }

  .top_service_philosophyBlock_en p {
    font-size: 24px;
    line-height: 35px;
    white-space: nowrap;
  }
}

@media screen and (min-width:767px) {
  .top_service_philosophyBlock p {
    font-size: 22px;
    line-height: 35px;
    white-space: nowrap;
  }

  .top_service_philosophyBlock_en p {
    font-size: 22px;
    line-height: 35px;
    white-space: nowrap;
  }
}

/*0522追加*/

/*0709追加*/
.top_service_txt--min {
  margin-top: 64px;
}

.top_service_txt--min :is(h3, h4) {
  color: #DA0048;
  font-size: 40px;
  text-align: center;
}

.top_service_txt--min p {
  margin-top: 40px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  line-height: 1.25;
}

@media screen and (max-width:767px) {
  .top_service_txt--min+.top_service_philosophy {
    margin-top: -40px;
  }
}

@media screen and (min-width:767px) {
  .top_service_txt--min+.top_service_philosophy {
    margin-top: 40px;
  }
}

/*0709追加*/

/*0716追加*/
.top_service_video {
  max-width: 672px;
  margin-top: 64px;
  margin-inline: auto;
}

.top_service_video iframe {
  aspect-ratio: 16 / 9;
  display: block;
}

/*0716追加*/


.top_service_wrap .top_service_ublock {
  display: initial;
}

.top_service_wrap .top_service_ublock .top_service_mp {
  width: calc(100% - 4em);
  margin: 0 auto 1em;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_service_wrap .top_service_ublock .top_service_mp a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  border-radius: 7px;
  align-items: center;
  background: #E8E8EA;
  overflow: hidden;
}

.top_service_wrap .top_service_ublock .top_service_mp h3 {
  text-align: left;
  font-size: 25px;
  margin-left: 1em;
  color: #DA0048;
}

.top_service_wrap .top_service_ublock .top_service_mp img {
  width: initial;
  height: 80%;
  border-radius: 7px;
  margin: 0 2em 0 0;
  display: block;
}

.top_service_wrap .top_service_ublock .top_service_sc {
  width: calc(100% - 4em);
  margin: auto;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_service_wrap .top_service_ublock .top_service_sc a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  border-radius: 7px;
  align-items: center;
  background: #E8E8EA;
  overflow: hidden;
}

.top_service_wrap .top_service_ublock .top_service_sc h3 {
  text-align: left;
  font-size: 25px;
  margin-left: 1em;
  color: #DA0048;
}

.top_service_wrap .top_service_ublock .top_service_sc img {
  width: initial;
  height: 100%;
  border-radius: 7px;
  margin: 0;
  display: block;
}

.top_service_wrap .top_service_more {
  background: linear-gradient(90deg, rgb(172, 48, 73) 0%, rgb(200, 42, 75) 50%, rgb(172, 48, 73) 100%);
  display: block;
  padding: 1.5em;
}

.top_service_wrap .top_service_more p {
  font-size: 14px;
  line-height: 2;
  margin: 0 0 0 0;
  color: #fff;
  margin-bottom: 10px;
}

.top_service_wrap .top_service_more .btn-default {
  text-align: center;
}

.top_company_wrap {
  padding: 100px 0 100px 0;
  margin: 0 0 0 0;
}

.top_company_wrap .top_company_title {
  margin: 0 1.5em 0;
  text-align: center;
}

.top_company_wrap .top_company_title h2 {
  font-size: 20px;
  font-weight: 500;
  margin-left: 5px;
  margin-bottom: 10px;
}

.top_company_wrap .top_company_title h3 {
  font-size: 60px;
  margin-bottom: 30px;
  color: #DA0048;
}

.top_company_wrap .top_company_title h3 a {
  position: relative;
  color: #DA0048;
}

.top_company_wrap .top_company_title h3 a::after {
  position: absolute;
  bottom: 14px;
  right: -20px;
  display: block;
  width: 25px;
  height: 25px;
  content: " ";
  background-image: url(/common/img/icon_link_under.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  transition: all 0.5s;
}

.top_company_wrap .top_company_list {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0;
  padding: 1% 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.top_company_wrap .top_company_list .top_company_list_block {
  width: 47%;
  margin: 1% 1% 1% 1%;
  position: relative;
}

.top_company_wrap .top_company_list .top_company_list_block a {
  color: #3E4650;
}

.top_company_wrap .top_company_list .top_company_list_block .top_company_list_txt {
  position: absolute;
  z-index: 3;
  width: 90%;
  height: 90%;
  background: rgba(255, 255, 255, 0.7019607843);
  top: 5%;
  left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top_company_wrap .top_company_list .top_company_list_block .top_company_list_txt p {
  color: #DA0048;
  margin-bottom: 10px;
  font-size: 25px;
}

.top_company_wrap .top_company_list .top_company_list_block .top_company_list_txt h3 {
  font-weight: 500;
}

.top_company_wrap .top_company_list .top_company_list_block .top_company_list_bg {
  position: relative;
  z-index: 2;
  top: 0;
}

.top_ir_wrap {
  background-image: url(/common/img/ir/ir_top_bg_sp.png);
  background-repeat: no-repeat;
  background-size: 80%;
  background-color: #FAFAFA;
  padding: 50px 0;
  margin-bottom: 100px;
}

.top_ir_wrap .top_ir_title {
  margin: 0 1.5em 0;
  text-align: center;
}

.top_ir_wrap .top_ir_title h2 {
  font-size: 20px;
  font-weight: 500;
  margin-left: 5px;
  margin-bottom: 10px;
}

.top_ir_wrap .top_ir_title h3 {
  font-size: 60px;
  margin-bottom: 30px;
  color: #DA0048;
}

.top_ir_wrap .top_ir_title h3 a {
  position: relative;
  color: #DA0048;
}

.top_ir_wrap .top_ir_title h3 a::after {
  position: absolute;
  bottom: 14px;
  right: -30px;
  display: block;
  width: 25px;
  height: 25px;
  content: " ";
  background-image: url(/common/img/icon_link_under.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  transition: all 0.5s;
}

.top_ir_wrap .top_ir_block .top_ir_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: baseline;
  margin-bottom: 50px;
}

.top_ir_wrap .top_ir_block .top_ir_list figure {
  width: 40%;
  display: inline-block;
  margin: 0 2.5% 7.5%;
}

.top_ir_wrap .top_ir_block .top_ir_list figure:nth-child(3) {
  margin: 0 2.5% 0;
}

.top_ir_wrap .top_ir_block .top_ir_list figure:nth-child(4) {
  margin: 0 2.5% 0;
}

.top_ir_wrap .top_ir_block .top_ir_list figure figcaption {
  text-align: center;
  color: #3E4650;
  margin-top: 0.5em;
}

.top_ir_wrap .top_ir_block .top_ir_newsblock {
  margin: 0 1.5em;
  line-height: 1.5;
}

.top_recruit_wrap {
  background-color: #F2EEEB;
  padding: 2em 1.5em;
  margin: 4em 1.5em 1.5em;
  border-radius: 10px;
  max-width: 1150px;
}

.top_recruit_wrap .top_recruit_title {
  text-align: center;
}

.top_recruit_wrap .top_recruit_title h2 {
  font-size: 18px;
  font-weight: 500;
  margin-left: 5px;
  margin-bottom: 10px;
}

.top_recruit_wrap .top_recruit_title h3 {
  font-size: 42px;
  margin-bottom: 15px;
}

.top_recruit_wrap .top_recruit_title h3 a {
  position: relative;
  color: #DA0048;
}

.top_recruit_wrap .top_recruit_title h3 a::after {
  position: absolute;
  bottom: 11px;
  right: -25px;
  display: block;
  width: 25px;
  height: 25px;
  content: " ";
  background-image: url(/common/img/icon_link_under.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  transition: all 0.5s;
}

.top_recruit_wrap .top_recruit_block .top_recruit_img {
  margin: 0 0 15px 0;
}

.top_recruit_wrap .top_recruit_block .top_recruit_txt {
  text-align: center;
}

.top_recruit_wrap .top_recruit_block .top_recruit_txt h3 {
  font-size: 28px;
  color: #DA0048;
  font-weight: 500;
  margin: 0 0 20px 0;
}

.top_recruit_wrap .top_recruit_block .top_recruit_txt h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.top_recruit_wrap .top_recruit_block .top_recruit_txt p {
  font-size: 12px;
  margin: 0 0 30px 0;
  line-height: 1.5;
}

/* TOP NEWS */
.genova-top-news {
  background: initial;
}

.genova-top-news-inner {
  padding: 30px 30px 50px;
  margin: 0 0 -50px 0;
}

.genova-top-news .genova-heading {
  position: relative;
  font-size: 20px;
  text-align: center;
}

.genova-top-news .genova-front {
  position: absolute;
  top: -20px;
  font-weight: 500;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: -25px 0 0 0;
  line-height: 50px;
  text-align: center;
}

.genova-top-news .genova-background {
  color: #DA0048;
  display: inline-block;
  font-size: 70px;
  line-height: 1;
}

.genova-top-news .genova-left .genova-more-wrapper {
  display: none;
}

.genova-top-news .genova-right {
  margin-top: 35px;
  font-size: 15px;
}

.genova-top-news .genova-right ul {
  padding: 0;
  margin: 0;
}

.genova-top-news .genova-right li {
  padding: 0;
  margin: 0;
  font-weight: 500;
  list-style: none;
}

.genova-top-news .genova-right li time {
  font-weight: normal;
}

.genova-top-news .genova-right ul:nth-of-type(n+2) {
  margin-top: 25px;
}

.genova-top-news .genova-right ul li:nth-of-type(n+2) {
  margin-top: 8px;
}

.genova-top-news .genova-right a {
  display: inline-block;
  line-height: 1.4;
  color: #3E4650;
}

.genova-top-news .genova-more-wrapper {
  margin-top: 35px;
  text-align: right;
}

.genova-top-news .genova-more-wrapper .genova-more {
  position: relative;
  display: inline-block;
  padding-right: 48px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
  color: #3E4650;
  transition: all 0.5s;
}

.genova-top-news .genova-more-wrapper .genova-more::after {
  position: absolute;
  top: -9px;
  right: 0;
  display: block;
  width: 35px;
  height: 35px;
  content: " ";
  background-image: url(/common/img/icon_link_under.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  transition: all 0.5s;
}

.genova-top-news .genova-new {
  position: relative;
  top: -1px;
  display: inline-block;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  color: #3E4650;
  text-align: center;
  margin-left: 6px;
  background: #FFF57E;
}

/* PC */
@media screen and (min-width: 768px) {
  .top_mv_wrap {
    position: relative;
    height: 100vh;
    min-height: 1000px;
    margin: -120px 0 0 0;
  }

  .top_mv_wrap .top_mv_mov {
    z-index: -1;
    top: 20vh;
    width: 100%;
    background-color: #fff;
    padding-bottom: 0;
  }

  .top_mv_wrap .top_mv_mov video {
    width: 100%;
    margin-top: 0;
  }

  .top_mv_wrap .top_mv_block {
    position: absolute;
    z-index: 2;
    top: 23%;
    width: 100%;
    height: 100%;
  }

  .top_mv_wrap .top_mv_block .top_mv_txt {
    width: calc(100% - 200px);
    max-width: 1300px;
    margin: auto;
    padding: 0 100px;
  }

  .top_mv_wrap .top_mv_block .top_mv_txt .top_mv_title {
    width: 100%;
    max-width: 780px;
  }

  .top_mv_wrap .top_mv_block .top_mv_txt .top_mv_title_sub {
    width: 100%;
    max-width: 570px;
    margin-top: 35px;
    padding: 0;
  }
  
  .top_mv_wrap .top_mv_block .top_mv_txt .top_mv_notice {
    width: 35%;
    margin-top: 220px;
  }

  .top_pickup_wrap {
    position: relative;
    z-index: 2;
    padding-top: 0;
    margin-top: -400px;
    padding-bottom: 105px;
    width: 100%;
  }

  .top_pickup_wrap .top_pickup_slide .top_pickup_slide_block {
    max-width: initial;
    width: 610px;
    min-height: initial;
    background: #F2EEEB;
    border-radius: 7px;
    padding: 30px;
    margin: 0 15px;
    display: flex;
    flex-direction: row;
  }

  .top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_left {
    order: 0;
    max-width: 280px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
  }

  .top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_left .top_pickup_title {
    text-align: initial;
  }

  .top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_left img {
    margin: 0 0 20px;
  }

  .top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_left p {
    line-height: 1.5;
    font-size: 15px;
  }

  .top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_left .btn-default {
    margin: auto 0 0;
    text-align: initial;
  }

  .top_pickup_wrap .top_pickup_slide .top_pickup_slide_block .top_pickup_right {
    width: 300px;
    order: 2;
    margin-bottom: 0;
  }

  .slick-dots {
    bottom: -50px;
  }

  .slick-dots li {
    margin: 0 5px;
  }

  .slick-dots li button {
    background: #A5AEBA;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    opacity: 1;
  }

  .slick-dots li button::before {
    color: #A5AEBA;
  }

  .slick-dots li.slick-active button:before {
    background: #DA0048;
    color: #DA0048;
    opacity: 1;
    border-radius: 50%;
    width: 15px;
    height: 15px;
  }

  .top_service_wrap {
    width: 100%;
    margin: 150px 0 100px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .top_service_wrap .top_service_txt_block {
    display: flex;
    justify-content: center;
  }

  .top_service_wrap .top_service_txt_block .top_service_txt_bg {
    display: initial;
    width: 100%;
    max-width: 600px;
    background-image: url(/common/img/top/top_service_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
  }

  .top_service_wrap .top_service_txt_block .top_service_txt {
    margin: 0;
  }

  .top_service_wrap .top_service_txt_block .top_service_txt h2 {
    font-size: 30px;
    font-weight: 500;
    margin-left: 5px;
    margin-bottom: 20px;
  }

  .top_service_wrap .top_service_txt_block .top_service_txt h3 {
    font-size: 100px;
    margin-bottom: 50px;
  }

  .top_service_wrap .top_service_txt_block .top_service_txt h3 a {
    position: relative;
    color: #DA0048;
    padding-right: 50px;
  }

  .top_service_wrap .top_service_txt_block .top_service_txt h3 a::after {
    position: absolute;
    bottom: 13px;
    right: 0;
    display: block;
    width: 35px;
    height: 35px;
    content: " ";
    background-image: url(/common/img/icon_link_under.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
    transition: all 0.5s;
  }

  .top_service_wrap .top_service_txt_block .top_service_txt p {
    max-width: 600px;
    font-size: 17px;
    line-height: 2.8;
    margin-bottom: 20px;
  }

  .top_service_wrap .top_service_txt_block .top_service_txt .btn-default {
    margin-bottom: 60px;
  }

  /*0517追加*/
  .top_service_wrap_1 .top_service_txt_block {
    display: flex;
    justify-content: center;
  }

  .top_service_wrap_1 .top_service_txt_block .top_service_txt_bg {
    display: initial;
    width: 100%;
    max-width: 600px;
    background-image: url(/common/img/top/top_service_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
  }

  .top_service_wrap_1 .top_service_txt_block .top_service_txt {
    margin: 0;
  }

  .top_service_wrap_1 .top_service_txt_block .top_service_txt h2 {
    font-size: 30px;
    font-weight: 500;
    margin-left: 5px;
    margin-bottom: 20px;
  }

  .top_service_wrap_1 .top_service_txt_block .top_service_txt h3 {
    font-size: 100px;
    margin-bottom: 50px;
  }

  .top_service_wrap_1 .top_service_txt_block .top_service_txt h3 a {
    position: relative;
    color: #DA0048;
    padding-right: 50px;
  }

  .top_service_wrap_1 .top_service_txt_block .top_service_txt h3 a::after {
    position: absolute;
    bottom: 13px;
    right: 0;
    display: block;
    width: 35px;
    height: 35px;
    content: " ";
    background-image: url(/common/img/icon_link_under.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
    transition: all 0.5s;
  }

  .top_service_wrap_1 .top_service_txt_block .top_service_txt p {
    max-width: 600px;
    font-size: 17px;
    line-height: 2.8;
    margin-bottom: 20px;
  }

  .top_service_wrap_1 .top_service_txt_block .top_service_txt .btn-default {
    margin-bottom: 60px;
  }

  /*0517追加*/

  /*0522追加*/
  .top_service_wrap_1 {
    width: 100%;
    margin: 50px 0 0;
    padding-top: 100px;
  }

  .top_service_philosophy {
    padding-bottom: 0;
  }

  .top_service_philosophyBlock {
    width: min(416px, 50%);
  }

  .top_service_philosophyBlock_en {
    width: min(416px, 50%);
  }

  .top_service_philosophyBlock h4 {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .top_service_philosophyBlock_en h4 {
    font-size: 18px;
    margin-bottom: 24px;
  }

  /*.top_service_philosophyBlock p {
    font-size: 28px;
    line-height: 1.6333;
    font-weight: 500;
  }*/

  /*0522追加*/

  /*0709追加*/
  .top_service_txt--min+.top_service_philosophy {
    margin-top: 24px;
  }

  /*0709追加*/


  .top_service_wrap .top_service_ublock {
    display: flex;
    justify-content: center;
  }

  .top_service_wrap .top_service_ublock .top_service_mp {
    width: 40%;
    max-width: 500px;
    margin: 0 10px;
    padding: 0;
  }

  .top_service_wrap .top_service_ublock .top_service_mp a {
    display: flex;
    height: 170px;
    border-radius: 7px;
    align-items: center;
    background: #E8E8EA;
    overflow: hidden;
  }

  .top_service_wrap .top_service_ublock .top_service_mp a h3 {
    font-size: 40px;
    color: #DA0048;
    line-height: 1.1;
    margin-left: 1em;
  }

  .top_service_wrap .top_service_ublock .top_service_mp a img {
    width: 110px;
    margin: 0 50px 0 0;
    display: block;
    transition: 0.5s all;
  }

  .top_service_wrap .top_service_ublock .top_service_mp a:hover img {
    transform: scale(1.2);
    transition: 0.5s all;
  }

  .top_service_wrap .top_service_ublock .top_service_sc {
    width: 40%;
    max-width: 500px;
    margin: 0 10px;
    padding: 0;
  }

  .top_service_wrap .top_service_ublock .top_service_sc a {
    display: flex;
    height: 170px;
    border-radius: 7px;
    align-items: center;
    background: #E8E8EA;
    overflow: hidden;
  }

  .top_service_wrap .top_service_ublock .top_service_sc a h3 {
    font-size: 40px;
    color: #DA0048;
    line-height: 1.1;
    margin-left: 1em;
  }

  .top_service_wrap .top_service_ublock .top_service_sc a img {
    width: initial;
    height: 100%;
    border-radius: 7px;
    margin: 0;
    display: block;
    transition: 0.5s all;
  }

  .top_service_wrap .top_service_ublock .top_service_sc a:hover img {
    transform: scale(1.2);
    transition: 0.5s all;
  }

  .top_service_wrap .top_service_more {
    background: linear-gradient(90deg, rgb(172, 48, 73) 0%, rgb(200, 42, 75) 50%, rgb(172, 48, 73) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    padding: initial;
  }

  .top_service_wrap .top_service_more p {
    font-size: 16px;
    max-width: 460px;
    line-height: 2;
    margin-right: 20px;
    color: #fff;
    margin-bottom: 0;
  }

  .top_service_wrap .top_service_more .btn-default {
    text-align: initial;
  }

  .top_company_wrap {
    background-color: initial;
    background-image: none;
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 150px 0 150px 0;
    margin: 0 0 100px 0;
  }

  .top_company_wrap .top_company_title {
    margin: 0 auto 0;
    text-align: center;
  }

  .top_company_wrap .top_company_title h2 {
    font-size: 30px;
    font-weight: 500;
    margin-left: 5px;
    margin-bottom: 20px;
  }

  .top_company_wrap .top_company_title h3 {
    font-size: 100px;
    margin-bottom: 60px;
  }

  .top_company_wrap .top_company_title h3 a {
    position: relative;
    color: #DA0048;
    padding-right: 50px;
  }

  .top_company_wrap .top_company_title h3 a::after {
    position: absolute;
    bottom: 13px;
    right: 0;
    display: block;
    width: 35px;
    height: 35px;
    content: " ";
    background-image: url(/common/img/icon_link_under.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
    transition: all 0.5s;
  }

  .top_company_wrap .top_company_list {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 99%;
    margin: 0;
    padding: 0.5%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .top_company_wrap .top_company_list .top_company_list_block {
    width: 100%;
    max-width: 300px;
    margin: 0.5% 0.5% 0.5% 0.5%;
    position: relative;
  }

  .top_company_wrap .top_company_list .top_company_list_block a {
    color: #3E4650;
  }

  .top_company_wrap .top_company_list .top_company_list_block a .top_company_list_txt {
    position: absolute;
    z-index: 3;
    width: 90%;
    height: 90%;
    background: rgba(255, 255, 255, 0.7019607843);
    top: 5%;
    left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
  }

  .top_company_wrap .top_company_list .top_company_list_block a .top_company_list_txt p {
    color: #DA0048;
    margin-bottom: 20px;
    font-size: 33px;
    transition: all 0.5s;
  }

  .top_company_wrap .top_company_list .top_company_list_block a .top_company_list_txt h3 {
    font-size: 20px;
    font-weight: 500;
    transition: all 0.5s;
  }

  .top_company_wrap .top_company_list .top_company_list_block a:hover .top_company_list_txt {
    background: #DA0048;
  }

  .top_company_wrap .top_company_list .top_company_list_block a:hover p {
    color: #fff;
  }

  .top_company_wrap .top_company_list .top_company_list_block a:hover h3 {
    color: #fff;
  }

  .top_company_wrap .top_company_list .top_company_list_block .top_company_list_bg {
    position: relative;
    z-index: 2;
    top: 0;
  }

  .top_ir_wrap {
    background-image: url(/common/img/ir/ir_top_bg_pc.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 100px 0;
    margin-bottom: 100px;
  }

  .top_ir_wrap .top_ir_title {
    margin: 0 1.5em 0;
    text-align: center;
  }

  .top_ir_wrap .top_ir_title h2 {
    font-size: 30px;
    font-weight: 500;
    margin-left: 5px;
    margin-bottom: 20px;
  }

  .top_ir_wrap .top_ir_title h3 {
    font-size: 100px;
    margin-bottom: 60px;
  }

  .top_ir_wrap .top_ir_title h3 a {
    position: relative;
    color: #DA0048;
  }

  .top_ir_wrap .top_ir_title h3 a::after {
    position: absolute;
    bottom: 14px;
    right: -50px;
    display: block;
    width: 35px;
    height: 35px;
    content: " ";
    background-image: url(/common/img/icon_link_under.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
    transition: all 0.5s;
  }

  .top_ir_wrap .top_ir_block {
    display: flex;
    justify-content: center;
    width: calc(100% - 40px);
    max-width: 950px;
    margin: auto;
  }

  .top_ir_wrap .top_ir_block .top_ir_list {
    width: 100%;
    max-width: 330px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
  }

  .top_ir_wrap .top_ir_block .top_ir_list figure {
    width: 100%;
    max-width: 140px;
    display: inline-block;
    margin: 0 40px 30px 0;
  }

  .top_ir_wrap .top_ir_block .top_ir_list figure:nth-child(2) {
    margin: 0;
  }

  .top_ir_wrap .top_ir_block .top_ir_list figure:nth-child(3) {
    margin: 0 40px 0 0;
  }

  .top_ir_wrap .top_ir_block .top_ir_list figure:nth-child(4) {
    margin: 0;
  }

  .top_ir_wrap .top_ir_block .top_ir_list figure img {
    transition: 0.5s all;
  }

  .top_ir_wrap .top_ir_block .top_ir_list figure:hover img {
    transform: scale(1.1);
    transition: 0.5s all;
  }

  .top_ir_wrap .top_ir_block .top_ir_list figure figcaption {
    text-align: center;
    color: #3E4650;
    margin-top: 0.5em;
  }

  .top_ir_wrap .top_ir_block .top_ir_newsblock {
    margin: 0 0 0 70px;
    flex: 1;
  }

  .top_recruit_wrap {
    background-color: #F2EEEB;
    padding: 60px 0;
    margin: 50px auto 150px;
  }

  .top_recruit_wrap .top_recruit_title {
    text-align: center;
  }

  .top_recruit_wrap .top_recruit_title h2 {
    font-size: 27px;
    font-weight: 500;
    margin-left: 5px;
    margin-bottom: 20px;
  }

  .top_recruit_wrap .top_recruit_title h3 {
    font-size: 80px;
    margin-bottom: 30px;
  }

  .top_recruit_wrap .top_recruit_title h3 a {
    position: relative;
    color: #DA0048;
    padding-right: 50px;
  }

  .top_recruit_wrap .top_recruit_title h3 a::after {
    position: absolute;
    bottom: 13px;
    right: 0;
    display: block;
    width: 35px;
    height: 35px;
    content: " ";
    background-image: url(/common/img/icon_link_under.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
    transition: all 0.5s;
  }

  .top_recruit_wrap .top_recruit_block {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top_recruit_wrap .top_recruit_block .top_recruit_img {
    max-width: 850px;
    margin: 0 0 0 50px;
    flex: 1;
  }

  .top_recruit_wrap .top_recruit_block .top_recruit_txt {
    width: 350px;
    text-align: initial;
    margin: 0 50px;
  }

  .top_recruit_wrap .top_recruit_block .top_recruit_txt h3 {
    font-size: 30px;
    color: #DA0048;
    font-weight: 500;
    margin: 0 0 20px 0;
  }

  .top_recruit_wrap .top_recruit_block .top_recruit_txt h4 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 10px 0;
  }

  .top_recruit_wrap .top_recruit_block .top_recruit_txt p {
    font-size: 15px;
    margin: 0 0 30px 0;
  }

  .genova-top-news {
    text-align: center;
  }

  .genova-top-news-inner {
    box-sizing: border-box;
    width: 900px;
    padding: 150px 0 150px;
    margin: 0 auto 0;
    text-align: left;
  }

  .genova-top-news .genova-heading {
    font-size: 20px;
  }

  .genova-top-news .genova-front {
    top: -30px;
  }

  .genova-flex {
    display: flex;
    align-items: center;
  }

  .genova-flex .genova-left {
    box-sizing: border-box;
    width: calc(100% - 480px);
    padding-top: 0;
    padding-right: 30px;
  }

  .genova-flex .genova-right {
    width: 480px;
    margin-top: 0;
  }

  .genova-top-news .genova-heading {
    display: inline-block;
    font-size: 30px;
    text-align: left;
  }

  .genova-top-news .genova-background {
    font-size: 100px;
  }

  .genova-top-news .genova-more-wrapper {
    display: none;
  }

  .genova-top-news .genova-left .genova-more-wrapper {
    display: inline-block;
    margin-top: 50px;
    margin-left: 101px;
    text-align: left;
  }

  .genova-top-news .genova-right a {
    transition: all 0.5s;
  }

  .genova-top-news .genova-right a:hover {
    color: #368AC3;
    text-decoration: underline;
  }

  .genova-top-news .genova-left .genova-more-wrapper .genova-more {
    margin: 0 auto;
    transition: all 0.5s;
  }

  .genova-top-news .genova-left .genova-more-wrapper .genova-more:hover {
    color: #368AC3;
  }

  .genova-top-news .genova-more-wrapper .genova-more:hover::after {
    right: -10px;
  }
}

@media screen and (min-width: 1980px) {
  .top_mv_wrap .top_mv_mov {
    top: 15vh;
  }
}

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #DA0048;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #splash_logo img {
    width: 260px;
  }
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SP */
.company-wrap.foot {
  position: relative;
  z-index: 5;
  margin-top: 30px;
}

.company-wrap.foot .tabs-4-wrapper {
  padding: 0 30px;
}

.company-wrap.foot .tabs-4-wrapper .tabs-4 {
  display: flex;
  align-items: center;
  width: 100%;
  filter: drop-shadow(2px 2px 3px rgba(150, 150, 150, 0.2));
}

.company-wrap.foot .tabs-4-wrapper .tabs-4 li {
  width: 25%;
}

.company-wrap.foot .tabs-4-wrapper .tabs-4 li:nth-of-type(4n-1) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.company-wrap.foot .tabs-4-wrapper .tabs-4 li:nth-of-type(4n-2) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.company-wrap.foot .tabs-4-wrapper .tabs-4 li:nth-of-type(4n) span a {
  border-left: 1px solid #EEE;
  border-radius: 0 4px 4px 0;
}

.company-wrap.foot .tabs-4-wrapper .tabs-4 li.current span a {
  cursor: default;
  background: #DA0E48;
}

.company-wrap.foot .tabs-4-wrapper .tabs-4 li.current a {
  color: #fff;
}

.company-wrap.foot .tabs-4-wrapper .tabs-4 li a {
  color: #3E4650;
}

.company-wrap.foot .tabs-4-wrapper .tabs-4 span a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 50px;
  color: #3E4650;
  text-align: center;
  background: #fff;
  border-radius: 4px 0 0 4px;
  transition: all 0.5s;
}

.company-wrap {
  position: relative;
  z-index: 5;
  margin-top: -15px;
}

.company-wrap .tabs-4-wrapper {
  padding: 0 30px;
}

.company-wrap .tabs-4-wrapper .tabs-4 {
  display: flex;
  align-items: center;
  width: 100%;
  filter: drop-shadow(2px 2px 3px rgba(150, 150, 150, 0.2));
}

.company-wrap .tabs-4-wrapper .tabs-4 li {
  width: 25%;
}

.company-wrap .tabs-4-wrapper .tabs-4 li:nth-of-type(4n-1) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.company-wrap .tabs-4-wrapper .tabs-4 li:nth-of-type(4n-2) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.company-wrap .tabs-4-wrapper .tabs-4 li:nth-of-type(4n) span a {
  border-left: 1px solid #EEE;
  border-radius: 0 4px 4px 0;
}

.company-wrap .tabs-4-wrapper .tabs-4 li.current span a {
  cursor: default;
  background: #DA0E48;
}

.company-wrap .tabs-4-wrapper .tabs-4 li.current a {
  color: #fff;
}

.company-wrap .tabs-4-wrapper .tabs-4 li a {
  color: #3E4650;
}

.company-wrap .tabs-4-wrapper .tabs-4 span a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 50px;
  color: #3E4650;
  text-align: center;
  background: #fff;
  border-radius: 4px 0 0 4px;
  transition: all 0.5s;
}

.company-wrap .tabs-5-wrapper {
  padding: 0 1.5em;
  margin: 0 0 0 0;
}

.company-wrap .tabs-5-wrapper .tabs-5 {
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.company-wrap .tabs-5-wrapper .tabs-5 li {
  width: 20%;
}

.company-wrap .tabs-5-wrapper .tabs-5 li:nth-of-type(5n-1) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.company-wrap .tabs-5-wrapper .tabs-5 li:nth-of-type(5n-2) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.company-wrap .tabs-5-wrapper .tabs-5 li:nth-of-type(5n-3) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.company-wrap .tabs-5-wrapper .tabs-5 li:nth-of-type(5n) span a {
  border-left: 1px solid #EEE;
  border-radius: 0 4px 4px 0;
}

.company-wrap .tabs-5-wrapper .tabs-5 li.current span a {
  cursor: default;
  background: #DA0E48;
}

.company-wrap .tabs-5-wrapper .tabs-5 li.current a {
  color: #fff;
}

.company-wrap .tabs-5-wrapper .tabs-5 li a {
  color: #3E4650;
}

.company-wrap .tabs-5-wrapper .tabs-5 span a {
  font-weight: 500;
  background: #fff;
  border-radius: 4px 0 0 4px;
  transition: all 0.5s;
  font-size: 12px;
  text-align: center;
  height: 50px;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-wrap .company-ceo-wrap {
  margin: 30px 1.5em 0;
}

.company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-pic {
  line-height: 0;
}

.company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-title {
  background-color: #C73859;
  color: #fff;
  padding: 30px;
}

.company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-title h2 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

.company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-title p {
  font-size: 13px;
  line-height: 1.75;
}

.company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-name {
  background-color: #fff;
  padding: 30px;
  text-align: center;
}

.company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-name p {
  margin-bottom: 15px;
}

.company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-name h3 {
  font-size: 30px;
  font-weight: 500;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 0.15em;
}

.company-wrap .company-message.contents-box {
  margin: 30px 1.5em 0;
}

.company-wrap .company-message.contents-box p {
  font-size: 15px;
  line-height: 2;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  margin-bottom: 30px;
}

.company-wrap .company-message.contents-box p:last-child {
  margin-bottom: 0;
}

.company-wrap .company-company.contents-box {
  margin: 30px 1.5em 30px;
  padding: 0;
}

.company-wrap .company-company.contents-box dl {
  border-bottom: 1px solid #F1EEEB;
  padding: 30px;
}

.company-wrap .company-company.contents-box dl dt {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 10px;
}

.company-wrap .company-company.contents-box dl dd {
  font-size: 15px;
  margin: auto;
}

.company-wrap .company-company.contents-box dl dd p {
  margin-bottom: 20px;
}

.company-wrap .company-company.contents-box dl dd p:last-child {
  margin-bottom: 0;
}

.company-wrap .company-company-bn {
  width: 70%;
  max-width: 340px;
  margin: auto;
}

.company-wrap .company-company-bn img {
  margin-top: 10px;
}

.company-wrap .company-officers {
  margin: 30px 1.5em 0;
}

.company-wrap .company-officers h2 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}

.company-wrap .company-officers h3 {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}

.company-wrap .company-officers h3 span {
  font-size: 15px;
}

.company-wrap .company-officers h4 {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}

.company-wrap .company-officers img {
  width: 100%;
  max-width: 210px;
  display: block;
  margin: 0 auto 20px;
}

.company-wrap .company-officers dl {
  display: flex;
  font-size: 13px;
}

.company-wrap .company-officers dl dt {
  margin-right: 0.5em;
  margin-bottom: 5px;
  width: 6em;
}

.company-wrap .company-officers dl dd {
  flex: 1;
  margin-bottom: 5px;
}

.company-wrap .company-officers .company-officers-block {
  border-bottom: 1px solid #DDDDDD;
  margin-top: 40px;
  padding-bottom: 40px;
}

.company-wrap .company-officers .company-officers-block:first-child {
  margin-top: 0;
}

.company-wrap .company-officers .company-officers-block:last-child {
  border: none;
  padding-bottom: 0;
}

.company-wrap .company-officers .company-officers-box {
  display: flex;
  flex-direction: column;
}

.company-wrap .company-officers .company-officers-box p {
  font-size: 12px;
  margin-top: 1.5em;
  line-height: 1.5;
}

.company-wrap .company-officers .company-officers-bt {
  order: 1;
}

.company-wrap .company-officers .company-officers-name {
  order: 2;
}

.company-wrap .company-officers .company-officers-history {
  order: 4;
}

.company-wrap .company-officers .company-officers-img {
  order: 3;
}

@media only screen and (max-width: 375px) {
  .tabs-4-wrapper .tabs-4 span {
    font-size: 13px;
  }
}

@media only screen and (max-width: 320px) {
  .tabs-4-wrapper .tabs-4 span {
    font-size: 10px;
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .company-wrap.foot {
    margin-top: 70px;
  }

  .company-wrap.foot .tabs-4-wrapper .tabs-4 {
    max-width: 600px;
    margin: 0 auto;
  }

  .company-wrap.foot .tabs-4-wrapper .tabs-4 span a {
    font-size: 18px;
    line-height: 70px;
    border-radius: 8px 0 0 8px;
  }

  .company-wrap.foot .tabs-4-wrapper .tabs-4 span a:hover {
    color: #fff;
    cursor: pointer;
    background: #DA0E48;
  }

  .company-wrap.foot .tabs-4-wrapper .tabs-4 li:nth-of-type(4n-1) span a {
    border-radius: 0;
  }

  .company-wrap.foot .tabs-4-wrapper .tabs-4 li:nth-of-type(4n-2) span a {
    border-radius: 0;
  }

  .company-wrap.foot .tabs-4-wrapper .tabs-4 li:nth-of-type(4n) span a {
    border-radius: 0 8px 8px 0;
  }

  .company-wrap {
    margin-top: -35px;
  }

  .company-wrap .tabs-4-wrapper .tabs-4 {
    max-width: 600px;
    margin: 0 auto;
  }

  .company-wrap .tabs-4-wrapper .tabs-4 span a {
    font-size: 18px;
    line-height: 70px;
    border-radius: 8px 0 0 8px;
  }

  .company-wrap .tabs-4-wrapper .tabs-4 span a:hover {
    color: #fff;
    cursor: pointer;
    background: #DA0E48;
  }

  .company-wrap .tabs-4-wrapper .tabs-4 li:nth-of-type(4n-1) span a {
    border-radius: 0;
  }

  .company-wrap .tabs-4-wrapper .tabs-4 li:nth-of-type(4n-2) span a {
    border-radius: 0;
  }

  .company-wrap .tabs-4-wrapper .tabs-4 li:nth-of-type(4n) span a {
    border-radius: 0 8px 8px 0;
  }

  .company-wrap .tabs-5-wrapper {
    padding: 0;
    margin: 0 0 50px 0;
  }

  .company-wrap .tabs-5-wrapper .tabs-5 {
    max-width: 650px;
    margin: auto;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  }

  .company-wrap .tabs-5-wrapper .tabs-5 li:nth-of-type(5n) span a {
    border-left: 1px solid #EEE;
    border-radius: 0 8px 8px 0;
  }

  .company-wrap .tabs-5-wrapper .tabs-5 span a {
    font-weight: 500;
    background: #fff;
    border-radius: 8px 0 0 8px;
    transition: all 0.5s;
    font-size: 18px;
    text-align: center;
    height: 70px;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .company-wrap .tabs-5-wrapper .tabs-5 span a:hover {
    color: #fff;
    cursor: pointer;
    background: #DA0E48;
  }

  .company-wrap .company-ceo-wrap {
    margin: 80px 0 0;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block {
    position: relative;
    width: 100%;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-pic {
    position: relative;
    width: 83%;
    max-width: 1100px;
    height: 450px;
    line-height: 0;
    background-image: url(/common/img/company/company_ceo.jpg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-pic img {
    display: none;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block {
    position: absolute;
    top: 60px;
    right: 0%;
    width: 50%;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-title {
    background-color: #C73859;
    color: #fff;
    padding: 45px;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-title h2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-title p {
    max-width: 460px;
    font-size: 18px;
    line-height: 1.75;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-name {
    background-color: #fff;
    padding: 45px;
    text-align: center;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-name p {
    max-width: 460px;
    margin-bottom: 15px;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-name h3 {
    max-width: 460px;
    font-size: 40px;
    font-weight: 500;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    letter-spacing: 0.15em;
  }

  .company-wrap .company-message.contents-box {
    margin: 125px auto 0;
  }

  .company-wrap .company-message.contents-box p {
    font-size: 15px;
    line-height: 2.5;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    margin-bottom: 30px;
  }

  .company-wrap .company-message.contents-box p:last-child {
    margin-bottom: 0;
  }

  .company-wrap .company-company.contents-box {
    margin: 50px auto 50px;
    padding: 0;
  }

  .company-wrap .company-company.contents-box dl {
    border-bottom: 1px solid #F1EEEB;
    padding: 50px;
    display: flex;
    line-height: 2;
  }

  .company-wrap .company-company.contents-box dl dt {
    width: 8em;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 0;
    margin-right: 30px;
    text-align: right;
  }

  .company-wrap .company-company.contents-box dl dd {
    flex: 1;
    font-size: 17px;
  }

  .company-wrap .company-company.contents-box dl dd p {
    margin-bottom: 20px;
  }

  .company-wrap .company-company.contents-box dl dd p:last-child {
    margin-bottom: 0;
  }

  .company-wrap .company-company-bn {
    width: 100%;
    max-width: 900px;
    margin: auto;
    display: flex;
    justify-content: center;
  }

  .company-wrap .company-company-bn img {
    margin: 0 10px;
    max-width: 340px;
  }

  .company-wrap .company-officers {
    width: 100%;
    max-width: 760px;
    margin: auto;
    padding: 70px;
  }

  .company-wrap .company-officers h2 {
    font-size: 30px;
    margin-bottom: 50px;
    text-align: center;
  }

  .company-wrap .company-officers h3 {
    font-size: 30px;
    font-weight: 500;
    text-align: initial;
    margin-bottom: 30px;
  }

  .company-wrap .company-officers h3 span {
    font-size: 17px;
  }

  .company-wrap .company-officers h4 {
    font-size: 15px;
    text-align: initial;
    margin-bottom: 10px;
  }

  .company-wrap .company-officers img {
    max-width: 210px;
    display: initial;
    margin: 0;
  }

  .company-wrap .company-officers dl {
    display: flex;
    font-size: 14px;
  }

  .company-wrap .company-officers .company-officers-block {
    border-bottom: 1px solid #DDDDDD;
    margin-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
  }

  .company-wrap .company-officers .company-officers-block:first-child {
    margin-top: 0;
  }

  .company-wrap .company-officers .company-officers-block:last-child {
    border: none;
    padding-bottom: 0;
  }

  .company-wrap .company-officers .company-officers-box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex: 1;
  }

  .company-wrap .company-officers .company-officers-box p {
    font-size: 12px;
    width: 95%;
    margin-top: 1em;
    line-height: 1.5;
  }

  .company-wrap .company-officers .company-officers-bt {
    order: 1;
  }

  .company-wrap .company-officers .company-officers-name {
    order: 2;
  }

  .company-wrap .company-officers .company-officers-history {
    width: 95%;
    order: 3;
  }

  .company-wrap .company-officers .company-officers-img {
    order: 4;
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-pic {
    width: 70%;
    max-width: 1100px;
    height: 470px;
    line-height: 0;
    background-image: url(/common/img/company/company_ceo.jpg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-pic img {
    display: none;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-title {
    padding: 60px;
  }

  .company-wrap .company-ceo-wrap .company-ceo-block .company-ceo-txt-block .company-ceo-txt-title h2 {
    font-size: 37px;
  }
}

/* HISTORY */
.front-contents-box-over.history-page {
  box-sizing: border-box;
  padding: 30px 30px 30px 36px;
  margin-top: 30px;
}

.contents-wrap .history-page table.history-table {
  display: block;
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.history-page table.history-table tr {
  display: block;
  border: none;
}

table.history-table th,
table.history-table td {
  display: block;
  padding: 0;
  padding-left: 60px;
  text-align: left;
  border-left: 1px solid #D1D6DE;
}

table.history-table th {
  position: relative;
  padding-top: 60px;
  padding-left: 58px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}

table.history-table th .font {
  font-size: 20px;
  font-weight: normal;
}

table.history-table tr:nth-of-type(n+2) th {
  padding-top: 50px;
}

table.history-table tr:nth-last-of-type(1) td {
  padding-bottom: 40px;
}

table.history-table th::before {
  position: absolute;
  top: 63px;
  left: -7px;
  z-index: 2;
  display: block;
  width: 13px;
  height: 13px;
  content: " ";
  background: #DA0048;
  border-radius: 50%;
}

table.history-table th::after {
  position: absolute;
  top: 69px;
  left: 6px;
  display: block;
  width: 30px;
  height: 1px;
  content: " ";
  background: #40464F;
}

table.history-table tr:nth-of-type(n+2) th::before {
  top: 53px;
}

table.history-table tr:nth-of-type(n+2) th::after {
  top: 59px;
}

table.history-table:nth-of-type(n+2) tr:nth-of-type(1) th {
  padding-top: 10px;
}

table.history-table:nth-of-type(n+2) tr:nth-of-type(1) th::before {
  top: 13px;
}

table.history-table:nth-of-type(n+2) tr:nth-of-type(1) th::after {
  top: 19px;
}

table.history-table td {
  padding-top: 9px;
  font-size: 15px;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .front-contents-box-over.history-page {
    max-width: 900px;
    padding: 66px 50px 34px 76px;
    margin-top: 50px;
  }
}

/* ACCESS */
.front-contents-box-over.access-page {
  box-sizing: border-box;
  padding: 28px 30px 22px;
  margin-top: 30px;
}

.front-contents-box-over.access-page:nth-of-type(n+2) {
  margin-top: 20px;
}

.access-page .genova-heading {
  text-align: center;
}

.access-page .genova-heading span {
  display: block;
  width: 200px;
  padding-bottom: 8px;
  margin: 0 auto;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 10px;
  border-bottom: 1px solid #40464F;
}

.access-page .genova-heading span.not-spacing {
  letter-spacing: 0;
}

.access-page .genova-access-flex {
  margin-top: 30px;
}

.access-page .genova-access-flex:nth-of-type(n+2) {
  margin-top: 20px;
}

.access-page .genova-flex-left iframe {
  width: 100%;
  height: 219px;
}

.access-page .genova-flex-right {
  margin-top: 11px;
}

.access-page .genova-flex-right .genova-sub-heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.access-page .genova-flex-right p {
  margin-top: 11px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

.access-page .genova-flex-right .genova-sub-heading-02 {
  margin-top: 13px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.access-page .genova-flex-right ul {
  display: flex;
  padding: 0;
  margin: 0;
  margin-top: 13px;
}

.access-page .genova-flex-right .genova-sub-heading-02+ul {
  margin-top: 1px;
}

.access-page .genova-flex-right li {
  padding: 0;
  margin: 0;
  font-size: 15px;
  list-style: none;
}

.access-page .genova-flex-right li a {
  color: #3E4650;
}

.access-page .genova-flex-right li:nth-of-type(odd) {
  width: 130px;
}

.access-page .genova-flex-right li:nth-of-type(even) {
  width: calc(100% - 130px);
}

.access-page .genova-flex-right ul.not-flex {
  display: block;
  padding-bottom: 8px;
  margin-top: 13px;
}

.access-page .genova-flex-right ul.not-flex li {
  line-height: 1;
}

.access-page .genova-flex-right ul.not-flex li:nth-of-type(odd) {
  width: 100%;
}

.access-page .genova-flex-right ul.not-flex li:nth-of-type(even) {
  width: 100%;
  margin-top: 9px;
}

@media screen and (min-width: 768px) {
  .front-contents-box-over.access-page {
    max-width: 900px;
    padding: 48px 50px 39px;
    margin-top: 50px;
  }

  .front-contents-box-over.access-page:nth-of-type(n+2) {
    margin-top: 50px;
  }

  .access-page .genova-heading span {
    width: 300px;
    padding-bottom: 18px;
    font-size: 35px;
    letter-spacing: 10px;
  }

  .access-page .genova-access-flex {
    display: flex;
    margin-top: 50px;
  }

  .access-page .genova-access-flex:nth-of-type(n+2) {
    margin-top: 20px;
  }

  .access-page .genova-flex-left {
    width: 450px;
  }

  .access-page .genova-flex-right {
    width: calc(100% - 450px);
    padding: 20px 0 20px 30px;
    margin-top: 0;
  }

  .access-page .genova-flex-left iframe {
    height: 298px;
  }

  .access-page .genova-flex-right p {
    margin-top: 21px;
  }

  .access-page .genova-flex-right .genova-sub-heading-02 {
    margin-top: 23px;
  }

  .access-page .genova-flex-right ul {
    margin-top: 23px;
  }

  .access-page .genova-flex-right .genova-sub-heading-02+ul {
    margin-top: 1px;
  }

  .access-page .genova-flex-right ul.not-flex {
    margin-top: 23px;
  }
}

.works-contents {
  margin: -15px auto 0;
  padding: 0 1.5rem;
}

.works-contents .works-case-wrap {
  position: relative;
  z-index: 6;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 30px;
  margin: 0 auto 20px;
}

.works-contents .works-case-wrap:last-child {
  margin-bottom: 0;
}

.works-contents .works-case-wrap .works-number {
  position: absolute;
  top: 7px;
  right: 17px;
  font-size: 50px;
  color: #F2EEEB;
  line-height: 1;
}

.works-contents .works-case-wrap h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.4;
  z-index: 2;
}

.works-contents .works-case-wrap .works-inner {
  display: block;
}

.works-contents .works-case-wrap .works-inner .works-thumb {
  margin-bottom: 10px;
}

.works-contents .works-case-wrap .works-inner .works-thumb img {
  width: 100%;
  border-radius: 7px;
}

.works-contents .works-case-wrap .works-inner .works-inner-right {
  position: relative;
}

.works-contents .works-case-wrap .works-inner .works-inner-right p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
}

.works-contents .works-case-wrap .works-inner .works-inner-right .btn-default {
  margin: auto;
  text-align: center;
}

.works-tag ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.works-tag ul li {
  font-size: 13px;
  line-height: 1;
  background: #DA0048;
  color: #fff;
  border-radius: 20px;
  padding: 10px 15px;
  list-style: none;
  margin-right: 5px;
  margin-bottom: 5px;
}

.works-tag ul li:last-child {
  margin-right: 0;
}

.works-case-wrap .works-case-head {
  position: relative;
}

.works-case-wrap .works-case-head .works-case-mv {
  position: relative;
  z-index: 1;
}

.works-case-wrap .works-case-head .works-case-head-wrap {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 100%;
}

.works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area {
  height: 100%;
  margin: auto;
  padding: 0 1.5em;
  display: table;
}

.works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt {
  display: table-cell;
  vertical-align: top;
  margin: 0 0 30px 0;
}
.works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt {
  display: table-cell;
  vertical-align: top;
  margin: 0 0 30px 0;
}

.works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt .works-tag {
  margin-bottom: 15px;
}

.works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt h2 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.5;
}

.works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt p {
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 80px;
}

.works-case-wrap .works-case-nav {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -33px;
  z-index: 2;
}

.works-case-wrap .works-case-nav .works-case-nav-arrow {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  margin: 0 10px;
}

.works-case-wrap .works-case-nav .works-case-nav-arrow a {
  position: relative;
  padding: 22px 30px;
  top: 21px;
}

.works-case-wrap .works-case-nav .works-case-nav-arrow img {
  position: absolute;
  width: 15px;
  top: 20px;
  left: 22px;
}

.works-case-wrap .works-case-nav .works-case-nav-now {
  background: #DA0048;
  border-radius: 7px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  font-size: 25px;
  color: #fff;
  display: inline-block;
  padding: 17px 30px;
}

.works-case-wrap .contents-box {
  margin: 30px 1em;
}

.works-case-wrap .contents-box .works-case-point .point-title {
  position: relative;
  z-index: 2;
  width: 7em;
  background-color: #368AC3;
  color: #fff;
  font-size: 15px;
  padding: 10px 0;
  line-height: 1;
  margin: auto;
  text-align: center;
}

.works-case-wrap .contents-box .works-case-point .point-txt {
  position: relative;
  z-index: 1;
  top: -20px;
  border: 5px solid #368AC3;
  width: calc(100% - 30px);
  padding: 20px 15px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.works-case-wrap .contents-box .works-case-q {
  border-bottom: 1px solid #40464F;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.works-case-wrap .contents-box .works-case-answer {
  margin-bottom: 30px;
}

.works-case-wrap .contents-box .works-case-answer .works-case-charabox {
  margin-bottom: 10px;
}

.works-case-wrap .contents-box .works-case-answer .works-case-charabox figure {
  text-align: center;
}

.works-case-wrap .contents-box .works-case-answer .works-case-charabox figure img {
  width: 100px;
}

.works-case-wrap .contents-box .works-case-answer p {
  background: #F2EEEB;
  border-radius: 7px;
  padding: 20px;
  font-size: 15px;
}
.works-case-wrap .contents-box .works-case-answer p .red {
  color: #DA0048;
  font-weight: 500;
}

.works-case-wrap .contents-box .works-case-p {
  width: 100%;
  margin: 0 auto 30px;
}

.works-case-wrap .contents-box .works-case-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  margin-bottom: 30px;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex {
  width: 100%;
  background: #F5F5F5;
  margin: 0 0 30px -30px;
  padding: 30px;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex:last-child {
  margin: 0 0 -30px -30px;
  border-radius: 0 0 7px 7px;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex ul {
  width: 100%;
  margin: 0 auto 20px;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex ul li {
  list-style: none;
  font-size: 14px;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  border: solid 3px #DA0048;
  border-radius: 50%;
  margin-right: 10px;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex .works-case-foot-title {
  text-align: center;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex .works-case-foot-title h2 {
  display: inline-block;
  border-bottom: 1px solid;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 30px 0;
  padding-bottom: 5px;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex p {
  font-size: 15px;
  margin-bottom: 20px;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex .btn-default {
  text-align: center;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex .works-case-app {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex .works-case-app .app-badge-google {
  width: 170px;
  margin-right: 15px;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex .works-case-app .app-badge-apple {
  width: 170px;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex dl {
  display: flex;
  font-size: 13px;
  margin-bottom: 20px;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex dl dt {
  width: 7em;
  text-align: right;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex dl dd {
  flex: 1;
}

/* PC */
@media screen and (min-width: 768px) {
  .works-contents {
    margin: -50px auto 0;
  }

  .works-contents .works-case-wrap {
    position: relative;
    max-width: 820px;
    min-width: 740px;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
    border-radius: 7px;
    padding: 40px;
    margin: 0 auto 30px;
  }

  .works-contents .works-case-wrap:last-child {
    margin-bottom: 0;
  }

  .works-contents .works-case-wrap .works-number {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 70px;
    color: #F2EEEB;
    line-height: 1;
  }

  .works-contents .works-case-wrap h2 {
    font-size: 25px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
  }

  .works-contents .works-case-wrap .works-inner {
    display: flex;
  }

  .works-contents .works-case-wrap .works-inner .works-thumb {
    margin-right: 25px;
    margin-bottom: 0px;
  }

  .works-contents .works-case-wrap .works-inner .works-thumb img {
    width: 300px;
    border-radius: 7px;
  }

  .works-contents .works-case-wrap .works-inner .works-inner-right {
    position: relative;
  }

  .works-contents .works-case-wrap .works-inner .works-inner-right p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .works-contents .works-case-wrap .works-inner .works-inner-right .btn-default {
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .works-tag ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  .works-tag ul li {
    font-size: 15px;
    line-height: 1;
    background: #DA0048;
    color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    list-style: none;
    margin-right: 5px;
    margin-bottom: 5px;
  }

  .works-tag ul li:last-child {
    margin-right: 0;
  }

  .works-case-wrap .works-case-head {
    position: relative;
  }

  .works-case-wrap .works-case-head .works-case-mv {
    position: relative;
    z-index: 1;
  }

  .works-case-wrap .works-case-head .works-case-head-wrap {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area {
    width: calc(100% - 80px);
    max-width: 1300px;
    height: 100%;
    margin: auto;
    padding: 0 40px;
    display: table;
  }

  .works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt {
    display: table-cell;
    vertical-align: middle;
  }

  .works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt .works-tag {
    margin-bottom: 50px;
  }

  .works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt h2 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 50px;
    line-height: 1.75;
  }

  .works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt p {
    /* max-width: 400px; */
    font-size: 18px;
    color: #fff;
    line-height: 1.75;
    margin-bottom: 0;
  }

  .works-case-wrap .contents-box {
    width: calc(100% - 200px);
    margin: 50px auto 50px;
  }

  .works-case-wrap .contents-box .works-case-point {
    margin-bottom: 30px;
  }

  .works-case-wrap .contents-box .works-case-point .point-title {
    font-size: 25px;
  }

  .works-case-wrap .contents-box .works-case-point .point-txt {
    width: calc(100% - 30px);
    max-width: 700px;
    margin: auto;
    font-size: 30px;
  }

  .works-case-wrap .contents-box .works-case-q {
    max-width: 600px;
    margin: 0 auto 50px;
  }

  .works-case-wrap .contents-box .works-case-answer {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }

  .works-case-wrap .contents-box .works-case-answer .works-case-charabox {
    margin-bottom: 0;
  }

  .works-case-wrap .contents-box .works-case-answer .works-case-charabox figure {
    text-align: center;
  }

  .works-case-wrap .contents-box .works-case-answer .works-case-charabox figure img {
    width: 100px;
  }

  .works-case-wrap .contents-box .works-case-answer p {
    position: relative;
    max-width: 400px;
    width: 100%;
    padding: 20px;
    line-height: 1.7;
    margin-left: 25px;
  }

  .works-case-wrap .contents-box .works-case-answer p::before {
    content: "";
    position: absolute;
    top: 56px;
    left: -28px;
    margin-top: -15px;
    border: 10px solid transparent;
    border-right: 20px solid #F2EEEB;
  }

  .works-case-wrap .contents-box .works-case-p {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 50px;
  }

  .works-case-wrap .contents-box .works-case-img {
    width: calc(100% + 100px);
    margin-left: -50px;
    margin-bottom: 30px;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex {
    width: calc(100% + 40px);
    background: #F5F5F5;
    margin: 0 0 30px -50px;
    padding: 50px 30px;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex:last-child {
    margin: 0 0 -50px -50px;
    border-radius: 0 0 10px 10px;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex img {
    max-width: 400px;
    display: block;
    margin: auto;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex ul {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex ul li {
    list-style: none;
    margin-bottom: 15px;
    font-size: initial;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex ul li:last-child {
    margin-bottom: 0;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    display: inline-block;
    border: solid 3px #DA0048;
    border-radius: 50%;
    margin-right: 10px;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex .works-case-foot-title h2 {
    font-size: 20px;
    margin: 0 0 30px 0;
    padding-bottom: 5px;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex p {
    max-width: 600px;
    font-size: 15px;
    margin: 0 auto 30px;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex dl {
    max-width: 600px;
    font-size: 15px;
    margin: 0 auto 30px;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex dl dt {
    width: 7em;
    text-align: right;
  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex dl dd {
    flex: 1;
  }
}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1150px) {
  .works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt .works-tag {
    margin-bottom: 30px;
  }

  .works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt h2 {
    font-size: 25px;
    margin-bottom: 30px;
    line-height: 1.75;
  }

  .works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt p {
    max-width: 400px;
    font-size: 14px;
    line-height: 1.75;
  }
}

/* SP */
.service .service-head-wrap {
  background: linear-gradient(90deg, rgb(121, 4, 40) 32%, rgb(150, 6, 50) 68%);
  padding: 0 1.5em 10px;
  position: relative;
  z-index: 6;
}

.service .service-head-wrap .service-head-contents .service-head-block {
  background-color: #F2EEEB;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  padding: 20px 5px;
  margin: 0 0 20px 0;
  font-size: 13px;
  text-align: center;
}

.service .service-head-wrap .service-head-contents .service-head-block:nth-child(1) {
  margin: -10px 0 20px 0;
}

.service .service-head-wrap .service-head-contents .service-head-block .service-head-title {
  width: calc(100% + 10px);
  color: #fff;
  margin: 20px 0 20px -5px;
  padding: 20px 0;
}

.service .service-head-wrap .service-head-contents .service-head-block .service-head-title.mp {
  background-color: #DB1B5E;
}

.service .service-head-wrap .service-head-contents .service-head-block .service-head-title.sc {
  background-color: #368AC3;
}

.service .service-head-wrap .service-head-contents .service-head-block .service-head-title p {
  font-size: 30px;
  margin-bottom: 10px;
}

.service .service-head-wrap .service-head-contents .service-head-block .service-head-title .sub {
  font-size: 15px;
  margin-bottom: 0;
}

.service .service-head-wrap .service-head-contents .service-head-block .service-head-img {
  margin-bottom: 20px;
}

.service .service-head-wrap .service-head-contents .service-head-block .service-head-img img {
  width: 100%;
  max-width: 275px;
  margin-bottom: 5px;
}

.service .service-head-wrap .service-head-contents .service-head-block .service-head-img img:last-child {
  margin-bottom: 0%;
}

.service .service-head-wrap .service-head-contents .service-head-block .btn-default {
  font-size: 15px;
}

.service .service-wrap .service-title {
  padding: 50px 1.5em 0;
  text-align: center;
}

.service .service-wrap .service-title h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.service .service-wrap .service-title p {
  font-size: 60px;
  margin-bottom: 20px;
}

.service .service-wrap .service-title p.mp {
  color: #DA0048;
}

.service .service-wrap .service-title p.sc {
  color: #368AC3;
}

.service .service-wrap .service-tag ul {
  text-align: center;
  margin: 0 auto 20px;
}

.service .service-wrap .service-tag ul li {
  display: inline-block;
  list-style: none;
  background-color: #fff;
  border-radius: 25px;
  padding: 13px 20px;
  margin-bottom: 10px;
  margin-right: 10px;
}

.service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block img {
  width: 80%;
  display: block;
  margin: 0 auto 20px;
}

.service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 1.5em 30px;
}

.service .service-wrap .service-mp-block .service-mp-txtarea {
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 30px;
  margin: 0 1.5em;
}

.service .service-wrap .service-mp-block .service-mp-txtarea p {
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 20px;
}

.service .service-wrap .service-sc-block {
  margin-bottom: 50px;
}

.service .service-wrap .service-sc-block .service-sc-txtarea {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.service .service-wrap .service-sc-block .service-sc-txtarea .service-sc-txt-block {
  position: relative;
  z-index: 2;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 30px;
  margin: -40px 1.5em 0;
}

.service .service-wrap .service-sc-block .service-sc-txtarea p {
  line-height: 1.75;
  font-size: 15px;
}

.service .service-wrap .service-sc-item-wrap .service-sc-item-block img {
  width: 65%;
  display: block;
  margin: 0 auto 30px;
}

.service .service-wrap .service-sc-item-wrap .service-sc-item-block h3 {
  font-weight: 500;
  color: #DA0048;
  margin-bottom: 20px;
  text-align: center;
}

.service .service-wrap .service-sc-item-wrap .service-sc-item-block p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0 3em 20px;
}

.service .service-wrap .service-sc-item-wrap .service-sc-item-block .btn-default {
  margin-bottom: 30px;
}

/* PC */
@media screen and (min-width: 768px) {
  .service .service-head-wrap {
    padding: 0 1.5em 70px;
  }

  .service .service-head-wrap .service-head-contents {
    display: flex;
    justify-content: center;
  }

  .service .service-head-wrap .service-head-contents .service-head-block {
    background-color: #F2EEEB;
    border-radius: 10px;
    padding: 30px 5px;
    margin: -30px 20px 0;
    font-size: 15px;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
  }

  .service .service-head-wrap .service-head-contents .service-head-block:nth-child(1) {
    margin: -30px 20px 0;
  }

  .service .service-head-wrap .service-head-contents .service-head-block .service-head-title {
    width: calc(100% + 10px);
    color: #fff;
    margin: 30px 0 30px -5px;
    padding: 20px 0;
  }

  .service .service-head-wrap .service-head-contents .service-head-block .service-head-title.mp {
    background-color: #DB1B5E;
  }

  .service .service-head-wrap .service-head-contents .service-head-block .service-head-title.sc {
    background-color: #368AC3;
  }

  .service .service-head-wrap .service-head-contents .service-head-block .service-head-title p {
    font-size: 35px;
    margin-bottom: 10px;
  }

  .service .service-head-wrap .service-head-contents .service-head-block .service-head-title .sub {
    font-size: 15px;
    margin-bottom: 0;
  }

  .service .service-head-wrap .service-head-contents .service-head-block .service-head-img {
    margin-bottom: 30px;
  }

  .service .service-head-wrap .service-head-contents .service-head-block .service-head-img img {
    width: 100%;
    max-width: 275px;
    margin-bottom: 5px;
  }

  .service .service-head-wrap .service-head-contents .service-head-block .service-head-img img:last-child {
    margin-bottom: 0%;
  }

  .service .service-head-wrap .service-head-contents .service-head-block .btn-default {
    font-size: 15px;
    margin-top: auto;
  }

  .service .service-wrap {
    padding: 0;
  }

  .service .service-wrap .service-title {
    text-align: center;
    padding: 100px 1.5em 0;
  }

  .service .service-wrap .service-title h2 {
    margin-bottom: 20px;
  }

  .service .service-wrap .service-title p {
    font-size: 90px;
    margin-bottom: 30px;
  }

  .service .service-wrap .service-title p.mp {
    color: #DA0048;
  }

  .service .service-wrap .service-title p.sc {
    color: #368AC3;
  }

  .service .service-wrap .service-tag ul {
    text-align: center;
    margin: 0 auto 50px;
  }

  .service .service-wrap .service-tag ul li {
    display: inline-block;
    list-style: none;
    background-color: #fff;
    border-radius: 25px;
    padding: 13px 20px;
    margin-bottom: 10px;
  }

  .service .service-wrap .service-mp-block {
    display: flex;
    justify-content: center;
    margin: 0 1.5em;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea {
    width: 100%;
    max-width: 400px;
    margin: 0 50px 0 0;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block img {
    width: 100%;
    display: block;
    margin: 0 auto 20px;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block a img {
    transition: 0.3s all;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block a img:hover {
    transform: scale(1.075);
    transition: 0.3s all;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block p {
    margin: 0 0 50px;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block:last-child {
    margin: 0 0 -50px 0;
  }

  .service .service-wrap .service-mp-block .service-mp-txtarea {
    width: 100%;
    max-width: 400px;
    padding: 50px;
    margin: 0;
  }

  .service .service-wrap .service-mp-block .service-mp-txtarea p {
    line-height: 2.25;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .service .service-wrap .service-sc-block {
    margin-bottom: 100px;
  }

  .service .service-wrap .service-sc-block .service-sc-txtarea {
    position: relative;
    height: 473px;
    margin-bottom: 50px;
  }

  .service .service-wrap .service-sc-block .service-sc-txtarea img {
    position: absolute;
    right: 0;
    width: 685px;
  }

  .service .service-wrap .service-sc-block .service-sc-txtarea .service-sc-txt-wrap {
    width: 100%;
    max-width: 1000px;
    margin: auto;
  }

  .service .service-wrap .service-sc-block .service-sc-txtarea .service-sc-txt-wrap .service-sc-txt-block {
    position: absolute;
    width: 100%;
    max-width: 400px;
    top: 50px;
    padding: 50px;
    margin: 0 0 0 1.5em;
  }

  .service .service-wrap .service-sc-block .service-sc-txtarea .service-sc-txt-wrap p {
    line-height: 2.25;
    font-size: 16px;
  }

  .service .service-wrap .service-sc-item-wrap {
    display: flex;
    justify-content: center;
  }

  .service .service-wrap .service-sc-item-wrap .service-sc-item-block {
    width: 300px;
    display: flex;
    flex-direction: column;
    margin: 0 20px;
  }

  .service .service-wrap .service-sc-item-wrap .service-sc-item-block .service-sc-item-img img {
    transition: 0.3s all;
  }

  .service .service-wrap .service-sc-item-wrap .service-sc-item-block .service-sc-item-img img:hover {
    transform: scale(1.075);
    transition: 0.3s all;
  }

  .service .service-wrap .service-sc-item-wrap .service-sc-item-block img {
    width: 100%;
    margin: 0 auto 30px;
  }

  .service .service-wrap .service-sc-item-wrap .service-sc-item-block p {
    font-size: 14px;
    margin: 0 0 20px;
  }

  .service .service-wrap .service-sc-item-wrap .service-sc-item-block .btn-default {
    margin-bottom: 0;
    margin-top: auto;
  }
}

/* SP */
.ir-contents .ir-top-head-wrap .ir-top-head-left {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  width: calc(100% - 3em);
  margin: -20px 1.5em 50px;
}

.ir-contents .ir-top-head-wrap .ir-top-head-left h3 {
  font-weight: 600;
  font-size: 1.25em;
  margin-bottom: 10px;
}

.ir-contents .ir-top-head-wrap .ir-top-head-left img {
  border-radius: 10px 10px 0 0;
}

.ir-contents .ir-top-head-wrap .ir-top-head-left .ir-top-head-left-txt {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 30px;
  line-height: 1.5;
}

.ir-contents .ir-top-head-wrap .ir-top-head-left .ir-top-head-left-txt p {
  margin-bottom: 10px;
}

.ir-contents .ir-top-head-wrap .ir-top-head-left .ir-top-head-left-txt p:last-child {
  margin-bottom: 0;
}

.ir-contents .ir-top-head-wrap .ir-top-head-right {
  margin: 0 1.5em 0;
}

.ir-contents .ir-top-head-wrap .ir-top-head-right .ir-top-head-right-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.ir-contents .ir-top-head-wrap .ir-top-head-right .ir-top-head-right-head h2 {
  font-size: 30px;
}

.ir-contents .tabs-4-wrapper {
  padding: 0 1.5em;
  margin: 0 0 40px 0;
}

.ir-contents .tabs-4-wrapper .tabs-4 {
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.ir-contents .tabs-4-wrapper .tabs-4 li {
  width: 25%;
}

.ir-contents .tabs-4-wrapper .tabs-4 li:nth-of-type(4n-1) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.ir-contents .tabs-4-wrapper .tabs-4 li:nth-of-type(4n-2) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.ir-contents .tabs-4-wrapper .tabs-4 li:nth-of-type(4n) span a {
  border-left: 1px solid #EEE;
  border-radius: 0 4px 4px 0;
}

.ir-contents .tabs-4-wrapper .tabs-4 li.current span a {
  cursor: default;
  background: #DA0E48;
}

.ir-contents .tabs-4-wrapper .tabs-4 li.current a {
  color: #fff;
}

.ir-contents .tabs-4-wrapper .tabs-4 li a {
  color: #3E4650;
}

.ir-contents .tabs-4-wrapper .tabs-4 span a {
  font-weight: 500;
  background: #fff;
  border-radius: 4px 0 0 4px;
  transition: all 0.5s;
  font-size: 12px;
  text-align: center;
  height: 50px;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ir-contents .tabs-6-wrapper {
  padding: 0 0.5em;
  margin: 0 0 40px 0;
}

.ir-contents .tabs-6-wrapper .tabs-6 {
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

/*　競合しているのでコメントアウト  

@media screen and (max-width:767px){
  .ir-contents .tabs-6-wrapper .tabs-6 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  }
  .ir-contents .tabs-6-wrapper .tabs-6 li {
    width: 25% !important;
  }
}

*/

.ir-contents .tabs-6-wrapper .tabs-6 li {
  width: 16.6666666%;
}

.ir-contents .tabs-6-wrapper .tabs-6 li:nth-of-type(6n-1) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.ir-contents .tabs-6-wrapper .tabs-6 li:nth-of-type(6n-2) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.ir-contents .tabs-6-wrapper .tabs-6 li:nth-of-type(6n-3) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.ir-contents .tabs-6-wrapper .tabs-6 li:nth-of-type(6n-4) span a {
  border-left: 1px solid #EEE;
  border-radius: 0;
}

.ir-contents .tabs-6-wrapper .tabs-6 li:nth-of-type(7n) span a {
  border-left: 1px solid #EEE;
  border-radius: 0 4px 4px 0;
}

.ir-contents .tabs-6-wrapper .tabs-6 li.current span a {
  cursor: default;
  background: #DA0E48;
}

.ir-contents .tabs-6-wrapper .tabs-6 li.current a {
  color: #fff;
}

.ir-contents .tabs-6-wrapper .tabs-6 li a {
  color: #3E4650;
}

.ir-contents .tabs-6-wrapper .tabs-6 span a {
  font-weight: 500;
  background: #fff;
  border-radius: 4px 0 0 4px;
  transition: all 0.5s;
  font-size: 12px;
  text-align: center;
  height: 50px;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ir-library .ir-contents .tabs-6-wrapper .tabs-6 li:nth-child(6) {
  border-radius: 0 !important;
}

.ir-news h2 {
  font-size: 30px;
  text-align: center;
  margin: 40px 0 40px 0;
}

.ir-news .ir-news-contents {
  margin: 0 1.5em 50px;
}

.ir-library h2 {
  font-size: 27px;
  text-align: center;
  margin: 40px 0 40px 0;
}

.ir-library .ir-library-contents {
  margin: 0 1.5em 50px;
}

.ir-contentsbox {
  position: relative;
  z-index: 6;
  background: #fff;
  border-radius: 7px;
  margin: -15px 1.5em 30px;
  padding: 30px 1.5em 1.5em;
  line-height: 1.5;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
}

.ir-contentsbox h2 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.ir-contentsbox h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ir-contentsbox p {
  padding: 0;
  margin-bottom: 1.5em;
  line-height: 2;
}

.ir-contentsbox p:last-child {
  margin-bottom: 0;
}

.ir-contentsbox p.small {
  font-size: 12px;
}

.ir-contentsbox p.atn {
  font-size: 12px;
  line-height: 1.5;
}

.ir-contentsbox table {
  width: 100%;
  font-size: 12px;
  margin: 0 0 30px;
}

.ir-contentsbox table tr {
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
}

.ir-contentsbox table tr td {
  padding: 15px;
  vertical-align: middle;
}

.ir-contentsbox h4.table {
  font-size: 13px;
  margin: 10px;
  font-weight: initial;
}

.ir-foot-wrap {
  margin-top: 50px;
}

.ir-foot-wrap .ir-foot-box .ir-foot-box-block {
  width: calc(100% - 3em);
  max-width: 300px;
  background-color: #fff;
  border-radius: 7px;
  margin: 0 auto 20px;
}

.ir-foot-wrap .ir-foot-box .ir-foot-box-block:last-child {
  margin: 0 auto 50px;
}

.ir-foot-wrap .ir-foot-box .ir-foot-box-block .ir-foot-box-img img {
  border-radius: 7px 7px 0 0;
}

.ir-foot-wrap .ir-foot-box .ir-foot-box-block .ir-foot-box-txt {
  padding: 25px;
}

.ir-foot-wrap .ir-foot-box .ir-foot-box-block .ir-foot-box-txt h3 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.ir-foot-wrap .ir-foot-box .ir-foot-box-block .ir-foot-box-txt p {
  line-height: 1.5;
  margin-bottom: 20px;
}

.ir-foot-sublist ul {
  background-color: #fff;
  margin-bottom: 50px;
}

.ir-foot-sublist ul li {
  width: 100%;
  font-size: 15px;
  max-width: 300px;
  text-align: center;
  border-bottom: 1px solid #EAE7E4;
  margin: auto;
}

.ir-foot-sublist ul li:last-child {
  border: none;
}

.ir-foot-sublist ul li a {
  display: block;
  padding: 20px 0;
  color: initial;
}

.ir-foot-sublist p {
  font-size: 15px;
  margin: 0 1.5em 50px;
  line-height: 1.5;
}

.ir-foot-sublist p.atn {
  font-size: 0.8em;
  line-height: 1.75;
}

/* PC */
@media screen and (min-width: 768px) {
  .ir-contents {
    margin: 0 20px 0;
  }

  .ir-contents .ir-top-head-wrap {
    display: flex;
    justify-content: center;
  }

  .ir-contents .ir-top-head-wrap .ir-top-head-left {
    width: 100%;
    max-width: 500px;
    margin: -50px 40px 0 0;
  }

  .ir-contents .ir-top-head-wrap .ir-top-head-left h3 {
    margin-bottom: 20px;
  }

  .ir-contents .ir-top-head-wrap .ir-top-head-left .ir-top-head-left-txt {
    padding: 40px;
  }

  .ir-contents .ir-top-head-wrap .ir-top-head-left .ir-top-head-left-txt p {
    margin-bottom: 20px;
  }

  .ir-contents .ir-top-head-wrap .ir-top-head-right {
    max-width: 530px;
    margin: 50px 1.5em 0;
  }

  .ir-contents .tabs-4-wrapper {
    padding: 0;
    margin: 0 0 50px 0;
  }

  .ir-contents .tabs-4-wrapper .tabs-4 {
    max-width: 600px;
    margin: auto;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  }

  .ir-contents .tabs-4-wrapper .tabs-4 li:nth-of-type(4n) span a {
    border-left: 1px solid #EEE;
    border-radius: 0 8px 8px 0;
  }

  .ir-contents .tabs-4-wrapper .tabs-4 span a {
    font-weight: 500;
    background: #fff;
    border-radius: 8px 0 0 8px;
    transition: all 0.5s;
    font-size: 18px;
    text-align: center;
    height: 70px;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ir-contents .tabs-4-wrapper .tabs-4 span a:hover {
    color: #fff;
    cursor: pointer;
    background: #DA0E48;
  }

  .ir-contents .tabs-6-wrapper {
    padding: 0;
    margin: 0 0 50px 0;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 {
    /*max-width: 850px;*/
    max-width: 1150px;
    margin: auto;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  }

  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-of-type(7n) span a {
    border-left: 1px solid #EEE;
    border-radius: 0 8px 8px 0;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 span a {
    font-weight: 500;
    background: #fff;
    border-radius: 8px 0 0 8px;
    transition: all 0.5s;
    font-size: 18px;
    text-align: center;
    height: 70px;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 span a:hover {
    color: #fff;
    cursor: pointer;
    background: #DA0E48;
  }

  .ir-news h2 {
    font-size: 30px;
    text-align: center;
    margin: 80px 0 50px 0;
  }

  .ir-news .ir-news-contents {
    max-width: 700px;
    margin: 0 auto 50px;
  }

  .ir-hl-contents,
  .ir-calendar-contents {
    width: calc(100% + 80px);
    margin-left: -40px;
  }

  .ir-library h2 {
    font-size: 30px;
    text-align: center;
    margin: 80px 0 50px 0;
  }

  .ir-library .ir-library-contents {
    max-width: 700px;
    margin: 0 auto 50px;
  }

  .ir-contentsbox {
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
    margin: -50px auto 50px;
    padding: 60px 100px;
    line-height: 1.5;
  }

  .ir-contentsbox h2 {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
  }

  .ir-contentsbox h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .ir-contentsbox p {
    padding: 0;
    margin-bottom: 2em;
    line-height: 2;
  }

  .ir-contentsbox p.small {
    font-size: 14px;
  }

  .ir-contentsbox p.atn {
    font-size: 14px;
  }

  .ir-contentsbox table {
    font-size: 14px;
    margin: 0 0 50px;
  }

  .ir-contentsbox table tr {
    border-top: 1px #ccc solid;
    border-bottom: 1px #ccc solid;
  }

  .ir-contentsbox table tr td {
    padding: 25px 20px;
  }

  .ir-contentsbox h4.table {
    font-size: 15px;
    margin: 0 0 20px 20px;
  }

  .ir-foot-wrap {
    margin-top: 100px;
  }

  .ir-foot-wrap .ir-foot-box {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
  }

  .ir-foot-wrap .ir-foot-box .ir-foot-box-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    background-color: #fff;
    border-radius: 7px;
    margin: 0 20px 0 0;
  }

  .ir-foot-wrap .ir-foot-box .ir-foot-box-block:last-child {
    margin: 0;
  }

  .ir-foot-wrap .ir-foot-box .ir-foot-box-block .ir-foot-box-img img {
    border-radius: 7px 7px 0 0;
  }

  .ir-foot-wrap .ir-foot-box .ir-foot-box-block .ir-foot-box-txt {
    display: flex;
    flex-direction: column;
    padding: 25px;
    height: 100%;
  }

  .ir-foot-wrap .ir-foot-box .ir-foot-box-block .ir-foot-box-txt h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
  }

  .ir-foot-wrap .ir-foot-box .ir-foot-box-block .ir-foot-box-txt p {
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .ir-foot-wrap .ir-foot-box .ir-foot-box-block .ir-foot-box-txt .btn-default {
    margin-top: auto;
  }

  .ir-foot-sublist ul {
    background-color: #fff;
    margin: 0 auto 50px;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    border-radius: 50px;
  }

  .ir-foot-sublist ul li {
    width: initial;
    font-size: 15px;
    max-width: initial;
    text-align: center;
    border-bottom: none;
    border-right: 1px solid #EAE7E4;
    margin: 15px 0;
    padding: 0 20px;
  }

  .ir-foot-sublist ul li:last-child {
    border: none;
  }

  .ir-foot-sublist ul li a {
    display: block;
    padding: 5px 0;
    color: initial;
  }

  .ir-foot-sublist p {
    margin: 0 1.5em 50px;
    text-align: center;
  }

  .ir-foot-sublist p.atn {
    max-width: 750px;
    margin: 0 auto 70px;
    text-align: left;
  }
}

/* SP */
.footer-contact-wrap {
  background-image: url(/common/img/foot_contact_bg_sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
  margin-bottom: -50px;
}

.footer-contact-wrap .footer-contact-block {
  background-color: #DA0048;
  border-radius: 7px;
  padding: 30px;
  color: #fff;
  text-align: center;
}

.footer-contact-wrap .footer-contact-block .footer-contact-txt h4 {
  font-size: 27px;
  margin-bottom: 15px;
}

.footer-contact-wrap .footer-contact-block .footer-contact-txt p {
  font-size: 14px;
  margin-bottom: 15px;
}

.contents-wrap {
  padding: 0 1.5rem;
  position: relative;
  z-index: 6;
}

.front-contents-box-over {
  position: relative;
  z-index: 6;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  line-height: 2;
  font-size: 12px;
  padding: 20px;
  margin: -15px auto 0;
}

.front-contents-box-over h3 {
  margin-bottom: 10px;
}

.front-contents-box-over h3.next-line {
  width: calc(100% + 20px);
  margin: 30px 0 10px -20px;
  padding: 30px 0 0 20px;
  border-top: 1px solid #e6e6e6;
}

.front-contents-box-over h4 {
  margin: 15px 10px 10px;
  font-weight: initial;
}

.front-contents-box-over p {
  margin-bottom: 1.5em;
}

.front-contents-box-over p:last-child {
  margin-bottom: 0;
}

.front-contents-box-over ul {
  margin-left: 1.5em;
  margin-bottom: 2em;
}

.front-contents-box-over ul ol {
  font-weight: 600;
  text-indent: -1.5em;
  margin-bottom: 15px;
}

.front-contents-box-over ul ol:last-child {
  margin-bottom: 0;
}

.front-contents-box-over ul.default ol {
  font-weight: initial;
}

.front-contents-box-over table {
  margin-bottom: 1.5em;
}

.front-contents-box-over table tr {
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
}

.front-contents-box-over table td {
  padding: 1em;
}

.front-contents-box-over table .title {
  background-color: #F2EEEB;
}

.front-contents-box-over table.default tr {
  border: 1px #ccc solid;
}

.front-contents-box-over table.default td {
  vertical-align: middle;
  border: 1px #ccc solid;
}

/* PC */
@media screen and (min-width: 768px) {
  .footer-contact-wrap {
    background-image: url(/common/img/foot_contact_bg_pc.jpg);
    padding: 60px 1.5em;
    margin-bottom: -100px;
  }

  .footer-contact-wrap .footer-contact-block {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 750px;
    margin: auto;
    padding: 40px 1.5em;
    text-align: left;
  }

  .footer-contact-wrap .footer-contact-block .footer-contact-txt {
    width: 100%;
    max-width: 300px;
  }

  .footer-contact-wrap .footer-contact-block .footer-contact-txt p {
    margin-bottom: 0px;
  }

  .contents-wrap {
    padding: 0 50px;
    position: relative;
    z-index: 6;
  }

  .front-contents-box-over {
    max-width: 840px;
    border-radius: 10px;
    font-size: 15px;
    padding: 80px;
    margin: -50px auto 0;
  }

  .front-contents-box-over h3 {
    margin-bottom: 10px;
  }

  .front-contents-box-over h3.next-line {
    width: calc(100% + 80px);
    margin: 60px 0 10px -80px;
    padding: 60px 0 0 80px;
  }

  .front-contents-box-over p {
    margin-bottom: 2.5em;
  }

  .front-contents-box-over p:last-child {
    margin-bottom: 0;
  }

  .front-contents-box-over table {
    margin-bottom: 2.5em;
  }
}

/* import scss */
/* color */
/* box */
.contents-box {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  line-height: 1.5;
  padding: 30px;
}

@media screen and (min-width: 768px) {
  .contents-box {
    max-width: 900px;
    border-radius: 10px;
    padding: 50px;
    margin: auto;
  }
}

/* SP */
.pc {
  display: none;
}

/* PC */
@media screen and (min-width: 768px) {
  .pc {
    display: initial;
  }

  .sp {
    display: none;
  }
}

@media screen and (min-width: 1500px) {
  .top_mv_wrap .top_mv_mov {
    padding-bottom: 180px;
    margin-top: -50px;
  }
}

@media screen and (min-width: 1700px) {
  .top_mv_wrap .top_mv_mov {
    padding-bottom: 140px;
    margin-top: -70px;
  }
}

.top_image1 {
  width: 360px;
  height: 540px;
  float: right;
  padding-left: 50px;
}

@media screen and (max-width:767px) {
  .top_image1 {
    width: 100%;
    padding-bottom: 30px;
  }
}

/*追記217*/

@media screen and (max-width:767px) {
  .lab_pc {
    display: none !important;
  }

  .teaml {
    margin: -50px;
  }

}

@media screen and (min-width:767px) {
  .lab_sp {
    display: none !important;

  }
}

@media screen and (min-width: 768px) {
  .service .service-wrap .service-sc-block {
    margin-bottom: 0px;
  }
}

/*追記302*/


@media screen and (min-width: 768px) {
  .footer-copyright {
    text-align: right !important;
    max-width: 1000px;
    margin: -80px auto 0;
  }

  .footer-wrap {
    padding-bottom: 100px;
  }

  .service .service-wrap .service-mp-block2 .service-mp-imgarea .service-mp-imgarea-block img {
    width: 80%;
    display: block;
    margin: 0 auto 20px;
  }

  .service .service-wrap .service-mp-block2 .service-mp-imgarea .service-mp-imgarea-block p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 1.5em 30px;
  }

  .service .service-wrap .service-mp-block2 .service-mp-txtarea {
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
    border-radius: 7px;
    padding: 30px;
    margin: 0 1.5em;
  }

  .service .service-wrap .service-mp-block2 .service-mp-txtarea p {
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 20px;
  }

  .service .service-wrap .service-mp-block {
    display: flex;
    justify-content: center;
    margin: 0 1.5em;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea {
    width: 100%;
    max-width: 400px;
    margin: 0 50px 0 0;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block img {
    width: 100%;
    display: block;
    margin: 0 auto 20px;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block a img {
    transition: 0.3s all;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block a img:hover {
    transform: scale(1.075);
    transition: 0.3s all;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block p {
    margin: 0 0 50px;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block:last-child {
    margin: 0 0 -50px 0;
  }

  .service .service-wrap .service-mp-block .service-mp-txtarea {
    width: 100%;
    max-width: 400px;
    padding: 50px;
    margin: 0;
  }

  .service .service-wrap .service-mp-block .service-mp-txtarea p {
    line-height: 2.25;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .service .service-wrap .service-mp-block .service-mp-imgarea2 {
    width: 100%;
    max-width: 450px;
    margin: 0px 30px 50px 0px;
  }

  .service .service-wrap .service-mp-block .service-mp-txtarea2 {

    padding: 30px;
    margin: 0 1.5em;
  }

  .service .service-wrap .service-mp-block .service-mp-txtarea2 p {
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 20px;
  }

  .service .service-wrap .service-mp-block .service-mp-txtarea2 {
    width: 100%;
    max-width: 400px;
    padding: 50px;
    margin: 0;
  }

  .service .service-wrap .service-mp-block .service-mp-txtarea2 p {
    line-height: 2.25;
    font-size: 16px;
    margin-bottom: 30px;
  }


}

.ac_header {
  border: 1px solid #E6005A;
  padding: 1rem 4rem 1rem 2rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
  background: #fff;
  font-size: 16px;
  color: black;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 16px;
}

.i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

.i_box:before {
  border-top: 3px solid black;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.i_box:after {
  border-left: 3px solid black;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}

.i_box:before,
.i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

.ac_inner {
  display: none;
  padding: 1rem 2rem 1rem 2rem;
  border-left: 1px solid #E6005A;
  border-right: 1px solid #E6005A;
  border-bottom: 1px solid #E6005A;
  box-sizing: border-box;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 16px;
}

.ir_qa {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-left: 20px;
  color: black;
  font-size: 24px !important;
}

.ac_header.open .i_box:after {
  height: 0;
}

@media screen and (max-width:767px) {
  .top_service_video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }

  .top_service_video iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }

}

/* // 追加 */
.company-wrap2 {
  margin: 0px;
  /*margin: 80px 0 200px;*/
}

.sp-menu {
  overflow-y: auto;
}

.su-main-title {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  /* z-index: 5; */
}

.su-box2 {
  position: relative;
  margin-top: 30px;
}

.lead3 {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  /* margin-bottom: 20px; */
  text-align: center;
  position: relative;
  z-index: 5;
}

.su-box2 .title1 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 5;
  margin-bottom: 0px;
}

.su-box2 .title2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 5;
  margin-bottom: 0px;
}

.lead2-lead {
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  position: relative;
  z-index: 5;
  margin-bottom: 30px;
}

.su-box2 .lead {
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  position: relative;
  z-index: 5;
  margin-bottom: 30px;
}

.su-box2 .co-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 5;
  /* margin-bottom: 30px; */
  overflow: hidden;
}

.su-box2 .co-title .wrap {
  display: inline-block;
  position: relative;
}

.su-box2 .co-title .wrap::before {
  position: absolute;
  content: "";
  transform: translateY(-50%);
  top: 50%;
  left: -610px;
  width: 600px;
  height: 1px;
  background: #000;
}

.su-box2 .co-title .wrap::after {
  position: absolute;
  content: "";
  transform: translateY(-50%);
  top: 50%;
  right: -610px;
  width: 600px;
  height: 1px;
  background: #000;
}


.su-box2-wrap {
  position: relative;
}

/* .su-box2::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../../common/img/tringle2.png) no-repeat center center / cover;
  
} */
.su-box {}

.su-box {}

.su-box {}

.su-box .lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}

.su-box .heading {
  background: #E0EAF4;
  padding: 40px 20px 40px;
  /* position: relative;
  z-index: 2; */
}

.su-box .bottom {
  padding: 0px 20px 40px;
  /* position: relative;
  z-index: 2; */
  background: #E2E2E2;
}

.tringle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  width: 100%;
}

.tringle img {
  width: 100%;
  height: 100%;
  max-width: initial !important;
}

.su-box .text {
  font-size: 16px;
  line-height: 2;
}

.su-box {
  position: relative;

}

.su-section {
  margin-bottom: 100px;

}

.su-section:last-child {
  margin-bottom: 0px;

}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  line-height: 1.3;

}

.section-title .en {
  font-size: 20px;
  font-weight: bold;
  color: #DA0048;
  margin-right: 20px;
}

.section-title .ja {
  font-size: 20px;
  font-weight: 600;
}

.su-section-main-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.su-ul {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  margin-top: 30px;

}

.bold-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
  white-space: nowrap;
}

.su-ul li {
  width: 31.5%;

}

.li-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background: #368AC3;
  padding: 10px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 10px;
}

.li-text .row1 {
  display: flex;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

.co-title2 {
  margin-bottom: 30px;
  position: relative;

}

.li-text .row1 .ten {

  color: #B5B5B5;
  font-size: 20px;
  margin-right: 5px;
}

.footer-heading {
  display: flex;
}

.footer-menu-front {
  display: block !important;
}

.footer-menu-front li {
  margin-bottom: 20px;
}



@media screen and (min-width:767px) {

  .is-sp {
    display: none !important;
  }
}

.hover-menu {
  position: absolute;
  top: 115%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  display: none;
}

.hover-menu2 {
  position: absolute;
  top: 115%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: auto;
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  display: none;
}

#head .header-wrap .header-list ul li {
  position: relative;
}

.hover-menu-link {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

.hover-menu-link .arrow {
  width: 7px;
  margin-right: 5px;
}

.hover-menu-link {}

.sub-list a {
  padding-left: 30px;
  position: relative;
  padding-left: 22px !important;
}

.sub-list a::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 1px;
  background: #3E4650;
}

.sub-list-footer a {
  padding-left: 30px;
  position: relative;
  padding-left: 8px !important;
  font-size: 14px;
}

.sub-list-footer a::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 1px;
  background: #fff;
}

.sp-menu ul a {
  display: block;
  color: #3E4650;
  padding: 0.5rem 0 0.5rem 4rem;
  padding-left: 0;
  margin-left: 4rem;

}

.indi-main-title {
  padding: 50px 0 50px;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}

.ir-contents .tabs-6-wrapper {
  position: relative;
  z-index: 6;
}

.indi3-box {
  max-width: 900px;
  margin: 0 auto;
  margin-top: -180px;
  display: flex;

}

.indi3-box .left {
  width: 42%;

}

.indi3-box .left .wrap {

  position: relative;
  padding-top: 123%;

}

.indi3-box .left .wrap img {

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.indi3-box .right {
  width: 58%;
  background: #fff;
  padding: 30px 25px;

}

.ir-contents .tabs-6-wrapper .tabs-6 span a {
  font-weight: bold;
}

.indi3 {}

.indi3 {}

.ir-contents2 {
  margin: 0;
}

@media screen and (min-width:767px) {

  #id1,
  #id2,
  #id3,
  #id4,
  #id5 {
    position: relative;
    top: -70px;
  }

  .works-btn .btn-under a {
    background-image: url(../../common/img/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
  }

  .number-sec ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 40px;
  }

  .number-sec li {
    background: #fff;
    width: calc(33.333% - 40px * 2/3);
    margin-right: 40px;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #DA0048;
    box-sizing: border-box;

  }

  .number-sec li:nth-child(3n) {
    margin-right: 0;

  }

  .ir-contents .tabs-6-wrapper .tabs-5-a li {
    width: 16% !important;
    /* max-width: 128px; */
    min-width: 128px;
  }

  .tabs-5-a li:nth-child(2) .tabs-5-a li:nth-child(2) {
    /* width: 20% !important; */
    max-width: initial;
    min-width: initial;
    width: 100% !important;

  }

  .tabs-5 {
    max-width: 750px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .ir-contents .tabs-6-wrapper .tabs-5 li:nth-of-type(5n) span a {
    border-left: 1px solid #EEE;
    border-radius: 0 8px 8px 0;
  }
}

@media screen and (max-width:767px) {

  .indi3-box {

    margin-top: -100px;

  }

  .indi3-box .right {
    width: 100%;

    padding: 25px;

  }

  .tabs-5 li {
    width: 33.33333% !important;
  }

  .ir-contents .tabs-6-wrapper .tabs-5 li:nth-of-type(3n) span a {
    border-left: 1px solid #EEE;
    border-radius: 0 4px 0px 0;
  }

  .ir-contents .tabs-6-wrapper .tabs-5 li:nth-of-type(n + 4) {
    width: 50% !important;
  }

  .ir-contents .tabs-6-wrapper .tabs-5 {
    flex-wrap: wrap;
    max-width: 280px;
    margin: 0 auto;
  }

  .ir-contents .tabs-6-wrapper .tabs-5 a {
    font-size: 15px !important;
    font-weight: bold;
  }
}

.indi2 {
  padding: 130px 0 250px;
  margin-top: -90px;
  background: url(../../common/img/indi2-bg.png) no-repeat center center / cover;
}

.inner {
  padding: 0 40px;
}

.inner-max {
  max-width: 1300px;
  margin: 0 auto;

}

.indi2-title {
  margin: 0 auto;
  font-size: 36px;
  font-weight: 600;
  line-height: 2.5;
  color: #fff;
  max-width: 900px;
  letter-spacing: .2rem;
}

.indi3 .right .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  /* letter-spacing: .03rem; */
}

.indi3 .right .text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
}

.indi3 .right .katagaki {
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  margin-bottom: 10px;
}

.indi3 .right .name {
  font-size: 18px;
  font-weight: 700;
  text-align: right;
  letter-spacing: 0.15rem;
}

.rinen-title-en,
.sub-en {
  font-family: "interstate", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;

}

.indi3-box .right {
  border-radius: 0 8px 8px 0
}

.indi3-box .left img {

  border-radius: 8px 0 0 8px;
}

.indi3-box {
  padding: 30px 20px;
}

.indi3-box .right {
  box-sizing: border-box;
}

.rinen-box {
  padding: 40px 60px 35px;
  background: #fff;
  box-shadow: 0 0 30px rgb(0 0 0 / 0.08);
  max-width: 780px;
  margin: 0 auto;
  border-radius: 8px;
}

.rinen-movie .wrap {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.rinen-movie {
  margin-bottom: 50px;
}

.rinen-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rinen-row {
  display: flex;
  margin-bottom: 50px;
}

.rinen-title-ja {
  font-size: 30px;
  font-weight: 600;
}

.rinen-row:last-child {

  margin-bottom: 0px;
}

.rinen-title-en {
  font-size: 40px;
  font-weight: bold;
  color: #DA0048;
  width: 225px;
}

.rinen-right {
  width: calc(100% - 225px);
  /* padding-top: 10px; */
  line-height: 1.5;
}

.sub-en {
  display: block;
  color: #DA0048;
  font-size: 22px;
  font-weight: bold;
  padding-top: 5px;
}

.rine {
  position: relative;
  z-index: 4;
}

.number-sec {
  background: #960632;
  padding: 200px 0 140px;
  margin-top: -110px;
}

.number-sec .attention {
  text-align: right;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  max-width: 900px;
  margin: 0 auto;
}

.number-sec li:nth-child(n + 4) {
  margin-top: 30px;

}

.nu-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.nu-img {
  text-align: center;
  margin-bottom: 20px;
}

.nu-img img {
  width: auto;
  height: 100px;
}

.nu-text {
  color: #DA0048;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.nu-num {
  font-size: 50px;
  font-weight: 600;
}

.nu-tani {
  font-size: 30px;
  font-weight: 600;

}

.history {
  /* background: #F2EEEB; */
  padding: 100px 0;
}

.history .indi-main-title {
  padding-top: 0;
}

.history-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 0 0;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, .07);
  margin-bottom: 60px;
}

.history-box .text {
  font-size: 18px;
  line-height: 2.5;
  font-weight: 700;
  text-align: center;
}

.history-box img {
  border-radius: 0 0 10px 10px;
  position: relative;
  top: 2.5px;
}

.sec-works .indi-main-title {
  padding-top: 0;
}

.sec-works {
  padding: 100px 0;
  background: #960632;
}

.sec-works {}

.btn-default a {
  font-weight: bold;
}

.reselt-box {
  padding: 20px 20px 40px;
}

.ir-body {}

.document {
  max-width: 700px;
  margin: 0 auto;

}

.document ul {}

.document .flex {
  display: flex;
  align-items: center;
}

.document a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #A7AEB9;
  color: #3E4650;
  transition: .3s;
}

.document .time {
  font-size: 14px;
  font-weight: 600;
  width: 100px;
  line-height: 1;
}

.document .title {
  font-size: 14px;
  font-weight: 400;
  width: calc(100% - 100px);
  line-height: 1.3;

}

.document .title span {
  width: 16px;
  display: inline-block;
  position: relative;
  top: 4px;
  margin-left: 8px;

}

.sec-works {
  /* border-radius: 10px; */
}

.sec-works .box {
  max-width: 900px;
  margin: 0 auto 70px;
}

.sec-works .box:last-child {

  margin: 0 auto 0px;
}

.sec-works .title-en {
  font-size: 35px;
  margin-bottom: 10px;
  font-family: "interstate", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.sec-works .title-ja {
  font-size: 15px;
  font-weight: bold;
}

.sec-works .heading {
  padding: 30px 0;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.sec-works .bottom {
  background: #F9F7F5;
  padding: 50px 15px;
  border-radius: 0 0 10px 10px;
}

.sec-works .bottom .works-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.sec-works .box1 .heading {
  background: #DB1B5E;
  text-align: center;
}

.sec-works .box1 .bottom .item {
  max-width: 276px;
  margin-right: 20px;
}

.sec-works .box2 .bottom .item {
  max-width: 276px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.sec-works .box2 .bottom .item:nth-child(n + 7) {
  max-width: 420px;
  width: 100%;
  margin-bottom: 0;
}

.sec-works .box1 .bottom .item:last-child {

  margin-right: 0px;
}

.sec-works .box2 .heading {
  background: #368AC3;
  text-align: center;
}

.works-btn {
  margin-top: 50px;
  text-align: center;
}



@media screen and (max-width:767px) {
  .ir-contents .tabs-6-wrapper .tabs-5 li:nth-child(1) span a {
    border-left: none !important;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 {
    flex-wrap: wrap;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 li {
    width: 25%;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-child(6) a {
    border-radius: 0;
    border-left: 1px solid #EEE;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-child(6) a {
    border-radius: 0;
    border-left: 1px solid #EEE;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-child(n + 5) a {

    border-top: 1px solid #EEE;
  }

  .su-box2 .title1 {
    font-size: 22px;
  }

  .su-main-title {
    margin-top: 30px;
  }

  .footer-bn {
    margin: 0 auto 40px;
    width: 300px;
  }

  .sec-works .bottom {
    padding: 20px 0 30px;
  }

  .sec-works .box1 .bottom .item {
    margin-right: 0;
  }

  .sec-works .box2 .bottom .item {
    margin-right: 0;
  }

  .works-btn {
    margin-top: 20px;

  }

  .sec-works .box2 .bottom .works-flex {
    /* display: block; */
  }

  .sec-works .box2 .bottom .item {
    max-width: 234px;
    margin-bottom: 5px;
  }

  .sec-works .box1 .bottom .item {
    max-width: 234px;
    margin-bottom: 5px;
  }

  .sec-works .box1 .bottom .item {

    margin-bottom: 5px;
  }

  .sec-works .title-en {
    font-size: 30px;
  }

  .document .flex {
    display: block;

  }

  .document a {
    padding: 15px 0;
  }

  .document .time {
    width: 100%;
    margin-bottom: 10px;
  }

  .document .title {
    width: 100%;

  }

  .reselt-box {
    padding: 30px 10px;
  }

  .history-box {
    margin-bottom: 30px;
  }

  .sec-works {
    padding: 70px 0;
  }

  .history {

    padding: 70px 0;
  }

  .number-sec {
    padding: 150px 0 70px;
  }

  .nu-title {
    font-size: 10px;
    margin-bottom: 15px;
  }

  .nu-img img {
    height: 70px;
  }

  .nu-num {
    font-size: 30px;
  }

  .nu-tani {
    font-size: 18px;
  }

  .number-sec ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .number-sec li {
    background: #fff;
    width: calc(50% - 10px * 1/2);
    margin-right: 10px;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #DA0048;
    box-sizing: border-box;

  }

  .number-sec li:nth-child(2n) {
    margin-right: 0;

  }

  .number-sec li:nth-child(n + 3) {
    margin-top: 10px;

  }

  .indi3-box {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }

  .sub-en {
    padding-top: 0;
    margin-bottom: 10px;
  }

  .rinen-box {
    padding: 40px 20px;
  }

  .rinen-row {
    margin-bottom: 60px;
  }

  .rinen-row {
    display: block;
  }

  .rinen-title-en {
    font-size: 40px;
    font-weight: bold;
    color: #DA0048;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .rinen-right {
    text-align: center;

    width: 100%;
    /* padding-top: 10px; */
    line-height: 1.5;
  }

  .indi3-box .left .wrap {
    padding-top: initial;
  }

  .indi3-box .left .wrap img {
    position: initial;
  }

  .indi3-box .right {
    border-radius: 0px 0 8px 8px;
  }

  .indi3-box .left img {

    border-radius: 8px 8px 0 0;
  }

  .indi3-box {
    display: block;
  }

  .indi3-box .left {
    width: 100%;
  }

  .indi3-box .right {
    width: 100%;
  }

  .indi2-title {
    color: #2A495D;
    font-size: 29px;
  }

  .inner {
    padding: 0 20px;
  }

  .inner2 {
    padding: 0 20px !important;
  }

  .indi2 {
    padding: 120px 0 270px;
    margin-top: -110px;
    background: url(../../common/img/indi2-bg-sp.png) no-repeat bottom center / cover;
  }

  .indi-main-title {
    font-size: 27px;
    padding-bottom: 30px;
  }

  .footer-menu-under {
    display: flex;
    padding: 0 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
  }

  .sp-menu {
    padding-bottom: 40px;
  }

  .footer-menu-under li {
    margin-right: 15px;
    margin-bottom: 20px;
  }

  .footer-menu-under li a {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
  }

  .lead2-lead {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .su-main-title {
    font-size: 22px;
  }

  .is-pc {
    display: none !important;
  }

  .su-ul {
    display: block;
  }

  .su-ul li {
    width: 100%;
    margin-bottom: 20px;
  }

  .tringle {
    display: none;
  }

  .su-box2 .title1 {
    font-size: 22px;
  }

  .su-box .heading {
    background: #E0EAF4;
    padding: 30px 20px 30px;
  }

  .su-box .bottom {
    padding: 30px 20px 30px;
  }

  .su-box .text {
    font-size: 14px;
    line-height: 2;
  }

  .section-title {
    display: block;

  }

  .su-section {
    margin-bottom: 40px;

  }

  .su-box .lead {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
  }

  .company-wrap2 {
    margin: 20px 0 80px;
  }

  .su-main-title {
    margin-bottom: 30px;
  }

  .sec-works .box .bottom .works-flex {
    display: block !important;
  }

  .sec-works .box .bottom .works-flex .item {
    margin-left: auto !important;
    margin-right: auto !important;

  }

  .ir-contents .tabs-6-wrapper .tabs-5 li:nth-child(n + 4) a {
    border-top: 1px solid #EEE;
  }

  .ir-contents .tabs-6-wrapper .tabs-5 li:nth-child(4) a {
    border-left: none !important;
    border-radius: 0px 0 0 4px !important;
    border-right: 1px solid #eee !important;
  }

  .ir-contents .tabs-6-wrapper .tabs-5 li:nth-child(5) a {
    border-left: none !important;
    border-radius: 0 0 4px 0px !important;
  }

  .ir-contents .tabs-6-wrapper .tabs-5 li:nth-child(1) a {
    border-radius: 4px 0 0 0 !important;
  }

  .sec-works .box2 .bottom .item:nth-child(n + 7) {
    max-width: 234px;
    margin-bottom: 5px;
  }

  .sec-works .box .bottom .works-flex .item img {
    height: 50px;
    object-fit: cover;
  }

  .rinen-title-ja {
    font-size: 26px;
    font-weight: 600;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 {
    justify-content: center;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 {
    box-shadow: none;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-child(1) span a {
    border-radius: 8px 0 0 0;
    /* border-left: 1px solid #EEE; */
  }

  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-child(1) span a {
    /* border-radius:  0 0 0 8px; */
    border-left: 1px solid #EEE;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-child(5) span a {
    border-radius: 0 0 0 8px;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-child(7) span a {
    border-radius: 0 0 8px 0px;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-child(4) span a {
    border-radius: 0 8px 0px 0px;
  }

  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-child(n + 5) {
    width: 33.33333%;

    /* border-left: 1px solid #EEE; */
  }

  .tabs-5 li:nth-child(1) {
    width: 33% !important;
  }

  .tabs-5 li:nth-child(2) {
    width: 34% !important;
  }

  .tabs-5 li:nth-child(3) {
    width: 33% !important;
  }

  .su-box2 .title1,
  .su-box2 .title2,
  .su-box2 .co-title .wrap {
    font-size: 5.3vw;
    white-space: nowrap;
  }
}

@media screen and (min-width:767px) {
  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-child(6) span a {
    border-radius: 0 !important;
    border-left: 1px solid #EEE;
  }

}

.indi3 .right .text {
  font-weight: 400;
}

.company-wrap .company-officers .company-officers-h2 {
  text-align: left;
}

.su-box .heading .flex {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;

}

.su-box2-sub-title {
  font-size: 15px;
  font-weight: 300;
  margin-right: 20px;
  position: relative;
  top: -2px;
}

.lead2-lead {
  text-align: left;
}

.su-box2-sub-title-bottom {
  text-align: center;
  margin-bottom: 10px;
  margin-right: 0;
}

.company-wrap .company-officers .company-officers-h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;

}

.add-about-section-heading {
  padding: 20px;
  border-bottom: 2px solid #DA0048;
}

.add-about-section-bottom {
  padding: 20px;
}

.section-title .ja {
  font-size: 18px;
}

.add-about-section-heading .section-title {
  margin-bottom: 0;
}

.add-about-section {
  margin-bottom: 70px;
}

.add-about-section ul li {
  border-radius: 10px;
  border: 2px solid #DA0048;
  /* margin-bottom: 40px; */
}

.add-about-section-bottom {
  font-size: 16px;
  line-height: 2;
}

.add-about-section ul li:last-child {
  margin-bottom: 0;
}

.red-triagle {
  max-width: 30px;
  margin: 10px auto 7px;
}

.red-triagle img {
  width: 100% !important;
  height: auto !important;
  margin-bottom: 0 !important;
}

.mate-img {
  margin-top: 50px;
}

.mate-img img {
  width: 100% !important;
  height: auto !important;
  max-width: initial !important;
}

.mate-img2 {
  margin-top: 0 !important;
}

.meta-box {
  background: #F7F7F7;
  padding: 20px;
  margin-top: 30px;
  display: block;
}

.meta-box-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;

}

.meta-box-text {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;

}

.meta-box .flex {
  display: flex;
  justify-content: space-between;
}

.meta-box .flex .left {
  width: calc(100% - 200px);
}

.meta-box .flex .right {
  width: 180px;
}

.meta-box .flex .right img {
  width: 100% !important;
  height: auto;
  max-width: initial !important;
  margin-bottom: 0 !important;
}

.meta-img3 {
  max-width: 650px;
  margin: 0 auto;
}

.meta-img4 {
  max-width: 550px;
  margin: 0 auto;
}

.section-title-red {
  margin-bottom: 20px;
}

@media screen and (max-width:767px) {
  .su-section-main-title {
    text-align: center;
  }

  .meta-box .flex {
    display: block;

  }

  .meta-box .flex .left {
    width: 100%;
    margin-bottom: 20px;
  }

  .meta-box .flex .right {
    width: 50%;
    margin: 0 auto;
  }

  .mate-img {
    margin-top: 20px;
  }

  .add-about-section-bottom {
    font-size: 14px;

  }

  .add-about-section {
    margin-bottom: 40px;
  }

  .section-title .en {
    margin-right: 0;
    text-align: center;
    margin-bottom: 5px;
  }

  .section-title .ja {
    text-align: center;
  }

  .su-section-main-title {
    font-size: 18px;
  }

  .company-wrap .company-officers .company-officers-h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .su-section-main-title {
    font-size: 20px;
  }

  .su-box2-sub-title-bottom {
    margin-bottom: 0px;
  }

  .su-box .heading .flex {
    display: block;
  }

  .su-box2-sub-title {
    margin-right: 0;
    text-align: center;
  }

  .lead2-lead {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .ir-contents .tabs-6-wrapper .tabs-6 li:nth-of-type(6n) span a {
    border-left: 1px solid #EEE;
    border-radius: 0 0px 0px 0;
  }
}

.right {
  display: flex;
}

.wrap {
  margin-top: 30px;
}

.wrap {
  width: 55%;
  margin-left: 2%;
}

img {}

.wrap img {}

.right-r {
  width: 100%;
  margin-top: 30px;
  margin-left: 4%;
}

.wrap img {
  width: 300px;
  height: 400px;
  object-fit: cover;
}

.indi3-box .right {
  width: 100% !important;
  background: #fff;
  padding: 30px 25px;
}

.indi3 .right .text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.indi3-box .right {
  border-radius: 8px;
}

@media screen and (max-width:767px) {

  .right {
    display: block;
  }

  .indi3-box .right {
    width: 100% !important;
    background: #fff;
    padding: 0px;
  }

  .indi3 .right .text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
    width: 90%;
  }

  .indi3 .right .name {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.15rem;
  }

  .indi3 .right .katagaki {
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 10px;
  }

  .wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0px 0px;
  }

  .right-r {
    width: 90%;
    margin-top: 30px;
    padding: 30px 30px 50px 30px;
    margin-left: 0px;
  }

  .wrap {
    width: 100%;
    margin-left: 0px;
  }

  .rinen-title-ja {
    font-size: 24px !important;
    font-weight: 600;
  }

}

@media screen and (min-width: 767px) {
  .ir-contents .tabs-6-wrapper .tabs-5-a li:nth-child(2) {
    /* width: 20% !important; */
    max-width: initial;
    min-width: initial;
    width: 100% !important;
  }
}

/* アクセシビリティ */
body .uwy.userway_p1 .userway_buttons_wrapper {
  top: 110px !important;
  right: 10px !important;
  bottom: auto !important;
  left: auto !important;
  transform: translate(0) !important;
}

@media screen and (max-width: 767px) {
  body .uwy.userway_p1 .userway_buttons_wrapper {
    top: 70px !important;
    right: 10px !important;
  }
}
/* NOMOCa AI chat LP */
.ytb-wrap img {
  vertical-align: bottom;
}
.ytb-wrap .ytb-contact-wrap {
  background: #eaeff3;
}
.ytb-wrap .ytb-flex {
  display: flex;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
}
.ytb-wrap .ytb-flex-pic {
  align-self: flex-start;
  width: 100%;
}
.ytb-wrap .ytb-flex-pic .btn {
  max-width: 556px;
  padding: 0 20px;
  margin: 44px auto 40px;
}
.ytb-wrap .ytb-flex-pic .btn a:hover {
  opacity: 0.6;
}
.ytb-wrap .ytb-flex-contact {
  width: 100%;
  max-width: 640px;
  padding: 40px 20px;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
}
.ytb-wrap .contact-title {
  font-weight: 400;
  text-align: center;
}
.ytb-wrap .contact-title h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.ytb-wrap .contact-title p {
  font-size: 16px;
  line-height: 2;
}
.ytb-wrap .contact-title p.font {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.ytb-wrap .contact-title p.font .half {
  display: inline-block;
}
.ytb-wrap .ytb-flex-contact .contact-box {
  position: relative;
  padding-top: 600px;
  width: 100%;
  margin: 0 auto;
}
.ytb-wrap .ytb-flex-contact .contact-box iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.ytb-wrap .ytb-flex-contact .contact-box iframe * {
  box-sizing: border-box;
}
.ytb-wrap .genova-logo {
  background: #fff;
  padding: 25px 20px 30px;
  text-align: center;
}
.ytb-wrap .genova-logo a {
  max-width: 200px;
  display: inline-block;
}
.ytb-wrap .genova-logo a span {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #3E4650;
  margin-bottom: 10px;
}
.ytb-wrap .genova-logo p {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .ytb-wrap .ytb-flex-pic {
    background: #fff;
  }
  .ytb-wrap .ytb-flex-pic .btn {
    padding: 0 30px;
    margin: 35px auto;
  }
  .ytb-wrap .contact-title h2 {
    font-size: 15px;
  }
  .ytb-wrap .contact-title p {
    font-size: 15px;
  }
}


/*# sourceMappingURL=common.css.map */

.works-case-wrap .works-case-nav2 .works-case-nav-now p {
  font-size: 25px !important;
  margin-bottom: 0 !important;
  text-align: center;
  line-height: 1;

}

.works-case-wrap .works-case-nav2 {
  align-items: center;
  margin-top: 60px !important;
  margin-bottom: -93px;
}

.works-case-wrap .works-case-nav2 a {
  display: block;
  top: 0px !important;
}

.works-case-wrap .works-case-nav2 .works-case-nav-arrow {
  /* background: transparent !important;
    border-radius: 7px;
    box-shadow: initial !important; */
  padding: 0px 0;
}

.works-case-wrap .works-case-nav2 .works-case-nav-arrow a {
  /* background: #fff;
    border-radius: 7px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0); */
  /* padding: 10px 0; */
  /* width: 40px; */
  padding: 30px;
}

.btn-default2 {
  margin-top: 160px;
}

@media screen and (min-width: 768px) {
  .works-case-wrap .contents-box .works-case-point .point-txt {
    padding: 40px 15px;
  }

  .rinen-title-ja2 {
    font-size: 37px;
  }
}

@media screen and (max-width: 767px) {
  .works-case-wrap .works-case-nav2 .works-case-nav-now p {
    font-size: 14px !important;
    margin-bottom: 0 !important;
    /* text-align: left; */
    line-height: 1.3;

  }

  .inside-slider {
    max-width: 270px;
    margin: 0 auto;
  }

  .search-slider {
    max-width: 270px;
    margin: 0 auto;

  }

  .works-case-wrap .contents-box .works-case-foot .works-case-ex {
    position: relative;
  }

  .works-case-wrap .works-case-nav2 .works-case-nav-now {

    color: #fff;

    padding: 17px 10px;
  }

  .works-case-wrap .works-case-nav2 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-top: 30px !important;
    margin-bottom: -130px !important;
  }
}

.font-red {
  color: #DA0048;
  font-weight: bold;
}

.hover-menu-list a::after {
  display: none;
}

.section {
  padding: 100px 0;
}

.medical2 {
  padding: 100px 0 !important;

}

.section-title2 {
  text-align: center;
  margin-bottom: 50px;
}

.section-title2 .en {
  font-size: 40px;
  font-weight: bold;
  font-family: "interstate", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title2 .ja {
  font-size: 20px;
  font-weight: bold;

}

.record-slider a {
  transition: .3s;
}

.record-slider a:hover {
  opacity: .6;
}

.works-btn2 {
  margin-top: 90px;
}

.records-section .slick-dots li:first-child {
  border-radius: 5px 0 0 5px;
}

.records-section .slick-dots li:last-child {
  border-radius: 0 5px 5px 0;
}

.ex-section {
  background: #fff;
}

.ex-item {
  padding: 0 7px;
}

.ex-name {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.ex-position {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.ex-text {
  font-size: 14px;
  color: #A5AEBA;
}

.ex-img {
  margin-bottom: 15px;
}

.ex-wrap {
  position: relative;
  padding-top: 100%;
}

.ex-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .ex-section .slick-list {
    overflow: initial;
  }

  .records-section .slick-initialized .slick-slide {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .ex-name {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
  }

  .ex-position {
    margin-bottom: 10px;
    font-size: 11px;

  }

  .ex-text {
    font-size: 11px;

  }

  .works-btn2 .btn-under a {
    background-image: url(../../common/img/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
  }

  .section-title2 .en {
    font-size: 9.5vw;
    white-space: nowrap;
  }

  .section-title2 {

    margin-bottom: 40px;
  }

  .section {
    padding: 70px 0;
  }

  .medical2 {
    padding: 70px 0 !important;

  }

  .rinen-title-ja2 {
    font-size: 22px !important;
  }

  .rinen-title-en {
    margin-bottom: 30px;
  }

}

.inner {
  max-width: 960px;
  margin: 0 auto;
}

.inner2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.smart-section {
  background: #fff;
}

.rinen-row2 {
  align-items: center;
}

.records-section {
  background: linear-gradient(to bottom, #fff 50%, #F2EEEB 50%);
}

.records-section .slick-dots li button {
  border-radius: 0;
  background: transparent;
}

.records-section .slick-dots li.slick-active button:before {
  /* display: none; */
  width: 60px;
  height: 9px;
  background: #A5AEBA !important;
  border-radius: 5px;
}

.records-section .slick-dots li {
  margin: 0;
  background: #fff;
  width: 60px;
  height: 9px;
}

.records-section .slick-active {
  /* background: #A5AEBA !important; */
  /* border-radius: 5px; */
}


.records-section .slick-initialized .slick-slide {
  /* overflow: initial; */
  padding: 30px 35px;
}

/* .records-section .slick-initialized .slick-center {
  transform: scale(1.2);
  transition: .3s;
  } */

.record-slider .img.active2 {
  transform: scale(1.2);
  transition: .5s;

}
.record-slider .img {
  
  transition: .5s;
  
}
@media screen and (max-width: 767px) { 
  .record-slider .img.active2 {
    transform: scale(1.1);
    transition: .5s;
  
  }

}


.ex-section .slick-next {
  right: -17px;
  background: url(../../common/img/service/ex-next.png) no-repeat center center / cover;
  width: 45px;
  height: 45px;
  top: 34%;
}

.ex-section .slick-next::before {
  opacity: 1;
  display: none;

}

.ex-section .slick-prev {
  left: -17px;
  background: url(../../common/img/service/ex-prev.png) no-repeat center center / cover;
  width: 45px;
  height: 45px;
  top: 34%;
  z-index: 10;
}

.ex-section .slick-prev::before {
  opacity: 1;
  display: none;

}

.sns-section {
  background: #F2EEEB;
}

.sns-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.sns-item {
  width: 49%;
  display: flex;
  justify-content: space-between;

}

.sns-img {
  width: 39%;
}

.sns-img img {
  width: 100%;
  height: auto;
}

.sns-contents {
  width: 56%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.sns-contents p {
  font-size: 15px;
  line-height: 1.8;
}

.sns-btn .works-btn2 {
  margin-top: 0;
  text-align: left;
}

.sns-bottom {
  display: flex;
  justify-content: space-between;
}

.sns-bottom-item {
  width: 31%;
}

.sns-bottom-flex-icon {
  width: 48px;
  margin-right: 20px;
}

.sns-bottom-flex-icon img {
  width: 100%;
  height: auto;
}

.sns-bottom-item a {
  transition: .3s;
  color: #3E4650;
  font-size: 20px;
  font-weight: bold;
  display: block;
  white-space: nowrap;
  border-radius: 19px;
  background: #fff;
  padding: 30px 0;
}

.sns-bottom-item a:hover {
  transform: scale(1.1);
}

.sns-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: center;

}

.btn-default5 a {
  background-image: url(../../common/img/arrow-right.svg);
}

@media screen and (max-width: 767px) {
  .sns-heading {
    display: block;
  }

  .sns-item {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    display: block;
  }

  .sns-img {
    width: 100%;
    max-width: 180px;
    margin: 0 auto 20px;
  }

  .sns-contents {
    width: 100%;

  }

  .sns-contents p {
    width: 100%;
    margin-bottom: 20px;
  }

  .sns-item:first-child {
    margin-bottom: 60px;
  }

  .sns-btn .works-btn2 {
    text-align: center;
  }

  .sns-bottom {
    display: block;
    max-width: 300px;
    margin: 0 auto;
  }

  .sns-bottom-item {
    width: 100%;
    margin-bottom: 15px;
  }

  .sns-bottom-item:last-child {
    margin-bottom: 0px;
  }

}

.last-section {
  background: #fff;
}

.last-section-box {
  background: #F6F3F1;
  border-radius: 19px;
  max-width: 520px;
  margin: 0 auto;
  padding: 30px 60px 0;
  display: flex;
  align-items: center;

}

.last-section-right {
  width: 200px;
}

.last-section-left {
  width: calc(100% - 200px);
}

.last-section-title {
  font-size: 42px;
  font-weight: bold;
  color: #DA0049;
  line-height: 1.23;
  font-family: "interstate", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.last-section-btn .works-btn2 {
  margin-top: 40px;
  text-align: left;
}

.last-section-btn .works-btn2 a {
  background-image: initial;
}

@media screen and (max-width: 767px) {
  .last-section-title {
    font-size: 28px;
  }

  .last-section-btn .works-btn2 {
    margin-top: 25px;
    text-align: left;
  }

  .last-section-right {
    width: calc(100% - 180px);
  }

  .last-section-left {
    width: 180px;
  }

  .last-section-box {
    padding: 18px 30px 0;
  }

  .last-section-btn .works-btn2 a {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 9px;
  }

  .last-section-btn2 .works-btn2 {
    margin-bottom: 30px !important;
  }
}
.smartclinic_inner {
	padding: 0 40px;
}
.inner {
  max-width: 1000px;
}

@media screen and (min-width: 767px) {
  .smart-section .rinen-title-en {
    width: 200px;
  }

  .smart-section .rinen-right {
    width: calc(100% - 200px);
  }
}

.section-about-wrap {
  max-width: 936px;
  margin: 0 auto;
}

.smart-company {
  background: #fff;
}

.smart-company-title {
  font-size: 30px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.63;
}

@media screen and (max-width: 768px) {
  .smart-company-title {
    font-size: 6.6vw;
  }

  .smart-section .rinen-title-ja2 {
    font-size: 5.2vw !important;
  }
}

.smart-banner img {
  width: 100%;
  height: auto;
}

.smart-banner {
  display: block;
  width: auto !important;
  padding: 0 20px;
}

.smart-slider {
  display: flex;
  align-items: center;
}

.smart-banner img {
  height: 42px;
  /* ここでバナーの高さを指定します。適宜変更してください。 */
  /* object-fit: contain; */
  /* 縦横比を維持しつつ、画像をコンテナに収めます。 */
	width: auto;
    max-width: 100%;
  /* 幅を100%に設定します。 */
}


.service-section-flex {
  display: flex;
  justify-content: space-between;
}

.service-section-flex-box {
  background: #fff;
}

.service-section-flex-box1 {
  width: 33%;
}

.service-section-flex-box2 {
  width: 49.5%;
}

.service-section-flex-box3 {
  width: 16.5%;
}

.service-section-flex-bottom1 {
  display: flex;
  padding: 30px 20px;
  justify-content: space-between;
}

.service-section-flex-bottom1 a {
  transition: .3s;
}

.service-section-flex-bottom1 a:hover {
  opacity: .6;
}

.service-section-flex-heading {
  font-size: 1vw;
  font-weight: 700;
  padding: 24px 0;
  color: #fff;
  text-align: center;
}

.service-section-sub-title {
  font-size: .88vw;
  font-weight: bold;
  line-height: 1.73;
  text-align: center;
  white-space: nowrap;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #368AC3;
}

.service-section-flex-row1 {
  width: 48%;
}

.service-section-flex-row2 {
  width: 31%;
}

.service-section-flex-item-text {
  font-size: .75vw;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.service-section-flex-item {
  margin-bottom: 20px;
}

.service-section-flex-item:last-child {
  margin-bottom: 0px;
}
.txt_more {
	font-size: .55vw !important;
}
.coming-soon {
  pointer-events: none;
  position: relative;
  display: block;


}

.coming-soon::after {
  position: absolute;
  content: "";
  background: url(../../common/img/service/comming-soon.png) no-repeat center center / cover;
  top: 0;
  left: -1.2px;
  width: 101.5%;
  height: 100%;
  border-radius: 3px;
  border-radius: 7px;
}

.inside-section .slick-next {
  right: -17px;
  background: url(../../common/img/service/ex-next.png) no-repeat center center / cover;
  width: 45px;
  height: 45px;
  top: 50%;
}

.inside-section .slick-next::before {
  opacity: 1;
  display: none;

}

.inside-section .slick-prev {
  left: -17px;
  background: url(../../common/img/service/ex-prev.png) no-repeat center center / cover;
  width: 45px;
  height: 45px;
  top: 50%;
  z-index: 10;
}

.inside-section .slick-prev::before {
  opacity: 1;
  display: none;

}

.inside-item {
  margin: 0 10px;
  background: #fff;
  border-radius: 7px;
}

.inside-img {
  border-radius: 7px 7px 0 0;
  position: relative;
}

.inside-new {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 15px;
  font-weight: bold;
  background: #FFF57E;
  padding: 5px 20px;
  font-family: "interstate", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.inside-wrap {
  position: relative;
  padding-top: 54%;
}

.inside-img img {
  border-radius: 7px 7px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inside-bottom {
  padding: 20px 15px;
}

.inside-title {
  font-size: 14px;
  line-height: 1.666;
  margin-bottom: 30px;
  font-weight: bold;
}

.inside-item a {
  transition: .3s;
  color: #3E4650;
}

.inside-item a:hover {
  opacity: .6;
}

.inside-tags {
  display: flex;
  flex-wrap: wrap;
}

.inside-tag {
  color: #A5AEBA;
  border: 1px solid #A5AEBA;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 50px;
  margin-right: 5px;
  margin-bottom: 5px;
  line-height: 1.3;
}

.inside-time {
  font-size: 15px;
  font-family: "interstate", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  text-align: right;
}

.search-section {
  padding: 0;
}

.search-section .section-title2 {
  display: flex;
  align-items: center;
}

.search-section .section-title2 .en {
  display: flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 0;
}

.search-section .section-title2 .en span {
  width: 60px;
  margin-right: 10px;
}

.s-tab-area {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;

  cursor: pointer;
  /* カーソルポインターに */
}

.s-tab {
  background: #fff;
  padding: 5px;
  /* text-align: center; */
  font-size: 19px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 21px;
  margin-right: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.s-tab.active {
  color: #fff;
  background: #DA0048;
}

.panel {
  display: none;
  text-align: center;
}

.panel.active {
  display: block;
}

.displaynone {
  display: none !important;
}

.panel-area .slick-track {
  display: flex;
  justify-content: center;

}

.search-item {
  margin: 0 15px;
}

.search-section .slick-next {
  right: -17px;
  background: url(../../common/img/service/ex-next.png) no-repeat center center / cover;
  width: 45px;
  height: 45px;
  top: 50%;
}

.search-section .slick-next::before {
  opacity: 1;
  display: none;

}

.search-section .slick-prev {
  left: -17px;
  background: url(../../common/img/service/ex-prev.png) no-repeat center center / cover;
  width: 45px;
  height: 45px;
  top: 50%;
  z-index: 10;
}

.search-section .slick-prev::before {
  opacity: 1;
  display: none;

}

.search-item a {
  transition: .3s;
}

.search-item a:hover {
  opacity: .6;
}

.search-section .slick-slide>div {
  height: 100%;
}

.search-section .slick-slide {
  height: initial;
  float: initial;
}

.search-section .search-item img {
  width: 100%;
  height: auto;
}

.service-section-flex-bottom1 a {
  display: block;
  border: 1px solid #CDD4DD;
  border-radius: 7px;
  position: relative;
  padding-top: 32%;
  transition: .3s;
}

.service-section-flex-bottom1 a:hover {

  border: 1px solid #368AC3;

}

.service-section-flex-bottom1 a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section-flex-bottom1 img {

  border-radius: 7px;
}

@media screen and (max-width: 768px) {
  .search-item {
    margin: 0 10px;
  }

  .search-section .slick-next {
    right: -30px;
  }

  .search-section .slick-prev {
    left: -30px;
  }

  .s-tab-area {
    border-radius: 32px !important;
  }

  .s-tab-area {
    position: relative;
  }

  .open-contents {
    display: none;
  }

  .s-first {
    /* border-radius: 32px 32px 32px 32px !important; */
  }

  .s-first.ans {
    /* border-radius: 32px 32px 0 0 !important; */
  }

  /* .s-last {
    border-radius: 32px 32px 32px 32px !important;
  } */
  .s-last.ans {
    /* border-radius:0 0 32px 32px !important; */
  }

  .s-tab.active {
    background: transparent;
    color: #DA0048;
  }

  .search-arrow {
    display: inline-block;
    width: 17px;
    position: absolute;
    top: 11px;
    right: 12px;
    padding: 10px;
    z-index: 4;
    transition: .3s;
  }

  .search-arrow.an {
    transform: rotate(180deg);
    transition: .3s;
  }

  .s-tab-re {
    position: relative;
  }

  .s-tab {
    width: 100%;
    font-size: 3.5vw;
    padding: 20px 20px;
    border-radius: 0;
    margin-right: 0px;
    margin-bottom: 0px;
    background: transparent;
  }

  .s-tab:nth-child(n + 3) {
    display: none;
  }

  .s-tab:nth-child(n + 3).an {
    display: block;
  }

  .s-tab-area {
    background: #fff;
    border-radius: 39px;
  }

  .inside-section .slick-next {
    right: -30px;
  }

  .search-section .section-title2 .en {
    margin-right: 0;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 10px;
  }

  .search-section .section-title2 {
    display: block;
  }

  .inside-section .slick-prev {
    left: -30px;
  }

  .ex-section .works-btn2 {
    margin-top: 50px;
  }

  .inside-section .works-btn2 {
    margin-top: 50px;
  }

  .service-section-flex {
    display: block;
  }

  .service-section-flex-bottom1 {
    padding: 50px 34px;
  }

  .service-section-flex-box1 {
    width: 100%;
    margin-bottom: 30px;
  }

  .service-section-flex-box2 {
    width: 100%;
    margin-bottom: 30px;
  }

  .service-section-flex-box3 {
    width: 100%;
  }

  .inner-max {
    padding: 0 20px;
  }

  .service-section-flex-bottom1 {
    display: block;
  }

  .service-section-flex-row1 {
    width: 100%;
  }

  .service-section-flex-row2 {
    width: 100%;
  }

  .service-section-flex-row3 {
    width: 100%;
  }

  .coming-soon::after {
    height: 100%;
  }

  .service-section-flex-heading {
    font-size: 17px;
  }

  .service-section-sub-title {
    font-size: 4.6vw;
  }

  .service-section-flex-item-text {
    font-size: 4vw;
  }
  .txt_more {
    font-size: 4vw !important;
  }
  .service-section-flex-item {
    margin-bottom: 35px;
  }

  .service-section-sub-title {
    margin-bottom: 35px;
  }

  .service-section-flex-row1 {
    margin-bottom: 70px;
  }

  .service-section-flex-row1:last-child {
    margin-bottom: 0px;
  }

  .service-section-flex-row2 {
    margin-bottom: 70px;
  }

  .service-section-flex-row2:last-child {
    margin-bottom: 0px;
  }

  .s-tab-area {
    margin-bottom: 50px;
  }
}

.works-tag ul li {
  text-align: center;
  line-height: 1.3;
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex p {
  line-height: 1.3;
}

@media screen and (min-width: 1500px) {
  .service-section-sub-title {
    font-size: 13.2px;
  }

  .service-section-flex-item-text {
    font-size: 12px;
  }

  .service-section-flex-heading {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  /* .top_service_philosophyBlock h4 {
    font-size: 22px;
    margin-bottom: 40px;
  } */
}

@media screen and (min-width: 767px) {
  /* .top_service_philosophyBlock p {
    font-size: 30px;
    line-height: 35px;
    white-space: nowrap;
    font-weight: 600;
    line-height: 1.7;
  }

  .top_service_philosophyBlock:last-child h4 {
    transform: translateY(-25px);
  }

  .top_service_philosophyBlock:last-child p {
    transform: translateY(-25px);
  } */
}

@media screen and (min-width: 768px) {
  .top_service_wrap .top_service_txt_block .top_service_txt p {
    max-width: 600px;
    font-size: 17px;
    line-height: 2.8;
    margin-bottom: 20px;
  }

  .top_service_ublock {
    max-width: 1200px;
    margin: 80px auto 0;
  }

  .top_service_ublock .works-btn .btn-under a {
    font-size: 15px;
  }

  .top_service_ublock .last-section-box {
    max-width: 500px;
    margin: 0 20px;
  }

  .top_service_ublock .last-section-right {
    width: 35%;
  }

  .top_service_ublock .last-section-left {
    width: 70%;
    margin-right: 10px;
  }

  .top_service_ublock .last-section-btn .works-btn2 {
    margin-bottom: 80px;
  }

  .top_service_ublock .last-section-box {
    align-items: flex-end;
  }

  .top_service_ublock .last-section-box:first-child .last-section-right {
    width: 44%;
  }

  /*.btn-default a {
    padding: 20px 40px;
  }*/

  .top-cta .inner {}
}

@media screen and (max-width: 1100px) {
  .top_service_ublock .works-btn .btn-under a {
    font-size: 12px;
    padding: 20px 20px;
  }
}

@media screen and (max-width: 1000px) {
  .top_service_ublock .works-btn .btn-under a {
    padding: 10px 20px;
    margin-bottom: 30px;
  }

  .top_service_wrap .top_service_ublock {
    display: block;
  }

  .top_service_ublock .last-section-box {
    margin: 0 auto 40px;
    align-items: flex-end;
  }

  .top_service_ublock .last-section-box:last-child {
    margin-bottom: 0px;
  }

  .top_service_ublock .last-section-box:last-child .last-section-right {
    width: calc(100% - 205px);
  }

  .top_service_ublock .last-section-box:last-child .works-btn .btn-under a {
    margin-bottom: 5px;
  }

  .top_service_ublock .last-section-box .last-section-left {
    margin-right: 20px;
  }
}

.records-section .slick-dots li.slick-active button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  content: '•';
  text-align: center;
  /* opacity: .25; */
  background: #DA0048 !important;
}

.records-section .slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  content: '•';
  text-align: center;
  background: #A5AEBA !important;
  opacity: 1;

  /* opacity: .25; */
}

.records-section .slick-dots li {
  background: initial;
  width: initial;
  height: initial;
  margin: 0 7px;
}

.no-hover {
  opacity: 1 !important;
  border: 1px solid #CDD4DD !important;
}

.search-item-spe {}

.search-item-spe .heading-img {
  height: auto !important;
}

.search-item-spe .bottom-img {
  height: 86px !important;

}

@media screen and (max-width: 1000px) {
  .search-item-spe .bottom-img {
    height: 71px !important;

  }

}

body,
html {
  overflow-x: hidden;
}

.records-section .slick-initialized .slick-center,
.records-section .slick-initialized .slick-slide {
  /* transition: 1s; */
}

.works-case-wrap .contents-box .works-case-foot .works-case-ex p {
  line-height: 1.7;
}
.works-case-wrap .works-case-nav .works-case-nav-now p {
  line-height: 1.3 !important;
}


/*-------------------
2024/08/08
-------------------*/
.yellow-line {
    position: relative;
    z-index: 1;
}
.yellow-line:after {
    position: absolute;
    content: '';
    display: block;
    background: #fff57e;
    width: 100%;
    height: 10px;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.btn-blank a {
    background-image: url(../../common/img/arrow-right-blank.png);
}
.works-contents-inner {
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.works-contents .works-contents-inner .works-case-wrap {
    max-width: inherit;
    box-sizing: border-box;
    width: calc((100% - 40px) / 3);
    margin: 0;
    min-width: inherit;
	padding: 20px;
}
.works-contents .works-contents-inner .works-case-wrap .works-inner {
    display: block;
}
.works-contents .works-contents-inner .works-case-wrap .works-inner .works-thumb {
    margin-right: 0;
    margin-bottom: 10px;
}
.works-contents .works-contents-inner .works-case-wrap .works-inner .works-thumb img {
    width: 100%;
}
.works-contents .works-contents-inner .works-case-wrap .works-inner .works-inner-right .btn-default {
    position: static;
}
.w218 {
    max-width: 218px;
    width: 100%;
    margin: 0 auto;
}
.w332 {
    max-width: 332px;
    width: 100%;
    margin: 0 auto;
}
.w300 {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}
.works-case-list {
    max-width: 608px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    column-gap: 22px;
	align-items: flex-end;
}
.works-contents .works-case-wrap h2 {
	margin-bottom: 10px;
}
.top_service_wrap .top_service_ublock > div {
    background: #f6f3f1;
    border-radius: 15px;
}
.top_service_wrap .top_service_ublock .top_service_left h3 {
    font-size: 42px;
    line-height: 1.24;
    margin: 0 0 40px 0;
}
.top_service_wrap .top_service_ublock .btn-default a {
    height: auto;
    border-radius: 0;
    background: #f6f3f1;
    display: block;
    max-width: 186px;
    box-sizing: border-box;
    padding: 20px 10px;
    text-align: center;
}
.top_service_wrap .top_service_ublock .top_service_sc .btn-default a {
    max-width: 245px;
}
.top_service_wrap .top_service_ublock .btn-default a:hover {
    background-color: #DA0048;
}
.top_service_wrap .top_service_ublock .top_service_mp img {
    height: auto;
    border-radius: 0;
    margin: 0;
	width: 46%;
    max-width: 204px;
}
.top_service_wrap .top_service_ublock .top_service_sc img {
    height: auto;
	border-radius: 0;
	margin: 0;
	width: 39%;
    max-width: 162px;
}
.top_service_left {
    padding: 0 10px 30px 0;
}
.top_service_wrap .top_service_ublock .top_service_mp .top_service_left {
    width: 54%;
    box-sizing: border-box;
}
.top_service_wrap .top_service_ublock .top_service_sc .top_service_left {
    width: 61%;
    box-sizing: border-box;
}
.record-slider-nav > .slick-list.draggable {
    display: none;
}

@media screen and (min-width:768px) {
	/*.record-slider .slick-track {
		display: flex;
		width: 100% !important;
		transform: none !important;
	}
	.record-slider .img {
		width: calc(100% / 3) !important;
		box-sizing: border-box;
	}
	.record-slider .img:nth-child(1),
	.record-slider .img:nth-child(n+5) {
		display: none;
	}
	.record-slider.record-slider-dif .img.slick-active {
		transform: scale(1.2);
	}*/
	.works-contents .works-case-wrap h2 {
		font-size: 18px;
        margin-bottom: 10px;
    }
	.top_service_wrap .top_service_ublock .top_service_mp {
		max-width: 540px;
		width: 45%;
		box-sizing: border-box;
        padding: 30px 32px 0 60px;
	}
	.top_service_wrap .top_service_ublock .top_service_sc {
		max-width: 540px;
		width: 45%;
		box-sizing: border-box;
		padding: 36px 56px 0 60px;
	}
	.record-slider .slick-track,
	.record-slider .slick-list {
		-webkit-transform: translate3d(0, 0, 0) !important;
		-moz-transform: translate3d(0, 0, 0) !important;
		-ms-transform: translate3d(0, 0, 0) !important;
		-o-transform: translate3d(0, 0, 0) !important;
		transform: translate3d(0, 0, 0) !important;
	}
	.record-slider .img.slick-active.slick-current {
		transform: scale(1.2);
	}
}
@media screen and (min-width: 1001px) and (max-width: 1210px) {
	.top_service_wrap .top_service_ublock .top_service_mp {
		padding: 30px 20px 0;
	}
	.top_service_wrap .top_service_ublock .top_service_sc {
		padding: 36px 20px 0;
	}
	.top_service_wrap .top_service_ublock .top_service_left h3 {
		font-size: 35px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
	.top_service_wrap .top_service_ublock .top_service_mp,
	.top_service_wrap .top_service_ublock .top_service_sc {
		margin: 0 auto;
		width: 100%;
	}
	.top_service_wrap .top_service_ublock .top_service_sc {
		margin-top: 25px;
	}
}
@media screen and (max-width:767px) {
	.auto_height {
        height: auto !important;
    }
	.works-contents-inner {
		max-width: inherit;
		display: block;
	}
	.works-contents .works-contents-inner .works-case-wrap {
		width: 100%;
		margin-bottom: 20px;
	}
	.sns-bottom-dif .sns-bottom-flex {
		justify-content: flex-start;
		padding-left: 14.5%;
	}
	.smart-company .slick-track {
		display: flex;
		justify-content: flex-start;
	}
	.smart-company .slick-track .smart-banner {
		float: none;
	}
	.works-case-list {
		display: block;
		max-width: 300px;
	}
	/*.record-slider.record-slider-dif .img.slick-active {
		transform: scale(1.1);
	}*/
	.search-arrow {
		display: none;
	}
	.s-tab-area {
        z-index: 1;
    }
	.s-tab-area:after {
		position: absolute;
		content: '';
		display: block;
		background: url(../img/service/search-arrow.png) no-repeat no-repeat;
		background-size: cover;
		width: 17px;
		height: 10px;
		right: 13px;
		top: 24px;
		z-index: -1;
		transition: .3s;
	}
	.swiper-slide_open:after {
		transform: rotate(180deg);
		transition: .3s;
	}
	.s-tab {
		display: none;
	}
	.swiper-slide_open .s-tab {
		display: block;
	}
	.s-tab.active {
		display: block;
	}
	.top_service_wrap .top_service_ublock > div {
		padding-top: 20px;
	}
	.top_service_wrap .top_service_ublock .top_service_mp .top_service_left {
		padding-left: 1em;
		width: 60%;
	}
	.top_service_wrap .top_service_ublock .top_service_left h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.top_service_wrap .top_service_ublock .btn-default a {
		padding: 10px 5px 8px;
		font-size: 11px;
	}
	.top_service_wrap .top_service_ublock .top_service_mp img {
		padding-right: 1em;
		box-sizing: border-box;
		width: 40%;
	}
	.top_service_wrap .top_service_ublock .top_service_sc .top_service_left {
		padding-left: 1em;
		width: 64%;
	}
	.top_service_wrap .top_service_ublock .top_service_sc img {
		padding-right: 1em;
		box-sizing: border-box;
		width: 36%;
	}
}
/* SP */
@media screen and (max-width: 768px) {
	.works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area {
		width: 100%;
	}
 .works-case-wrap .works-case-head .works-case-head-wrap .works-case-head-area .works-case-head-area-txt {
   display: table-cell;
   vertical-align: top;
   margin: 0 0 30px 0;
   padding-top: 90%;
 }
  }
  

.front-contents-box-over table.default td.w13 {
  width: 13%;
}
.front-contents-box-over table.default td small {
  display: block;
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  .front-contents-box-over .scroll_table {
    overflow-x: scroll;
  }
  .front-contents-box-over table.default {
    width: 625px;
  }
}

@media screen and (max-width: 479px) {
  .front-contents-box-over table.default {
    width: 460px;
  }
}

/* -------------------
     250417追加
------------------- */
.contact-section {
  background: url(../img/service/smart-contact_bg.png) no-repeat no-repeat;
  background-size: cover;
  padding: 48px 40px;
  margin-top: 115px;
}
.contact-section .contact-inner {
  max-width: 774px;
  background: #DA0048;
  border-radius: 7px;
  margin: 0 auto; 
}
.contact-section .contact-wrap {
  max-width: 578px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 36px 35px 39px;
  margin: 0 auto;
}
.contact-section .contact-wrap-title {
  font-size: 27px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 14px;
}
.contact-section .contact-wrap-txt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.79;
}
.contact-section .contact-wrap-btn {
  width: 220px;
}
.contact-section .contact-wrap-btn a {
  display: block;
  max-width: 220px;
  border: 1px solid #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding: 21px 20px 20px;
  transition: all 0.5s;
}
.contact-section .contact-wrap-btn a:hover {
  background: #BC0035;
}

@media screen and (max-width: 767px) {
  .contact-section {
    padding: 40px 20px;
    margin-top: 70px;
  }
  .contact-section .contact-inner {
    max-width: 320px;
  }
  .contact-section .contact-wrap {
    flex-direction: column;
    padding: 30px 20px 35px;
  }
  .contact-section .contact-wrap-title {
    text-align: center;
  }
  .contact-section .contact-wrap-txtarea {
    margin-bottom: 25px;
  }
  .contact-section .contact-wrap-btn {
    width: 100%;
    max-width: 220px;
  }
}


/*　250424 medicalplatform 修正　*/
.service .service-wrap .service-mp-block .service-mp-txtarea.bg-none {
  background: none;
  padding: 0;
  box-shadow: inherit;
  border-radius: 0px;
}
.service .service-wrap .service-mp-block .service-mp-txtarea.bg-none .works-btn {
  margin-top: 0;
}
.service .service-wrap .service-mp-block .service-mp-txtarea.bg-none .btn-under a {
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
  padding: 20px 50px 20px 35px;
}

@media screen and (min-width: 768px) {
  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block {
    margin-bottom: 30px !important;
  }
  .service .service-wrap .service-mp-block:last-child .service-mp-imgarea .service-mp-imgarea-block:last-child {
    margin-bottom: 0 !important;
  }
  .service .service-wrap .service-mp-block .service-mp-imgarea .service-mp-imgarea-block p {
    margin: 0;
   }
  .service .service-wrap .service-mp-block .service-mp-txtarea.bg-none {
    /* background: none;
    padding: 0; */
    max-width: 500px;
    /* box-shadow: inherit;
    border-radius: 0px; */
  }
  .service .service-wrap .service-mp-block:not(:first-child) .service-mp-txtarea {
    margin-top: 65px;
  }
}

@media screen and (max-width: 767px) {
  .service .service-wrap .service-mp-block:not(:first-child) {
    margin-top: 50px;
  }
}