@charset "utf-8";
/* CSS Document */

/* 共通 ここから -------- */
:root {
  --text-color: #333333;
  --primary-color: #3b3c3d;
  --sub-color: #cccccc;
  --bg-color: #f6f6f6;
  --bg2-color: #ebeced;
  --gray-light: #cccccc;
  --gray-color: #aaaaaa;
  --gray-dark: #777777;
  --font-gothic: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  --font-mincho: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝",
    YuMincho, "ＭＳ 明朝", serif;
}

html {
  font-size: 62.5%;
  /* 1rem = 10px */
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

body {
  color: #333;
  background-color: var(--bg-color);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
}

.font-mincho {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", YuMincho,
    "ＭＳ 明朝", serif;
  /* ヒラギノ明朝の指定 */
}

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

.tb {
  display: none;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

.tbpc {
  display: none;
}

.cont_inner {
  margin: 0 auto;
  padding: 40px 4vw;
  width: 100%;
}

.link_txt {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

@media screen and (min-width: 480px) {

  /*　画面サイズが480pxからはここを読み込む　*/
  .sp {
    display: none;
  }

  .tb {
    display: block;
  }
}

@media screen and (min-width: 768px) {

  /*　画面サイズが768pxからはここを読み込む　*/
  .tbpc {
    display: block;
  }

  .cont_inner {
    padding: 64px 4vw;
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {

  /*　画面サイズが1024pxからはここを読み込む　*/
  .tb {
    display: none;
  }

  .pc {
    display: block;
  }

  .cont_inner {
    padding: 96px 20px;
    max-width: 1360px;
  }

  a.hover:hover {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    transition-duration: 0.3s;
  }
}

/* クラスにjs__inviewを付けるとフェードイン */

.js__inview {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.js__inview.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 大見出し */
.heading_main {
  color: var(--primary-color);
  font-family: var(--font-mincho);
  font-size: 24px;
  text-align: center;
  line-height: 1.3;
}

.heading_main span {
  display: block;
  color: var(--text-color);
  font-size: 14px;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .heading_main {
    font-size: 40px;
    text-align: center;
  }

  .heading_main span {
    font-size: 16px;
  }
}

/* カセットカルーセル　ここから -------- */

/* icon_ship_tag */

.swiper-slide {
  position: relative;
}

.icon_ship_tag {
  position: absolute;
  top: 8px;
  left: 8px;
}

.icon_ship_tag span {
  padding: 3px 8px;
  color: var(--primary-color);
  background-color: hsla(0, 0%, 100%, 0.9);
  font-size: 12px;
  font-feature-settings: "palt";
  border: solid 1px var(--primary-color);
  border-radius: 4px;
}

.icon_ship_tag span+span {
  margin-left: 3px;
}

/* カセットカルーセル ここまで -------- */

.block-mgt {
  margin-top: 32px;
}

.cont__lead {
  margin-top: 32px;
}

.mgt-em {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .block-mgt {
    margin-top: 64px;
  }

  .cont__lead {
    margin-top: 64px;
    text-align: center;
  }
}

/* 読み込みが終わるまで表示しない */
#main {
  display: none;
}

/* 共通 ここまで -------- */

/* header ここから -------- */

/* :root {


  --header-height: 80px;
  --sticky-height: 60px;
} */

/* --- ヘッダーの基本設定 --- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: #fff;
  z-index: 1000;
  box-sizing: border-box;
  transition: transform 0.4s ease, background-color 0.3s ease;
  /* アニメーションを滑らかに */
}

.header.is-hide {
  transform: translateY(-100%);
}

.header.is-show {
  transform: translateY(0);
  background-color: rgba(56, 57, 57, 0.9);
  /* 追従時は少し透過させる */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header_inner {
  padding: 16px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_icm p {
  font-size: 12px;
}

.logo_icm img {
  width: auto;
  height: 20px;
}

/* --- ハンバーガーボタン（常に表示） --- */
.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ✕印アニメーション */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* --- ナビゲーションメニュー --- */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(41, 41, 42, 0.9);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.4s ease-in-out;
}

.nav-menu.active {
  right: 0;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin: 8px 0;
}

.nav-menu a {
  position: relative;
  display: inline-block;
  padding: 4px 24px 4px 0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

@media screen and (min-width: 480px) {
  .nav-menu li {
    margin: 16px 0;
  }

  .nav-menu a {
    font-size: 16px;
  }
}

/* --- 矢印 --- */
.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(135deg);
}

/* --- 下線アニメーション用 --- */
.nav-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.4s ease;
}

/* --- PCホバー時のみ発火 --- */
@media (hover: hover) {
  .nav-menu a:hover::before {
    width: 100%;
  }
}

/* header ここまで -------- */

/* mv ここから -------- */
#mv {
  position: relative;
}

.mv_cont {
  width: 100%;
  padding: 0 1vw;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 2;
}

.mv_logo_img {
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
}

.mv_ttl {
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 6.75vw;
  text-align: center;
  margin-top: 16px;
  font-feature-settings: "palt";
}

.mv_link a {
  position: relative;
  display: block;
  /* width: 100% ; */
  max-width: 280px;
  background-color: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-weight: bold;
  border-radius: 50px;
  padding: 16px 32px;
  margin: 16px auto 0;
  text-align: center;
  transition: all 0.3s;
  letter-spacing: 0.1em;
}

.mv_link a::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-right: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: 20px;
}

@media screen and (min-width: 768px) {
  .mv_cont {
    top: 50%;
  }

  .mv_ttl {
    font-size: 48px;
  }
}

.mv_txt {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 32px;
  margin: auto;
  padding: 0 8vw;
  color: #fff;
  font-size: 12px;
  /* font-weight: bold; */
  text-align: left;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .mv_txt {
    font-size: 14px;
    text-align: center;
    bottom: 64px;
  }
}

.mv_bg {
  position: relative;
  width: 100%;
  height: 92vh;
  overflow: hidden;
}

.mv-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 8s ease;
}

.mv-slide.is-active {
  opacity: 1;
  transform: scale(1.15);
  z-index: 1;
}

/* mv ここまで -------- */

/* エクスプローラ ジャーニーの魅力 ここから -------- */

/* エクスプローラ ジャーニーの魅力 ここまで -------- */

/* ニュース＆プロモーション ここから -------- */
.news__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news__list--item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sub-color);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news__list--date {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.news__list--label {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1px 8px;
  width: fit-content;
  font-size: 1.2rem;
}

.list--item__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media screen and (min-width: 1024px) {
  .news__list {
    width: fit-content;
    max-width: 784px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
  }

  .news__list--item {
    padding-bottom: 24px;
  }
}

/* ニュース＆プロモーション ここまで -------- */

/* クルーズ料金に含まれるもの ここから -------- */

.include_img {
  margin: 0 auto;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .include_img {
    max-width: 960px;
    margin-top: 64px;
  }
}

/* クルーズ料金に含まれるもの ここまで -------- */

/* おすすめクルーズ ここから -------- */

.bestSelling_flex_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 64px;
  column-gap: 2%;
  row-gap: 24px;
  justify-content: flex-start;
}

