* {
  box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6,p {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

picture img {
  display: block;
}

/*======================================
Layout
======================================*/

/* -----------------------------------
wrapper
----------------------------------- */

.wrapper {
  display: flex;
  height: 100vh;
  overflow: hidden;
  justify-content: space-between;
  box-shadow: 0 0 0 4px #0000;
  position: relative;
  gap: var(--space-40);
}

.wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 80px; /* 枠の太さ */
  background: linear-gradient(
    200deg,
    rgba(235, 215, 237, 0.6) 2%,
    rgba(239, 231, 241, 0.6) 15%,
    rgba(231, 243, 232, 0.6) 30%,
    rgba(216, 239, 252, 0.6) 55%,
    rgba(231, 243, 232, 0.6) 80%,
    rgba(216, 239, 252, 0.6) 89%,
    rgba(235, 215, 237, 0.6) 108%
    ); 
  -webkit-mask:
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 767px) {
  .wrapper {
    padding-right: 0;
    height: auto;
    flex-direction: column;
    gap: 0;
  }
  .wrapper::before {
    display: none;
  }
}
@media (min-width: 1600px) {
  .wrapper::before {
    padding: 120px; /* 枠の太さ */
  }
}

/* -----------------------------------
container
----------------------------------- */

.container-scroll {
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.container {
  z-index: 1;
  position: relative;
  width: 768px;
  border: 5px solid var(--key);
  border-bottom: none;
  border-radius: var(--radius-40) var(--radius-40) 0 0;
  margin-top: 60px;
  margin-right: 8vw;
  background: var(--white);
  overflow: hidden;
}


@media (min-width: 1600px) {
  .container {
      margin-right: 12vw;  
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .container {
      margin-right: 12.5vw;
   
  }  
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
      margin-right: 40px;
      margin-top: 80px;
  }  
}
@media (max-width: 767px) {
  .container {  
    border-radius: 0;
    border: none;
    margin-top: 50px;
    overflow: visible;
    height: auto;
    margin-right: 0;
    width: 100%;
  }
}

/*ページごとに背景色変更*/
#page-feature .container,
#page-lineup .container {
  background: var(--gradient-primary);
}
#page-interview .container,
#page-point .container {
  background: var(--bg-image-sp) var(--white);
}

/* -----------------------------------
section
----------------------------------- */

.section-inner {
  padding: var(--space-20);
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

/*ページごとに内側余白変更*/
#page-feature .section-inner,
#page-lineup .section-inner{
  padding: 0 6vw;
}
#page-interview .section-inner {
  padding: 0 var(--space-50);
}
#page-point .section-inner {
  padding: 60px var(--space-50) 30px;
}
@media (max-width: 767px) {
  #page-interview .section-inner {
    padding: 0 var(--space-20);
  }
  #page-point .section-inner {
    padding: 60px var(--space-20) 30px;
  }
}

/* -----------------------------------
header
----------------------------------- */

#header {
  position: relative;
  z-index: 2;
}
/* PC/SP 表示切り替え*/
.site-header-sp { display: none;}
@media (max-width: 1024px) {
  .site-header-pc { display: none; }
  .site-header-sp { display: block;}
}

/* PC版 */
.site-header-pc {
  padding: 20px;
  width: 38vw; 
}
.site-header-pc aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 13vh;
  margin-left: 10vw;
}
@media (min-width: 1600px) {
  .site-header-pc {
    width: 44vw; 
  }
  .site-header-pc aside {
    margin-top: 13vh;
  }  
}

.logo-pilot {
  display: block;
  width: 140px;
  height: 37px;
  opacity: 1;
}
.logo-04mm {
  display: block;
  max-width: 560px;
  width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity .2s ease;
}

.logo-pilot:hover,
.logo-04mm:hover {
  opacity: 0.7;
}

/* SP版 */
.site-header-sp {
  position: fixed;
  width: 100%;
  background: var(--white);
}

.site-header-sp__inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.site-header-sp__inner .logo-pilot {
  width: 94px;
  height: auto;
  margin: 10px 10px 15px;
  display: inherit;  
}

