@charset "UTF-8";
:root {
    --primary-color: #0056b3;
    --text-color: #333;
    --design-base: #898A8B;
    --design-text:#4b4b4b;
    --design-main:#040A2A;
    --white: #fff;
    --bg-light: #F4F4F4;
    --fw-bold: 600;
    --fw-black: 900;
    --ff-zen: "Zen Kaku Gothic Antique", sans-serif;
}

.page-logo{
    margin: 10px 0 0 0;
    width: 60px;
}

.open .page-logo{
    display: none;
}


.page-fv{
    height: 25vh;
}

.page-fv .container{
    max-width: 1440px;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (max-width: 1460px){
.page-fv .container{
    padding: 0;
}
}

.page-fv .container h2{
    margin: 15px 0px 0;
    font-weight: var(--fw-bold);
    color: #fff;
.page-fv .container
    h2
font-size: 1.15rem;
    font-size: 1.15rem;
    padding: 0 3%;
}

.container-large{
    max-width: 1440px;
    padding: 0;
}

.about-header{
    background: url(../images/about/about_header.png) center;
    background-size: cover;
}


.section-aboutwelcome {
    background: #fafafa;
    padding: 40px 0;
    text-align: center;
}

.section-aboutwelcome .title-wrap{
    display: inline-flex;
    flex-direction: column;
}

.container h2{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    margin-bottom: 30px;
}

.section-aboutwelcome h2::before, .section-aboutwelcome h2::after{
    content: "";
    display: block;
    width: 50px;
    height: 31px;
    background: url(../images/wave_icon.png) center no-repeat;
    background-size: contain;
}

.text-body{
    color: var(--design-text);
}

.container-large.strengs-container .flex-box{
    align-items: center;
    background: url(../images/about/Strengs.png) left top 60px no-repeat;
    padding-right: 5%;
    padding-left: 5%;
    background-size: 100%;
}

.container-large .col-text{
    width: 100%;
}

.container-large .img-box{
    width: 100%;
}

.about-image img{
    width: 100%;
    object-fit: cover;
}

.about .img-box{

}

.section-strengs{
    background: #fff;
}

h2.sectTit {
  position: relative;
  border-bottom: 1px solid #D5D7D9;
  padding-bottom: 30px;
  margin-bottom: 30px;
  justify-content: flex-start;
}

h2.sectTit:before {
  position: absolute;
  bottom: -1px;
  width: 120px;
  height: 1px;
  display: block;
  content: "";
  background: var(--design-main);
  left: 0;
}

.sectTit-point{

}

.sectTit-point li{
    line-height: 2;
    margin-bottom: 4px;
    text-indent: -0.5em;
    padding-left: 0.5em;
}

.section-voice{
    background: #fafafa;
    padding: 20px 0 60px;
}

.section-voice .container{
    padding: 0;
}

.section-voice h2{
    text-align: center;
    display: block;
    color: var(--design-main);
    padding: 20px 0;
    background: url(../images/about/Voice.png) center no-repeat;
    background-size: contain;
    margin-bottom: 20px;
}

.section-voices {
    padding: 160px 0;
    background: #fff;
}


.voice-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 100%;
    font-size: 0.90rem;
    margin: 0 auto 60px 0;
    padding: 30px 5%;
    background: #fff;
    flex-direction: column;
}

.voice-block.reverse-layout {
    flex-direction: row-reverse;
    margin: 0 0 60px auto;
    flex-direction: column;
}

.voice-profile {
    width: 180px;
    flex-shrink: 0;
    text-align: center;
}

.voice-profile img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    margin-bottom: 14px;
}

.voice-profile .voice-meta {
    font-size: 0.85rem;
    color: #3D487C;
    margin-bottom: 5px;
}

.voice-profile .voice-name {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--design-main);
    margin-top: 0;
}

.voice-qa {
    flex-grow: 1;
    max-width: 880px;
}

.qa-item {
    border-bottom: 1px solid #D5D7D9;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-radius: 4px;
}

.voice-qa .question {
    font-weight: var(--fw-bold);
    color: var(--design-base);
    line-height: 2.0;
}

.voice-qa .answer {
    color: var(--design-main);
    line-height: 2.0;
}

.voice-expandable {
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out; 
    overflow: hidden;
    will-change: max-height;
}

.voice-expandable.is-closed {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.voice-expandable.is-open {
    /*max-height: 3000px; */
    opacity: 1;
    margin-top: 50px;
}

button.btn-more {
    display: block;
    width: 215px;
    margin: 50px auto 0;
    padding: 10px 20px;
    border: 1px solid var(--design-base);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--design-base);
    position: relative;
    line-height: 1.6;
    font-family: var(--ff-zen);
    font-weight: var(--fw-bold);
    text-align: center;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
    background: #fff;
}

button.btn-more::after {
    content: url(../images/btn_arrow.svg);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg); 
    transition: transform 0.3s ease;
}

