@charset "utf-8";

.page-container {
  font-size: clamp(16px, 1.04vw, 20px);
  small {
    display: block;
    font-size: 0.8em;
    text-align: justify;
  }
  figcaption {
    margin-top: 3px;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  button, input {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: clamp(16px, 1.03vw, 19px);
    cursor: pointer;
    border: none;
  }
}

.dummy[aria-hidden="true"] {
  visibility: hidden
}
.text-red{
  color: #ce2525;
}
.fz-16{
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 0.83vw, 1.6rem);
}
.font-shippori-mincho{
  font-family: "Shippori Mincho", serif;
}
.font-allura{
  font-family: "Allura", cursive;
}
.lazy_image-wrap{
  position: relative;
  width: 100%;
  height: 0;
}
.lazy_image{
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: auto;
}
.list-style-rhombus{
  position: relative;
  padding-left: calc( 26 / 1920 * 100vw );
  &::before{
    content: "◆";
    position: absolute;
    left: 0;
    top: 0;
    color: #c0a667;
  }
}
@media (max-width: 1236px){
  .list-style-rhombus{
    padding-left: 20px;
  }
}
@media (max-width: 768px){
  body {
    padding-bottom: 55px;
  }
  .lazy_image{
    max-width: 100%;
  }
}

.main-header {
  position: relative;
  z-index: 1;
}
.main-visual{
  position: relative;
}
.main-title{
  img{
    max-width: 100%;
  }
}
.main-title-link{
  position: absolute;
  top: 30px;
  right: calc( 655 / 1920 * 100vw );
  transition: all 0.3s ease-in-out;
  img{
    width: calc(204 / 1920 * 100vw);
    max-width: calc(204 / 1920 * 100vw);
  }
}
@media (min-width: 769px){
  #mainContents{
    min-width: 1236px;
  }
}
@media (min-width: 1920px){
  .main-title-link {
    right: calc(655 / 2000 * 100vw);
  }
}
@media (max-width: 1236px){
  .main-title{
    img{
      width: auto;
    }
  }
}
@media (min-width: 769px){
  .main-title-link {
    &:hover{
      filter: brightness(1.03);
      scale: 1.01;
    }
  }
}
@media (max-width: 768px){
  .main-title-link {
    top: 5px;
    right: calc(150 / 750 * 100vw);
    img {
      width: calc(175 / 750 * 100vw);
      max-width: calc(175 / 750 * 100vw);
    }
  }
}

/* animation */
.main-title-link{
  transform-origin: center bottom;
  animation: floating 1.8s ease-in-out infinite alternate-reverse;
}
@media (min-width: 769px){
  @keyframes floating {
    0% {
      transform: translateY(-13%);
    }

    100% {
      transform: translateY(13%);
    }
  }
}
@media (max-width: 768px) {
  @keyframes floating {
    0% {
      transform: translateY(-6%);
    }

    100% {
      transform: translateY(6%);
    }
  }
}
.waves{
  width: 100%;
  height: fit-content;
  position: absolute;
  bottom: -20px;
  aspect-ratio: 12 / 1;
}
@media (max-width: 1620px){
  .waves {
    bottom: -15px;
  }
}
a.button, button.button, input.button{
  color: #ffffff;
}
.button{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin: auto;
  outline: 1px solid #ffffff;
  outline-offset: -3px;
  span{
    position: relative;
    z-index: 1;
  }
  &::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s;
  }
}
.button.-navy{
  background-color: rgba(13, 54, 104, .8);
  &::before{
    background: linear-gradient(91.5deg, rgba(13, 54, 104, .8) 0%, rgba(113, 160, 216, .8) 50%, rgba(13, 54, 104, .8) 100%);
  }
}
.button.-orange{
  background-color: rgba(217, 101, 33, .8);
  &::before{
    background: linear-gradient(91.5deg, rgba(217, 101, 33, .8) 0%, rgba(248, 202, 176, .8) 50%, rgba(217, 101, 33, .8) 100%);
  }
}
.button.-red{
  background-color: rgba(206, 37, 37, .8);
  &::before{
    background: linear-gradient(91.5deg, rgba(206, 37, 37, .8) 0%, rgba(248, 202, 176, .8) 50%, rgba(206, 37, 37, .8) 100%);
  }
}
.button.-navy2{
  background-color: rgba(0, 93, 140, .8);
  &::before{
    background: linear-gradient(91.5deg, rgba(0, 93, 140, .8) 0%, rgba(123, 190, 221, 0.8) 50%, rgba(0, 93, 140, .8) 100%);
  }
}
@media (min-width: 769px){
  .button{
    max-width: 240px;
    width: 80%;
    min-width: calc( 1236px * (240 / 1620) );
    line-height: 1.2;
    &:hover{
      &::before{
        opacity: .8;
      }
    }
  }
}
@media (max-width: 768px){
  .button{
    width: 40px;
    height: auto;
    padding: 15px 0;
    line-height: 1.2;
    font-size: 1.5rem;
    font-family: "Shippori Mincho", serif;
    text-align: center;
    writing-mode: vertical-rl;
    span{
      position: relative;
      left: -1px;
    }
  }
  .page-container {
    button.button {
      font-size: 1.5rem;
    }
  }
}

