/*
Theme Name: abc-plus
*/

/* Apply now!ボタンのスタイル */
.apply-now-btn {
  font-family: "Rockwell", serif;
  display: inline-block;
  background-color: #e67e22;
  color: white;
  padding: 10px 20px;
  border: 2px solid #e67e22;
  border-radius: 15px;
  text-decoration: none;
  font-size: 26px;
  transition: background-color 0.3s, color 0.3s;
  margin-top: 30px;
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .apply-now-btn {
    font-size: 22px !important;
    padding: 10px 13px 10px !important;
    margin-top: 7px !important;
    margin-bottom: 20px;
  }
}
.apply-now-btn:hover {
  background-color: white;
  color: #e67e22;
}

/* 3列カードのスタイル */
.info-cards {
  max-width: 1000px;
  margin: 40px auto 90px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: calc(30% - 20px);
  position: relative;
}

.card:hover {
  background-color: #ebebeb;
}

.card-color-bar {
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.job-description .card-color-bar {
  background-color: #e96d23;
}

.life-in-nagoya .card-color-bar {
  background-color: #9cc53a;
}

.about-the-school .card-color-bar {
  background-color: #00ade1;
}

.card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding-left: 20px;
  text-align: left;
  position: relative;
}

.card-content h3 {
  font-family: "Rockwell", serif;
  font-size: 23px;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}

.card-content .h3-job {
  color: #b5551d;
}

.card-content .h3-life {
  color: #688426;
}

.card-content .h3-about {
  color: #007395;
}

.card-content p {
  font-family: "Corbel", "Helvetica", sans-serif;
  font-size: 20px;
  color: #333;
  line-height: 1.4;
}

/* アイコンエリアのスタイル */
.icon-area {
  display: none;
}
@media screen and (min-width: 1025px) {
  .icon-area {
    margin: 40px auto 20px auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* background-color: #f1f1f1; */
    padding: 50px;
    /* border-radius: 8px; */
  }
  .icon-card {
    text-align: center;
    flex: 1;
  }
}

.icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 100px; /* アイコンサイズを調整 */
  overflow: hidden; /* 画像がはみ出さないように */
}

.icon img {
  width: 100%;
  object-fit: cover; /* 画像をアイコン内に収める */
}

.icon-card h3 {
  font-family: "Rockwell", serif;
  font-size: 25px;
  color: #333;
  margin-bottom: 0;
}

.faqs-btn {
  font-family: "Rockwell", serif;
  display: inline-block;
  background-color: #00ade1;
  color: white;
  padding: 10px 40px;
  border: 2px solid #00ade1;
  border-radius: 15px;
  text-decoration: none;
  font-size: 26px;
  transition: background-color 0.3s, color 0.3s;
  margin-top: 20px;
  margin-bottom: 90px;
}
.faqs-btn:hover {
  background-color: white;
  color: #00ade1;
}
/* カルーセルエリアのスタイル　ここから */
.carousel-container {
  max-width: 1200px;
  margin: 40px auto 90px auto;
  padding: 100px;
  background-color: #f4f4f4;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.carousel {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden; /* 見えていない部分を非表示にする */
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: calc(100% * 18 / 3); /* アイテム数 / 表示数 */
}
.carousel-item {
  min-width: calc(101% / 3); /* 表示するアイテム数に合わせる */
  flex: 1;
  align-self: center;
  box-sizing: border-box; /* パディングやボーダーを含めたサイズ計算 */
}
.carousel img {
  display: block;
  width: 90%; /* 画像がアイテム全体に収まるように */
  height: auto;
  box-shadow: 2px 2px 10px 4px rgba(0, 0, 0, 0.4);
}
.carousel-arrow {
  width: 40px;
  height: 40px;
  background-color: #9cc53a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2; /* 矢印を上に表示 */
}
.left-arrow {
  left: 10px;
  z-index: 3; /* 左の矢印を常に最上層に表示 */
}

.right-arrow {
  right: 10px;
}
/* カルーセルエリアのスタイル　ここまで */