.hamburger{
  width:50px;
  height:50px;
  display:grid; place-items:center;
  cursor:pointer;
  color:#111;
  background: var(--white);
  border:0; background:transparent;
}
.hamburger .icon-close{ display:none; }
.hamburger.active .icon-open{ display:none; }
.hamburger.active .icon-close{ display:block; }

.hamburger:focus { outline:none; }
.hamburger:focus-visible{
  outline: 2px solid #005BAC;
  outline-offset: 3px;
  border-radius: 8px;
}

.sp-nav{
  position: fixed;
  top: 0;
  right: 0;
  height: auto;
  width: 100%;
  background: var(--blue-light);
  transform: translateY(100%);
  z-index: 10;
  opacity: 0;
  margin-top: 50px;
  padding: 20px;
  display: none;
}

.sp-nav__inner {
  background-color: var(--white);
  display: flex;
  padding: 30px 38px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-20);
  border: 2px solid var(--key, #005BAC);
  box-shadow: 6px 6px 0 0 #B6D9F3;
  transition: transform .5s ease;  
}

.sp-nav.open{
  transform: translateY(0);
  opacity: 1;  
  display: block;
  height: 100vh;
}

.sp-nav__inner .logo-04mm {
  width:100%;
  max-width: 150px;
  height: auto;
}

/*メニュー*/
.site-header-sp ul,
.site-header-pc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  gap: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
}
.site-header-sp ul .button,
.site-header-pc ul .button {
  width: 100%;
}

.site-header-pc ul {
  margin-top: var(--space-30);
}

@media (max-width: 767px) {
  .site-header-sp ul {
    margin-top: var(--space-10);
  }
}

/* -----------------------------------
footer
----------------------------------- */

.site-footer {
  padding: var(--space-40);
  width: 100%;
  text-align: center;
}

.site-footer .logo-pilot {
  margin: 0 auto;
  width: 94px;
  height: auto;
}

.site-footer small {
  font-weight: var(--fw-regular);
}

/*======================================
Component
======================================*/

/* -----------------------------------
heading
----------------------------------- */