.page-container {
  margin-top: -65px;
  background: #f7f1da url(/cruise/asuka/asuka-charter/images/bg-contents-top.webp) no-repeat center top / 100%;
}
.sidebar-sticky {
  display: grid;
}
@media (min-width: 769px){
  .page-container{
    display: flex;
    min-height: 100vh;
  }
  .sidebar {
    max-width: 300px;
    width: calc( 300 / 1920 * 100vw );
    min-width: 236px;
    padding-top: 160px;
    padding-bottom: 30px;
    background: #91c9eb;
    background: linear-gradient(rgba(145,201,235,1),rgba(145,201,235,0));
    text-align: center;
  }
  .sidebar-sticky {
    position: sticky;
    top: 30px;
    gap: 20px;
    height: calc(100vh - 60px); /* 画面高 - padding上下30 */
    overflow: hidden;
    padding: 0 7px;
  }
  .scroll-box{
    height: 100%;
    overflow-y: auto;
    padding: 0 18px;
    scrollbar-width: thin;
    scrollbar-color: rgb(18, 86, 135, .3) transparent;
    -webkit-overflow-scrolling: touch; /* スマホ対策 */
    overscroll-behavior: contain;      /* スクロール伝播防止 */
  }
}
@media (max-width: 768px){
  .page-container{
    background-size: 200%;
    button{
      font-family: "Shippori Mincho", serif;
    }
  }
  .sidebar{
    position: static;
  }
  .sidebar-button-wrap{
    position: fixed;
    left: auto;
    right: -5px;
    /* top: 190px; */
    width: fit-content;
    background: transparent;
    z-index: 10;
    transition: transform 0.2s ease;
    will-change: transform;
  }
  .sidebar-sticky {
    gap: 5px;
  }
  .sidebar-title{
    display: none;
  }
}

.side-nav-link{
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2rem, 1.25vw, 2.8rem);
  font-weight: bold;
}
.side-nav-text{
  color: #0d3668;
  font-size: clamp(1.2rem, 0.83vw, 1.4rem);
  line-height: 1.4;
}
@media (min-width: 769px){
  .side-nav-link{
    &:hover{
      color: rgb(109, 24, 132);
    }
  }
}
@media (max-width: 768px){
  .side-nav-text {
    display: none
  }
  .sidebar-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #91c9eb;
    width: 100%;
    margin-bottom: 0;
    z-index: 5;
  }
  .side-nav-list {
    padding: 0 10px;
      height: 55px;
  }
  .side-nav-item {
    height: 100%;
  }
  .side-nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    text-align: center;
    line-height: 1.1;
    font-size: 1.6rem;
  }
  .button-pagetop {
    bottom: 65px;
    right: 42px;
    width: 50px;
    height: 50px;
  }
}

