﻿@charset "UTF-8";

/* c-card */
.c-card {
  width: calc(33.3% - 53.3333333333px);
  display: flex;
  flex-direction: column;
  margin-right: 80px;
  padding-bottom: 30px;
  position: relative;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif", "Noto sans JP", sans-serif;
}

.c-card:hover .c-card__img img:first-of-type {
  transform: rotateY(-180deg);
  opacity: 0;
}

.c-card:hover .c-card__img img:last-of-type {
  transform: rotateY(0);
  /*横軸に回転*/
  opacity: 1;
  transition-delay: 0.15s;
  /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.c-card:hover .c-circle-button:before {
  transform: scale(1, 1);
}

.c-card:hover .c-circle-button span:before {
  background-image: url(../img/top/feature-button-white@2x.svg);
  z-index: 10;
}

.c-card__heading {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.c-card__points {
  position: relative;
  font-size: 16px;
  padding-bottom: 20px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif", "Noto sans JP", sans-serif;
  color: #070707;
  margin-right: auto;
}

.c-card__points:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 51px;
  height: 1px;
  background-color: #2D2E31;
}

.c-card__num-num {
  font-size: 32px;
}

.c-card__name {
  font-size: 90px;
  font-family: "Tangerine", "Barlow", sans-serif;
  color: #E0E6F5;
  line-height: 1;
  margin-right: -10px;
}

.c-card__text {
  font-size: 24px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #070707;
}

.c-card__img {
  width: 100%;
  position: relative;
}

.c-card__img img:first-of-type {
  opacity: 1;
  transition: all 0.35s ease;
  /*移り変わる速さを変更したい場合はこの数値を変更*/
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /*三次元になった際に裏面を可視化させない*/
}

.c-card__img img:last-of-type {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: rotateY(90deg);
  /*横軸に回転*/
  transition: all 0.35s ease;
  /*移り変わる速さを変更したい場合はこの数値を変更*/
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /*三次元になった際に裏面を可視化させない*/
}

.c-card:nth-of-type(3n-1) {
  top: 0;
}

.c-card:nth-of-type(3n-1) {
  top: 80px;
}

.c-card:nth-of-type(3n) {
  top: 160px;
  margin-right: 0;
}

.c-card:nth-of-type(n+4) {
  margin-top: 135px;
}

/* c-section-title */
.c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Barlow", "Tangerine", sans-serif;
}

@media screen and (max-width: 767px) {
  .c-section-title {
    margin-bottom: 10.6666666667vw;
  }
}

.c-section-title__title {
  color: #A1AED1;
  font-size: 56px;
  line-height: 1.1964285714;
  margin-bottom: 20px;
  font-weight: 200;
}

@media screen and (max-width: 767px) {
  .c-section-title__title {
    font-size: 10.6666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}

.c-section-title__description {
  font-size: 24px;
  line-height: 1.2083333333;
  padding-bottom: 40px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif", "Noto sans JP", sans-serif;
  color: #070707;
}

@media screen and (max-width: 767px) {
  .c-section-title__description {
    font-size: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
  }
}

.c-section-title:after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #A1AED1;
}

/* c-circle-button */
.c-circle-button {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 1px solid #A1AED1;
  border-radius: 50%;
  background-color: #ffffff;
  text-align: center;
  position: relative;
}

.c-circle-button:hover:before {
  transform: scale(1, 1);
}

.c-circle-button:hover span:before {
  background-image: url(../img/top/feature-button-white@2x.svg);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .c-circle-button {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}

.c-circle-button:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #A1AED1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /*アニメーション*/
  transition: transform 0.2s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 0);
  transform-origin: center;
}

.c-circle-button span {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.c-circle-button span:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 6px;
  background-image: url(../img/top/feature-button@2x.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* c-scroll-down */
.c-scroll-down {
  margin-inline: auto;
  text-align: center;
  margin-bottom: 40px;
}

.c-scroll-down__text {
  font-size: 12px;
  position: relative;
  line-height: 1.1666666667;
  margin-bottom: 10px;
  letter-spacing: 0.12em;
  font-family: "Barlow", "Tangerine", sans-serif;
}

@media screen and (max-width: 767px) {
  .c-scroll-down__text {
    font-size: 3.2vw;
    margin-bottom: 2.6666666667vw;
  }
}

.c-scroll-down__bar {
  width: 1px;
  height: 40px;
  background-color: #E0E6F5;
  margin-inline: auto;
}

/* c-important-tag */
.c-important-tag {
  background-color: #FB3369;
  border-radius: 5px 5px 5px 5px;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .c-important-tag {
    padding: 1.3333333333vw 2.1333333333vw;
    font-size: 3.2vw;
  }
}

/* p-mv */
#mv {
/*  background-image: url(../img/top/mv-background-image@2x.png);*/
  background-repeat: no-repeat;
  background-size: cover;
}

.p-mv {
  min-width: 1260px;
/*  width: calc(100vw - 40px);*/
  height: 100vh;
  margin-inline: auto;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
  /*画面サイズが変わっても常に動画の中央が表示されるようにする*/
  /*動画よりも画面が縦に長くなるとき用*/
}

.p-mv video {
  position: absolute;
}

@media screen and (min-width: 768px) {
  .p-mv video {
    width: 100%;
/*    height: 100%;*/
    height: auto;
  }
}

/* p-news */
.p-news {
  margin-bottom: 80px;
  letter-spacing: 0.12em;
}

.p-news__contents {
  display: flex;
  flex-direction: row;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif", "Noto sans JP", sans-serif;
  border: 1px solid #E0E6F5;
  border-radius: 5px 5px 5px 5px;
  margin-bottom: 30px;
}

.p-news__contents:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .p-news__contents {
    flex-direction: column;
  }
}