/* 囲み背景 */
.heading-highlight {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.heading-highlight .highlight-blue {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.heading-highlight .highlight-blue span{
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--key, #005BAC);
  background: var(--key, #005BAC);
  width: max-content;
  max-width: 100%;
  color: var(--white);
  font-size: var(--fs-38);
  font-weight: var(--fw-bold);
  line-height: var(--lh-120);
}

.heading-highlight .highlight-white span {
  color: var(--key);
  padding: 2px 12px;
  border-radius: 4px;
  border: 1px solid var(--key, #005BAC);
  background: var(--white, #FFF);
  font-size: var(--fs-24);
  font-weight: var(--fw-bold);
  line-height: var(--lh-120);
}

@media (max-width: 767px) {
  .heading-highlight {
    gap: 12px;
  }
  .heading-highlight .highlight-blue {
    gap: 4px;
  }
  .heading-highlight .highlight-blue span{
    font-size: var(--fs-22);
  }
  .heading-highlight .highlight-white span {
    font-size: var(--fs-16);
  }
}

/*画像タイトル*/
.title_feature { max-width: 440px;}
.title_interview-top { max-width: 320px;}
.title_point { max-width: 390px;}
.title_special { max-width: 260px;}
.title_lineup { max-width: 270px;}
.title_lineup-top {
  width: 100%;
  max-width: 480px;
  z-index: 1;
}
.title_point_lead-size { max-width: 240px;}
.title_point_subject-note { max-width: 230px;}

@media (max-width: 767px) {
  .title_feature { max-width: 290px;}
  .title_interview-top { max-width: 200px;}
  .title_point { max-width: 250px;}
  .title_special { max-width: 180px;}
  .title_lineup { max-width: 180px;}
  .title_lineup-top { max-width: 480px;}
  .title_point_lead-size { max-width: 180px;}
  .title_point_subject-note { max-width: 170px;}
}

/*タイトル周り余白*/
.title-wrap {
  gap: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .title-wrap { 
  margin-bottom: 24px;  
  }
}

.page-heading {
  gap: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  position: relative;
}

#page-feature .page-heading{ padding: 80px 0 40px;}
#page-interview .page-heading { padding: 0 0 40px}
#page-point .page-heading { padding: 100px 0 60px;}
#page-lineup .page-heading { padding: 80px 0 60px;}

@media (max-width: 767px) {
  #page-feature .page-heading{ padding: 60px 0 30px;}
  #page-interview .page-heading {padding: 0 0 30px}
  #page-point .page-heading {padding: 60px 0 30px;}
  #page-lineup .page-heading {padding: 60px 0 30px;}
}
#page-feature .page-heading,
#page-point .page-heading,
#page-lineup .page-heading {
  background-image:  url(../images/common/bg_left.svg),url(../images/common/bg_right.svg);
  background-position: left top, right top;
  background-size: 100% , 50%;
  background-repeat: no-repeat;
}

/* -----------------------------------
button
----------------------------------- */

a.button { 
  text-decoration: none;
  width: max-content;
  max-width: 100%;  
}

.button {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-50);
  border: 2px solid var(--key, #005BAC);
  background: var(--yellow-light);
  color: var(--key);
  text-align: center;
  font-family: var(--font-base);
  font-style: normal;
  font-weight: var(--fw-bold);
  line-height: var(--lh-140);
}

.button:hover {
  background-color: var(--accent);
}

/*2行の場合*/
.button span {
  scale: 74%;
  margin-bottom: -2px;
}

/*ボタンのサイズ*/
.button {
  --btn-S-padding-y: 14px;
  --btn-S-padding-x: 40px;
  --btn-M-padding-y: 16px;
  --btn-M-padding-x: 40px;
  --btn-L-padding-y: 20px;
  --btn-L-padding-x: 60px;
  --butn-S-fontsize: var(--fs-16);
  --butn-M-fontsize: var(--fs-20);
  --butn-L-fontsize: var(--fs-24);
}
@media screen and (max-width: 1280px) {
  .button {
    --btn-S-padding-y: 8px;
    --btn-S-padding-x: 20px;
    --btn-M-padding-y: 10px;
    --btn-M-padding-x: 30px;
    --btn-L-padding-y: 14px;
    --btn-L-padding-x: 40px;
    --butn-S-fontsize: var(--fs-13);
    --butn-M-fontsize: var(--fs-16);
    --butn-L-fontsize: var(--fs-18);
  }  
}

.button-small {
  padding: var(--btn-S-padding-y) var(--btn-S-padding-x);
  font-size: var(--butn-S-fontsize);
}
.button-medium {
  padding: var(--btn-M-padding-y) var(--btn-M-padding-x);
  font-size: var(--butn-M-fontsize);
}
.button-large {
  padding: var(--btn-L-padding-y) var(--btn-L-padding-x);
  font-size: var(--butn-L-fontsize);
}

/*ボタンのアイコン*/
.icon-next::after,
.icon-back::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.icon-next::after { right: 4%; background-image: url(../images/common/icon/chevron_forward.svg); }
.icon-back::after { left: 4%; background-image: url(../images/common/icon/chevron_backward.svg);}

@media (min-width: 1280px) {
  .icon-next--two-lines::after {
    width: 30px;
    height: 30px;
  }
}

/*サムネイル付きのボタン*/
.button.button-banner {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  max-width: 410px;
  min-width: 200px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius-10);
  text-align: left;  
}
.button-banner__thumb {
  max-width: 170px;
  width: 100%;
  height: auto;
}
.button-banner__title {
  display: flex;
  flex-direction: column;
  font-size: var(--fs-24);
  padding: 0 50px 0 20px;
  align-items: center;
  width: 100%;

}
.button-banner__title span{
  font-size: var(--fs-16);
  color: var(--text-black);
}

@media (max-width: 1024px) {
  .button-banner__title {
    padding: 0 30px 0 0;
  }  
  .button-banner__thumb {
    max-width: 120px;
  }
}

/* -----------------------------------
card
----------------------------------- */

.c-card{
  display: flex;
}
ul.c-card {
  list-style: none;
  padding: 0;
  margin: 0;  
}
.c-card__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.c-card__thumb{
  width: 100%;
  height: auto;
}
.c-card__name{
  align-self: stretch;
  text-align: center;
  font-size: var(--fs-15);
  line-height: var(--lh-140) 
}
.c-card__desc{
  text-align: center;
}
.c-card__label {
  position: absolute;
  top: 0;
  left: 0;
}

/*======================================
Pages - feature
======================================*/
.list-feature {
  gap: 30px;
  flex-direction: column;
}
.list-feature .c-card__item{
  background: var(--white);
  border-radius: var(--radius-30);
  padding: 50px 40px;
}
.list-feature .c-card__name{
  color: var(--key, #005BAC);
  font-size: var(--fs-28);
  font-weight: var(--fw-bold);
  line-height: var(--lh-150);
  margin-top: 1rem;
}
.list-feature .c-card__label{
  top: 10px;
  left: 10px;
  width: 100px;
  height: auto;
}

@media (max-width: 767px) {
  .list-feature {
    gap: 20px;
  }
  .list-feature .c-card__item{
    border-radius: var(--radius-10);
    padding: 30px 20px;
  }
  .list-feature .c-card__name {
    font-size: var(--fs-22);
  }
  .list-feature .c-card__label{
    width: 60px;
  }
}

/*======================================
Pages - lineup
======================================*/
.list-lineup {
  gap: 40px 30px;
  flex-wrap: wrap;  
}

.list-lineup .c-card__item{
  width: calc(50% - 15px);
}

/*======================================
Pages - point
======================================*/


#lead-size .section-inner {
  background: var(--blue-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
#lead-size .section-inner .title-wrap {
  margin-bottom: 0;
}

.list-point_lead-size .slider__item {
  border: 5px solid var(--white, #FFF);
  box-shadow: 0 0 15px 0 rgba(0, 91, 172, 0.30);
}

.list-point_subject-note {
  gap: 0 30px;
  flex-wrap: wrap;  
}
.list-point_subject-note .c-card__item{
  width: calc(50% - 15px);
  gap: 0;
}
.list-point_subject-note .c-card__thumb {
  border: 5px solid var(--black);
  border-radius: var(--radius-10);
}

.list-point_subject-note .c-card__desc-outer{
  position: relative;
  bottom: 50px;
  right: 0;
  z-index: 2;
  width: 100%;
}
.list-point_subject-note .c-card__desc{
  background: var(--white);
  box-shadow: 6px 6px 0 0 var(--blue-light); 
  padding: 10px 14px;
  margin-left: 15%;
  text-align: left;
}
.list-point_subject-note .c-card__label{
  color: var(--white);
  font-size: var(--fs-20);
  padding: 0 20px;
}
.list-point_subject-note .text--caption {
  margin-top: 10px;
  text-align: right;
}
@media (max-width: 1279px) {
  .list-point_subject-note .c-card__item{
    width: 100%;
  }
}
@media (max-width: 767px) {
  .list-point_subject-note {
    flex-direction: column;
  }
  .list-point_subject-note .c-card__desc-outer{
    bottom: 40px;
  }
}

/*色分け*/
#subject-note {
  --orange: #F5907D;
  --green: #64CEB5;
  --blue: #52A3DC;
  --pink: #E38FBA;
  --yellow: #E0B953;
}
.list-point_subject-note_1 .c-card__label { background: var(--orange);}
.list-point_subject-note_2 .c-card__label { background: var(--green);}
.list-point_subject-note_3 .c-card__label { background: var(--blue);}
.list-point_subject-note_4 .c-card__label { background: var(--pink);}
.list-point_subject-note_5 .c-card__label { background: var(--yellow);}

.list-point_subject-note_1 .c-card__thumb { border-color: var(--orange);}
.list-point_subject-note_2 .c-card__thumb { border-color: var(--green);}
.list-point_subject-note_3 .c-card__thumb { border-color: var(--blue);}
.list-point_subject-note_4 .c-card__thumb { border-color: var(--pink);}
.list-point_subject-note_5 .c-card__thumb { border-color: var(--yellow);}


/*======================================
Pages - interview
======================================*/

/*要素間の余白*/
#page-interview { --interview-gap: 64px;}
@media (max-width: 767px) {#page-interview { --interview-gap: 38px;}}

#page-interview .page-heading {
  align-items: flex-start;
}
#page-interview .heading-highlight {
  margin-left: var(--space-50);
  margin-top: -50px;
}
#page-interview .title_interview {
  position: absolute;
  max-width: 254px;
  width: 100%;
  margin-top: 48px;
  display: flex;
}
#page-interview section {
  margin-bottom: var(--interview-gap);
}
#page-interview .section-inner {
  gap: var(--space-16);
}
#page-interview .section-inner + .section-inner {
  margin-top: var(--interview-gap);
}
.interview-photo {
  margin: var(--interview-gap) 0 14px;
}
.interview-photo .text--caption {
  text-align: center;
  margin: 14px auto 0;
  width: 80%;
}