button.btn-more.is-open {
}

button.btn-more.is-open::after {
    transform: translateY(-50%) rotate(-90deg);
}


.section-adress{
    padding: 60px 5%;
}

.section-adress .map{
    width: 100%;
    height: 400px;
}

.section-adress .map iframe{
    width: 100%;
    height: 400px;
}

.section-adress .container{
    width: 100%;
    padding: 60px 0 0;
    position: static;
    top: 0;
    background: #fff;
}

.section-adress h3{
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--design-main);
    font-weight: var(--fw-black);
}

.section-adress .adress{
    color: var(--design-base);
    text-align: center;
}


.adress-detail-wrap{
    margin-top: 0;
}

.access-list {
    list-style: none;
    padding: 0;
    max-width: 900px; 
    margin: 0 auto;
}

.access-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid #D5D7D9;
    border-radius: 4px;
    flex-direction: column;
}

.access-item:last-child {
    border-bottom: none;
}

.access-item .btn-more{
    width: 50%;
}

.access-text-wrap {
    flex-grow: 1;
}

.access-station {
    font-size: 1.125rem;
    font-weight: var(--fw-bold);
    color: var(--design-main);
    margin: 0 0 5px 0;
}

.access-detail {
    font-size: 0.875rem;
    color: var(--design-base);
    margin: 0 0 15px 0;
}

.section-contact {
    padding: 60px 0 0;
    text-align: center;
    background-color: #f2f2f2;
}

.section-contact .contact-message{
    margin-bottom: 60px;
    font-size: 1.2rem;
    color: var(--design-main);
    font-family: var(--ff-zen);
}

.section-contact .access-btn-line{
    width: 80%;
    margin-bottom: 16px;
    border: 1px solid #41BF5A;
    color: #41BF5A;
    background: #fff;
}

.section-contact .access-btn-line.btn-more::after{
    content: url(../images/line_arrow.svg);
}

.section-contact .access-btn-contact{
    width: 80%;
    background: #fff;
}

.contact-title{
    text-align: center;
    margin-bottom: 40px;
}


.contact-title img{
    width: 65%;
}

#access{
    padding: 0 5% 60px;
}

#section-contact{
    padding: 0 0 60px;
    background: #fff;
}

.contact-tel-box {
    width: 100%;
    margin: 30px auto 0;
    padding: 20px 0;
    background-color: #fff;
    color: var(--design-main);
}

.tel-text {
    font-size: 0.75rem;
    margin: 0;
}

.tel-number {
    font-size: 1.875rem;
    font-weight: var(--fw-bold, 700);
    margin: 6px 0;
    letter-spacing: 0.08em;
    line-height: 1;
}

.tel-small-note {
    font-size: 0.75rem;
    margin: 0;
}


.section-company-info {
    padding: 40px 0;
    background-color: #fff;
}

.section-company-info h2 {
    text-align: center;
    display: block;
    color: var(--design-main);
    padding: 20px 0;
    background: url(../images/about/Company.png) center bottom no-repeat;
    background-size: 195px;
    margin-bottom: 30px;
}

.achievements-description{
    font-size: 0.75rem;
    margin-bottom: 12px;
    line-height: 2;
    color: var(--design-base);
}

.company-info-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
}


.company-info-table tr {
    border-bottom: 1px solid #D5D7D9;
    border-radius: 4px;
    display: block;
}

.company-info-table tr:last-child {
    border-bottom: none;
}


.company-info-table th {
    text-align: left;
    padding: 10px 5px;
    width: 110px;
    font-size: 0.875rem;
    color: var(--design-text);
    font-weight: normal;
    white-space: nowrap;
    vertical-align: middle;
}

.company-info-table td {
    text-align: left;
    padding: 10px 5px;
    font-size: 0.875rem;
    color: var(--design-text);
    line-height: 1.6;
    width: calc(100% - 120px);
}

.company-info-table td a {
    color: var(--design-text);
    text-decoration: none;
}

.company-info-table td br {
    display: block;
    content: "";
    margin-top: 5px;
}

/**school**/
.course-header{
    background: url(../images/course/course_header.png) center;
    background-size: cover;
}

.container h3{
    font-size: 1.125rem;
    margin-bottom: 12px;
}



.section-coursewelcome {
    background: #fafafa;
    padding: 60px 0;
    text-align: center;
}

.section-coursewelcome .title-wrap{
    display: inline-flex;
    flex-direction: column;
}

.section-coursewelcome h2::before, .section-coursewelcome h2::after{
    content: "";
    display: block;
    width: 50px;
    height: 31px;
    background: url(../images/wave_icon.png) center no-repeat;
    background-size: contain;
}

.section-course-detail{
    padding: 40px 0;
}

.section-course-detail h2 {
    text-align: center;
    display: block;
    color: var(--design-main);
    padding: 20px 0;
    background: url(../images/course/course.png) center no-repeat;
    background-size: contain;
    margin-bottom: 30px;
}

