html {
  /* font-feature-settings: 'palt'; */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* @media screen and (min-width:1650px) {
  html {
    font-size: calc(100vw / 1650 * 10);
  }
} */
@media screen and (max-width:1050px) {
  html {
    font-size: calc(100vw / 1050 * 10);
  }
}

@media screen and (max-width:768px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }
}

body {
  color: #0F0404;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  /* font-feature-settings: "palt" 1; */
  /* プロポーショナル和文 */
  /* font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width:768px) {
  body {
    font-size: 1.4rem;
  }
}

.body_container {
  opacity: 0;
  /* overflow: hidden; */
  padding-top: 13.6rem;
  transition: .6s ease;
}

.lazy .body_container {
  opacity: 1;
}

.over_hidden {
  overflow: hidden;
}

.max1200 {
  max-width: 124rem;
  padding: 0 2rem;
  margin: 0 auto;
}

.max1010 {
  max-width: 101rem;
  margin: 0 auto;
}

img:not(.cover) {
  height: auto;
  max-width: 100%;
  width: 100%;
}

img.cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: inherit;
}

video.cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .body_container {
    padding-top: 6.5rem;
  }
}

a {
  transition: .3s;
}

.anchor {
  display: flex;
  margin-top: -10.3rem;
  padding-top: 10.3rem;
}

@media screen and (max-width: 768px) {
  .anchor {
    margin-top: -6.5rem;
    padding-top: 6.5rem;
  }
}

strong {
  font-weight: inherit;
}

dt {
  font-weight: inherit;
}

/* ---------------------------------------------------------------------------
// btnA
--------------------------------------------------------------------------- */
.btnA {
  padding: 2rem 2.8rem;
  background: #3082CC;
  border-radius: 100vh;
  color: #fff;
  height: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: solid 1px #3082CC;
  gap: 2rem;
  white-space: nowrap;
}

.btnA:hover {
  color: #3082CC;
  background: #fff;
}

.btnA .arrow {
  position: relative;
  width: 1.7rem;
  height: 1.7rem;
  flex-shrink: 0;
}

.btnA .arrow::before,
.btnA .arrow::after {
  width: 1.7rem;
  height: 1.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  top: 0;
  bottom: 0;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  transition: .3s;
}

.btnA .arrow::before {
  background-image: url(../img/common/arrow01_blue.svg);
}

.btnA .arrow::after {
  background-image: url(../img/common/arrow01_white.svg);
}

.btnA:hover .arrow:after {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .btnA {
    padding: 1.6rem 2rem;
    gap: 1rem;
    height: 5rem;
  }
}