@media (max-width: 767px) {
  #page-interview .heading-highlight {
    margin-left: var(--space-20);
  }
  #page-interview .title_interview {
    margin-top: 0;
    max-width: 200px;
  }
}

.enquete {
  padding: 0 var(--space-50);
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}
.enquete__title {
  position: relative;
}
.enquete__title h3{
  color: var(--white);
  text-align: center;
  font-size: var(--fs-22);
  font-weight: var(--fw-bold);
  line-height: var(--lh-150);
  background: var(--key);
  padding: 10px;
}
.enquete__title-catch {
  position: absolute;
  width: 100%;
  height: auto;
  max-width: 120px;
  top: -45px;
  right: 0;
}
.enquete__item {
  position: relative;
  background: var(--white);
  border: 2px solid var(--blue-light, #D8EFFC);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  padding: 30px 40px 60px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}
.enquete__item-title{
  display: flex;
  padding-bottom: 16px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  color: var(--body, #595757);
  font-size: var(--fs-18);
  font-weight: var(--fw-bold);
  line-height: var(--lh-150)
}
.enquete__item-title--en {
  color: var(--key, #005BAC);
  text-align: center;
  font-size: var(--fs-40);
  line-height: var(--lh-120);
  margin-bottom: 3px;
}
.enquete .text--caption {
  text-align: center;
}
.enquete__item .text--caption {
  text-align: right;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

@media (max-width: 767px) {
  .enquete {
    padding: 0 var(--space-10);
  }
  .enquete__item {
    padding: 30px 20px 60px;
  }
  .enquete__title h3 {
    text-align: left;
    padding: 10px 20px;
  }
  .enquete__title-catch {
    top: -34px;
  }  
}

.graph01__comment {
  color: var(--body, #595757);
  font-size: var(--fs-18);
  font-weight: var(--fw-bold);
  line-height: var(--lh150);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #FFEFF3;
  width: max-content;
  max-width: 100%;
  padding: 4px 20px;
  margin: 20px auto 0;
}

/*======================================
Pages - top
======================================*/

#page-index .section-inner{
  text-align: center;
  align-items: center;
  padding: 80px;
}
@media (max-width: 767px) {
  #page-index .section-inner{
    text-align: center;
    align-items: center;
    padding: 40px;
  }
}

/* mainvisual */
.mainvisual-outer {
  background: var(--gradient-primary-top);
}
#mainvisual {
  padding-top: 40px;
  background-image: url(../images/common/bg_left.svg), url(../images/common/bg_right.svg);
  background-position: -20px 34vh, right top;
  background-size: 55%, 50%;
  background-repeat: no-repeat;
}

#mainvisual .subtitle {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
}
#mainvisual .title {
  width: 100%;
  margin-left: 20px;
  z-index: 0;
}
#mainvisual .mv_visual-outer {
  position: relative;
  width: 100%;
  z-index: 3;
  margin-top: -6vh;
  text-align: right;
}
#mainvisual .mv_visual-outer::after {
  content: "";
  display: block;
  width: 100%;
  height: 270px;
  background-image: url(../images/top/cloud_pc.png);
  background-size: 120% auto;
  background-position: 60% center;
  background-repeat: no-repeat;
  margin-top: -180px;
  position: relative;
  z-index: 3;
}
#mainvisual .mv_visual {
  display: inline;
  max-width: 454px;
  width: 60%;
  height: auto;
}
@media (max-width: 767px) {
  #mainvisual {
    background-position: -20px 230px, right top;
  }
  #mainvisual .title {
    margin-left: 10px;
  }
  #mainvisual .subtitle {
    padding: 20px 20px 0;
  }
  #mainvisual .mv_visual {
    width: 70%;
  }
  #mainvisual .mv_visual-outer {
    margin-top: -4vh;
  }
  #mainvisual .mv_visual-outer::after {
    height: 150px;
    /* background-image: url(../images/top/cloud_sp.png); */
    margin-top: -80px;
  }
}