/* タブレット表示のスタイル調整　ここから */
@media screen and (max-width: 768px) {
  .apply-now-btn {
    border-radius: 25px;
    margin-bottom: 55px;
  }

  /* 3列カードを2行になるよう調整 */
  .info-cards {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 30px 90px 30px;
    justify-content: space-between;
  }

  .info-cards .card {
    width: 48%;
    margin-bottom: 20px;
  }

  .info-cards .about-the-school {
    width: 48%;
    order: 3;
    margin-left: auto;
    margin-right: auto;
  }

  /* FAQボタンのスタイル */
  .faqs-btn {
    font-family: "Rockwell", serif;
    display: inline-block;
    background-color: #00ade1;
    color: white;
    padding: 10px 40px;
    border: 2px solid #00ade1;
    border-radius: 25px;
    text-decoration: none;
    font-size: 25px;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 20px;
    margin-bottom: 90px;
  }
}
/* タブレット表示のスタイル調整　ここまで */

/* FAQボタンのスタイル */
.faqs-btn {
  font-family: "Rockwell", serif;
  display: inline-block;
  background-color: #00ade1;
  color: white;
  padding: 10px 40px;
  border: 2px solid #00ade1;
  border-radius: 25px;
  text-decoration: none;
  font-size: 25px;
  transition: background-color 0.3s, color 0.3s;
  margin-top: 20px;
  margin-bottom: 30px;
}
/* スマートフォン表示のスタイル調整　ここまで */

/* 修正　ここから -------------------------------------------------------------------------------------------------------------*/
body {
  margin: 0;
}

/* header ここから --------------------------------------------------------------------*/
.header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 12px !important;
  padding-bottom: 5px !important;
  padding-left: 30px;
  padding-right: 24px;
}
@media screen and (min-width: 768px) {
  .header-content {
    height: 108px;
  }
}
.logo img {
  width: 140px;
}
.l-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav ul {
    display: flex;
    flex-wrap: wrap; /* アイテムを折り返す */
    justify-content: flex-end; /* アイテムを右寄せにする */
    gap: 10px; /* アイテム間のスペース */
    list-style: none; /* リストマーカーを削除 */
    padding: 0; /* パディングをリセット */
    margin: 0; /* マージンをリセット */
  }
  .l-header__nav ul {
    display: flex;
    flex-wrap: wrap; /* アイテムを折り返す */
    justify-content: flex-end; /* アイテムを右寄せにする */
    gap: 10px; /* アイテム間のスペース */
    list-style: none; /* リストマーカーを消す */
    padding: 0; /* パディングをリセット */
    margin: 0; /* マージンをリセット */
  }
  .l-header__nav ul li {
    width: fit-content; /* li要素の幅を内容にフィットさせる */
  }
  .l-header__nav ul li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    text-align: right;
    padding-inline: 3px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__nav ul {
    display: none;
  }
}
.l-header__nav--pc {
  display: none;
}
@media screen and (min-width: 1200px) {
  .l-header__nav--pc {
    display: block;
  }
}
.l-header__right {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 121px;
  justify-content: space-between;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l-header__right {
    display: none;
  }
}
.apply-cta {
  font-family: "Rockwell", serif;
  font-size: 14px;
}
.c-button-drawer {
  background: #e96d23;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  position: relative;
}
/* 吹き出し部分 */
.c-button-drawer::after {
  content: ""; /* 吹き出しの内容 */
  position: absolute; /* 絶対位置指定 */
  bottom: -8px; /* メニューの下に配置 */
  left: 50%; /* メニューの真ん中に配置 */
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent; /* 吹き出しの左側の三角形 */
  border-right: 5px solid transparent; /* 吹き出しの右側の三角形 */
  border-bottom: 5px solid #e96d23; /* 吹き出しの底部 */
  opacity: 0; /* 初期状態で透明 */
  transition: opacity 0.3s ease; /* アニメーションの設定 */
  visibility: hidden; /* 初期状態で非表示 */
}
.c-button-drawer.show::after {
  opacity: 1; /* 表示状態で不透明 */
  visibility: visible; /* 表示状態で可視 */
}

