/* Alternative fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@400;500;700&display=swap');


:root {
    /* colors */
    --black-color: #111111;
    --bg-color: #ffffff;
    --white-color: #ffffff;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: "Gothic A1", Meiryo, sans-serif;
    font-style: normal;
}

html{
    font-family: "Gothic A1", Meiryo, 'Noto Sans JP' ,sans-serif;
}

body{
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* fonts */
.corporate-logo-bold-font{
    font-family: corporate-logo-ver2, Meiryo ,sans-serif;
    font-weight: 700;
    font-style: normal;
}

.dnp-shuei-shogomincho-std-bold-font{
    font-family: dnp-shuei-shogomincho-std, Meiryo , sans-serif;
    font-style: normal;
    font-weight: 700;
}

.ms-pgothic-font{
    font-family: 'ＭＳ Ｐゴシック', Meiryo , sans-serif;
    font-style: normal;
}

.yu-mincho-font{
    font-family: 'Yu Mincho', Meiryo , sans-serif;
    font-style: normal;
}


/* -------- * ---------- */


/* --------- NAV --------- */

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background-color: #df1a76;
    transition: opacity 0.3s, position 1s;
    z-index: 1000;
    transition: 0.5s;
}

header.sticky{
    background-color: rgb(223, 26, 118, 0.5);
    color: #ffffff;
}


ul.nav__links {
    padding: 20px 5%;
    display: flex;
    justify-content: space-evenly;
    list-style: none;
}

ul.nav__links[data-visible="true"]{
    transform: translateX(0%);
}

.nav__links li {
    padding: 0 30px;
    background-color: transparent;
}

.nav__links a{
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.mobile-nav-toggle{
    display: none;
}

.nav__links li.mobile-only-link{
  display: none;
}

@media only screen and (max-width:920px){
  .nav__links li{
    padding: 0;
  }
}

@media only screen and (max-width:650px){
  .nav__links a{
    font-size: 16px;
  }
}

@media only screen and (max-width: 540px) {

    .nav__links{
        position: fixed;
        inset: 0 0 0 0;
        background-color: #df1a76;
        flex-direction: column;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 350ms ease-out;
        padding: 0;
    }

    .nav__links li {
        background-color: transparent;
        border-bottom: #ffffff solid 2px; 
        width: 100%;
        padding-bottom: 5px;
        margin-bottom: 20px;
    }

    .nav__links li.mobile-only-link{
      display: block;
    }

    .mobile-nav-toggle{
        z-index: 9999;
        background-image: url("images/hamburger-menu.svg");
        background-repeat: no-repeat;
        display: block;
        position: fixed;
        top: 2rem;
        right: 2rem;
        background-color: transparent;
        border: 0;
        width: 2.5rem;
        aspect-ratio: 1;
    }

    .mobile-nav-toggle[aria-expanded=true]{
        background-image: url("images/x-icon.svg");
        display: block;
        position: fixed;
        top: 2rem;
        left: 2rem;
    }

    ul.nav__links[data-visible="true"]{
      transform: translateX(0%);
      justify-content: unset;
      padding: 25% 5% 20px 5%;
      display: flex;
      flex-direction: column;
      list-style: none;
  }
}


/* --------- * --------- */


/* --------- Section: Home --------- */
.home-background{
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    z-index: -1;
}

#event-title-id{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

#event-title-id img{
  width: 100px;
  height: 100px;
  position: absolute;
  left: 10%;
}

#event-title-id p{
  font-size: 36px;
  color: #777777;
  line-height: 43.2px;
  letter-spacing: 1px;
  font-weight: 700;
  font-family: "Gothic A1", sans-serif;
}


#event-date-id, .reservation-period{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    flex-direction: column;
}

#event-date-id{
  background-color: rgb(89, 88, 87);
}

#event-date-id .event-date p br{
  display: none;
}