.bestSelling_flex_bar {
  width: 1px;
  background-color: var(--gray-light);
}

.bestSelling_flex_item {
  background-color: #fff;
  position: relative;
  width: 23.5%;
}

.bestSelling_flex_item.is-hidden {
  display: none;
}

.bestSelling_rank {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--text-color);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
}

.bestSelling_box {
  background-color: #fff;
  padding: 16px;
}

.bestSelling_title {
  font-weight: bold;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .bestSelling_title {
    min-height: 3em;
    line-height: 1.5;
    /* 3行以上になった場合に「...」で省略したい場合（任意） */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    margin-bottom: 8px;
  }
}

.bestSelling_tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 8px;
}

.bestSelling_tag li {
  background-color: var(--bg2-color);
  border: 1px solid var(--gray-light);
  border-radius: 40px;
  font-size: 10px;
  padding: 4px 10px;
}

.bestSelling_date {
  margin-top: 8px;
  font-size: 14px;
}

.bestSelling_price {
  margin-top: 4px;
  font-weight: bold;
  color: var(--gray-dark);
}

.bestSelling_bar {
  background-color: var(--gray-light);
  height: 1px;
  margin-top: 16px;
}

.bestSelling_cruise {
  margin-top: 16px;
  font-size: 14px;
}

.bestSelling_btn {
  display: block;
  font-size: 14px;
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 16px 32px;
  margin: 16px auto 0;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.bestSelling_btn::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: 20px;
}