/* ---------------------------------------------------------------------------
//  top_fv
--------------------------------------------------------------------------- */
.top_fv {
  position: relative;
  min-height: calc(100vh - 13.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.top_fv .wrap {
  width: 100%;
}

.top_fv .wrap .bnrs {
  /* height: calc(100vh - 13.6rem - 3.6rem); */
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.top_fv .wrap .bnrs .bnr_big {
  width: 62.4%;
  /* aspect-ratio: 749/659; */
  height: 65.9rem;
  max-height: calc(100vh - 13.6rem - 3.6rem);
  flex-shrink: 0;
  width: 100%;
  transition: .6s;
}

.top_fv.active .wrap .bnrs .bnr_big {
  width: 62.4%;
}

.top_fv .wrap .bnrs .bnr_mins {
  width: calc(100% - 62.4% - 2rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
  opacity: 0;
}

.top_fv.active .wrap .bnrs .bnr_mins {
  opacity: 1;
}

.top_fv .wrap .bnrs .bnr {
  border-radius: 2.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.top_fv .wrap .bnrs .bnr_mins .bnr {
  height: calc((100% - 2rem) / 2);
  position: relative;
}

.top_fv .wrap .bnrs .bnr_mins .bnr::before,
.top_fv .wrap .bnrs .bnr_mins .bnr::after {
  width: 5.6rem;
  height: 5.6rem;
  position: absolute;
  border-radius: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2rem;
  content: '';
  transition: .2s;
  border: solid 1px #3082CC;
  right: 1.7rem;
  bottom: 1.4rem;
  z-index: 3;
}

.top_fv .wrap .bnrs .bnr_mins .bnr::before {
  background-image: url(../img/common/arrow01_white.svg);
  background-color: #3082CC;
}

.top_fv .wrap .bnrs .bnr_mins .bnr::after {
  background-image: url(../img/common/arrow01_blue.svg);
  background-color: #fff;
  opacity: 0;
}

.top_fv .wrap .bnrs .bnr_mins .bnr:hover:before {
  opacity: 0;
}

.top_fv .wrap .bnrs .bnr_mins .bnr:hover:after {
  opacity: 1;
}

.top_fv .wrap .bnrs .bnr .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top_fv .wrap .bnrs a.bnr .img img {
  transition: .2s;
}

.top_fv .wrap .bnrs a.bnr:hover .img img {
  transform: scale(1.2);
}

.top_fv .wrap .bnrs .bnr .txts {
  position: relative;
  color: #fff;
}

.top_fv .wrap .bnrs .bnr .txts .eng {
  font-family: Poppins;
  text-transform: uppercase;
  font-feature-settings: 'palt' on;
}

.top_fv .wrap .bnrs .bnr .txts .h1 {
  font-size: 6.4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-top: .5rem;
}

.top_fv .wrap .bnrs .bnr .txts .h2 {
  font-size: 3.2rem;
  font-weight: 700;
}

.top_fv .wrap .bnrs .bnr .txts .p01 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
}

.top_fv .wrap .bnrs .bnr_big .txts {
  padding: 5.3rem 4.4rem;
}

.top_fv .wrap .bnrs .bnr_mins .txts {
  padding: 2.6rem;
}

@media screen and (max-width: 768px) {
  .top_fv {
    min-height: auto;
  }

  .top_fv .wrap {
    padding: 0 2rem;
  }

  .top_fv .wrap .bnrs {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .top_fv .wrap .bnrs .bnr_big {
    width: 100% !important;
    justify-content: center;
    aspect-ratio: inherit;
    height: calc((100vh - 6.5rem - 1rem));
    max-height: inherit;
  }

  .top_fv .wrap .bnrs .bnr_mins {
    width: 100%;
    opacity: 1;
  }

  .top_fv .wrap .bnrs .bnr {
    border-radius: 1.2rem;
  }

  .top_fv .wrap .bnrs .bnr_mins .bnr {
    height: auto;
    justify-content: center;
    width: 100%;
  }

  .top_fv .wrap .bnrs .bnr_mins .bnr::before,
  .top_fv .wrap .bnrs .bnr_mins .bnr::after {
    width: 3rem;
    height: 3rem;
    background-size: 1.4rem;
    right: 1rem;
    bottom: 0;
    top: 0;
    margin: auto;
  }

  .top_fv .wrap .bnrs .bnr .txts .h1 {
    font-size: 4.5rem;
    white-space: nowrap;
  }

  .top_fv .wrap .bnrs .bnr .txts .h2 {
    font-size: 2.7rem;
  }

  .top_fv .wrap .bnrs .bnr .txts .p01 {
    white-space: nowrap;
  }

  .top_fv .wrap .bnrs .bnr_big .txts {
    padding: 2rem;
  }

  .top_fv .wrap .bnrs .bnr_mins .txts {
    padding: 4rem 2rem
  }
}

/* ---------------------------------------------------------------------------
//  top_sec01
--------------------------------------------------------------------------- */
.top_sec01 .wrap01 {
  padding: 18rem 0 26rem;
  display: flex;
  position: relative;
}

.top_sec01 .wrap01:before {
  content: "";
  position: relative;
  background-image: url(../img/top/02_img01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 98.2rem;
  height: 74rem;
  position: absolute;
  top: 38.6rem;
  left: calc(((100vw - 120rem) / 2 + 10.3rem) * -1);
  left: -19.4rem;
  mix-blend-mode: multiply;
  pointer-events: none;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.top_sec01 .wrap01::after {
  background-image: url(../img/top/01_bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 161.4rem;
  height: 161.4rem;
  pointer-events: none;
  position: absolute;
  top: -31.7rem;
  left: 14rem;
  animation: spin 18s linear infinite;
  opacity: 0;
  transition: .3s;
}

.start .top_sec01 .wrap01::after {
  opacity: 1;
}

.top_sec01 .wrap01 .ttl {
  width: 50%;
  position: relative;
  z-index: 2;
}

.top_sec01 .wrap01 .ttl .h2 {
  font-size: 6.4rem;
  color: #3082CC;
  font-weight: 700;
}

.top_sec01 .wrap01 .txts {
  width: 50%;
  padding-top: 5rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.top_sec01 .wrap01 .txts .h3 {
  color: #3082CC;
  font-size: 3rem;
  font-weight: 700;
  position: relative;
}

.top_sec01 .wrap01 .txts .h3::before {
  content: "";
  height: 1px;
  background: #3082CC;
  width: 18rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: calc(100% + 1.6rem);
}

.top_sec01 .wrap01 .txts .p01 {
  font-size: 2rem;
  line-height: 3;
  white-space: nowrap;
  margin-top: 2rem;
  margin-bottom: 5.6rem;
}

.top_sec01 .wrap02 {
  padding-bottom: 8rem;
}

/* 枠：横スクロール部分だけ見せる */
.loop {
  overflow: hidden;
  width: 100%;
}

/* レーン全体を左に流す */
.loop_inner {
  display: flex;
  width: max-content;
  /* 中身の幅に合わせて伸びる */
  animation: loop-scroll 20s linear infinite;
  will-change: transform;
  gap: 1rem;
}

/* 中身は横並び・折り返さない */
.loop_list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
}

/* 各要素の見た目はお好みで */
.loop_item {
  white-space: nowrap;
  width: 43rem;
  border-radius: 2.4rem;
  overflow: hidden;
}

/* 無限ループのキーフレーム */
@keyframes loop-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* 自分の幅の 50% 左へズラす = 最初のセット分だけ移動 */
    transform: translateX(-50%);
  }
}

/* アニメ速度変えたいときは duration 変える */
.loop--slow .loop_inner {
  animation-duration: 40s;
}

.loop--fast .loop_inner {
  animation-duration: 10s;
}

@media screen and (max-width: 768px) {
  .top_sec01 .wrap01 {
    padding: 9rem 2rem 28rem;
    flex-direction: column;
  }

  .top_sec01 .wrap01:before {
    background-position: center bottom;
    width: 100%;
    height: 100%;
    top: auto;
    bottom: 0;
    left: 0;
  }

  .top_sec01 .wrap01::after {
    width: 120rem;
    height: 120rem;
    top: -21.7rem;
    left: 11rem;
  }

  .top_sec01 .wrap01 .ttl {
    width: 100%;
  }

  .top_sec01 .wrap01 .ttl .h2 {
    font-size: 4rem;
  }

  .top_sec01 .wrap01 .txts {
    width: 100%;
  }

  .top_sec01 .wrap01 .txts .h3 {
    font-size: 2rem;
  }

  .top_sec01 .wrap01 .txts .h3::before {
    display: none;
  }

  .top_sec01 .wrap01 .txts .p01 {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 4rem;
  }

  .top_sec01 .wrap02 {
    padding-bottom: 6rem;
    margin-top: -10rem;
  }

  /* 各要素の見た目はお好みで */
  .loop_item {
    width: 20rem;
    border-radius: 1.2rem;
  }
}

/* ---------------------------------------------------------------------------
//  top_sec02
--------------------------------------------------------------------------- */
.business {
  position: relative;
}

.top_sec02+.top_sec02 {
  margin-top: 8rem;
  top: 18.3rem;
}

.top_sec02_02+* {
  position: relative;
}

.top_sec02 {
  position: sticky;
  top: 10.3rem;
  /* padding-bottom: 50vh; */
}

/* .business .spacer{
  height: calc(50vh + 8rem);
  border: solid;
  position: sticky;
  top: 13.6rem;
} */
.top_sec02 .wrap .bnr {
  position: relative;
  height: calc(100vh - 10.3rem - 8rem);
  border-radius: 2.4rem;
  overflow: hidden;
  color: #fff;
  padding: 2.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  background: #000;
}

.top_sec02 .wrap .bnr .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: .3s;
}

.top_sec02 .wrap .bnr:hover .bg {
  opacity: .7;
}

.top_sec02 .wrap .bnr .eng {
  position: relative;
  font-weight: 400;
  width: 100%;
}

.top_sec02 .wrap .bnr .eng .h2 {
  font-family: Poppins;
  font-size: 4.8rem;
  line-height: 1;
}

.top_sec02 .wrap .bnr .eng .p01 {
  font-size: 2.4rem;
  text-transform: uppercase;
  font-feature-settings: 'palt' on;
}

.top_sec02 .wrap .bnr .txts {
  position: relative;
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.top_sec02 .wrap .bnr .txts .h3 {
  font-size: 4.8rem;
  font-weight: 700;
}

.top_sec02 .wrap .bnr .txts .p01 {
  font-size: 2rem;
  line-height: 1.9;
  margin-bottom: 3.5rem;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .top_sec02+.top_sec02 {
    margin-top: 4rem;
    top: 10.5rem;
  }

  .top_sec02 {
    top: 6.5rem;
  }

  .top_sec02 .wrap .bnr {
    height: calc(100vh - 6.5rem - 4rem);
    border-radius: 1.2rem;
    padding: 2rem;
  }

  .top_sec02 .wrap .bnr .bg {
    opacity: .7;
  }

  .top_sec02 .wrap .bnr .eng .h2 {
    font-size: 2rem;
  }

  .top_sec02 .wrap .bnr .eng .p01 {
    font-size: 1.4rem;
  }

  .top_sec02 .wrap .bnr .txts .h3 {
    font-size: 3.4rem;
  }

  .top_sec02 .wrap .bnr .txts .p01 {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}

/* ---------------------------------------------------------------------------
//  cta
--------------------------------------------------------------------------- */
.cta01 {
  position: relative;
  z-index: 2;
}

.cta01 .contents {
  background-image: url(../img/common/bg_footer.png);
  background-repeat: no-repeat;
  background-size: 170rem;
  background-position: center bottom;
  background-color: #B6DAF2;
  border-radius: 2.4rem;
  padding: 0 0 9.3rem;
}

.cta01 .contents .head01 {
  padding: 19.7rem 0 12.4rem;
}

.cta01 .contents .head01 .eng01 {
  color: #3082CC;
  font-size: 10rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  font-family: Poppins;
  margin-bottom: 9rem;
}

.cta01 .contents .head01 .eng02 {
  color: #3082CC;
  font-size: 3.6rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  font-family: Poppins;
}

.cta01 .contents .head01 .p01 {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-align: center;
}

.cta01 .contents .bnrs {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.cta01 .contents .bnrs .bnr {
  border-radius: 2.4rem;
  background: rgba(210, 245, 254, 0.69);
  backdrop-filter: blur(.5rem);
}

.cta01 .contents .bnrs .bnr:hover {
  background: rgba(210, 245, 254, 0.9);
}

.cta01 .contents .bnrs .bnr.coming {
  pointer-events: none;
}

.cta01 .contents .bnrs .bnr.coming::before {
  opacity: .5;
}

.cta01 .contents .bnrs .bnrA {
  width: calc((100% - 3rem) / 2);
  padding: 6rem 12.6rem 5rem 4.4rem;
}

.cta01 .contents .bnrs .bnrA::before,
.cta01 .contents .bnrs .bnrA::after {
  width: 5.6rem;
  height: 5.6rem;
  position: absolute;
  border-radius: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2rem;
  content: '';
  transition: .2s;
  border: solid 1px #3082CC;
  right: 3.5rem;
  bottom: 0;
  top: 0;
  margin: auto;
}

.cta01 .contents .bnrs .bnrA::before {
  background-image: url(../img/common/arrow01_white.svg);
  background-color: #3082CC;
}

.cta01 .contents .bnrs .bnrA::after {
  background-image: url(../img/common/arrow01_blue.svg);
  background-color: #fff;
  opacity: 0;
}

.cta01 .contents .bnrs .bnrA:hover:before {
  opacity: 0;
}

.cta01 .contents .bnrs .bnrA:hover:after {
  opacity: 1;
}

.cta01 .contents .bnrs .bnr .h3 {
  font-size: 1.8rem;
}

.cta01 .contents .bnrs .bnrA .eng {
  font-size: 3.6rem;
  font-weight: 300;
  font-family: Poppins;
  font-feature-settings: 'palt' on;
  color: #1F4C8E;
}

.cta01 .contents .bnrs .bnr .p01 {
  font-size: 1.4rem;
}

.cta01 .contents .bnrs .bnrB {
  width: 100%;
  padding: 3rem 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta01 .contents .bnrs .bnrB .logo {
  margin-top: -1rem;
  max-width: 46rem;
}

.cta01 .contents .bnrs .bnrB .btnA {
  width: 34rem;
  margin-top: 3rem;
  transition: .3s;
}

.cta01 .contents .bnrs .bnrB:hover .btnA {
  color: #3082CC;
  background: #fff;
}

.cta01 .contents .bnrs .bnrB:hover .btnA .arrow:after {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .cta01 .contents {
    background-size: 170rem;
    border-radius: 1.24rem;
    padding: 0 2rem 8rem;
  }

  .cta01 .contents .head01 {
    padding: 8rem 0 6rem;
  }

  .cta01 .contents .head01 .eng01 {
    font-size: 3.3rem;
    white-space: nowrap;
    margin-bottom: 4rem;
  }

  .cta01 .contents .head01 .eng02 {
    font-size: 3.3rem;
    white-space: nowrap;
  }

  .cta01 .contents .head01 .p01 {
    font-size: 1.6rem;
  }

  .cta01 .contents .bnrs {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .cta01 .contents .bnrs .bnr {
    border-radius: 1.2rem;
  }

  .cta01 .contents .bnrs .bnrA {
    width: 100%;
    padding: 2rem 5rem 2rem 2rem;
  }

  .cta01 .contents .bnrs .bnrA::before,
  .cta01 .contents .bnrs .bnrA::after {
    width: 3rem;
    height: 3rem;
    background-size: 1.4rem;
    right: 1rem;
    bottom: 0;
    top: 0;
    margin: auto;
  }

  .cta01 .contents .bnrs .bnr .h3 {
    font-size: 1.8rem;
  }

  .cta01 .contents .bnrs .bnrA .eng {
    font-size: 2.4rem;
    white-space: nowrap;
  }

  .cta01 .contents .bnrs .bnrB {
    width: 100%;
    padding: 2rem;
  }

  .cta01 .contents .bnrs .bnrB .logo {
    margin-top: -.5rem;
  }

  .cta01 .contents .bnrs .bnrB .btnA {
    width: 100%;
    margin-top: 2rem;
    font-size: 1.4rem;
    padding-right: 4rem;
    white-space: nowrap;
  }

  .cta01 .contents .bnrs .bnrB .btnA::before,
  .cta01 .contents .bnrs .bnrB .btnA::after {
    right: 2rem;
  }
}

/* ---------------------------------------------------------------------------
//  page_fv
--------------------------------------------------------------------------- */
.page_fv .wrap {
  display: flex;
  justify-content: space-between;
  padding: 13rem 0 6rem;
  align-items: flex-end;
}

.page_fv .wrap .h1 {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1.6rem;
  flex-grow: 2;
}

.page_fv .wrap .h1 .jp {
  color: #3082CC;
  font-size: 2.4rem;
}

.page_fv .wrap .h1 .eng {
  font-size: 10rem;
  font-weight: 300;
  font-family: Poppins;
  text-transform: uppercase;
  font-feature-settings: 'palt' on;
}

.page_fv .wrap .h1 .eng.min {
  font-size: 6.4rem;
}

.page_fv .wrap .bread {
  white-space: nowrap;
  display: flex;
  color: #3082CC;
  font-weight: 400;
  align-items: center;
}

.page_fv .wrap .bread li {
  position: relative;
}

.page_fv .wrap .bread li+li {
  padding-left: 3.7rem;
}

.page_fv .wrap .bread li:last-of-type {
  color: #888;
  pointer-events: none;
}

.page_fv .wrap .bread li+li::before {
  content: "";
  border-bottom: solid 1px;
  position: absolute;
  width: 2.1rem;
  top: .5px;
  bottom: 0;
  left: .8rem;
  margin: auto;
  height: 0;
}

.page_fv .wrap .bread li a:hover {
  opacity: .7;
}

@media screen and (max-width:768px) {
  .page_fv .wrap {
    padding: 8rem 2rem 4rem;
    flex-direction: column;
    align-items: stretch;
  }

  .page_fv .wrap .h1 .jp {
    color: #3082CC;
    font-size: 2rem;
  }

  .page_fv .wrap .h1 .eng {
    font-size: 6rem;
  }

  .page_fv .wrap .h1 .eng.min {
    font-size: 3.4rem;
  }

  .page_fv .wrap .bread {
    margin-top: 2rem;
    font-size: 1.2rem;
  }

  .page_fv .wrap .bread li {
    position: relative;
  }

  .page_fv .wrap .bread li+li {
    padding-left: 3rem;
  }

  .page_fv .wrap .bread li+li::before {
    width: 1.6rem;
    left: .7rem;
  }
}

/* ---------------------------------------------------------------------------
//  profile_sec01
--------------------------------------------------------------------------- */
:root {
  /* 背景を左右に最大何px動かすか */
  --profile-parallax-offset: 400px;
}

.profile_sec01 {
  margin-bottom: 37.6rem;
  position: relative;
}

.profile_sec01 .deco {
  position: absolute;
  bottom: calc((11.5rem + 37.6rem) * -1);
  right: calc(((100vw - 120rem) / 2 - 35.8rem));
  z-index: 3;
  width: 134rem;
}

.profile_sec01 .contents {
  border-radius: 2.4rem;
  overflow: hidden;
  position: relative;
  color: #fff;
  text-align: center;
}

.profile_sec01 .contents::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 127, 165, 0.50) 0%, rgba(0, 127, 165, 0.50) 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
  top: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: multiply;
}

.profile_sec01 .contents .bg {
  position: absolute;
  top: 0;
  left: calc(-1 * var(--profile-parallax-offset));
  width: calc(100% + var(--profile-parallax-offset) * 2);
  height: 100%;
}

.profile_sec01 .contents .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  will-change: transform;
}

.profile_sec01 .contents .h2 {
  padding: 17rem 0 24.5rem;
  position: relative;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.profile_sec01 .contents .h2 .eng {
  font-feature-settings: 'palt' on;
  font-family: Poppins;
  font-size: 4.8rem;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}

.profile_sec01 .contents .h2 .jp {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: calc((3.84 / 48) * .1em);
}

.profile_sec01 .contents .txts {
  padding-bottom: 28rem;
  position: relative;
  z-index: 3;
}

.profile_sec01 .contents .txts .h3 {
  font-size: 9.6rem;
  font-weight: 700;
  line-height: 1;
}

.profile_sec01 .contents .txts .p01 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 2rem;
}

.profile_sec01 .contents .txts .p02 {
  font-size: 1.8rem;
  line-height: 2.22;
  margin-top: 6.5rem;
}

@media screen and (max-width:768px) {
  :root {
    /* 背景を左右に最大何px動かすか */
    --profile-parallax-offset: 400px;
  }

  .profile_sec01 {
    margin-bottom: 20.6rem;
  }

  .profile_sec01 .deco {
    right: -20rem;
    width: 60rem;
    bottom: -25rem;
  }

  .profile_sec01 .contents {
    border-radius: 1.24rem;
    text-align: center;
  }

  .profile_sec01 .contents .h2 {
    padding: 8rem 2rem;
  }

  .profile_sec01 .contents .h2 .eng {
    font-size: 2.4rem;
  }

  .profile_sec01 .contents .h2 .jp {
    font-size: 3.4rem;
  }

  .profile_sec01 .contents .txts {
    padding-bottom: 16rem;
  }

  .profile_sec01 .contents .txts .h3 {
    font-size: 6rem;
  }

  .profile_sec01 .contents .txts .p01 {
    font-size: 2rem;
    white-space: nowrap;
  }

  .profile_sec01 .contents .txts .p02 {
    font-size: 1.6rem;
    line-height: 2.22;
    margin-top: 3rem;
  }
}

/* ---------------------------------------------------------------------------
//  profile_sec02
--------------------------------------------------------------------------- */
.profile_sec02 {
  position: relative;
}

.profile_sec02 .bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: .3s ease-out;
}

.profile_sec02.active .bg {
  opacity: 1;
}

.profile_sec02 .bg::before {
  content: "";
  position: fixed;
  background: linear-gradient(0deg, rgba(10, 112, 202, 0.55) 0%, rgba(10, 112, 202, 0.55) 100%);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.profile_sec02 .contents {
  position: relative;
  /* color: #fff; */
  padding-bottom: 12.7rem;
}

.profile_sec02 .contents {
  -webkit-transition: color .3s ease-out;
  transition: color .3s ease-out;
}

.profile_sec02.active .contents {
  color: #fff;
}

.profile_sec02 .contents .h2 {
  padding: 16rem 0 12rem;
  position: relative;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.profile_sec02 .contents .h2 .eng {
  font-feature-settings: 'palt' on;
  font-family: Poppins;
  font-size: 4rem;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}

.profile_sec02 .contents .h2 .jp {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: calc((3.84 / 48) * .1em);
}

.profile_sec02 .contents .dls>.dl {
  border-top: 1px dashed;
  padding: 2rem 0;
  font-size: 1.8rem;
}

.profile_sec02 .contents .dls>.dl:last-of-type {
  border-bottom: 1px dashed;
}

.profile_sec02 .contents .dls>.dl>dl {
  max-width: 101rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.77;
}

.profile_sec02 .contents .dls>.dl>dl+dl {
  margin-top: 1rem;
}

.profile_sec02 .contents .dls>.dl>dl>dt {
  width: 36.7rem;
}

.profile_sec02 .contents .dls>.dl>dl>dd {
  width: calc(100% - 36.7rem);
}

.profile_sec02 .contents .dls>.dl>dl>dd>dl {
  display: flex;
}

@media screen and (max-width:768px) {
  .profile_sec02 .contents {
    padding: 0 0 8rem;
  }

  .profile_sec02 .contents .h2 {
    padding: 8rem 0 6rem;
  }

  .profile_sec02 .contents .h2 .eng {
    font-size: 2.4rem;
  }

  .profile_sec02 .contents .h2 .jp {
    font-size: 3.4rem;
  }

  .profile_sec02 .contents .dls>.dl {
    font-size: 1.6rem;
    padding: 2rem;
  }

  .profile_sec02 .contents .dls>.dl>dl {
    display: block;
  }

  .profile_sec02 .contents .dls>.dl>dl>dt {
    width: 100%;
    font-size: 1.8rem;
    font-weight: 700;
  }

  .profile_sec02 .contents .dls>.dl>dl>dd {
    width: 100%;
  }

  .profile_sec02 .contents .dls>.dl>dl>dd>dl {
    font-size: 1.3rem;
  }
}

/* ---------------------------------------------------------------------------
//  profile_sec03
--------------------------------------------------------------------------- */
.profile_sec03 {
  position: relative;
}

.profile_sec03 .contents {
  position: relative;
  padding: 14rem 0 16rem
}

.profile_sec03 .contents .h2 {
  position: relative;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.profile_sec03 .contents .h2 .eng {
  font-feature-settings: 'palt' on;
  font-family: Poppins;
  font-size: 4rem;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  color: #3082CC;
}

.profile_sec03 .contents .h2 .jp {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: calc((3.84 / 48) * .1em);
}

.profile_sec03 .contents .accesss {
  margin-top: 8rem;
}

.profile_sec03 .contents .accesss .access {
  border-top: 1px dashed #888;
  display: flex;
  align-items: center;
  padding: 7.6rem 0;
  position: relative;
}

.profile_sec03 .contents .accesss .access:last-of-type {
  border-bottom: 1px dashed #888;
}

.profile_sec03 .contents .accesss .access .txts {
  width: 33.2rem;
  padding-left: calc((100vw - 101rem) / 2);
  width: calc(33.2rem + ((100vw - 101rem) / 2));
}

.profile_sec03 .contents .accesss .access .txts .h3 {
  color: #3082CC;
  font-size: 3.2rem;
  font-weight: 700;
}

.profile_sec03 .contents .accesss .access .txts .p01 {
  font-size: 1.8rem;
  line-height: 1.77;
}

.profile_sec03 .contents .accesss .access .map {
  width: calc(100vw - (35.2rem + ((100vw - 101rem) / 2)));
  height: 36.5rem;
  padding-right: calc((100vw - 120rem) / 2);
}

.profile_sec03 .contents .accesss .access .map iframe {
  width: 100%;
  height: 100%;
  border-radius: 2.4rem;
}

@media screen and (max-width:768px) {
  .profile_sec03 .contents {
    padding: 8rem 0;
  }

  .profile_sec03 .contents .h2 .eng {
    font-size: 2.4rem;
  }

  .profile_sec03 .contents .h2 .jp {
    font-size: 3.4rem;
  }

  .profile_sec03 .contents .accesss {
    margin-top: 6rem;
  }

  .profile_sec03 .contents .accesss .access {
    display: block;
    padding: 3rem 2rem 4rem;
  }

  .profile_sec03 .contents .accesss .access .txts {
    width: 100%;
    padding-left: 0;
  }

  .profile_sec03 .contents .accesss .access .txts .h3 {
    font-size: 2rem;
  }

  .profile_sec03 .contents .accesss .access .txts .p01 {
    font-size: 1.6rem;
  }

  .profile_sec03 .contents .accesss .access .map {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    padding-right: 0;
    margin-top: 2rem;
  }

  .profile_sec03 .contents .accesss .access .map iframe {
    border-radius: 1.2rem;
  }
}

/* ---------------------------------------------------------------------------
//  stores_sec01
--------------------------------------------------------------------------- */
.stores_sec01 .bg {
  position: sticky;
  top: 10.3rem;
  border-radius: 2.4rem;
  overflow: hidden;
  /* max-height: 65.2rem;
  height: calc(100vh - 10.3rem); */
  height: 63.7rem;
}

.stores_sec01 .contents {
  position: relative;
  background: #fff;
  border-radius: 2.4rem 2.4rem 0 0;
  padding: 12rem 0 16rem;
}

.stores_sec01 .contents .h2 {
  width: 11.5rem;
  margin: 0 auto;
}

.stores_sec01 .contents .stores {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12rem;
  gap: 6rem 0;
}

.stores_sec01 .contents .stores .store {
  width: 50%;
  padding: 0 2rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: dashed 1px #888;
  border-left: dashed 1px #888;
}

.stores_sec01 .contents .stores .store>* {
  max-width: 50rem;
}

.stores_sec01 .contents .stores .store .img {
  aspect-ratio: 503.75/286;
  border-radius: 2.4rem;
  overflow: hidden;
}

.stores_sec01 .contents .stores .store dl {
  margin: 2.5rem 0 4rem;
  width: 100%;
}

.stores_sec01 .contents .stores .store dl dt {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.stores_sec01 .contents .stores .store dl dd {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width:768px) {
  .stores_sec01 .bg {
    top: 6.5rem;
    border-radius: 1.2rem;
    height: 30rem;
  }

  .stores_sec01 .contents {
    border-radius: 1.2rem 1.2rem 0 0;
    padding: 8rem 0;
  }

  .stores_sec01 .contents .h2 {
    width: 9rem;
  }

  .stores_sec01 .contents .stores {
    margin-top: 6rem;
    gap: 4rem 0;
  }

  .stores_sec01 .contents .stores .store {
    width: 100%;
    padding: 0 2rem 4rem;
    border-left: none;
  }

  .stores_sec01 .contents .stores .store .img {
    border-radius: 1.2rem;
  }

  .stores_sec01 .contents .stores .store dl {
    margin: 2rem 0 3rem;
  }

  .stores_sec01 .contents .stores .store dl dt {
    font-size: 1.6rem;
  }

  .stores_sec01 .contents .stores .store dl dd {
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------------------------------------
//  coming_sec01
--------------------------------------------------------------------------- */
.coming_sec01 {
  position: relative;
}

.coming_sec01 .bg {
  position: sticky;
  top: 10.3rem;
  border-radius: 2.4rem;
  overflow: hidden;
  height: 63.7rem;
  margin-bottom: 8rem;
}

.coming_sec01 .bg .coming {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  z-index: 2;
  color: #fff;
  font-feature-settings: 'palt' on;
  font-family: Poppins;
  font-size: 4.8rem;
  font-weight: 300;
  text-transform: uppercase;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width:768px) {
  .coming_sec01 .bg {
    top: 6.5rem;
    border-radius: 1.2rem;
    height: 30rem;
    margin-bottom: 6rem;
  }

  .coming_sec01 .bg .coming {
    font-size: 2.4rem;
  }
}

/* ---------------------------------------------------------------------------
//  contact_sec01
--------------------------------------------------------------------------- */
.contact_sec01 {
  position: relative;
  border-top: dashed 1px #888;
  padding: 5rem 0 16rem;
}

.contact_sec01 .head {
  font-size: 1.8rem;
  line-height: 2.22;
}

.contact_sec01 .form_main {
  border-top: dashed 1px #888;
  margin-top: 7rem;
  padding-top: 7rem;
}

.contact_sec01 .form_main dl {
  display: flex;
  gap: 3.8rem;
  align-items: flex-start;
}

.contact_sec01 .form_main dl+dl {
  margin-top: 4rem;
}

.contact_sec01 .form_main dl dt {
  width: 36.1rem;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 2.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact_sec01 .form_main dl dt span {
  width: 7.2rem;
  height: 2.8rem;
  color: #fff;
  font-size: 1.6rem;
  background: #3082CC;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vh;
  padding-bottom: .1rem;
}

.contact_sec01 .form_main dl dd {
  width: calc(100% - 36.1rem - 3.8rem);
}

.contact_sec01 .form_main dl dd input {
  border: solid 1px #C0C0C0;
  border-radius: 1.2rem;
  width: 100%;
  padding: 3rem 2.4rem;
  font-size: 1.8rem;
}

.contact_sec01 .form_main dl dd textarea {
  border: solid 1px #C0C0C0;
  border-radius: 1.2rem;
  width: 100%;
  padding: 3rem 2.4rem;
  font-size: 1.8rem;
  height: 28rem;
  resize: none;
}

::placeholder {
  color: #C0C0C0;
}

.contact_sec01 .form_bottom {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact_sec01 .form_bottom .p01 {
  font-size: 1.8rem;
  line-height: 2.22;
  margin-bottom: 4rem;
}

.contact_sec01 .form_bottom p a {
  color: #3082CC;
  text-decoration: underline;
}

.contact_sec01 .form_bottom p a:hover {
  opacity: .7;
}

.agree .checkBtn {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* 元のチェックボックスは見えなくする（でもアクセシビリティのため非表示にしない） */
.agree .checkBtn input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* テキスト部分 */
.agree .checkBtn .label_inner {
  position: relative;
  padding-left: 4.5rem;
  font-size: 2rem;
  font-weight: 700;
}

/* ボックス部分（未チェック時） */
.agree .checkBtn .label_inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: .1rem;
  border: 1px solid #C0C0C0;
  background: #fff;
  box-sizing: border-box;
  transition: background .2s ease, border-color .2s ease;
}

/* チェックマーク */
.agree .checkBtn .label_inner::after {
  content: "";
  position: absolute;
  left: .5rem;
  top: 50%;
  width: 2rem;
  height: .6rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-60%) rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform .2s ease;
}

/* ▼ここを :has に変更するのがポイント ---------------- */
/* チェックされた時の見た目 */
.agree .checkBtn:has(input[type="checkbox"]:checked) .label_inner::before {
  background: #3082CC;
  border-color: #3082CC;
}

.agree .checkBtn:has(input[type="checkbox"]:checked) .label_inner::after {
  transform: translateY(-60%) rotate(-45deg) scale(1);
}

/* 送信ボタン（基本はグレーで非アクティブ） */
.submit_btn {
  position: relative;
  margin-top: 7rem;
  margin-bottom: 3rem;
}

.submit_btn .form_submit {
  width: 18.6rem;
  border: solid 1px #3082CC;
  border-radius: 100vh;
  background: #3082CC;
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: calc(14 / 28 * 1em);
  text-align: center;
  /* cursor: not-allowed; */
  height: 6.9rem;
  /* opacity: .4; */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.submit_btn::before,
.submit_btn::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.4rem;
  margin: auto;
  transition: .3s;
  z-index: 2;
}

.submit_btn::before {
  background-image: url(../img/common/arrow01_white.svg);
}

.submit_btn::after {
  background-image: url(../img/common/arrow01_blue.svg);
  opacity: 0;
}

/* .submit_btn .form_submit.is-active {
  opacity: 1;
  cursor: pointer;
} */
.submit_btn .form_submit:hover {
  background: #fff;
  color: #3082CC;
}

.submit_btn:hover:after {
  opacity: 1;
}

@media screen and (max-width:768px) {
  .contact_sec01 {
    padding: 5rem 2rem 8rem;
  }

  .contact_sec01 .head {
    font-size: 1.6rem;
    line-height: 1.7;
  }

  .contact_sec01 .form_main {
    padding-top: 5rem;
    margin-top: 5rem;
  }

  .contact_sec01 .form_main dl {
    display: block;
  }

  .contact_sec01 .form_main dl+dl {
    margin-top: 4rem;
  }

  .contact_sec01 .form_main dl dt {
    width: 100%;
    font-size: 1.8rem;
    padding: 0;
    margin-bottom: 1.6rem;
  }

  .contact_sec01 .form_main dl dt span {
    width: 6rem;
    height: 2.4rem;
    font-size: 1.3rem;
  }

  .contact_sec01 .form_main dl dd {
    width: 100%;
  }

  .contact_sec01 .form_main dl dd input {
    border-radius: .62rem;
    padding: 1.6rem;
    font-size: 1.6rem;
  }

  .contact_sec01 .form_main dl dd textarea {
    border-radius: .62rem;
    padding: 1.6rem;
    font-size: 1.6rem;
    height: 20rem;
  }

  .contact_sec01 .form_bottom {
    margin-top: 4rem;
  }

  .contact_sec01 .form_bottom .p01 {
    font-size: 1.6rem;
    line-height: 1.7;
  }

  .contact_sec01 .form_bottom .p02 {
    font-size: 1.4rem;
  }

  .agree .checkBtn .label_inner {
    padding-left: 4rem;
    font-size: 1.6rem;
  }

  .submit_btn {
    position: relative;
    margin-top: 4rem;
    margin-bottom: 3rem;
  }

  .submit_btn .form_submit {
    width: 18.6rem;
    font-size: 2rem;
    height: 5.6rem;
  }

  .submit_btn::before,
  .submit_btn::after {
    width: 1.7rem;
    height: 1.7rem;
  }
}

/* ---------------------------------------------------------------------------
//  other_fv
--------------------------------------------------------------------------- */
.other_fv .wrap {
  display: flex;
  justify-content: center;
  padding: 12rem 0;
  align-items: center;
}

.other_fv .wrap .h1 {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 1.6rem;
  flex-grow: 2;
}

.other_fv .wrap .h1 .jp {
  color: #3082CC;
  font-size: 2.4rem;
}

.other_fv .wrap .h1 .eng {
  font-size: 6.4rem;
  font-weight: 300;
  font-family: Poppins;
  text-transform: uppercase;
  font-feature-settings: 'palt' on;
}

@media screen and (max-width:768px) {
  .other_fv .wrap {
    padding: 6rem 2rem 4rem;
    flex-direction: column;
    align-items: stretch;
  }

  .other_fv .wrap .h1 .jp {
    color: #3082CC;
    font-size: 1.6rem;
  }

  .other_fv .wrap .h1 .eng {
    font-size: 3.4rem;
  }
}

/* ---------------------------------------------------------------------------
//  other_sec01
--------------------------------------------------------------------------- */
.other_sec01 {
  border-top: dashed 1px #888;
}

.other_sec01 .wrap {
  display: flex;
  flex-direction: column;
  padding: 8rem 0 16rem;
  align-items: center;
}

.other_sec01 .wrap .p01 {
  font-size: 1.8rem;
  line-height: 2.22;
  text-align: center;
}

.other_sec01 .wrap .btnA {
  margin-top: 8rem;
}

@media screen and (max-width:768px) {
  .other_sec01 .wrap {
    padding: 4rem 2rem 8rem;
  }

  .other_sec01 .wrap .p01 {
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: left;
  }

  .other_sec01 .wrap .btnA {
    margin-top: 4rem;
  }
}

/* ---------------------------------------------------------------------------
//  basic_sec01
--------------------------------------------------------------------------- */
.basic_sec01 {
  border-top: dashed 1px #888;
}

.basic_sec01 .wrap {
  padding: 8rem 0 16rem;
}

.basic_sec01 .wrap h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.basic_sec01 .wrap p {
  font-size: 1.8rem;
  line-height: 2.22;
  margin-top: 1rem;
}

.basic_sec01 .wrap ul {
  margin: 1rem 0;
}

.basic_sec01 .wrap ul li {
  display: flex;
  font-size: 1.8rem;
  line-height: 2.22;
}

.basic_sec01 .wrap ul li::before {
  content: "・";
  flex-shrink: 0;
}

.basic_sec01 .wrap .space {
  height: 7rem;
}

@media screen and (max-width:768px) {
  .basic_sec01 .wrap {
    padding: 4rem 2rem 86rem;
  }

  .basic_sec01 .wrap h2 {
    font-size: 1.6rem;
  }

  .basic_sec01 .wrap p {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .basic_sec01 .wrap ul {
    margin: 1rem 0;
  }

  .basic_sec01 .wrap ul li {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .basic_sec01 .wrap .space {
    height: 4rem;
  }
}

/* ---------------------------------------------------------------------------
//  PC/SP
--------------------------------------------------------------------------- */
.forSP {
  display: none;
}

@media screen and (max-width:768px) {
  .forSP {
    display: block;
  }

  .forPC {
    display: none;
  }
}