.c-button-drawer.is-checked .c-button-drawer__line:nth-of-type(1) {
  background: #fff;
  left: 25%;
  top: 50%;
  transform: rotate(-45deg);
}
.c-button-drawer.is-checked .c-button-drawer__line:nth-of-type(2) {
  display: none;
}
.c-button-drawer.is-checked .c-button-drawer__line:nth-of-type(3) {
  background: #fff;
  left: 25%;
  top: 50%;
  transform: rotate(45deg);
}
.c-button-drawer__line {
  position: absolute;
  border-radius: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s linear, top 0.3s linear;
}
.c-button-drawer__line:nth-of-type(1) {
  left: 50%;
  transform: translateX(-50%);
  top: 7px;
}
.c-button-drawer__line:nth-of-type(2) {
  left: 50%;
  transform: translateX(-50%);
  top: 12px;
}
.c-button-drawer__line:nth-of-type(3) {
  left: 50%;
  transform: translateX(-50%);
  top: 17px;
}
ul {
  display: block;
  list-style: none; /* リストスタイルを削除 */
  margin: 0; /* マージンをリセット */
  padding: 0; /* パディングをリセット */
  unicode-bidi: normal; /* バイディレクショナルの設定をリセット */
}
.c-drawer-menu {
  max-height: 0; /* 初期状態で高さを0に設定 */
  width: 150px;
  height: 120px; /* 高さの設定はアニメーションの最大値に合わせる */
  font-family: "Rockwell", serif;
  font-size: 18.67px;
  border-top: 10px solid #e96d23;
  border-right: 1px solid #e96d23;
  border-bottom: 1px solid #e96d23;
  border-left: 1px solid #e96d23;
  background: #fff;
  border-radius: 10px;
  margin-left: auto;
  margin-right: 20px;
  padding: 10px;
  position: absolute; /* ドロップダウンの位置を調整するために絶対位置指定 */
  top: 80%; /* ボタンの下に表示 */
  right: 0; /* ボタンの右側に合わせる */
  z-index: 2000; /* メニューが他の要素の上に表示されるようにする */
  overflow: hidden; /* 内容がはみ出さないようにする */
  transition: max-height 0.3s ease, opacity 0.3s ease; /* アニメーションの設定 */
  opacity: 0; /* 初期状態で透明 */
}
.c-drawer-menu.show {
  max-height: 120px; /* アニメーションの最大高さに合わせる */
  opacity: 1; /* アニメーションで透明度を上げる */
}
.c-drawer-menu ul {
  list-style: none; /* デフォルトのリストスタイルを無効にする */
  padding: 0;
  margin: 0;
}
.c-drawer-menu li {
  padding: 5px 0; /* アイテム間に5pxのスペースを追加 */
  position: relative; /* 擬似要素のために相対位置を設定 */
}
.c-drawer-menu li:not(:last-child)::after {
  content: ""; /* 擬似要素の内容 */
  display: block; /* ブロック要素として表示 */
  height: 1px; /* 線の高さ */
  width: 150px;
  background: #e96d23; /* 線の色 */
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px; /* アイテムの下に線を配置 */
}
@media screen and (min-width: 768px) {
  .header-content {
    padding-right: 63px;
  }
  .logo img {
    width: 100%;
    padding-top: 0;
    padding-left: 10px;
  }
  .l-header__nav {
    display: block;
    padding-top: 0;
  }
  .l-header__nav ul li {
    letter-spacing: -0.04em;
  }
}
/* header ここまで --------------------------------------------------------------------*/