.main-contents{
  flex: 1;
  padding-top: 150px;
}
.main-contents-inner{
  max-width: 1520px;
  padding: 0  calc( 50 / 1920 * 100vw ) 120px;
  margin-inline: auto;
}
.main-lead{
  display: flex;
  flex-direction: column;
  color: #0d3668;
  font-size: 5.4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  text-align: center;
  line-height: 2;
}
.main-lead-first-line{
  font-size: 0.64em;
}
.main-lead-label{
  margin-right: 20px;
  padding: 3px 20px 5px 20px;
  background-color: #0d3668;
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.77em;
}
@media (min-width: 1237px) and (max-width: 1620px){/* max 1920 - 300 */
  .main-lead{
    font-size: calc( 54 / 1620 * 100vw );
    white-space: nowrap;
  }
}
@media (min-width: 769px) and (max-width: 1236px){
  .w-1236{
    padding-left: calc(1236px * (20 / 1920));
    padding-right: calc(1236px * (20 / 1920));
  }
  .main-contents-inner{
    padding-left: calc(1236px * (50 / 1920));
    padding-right: calc(1236px * (50 / 1920));
  }
  .main-lead{
    font-size: 3.9rem;
  }
}
@media (min-width: 769px){
  .w-1236 {
    max-width: 1276px;
    /* 1236 + 160 */
    padding-left: calc(20 / 1920 * 100vw);
    padding-right: calc(20 / 1920 * 100vw);
    margin-inline: auto;
  }
}
@media (max-width: 768px){
  .main-contents{
    padding-top: 120px;
    overflow-x: hidden;
  }
  .main-contents-inner{
    padding-left: 20px;
    padding-right: 20px;
  }
  .main-lead{
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .main-lead-first-line{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
  }
  .main-lead-second-line{
    letter-spacing: 0.1em;
  }
  .main-lead-label{
    width: fit-content;
  }
}
.event{
  width: fit-content;
  margin: 80px auto 30px;
  scroll-margin-top: 50px;
  line-height: 1.8;

  box-shadow: 0 0 15px rgba(0, 0, 0, .2);
  padding: 60px 0;
  background: rgba(255, 255, 255, .4);
  dt{
    font-family: "Shippori Mincho", serif;
    font-size: 2em;
    text-align: center;
    letter-spacing: 0.1em;
  }
}
.event-list{
  width: fit-content;
  margin-inline: auto;
  font-size: 1.2em;
  padding: 30px;
  border-top: 1px solid #ded0ae;
  border-bottom: 1px solid #ded0ae;
  a{
    color: rgba(206, 37, 37, 1);
  }
}
.consult_session{
    padding: 40px 0;
    .event-list{
      padding: 15px 30px;
    }
}
@media (min-width: 769px){
  .event{
    width: 960px;
    dd{
      font-size: 1.1em;
    }
  }
  .event-list{
    a{
      margin-left: 25px;
    }
    a:hover{
      text-decoration: underline;
    }
  }
}
@media (max-width: 1300px){
  .event{
    width: 87%;
  }
}
@media (max-width: 768px){
  .event{
    width: 90%;
    margin-inline: auto;
    padding: 40px 30px;
    dt{
      font-size: 1.4em;
    }
  }
  .event + .event{
    margin-top: 30px;
  }
  .event-list{
    display: grid;
    gap: 10px;
    width: 90%;
    padding: 20px 0;
    font-size: 1.6rem;
    p{
      text-align: center;
    }
    a{
      display: block;
    }
  }
  .consult_session{
    padding: 30px;
    .event-list{
          gap: 5px;
      padding: 15px 0;
    }
  }
}

/* section
---------------------------- */
.section{
  padding-top: 100px;
}
.main-contents-heading{
  position: relative;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 70px;
  text-align: center;
  line-height: 1;
}
.h2-first_line{
  display: block;
  /* font-size: 5.6rem; */
  font-size: clamp(3.6rem, 2.81vw, 5.6rem);
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  text-transform: capitalize;
}
.heading-initial{
  padding-right: 10px;
  font-size: 12rem;
  font-family: "Allura", cursive;
  font-weight: normal;
}
.h2-first_line.-first-one{
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #09468f, #9cd8fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.h2-first_line.-second-one{
  position: absolute;
  top: 2px;
  left: auto;
  color: #ffffff !important;
}
.h2-second_line{
  display: block;
  margin-top: -10px;
  color: #0a468f;
  font-size: 2.4rem;
  font-size: clamp(1.7rem, 1.25vw, 2.4rem);
  font-weight: bold;
}
@media (max-width: 768px){
  .section{
    padding-top: 60px;
  }
  .main-contents-heading{
    margin-bottom: 50px;
  }
  .main-contents-inner{
    padding-bottom: 80px;
  }
  .h2-first_line{
    font-size: 3rem;
  }
  .heading-initial{
    font-size: 7rem;
  }
  .h2-second_line{
    margin-top: -5px;
  }
}

/* ポイント
---------------------------- */
.section-point-heading{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 65px;
  background: #ded0ae;
  color: #333333;
  font-size: 4.2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
  outline: 1px solid #ffffff;
  outline-offset: -5px;
  text-align: center;
}
.point-item {
  display: flex;
  gap: clamp(40px, calc((100vw - 1400px) * (20 / 520) + 40px), 60px);
}
.point-item + .point-item {
  margin-top: 80px;
}
.point-heading{
  position: relative;
  margin-bottom: 65px;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  &::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 10px;
    background-color: #000000;
  }
}
.point-label{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.point-title{
  padding-left: calc( 180 / 1920 * 100vw );
  font-size: clamp(2.8rem, 1.87vw, 3.6rem);
  white-space: nowrap;
}
.point-text{
  line-height: 1.8;
}
.point-images{
  display: grid;
  gap: 30px;
}
.point-image-wrap {
  padding-bottom: calc( 407 / 612 * 100%);
}
@media (min-width: 769px){
  .section-point-heading{
    max-height: 100px;
    height: calc( 100 / 1620 * 100vw );
    min-height: calc(1236px * (100 / 1620));
    mask-image: linear-gradient(to right, transparent, #ded0ae 15%, #ded0ae 85%, transparent);
  }
  .image-set-2{
    .point-description{
      position: sticky;
      top: 25%;
      height: 100%;
    }
  }
  .point-description{
    flex: 1;
    padding-top: 80px;
    padding-bottom: 30px;
    padding-left: 30px;
  }
  .point-label{
    width: calc( 170 / 1920 * 100vw );
    min-width: calc(1236px * (150 / 1920));
  }
  .point-images{
    flex: 0 0 49.9%;
    max-width: 617px;
  }
  .point-item:nth-of-type(even){
    flex-direction: row-reverse;
    .point-description{
      padding-right: 30px;
      padding-left: 0;
    }
  }
}
@media (min-width: 1920px){
  .point-label{
    width: 170px;
  }
  .point-title{
    padding-left: 180px;
  }
  .point-text{
    padding-left: 2.3rem;
  }
}
@media (min-width: 1237px) and (max-width: 1620px){/* max 1920 - 300 */
  .section-point-heading{
    font-size: calc( 42 / 1920 * 100vw );
  }
  .point-label {
    width: calc(160 / 1920 * 100vw);
  }
  .point-title {
    padding-left: calc(170 / 1920 * 100vw);
  }
}
@media (min-width: 769px) and (max-width: 1236px){
  .section-point-heading{
    font-size: 2.9rem;
  }
  .point-title{
    padding-left: calc(1236px * (160 / 1920));
  }
  .point-images{
    width: calc(1236px * (617 / 1920));
  }
}
@media (max-width: 768px){
  .section-point-heading{
    width: calc( 100vw + 30px );
    margin-left: -30px;
    height: 80px;
    font-size: 2rem;
    line-height: 1.2;
  }
  .point-item{
    flex-direction: column;
  }
  .point-heading{
    width: fit-content;
    margin-bottom: 50px;
  }
  .point-title{
    padding-left: 100px;
    font-size: 2rem;
  }
  .point-label{
    width: 85px;
  }
}

/* ツアー紹介
---------------------------- */
.tour-introduction{
  background: #ffffff url(/cruise/asuka/asuka-charter/images/bg-tour-introduction.webp) no-repeat center top / 100%;
}
.tour-introduction-lead{
  line-height: 2.2;
  text-align: justify;
}
.tour-introduction-heading{
  margin-bottom: 30px;
  color: #0d3668;
  font-size: clamp(4.1rem, 3.33vw, 6.4rem);
  font-weight: bold;
  text-align: center;
  text-shadow: 4px 4px 5px #ffffff ,
  -4px 4px 5px #ffffff ,
  4px -4px 5px #ffffff ,
  -4px -4px 5px #ffffff;
}
.tour-introduction-details{
  margin-top: 90px;
  dt{
    display: inline;
  }
  dd{
    display: inline;
  }
}
  /* .tour-introduction-image-wrap{
    figcaption {
      padding-top: calc(324 / 570 * 100%);
      font-size: 0.91em;
    }
  } */
.price-table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOSスムーズスクロール */
}
.price{
  position: relative;
}
.price-table{
  table-layout: fixed;
  width: 100%;
  min-width: 100%;
  font-weight: bold;
  td{
    text-align: center;
  }
  th{
    font-weight: bold;
  }
}
.price-table-title{
  height: 50px;
  background-color: #0d3668;
  text-align: center;
  color: #ffffff;
  font-size: clamp(2rem, 1.45vw, 2.8rem);
  font-weight: bold;
  line-height: 1;
}
.early-application {
  .price-table-title {
    background-color: #ce2525;
  }
}
.price-table-title-label{
  height: 30px;
  line-height: 31px;
  margin-left: 20px;
  padding: 0 20px;
  background-color: #ffffff;
  border-radius: 15px;
  color: #ce2525;
  font-size: 0.8em;
}
.price-table-title-label{
  background-color: #ffffff;
}
.price-table-row:nth-of-type(1){
  background-color: #fbfaf3;
}
.price-table-row:nth-of-type(2){
  background-color: #f7ecbd;
  .price-table-head{
    text-align: center;
    letter-spacing: -0.05em;
    span{
      display: block;
      margin-top: 3px;
      font-size: 0.75em;
    }
  }
}
.price-table-row:nth-of-type(2){
  background-color: #f7ecbd;
}
.price-table-row:nth-of-type(3){
  background-color: #faf3d4;
}
.price-table-row:nth-of-type(4){
  background-color: #fef9eb;
}
.early-application{
  .price-table-row:nth-of-type(2){
    background-color: #f9c6c6;
  }
  .price-table-row:nth-of-type(3){
    background-color: #fbdddd;
  }
  .price-table-row:nth-of-type(4){
    background-color: #fef4f4;
  }
}
.price-table-head{
  padding: 10px 0;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.05em;
  .tracking-tight{
    letter-spacing: -0.08em;
  }
}
.price-table-head:first-of-type{
  width: 11%;
}
.price-table-head:nth-of-type(n+2){
  width: calc( (100% - 150px) / 9 );
}
.price-table-head {
  .tab-hide {
    display: none;
  }
}
.fukidashi {
  position: absolute;
  top: calc( -145 / 1920 * 100vw );
  right: calc( 100 / 1920 * 100vw);
  background: #ce2525;
  color: white;
  padding: 1em 1.2em;
  border-radius: 50%;
  display: inline-block;
  max-width: 300px;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}
.fukidashi::after {
  content: '';
  position: absolute;
  left: 32px;
  bottom: -19px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 0px solid transparent;
  border-right: 25px solid transparent;
  border-top: 20px solid #ce2525;
  transform: rotate(20deg);
}
#information{
  margin-top: -50px;
  padding-top: 50px;
}
@media (min-width: 1920px){
  .price-table-head:first-of-type{
    width: 150px
  }
  .fukidashi {
    top: -145px;
    right: 100px;
  }
}
@media (min-width: 769px){
  .tour-introduction-image-wrap{
    flex: 0 0 45.3%;
    max-width: 570px;
    /* padding-bottom: calc( 316 / 1236 * 100%); */
  }
  .price-table{
    font-size: 0.9em;
    td{
      padding: 20px 0;
    }
  }
  .price-table-head:nth-of-type(n+2){
    font-size: 0.85em;
  }
}
@media (min-width: 769px) and (max-width: 1500px){
  .price-table-head:first-of-type {
    width: 13%;
  }
  .price-table-head {
    .tab-hide {
      display: block;
    }
  }
  .fukidashi {
    top: calc(-170 / 1920 * 100vw);
  }
}
@media (max-width: 1250px) {
  .price-table-head {
    letter-spacing: -0.08em;
  }
  .price-table-head:first-of-type {
    width: 120px;
  }
}
@media (max-width: 1236px) {
  .fukidashi {
      top: -115px;
      right: 80px;
    }
}
@media (max-width: 768px){
  .tour-introduction-heading{
    font-size: 2.5rem;
  }
  .tour-introduction-details{
    margin-top: 50px;
    .list-style-rhombus + span{
      padding: 0 20px;
    }
  }
  /* .tour-introduction-image-wrap{
    padding-bottom: calc( 316 / 570 * 100%);
  } */
  .price-table-title{
    height: auto;
    padding: 10px;
  }
  .price-table {
    min-width: 1500px;
    td {
      padding: 10px 0;
    }
  }
  .price-table-head:first-of-type {
    width:135px;
  }
  .price-table-head:nth-of-type(n+2) {
    width: calc((100% - 135px) / 9);
  }
  .fukidashi {
    top: -95px;
    right: -15px;
    font-size: 1.4rem;
  }
}

