@charset "utf-8";
/* CSS Document */

:root {
  --colorText: #FAFAFA;
  --colorContrast: #212121;
  --colorAccent: #2979FF;
  --ease: cubic-bezier(0.83, 0, 0.17, 1);
  --durationXS: .3s;
  --durationS: .5s;
  --durationM: 1.3s;
  --durationL: 1.5s;
  --durationXL: 1.75s;
  --durationXXL: 2s;
  --translateAmount: 3rem;
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --durationXS: .001s;
    --durationS: .001s;
    --durationM: .001s;
    --durationL: .001s;
    --durationXL: .001s;
    --durationXXL: .001s;
  }
}

html {
  height: 100%;
}

body {
}

* {
  margin: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}

.hero-image section {
  max-width: 100%;
}
.hero {
  height: 100vh;
  position: relative;
  display: grid;
  align-content: center;
  justify-items: stretch;
  padding: 4rem;
}
.hero::after, .hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero::after {
  background: var(--colorContrast);
  opacity: 0.55;
  mix-blend-mode: darken;
}
.hero::before {
  background: var(--colorAccent);
  opacity: 0.15;
  mix-blend-mode: color-dodge;
}
.hero__content {
  max-width: 75ch;
}
.hero__title {
  font-size: clamp(2.441rem, 5.36vw, 5.36rem);
  font-weight: 500;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(var(--translateAmount));
  transition: opacity var(--ease) var(--durationM) var(--durationM), transform var(--ease) var(--durationM) var(--durationM);
}
.hero--animated .hero__title {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 20px;  
}
.hero--animated .hero__title span {
  color: #fff;
}
.hero__intro {
  font-size: clamp(1.1rem, 1.753vw, 1.753rem);
  font-weight: 300;
  max-width: 55ch;
  margin-bottom: 1em;
  opacity: 0;
  transform: translateY(var(--translateAmount));
  transition: opacity var(--ease) var(--durationM) var(--durationL), transform var(--ease) var(--durationM) var(--durationL);
  color: #fff;
  line-height: 1.7;
}
.hero--animated .hero__intro {
  opacity: 1;
  transform: translateY(0);
}

.hero__portal {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  z-index: -2;
  transition: transform var(--ease) var(--durationL);
  overflow: hidden;
}
.hero__portal img {
  object-fit: cover;
  width: 100%;
  min-height: 100%;
  height: auto;
  opacity: 0;
  transition: transform var(--ease) var(--durationL), opacity var(--ease) var(--durationS);
}
.hero--animated .hero__portal img {
  opacity: 1;
}
.hero__portal--bg {
  transform: scale(1.55);
}
.hero--animated .hero__portal--bg {
  transform: scale(1);
}
.hero__portal--fg {
  clip-path: polygon(7.5% 7.5%, 92.5% 7.5%, 92.5% 92.5%, 7.5% 92.5%);
  transform: scale(0.85);
}
.hero--animated .hero__portal--fg {
  transform: scale(1);
}
.hero__portal--fg img {
  transform: scale(1.35);
}
.hero--animated .hero__portal--fg img {
  transform: scale(1);
}



/*LINE UP*/
.lineup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lineup .lineup-area {
  width: calc((100% / 6) - 20px);
}

.lineup .box {
  cursor: pointer;
  height: 180px;
  width: 180px;
  margin-inline: auto;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.lineup .box img {
  transition:1s all;
}

.lineup .title {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
  position: relative;
}
.lity .lity-content img {
  width: 200px;
  margin: 0 auto;
}
.lity .lity-content p {
  color: #fff;
  font-size: 16px;
  line-height: 2;
}
.lity-content:after {
  box-shadow: none !important;
}


/*flow*/
.flow {
  background: #fff;
}
.flow-wrap .steps {
  width: 960px;
  margin-right: auto;
  margin-left: auto;
}
.flow-wrap .steps-item {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  place-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  margin: 32px 0px;
  padding: 20px 34px;
}
.flow-wrap .step {
  width: 120px;
  text-align: center;
  border-right: 1px solid rgb(204, 204, 204);
  padding: 30px 0px;
}
.flow-wrap .step .step-txt {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #413b32;
}
.flow-wrap .step .number {
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #413b32;
}
.flow-wrap .steps-item:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #16a189;
  border-right: solid 2px #16a189;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
}
.flow-wrap .steps-item:last-child:after {
  display: none;
}