.section-course-content{
    
}

.course-content .col-text{
    padding: 0 5%;
}

h3.section-title-large{

}

h3.sectTit {
    position: relative;
    border-bottom: 1px solid #D5D7D9;
    padding-bottom: 30px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
}

h3.sectTit span{
    font-size: 0.875rem;
}
h3.sectTit:before {
    position: absolute;
    bottom: -1px;
    width: 120px;
    height: 1px;
    display: block;
    content: "";
    background: var(--design-main);
}

.course-left-container .flex-box{
    padding: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.course-left-container .flex-box.right{
    padding: 30px 0;
    justify-content: flex-end;
    flex-direction: column-reverse;
}

.course-content .price{
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    font-family: var(--ff-zen);
    margin-bottom: 40px;
}

.campaing{
    padding: 20px;
    border: 1px solid #D5D7D9;
    text-align: center;
}

.campaing .tit{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: var(--fw-bold);
    color: var(--design-main);
    margin-bottom: 8px;
}

.campaing .text{
     color: var(--design-main);   
}

.campaing .tit::before, .campaing .tit::after{
    content: "";
    display: block;
    width: 32px;
    height: 13px;
    background: url(../images/wave_icon.png) center no-repeat;
    background-size: contain;
    margin-top: 3px;
}

.container-large.course-left-container .img-box{
    width: 100%;
}

.course-content .course-list{
    margin-top: 30px;
    padding: 40px 5% 0;
    border-top: 1px solid #0056b3;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.course-content .course-list .box{
    width: 85%;
}

.course-content .course-list .box .tit{
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.course-content .course-list .box .tit .icon{
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.course-content .course-list .box ul{
    
}

.course-content .course-list .box ul li{
    line-height: 2;
}

.course-content .course-list .box ul li:before{
    display: inline;
    content: "・";
}

.section-flow-content{
    padding: 40px 0;
}

.section-flow-content h2 {
    text-align: center;
    display: block;
    color: var(--design-main);
    padding: 20px 0;
    background: url(../images/course/Flow.png) center no-repeat;
    background-size: contain;
    margin-bottom: 30px;
}

.section-flow-content .step-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-flow-content .step-box{
    display: flex;
    flex-wrap: wrap;
}

.section-flow-content .text-box {
    width: 100%;
}
.section-flow-content .step-title-wrap {
    display: flex;
    align-items: center;
    line-height: 1.0;
    margin-bottom: 10px;
    gap: 15px;
    width: 100%;
}
.section-flow-content .step-num {
    width: 45px;
    height: 45px;
}

.section-flow-content .step-num img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-flow-content .step-tit{
    font-size: 1.25rem;
    font-family: var(--ff-zen);
    line-height: 2.0;
    color: var(--design-main);
}

.section-flow-content .step-tit::before{
    content: "-";
    display: inline;
    margin-right: 3px;
}

.section-flow-content .step-text {
    font-size: 0.875rem;
    line-height: 2.0;
    padding: 0 0 10px 0;
    color: var(--design-main);
}
.section-flow-content .img-box {width: 100%;text-align: center;}


.section-tourwelcome{
    padding: 60px 5%;
    background: url(../images/tour/tour_welcome_bg.png) center no-repeat;
    background-size: cover;
}

.section-tourwelcome .container{
    background: #fff;
    position: relative;
    width: 1200px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 5%;
}

.section-tourwelcome .container .img-box-left{
    position: absolute;
    top: 50%;
    left: -8%;
    width: 20%;
    transform: translateY(-50%);
    display: none;
}

.section-tourwelcome .container .img-box-right{
    position: absolute;
    top: 50%;
    right: -8%;
    width: 25%;
    transform: translateY(-50%);
    display: none;
}

.section-tourwelcome .container .title-wrap{
    text-align: center;
}

.section-tourwelcome .container h2{
    margin-bottom: 20px;
    justify-content: center;
}

.section-tour-detail{
    padding: 40px 0;
    background: #fafafa;
}

.section-tour-content{

}

.section-tour-detail h2 {
    text-align: center;
    display: block;
    color: var(--design-main);
    padding: 20px 0;
    margin-bottom: 20px;
}

.section-tour-detail .description{
    text-align: center;
    padding: 0 5%;
}

.section-tour-detail .container-tour-detail{
    width: 100%;
    max-width: 1440px;
    margin: auto;
    background: url(../images/tour/Tour.png) left no-repeat;
    background-size: contain;
}

h3.section-title-large{

}

h3.sectTit {
    position: relative;
    border-bottom: 1px solid #D5D7D9;
    padding-bottom: 1em;
    margin-bottom: 1em;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
}

h3.sectTit span{
    font-size: 0.875rem;
}
h3.sectTit:before {
    position: absolute;
    bottom: -1px;
    width: 120px;
    height: 1px;
    display: block;
    content: "";
    background: var(--design-main);
}

.tour-left-container .flex-box{
    padding: 0 5%;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.tour-left-container .flex-box.right{
    padding: 30px 5%;
    justify-content: flex-end;
    flex-direction: column-reverse;
}

.container-large.tour-left-container .img-box{
    width: 100%;
}

.container-large.tour-right-container .img-box{
    width: 470px;
}

.tour-content .sub-tit{
    color: var(--design-base);
    margin-bottom: 15px;
}

.section-tour-service{
    padding: 40px 0;
}

.section-tour-service h2 {
    text-align: center;
    display: block;
    color: var(--design-main);
    padding: 20px 0;
    margin-bottom: 20px;
}

.section-tour-service .description{
    text-align: center;
}

.section-tour-service .container-tour-service{
    width: 100%;
    max-width: 1440px;
    margin: auto;
    background: url(../images/tour/Service.png) center no-repeat;
    background-size: contain;
    margin-bottom: 40px;
}

.content-service{
    width: 100%;
    display: flex;
    gap: 40px;
    margin: auto;
    flex-direction: column;
}

.content-service .box{
    width: 100%;
    padding: 30px 5%;
    background: #fafafa;
}

.content-service.pool .box p{
    text-align: justify;
    text-align-last: left;
}

.content-service .box .sub-tit{
    font-size: 0.815rem;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--design-base);
}

.content-service .box .tit{
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--design-main);
    font-weight: var(--fw-bold);
}

.content-service .box .price{
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #3D487C;
    font-weight: var(--fw-bold);
}

.content-service .box .img-box{
    margin-bottom: 30px;
}

.section-resort-content{
    background: #fafafa;
    padding: 40px 0;
}

.section-resort-content .container{
    width: 100%;
    padding: 0;
}

.section-resort-content .container h2 {
    text-align: center;
    display: block;
    color: var(--design-main);
    padding: 20px 0;
    margin-bottom: 30px;
    justify-content: center;
}

.section-resort-content .description{
    text-align: center;
    padding: 0 5%;
}

.section-resort-content .container-resort-service{
    width: 100%;
    max-width: 1440px;
    margin: auto;
    background: url(../images/tour/Resort.png) center no-repeat;
    background-size: contain;
    margin-bottom: 30px;
    text-align: center;
}

.resort-wrap{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
}

.resort-wrap .box{
    width: 90%;
    padding: 15px 3%;
    text-align: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
    background: #fff;
    margin: auto;
}

.resort-wrap .box .img-box{
    margin-bottom: 15px;
    height: auto;
}

.resort-wrap .box .img-box img{
    width: 100%;
    height: auto;
}

.resort-wrap .box .sub-tit{
    color: var(--design-text);
    margin-bottom: 10px;
    line-height: 1;
}

.resort-wrap .box .tit{
    color: var(--design-main);
    font-size: 1.25rem;
    line-height: 1;
    font-weight: var(--fw-bold);
}

.section-information-content{
    padding: 40px 0;
}

.section-information-content .container{
    padding: 0;
}

.section-information-content .container h2 {
    text-align: center;
    display: block;
    color: var(--design-main);
    padding: 20px 0 0;
    margin-bottom: 30px;
    justify-content: center;
}

.section-information-content .description{
    text-align: center;
}

.section-information-content .container-information-service{
    width: 100%;
    max-width: 1440px;
    margin: 0 auto 30px;
    background: url(../images/tour/info.png) center no-repeat;
    background-size: contain;
    padding: 20px 0;
    text-align: center;
}

.information-wrap{
    display: flex;
    gap:30px 20px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto 60px;
    padding: 0 5%;
}

.information-wrap .box{
    width: 100%;
}

.information-wrap .box .img-box{
    margin-bottom: 10px;
    position: relative;
    aspect-ratio: 320 / 180;
    width: 100%;
    overflow: hidden;
}

.information-wrap .box .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-wrap .box .img-box{
    margin-bottom: 10px;
    position: relative;
    aspect-ratio: 320 / 180;
    width: 100%;
    overflow: hidden;
}

.blog-wrap .box .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.information-wrap .box p{
    color: var(--design-main);
    font-size: 0.875rem;
    line-height: 2;
}

.information-wrap .box .data{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.information-wrap .box .category{
    color: #fff;
    background: var(--design-base);
    padding: 5px 8px;
    line-height: 1;
    font-size: 0.625rem;
}

.information-wrap .box .day{
    font-size: 0.75rem;
}

.information-wrap .box .new{
    color: var(--design-main);
    font-size: 0.875rem;
    line-height: 1;
    padding: 7px 10px;
    background: #fff;
    position: absolute;
    top:0;
    left: 0;
}

.section-information-content .information-content-btn{
    width: 75%;
    margin: auto;
    display: block;
    font-size: 1.0rem;
}

.section-tour-event-content{background: #fafafa;padding: 20px 0 40px;}

.section-tour-event-content .container-tour-detail{
    width: 100%;
    max-width: 1440px;
    margin: auto;
    background: url(../images/tour/Event.png) right no-repeat;
    background-size: contain;
}


.section-tour-event-content .tour-event-service{
    width: 100%;
    max-width: 1440px;
    margin: auto 0;
    background-size: contain;
    padding: 0 5% 40px;
    text-align: center;
}

.tour-event-service h2{
    justify-content: center;
    margin-bottom: 20px;
    padding: 20px 0;
}

.tour-event-img{
    position: relative;
    padding-bottom: 0;
    width: 100%;
    margin: 0 auto 40px;
}

.tour-event-img .img-box{
    position: relative;
}

.tour-event-img .text-box{
    position: static;
    padding: 30px 5%;
    color: var(--design-main);
    background: #fff;
}

.tour-event-wrap{
    display: flex;
    gap:30px 20px;
    flex-wrap: wrap;
}

.tour-event-wrap .box{
    width: calc((100% - 40px) / 3);
}

.tour-event-wrap .box .img-box{
    margin-bottom: 10px;
    position: relative;
}

.tour-event-wrap .box .img-box img{
    width: 100%;
}

.tour-event-wrap .box p{
    color: var(--design-main);
    font-size: 0.875rem;
    line-height: 2;
}

.tour-event-wrap .box .data{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-event-wrap .box .category{
    color: #fff;
    background: var(--design-base);
    padding: 5px 8px;
    line-height: 1;
    font-size: 0.625rem;
}

.tour-event-wrap .box .day{
    font-size: 0.75rem;
}

.tour-event-wrap .box .new{
    color: var(--design-main);
    font-size: 0.875rem;
    line-height: 1;
    padding: 7px 10px;
    background: #fff;
    position: absolute;
    top:0;
    left: 0;
}


.section-tour-option{
    padding: 40px 0;
}

.section-tour-option .container{
    padding: 0;
}

.section-tour-option .section-title-large{
    justify-content: center;
    margin-bottom: 40px;
}

.section-tour-option .option-wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: auto;
}

.section-tour-option .option-wrap .box{
    display: flex;
    padding: 30px 5%;
    background: #fafafa;
    gap: 15px;
    flex-wrap: wrap;
}

.section-tour-option .option-wrap .box .img-box{
    width: 85%;
    margin: auto;
    text-align: center;
}

.section-tour-option .option-wrap .box .text-box{
    
}

.section-tour-option .option-wrap .box .text-box h3{
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
    line-height: 1.6;
    margin-bottom: 10px;
}

.section-tour-option .option-wrap .box .text-box .price{
    color: #3D487C;
    font-weight: var(--fw-bold);
    line-height: 1.6;
    margin-bottom: 10px;
}

.section-tour-option .option-wrap .box .text-box .text{
    color: var(--design-text);
}

.partner-header{
    background: url(../images/partner/partner_header.png) center;
    background-size: cover;
}

.intro-split {
    width: 100%;
    background: #f2f2f2;
}

.intro-content{
    max-width: 1440px;
    display: flex;
    margin: auto;
    flex-direction: column;
}

.intro-text-area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    box-sizing: border-box;
}

.intro-inner {
    max-width: 560px;
    width: 100%;
}

.intro-inner h2 {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 30px;
    letter-spacing: 0.04em;
}

.intro-inner p {
    font-size: 0.875rem;
    color: var(--design-light);
    margin-bottom: 40px;
    line-height: 2;
    letter-spacing: 0.04em;
}

.intro-split .intro-split-btn{
    background: #fff;
    width: 291px;
}

.intro-image-area {
    width: 100%;
}
.intro-image-area img {
    width: 100%; height: 100%; object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.partner-section{
    padding: 60px 5%;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.main-content {
    flex: 1;
    width: 100%;
}

.section-heading {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.section-lead {
    color: var(--text-light);
    margin-bottom: 40px;
}

#reason h2.section-heading{
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 28px;
    justify-content: flex-start;
}

#reason .section-lead {
  position: relative;
  border-bottom: 1px solid #D5D7D9;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

#reason .section-lead:before {
  position: absolute;
  bottom: -1px;
  width: 176px;
  height: 1px;
  display: block;
  content: "";
  background: var(--design-main);
}


.divider {
    border: none;
    border-top: 1px solid #D5D7D9;
    margin: 20px 0;
    width: 100px;
    width: 100%;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    cursor: pointer;
    padding: 0;
}

.accordion-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.accordion-header.is-open{
    margin-bottom: 0;
}

.accordion-header.is-open h3{
    
}

.icon-arrow {
    width: 12px;
    height: 11px;
    display: flex;
    align-items: center;
}

.reason-item {
    margin-bottom: 20px;
}

.reason-title {
    background-color: #f7f7f7;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 15px;
    border-radius: 4px;
    line-height: 2;
}

.reason-body {
    padding: 0 10px;
    font-size: 0.875rem;
    color: var(--design-text);
    line-height: 2;
}

.sidebar {
    width: 100%;
    flex-shrink: 0;
    position: sticky;
    top: 40px;
    display: none;
}

.sidebar-inner {
    background-color: #f7f7f7;
    padding: 30px 5%;
}

.sidebar-nav ul li {
    margin-bottom: 14px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 14px;
}

.sidebar-nav ul li:last-child {
    border-bottom: none;
    margin-bottom: 30px;
    padding-bottom: 0;
}

.sidebar-nav a {
    font-size: 0.875rem;
    display: block;
    color: var(--design-main);
}

.sidebar-contact{
    width: 75%;
    font-size: 0.875rem;
    background: #fff;
    display: block;
    margin: auto;
}

.reason-list {
    display: none;
    padding: 20px 0;
}

.reason-list.is-open {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-header .icon-arrow {
    transition: transform 0.3s ease;
}

.accordion-header.is-open .icon-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 20px 0;
}

.accordion-content.is-open {
    display: block;
    animation: fadeIn 0.5s ease;
}

.service-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-direction: column;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-img {
    width: 100%;
    flex-shrink: 0;
}

.service-img img {
    width: 100%;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-text {
    width: 100%;
}

.service-title-bar {
    background-color: #f7f7f7;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 5px;
    border-radius: 4px;
    line-height: 2;
}

.service-body h4 {
    font-size: 0.875rem;
    margin: 20px 0 10px;
    font-weight: bold;
}

.service-body h4:first-child {
    margin-top: 0;
}

.service-body p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0 0 5px;
    line-height: 2;
}

.achievement-item {
    margin-bottom: 40px;
}

.achievement-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.achievement-title-bar {
    background-color: var(--bg-gray-bar);
    padding: 15px 20px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 25px;
    border-radius: 4px;
}

.achievement-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
}

.achievement-image {
    width: 200px;
}

.achievement-detail-table {
    width: 100%;
    display: block;
}

.achievement-detail-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.80rem;
}

.achievement-detail-table th,
.achievement-detail-table td {
    padding: 15px 5px;
    border: 1px solid #d5d7d9;
    text-align: left;
    vertical-align: top;
}

.achievement-detail-table th {
    background: #f7f7f7;
    width: 120px;
    font-weight: bold;
    color: var(--design-main);
    white-space: nowrap;
}

.achievement-detail-table td {
    color: var(--design-text);
}

.achievement-detail-table {
    width: 100%;
}

.achievement-detail-table table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.achievement-detail-table th,
.achievement-detail-table td {
    max-width: 0;
    white-space: normal;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.achievement-detail-table td.tit{
    color:#3D487C;
    width: 110px;
}

.achievement-detail-table td.list{
    width: calc(100% - 110px);
}

.achievement-detail-table td h5 {
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--design-text);
}

.achievement-detail-table td p {
    margin: 0;
    line-height: 1.6;
}

.flow-table-wrapper {
    padding: 20px 0 20px;
}

.flow-item {
    display: flex;
    border: 1px solid #d5d7d9;
}

.flow-step {
    width: 110px;
    flex-shrink: 0;
    padding: 12px;
    background: #f7f7f7;
    font-weight: bold;
    color: var(--text-color);
    display: flex;
    align-items: center;
    line-height: 1.4;
    font-size: 0.875rem;
}

.flow-description {
    padding: 12px;
    background: #fff;
    color: var(--design-text);
    font-size: 0.875rem;
    line-height: 2;
    flex-grow: 1;
}

.flow-arrow {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bottom-contact{
    background: #f2f2f2;
    padding: 60px 5%;
}

.bottom-contact .container{
    padding: 0;
}

.bottom-contact h2.section-title-large{
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 8px;
    justify-content: center;
}

.bottom-contact .sub-tit{
    font-size: 0.75rem;
    color: var(--design-base);
    text-align: center;
    margin-bottom: 45px;
    line-height: 2;
}

.recruit-header{
    background: url(../images/recruit/recruit_header.png) center;
    background-size: cover;
}

h2.profile-heading{
    font-size: 1.5rem;
    margin-bottom: 1.0em;
    justify-content: flex-start;
}

.profile-heading-lead {
  position: relative;
  border-bottom: 1px solid #D5D7D9;
  padding-bottom: 30px;
  margin-bottom: 0;
  text-align: left;
}

.profile-heading-lead:before {
  position: absolute;
  bottom: -1px;
  width: 110px;
  height: 1px;
  display: block;
  content: "";
  background: var(--design-main);
}

#member-profiles .container{
    padding: 60px 5%;
}

.profile-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.member-card {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #d5d7d9;
    align-items: center;
    flex-direction: column;
}

.profile-photo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-body {
    flex: 1;
}

.profile-header {
    margin-bottom: 10px;
}

.profile-name {
    display: flex;
    align-items: center;
    gap: 11px;
}

.profile-name .jp {
    font-size: 1.25reｍ;
    font-weight: 600;
}

.profile-name .en {
    font-size: 0.875rem;
    color: #3D487C;
}

.profile-tags {
    padding: 0;
    display: inline-flex;
    gap: 20px;
    background: #FAFAFA;
    padding: 0 10px;
}

.profile-tags li {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--design-base);
    line-height: 2;
    font-size: 0.875rem;
}

.profile-text {
    line-height: 2;
    color: var(--design-text);
    font-size: 0.875rem;
}

.recruit-cta {
    margin-top: 80px;
    padding: 30px 5%;
    text-align: center;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}

h3.cta-heading{
    font-size: 1.25rem;
    margin: 0;
}

.cta-button .arrow {
    font-size: 1.2rem;
}

.recruit-cta .recruit-btn{
    width: 90%;
    text-align: left;
    background: #fff;
    padding: 14px 20px;
    font-size: 1rem;
    text-align: center;
}

.recruit-btn:after {
    content: url(../images/outerLink.svg);
    position: absolute;
    right: 20px;
    top: 57%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

#faq .container{
    padding: 40px 0;
}

.faq-header{
    background: url(../images/faq_header.png) center;
    background-size: cover;
}

.faq-container {padding: 20px 5%;}

.faq-item {
    border: 1px solid #D5D7D9;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.faq-item .accordion-header {
    padding: 20px 5%;
    margin-bottom: 0;
    background-color: #fff;
    line-height: 2;
}

.faq-item .accordion-header.is-open{
    padding: 20px 5% 10px;
}

.faq-item .accordion-header h3 {
    font-size: 1.0rem;
    font-weight: bold;
    width: 95%;
}

.faq-answer {
    background-color: #fff;
    padding: 0 5% 20px;
}

.faq-answer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--design-text);
    line-height: 2;
    padding: 20px;
    background: #FAFAFA;
}