/* intro */
#intro {
  padding: 0 20px 200px;
}
.title_intro {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
}
.text_intro {
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: -20px auto 0;
}
@media (max-width: 767px) {
  .text_intro {
    width: 90%;
  }  
}

/* feature*/
#page-index #top-feature {
  margin-top: -190px;
}
#page-index #top-feature .section-inner{
  padding-top: 20px;
  position: relative;
  background-color: var(--white);  
}
.top-feature__bg-deco {
  display: block;
  width: 100%;
  height: auto;
}

/* interview*/
#top-interview .text--note {
  text-align: left;
  margin-top: 10px;
  width: 100%;
  max-width: 410px;
}

/* lineup */
#top-lineup {
  position: relative;
  background: var(--gradient-primary);
}
#top-lineup::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/bg_left.svg), url(../images/common/bg_right.svg);
  background-position: -20px 18vh, right top;
  background-size: 55%, 50%;
  background-repeat: no-repeat;
  z-index: 1;
}
#page-index #top-lineup .section-inner {
  position: relative;
  gap: 0;
  padding: 0 40px;
  z-index: 3;
}
#top-lineup .button-wrap {
  position: relative;
  margin-top: -20px;
}
.top-lineup-visual {
  max-width: 454px;
  width: 60%;
  height: auto;
  z-index: 0;
  margin: -50px -200px 0 0;
}
.top-lineup-catch {
  max-width: 130px;
  width: 100%;
  height: auto;
  z-index: 0;
  position: absolute;
  top: -80px;
  left: -80px;
}
.top-lineup__bg-deco {
  display: block;
  width: 100%;
  height: auto;
}
.top-lineup__bg-deco:first-child {
  transform: rotate(180deg);
}