.flow-wrap .step-body {
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  padding: 25.5px 26px;
}
.flow-wrap .step-body .body-ttl {
  color: #413b32;
  font-size: 20px;
  font-weight: 700;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}
.flow-wrap .step-body .body-sub {
  line-height: 1.7;
  font-size: 17px;
}



/*FAQ*/

.faq .aco {
  margin-bottom: 20px;
}
.faq .accordion-content {
  display: none;
}

.faq .accordion-header {
  background-color: #FFF;
  padding: 30px 45px 30px 20px;
  margin: 10px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
}

.faq .accordion-header::before,
.faq .accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:24px;
  height:2px;
  margin:auto;
  background:#413b32;
}
.faq .accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.faq .accordion-header.active::after{transform:rotate(0deg);}

.faq .accordion-content {
  position: relative;
  background-color: #413b32;
  padding: 30px;
}

.faq .accordion-header span,
.faq .accordion-content span{
  font-size: 18px;
  padding-left: 45px;
  position: relative;
}
.faq .accordion-content span {
  color: #fff;
  display: block;
  padding-left: 0;
  margin-left: 35px;
  line-height: 1.7;
}

.faq .accordion-header span::before{
  position: absolute;
  content:"Q";
  top: -6px;
  left: 0;
  color: #413b32;
  font-size: 34px;
  font-weight: 500;
}


.faq .accordion-content::before{
  position: absolute;
  content:"A";
  top: 29px;
  left: 25px;
  color: #fff;
  font-size: 34px;
  font-weight: 500;
}

/* hover */
.faq .accordion-header:hover {
  background-color: #F2F2F2;
}



/*about*/
.hero-image-about {
  overflow: hidden;
  position: relative;
}
.hero-image-about .hero-image-inner {
  position: relative;
  max-width: 100%;
  height: 610px;
  width: 100%;
  padding: 0 150px;
}
.hero-image-about .hero-txt {
  position: absolute;
  left: 150px;
  bottom: 70px;
  z-index: 1;
}
.hero-image-about .hero-txt p {
  font-size: 4em;
  font-weight: 700;
}
.hero-image-about .hero-txt h2 {
  font-size: 1.7em;
}
.hero-image-about .sub-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 850px;
  height: 490px;
  margin: 0 -62px 0 0;
  padding: 0;
  background-image: url(/img/hero/heroimage-4.jpg);
  box-sizing: border-box;
  background-image: no-repeat;
  background-position: 0 0;
  background-size: 100%;
  border-radius: 130px 0 0 0; /* 左上だけ20pxの角丸 */
  display: block; /* 必要に応じて追加 */
}
.hero-image-about::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 58.66%;
  background: #F3F4F5;
  top: 26px;
  left: 0;
}
@media (min-width: 768px) {
  .hero-image-about::before {
    width: 1600px;
    height: 400px;
    padding: 0;
    top: 0;
  }
}

.aboutus .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 60px;
  padding: 100px 0 100px;
  position: relative;
}
.aboutus .group h2 {
  display: block;
  font-size: 54px;
}
.aboutus .group p {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
}

@media all and (min-width: 600px) { .aboutus .group .btn { position: absolute; left: 0; bottom: 0; margin-top: 0; } }

.aboutus .group .line-wrap { position: absolute; z-index: 0; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }

.aboutus .group .line-wrap .line { position: absolute; z-index: 0; display: block; background: #1e2b2f; }

.aboutus .group .line-wrap .line:before, .aboutus .group .line-wrap .line:after {position: absolute;display: block;content: "";width: 3px;height: 4px;-webkit-transform-origin: 0 0;-ms-transform-origin: 0 0;transform-origin: 0 0;background: url(../img/home/bg_about01.png) no-repeat 0 0;background-size: cover;}

.aboutus .group .line-wrap .lineTl:before, .aboutus .group .line-wrap .lineTl:after, .aboutus .group .line-wrap .lineTr:before, .aboutus .group .line-wrap .lineTr:after, .aboutus .group .line-wrap .lineB:before, .aboutus .group .line-wrap .lineB:after { width: 4px; height: 3px; }

.aboutus .group .line-wrap .lineR, .aboutus .group .line-wrap .lineL { width: 3px; height: calc(100% - 16px); top: 8px; }

@media all and (min-width: 600px) { .aboutus .group .line-wrap .lineR, .aboutus .group .line-wrap .lineL { height: calc(100% - 32px); top: 16px; } }

.aboutus .group .line-wrap .lineR:before, .aboutus .group .line-wrap .lineL:before { top: -4px; }

.aboutus .group .line-wrap .lineTl, .aboutus .group .line-wrap .lineB { width: calc(100% - 16px); height: 3px; left: 8px; }

@media all and (min-width: 600px) { .aboutus .group .line-wrap .lineTl, .aboutus .group .line-wrap .lineB { width: calc(100% - 32px); left: 16px; } }

.aboutus .group .line-wrap .lineTl, .aboutus .group .line-wrap .lineTr { width: calc((100% - 16px - 220px) / 2); }

@media all and (min-width: 600px) { .aboutus .group .line-wrap .lineTl, .aboutus .group .line-wrap .lineTr { width: calc((100% - 16px - 380px) / 2); } }

.aboutus .group .line-wrap .lineTl:after, .aboutus .group .line-wrap .lineTr:after { content: none; }

.aboutus .group .line-wrap .lineTl:before { left: -4px; bottom: 0; -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); transform: scale(1, 1); }

.aboutus .group .line-wrap .lineTr { height: 3px; right: 8px; }

@media all and (min-width: 600px) { .aboutus .group .line-wrap .lineTr { right: 16px; } }

.aboutus .group .line-wrap .lineTr:before { right: -8px; bottom: 0; -webkit-transform: scale(-1, 1); -ms-transform: scale(-1, 1); transform: scale(-1, 1); }

.aboutus .group .line-wrap .lineR { right: 0; }

.aboutus .group .line-wrap .lineR:before { top: 0; -webkit-transform: scale(1, -1); -ms-transform: scale(1, -1); transform: scale(1, -1); }

.aboutus .group .line-wrap .lineR:after { bottom: -4px; }

.aboutus .group .line-wrap .lineL { left: 0; }

.aboutus .group .line-wrap .lineL:before { top: 0; left: 3px; -webkit-transform: scale(-1, -1); -ms-transform: scale(-1, -1); transform: scale(-1, -1); }

@media all and (-ms-high-contrast: none) { .aboutus .group .line-wrap .lineL:before { left: 4px; } }

.aboutus .group .line-wrap .lineL:after { left: 3px; bottom: -4px; -webkit-transform: scale(-1, 1); -ms-transform: scale(-1, 1); transform: scale(-1, 1); }

@media all and (-ms-high-contrast: none) { .aboutus .group .line-wrap .lineL:after { left: 4px; } }

.aboutus .group .line-wrap .lineB { bottom: 0; }

.aboutus .group .line-wrap .lineB:before { left: -4px; bottom: -3px; -webkit-transform: scale(1, -1); -ms-transform: scale(1, -1); transform: scale(1, -1); }

@media all and (-ms-high-contrast: none) { .aboutus .group .line-wrap .lineB:before { left: -3px; } }

.aboutus .group .line-wrap .lineB:after { right: -8px; bottom: -3px; -webkit-transform: scale(-1, -1); -ms-transform: scale(-1, -1); transform: scale(-1, -1); }



.table-wrap table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}
.table-wrap th {
  line-height: 1.5;
  padding: 15px 0 6px;
  font-weight: 700;
  text-align: left;
}
.table-wrap th {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 270px;
  padding: 26px 0 29px;
  border-bottom: 1px solid #e8ebec;
  vertical-align: top;
}
.table-wrap th,
.table-wrap td {
  font-size: 14px;
}
.table-wrap td {
  padding-bottom: 15px;
  border-bottom: 1px solid #e8ebec;
  word-break: normal;
  line-height: 1.6;
}
.table-wrap td {
  padding: 24px 0 29px 20px;
  border-bottom: 1px solid #e8ebec;
}