.event-date{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.event-date:first-child{
  margin-bottom: 20px;
}

.spacer{
    margin: 20px;
}

.event-date p{
  font-family: "Gothic A1", sans-serif;
  letter-spacing: 4px;
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.event-date p:first-child{
  font-size: 36px;
}

/* INCLUSIONS SECTION */

.inclusions{
    background-color: rgb(255, 255, 255);
    width: 100%;   
}

.inclusions-wrapper{
    padding: 43.5px 20px;
    margin: 0 auto;
    max-width: 870px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.card .card-image{
    width: 180px;
    height: 120px;
}

.card-heading-wrapper{
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-heading{
    color: #df1a76;
    font-weight: 700;
    font-size: 16px;
}

.card-heading .diamond{
    font-size: 16px;
}

.card-content, .card-content-2{
    font-size: 14px;
    font-weight: 500;
}

.reservation-period{
    background-color: #df1a76;
    font-weight: bold;
}

.reservation-heading{
    margin-bottom: 15px;
}

.reservation-period p{
    letter-spacing: 4px;
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-period p:last-child br{
  display: none;
}

.box{
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -4px;
}

/* TOP media query */

@media only screen and (max-width: 790px){
  #event-title-id p{
    font-size: 25px;
    line-height: 35px;
  }

  .event-date p:first-child, .reservation-period p{
    font-size: 25px;
  }

  .event-date p{
    font-size: 14px;
  }
}

@media only screen and (max-width: 740px){
  .inclusions-wrapper{
    flex-direction: column;
  }

  .card:not(:last-child){
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 540px){
  #event-date-id .event-date p br{
    display: block;
  }
}

@media only screen and (max-width: 600px){
  .reservation-period p:last-child br{
    display: block;
  }
}

@media only screen and (max-width: 620px){
  #event-title-id{
    flex-direction: column;
  }

  #event-title-id img{
    position: initial;
    margin-bottom: 20px;
  }

  .event-date{
    align-items: flex-start;
    width: 100%;
  }

  .event-date p{
    text-align: justify;
  }

}

@media only screen and (max-width: 420px) {
    .emblem{
        width: 60px;
        position:absolute;
        top: 10px;
        left: 50px;
    }

    .event-title-wrapper .event-title{
        width: 340px;
        position: absolute;
        left: 400px;
        bottom: 50px;
    }

    .spacer{
        margin: 5px;
    }

    .event-date p:first-child{
      font-size: 20px;
      margin-bottom: 10px;
    }

    .inclusions-wrapper{
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .reservation-period{
        padding: 20px;
    }
    
    .reservation-period p{
      font-size: 20px;
    }

    .reservation-heading{
        margin-bottom: 10px;
    }

    .box{
        font-size: 15px;
    }


}

/* ----- Appointment ----- */
.reservation-process-section{
    margin-top: 60px;
    padding: 0 20px;
}

.appointment-subheading p{
    font-weight: 600;
    font-size: 1.25rem;
}

.schedule-of-appointment{
    max-width: 890px;
    margin: 0 auto;
}

.schedule-of-appointment p{
    font-family: トガリテ, Meiryo, sans-serif;
    font-style: normal;
    font-weight: 600;
    color: rgb(65, 78, 125);
}

.sched-heading{
    font-size: 2.27rem;
    border-bottom: 5px solid rgb(17, 17, 17);
    width: fit-content;
    padding-bottom: 6px;
    display: flex;
    align-items: center;
}

.schedule-of-appointment .sched-subheading{
    margin-top: 10px;
    font-size: 1.26rem;
}

.steps-wrapper{
    margin: 40.62px 195.84px;
    max-width: 757.71px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.step-item{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 18px;
}

.step-number{
    min-width: 170px;
    max-width: 170px;
    height: 131.05px;
    border-radius: 50%;
    background-color: #df1a76;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.step-number p{
    color: rgb(255, 255, 255);
    font-size: 1.25rem;
    font-weight: 700;
}

.step-arrow{
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.step-arrow .arrow-step-down{
  width: 44.1108px;
  height: 55.1033px; 
}

.step-details{
    min-width: 340px;
    min-height: 113.6808px;
    max-width: 571.2px;
    width: 100%;
    background-color: rgb(248, 246, 207, 0.5);
    padding: 20px 10px 20px 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.step-details p{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8rem;
}

/* appointment query */

@media only screen and (max-width: 640px){
  .step-details{
    min-width: unset;
  }
  .step-details p{
    font-size: 14px;
  }

  .step-number p{
    font-size: 16px;
  }
}


@media only screen and (max-width: 550px) {

  .reservation-process-section{
    margin-top: 40px;
  }
  .appointment-subheading{
    margin: 10px 0 22px 0;
  }

  .appointment-subheading p{
    font-size: 0.8rem;
  }

  .schedule-of-appointment{
    margin-left: 40px;
  }
  .sched-heading{
    font-size: 1.5rem;
  }
  
  .schedule-of-appointment .sched-subheading{
    margin-top: 10px;
    font-size: 1rem;
  }

  .steps-wrapper{
    padding: 0;
  }

  .step-item{
    position: relative;
    margin-bottom: 5px;
  }

  .step-number{
    min-width: 96px;
    max-width: 96px;
    height: 80px;
  }
  
  .step-number p{
    font-size: 0.7rem;
  }

  .step-details{
    min-width: unset;
    min-height: 100px;
    max-width: unset;
    width: 100%;
    padding: 15px 10px 10px 20px;
    z-index: -1;
  }

  .step-details p{
      font-size: 9.5px;
      line-height: 1rem;
  }

  .step-arrow .arrow-step-down{
      width: 33px;
      height: 44px; 
  }
  .whole-accordion a.question p{
      font-size: 14px;
  }
}


/* ---------- Section: ツアープラン - Tour Plan --------- */
section#ツアープラン{
  background-color: #df1a76;
  width: 100%;
}

section#ツアープラン .tab-button-heading{
  background: #000000;
  width: 50%;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  margin-bottom: 81px;
  border: none;
  cursor: pointer;
  background-image: linear-gradient(-135deg, #FFF 5px, transparent 0);
  /* background-image: linear-gradient(-135deg, #FFF 5px, transparent 0),
                    linear-gradient(135deg, #FFF 5px, transparent 0),
                    linear-gradient(-45deg, #FFF 5px, transparent 0),
                    linear-gradient(45deg, #FFF 5px, transparent 0); */
  border-right: 5px solid white;
  /* border-left: 2px solid white; */
  border-bottom: 5px solid white;
}

section#ツアープラン .tab-button-heading.active{
  background: transparent;
  cursor: initial;
  background-image: linear-gradient(-135deg, #FFF 5px, transparent 0);
  /* background-image: linear-gradient(135deg, #FFF 5px, transparent 0),
                    linear-gradient(-135deg, #FFF 5px, transparent 0); */
  border-bottom: 5px solid #df1a76;
}

img.bus-icon{
    max-width: 60px;
    width: 100%;
    height: auto;
    margin-right: 35px;
}

.tab-wrapper{
  width: 100%;
  display: flex;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tourplan-heading{
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

section#ツアープラン .group-accordion{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
}

.trip-option{
    max-width: 800px;
    width: 100%;
    height: auto;
    background-color: rgb(255, 255, 255);
    border-radius: 0 0 20px 20px;
    margin-bottom: 55px;
}

.trip-heading{
    padding: 31px 27px 23px 27px;
    background-color: rgb(81, 81, 81);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trip-heading p{
    font-size: 20px;
    font-family: "Gothic A1", sans-serif;
    color: #fff;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1px;
}

.trip-heading p:last-child{
  color: #ff0000;
  padding: 20px 10px;
  background: #fff;
}

.notice{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 15px 0;
  font-size: 20px;
  color: #ff0000;
  font-weight: 400;
}

.trip-details{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 25px 47px 25px;
}

.trip-details ul{
  width: 100%;
  list-style-type: disc;
}

.trip-details ul li{
  display: flex;
  font-size: 20px;
  font-weight: 500;
  font-family: "Gothic A1", sans-serif;
  letter-spacing: 1px;
  line-height: 24px;
}

.trip-details ul li:not(:last-child){
  margin-bottom: 20px;
}

.trip-details ul li span:first-child{
  width: 18%;
}

.trip-details ul li span:last-child{
  margin-left: 5px;
}

.trip-details ul li span:last-child br:first-child{
  display: none;
}

.expand-details{
  padding: 0 15px;
}

.trip-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.trip-buttons a, .trip-buttons button, .collapse-button{
  border-radius: 20px;
  position: relative;
  padding: 15px 35px;
  font-size: 20px;
  font-family: "Gothic A1", sans-serif;
  cursor: pointer;
}

button.expand-button{
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: 0.4s;
}

button .blue-arrow, a span .white-arrow, .collapse-button .blue-arrow{
  width: 30px;
  height: auto;
}

.trip-buttons a{
  background: #00AA22;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-right: 5px;
  border: 2px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.trip-buttons button{
  background: #fff;
  border: 2px solid #40ADD3;
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 5px;
  justify-content: center;
}

.trip-buttons button span, .trip-buttons a span{
  position: absolute;
  left: 8%;
  height: 100%;
  display: flex;
  align-items: center;
}

.trip-buttons a .white-arrow {
  fill: white;
  stroke: none;
  transition: fill 0.3s ease, stroke 0.3s ease; 
}

.trip-buttons a:hover {
  background-color: white;
  color: #00AA22; 
  border-color: #00AA22;
}

.trip-buttons a:hover .white-arrow {
  stroke: #00AA22;
  fill: #00AA22;
}


.additional-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.additional-details.open {
  max-height: 100%;
}

.additional-details-wrapper{
  padding: 40px 10px 0 10px;
}


.additional-details p{
    font-size: 1.1rem;
}

.collapse-button{
  background: #fff;
  border: 2px solid #40ADD3;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.collapse-button span{
  transform: rotate(-90deg);
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.trip-button-option{
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 0 0 89px 89px;
}

.trip-button{
  position:relative;
  padding: 10px 27px 10px 27px;
  background-color: rgb(255, 255, 255);
  border: 5px solid rgb(81, 81, 81);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.trip-button:not(:last-child){
  margin-bottom: 20px;
}

.trip-button .link{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trip-button img{
  margin-right: 15px;
}
.trip-title{
  font-size: 20px;
}

.big-down-arrow{
  margin: 60px 0;
  height: auto;
}

@media only screen and (max-width: 960px) {
  .trip-details ul li span:first-child{
    width: 30%;
  }
}

@media only screen and (max-width:820px){
  section#ツアープラン .tab-button-heading{
    padding: 30px 50px;
  }
}

@media only screen and (max-width: 710px){
  section#ツアープラン .tab-button-heading{
    padding: 30px 25px;
  }
}

@media only screen and (max-width: 600px) {
  .tourplan-heading{
    font-size: 16px;
  }

  img.bus-icon{
    max-width: 40px;
    margin-right: 25px;
  }

  .big-down-arrow{
    width: 35%;
    margin: 30px 0;
  }

  .trip-details ul li span:first-child{
    width: 35%;
  }

  .trip-buttons a{
    margin-right: 0;
    margin-bottom: 20px;
  }

  .trip-buttons button{
    margin-left: 0;
  }

  .trip-buttons{
    flex-direction: column;
    justify-content: center;
  }
}

@media only screen and (max-width: 525px){
  .notice, .trip-details ul li{
    font-size: 14px;
  }
}

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

  section#ツアープラン .tab-button-heading {
    padding: 20px;
    margin-bottom: 40px;
  }

  img.bus-icon{
    margin-right: 15px;
  }

  .trip-heading p{
    font-size: 14px;
    line-height: 25px;
  }

  .trip-heading p:last-child{
    padding: 10px;
  }
}

@media only screen and (max-width: 420px) {

    .trip-heading{
        padding: 20px;
    }
    
    .notice{
        padding: 10px 15px;
    }
    
    .trip-details{
        padding: 0 20px 20px 20px;
    }
    
    .additional-details p{
        font-size: 0.9rem;
    }

    .trip-title{
      font-size: 14px;
    }

  .trip-buttons a, .trip-buttons button, .collapse-button{
    font-size: 16px;
  }
}

@media only screen and (max-width: 391px){
  .trip-details ul li span:last-child br:first-child{
    display: block;
  }
}


/* ---------- Section: よくある質問 - FAQ --------- */
#faq{
    padding: 46px 20px;
    margin: 0 auto;
    max-width: 1040px;
}

.faq-heading{
    font-family: 'GenJyuuGothicX P-Bold', Meiryo, sans-serif;
    display: flex;
    align-items: center;
    font-size: 4.16rem;
    font-weight: 700;
    line-height: 1;
    border-bottom: 5px solid rgb(17, 17, 17);
    width: fit-content;
    padding-bottom: 20px;
    color: rgb(77, 78, 81);
}

.faq-subheading{
    position: relative;
    margin-left: 40px;
    font-size: 2.22rem;
    font-weight: 500;
    color: rgb(17, 17, 17);
}

.whole-accordion{
    margin: 21.3px 0;
}

.whole-accordion a.question {
    display: flex;
    align-items: center;
    background-color: #df1a76;
    color: #ffffff;
    cursor: pointer;
    padding: 9.4px 23.6px;
    text-align: left;
    font-size: 1.445rem;
    border: none;
    outline: none;
    width: 100%;
    height: 89.4px;
}

.whole-accordion a.question p {
    flex: 50%;
    display: flex;
    align-items: center;
}



.question span.circle{
    font-family: '小塚ゴシック Pr6N R', Meiryo, sans-serif;
    color: #111111;
    background-color: rgb(255, 255, 255);
    max-height: 60.6px;
    height: 100%;
    max-width: 60.6px;
    width: 100%;
    border-radius: 50%;
    display: inline-block;
    font-size: 1.8rem;
    margin-right: 44.9px;
    display: grid;
    place-items: center;
}


a.question span>img.plus-icon{
    height: 22.9149px;
    width: 28.5957px;
    float: right;
    font-weight: 700;
}

.whole-accordion .answer {
    padding: 26.5px 90px 26.5px 154.6px;
    background-color: #e5e3e2;
    display: none;
    overflow: hidden;
}

.whole-accordion .answer ol{
    list-style-type: upper-latin;
    font-size: 2.19rem;
}

.whole-accordion .answer ol li span.answer-small-font{
    font-size: 24px;
}

#faq .answer ol li span br.seat-bus-answer-break{
  display: block;
}

@media only screen and (max-width: 680px){
  #faq{
    padding: 46px 20px;
  }

  .faq-heading{
    font-size: 2.5rem;
  }

  .faq-subheading{
    font-size: 1.1rem;
    margin-left: 20px;
  }

  #faq a.question {
    width: 100%;
    max-height: 89.4px;
    font-size: 1rem;
    padding: 9.4px 9px;
  }

  .question span.circle{
    font-size: 1.3rem;
    margin-right: 10px;
    max-height: 50px;
    height: 100%;
    max-width: 50px;
    width: 100%;
  }

  #faq .question .plus-icon img{
    height: 15px;
    width: 21px;
  }

  #faq .answer {
    padding: 26.5px 30px 26.5px 60px;
  }

  #faq .answer ol{
    font-size: 1.5rem;
  }

  #faq .answer ol li span.answer-small-font{
    font-size: 14px;
  }

  #faq .answer ol li span br.seat-bus-answer-break{
    display: none;
  }
}




