@charset "UTF-8";
body::before {
  display: none;
}

section {
  padding: 80px 0;
}
@media only screen and (max-width: 959px) {
  section {
    padding: 48px 0;
  }
}



/**
 * 
 * .main-vis
 * NOTE: 
 * 変数を調整するだけで、レイアウトを破綻させずにサイズ変更が可能になっています。
 * 
**/

.main-vis {
  --main-vis-img-offset: 120px;
  display: block;
  background: url('/common/images/bg-mv.jpg') no-repeat center top #fff;
  background-size: cover;
  width: 100%;
  min-height: 640px;
  padding: 64px 0 0;
  overflow: hidden;/* NOTE: はみ出た装飾を隠すために必要 */
  position: relative;
  z-index: 1;/* NOTE: headerよりも下に */
}
.main-vis__inner.l-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 960px) and (max-width: 1399px) {
  .main-vis {
    --main-vis-img-offset: 64px;
    padding: 136px 0 0;
  }
  .main-vis__inner.l-container {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 959px) {
  .main-vis {
    --main-vis-img-offset: -48px;
    padding: 160px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .main-vis {
    --main-vis-img-offset: -48px;
    padding: 112px 0 0;
  }
}
@media only screen and (max-width: 560px) {
  .main-vis {
    --main-vis-img-offset: -24px;
    padding: 112px 0 0;
  }
}



/**
 * .main-vis__img, .main-vis__txt
 * NOTE: .main-visの上半分
**/
.main-vis__img {
  width: calc( 50% + var(--main-vis-img-offset) );
}
@media only screen and (max-width: 959px) {
  .main-vis__img {
    text-align: center;
    width: 100%;
    margin: var(--main-vis-img-offset) 0 0;
    order: 2;
    position: relative;
    z-index: 1;
  }
}
@media only screen and (max-width: 767px) {
  .main-vis__img {
    width: 100%;
  }
}
.main-vis__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 11 / 8;
  object-fit: contain;
}
@media only screen and (max-width: 959px) {
  .main-vis__img img {
    max-width: 440px;
  }
}
@media screen and (max-width: 560px) {
  .main-vis__img img {
    max-width: 360px;
  }
}

.item--main__txt {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.75;
  margin-top: 20px;
}
.main-vis__txt {
  --txt-base-fs: 14px;
  width: calc( 50% - var(--main-vis-img-offset) );
}
@media only screen and (min-width: 960px) and (max-width: 1399px) {
  .main-vis__txt {
    --txt-base-fs: 1.2vw;
  }
}
@media only screen and (max-width: 959px) {
  .main-vis__txt {
    --txt-base-fs: 16px;
    text-align: center;
    width: 100%;
    order: 1;
    position: relative;
    z-index: 5;
  }
}
@media only screen and (max-width: 767px) {
  .main-vis__txt {
    --txt-base-fs: 16px;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .main-vis__txt {
    --txt-base-fs: 3.5vw;
    width: 100%;
  }
}
.main-vis__txt .item--desc {
  font-size: calc( var(--txt-base-fs) * 1 );
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1ex;
  margin: 0 0 calc( var(--txt-base-fs) * 1 );
}
.main-vis__txt .item--site-name {
  font-size: calc( var(--txt-base-fs) * 1.25 );
  font-weight: 600;
  line-height: calc( var(--txt-base-fs) * 1.5 );
  letter-spacing: 0.1ex;
  margin: 0 0 calc( var(--txt-base-fs) * 1.25 );
}
.main-vis__txt .item--site-name span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.main-vis__txt .item--site-name b {
  font-size: 1lh;
  font-weight: 700;
  line-height: inherit;
}
.main-vis__txt .item--site-name * + b {
  margin-left: 0.3333ex;
}
.main-vis__txt .item--slogan {
  font-size: calc( var(--txt-base-fs) * 3 );
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1ex;
}
@media screen and (max-width: 560px) {
  .main-vis__txt .item--desc {
    font-feature-settings: 'palt';
    font-weight: 500;
    font-size: 12px;
    margin: 0 0 0.75em;
  }
  .main-vis__txt .item--site-name {
    font-feature-settings: 'palt';
    font-size: 13px;
    line-height: 1.25;
    margin: 0 0 1.5em;
  }
  .main-vis__txt .item--slogan {
    font-size: calc( var(--txt-base-fs) * 2.5 );
  }
  .item--main__txt {
    font-size: 15px
  }
}
@media screen and (max-width: 400px) {
  .main-vis__txt .item--desc {
    font-size: 11px;
  }
  .main-vis__txt .item--site-name {
    font-size: 14px;
  }
}
@media screen and (max-width: 320px) {
  .main-vis__txt .item--desc {
    font-size: 11px;
  }
  .main-vis__txt .item--site-name {
    font-size: 13px;
  }
}



/**
 * .main-vis__bottom
 * NOTE: .main-visの下半分
**/
.main-vis__bottom {
  --bottom-margin-top: -48px;
  --bottom-bg-ellipse-height: 480px;/* NOTE: 値を大きくすると境界線が直線に近づき、小さくするとラウンドがきつくなります */
  --bottom-bg-ellipse-margin: 96px;
  --bottom-bg-ellipse-aspect: 5;/* NOTE: SVGのアスペクト比に合わせます */
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: #fff;
  width: 100%;
  margin: calc( var(--bottom-bg-ellipse-margin) + var(--bottom-margin-top) ) 0 0;
  padding: 0 0 160px;/* NOTE: padding-topは変更不可　常に「0」 */
  position: relative;
}
@media only screen and (max-width: 959px) {
  .main-vis__bottom {
    --bottom-bg-ellipse-height: 480px;/* NOTE: 値を大きくすると境界線が直線に近づき、小さくするとラウンドがきつくなります */
    --bottom-bg-ellipse-margin: 48px;
    --bottom-bg-ellipse-aspect: 5;/* NOTE: SVGのアスペクト比に合わせます */
    margin: calc( var(--bottom-bg-ellipse-margin) + var(--bottom-margin-top) ) 0 0;
    order: 100;
  }
}
@media only screen and (max-width: 767px) {
  .main-vis__bottom {
    --bottom-bg-ellipse-height: 480px;/* NOTE: 値を大きくすると境界線が直線に近づき、小さくするとラウンドがきつくなります */
    --bottom-bg-ellipse-margin: 48px;
    --bottom-bg-ellipse-aspect: 5;/* NOTE: SVGのアスペクト比に合わせます */
    margin: calc( var(--bottom-bg-ellipse-margin) + var(--bottom-margin-top) ) 0 0;
    padding-bottom: 96px;
  }
}
@media screen and (max-width: 560px) {
  .main-vis__bottom {
    --bottom-bg-ellipse-height: 160px;/* NOTE: 値を大きくすると境界線が直線に近づき、小さくするとラウンドがきつくなります */
    --bottom-bg-ellipse-margin: 32px;
    --bottom-bg-ellipse-aspect: 5;/* NOTE: SVGのアスペクト比に合わせます */
    margin: calc( var(--bottom-bg-ellipse-margin) + var(--bottom-margin-top) ) 0 0;
    padding-bottom: 80px;
  }
}

/* 装飾 白い楕円 */
/* NOTE: 余白調整の場合は、以下、設定変更不要（変数のみ変更でOK） */
.main-vis__bottom::before {
  content: '';
  display: block;
  background-image: url('/common/images/bg-ellipse-w.svg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  width: auto;
  height: var(--bottom-bg-ellipse-height);
  aspect-ratio: var(--bottom-bg-ellipse-aspect) / 1;
  position: absolute;
  top: calc( var(--bottom-bg-ellipse-margin) * -1 );
  left: 50%;
  z-index: 1;
  transform: translate(-50%,0);
  pointer-events: none;
}
/* 装飾 白い楕円下の白い矩形 */
/* NOTE: 余白調整の場合は、以下、設定変更不要（変数のみ変更でOK） */
.main-vis__bottom::after {
  content: '';
  display: block;
  background: #fff;
  width: calc( var(--bottom-bg-ellipse-height) * var(--bottom-bg-ellipse-aspect) );
  position: absolute;
  top: calc( var(--bottom-bg-ellipse-height) * 0.5 + var(--bottom-bg-ellipse-margin) * -1 );
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translate(-50%,0);
  pointer-events: none;
}

.main-vis__txt-closing {
  width: calc( 100% - 56.25% );
  position: relative;
  z-index: 10;/* NOTE: 楕円装飾よりも上に */
}
.main-vis__txt-closing p {
  font-size: 20px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: 0.15ex;
}
@media only screen and (max-width: 959px) {
  .main-vis__txt-closing {
    text-align: center;
    width: 100%;
  }
  .main-vis__txt-closing p {
    font-size: 20px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .main-vis__txt-closing {
    text-align: center;
    width: 100%;
  }
  .main-vis__txt-closing p {
    font-size: 16px;
    line-height: 40px;
  }
}
@media screen and (max-width: 560px) {
  .main-vis__txt-closing {
    text-align: center;
    width: 100%;
  }
  .main-vis__txt-closing p {
    font-size: 14px;
    line-height: 32px;
  }
}

.main-vis__button-group {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 56.25%;
  gap: 28px;
  position: relative;
  z-index: 10;/* NOTE: 楕円装飾よりも上に */
}
.btn.main-vis__btn {
  max-width: none;
  width: 100%;
  margin: 0;
}
.btn.main-vis__btn > * {
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.08);
  border-radius: 60px;
  border-width: 2px;
  font-size: 32px;
  height: 96px;
  padding-inline: 1.5em;
}
.btn.main-vis__btn > *:hover {
  border-width: 2px;
}
.btn.main-vis__btn > *::after {
  font-size: 20px;
  width: 32px;
  right: 1.5em;
}
@media only screen and (max-width: 959px) {
  .main-vis__button-group {
    width: 100%;
    margin: 20px 0 0;
    gap: 20px;
  }
  .btn.main-vis__btn > * {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
    font-size: 28px;
    max-width: 520px;
    height: 80px;
    margin-inline: auto;
  }
  .btn.main-vis__btn > *::after {
    font-size: 20px;
    width: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .main-vis__button-group {
    width: 100%;
    margin: 20px 0 0;
    gap: 20px;
  }
  .btn.main-vis__btn > * {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
    font-size: 28px;
    height: 80px;
  }
  .btn.main-vis__btn > *::after {
    font-size: 20px;
    width: 32px;
  }
}
@media screen and (max-width: 560px) {
  .main-vis__button-group {
    width: 100%;
    margin: 4vw 0 0;
    gap: 4vw;
  }
  .btn.main-vis__btn > * {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
    font-size: 5vw;
    font-feature-settings: 'palt';
    height: 72px;
  }
  .btn.main-vis__btn > *::after {
    font-size: 4vw;
    width: 5vw;
  }
}



/**
 * 
 * .feature
 * NOTE: 
 * 変数を調整するだけで、レイアウトを破綻させずにサイズ変更が可能になっています。
 * 
**/

.feature {
  --feature-bg-top-height: 176px;
  --feature-bg-bottom-height: 180px;
  --feature-bg-top-offset: 120px;
  --feature-bg-bottom-offset: 0;
  --feature-bg-top-aspect: 12;
  --feature-bg-bottom-aspect: 10.66;
  background-image: url('/common/images/bg-default.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 0 0 180px;
  position: relative;
  z-index: 1;/* NOTE: headerよりも下に */
  overflow: hidden;/* NOTE: はみ出た装飾を隠すために必要 */
}
@media screen and (max-width: 767px) {
  .feature {
    --feature-bg-top-height: 120px;
    --feature-bg-bottom-height: 136px;
    --feature-bg-top-offset: 120px;
    --feature-bg-bottom-offset: 0;
  }
}
.feature::before {
  content: '';
  display: block;
  box-shadow: 0 calc( var(--feature-bg-top-offset) * -1 ) 0 0 #fff;/* NOTE:SVGの色に合わせる */
  background-image: url('/common/images/bg-wave-top-w.svg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  width: auto;
  height: var(--feature-bg-top-height);
  aspect-ratio: var(--feature-bg-top-aspect) / 1;
  position: absolute;
  top: var(--feature-bg-top-offset);
  left: 50%;
  z-index: 1;
  transform: translate(-50%,0);
  pointer-events: none;
}
.feature::after {
  content: '';
  display: block;
  background-image: url('/common/images/bg-wave-bottom-w.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  width: auto;
  height: var(--feature-bg-bottom-height);
  aspect-ratio: var(--feature-bg-bottom-aspect) / 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%,0);
  pointer-events: none;
}

.feature > * {
  position: relative;
  z-index: 10;
}

.feature .c-head {
  display: block;
  font-size: 28px;
  font-weight: 600;
  line-height: 64px;
  text-align: center;
}
.feature .c-head__ttl {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: center;
}
.feature .c-head__txt {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: center;
}
.feature .c-head__txt b {
  color: var(--site-c-main);
}
@media screen and (max-width: 767px) {
  .feature .c-head {
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
  }
}


.feature__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  padding: 160px 0 0;
  gap: 28px 80px;
}
.feature__item {
  border-radius: var(--site-radius);
  background: #fff;
  width: calc( ( 100% - 80px ) / 2 );
  margin: 0;
  padding: 28px;
}
.feature__item > a {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.feature__item > [href*="javascript:void(0)"]{
  cursor: inherit;
}
@media screen and (max-width: 767px) {
  .feature__list {
    padding: 120px 20px 0;
    gap: 16px;
  }
  .feature__item {
    width: calc( ( 100% - 16px ) / 2 );
    min-height: 144px;
    margin: 0;
    padding: 0;
  }
}

.feature__img {}
.feature__img img {
  border-radius: var(--site-radius-btn);
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.feature__desc {
  text-align: center;
}
*+.feature__desc {
  margin-top: 12px;
}
.feature__ttl {
  color: #00C8D9;
  font-size: 28px;
  font-weight: 700;
}
*+.feature__ttl {
  margin-top: 12px;
}
.feature__txt {
  color: #00C8D9;
  font-size: 16px;
  font-weight: 700;
}
*+.feature__txt {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .feature__ttl {
    font-size: 16px;
  }
  .feature__txt {
    font-size: 14px;
  }
}

.feature__closing {
  --closing-border-width: 4px;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
*+.feature__closing {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  *+.feature__closing {
    margin-top: 32px;
  }
}
.feature__closing::before {
  content: '';
  display: block;
  border-left: solid var(--closing-border-width) #fff;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: rotate(-20deg);
}
.feature__closing::after {
  content: '';
  display: block;
  border-right: solid var(--closing-border-width) #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 1;
  transform: rotate(20deg);
}
.feature__closing p {
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  padding: 0 2em;
}
.feature__closing b {
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.15ex;
  margin: 0.2em 0 0;
}
@media screen and (max-width: 767px) {
  .feature__closing p {
    font-size: 14px;
    line-height: 1.75;
  }
  .feature__closing b {
    font-size: 32px;
    line-height: 1.25;
  }
}


