:root {
  --yellow: #FFCA28;
  --yellow-light: #FFEB33;
  --orange: #FFA920;
  --white: #FFFFFF;
  --black: #222324;
  --gray: #C7D3D6;
  --gray-light: #EFF1F2;
  --gray-dark: #4A515F;

  --main-font: 'M PLUS 1', sans-serif;
  /* --english-font: 'Jeko ExtraBold', sans-serif; */
}

body {
  font-family: var(--main-font);
}

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

p, h1, h2, h3, h4, h5, h6, ul, ol, li, table th, table td, a {
  margin: 0;
  padding: 0;
  color: var(--black);
  font-weight: normal;
}

a {
  text-decoration: none;
  border: none;
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
  background-color: transparent;
}

/* .english-font {
  font-family: var(--english-font);
} */

a.basic_link.header__button {
  width: 150px;
  font-size: 14px;
  font-weight: bold;
  background-color: #f6be00;
  border: none;
}

@media screen and (max-width: 767px) {
  a.basic_link.header__button {
    padding: 8px 10px !important;
    width: 98px;
  }
}

a.basic_link.header__button .icon-arrow {
  right: 10% !important; 
}


@media screen and (max-width: 767px) {
  a.basic_link.header__button .icon-arrow {
    right: 4% !important; 
  }
}

a.basic_link.header__button:hover {
  background-color: #c29500;
}

/* 新しいタブで開くアイコン */
.external-link a {
  position: relative;
  padding-right: 1.5em;
}

.external-link a::after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='_x32_' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M96,0v416h416V0H96z M472,376H136V112h336V376z' fill='%234B4B4B'%3E%3C/path%3E%3Cpolygon points='40,472 40,296 40,136 40,96 0,96 0,512 416,512 416,472 376,472' fill='%234B4B4B'%3E%3C/polygon%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.3em;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

/* 色のバリエーション */        
.external-link.white a::after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='_x32_' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M96,0v416h416V0H96z M472,376H136V112h336V376z' fill='%23ffffff'%3E%3C/path%3E%3Cpolygon points='40,472 40,296 40,136 40,96 0,96 0,512 416,512 416,472 376,472' fill='%23ffffff'%3E%3C/polygon%3E%3C/g%3E%3C/svg%3E");
}

.external-link:hover a::after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='_x32_' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M96,0v416h416V0H96z M472,376H136V112h336V376z' fill='%23ecd855'%3E%3C/path%3E%3Cpolygon points='40,472 40,296 40,136 40,96 0,96 0,512 416,512 416,472 376,472' fill='%23ecd855'%3E%3C/polygon%3E%3C/g%3E%3C/svg%3E");
}

.p-corporateCustomer {
  background-color: var(--white);
}