/* ---------- Section: Precautions --------- */

.precaution-heading{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 20px;
  background-color:#df1a76;
  color: rgb(255, 255, 255);
}

.precaution-title{
    font-size: 2.87rem;
    margin-bottom: 30px;
}

.precaution-subtitle{
    font-size: 1.875rem;
    font-weight: 600;
}

  .precaution-header{
    margin: 0 auto;
    max-width: 1040px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 30px 20px;
  }

.precaution-header p{
    font-family: 'MS UI Gothic 標準', Meiryo, sans-serif;
    color: #df1a76;
    font-size: 1.5rem;
    font-weight: 600;
}

.precaution-header .check{
    max-height: 34.3329px;
    height: 100%;
    max-width: 34.3329px;
    width: 100%;
    margin-right: 21px;
}

.precaution-list{
    background-color: rgb(145, 145, 145);
    padding: 34px 20px;
}

.precaution-list-wrapper{
  margin: 0 auto;
  max-width: 935px;
}

.precaution-list ul{
    list-style-type: square;
}

.precaution-list ul li{
    font-size: 1rem;
    color: rgb(255, 255, 255);
    line-height: 28px;
    margin-left: 15px;
}

.precaution-list ul li.list-none-margin-bottom{
    list-style: none; 
    margin-bottom: 42px ;
    margin-left: -15px;
}