.p-news__heading {
  width: 180px;
  height: auto;
  position: relative;
  background-color: #FBF49D;
  text-align: center;
  font-size: 14px;
  line-height: 1.2142857143;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-news__heading {
    font-size: 3.7333333333vw;
  }
}

.p-news__heading span {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-news__heading--green {
  background-color: #E0F5F4;
}

@media screen and (max-width: 1024px) {
  .p-news__heading {
    width: 100%;
    height: 30px;
  }
}

.p-news__content-wrap {
  width: 100%;
  max-width: calc(100% - 180px);
}

@media screen and (max-width: 1024px) {
  .p-news__content-wrap {
    max-width: 100%;
  }
}

.p-news__content {
  width: 100%;
  max-width: calc(100% - 40px);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 0;
  margin-inline: 20px;
  border-bottom: 1px solid #E0E6F5;
  overflow: hidden;
}

.p-news__content:hover .p-news__title {
  text-decoration: underline !important;
  color: #1E3C91 !important;
}

.p-news__content:last-of-type {
  border-bottom: none;
}

.p-news__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 5px;
}

.p-news__meta time {
  font-size: 12px;
  line-height: 1.1666666667;
  font-weight: 500;
  margin-right: 15px;
  font-family: "Barlow", "Tangerine", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.p-news__title {
  width: 100%;
  max-width: calc(100% - 142px);
  font-size: 14px;
  overflow: hidden;
  line-height: 2;
  font-weight: 300;
}

/* p-feature */
.p-feature {
  margin-bottom: 200px;
  position: relative;
}

.p-feature__contents {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}

.p-feature__button {
  position: absolute;
  right: 0;
  bottom: -40px;
}

/* p-information */
.p-information {
  position: relative;
  background-color: #E0E6F5;
  padding-bottom: 120px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif", "Noto sans JP", sans-serif;
}

.p-information .c-section-title {
  padding-top: 40px;
}

.p-information__delimiter-img {
  width: 100%;
  display: block;
  background-color: #fff;
}

.p-information__category-tags {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}

.p-information__category-tag {
  padding: 8px 10px;
  background-color: #ffffff;
  color: #A1AED1;
  margin-right: 10px;
  font-size: 12px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #A1AED1;
  font-weight: 500;
}

.p-information__category-tag.is-active {
  color: #ffffff;
  background-color: #A1AED1;
  border: 1px solid #A1AED1;
}

.p-information__contents {
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
}

.p-information__content-wrap {
  width: 100%;
  margin-bottom: 40px;
}

.p-information__content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #E0E6F5;
}

.p-information__content:hover {
  background-color: #E0E6F5;
}

.p-information__info {
  width: 100%;
  overflow: hidden;
  padding: 23px 10px;
  transition: all 0.3s 0s ease;
}

.p-information__info>time {
  display: block;
  font-size: 12px;
  font-family: sans-serif, "Barlow", "Tangerine";
  font-weight: 600;
  font-style: italic;
}

.p-information__info:hover {
  transform: translateX(10px);
}

.p-information__title {
  font-size: 14px;
  line-height: 2;
  font-weight: 300;
}

.p-information__img {
  width: 113px;
  min-width: 113px;
  overflow: hidden;
  border-radius: 5px;
  margin: 15px 15px 15px 0;
}

.p-information__button {
  width: 100%;
  max-width: 375px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.p-information__button:hover .p-information__button-text {
  position: relative;
  font-weight: 700;
}

.p-information__button:hover .p-information__button-text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #A1AED1;
  bottom: -5px;
}

.p-information__button:hover .c-circle-button:before {
  transform: scale(1, 1);
}

.p-information__button:hover .c-circle-button span:before {
  background-image: url(../img/top/feature-button-white@2x.svg);
  z-index: 10;
}

.p-information__button-text {
  font-size: 14px;
  margin-right: 20px;
  color: #A1AED1;
  font-weight: 500;
}