.access {
  background: #f3f4f5;
  padding: 50px 0;
}
.access .title h2 {
  text-align: center;
}
.access .access-wrap {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  border-radius: 20px;
}
/*
.access .access-wrap .left,
.access .access-wrap .right {
  width: calc((100% / 2) - 10px);
  margin-bottom: 50px;
}
*/
.access .access-wrap .right img {
  margin-left: auto;
  border-radius: 10px;
}
.access .access-wrap .bottom {
  width: 100%;
}
.access .access-wrap .left h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px; 
}
.access .access-wrap .left .access-txt {
  margin-top: 50px;
}
.access .access-wrap .left p {
  margin-bottom: 20px;
}


/*message*/

.message {
  margin-bottom: 100px;
}
.message .msg-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 40px;
}
.message .msg-wrap .left {
  flex-shrink: 0;
  max-width: 440px;
}
.message .msg-wrap .left img {
  margin-bottom: 10px;
}
.message .msg-wrap .left p {
  line-height: 1.8;
}

.message .msg-wrap .right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 40px;
  padding-left: 120px;
  position: relative;
}
.message .msg-wrap .right:before {
  background-color: #f2f2f2;
  content: "";
  display: block;
  height: 100%;
  left: -80px;
  position: absolute;
  top: 40px;
  width: calc(50vw + 220px);
  z-index: -1;
}
.message .msg-wrap .right h3 {
  font-size: 3rem;
  line-height: 1.7;
}
.message .msg-wrap .right p {
  line-height: 2;
}


/*company*/

.company .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.company .wrap a {
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
  background: #fff;
  width: calc((100% / 2) - 10px);
  display: block;
  margin-bottom: 30px;
}
.company .wrap .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.company .wrap .img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 1.5s, -webkit-transform 1.5s;
  display: block;
}
.company .wrap .img img:hover {
   -webkit-transition: -webkit-transform 1s cubic-bezier(.19,1,.22,1);
  transition: -webkit-transform 1s cubic-bezier(.19,1,.22,1);
  transition: transform 1s cubic-bezier(.19,1,.22,1);
  transition: transform 1s cubic-bezier(.19,1,.22,1),-webkit-transform 1s cubic-bezier(.19,1,.22,1);
  -webkit-transform: scale(1.05);
  transform: scale(1.05)
}
.company .wrap .txt {
  padding: 40px 20px;
  text-align: center;
}
.company .wrap .txt h3 {
  font-size: 24px;
  margin-bottom: 30px;
}
.company .wrap .txt p {
  line-height: 2;
  margin-bottom: 30px;
}
.company .btn-wrap {
  width: 70%;
  margin: 0 auto;
  line-height: 60px;
}


/*FAQ*/
.faq-page .faq-wrap {
  margin-bottom: 100px;
}


/*PRICE*/
.price table {
  width: 100%;
  border-collapse: collapse;
}
.price th, .price td {
  border: 1px solid #000;
  text-align: center;
  padding: 8px;
}


/*PRIVACY POLICY*/

/* 基本スタイル */

.privacy_intro {
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}

.privacy dl {
  margin-top: 20px;
}

.privacy dt {
  font-size: 15px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 20px;
}

.privacy dd {
  font-size: 13px;
  line-height: 1.8;
  margin-left: 10px;
  margin-bottom: 10px;
}

.privacy ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy ul li {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 5px;
}
.hero-image-about .sub-img.privacy-hero {
  background-image: url(/img/hero/privacy.jpg);
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .privacy {
    padding: 15px;
  }

  .privacy dt {
    font-size: 16px; /* モバイルでも統一 */
    margin-bottom: 10px;
  }

  .privacy dd {
    font-size: 3vw;
    margin-bottom: 20px;
  }
  .privacy dd a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%; 
  }
  
  .privacy ul {

  }
  .privacy ul li {
    font-size: 3vw;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .hero-image-about .hero-image-inner {
    position: relative;
    padding: 78px 25px 0;
    height: auto;
  }
  .hero-image-about .hero-txt {
    position: unset;
  }
  .hero-image-about .hero-txt p {
    font-size: 7vw;
  }
  .hero-image-about .hero-txt h2 {
    font-size: 4vw;
  }
  .hero-image-about .sub-img {
    position: unset;
    display: block;
    width: calc(100% + 25px);
    height: 0;
    margin: 29px 0 0;
    padding-top: 66%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50px 0 0 0;
    background: no-repeat;
    background-position: 0 0;
    background-size: 100%;
  }
}