.precaution-list ul li.list-none{
    list-style: none;
    margin-left: -15px;
}

.cancelation-table-image{
    max-width: 519.942px;
    width: 100%;
    height: auto;
    margin: 33px 0;
}

.precaution-checklist:nth-child(7) .precaution-list .precaution-list-wrapper, .precaution-checklist:last-child .precaution-list .precaution-list-wrapper{
  max-width: 900px;
}

/* Precaution Media Query */

@media only screen and (max-width: 660px) {
  .precaution-heading{
    padding: 25px;
  }

  .precaution-title{
    font-size: 1.60rem;
    margin-bottom: 10px;
  }

  .precaution-subtitle{
    font-size: 0.9rem;
  }

  
  .precaution-header{
    padding: 20px;
  }

  .precaution-header p{
    font-size: 1rem;
  }

  .precaution-list{
    padding: 35px 25px 35px 25px;
  }

  .precaution-list ul{
    display: flex;
    flex-direction: column;
  }

  .precaution-list ul li{
    font-size: 0.9rem;
    margin-left: 15px; 
  }

  .precaution-list ul li.list-none-margin-bottom{
    list-style: none; 
    margin-bottom: 35px;
    margin-left: 0;
  }

  .precaution-list ul li.list-none{
    list-style: none;
    margin-left: 0;
  }
    
}