.faq-item .accordion-header.is-open {
}

.privacy .container{
    padding: 60px 5%;
}

.privacy-header{
    background: url(../images/privacy_header.png) center;
    background-size: cover;
}
.privacy-line{
    width: 100%;
    height: 1px;
    background: #D5D7D9;
    margin: 20px 0;
}

.privacy-container{
    width: 100%;
    margin: auto;
    font-size: 0.875rem;
    color: var(--design-text);
    line-height: 2;
}


.privacy-container .box{
    margin-bottom: 20px;
}


.container-blog-service{
    width: 100%;
    margin: 0 auto 60px;
    padding: 0 3%;
}

.container-blog-service h2{
  position: relative;
  border-bottom: 1px solid #D5D7D9;
  padding-bottom: 30px;
  margin-bottom: 0;
  text-align: left;
  margin-bottom: 40px;
  justify-content: flex-start;
}

.container-blog-service h2:before {
  position: absolute;
  bottom: -1px;
  width: 100px;
  height: 1px;
  display: block;
  content: "";
  background: var(--design-main);
}

.topics-header{
    background: url(../images/topics-header.png) center;
    background-size: cover;
}

.blog-header{
    background: url(../images/topics-header.png) center;
    background-size: cover;
}

.column-header{
    background: url(../images/column-header.png) center;
    background-size: cover;
}