/* スケジュール
---------------------------- */
.schedule{
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(209, 236, 248, 1));
}
.schedule-lead{
  color: #0d3668;
  font-size: clamp(2.35rem, 1.87vw, 3.2rem);
}
.schedule-container{
  position: relative;
}
.schedule-item{
  display: flex;
  padding: 28px 0;
  background: #ffffff;
}
.schedule-item-inner{
  display: flex;
  align-items: center;
  width: 93.5%;
  max-width: 1156px;
  margin: auto;
}
.schedule-day {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 140px;
  background-color: #cd3737;
  border-radius: 50%;
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(3rem, 2.3vw, 4.4rem);
  font-weight: bold;
  line-height: 1.3;
  aspect-ratio: 1 / 1;
  span {
    font-size: 0.55em;
    font-weight: normal;
    white-space: nowrap;
    letter-spacing: -0.05em;
  }
}
.schedule-day.-sat {
  background-color: #0069b2;
}
.schedule-detail{
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 85px;
}
.schedule-date{
  font-family: "Shippori Mincho", serif;
  font-size: 2.8rem;
  font-size: clamp(2rem, 1.45vw, 2.8rem);
  font-weight: bold;
  text-align: center;
}
.schedule-port-wrap{
  display: flex;
  align-items: center;
  text-align: center;
}
.schedule-port{
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2.7rem, 1.87vw, 3.6rem);
  font-weight: bold;
}
.schedule-time{
  display: block;
  padding: 1px 8px 0;
  background-color: #0069b2;
  color: #ffffff;
  border-radius: 5px;
}
.schedule-description{
  line-height: 1.6;
}
.schedule-description-head{
  padding: 3px 8px;
  border: 1px solid #0a468f;
  border-radius: 20px;
  color: #0a468f;
  font-size: 0.9em;
}
.schedule-description-text{
  display: flex;
  .-left{
    width: fit-content;
    white-space: nowrap;
  }
}
.schedule-labels{
  display: grid;
}
.schedule-label{
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  line-height: 1.3;
  span{
    font-size: 0.9em;
    font-weight: normal;
    vertical-align: middle;
  }
}
.schedule-label {
  &.-first-line{
    background-color: #bdece4;
  }
  &.-second-line {
    background-color: #f6f1db;
  }
}
.schedule-ber {
  position: absolute;
  width: calc(80 / 1920 * 100vw);
  max-width: 80px;
  min-width: 60px;
  background-color: #fffbb6;
  color: #cd3737;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2.7rem, 1.66vw, 3.6rem);
  font-weight: bold;
  letter-spacing: 0.3em;
}
@media (min-width: 1920px){
  .schedule-day{
    width: 140px;
  }
  .schedule-ber {
    left: 190px;
  }
}
@media (min-width: 769px){
  .schedule-day {
    flex: 0 0 12.1%;
    &::after{
      content: "";
      position: absolute;
      bottom: -160%;
      display: block;
      width: calc(8 / 1920 * 100vw);
      max-width: 8px;
      min-width: 4px;
      height: 160%;
      background-color: #bbbbbb;
    }
  }
  .schedule-item:last-of-type{
    .schedule-day {
      &::after{
        display: none;
      }
    }
  }
  .schedule-date {
    flex: 0 0 13%;
  }
  .schedule-port-wrap {
    flex: 0 0 19%;
    flex-direction: column;
  }
  .schedule-description {
    flex: 1;
    padding: 0 30px;
  }
  .schedule-labels {
    flex: 0 0 14%;
    gap: 5px;
  }
  .schedule-label{
    span{
      display: block;
    }
  }
  .schedule-ber {
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 97%;
    border-radius: calc(40 / 1920 * 100vw);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
@media (max-width: 1236px){
  .schedule-ber {
    border-radius: 30px;
  }
}
@media (max-width: 768px){
  .schedule-lead {
    font-size: 1.9rem;
  }
  .schedule-list{
    max-width: 550px;
    margin-inline: auto;
    padding: 20px 5px;
    background-color: #ffffff;
  }
  .schedule-item{
    padding: 0;
  }
  .schedule-item-inner{
    width: 100%;
  }
  .schedule-detail{
    flex-wrap: wrap;
    padding: 0px 25px;
  }
  .schedule-day{
    width: 70px;
    min-width: 70px;
    font-size: 2.2rem;
  }
  .schedule-date, .schedule-port{
    font-size: 2.4rem;
  }
  .schedule-port-wrap{
    gap: 5px;
    padding-left: 15px;
  }
  .schedule-time {
    position: relative;
    top: 2px;
    padding: 4px 8px;
    font-size: 1.2rem;
  }
  .schedule-description{
    width: 100%;
    margin-top: 10px;
    font-size: 1.5rem;
  }
  .schedule-labels{
    display: flex;
    gap: 5px;
    width: 100%;
    margin-top: 12px;
    font-size: 0.8em;
  }
  .schedule-label{
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 5px 9px;
  }
  .schedule-ber {
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    padding-top: 24px;
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
    border-radius: 0;
    &::after{
      content: "";
      position: absolute;
      top: 135px;
      left: 38px;
      display: block;
      width: 4px;
      height: 74%;
      background-color: #bbbbbb;
    }
  }
}

/* 客室タイプ
---------------------------- */
.cabin-plan-heading {
  .h2-first_line.-first-one {
    background: linear-gradient(to bottom, #614800, #bea464);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .h2-second_line {
    color: #654b01;
  }
}
.cabin-plan-item.-normal{
  display: flex;
  flex-direction: column;
  .cabin-description{
    flex: 1;
    margin-top: 25px;
  }
  .cabin-image-wrap{
    padding-bottom: calc( 300 / 450 * 100%);
  }
}
.cabin-plan-item.-main{
  width: 100%;
  .cabin-image-container{
    flex: 0 0 52.2%;
    max-width: 750px;
  }
}
.cabin-plan-item.-benefit{
  max-width: 700px;
}
.cabin-image-container{
  position: relative;
}
.cabin-image-label{
  position: absolute;
  top: -10px;
  left: -10px;
  display: flex;
  gap: 5px;
  width: 100%;
  height: calc( 70 / 1920 * 100vw );
  min-height: 50px;
  z-index: 1;
  img{
    width: auto;
    height: 100%;
  }
}
.royal_suite{
  position: absolute;
  bottom: -30px;
  right: -30px;
}
.cabin-label-wrap{
  flex: 1;
  align-items: flex-start;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 3px;
}
.cabin-label{
  padding: 6px 5px 3px;
  background-color: #ded0ae;
  line-height: 1;
  font-size: 0.8em;
}
.cabin-heading{
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 20px;
  font-family: "Shippori Mincho", serif;
  border-bottom: 1px solid #000000;
  line-height: 1;
}
.cabin-heading-first_line{
  display: block;
  font-size: 0.95em;
}
.cabin-heading-second_line{
  display: block;
  margin-top: 10px;
  /* font-size: 3.2rem; */
  font-size: clamp(2.4rem, 1.67vw, 3.2rem);
  font-weight: bold;
}
.cabin-plan-item.-main{
  .cabin-heading{
    margin-bottom: 25px;
    .cabin-heading-first_line{
      font-size: clamp(1.6rem, 1.11vw, 2.1rem);
    }
    .cabin-heading-second_line{
      font-size: clamp(3.2rem, 2.22vw, 4.2rem);
    }
  }
}
.cabin-plan-item.-benefit{
  position: relative;
  display: flex;
  gap: 20px;
  padding: 55px calc( 40 / 1920 * 100vw );
  background-color: #ffffff;
  &::before, &::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 97%;
    height: 30px;
    background: url(/cruise/asuka/asuka-charter/images/bg-decorative-border.webp) no-repeat center top / 100%;
  }
  &::before{
    top: 10px;
  }
  &::after{
    bottom: 10px;
  transform: scaleY(-1);
  }
}
.cabin-benefit-dt{
  font-family: "Shippori Mincho", serif;
    font-size: clamp( 1.8rem, 1.2vw, 2.2rem );
}
.cabin-benefit-first-line{
padding: 1px 10px 3px;
  background: linear-gradient(to right, rgba(222, 208, 174, 1) 50%, rgba(222, 208, 174, 0));
  font-size: 2rem;
  font-size: clamp( 1.4rem, 0.83vw, 1.6rem );
  line-height: 1.2;
}
.cabin-benefit-second-line{
  margin-top: 5px;
  color: #866812;
  font-weight: bold;
  white-space: nowrap;
          line-height: 1.4;
}
.cabin-benefit-dd{
    margin-top: 15px;
}
.cabin-benefit-description{
  font-size: clamp( 1.5rem, 0.93vw, 1.8rem );
  line-height: 1.4;
  text-align: justify;
  small{
    margin-top: 10px;
    line-height: 1.3;
  }
}
.cabin-benefit-dd{
  position: relative;
}
.cabin-benefit-image-wrap{
  flex: 0 0 40.2%;
}
.cabin-service-list{
  font-size: 0.9em;
}
.cabin-service-title{
  padding: 0 10px;
  background-color: #686868;
  color: #ffffff;
  white-space: nowrap;
}
.cabin-service-text{
  font-size: 0.9em;
}
@media (min-width: 769px){
  .cabin-plan-list{
    row-gap: 80px
  }
  .cabin-plan-item.-normal{
    width: calc( 33.3333% - calc( 25 / 1920 * 100vw ));
  }
  .cabin-plan-item.-main{
    gap: 75px;
    padding: 0 30px;
    margin-bottom: 20px;
    .cabin-image-wrap {
      padding-bottom: calc(473 / 710 * 100%);
    }
  }
  .cabin-plan-item.-benefit{
    width: calc( 50% - 10px);
    /* .cabin-image-wrap {
      padding-bottom: calc(317 / 700 * 100%);
    } */
  }
}
@media (max-width: 1500px){
  .cabin-plan-item.-benefit{
    flex-direction: column;
  }
}
@media (min-width: 769px) and (max-width: 1500px){
  .cabin-plan-item.-main{
    gap: 50px;
    align-items: center;
  }
  .cabin-benefit-image-wrap{
    width: 60%;
    min-width: none;
    margin: auto;
    padding-bottom: calc(244 / 560 * 100%);
  }
}
@media (min-width: 769px) and (max-width: 1385px){
  .cabin-heading-first_line {
    font-size: 0.85em;
    white-space: nowrap;
  }
}
@media (min-width: 769px) and (max-width: 1236px){
  .cabin-plan-item.-normal{
    width: calc( 33.3333% - 15px );
  }
  .cabin-plan-item.-benefit{
    padding-left:  calc(1236px * (40 / 1920));
    padding-right:  calc(1236px * (40 / 1920));
  }
}
@media (max-width: 768px){
  .cabin-plan-item.-normal {
    .cabin-description {
      margin-top: 20px;
    }
  }
  .cabin-plan-item.-main{
    gap: 0;
    .cabin-image-wrap{
      padding-bottom: calc( 310 / 460 * 100%);
    }
    .cabin-description {
      margin-top: 20px;
    }
    .cabin-heading{
      margin-top: 20px;
      margin-bottom: 20px;
    }
  }
  .cabin-plan-item.-benefit{
    flex-direction: column;
    padding: 40px calc( 50 / 750 * 100vw );
    &::before, &::after{
      width: 94.2%;
      background-image: url(/cruise/asuka/asuka-charter/images/bg-decorative-border-sp.webp);
    }
    .cabin-benefit-image-wrap{
      max-width: 570px;
      margin-inline: auto;
      padding-bottom: calc( 442 / 570 * 100%);
    }
  }
  .cabin-benefit-second-line{
    font-size: 2.2rem;
  }
  .cabin-benefit-description{
    font-size: 1.6rem;
  }
  .cabin-heading{
    margin-top: 15px;
  }
  .cabin-image-label{
    top: -10px;
    left: -10px;
    height: 60px;
  }
  .cabin-image-wrap{
    .lazy_image{
      max-width: 100%;
    }
  }
  .cabin-label{
    padding: 6px 5px;
  }
  .cabin-plan-item .dummy{
    display: none;
  }
}