/* ---------- Footer --------- */

.site-contact{
  background-color: #df1a76;
  padding: 40px 20px;
    
}

.site-contact-wrapper{
  max-width: 935px;
  margin: 0 auto;
}

.site-contact ul{
    list-style: none;
}

.site-contact p{
    font-family: 'Yu Mincho', Meiryo, sans-serif;
    margin-bottom: 30px;
    color: rgb(255, 255, 255);
}

.site-contact .site-notice{
    padding: 28px 51px;
    background-color: rgb(255, 255, 255);
    opacity: 0.7;
}

.site-contact .site-notice ul li{
    opacity: 1;
    color: rgb(0, 0, 0);
    font-weight: 600;
}

.site-contact .site-notice ul li.site-mb{
    margin-bottom: 29px;
}

.footer-links-and-pdf{
  padding: 50px 20px;
  background-color: #2B2B2B;
  width: 100%; 
}

.download-row {
  max-width: 935px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.download-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0;
}

.download-links li {
    background-color: transparent;
    width: fit-content;
}

.download-links li:not(:last-child){
  margin-bottom: 23px;
}

.download-links a{
    font-size: 1.28rem;
    color: var(--white-color);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    display: flex;
    align-items: center;
}

.download-links a:hover{
    opacity: 0.8;
}