.bestSelling_btn:hover {
  opacity: 0.7;
}

.bestSelling_btn_more {
  display: block;
  font-size: 14px;
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 16px 32px;
  margin: 48px auto 0;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.bestSelling_btn_more:hover {
  opacity: 0.7;
}

#search .section_head {
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .bestSelling_flex_wrap {
    display: flex;
    margin-top: 64px;
    column-gap: 4%;
    row-gap: 28px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .bestSelling_flex_item {
    flex: initial;
    position: relative;
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .bestSelling_flex_wrap {
    flex-direction: column;
    margin-top: 40px;
    gap: 32px;
  }

  .bestSelling_flex_bar {
    width: auto;
    height: 1px;
  }

  .bestSelling_btn_more {
    margin-top: 32px;
  }

  .bestSelling_flex_item {
    flex: initial;
    position: relative;
    width: 100%;
  }
}

.photo_inner {
  position: relative;
  width: 100%;
  /* 親要素の幅に合わせる */
  overflow: hidden;
}

.aspect-ratio-container {
  position: relative;
  width: 100%;
  padding-top: 75%;
}

.aspect-ratio-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* おすすめクルーズ ここまで -------- */

/* 客船紹介 ここから -------- */
.ship__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ship__list--item {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.ship__list--img {
  overflow: hidden;
}

.ship__list--img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.ship__list--info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.ship__list--title {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 2rem;
}

.ship__list--sub-title {
  display: block;
  font-size: 0.7em;
}

.ship__list--detail {
  font-size: 1.2rem;
}

.ship__list--link-btn {
  display: block;
  font-size: 1.4rem;
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 16px 32px;
  margin: 16px auto 0;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.ship__list--link-btn::after {
  content: "";
  width: 26px;
  height: 26px;
  background-image: url(../img/icon_pdf.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.ship__list--link-btn.ebook::after {
  background-image: url(../img/icon_ebook.png);
}

.ship_info__comment {
  margin-top: 32px;
  padding: 16px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 1024px) {
  .ship__list--item {
    flex-direction: row;
    /* ← column → row に変更 */
    align-items: stretch;
    /* ← 高さを揃える */
  }

  .ship__list--img {
    width: 60%;
    overflow: hidden;
  }

  .ship__list--img img {
    height: 100%;
    /* ★ これが重要 */
    object-fit: cover;
    aspect-ratio: auto;
    /* ← 削除または無効化 */
  }

  .ship__list--info {
    width: 40%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  .ship__list--title {
    font-size: 2.4rem;
  }

  .ship_info__comment {
    padding: 24px 40px;
    text-align: center;
    width: fit-content;
    margin: 40px auto 0;
  }

  .ship__list--link-btn:hover {
    opacity: 0.7;
  }
}

/* 客船紹介 ここまで -------- */

/* 主な客室 ここから -------- */
.cont__lead {
  line-height: 2;
}

.suites__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.suites__list--head {
  font-family: var(--font-mincho);
  margin-bottom: 24px;
}

.suites__list--head-en {
  font-size: 2rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--sub-color);
}

.suites__list--head-jp {
  display: block;
  padding-top: 8px;
  font-size: 1.2rem;
}

.suites__comment {
  margin-top: 32px;
  padding: 16px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

@media screen and (min-width: 768px) {
  .cont__lead {
    font-size: 1.6rem;
  }

  .suites__list {
    gap: 64px;
  }

  .suites__list--head-en {
    font-size: 2.8rem;
  }

  .suites__list--head-jp {
    font-size: 1.4rem;
  }

  .suites__comment {
    margin-top: 64px;
    padding: 24px 32px;
  }
}

.swiper-slide {
  position: relative;
}

.cap_suites {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 10px;
  color: #fff;
}

@media screen and (min-width: 1024px) {}

/* その他情報 ここから -------- */
#other_info {
  background-color: #ffff;
}

.other_info__head {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  width: fit-content;
}

.other_info__link {
  position: relative;
}

.other_info__link span,
.acc__btn span {
  position: absolute;
  background-color: var(--bg2-color);
  height: 20px;
  width: 20px;
  border-radius: 100%;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
}

.other_info__link span::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #1a1a1a;
  border-right: 2px solid #1a1a1a;
  position: absolute;
  right: 40%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.other_info_block {
  padding: 32px 0;
}

/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {
  display: none;
}

.acc__btn {
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.acc__btn span::before,
.acc__btn span::after {
  content: "";
  background-color: #1a1a1a;
  position: absolute;
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}

.acc__btn span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.acc__btn.open span::before {
  transform: translate(-50%, -50%);
}

.acc__body {
  margin-top: 16px;
  background-color: var(--bg2-color);
  border-radius: 16px;
  padding: 16px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.conditions__block:not(:first-child) {
  margin-top: 1em;
}

.conditions__list li {
  text-indent: -1em;
  padding-left: 1em;
  /* position: relative; */
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.conditions__block--note {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .other_info__head {
    font-size: 2.4rem;
  }

  .other_info__link span,
  .acc__btn span {
    height: 28px;
    width: 28px;
    right: -50px;
  }

  .other_info__link span::after {
    width: 12px;
    height: 12px;
  }

  .acc__btn span::before,
  .acc__btn span::after {
    width: 16px;
  }

  .acc__body {
    padding: 40px;
  }

  .faq__list--item {
    font-size: 1.6rem;
  }

  .conditions__block {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1024px) {}

/* その他情報 ここまで -------- */

/* 動画 ここから -------- */
.video__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.video__list--head {
  margin-top: 4px;
}

@media screen and (min-width: 768px) {
  .video__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .video__list--item {
    width: calc((100% - 32px) / 2);
  }
}

@media screen and (min-width: 1024px) {
  .video__list {
    gap: 56px;
  }

  .video__list--item {
    width: calc((100% - 112px) / 3);
  }
}

/* YouTubeサムネイルをモーダルウィンドウで再生する */
.youtube_modal {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
}

.youtube_modal iframe,
.youtube_modal a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* YouTubeチャンネル遷移用 */
.youtube_channel {
  background-color: #fff;
  /* border: solid 1px var(--primary-color); */
  border-radius: 4px;
  padding: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.youtube_channel_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.youtube_channel_logo {
  width: 120px;
  height: auto;
}

.youtube_channel_name {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.3;
}

.youtube_channel_btn {
  display: block;
  font-size: 14px;
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 16px 32px;
  margin: 8px auto 0;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

@media screen and (min-width: 768px) {
  .youtube_channel {
    padding: 48px;
  }

  .youtube_channel_info {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
  }

  .youtube_channel_logo {
    width: 160px;
  }

  .youtube_channel_name {
    font-size: 28px;
  }

  .youtube_channel_btn {
    margin: 16px auto 0;
  }

  .youtube_channel_btn:hover {
    opacity: 0.7;
  }
}

/* 動画 ここまで -------- */

/* パンフレット ここから -------- */
.brochures__list {
  display: flex;
  gap: 24px;
}

.brochures__list--item {
  width: calc((100% - 24px) / 2);
}

.brochures__list--head {
  margin-top: 8px;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .brochures__list {
    gap: 72px;
    justify-content: center;
  }

  .brochures__list--item {
    max-width: 250px;
  }
}

/* メディアクエリ設定 ここから -------- */

@media screen and (min-width: 480px) {
  /*　画面サイズが480pxからはここを読み込む　*/
}

@media screen and (min-width: 768px) {
  /*　画面サイズが768pxからはここを読み込む　*/
}

@media screen and (min-width: 1024px) {
  /*　画面サイズが1024pxからはここを読み込む　*/
}

/* メディアクエリ設定 ここまで -------- */