/* middle__slider-area ここから -------------------------------------------------------*/
.box-shadow {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 -10px 20px rgba(0, 0, 0, 0.2);
}
.middle__slider-area {
  background-color: #f1f1f1;
}
.middle__slider {
}
.swiper {
}
.middle__swiper {
  padding-top: 20px;
  padding-bottom: 20px;
}
.swiper-wrapper {
  text-align: center;
  align-items: center;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.middle-card__image img {
  width: 100px;
}
/* 左矢印 */
.middle__prev::before {
  position: absolute;
  content: ""; /* 矢印の文字 */
  background-image: url(./img/arrow_left.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
  left: 40px;
}
/* 右矢印 */
.middle__next::before {
  position: absolute;
  content: ""; /* 矢印の文字 */
  background-image: url(./img/arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
  right: 40px;
}
.middle__prev::after,
.middle__next::after {
  display: none;
}
.middle__next {
}
@media screen and (min-width: 768px) {
  .middle__slider-area {
  }
  .middle__slider {
    padding-left: 60px;
    padding-right: 60px;
    margin-inline: auto;
  }
  .swiper {
  }
  .middle__swiper {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (min-width: 1025px) {
  .middle__slider-area {
  }
  .middle__slider {
    width: auto;
    padding-left: 100px;
    padding-right: 100px;
  }
  .swiper {
  }
  .middle__swiper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* 1024px以上の画面幅の場合、Swiperを非表示にし、flexを適用 */
@media screen and (min-width: 1025px) {
  #js-middle-swiper {
    display: none; /* Swiperを非表示にする */
  }

  /* Swiper以外の要素に対してflexのスタイルを設定 */
  .middle__slider {
    display: flex;
    justify-content: center; /* 要素を中央に揃える */
    align-items: center; /* 要素を垂直に中央に揃える */
    /* 必要に応じて他のスタイルも追加 */
  }
}

/* 1024px以下の画面幅の場合、Swiperを表示 */
@media screen and (max-width: 1024px) {
  #js-middle-swiper {
    display: block; /* Swiperを表示する */
  }

  .middle__slider {
    display: block; /* Swiperコンテナのデフォルト表示 */
  }
}

/* middle__slider-area ここまで ------------------------------------------------------------------*/

/* bottom__slider-area ここから ------------------------------------------------------------------*/
.bottom__slider-area {
  background-color: #f1f1f1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 -10px 20px rgba(0, 0, 0, 0.2);
}
.bottom__swiper {
  padding-top: 20px;
  padding-bottom: 20px;
}
.swiper-wrapper {
  text-align: center;
  align-items: center;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-card__image1 img,
.bottom-card__image3 img,
.bottom-card__image4 img,
.bottom-card__image7 img,
.bottom-card__image8 img,
.bottom-card__image12 img,
.bottom-card__image16 img {
  width: 94px;
}
@media screen and (min-width: 768px) {
  .bottom-card__image1 img,
  .bottom-card__image3 img,
  .bottom-card__image4 img,
  .bottom-card__image7 img,
  .bottom-card__image8 img,
  .bottom-card__image12 img,
  .bottom-card__image16 img {
    width: 120.189px;
  }
}
@media screen and (min-width: 1024px) {
  .bottom-card__image1 img,
  .bottom-card__image3 img,
  .bottom-card__image4 img,
  .bottom-card__image7 img,
  .bottom-card__image8 img,
  .bottom-card__image12 img,
  .bottom-card__image16 img {
    width: 190px;
  }
}
.bottom-card__image2 img,
.bottom-card__image5 img,
.bottom-card__image6 img,
.bottom-card__image9 img,
.bottom-card__image10 img,
.bottom-card__image11 img,
.bottom-card__image13 img,
.bottom-card__image14 img,
.bottom-card__image15 img {
  width: 117.65px;
}
@media screen and (min-width: 768px) {
  .bottom-card__image2 img,
  .bottom-card__image5 img,
  .bottom-card__image6 img,
  .bottom-card__image9 img,
  .bottom-card__image10 img,
  .bottom-card__image11 img,
  .bottom-card__image13 img,
  .bottom-card__image14 img,
  .bottom-card__image15 img {
    width: 170.98px;
  }
}
@media screen and (min-width: 1024px) {
  .bottom-card__image2 img,
  .bottom-card__image5 img,
  .bottom-card__image6 img,
  .bottom-card__image9 img,
  .bottom-card__image10 img,
  .bottom-card__image11 img,
  .bottom-card__image13 img,
  .bottom-card__image14 img,
  .bottom-card__image15 img {
    width: 240px;
  }
}
/* 左矢印 */
.bottom__prev::before {
  position: absolute;
  content: ""; /* 矢印の文字 */
  background-image: url(./img/arrow_left.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
  left: 40px;
}
/* 右矢印 */
.bottom__next::before {
  position: absolute;
  content: ""; /* 矢印の文字 */
  background-image: url(./img/arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
  right: 40px;
}
.bottom__prev::after,
.bottom__next::after {
  display: none;
}

.bottom__next {
}
@media screen and (min-width: 768px) {
  .bottom__slider-area {
  }
  .bottom__slider {
    width: 648px;
    padding-left: 60px;
    padding-right: 60px;
    margin-inline: auto;
  }
  .swiper {
  }
  .bottom__swiper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .bottom__slider-area {
  }
  .bottom__slider {
    width: auto;
    padding-left: 100px;
    padding-right: 100px;
  }
  .swiper {
  }
  .bottom__swiper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* bottom__slider-area ここまで ------------------------------------------------------------------*/

/* footer ここまで --------------------------------------------------------------------*/
.footer {
  padding-top: 30px;
}
.footer-logo img {
  width: 180px;
  margin-bottom: 16px;
}
.footer-links {
  padding-top: 10px;
}

/* footer ここまで --------------------------------------------------------------------*/

/* 残り全て ここから --------------------------------------------------------------------*/
.hidden-tb {
  display: block;
}
.hidden-sp {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  color: #c3c3c3;
  width: 30px; /* ボタンの幅を指定 */
  height: 30px; /* ボタンの高さを指定 */
  top: 55%;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: 50%;
  }
}
.info-cards .card {
  width: auto;
  margin-bottom: 0;
}
.info-cards {
  padding-inline: 44px;
  margin-top: 0;
  margin-bottom: 30px;
  gap: 26px;
}
.apply-now-btn {
  font-size: 14px;
  padding: 3px 5px 1px;
  margin-bottom: 20px;
}
.card-content h3 {
  font-size: 16px;
  margin-top: 0;
  padding-top: 8px;
}
.card-content p {
  font-size: 16px;
  margin-block: 0;
  padding-right: 12px;
  padding-bottom: 20px;
  letter-spacing: 0.03em;
}
.card-image {
  height: 170px;
}
.middle-card h3 {
  font-size: 14px;
  margin-block: 0;
}
.introduction--what h2 {
  margin-top: 10px;
}
.faqs-btn {
  font-size: 14px;
  padding: 3px 18px 1px;
  margin-bottom: 20px;
}
.about-the-school-img img {
  object-fit: fill;
}

@media screen and (min-width: 768px) {
  .card-wrap {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .job-description,
  .life-in-nagoya,
  .about-the-school {
    width: 43.5% !important;
    height: 433px;
  }
  .card-image {
    height: 270px !important;
  }
  .card-content {
  }
  .card-content h3 {
    font-size: 25px;
    padding-top: 15px;
    padding-right: 16px;
    letter-spacing: -0.03em;
  }
  .card-content p {
    font-size: 20px;
    letter-spacing: -0.03em;
    line-height: 1.3;
    padding-top: 5px;
    padding-left: 10px;
  }
  .info-cards {
    margin-bottom: 62px;
  }
  .middle-card__image img {
    width: 200px;
  }
  .middle__swiper {
    padding-inline: 59px;
  }
  .middle__next::before {
    width: 45px;
    height: 45px;
    top: -6px;
    right: -11px;
  }
  .middle__prev::before {
    width: 45px;
    height: 45px;
    top: -6px;
    left: -11px;
  }
  .middle-card h3 {
    font-size: 20px;
  }
  .middle__slider {
    padding-inline: 100px;
  }
  .middle__swiper {
    padding-inline: 30px;
  }
  .introduction--what h2 {
    margin-top: 40px;
    letter-spacing: -0.06em;
  }
  .this-means {
    letter-spacing: -0.04em !important;
  }
  .faqs-btn {
    font-size: 20px !important;
    padding: 10px 50px 10px !important;
    margin-top: 0 !important;
  }
  .have-any {
    padding-bottom: 20px !important;
  }
  .introduction--what {
    padding-bottom: 40px !important;
  }
  .bottom__swiper {
    padding-top: 57px !important;
    padding-bottom: 49px !important;
  }
  .bottom__slider {
    width: 590px;
    padding-left: 0;
    padding-right: 0;
    margin-inline: auto;
  }
  .bottom__prev::before {
    width: 45px;
    height: 45px;
    left: -11px;
    top: 0;
  }
  .bottom__next::before {
    width: 45px;
    height: 45px;
    right: -11px;
    top: 0;
  }
  .footer {
    padding-top: 60px;
  }
  .footer-logo img {
    width: 220px !important;
    margin-bottom: 50px;
  }
  .footer-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between !important;
  }
  .footer-links a {
    padding-inline: 8px;
  }
  .hidden-sp {
    display: block;
  }
  .hidden-tb {
    display: none;
  }
  .swiper-button-prev {
    top: 60%;
    color: #aaa;
  }
  .swiper-button-next {
    top: 60%;
    color: #aaa;
  }
  .box-shadow {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 -10px 20px rgba(0, 0, 0, 0.2);
  }
  .introduction--what {
    padding-bottom: 0 !important;
    margin-top: 30px !important; /* box-shadows修正 */
  }
}

/* PC ここかから --------------------------------------------------------------------*/

/* header ここから --------------------------------------------------------------------*/

@media screen and (min-width: 1024px) {
  .l-header__nav {
    display: none;
  }
  .l-header__nav--pc {
    display: block;
  }
  .logo img {
    width: 100%;
    padding-top: 10px;
    padding-left: 15px;
  }
  nav ul li a {
    padding: 0 12px;
    font-size: 19px;
    letter-spacing: -0.01em;
  }
  .header-content {
    padding-top: 0 !important;
  }
  .introduction h2 {
    font-size: 50px !important;
  }
  .icon-area {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 38px !important;
    padding-bottom: 0 !important;
    justify-content: center !important;
    margin: 0 !important;
  }
  .middle-card h3 {
    margin-top: 0 !important;
  }
  .icon-card h3 {
    font-size: 25px;
    margin-top: -7px !important;
    margin-bottom: 0;
    line-height: 1.2;
  }
  .icon-card {
    width: 324px !important;
  }
  .apply-now-btn {
    font-family: "Rockwell", serif;
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 10px 20px;
    border: 2px solid #e67e22;
    border-radius: 15px;
    text-decoration: none;
    font-size: 26px !important;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 30px;
    margin-bottom: 90px;
  }
  .middle__slider {
    padding-bottom: 50px !important;
  }
  .faqs-btn {
    font-family: "Rockwell", serif;
    display: inline-block;
    background-color: #00ade1;
    color: white;
    padding: 10px 40px;
    border: 2px solid #00ade1;
    border-radius: 15px;
    text-decoration: none;
    font-size: 26px !important;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 10px !important;
    margin-bottom: 90px;
  }
  .introduction--what {
    padding-bottom: 0 !important;
    margin-top: 30px !important; /* box-shadows修正 */
  }
  .bottom__prev::before {
    width: 50px;
    height: 50px;
    left: -10px;
    top: -50px;
  }
  .bottom__next::before {
    width: 50px;
    height: 50px;
    right: -10px;
    top: -50px;
  }
  .bottom__slider {
    width: auto;
    max-width: 1000px !important;
    padding-inline: 50px !important;
  }
  .bottom__swiper {
    padding-left: 10px;
    padding-right: 10px;
  }
  .introduction--what {
    margin-top: 20px;
  }
}
/* レスポンシブ ここかから --------------------------------------------------------------------*/

.info-cards .card {
  margin-bottom: 27px;
  gap: 0;
}
.info-cards {
  gap: 0;
}
.middle__prev::before,
.middle__next::before {
  top: -4px;
}

/*印刷設定*/
@media print {
  .swiper-wrapper {
    transform: none !important;
  }
  .swiper-slide {
    display: none;
  }
  .swiper-slide-active {
    display: block;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
.top-card__image {
  width: 100vw;
}