.download-links a img.txt-icon{
    width: 30.6295px;
    height: 33.6634px;
    margin-right: 13px;
}

.footer-links ul.footer-links-list{
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  max-width: 935px;
}

ul.footer-links-list li a{
  color: #fff;
  text-decoration: none;
}

.footer-copyright{
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 10px 0;
}

.footer-copyright .reference-site{
  text-align: end;
}

.footer-copyright .reference-site a{
  color: #0059FF;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  max-width: 935px;
  margin: 35px auto;
  justify-content: space-between;
}

.footer-logos img {
  flex: 1 1 calc(20% - 10px); 
  max-width: 150px;
  height: auto;
  transition: all 0.3s ease;
  margin: 5px;
}

/* Footer Media Query */
@media (max-width: 768px) {
  .footer-logos img {
    flex: 1 1 calc(30% - 10px);
  }
}

@media only screen and (max-width: 550px) {
  .footer-links-and-pdf{
    padding: 35px 20px;
  }

    .site-contact{
      padding: 35px 20px;
      font-size: 0.875rem ;
    }

    .download-links a img.txt-icon{
      width: 25px;
      height: auto;
    }

    .site-contact p{
      margin-bottom: 20px;
    }

    .site-contact .site-notice ul li.site-mb{
      margin-bottom: 20px;
    }

    .download-links a{
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    .site-contact .site-notice{
        padding: 10px;
    }

    .footer-copyright div:first-child{
      margin-bottom: 10px;
    }

    .footer-copyright div p{
      font-size: 12px;
    }

    .footer-copyright .reference-site{
      font-size: 12px;
    }

    .footer-links ul.footer-links-list{
      flex-direction: column;
    }

    .footer-links ul.footer-links-list li:not(:last-child){
      margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
  .footer-logos{
    justify-content: center;
  }

  .footer-logos img {
    flex: 1 1 calc(45% - 10px);
  }
}

  /* Container for responsiveness */
  .table-container {
    margin: 33px 0;
    overflow-x: auto;
  }

  /* Table styling */
  table {
    border-collapse: collapse;
    width: 520px;
  }

  th, td {
    padding: 4px;
    text-align: left;
    border: 1px dotted #c8c8c8;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
  }

  /* Header styling */
  th {
    background-color: #bfbfbf;
    white-space: nowrap;
    text-align: center;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .table-container table tbody tr td:first-child{
    width: 5%;
    text-align: center;
    font-size: 12px;
    padding-left: 0;
    padding-right: 0;
  }

  /* Column widths */
  .td-col-long {
    width: 77%;
  }
  
  .col-auto {
    width: auto;
  }

  tr td{
    font-size: 12px;
  }

/* ---------- * --------- */