.p-corporateCustomer__heading {
  font-size: 40px;
  font-weight: bold;
  color: var(--black);
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__heading {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__heading {
    font-size: 24px;
  }
}

.p-corporateCustomer__heading--center {
  text-align: center;
}

.p-corporateCustomer__heading--large {
  font-size: 62px;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__heading--large {
    font-size: 56px;
  }
}

@media screen and (max-width: 767px) { 
.p-corporateCustomer__heading--large {
  font-size: 46px;
}
}

/* メインビジュアル全体のスタイル */
.p-corporateCustomer__mainVisual {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 730px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__mainVisual {
    min-height: 680px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__mainVisual {
    flex-direction: column;
  }
}

/* 左側エリア（黄色背景部分） */
.p-corporateCustomer__mainVisual--left {
  width: 60%;
  background-color: var(--yellow);
  padding: 153px 25px 10px 79px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__mainVisual--left {
    padding: 153px 25px 10px 50px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__mainVisual--left {
    padding: 0;
    width: 100%;
    min-height: 327px;
    align-items: center;
    justify-content: center;
  }
}

/* 右側エリア（白背景+車画像） */
.p-corporateCustomer__mainVisual--right {
  position: relative;
  width: 40%;
  height: 100%;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__mainVisual--right {
    width: 100%;
    min-height: 527px;
    overflow: hidden;
  }
}

.p-corporateCustomer__mainVisual__wrapper {
  display: flex;
  column-gap: 14px;
  z-index: 2;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__mainVisual__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.p-corporateCustomer__mainVisual__logoImage {
  width: 300px;
  height: auto;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__mainVisual__logoImage {
    width: 260px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__mainVisual__logoImage {
    width: 190px;
  }
}

.p-corporateCustomer__mainVisual__title {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.p-corporateCustomer__mainVisual__titleImage {
  width: 343px;
  height: auto;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__mainVisual__titleImage {
    width: 320px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__mainVisual__titleImage {
    width: 197px;
  }
}

.p-corporateCustomer__mainVisual__subtitle {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: -0.06em;
  white-space: nowrap;
  color: #3E434D;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__mainVisual__subtitle {
    font-size: 34px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__mainVisual__subtitle {
    margin: 10px 0 0;
    font-size: 14px;
  }
}

.p-corporateCustomer__mainVisual__backgroundImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 730px;
  object-fit: cover;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__mainVisual__backgroundImage {
    top: auto;
    bottom: 0;
    min-height: 527px;
  }
}

.p-corporateCustomer__mainVisual__messageBox {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 47px;
  padding: 20px 45px;
  width: 100%;
  max-width: calc(100vw - 80px);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 19px;
  z-index: 2;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__mainVisual__messageBox {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__mainVisual__messageBox {
    padding: 20px 11px;
    max-width: calc(100vw - 62px);
    bottom: 66px;
  }
}

.p-corporateCustomer__mainVisual__messageTitle {
  margin: 0 0 10px 0;
  font-size: 34px;
  font-weight: bold;
  color: var(--gray-dark);
  text-align: center;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__mainVisual__messageTitle {
    font-size: 30px;
  }
}

@media screen and (max-width: 900px) { 
  .p-corporateCustomer__mainVisual__messageTitle {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__mainVisual__messageTitle {
    font-size: 19px;
    text-align: left;
  }
}

.p-corporateCustomer__mainVisual__messageText {
  font-size: 24px;
  line-height: 1.5;
  color: var(--gray-dark);
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__mainVisual__messageText {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__mainVisual__messageText {
    font-size: 14px;
  }
}

.p-corporateCustomer__mainVisual__messageText:last-child {
  margin: 0;
}


.p-corporateCustomer__introduction {
  padding: 120px 0;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__introduction {
    padding: 100px 0;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__introduction {
    padding: 60px 0;
  }
}

.p-corporateCustomer__introduction__content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  overflow: hidden;
  max-width: 1360px;
  margin: 30px auto 0;
  min-height: 500px; /* 最小高さを設定 */
  position: relative;
  visibility: hidden; /* 初期化前は非表示 */
  padding: 0 20px; /* 左右に余白を追加 */
}

@media screen and (max-width: 950px) {
  .p-corporateCustomer__introduction__content {
    padding: 0 40px;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-corporateCustomer__introduction__content {
    margin: 20px auto 0;
    min-height: 300px;
  }
}

/* slick初期化後に表示 */
.p-corporateCustomer__introduction__content.slick-initialized {
  visibility: visible;
}

/* slickスライダーのカスタマイズ */
.p-corporateCustomer__introduction__content .slick-slide {
  margin: 0 20px;
}

@media screen and (max-width: 767px) {
  .p-corporateCustomer__introduction__content .slick-slide {
    margin: 0 5px;
  }
}

.p-corporateCustomer__introduction__content .slick-list {
  margin: 0;
  padding: 0 0 40px 0; 
}

.p-corporateCustomer__introduction__content .slick-prev,
.p-corporateCustomer__introduction__content .slick-next {
  top: 150px;
  width: 20px;
  height: 57px;
  z-index: 1;
  font-size: 0;
  line-height: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__introduction__content .slick-prev,
  .p-corporateCustomer__introduction__content .slick-next {
    top: 100px;
    width: 20px;
    height: 38px;
  }
}

.p-corporateCustomer__introduction__content .slick-prev {
  left: 20px;
}

.p-corporateCustomer__introduction__content .slick-next {
  right: 20px;
}


.p-corporateCustomer__introduction__content .slick-prev:before,
.p-corporateCustomer__introduction__content .slick-next:before {
  content: '';
  display: none;
}

.p-corporateCustomer__introduction__content .slick-dots {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
}


.p-corporateCustomer__introduction__content .slick-dots li button:before {
  font-size: 12px;
  color: var(--gray-dark);
}

.p-corporateCustomer__introduction__content .slick-dots li.slick-active button:before {
  color: #737373
}

.p-corporateCustomer__introduction__item {
  width: 100%;
  max-width: 428px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 1280px) {
  .p-corporateCustomer__introduction__item {
    max-width: 100%;
  }
}

.p-corporateCustomer__introduction__image {
  margin: 0 auto;
  width: 378px;
  height: auto;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__introduction__image {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .p-corporateCustomer__introduction__image {
    margin: 0 auto;
    width: 270px;
  }
}

.p-corporateCustomer__introduction__head {
  margin: 20px -10px 0;
  font-size: 34px;
  font-weight: bold;
  color: var(--gray-dark);
  text-align: center;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__introduction__head {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__introduction__head {
    font-size: 24px;
  }
}

.p-corporateCustomer__introduction__text {
  margin: 20px 0 0;
  font-size: 24px;
  line-height: 1.5;
  color: var(--gray-dark);
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__introduction__text {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__introduction__text {
    font-size: 16px;
  }
}

/* .p-corporateCustomer__banner {
  width: 372px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-decoration: none;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__banner {
    width: 350px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
  }
}



.p-corporateCustomer__banner.visible {
  display: block;
  opacity: 1;
}

.p-corporateCustomer__banner__heading {
  background-color: var(--orange);
  padding: 5px 40px;
  border-radius: 12px 12px 0 0;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__banner__heading {
    border-radius: 8px;
    padding: 13px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
  }
}

.p-corporateCustomer__banner__heading .p-corporateCustomer__banner__image {
  display: none;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__banner__heading .p-corporateCustomer__banner__image {
    display: block;
  }
}

.p-corporateCustomer__banner__head {
  color: var(--white);
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .p-corporateCustomer__banner__head {
    font-size: 20px;
}

  .p-corporateCustomer__banner__head br {
    display: none;
  }
}

.p-corporateCustomer__banner__content {
  background-color: var(--white);
  padding: 20px 22px;
  border-radius: 0 0 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__banner__content {
    display: none;
  }
}

.p-corporateCustomer__banner__image {
  width: 70px;
  height: auto;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__banner__image {
    width: 33px;
  }
}

.p-corporateCustomer__banner__text {
  font-size: 20px;
  color: #3E434E;
}


.p-corporateCustomer__banner__close {
  position: absolute;
  top: -17px;
  right: -9px;
  width: 36px;
  height: 36px;
  background-color: #FFF5F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__banner__close {
    top: -16px;
    right: 0;
    width: 30px;
    height: 30px;
  }
}

.p-corporateCustomer__banner__close::before,
.p-corporateCustomer__banner__close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 4px;
  background-color: var(--black);
}

.p-corporateCustomer__banner__close::before {
  transform: rotate(45deg);
}

.p-corporateCustomer__banner__close::after {
  transform: rotate(-45deg);
} */

.p-corporateCustomer__merit {
  width: 100%;
  background-color: var(--gray);
}

.p-corporateCustomer__merit__inner {
  margin: 0 auto;
  padding: 120px 0; 
  width: 100%;
  max-width: 1254px;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__merit__inner {
    padding: 100px 20px;
    max-width: 1140px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__inner {
    padding: 60px 0; 
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__inner .p-corporateCustomer__heading {
    text-align: center;
  }
}

/* アコーディオンのスタイル */
.p-corporateCustomer__merit__wrapper {
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__wrapper {
    max-width: 350px;
    margin: 20px auto 0;
    row-gap: 20px;
  }
}

/* アコーディオンアイテム */
.p-corporateCustomer__merit__item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__item {
    border-radius: 8px;
  }
}


/* アコーディオンヘッダー */
.p-corporateCustomer__merit__head {
  display: flex;
  align-items: center;
  padding: 18px 10px 18px 36px;
  background-color: var(--white);
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__merit__head {
    padding: 10px 10px 10px 20px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__head {
    padding: 6px 5px 6px 15px;
    min-height: 60px;
  }
}

.p-corporateCustomer__merit__item.active  .p-corporateCustomer__merit__head {
  background-color: var(--yellow);
}

.p-corporateCustomer__merit__head:active, .p-corporateCustomer__merit__head:hover, .p-corporateCustomer__merit__head:focus,
.p-corporateCustomer__merit__item.active .p-corporateCustomer__merit__head:active, .p-corporateCustomer__merit__item.active .p-corporateCustomer__merit__head:hover, .p-corporateCustomer__merit__item.active .p-corporateCustomer__merit__head:focus
 {
  background-color: var(--yellow-light);
}

/* アコーディオンが開いているときのヘッダー */
.p-corporateCustomer__merit__number {
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  min-width: 30px;
}


@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__number {
    font-size: 35px;
  }
}

.p-corporateCustomer__merit__heading {
  margin: 0 0 0 32px;
  font-size: 32px;
  font-weight: bold;
  flex-grow: 1;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__merit__heading {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__heading {
    margin: 0 0 0 10px;
    font-size: 16px;
  }
}


/* アイコン */
.p-corporateCustomer__merit__icon {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__icon {
    width: 44px;
    height: 44px;
  }
}

/* プラスアイコン */
.p-corporateCustomer__merit__icon-plus {
  display: block;
}

/* マイナスアイコン */
.p-corporateCustomer__merit__icon-minus {
  display: none;
}

/* アコーディオンが開いているときのアイコン */
.p-corporateCustomer__merit__item.active .p-corporateCustomer__merit__icon-plus {
  display: none;
}

.p-corporateCustomer__merit__item.active .p-corporateCustomer__merit__icon-minus {
  display: block;
}

/* コンテンツ部分 */
.p-corporateCustomer__merit__content {
  padding: 0 40px; /* 左右のpaddingのみ維持 */
  height: 0; /* 高さを0に */
  max-height: 0;
  overflow: hidden;
  background-color: var(--white);
  opacity: 0; /* 初期状態では非表示 */
  visibility: hidden; /* 初期状態では非表示 */
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s, padding 0.3s ease, height 0.3s ease;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__content {
    padding: 0 15px;
  }
}

/* アコーディオンが開いているときのコンテンツ */
.p-corporateCustomer__merit__item.active .p-corporateCustomer__merit__content {
  padding: 20px 40px 30px;
  height: auto;
  max-height: 500px; /* 十分な高さを確保 */
  opacity: 1; /* 表示状態 */
  visibility: visible; /* 表示状態 */
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s linear 0s, padding 0.3s ease, height 0.3s ease;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__item.active .p-corporateCustomer__merit__content {
    padding: 15px 15px 20px;
  }
}

.p-corporateCustomer__merit__text {
  font-size: 20px;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__text {
    font-size: 14px;
  }
}

/* 強調テキスト */
.p-corporateCustomer__merit__emphasize {
  font-weight: bold;
  text-decoration: underline;
}

.p-corporateCustomer__merit__note {
  margin: 36px 0 0;
  font-size: 26px;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__merit__note {
    margin: 30px 0 0;
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__merit__note {
     display: none;
  }
}

.p-corporateCustomer__why {
  padding: 120px 0 140px;
  background-color: var(--gray-dark);
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__why {
    padding: 100px 0 120px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__why {
    padding: 60px 0 80px;
  }
}

.p-corporateCustomer__title {
  text-align: center;
}

.p-corporateCustomer__titleImage {
  width: 442px;
  height: auto;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__titleImage {
    width: 400px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__titleImage {
    width: 236px;
  }
}

.p-corporateCustomer__why__content {
  margin: 80px auto 0;
  width: 100%;
  max-width: 1254px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__why__content {
    margin: 60px auto 0;
    padding: 0 20px;
    max-width: 1140px;
    gap: 50px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__why__content {
    margin: 30px auto 0;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }
}

.p-corporateCustomer__why__item {
  padding: 20px 10px;
  width: 100%;
  max-width: 370px;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__why__item {

    max-width: 350px;
  }
}

.p-corporateCustomer__image {
  margin: 0 auto;
  width: 108px;
  height: auto;
  display: block;
}

.p-corporateCustomer__why__heading {
  margin: 20px 0 0;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--yellow);  
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__why__heading {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__why__heading {
    margin: 30px 0 0;
    font-size: 24px;
  }
}

.p-corporateCustomer__why__text {
  margin: 20px 0 0;
  font-size: 24px;
  color: var(--white);
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__why__text {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__why__text {
    margin: 30px 0 0;
    font-size: 18px;
  }
}

.p-corporateCustomer__spec {
  padding: 120px 0; 
  width: 100%;
  background-color: var(--gray-light);
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__spec {
    padding: 100px 0; 
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__spec {
    padding: 60px 0;
  }
}

.p-corporateCustomer__spec__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__spec__inner {
    max-width: 1100px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__spec__inner {
    max-width: 350px;
    padding: 0;
  }
}

.p-corporateCustomer__spec__content {
  margin: 20px 0 0 0;
}

.p-corporateCustomer__spec__table {
  margin: 20px 0 0 0;
  width: 100%;
  border-collapse: collapse;
  border: none;
  font-size: 16px;
}

.p-corporateCustomer__spec__headingTop {
  padding: 20px;
  border: 1px solid var(--gray-light);
  font-size: 20px;
  font-weight: bold;
  color: var(--black);
  background-color: #C7D3D6;
  vertical-align: middle;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__spec__headingTop {
    padding: 18px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__spec__headingTop {
    padding: 10px;
    border: 2px solid var(--gray-light);
    font-size: 16px;
  }
}

.p-corporateCustomer__spec__heading,
.p-corporateCustomer__spec__item {
  padding: 28px 20px;
  border: 1px solid var(--gray-light);
  font-size: 24px;
  vertical-align: middle;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__spec__heading,
  .p-corporateCustomer__spec__item {
    padding: 24px 20px;
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__spec__heading,
  .p-corporateCustomer__spec__item {
    padding: 8px 10px;
    border: 2px solid var(--gray-light);
    font-size: 16px;
  }
}

.p-corporateCustomer__spec__heading {
  width: 25%;
  text-align: center;
  background-color: var(--white);
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__spec__heading {
    width: 40%;
  }
}

.p-corporateCustomer__spec__table td {
  width: 75%;
  background-color: var(--white);
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__spec__table td {
    width: 60%;
  }
}

.p-corporateCustomer__spec__table tr:first-child th,
.p-corporateCustomer__spec__table tr:first-child td {
  border-top: 1px solid var(--gray-light);
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__spec__table tr:first-child th,
  .p-corporateCustomer__spec__table tr:first-child td {
    border-top: 2px solid var(--gray-light);
  }
}

.p-corporateCustomer__spec__note {
  margin: 20px 0 0;
  font-size: 20px;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__spec__note {
    font-size: 18px;
  }
}

.basic_link.p-corporateCustomer__spec__button {
  margin: 40px auto 0;
  width: 450px;
  font-size: 20px;
  font-weight: bold;
  background-color: #f6be00;
  border: none;
}

@media screen and (max-width: 767px) {
  .basic_link.p-corporateCustomer__spec__button {
    margin: 30px auto 0;
    padding: 10px !important;
    width: 297px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .basic_link.p-corporateCustomer__spec__button .icon-arrow {
    right: 4% !important; 
  }
}

.basic_link.p-corporateCustomer__spec__button:hover {
  background-color: #c29500;
}


.p-corporateCustomer__spec__margin {
  margin: 80px 0 0;
}

.p-corporateCustomer__reservation {
  padding: 120px 0;
  background-color: var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__reservation {
    padding: 100px 0;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__reservation {
    padding: 60px 0;
  }
}

.p-corporateCustomer__reservation__heading {
  font-size: 54px;
  font-weight: bold;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__reservation__heading {
    font-size: 48px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__reservation__heading {
    font-size: 28px;
  }
}

.p-corporateCustomer__reservation__buttons {
  margin: 62px 0 0;
  display: flex;
  column-gap: 78px;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__reservation__buttons {
    margin: 40px 0 0;
    column-gap: 40px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__reservation__buttons {
    flex-direction: column;
    row-gap: 40px;
  }
}

/* 予約ボタン全体のスタイル */
.p-corporateCustomer__reservation__buttonWrapper {
  display: block;
  position: relative;
}

/* ボタン本体のスタイル */
.p-corporateCustomer__reservation__button {
  padding: 10px;
  width: 412px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
  background-color: var(--white);
  border: 4px solid var(--white);
  border-radius: 12px;
  position: relative;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transform: translateY(-6px);
  z-index: 2;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__reservation__button {
    width: 360px;
  }
}

@media (max-width: 768px) {
  .p-corporateCustomer__reservation__button {
    width: 276px;
    column-gap: 10px;
  }
}

/* 影のスタイル */
.p-corporateCustomer__reservation__shadow {
  position: absolute;
  top: 6px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-color: #9BA3B4;
  border-radius: 12px;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__reservation__shadow {
    top: 0;
    left: 2px;
  }
}

.p-corporateCustomer__reservation__button:hover {
  background-color: var(--yellow-light);
  border: 4px solid var(--white);
}

.p-corporateCustomer__reservation a:active .p-corporateCustomer__reservation__button {
  transform: translateY(0);
}

.p-corporateCustomer__reservation__icon {
  width: 84px;
  height: auto;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__reservation__icon {
    width: 72px;
  }
}

.p-corporateCustomer__reservation__text {
  font-size: 32px;
  font-weight: bold;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__reservation__text {
    font-size: 26px;
  }
}

.p-corporateCustomer__faq {
  margin: 0 auto -100px 0;
  padding: 90px 0 200px;
  position: relative;
  background-color: var(--gray-dark);
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq {
    padding: 60px 0;
  }
}

.p-corporateCustomer__faq__inner {
  width: 100%;
  max-width: 1280px;
  z-index: 2;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__inner {
    max-width: 350px;
  }
}

.p-corporateCustomer__faq__contents {
  max-width: 904px;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__faq__contents {
    margin: 0 20px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__contents {
    margin: 0;
  }
}


.p-corporateCustomer__faq__title {
  font-size: 54px;
  font-weight: bold;
  color: var(--white);
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__faq__title {
    font-size: 48px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__title {
    font-size: 28px;
    text-align: center;
  }
}

.p-corporateCustomer__faq__lead {
  margin: 40px 0 0;
  max-width: 904px;
  font-size: 24px;
  color: var(--white);
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__faq__lead {
    max-width: 720px;
    font-size: 22px;
  }
}


@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__lead {
    margin: 30px 0 0;
    font-size: 20px;
  }
}

.p-corporateCustomer__faq__buttonWrapper {
  margin: 30px 0 0;
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__buttonWrapper {
    justify-content: center;
  }
}

.p-corporateCustomer__faq__button {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  padding: 10px 21px;
  background-color: var(--yellow);
  color: var(--gray-dark);
  border-radius: 16px;
  transition: background-color 0.3s ease;
  z-index: 2;
  font-size: 28px;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__button {
    padding: 9px 28px;
    font-size: 16px;
    border-radius: 8px;
  }
}

.p-corporateCustomer__faq__button:hover {
  background-color: var(--yellow-light);
}

/* アコーディオンのスタイル */
.p-corporateCustomer__faq__wrapper {
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__wrapper {
    max-width: 350px;
    margin: 30px auto 0;
    row-gap: 15px;
  }
}

/* アコーディオンアイテム */
.p-corporateCustomer__faq__item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__item {
    border-radius: 8px;
  }
}

/* アコーディオンヘッダー */
.p-corporateCustomer__faq__head {
  display: flex;
  align-items: center;
  padding: 4px 25px;
  background-color: var(--white);
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__faq__head {
    padding: 4px 15px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__head {
    padding: 2px 10px;
    min-height: 52px;
  }
}

.p-corporateCustomer__faq__item.active  .p-corporateCustomer__faq__head {
  background-color: var(--yellow);
}

.p-corporateCustomer__faq__head:active, .p-corporateCustomer__faq__head:hover, .p-corporateCustomer__faq__head:focus,
.p-corporateCustomer__faq__item.active .p-corporateCustomer__faq__head:active, .p-corporateCustomer__faq__item.active .p-corporateCustomer__faq__head:hover, .p-corporateCustomer__faq__item.active .p-corporateCustomer__faq__head:focus
 {
  background-color: var(--yellow-light);
}

/* アコーディオンが開いているときのヘッダー */
.p-corporateCustomer__faq__number {
  min-width: 80px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__number {
    min-width: 65px;
  }
}

.p-corporateCustomer__faq__numberImage {
  width: auto;
  height: 36px
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__numberImage {
    height: 28px;
  }
}

.p-corporateCustomer__faq__heading {
  margin: 0 0 0 24px;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: -0.02em;
  flex-grow: 1;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__faq__heading {
    font-size: 27px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__heading {
    margin: 0 0 0 10px;
    font-size: 16px;
  }
}

/* アイコン */
.p-corporateCustomer__faq__icon {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__faq__icon {
    width: 70px;
    height: 70px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__icon {
    width: 44px;
    height: 44px;
  }
}

/* アコーディオンが開いているときのアイコン */
.p-corporateCustomer__faq__item.active .p-corporateCustomer__faq__icon {
  transform: rotate(180deg);
}


/* コンテンツ部分 */
.p-corporateCustomer__faq__content {
  padding: 0 25px 0 95px; /* 左右のpaddingのみ維持 */
  height: 0; /* 高さを0に */
  max-height: 0;
  overflow: hidden;
  background-color: var(--white);
  opacity: 0; /* 初期状態では非表示 */
  visibility: hidden; /* 初期状態では非表示 */
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s, padding 0.3s ease, height 0.3s ease;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__content {
    padding: 0 15px 0 60px;
  }
}

/* アコーディオンが開いているときのコンテンツ */
.p-corporateCustomer__faq__item.active .p-corporateCustomer__faq__content {
  position: relative;
  padding: 20px 25px 20px 95px;
  height: auto;
  max-height: 500px; /* 十分な高さを確保 */
  opacity: 1; /* 表示状態 */
  visibility: visible; /* 表示状態 */
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s linear 0s, padding 0.3s ease, height 0.3s ease;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__item.active .p-corporateCustomer__faq__content {
    padding: 10px 15px 10px 60px;
  }
}

.p-corporateCustomer__faq__answerImage {
  position: absolute;
  top: 30px;
  left: 25px;
  width: 46px;
  height: auto;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__answerImage {
    top: 15px;
    left: 15px;
    width: 35px;
  }
}

.p-corporateCustomer__faq__text, .p-corporateCustomer__faq__listItem {
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__text, .p-corporateCustomer__faq__listItem {
    font-size: 14px;
  }
}

.p-corporateCustomer__faq__list {
  margin: 28px 0;
  padding: 0 0 0 28px;
}

@media screen and (max-width: 1280px) { 
  .p-corporateCustomer__faq__list {
    margin: 24px 0;
    padding: 0 0 0 24px;
  }
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__list {
    margin: 14px 0;
    padding: 0 0 0 14px;
  }
}

.p-corporateCustomer__faq__listItem {
  font-weight: bold;
}

.p-corporateCustomer__faq__note {
  margin: 35px 0 0;
  font-size: 24px;
  color: var(--white);
  text-align: center;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__note {
    margin: 15px 0 0;
    font-size: 18px;
    text-align: left;
  }
}

.p-corporateCustomer__faq__buttonLargeWrapper {
  margin: 40px 0 0;
  display: flex;
  justify-content: center;
}

.p-corporateCustomer__faq__buttonLarge {
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  padding: 20px;
  border-radius: 16px;
  font-size: 30px;
  font-weight: bold;
  width: 100%;
  max-width: 694px;
  transition: background-color 0.3s ease;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__buttonLarge {
    padding: 13px 10px;
    font-size: 16px;
    border-radius: 8px;
    max-width: 350px;
  }
}

.p-corporateCustomer__faq__buttonIcon {
  width: 58px;
  height: auto;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__buttonIcon {
    width: 38px;
  }
}

.p-corporateCustomer__faq__buttonLarge:hover {
  background-color: var(--yellow-light);
}


.p-corporateCustomer__faq__backgroundImage {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1993px;
}

@media screen and (max-width: 767px) { 
  .p-corporateCustomer__faq__backgroundImage {
    display: none;
  }
}