.blog-wrap{
    display: flex;
    gap: 30px 2%;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto 60px;
}

.blog-wrap .box{
    width: 49%;
}

.blog-wrap .box .img-box{
    margin-bottom: 10px;
    position: relative;
}

.blog-wrap .box .img-box img{
    width: 100%;
}

.blog-wrap .box p{
    color: var(--design-main);
    font-size: 0.875rem;
    line-height: 2;
}

.blog-wrap .box .data{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-wrap .box .category{
    color: #fff;
    background: var(--design-base);
    padding: 5px 8px;
    line-height: 1;
    font-size: 0.625rem;
}

.blog-wrap .box .day{
    font-size: 0.75rem;
}

.blog-wrap .box .new{
    color: var(--design-main);
    font-size: 0.875rem;
    line-height: 1;
    padding: 7px 10px;
    background: #fff;
    position: absolute;
    top:0;
    left: 0;
}

.content-btn-wrap{
    display: flex;
    justify-content: center;
}

.blog-content-btn{
    width: auto;
    width: 75%;
}

.blog-content-btn span{
    text-align: center;
}

.single-blog-content{padding: 60px 3%;}

.single-blog-content .container{
    width: 100%;
    margin: auto;
    color: var(--design-main);
    padding: 0;
}

.single-blog-content .container .data{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    gap: 24px;
}

.single-blog-content .container .data .category{
    color: #fff;
    background: var(--design-base);
    padding: 5px 8px;
    line-height: 1;
    font-size: 0.625rem;
}

.single-blog-content .container .data .category .day{
    
}

.single-blog-content .container .post{
    font-size: 0.875rem;
}

.single-blog-content .container h2{
    font-size: 1.25rem;
    line-height: 2.0;
    margin-bottom: 40px;
    text-align: center;
    justify-content: center;
}

.single-blog-content h3{
  position: relative;
  border-bottom: 1px solid #D5D7D9;
  padding:15px 0 20px;
  margin-bottom: 0;
  text-align: left;
  margin-bottom: 20px;
}

.single-blog-content h3:before {
  position: absolute;
  bottom: -1px;
  width: 176px;
  height: 1px;
  display: block;
  content: "";
  background: var(--design-main);
}

.single-blog-content .main-img{
    margin-bottom: 40px;
    text-align: center;
}

.single-blog-content p{
    line-height: 2;
    font-size: 0.9rem;
    margin-bottom: 2em;
}

.single-blog-content img{
    margin:1rem 0 2rem;
}
.single-blog-content .block{
    background: #fafafa;
    padding: 20px;
    margin-bottom: 2em;
}

.single-blog-content ol{
	counter-reset: listnum;
	list-style: none;
    margin-bottom: 2em;
}

.single-blog-content ol li::before{
	counter-increment: listnum;
	content: counter(listnum) "."; 
	padding-right: 16px;
	color: var(--design-main);
}

.single-blog-content ol li{
	 margin-bottom: 10px;
	text-indent: -2em;
	padding-left: 2em;
	word-break: break-all;
}

.single-blog-content ul{
	list-style: none;
    margin-bottom: 2em;    
}

.single-blog-content ul li{
	margin-bottom: 10px;
	text-indent: -2em;
	padding-left: 2em;
	word-break: break-all;
}

.single-blog-content ul li:before {
	font-family: "Font Awesome 5 Free";
	color: var(--design-main);
	content: "●";
    padding-right: 16px;
}

.single-blog-content ul li ul{
  padding-left: 1em;
}

.single-blog-content .tour-data{

}

.single-blog-content .tour-data .box{
    margin-bottom: 24px;
}

.single-blog-content .tour-data .info{
    font-weight: var(--fw-bold);
    letter-spacing: 0.04em;
    line-height: 2;
    padding: 10px 16px;
    background: #f7f7f7;
    margin-bottom: 10px;
}

.single-blog-content .tour-data .detail{

}


.single-blog-content .container.column{
    width: 1200px;
    max-width: 71.66%;
    margin: auto;
    color: var(--design-main);
    display: flex;
    gap: 60px;
}

.single-blog-content .column-post{
    width: 860px;
}

.single-blog-content .side{
    width: 280px;
    max-width: 100%;
}

.single-blog-content .side form{
    margin-bottom: 45px;
}

.single-blog-content .side .blog-wrap{
    width: 100%;
    flex-direction: column;
    gap:40px
}

.single-blog-content .side .blog-wrap .box{
    width: 100%;
}

.single-blog-content .side .blog-wrap .data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.single-blog-content .side .blog-wrap img{
    margin: 0 0 0;
}

.single-blog-content .side .blog-wrap .data{

}

.single-blog-content .side .blog-wrap .category{
    font-size: 0.625rem;
}

.single-blog-content .side .blog-wrap .day{
    font-size: 0.75rem;    
}

.single-blog-content .side .blog-wrap .box p{
    margin: 0;
}

.single-blog-content .side h4{
    font-size: 1.25rem;
    border-bottom: 1px solid var(--design-main);
    line-height: 2;
    margin: 8px 0 30px;
}

.single-blog-content .container .data .category.single-category{
    font-size: 0.875rem;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-field {
    width: 100%;
    height: 41px;
    padding: 0 50px 0 20px;
    border: 1px solid var(--design-main);
    border-radius: 25px; 
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
}

.search-submit {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 18px; 
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.search-submit img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.container.column-archive{
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.section-blog-content .container{
    padding: 40px 0;
}

.blog-wrap-archive{
    width: 660px;
    display: flex;
    gap:60px 20px;
    flex-wrap: wrap;
}

.blog-wrap-archive .box{
    width: calc((100% - 20px) / 2);
}


.blog-wrap-archive img{
    margin: 0 0 0;
    width: 100%;
    object-fit: cover;
}

.single-blog-content .blog-wrap-archive .data{
    justify-content: space-between;
    margin: 10px 0 2px 0;
}

.blog-wrap-archive.category{
    font-size: 0.625rem;
}

.blog-wrap-archive .day{
    font-size: 0.75rem;    
}

.blog-wrap-archive .box p{
    margin: 0;
}

.blog-wrap-archive .box{
    position: relative;
    align-items: flex-start;
}

.blog-wrap-archive .box .new {
    color: var(--design-main);
    font-size: 0.875rem;
    line-height: 1;
    padding: 7px 10px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-header{
    background: url(../images/contact_header.png) center;
    background-size: cover;
}

.section-voice{
    position: relative;
}

#js-voice-toggle.is-open{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