@media screen and (max-width: 1024px) {
  .top-lineup-visual {
    width: 70%;
    max-width: 390px;
    bottom: 190px;
  }
  .top-lineup-catch {
    max-width: 80px;
    top: -50px;
    left: -40px; 
  }
}

/*bg_memphis-pattern*/
.bg_memphis-pattern {
  width: 100%;
  height: 100vh;
  position: absolute;
  overflow: hidden;
}
.bg_memphis-pattern--left {
  width: 40vw;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.bg_memphis-pattern--right {
  width: 30vw;
  height: auto;
  top: 0;
  right: 0;
  z-index: 0;
}

/*======================================
Slider
======================================*/
.slider {
  width: 100%;
  text-align: center;
  z-index: 4;
}

/* 横並び */
.slider__track {
  display: flex;
  justify-content: center;
  gap: 12px;
  transition: transform .4s ease;

  list-style: none;
  padding: 0;
  margin: 0;    
}

/* 各画像 */
.slider__item {
  flex: 0 0 60%; /* 中央画像の幅 */
}

.slider__item img {
  width: 100%;
  display: block;
}

/* ナビ */
.slider__nav {
  margin-top: var(--space-30);
}

.slider__nav button {
  position: relative;
  font-size: var(--fs-18);
  font-weight: var(--fw-bold);
  color: var(--key);
  background-color: var(--yellow-light);
  border: 1px solid var(--key);
  padding: 10px 20px 12px 20px;
  border-radius: var(--radius-30);
  cursor: pointer;
}
.slider__nav button.is-active {
  font-size: var(--fs-24);
  background-color: var(--key);
  color: var(--white);
}
.slider__nav button.is-active::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid var(--key);
}

@media (max-width: 767px) {
  .slider__item {
    flex: 0 0 70%; /* 中央画像の幅 */
  }  
}

/*======================================
Other
======================================*/
.back-to-index {
  margin: 60px auto 0;
  width: fit-content;
  text-align: center;
}

#page-index .back-to-index {
  display: none;
}

/* .is-loading
ページ遷移時のふわっとアニメーション*/
body {
  opacity: 1;
  transition: opacity .4s ease;
}
/* 初期状態（非表示） */
body.is-loading {
  opacity: 0;
}