@charset "UTF-8";

/** top contents **/
.top .wrap-mv {
    z-index: -1;
    position: relative;
}
.top .wrap-mv-cont {
    width: 100%;
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/mv_img01.jpg) no-repeat center top/cover;
    position: relative;

}
.top .wrap-mv-cont::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.3;
}
.top .wrap-mv-cont .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 動画を背景にフィットさせる */
    /*z-index: -1; */
}
.top .wrap-mv-caption {
    position: absolute;
    bottom: 6.25rem;
    left: 6.25rem;
}
.top .wrap-mv-caption .txt-en-01 {
    font-size: 5rem;
    line-height: 1.2;
    font-weight: normal;
}
.top .wrap-mv-caption p {
    font-size: 1.25rem;
    padding-top: 2.3rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .top .wrap-mv-cont {
        background: url(../images/mv_img01.jpg) no-repeat 60% top/cover;
    }
    .top .wrap-mv-caption {
        left: 0;
        padding: 0 1.75rem;
    }
    .top .wrap-mv-caption .txt-en-01 {
        font-size: 3.5rem;
        font-weight: normal;
    }
    .top .wrap-mv-caption p {
        font-size: 1rem;
        padding-top: 1.56rem;
    }
}

/* sec about*/
.top .sec-about {
    padding-top: 7rem;
    padding-bottom: 7rem;
    position: relative;
}
.top .sec-about .grid-box {
    max-width: 1600px;
    display: grid;
    grid-template-columns: 36% 57%;
    justify-content: space-between;
    box-sizing: border-box;
}
.top .sec-about-facility {
 font-size: 6rem;
 font-size: clamp(3rem, 6vw, 6rem);
 position: absolute;
 left: 0;
 color: #A78F45;
 writing-mode: vertical-rl;
 opacity: 0.2;
 line-height: 1;
 margin-left: -18px;
}
.top .sec-about .grid-box {
    position: relative;
    z-index: 0;
}
.top .sec-about .grid-box::after {
    content: "";
    display: block;
    width: 100%;
    height: 74%;
    background-color: #EDE9E1;
    position: absolute;
    z-index: -1;
    right: -18.3vw;
    top: 6.5rem;
}
.top .sec-about-caption {
   /* padding-bottom: 19rem;*/
    padding-bottom: 0rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 462px;
    margin-inline: auto 0;
    padding-left: 10%;
}

@media (max-width: 1500px) {
    .top .sec-about-caption {
        padding-bottom: 0rem;
    }
}
@media (max-width: 1350px) {
    .top .sec-about .grid-box {
        grid-template-columns: 39% 57%;
    }
}
/*@media (min-width: 1601px) {
    .top .sec-about .grid-box {
        grid-template-columns: 34% 57%;
    }
    .top .sec-about-caption {
        padding-bottom: 0rem;
        padding-left: 0;
    }
}*/
.top .sec-about-caption .link-txt-buff {
    text-align: right;
}
.top .sec-about figure {
    z-index: 10;
}
.top .sec-about h2 {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 3.125rem;
}
.top .sec-about h3 {
    font-size: 1rem;
    padding-bottom: 4rem;
}
@media (max-width: 900px) {
    .top .sec-about {
        z-index: -1;
        padding-bottom: 4rem;
        padding-top: 8.6rem;
    }
    .top .sec-about .grid-box {
        display: block;
    }
    .top .sec-about-caption {
        padding-left: 2.8rem;
        padding-bottom: 2rem;
    }
    .top .sec-about h2 {
        font-size: 1.5rem;
        line-height: 1.5;
    }
    .top .sec-about h3 {
        font-size: 14px;
        line-height: 2;
        font-weight: 500;
        padding-bottom: 2.5rem;
    }
    .top .sec-about-facility {
        font-size: 4rem;
        margin-left: -13px;
        top: 12rem;      
    }
    .top .sec-about figure {
        width: calc(100% + 56px);
        margin-left: -28px;
    }
    .top .sec-about .grid-box::after {
        top: -4rem;
    }
}
/*sec slider*/
.top .sec-photo {
    width: 100%;
    padding-bottom: 10rem;
}
.top .slider {
    width: 100%;
}
.top .slider .img {
    padding: 0 12px;
}
.top .slick-slide img {
    width: 452px; 
    height: auto;
}
@media (max-width: 900px) {
    .top .sec-photo {
        z-index: -1;
        position: relative;
    }
    .top .slick-slide img {
    width: 283px; 
    height: auto;
  }
  .top .sec-photo {
    width: 100%;
    padding-bottom: 6rem;
  }
}

/*sec-facility*/
.top .sec-facility {
    justify-content: center;
    align-items: center;

}
.top .sec-facility .box-left, .top .sec-facility .box-right {
    width: 50%;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top .sec-facility .box-left .txt-white, .top .sec-facility .box-right .txt-white {
    font-size: 1.75rem;
}
.top .sec-facility .box-left {
    background: url(../images/facility_img01.jpg) no-repeat center;
    background-size: cover;
}
.top .sec-facility .box-right {
    background: url(../images/facility_img02.jpg) no-repeat center;
    background-size: cover;
}
.top .sec-facility .text-box {
    text-align: center;
}
@media (max-width: 900px) {
    .top .sec-facility .box-left, .top .sec-facility .box-right {
    width: 100%;
    height: 149px;
    font-size: 1.125rem;
    }
    .top .sec-facility .box-left {
        border-bottom: 2px solid white;
        background: url(../images/facility_img01.jpg) no-repeat center top / cover;
    }
    .top .sec-facility .box-left .txt-white,.top  .sec-facility .box-right .txt-white {
        font-size: 1.125rem;
        }
}

/*sec fukuyama*/
.top .sec-fukuyama {
    padding-top: 15.625rem;
    background: #F2F0EC url(../images/map_img.png) no-repeat center top/contain;
    padding-bottom: 15rem;
}
.top .sec-fukuyama .row{
    justify-content: flex-end;
}
.top .sec-fukuyama .text-box {
    width: 50%;
    position: relative;
    padding-bottom: 10rem;
    max-width: 466px;
    padding-right: 85px;
}
.top .sec-fukuyama .text-box h2 {
    font-size: 2rem;
    padding-bottom: 2.75rem;
}
.top .sec-fukuyama .text-box h2 .title-en {
    display: block;
    font-size: 1.3rem;
    color: #B49531;
    font-family: 'Cormorant', serif;
}
.top .sec-fukuyama .text-box p {
    letter-spacing: 0;
    padding-bottom: 3.65rem;
}
.top .content-links-area {
    display: flex;
    gap: var(--column-gap);
    --column-gap: 3.5%; /* カラム間のスペース */
    flex-wrap: wrap; 
    width: 100%; 
}
.top .sec-fukuyama .text-wrap {
    padding-top: 2.18rem;
}
.top .sec-fukuyama .text-wrap h3 {
    font-size: 1.3rem;
}
.top .sec-fukuyama .text-wrap p {
    font-size: 14px;
    padding-bottom: 1.6rem;
    padding-top: 10px;
}
.top .sec-fukuyama .text-wrap h3,.top .sec-fukuyama .text-wrap p {
    text-align: left;
}
@media (max-width: 900px) {
    .top .sec-fukuyama {
        padding-top: 8.8rem;
        background: none;
        position: relative;
        z-index: 0;
        background-color: #F2F0EC;
        padding-bottom: 6rem;
        z-index: -1;
        position: relative;
    }
    .top .sec-fukuyama::after {
        content: "";
        width: 1121px;
        height: auto;
        position: absolute;
        left: -4%;
        top: 0;
        background: #F2F0EC url(../images/map_img.png) no-repeat center top -110px/contain;
        z-index: -1;
        height: 810px;
    }
    .top .sec-fukuyama .text-box {
        width: 100%;
        padding-right: 0;
        padding-bottom: 3.875rem;
    }
    .top .sec-fukuyama .text-box h2{
        font-size: 1.5rem;
        padding-bottom: 1rem;
    }
    .top .sec-fukuyama .text-box h2 .title-en {
        font-size: 1.1rem;
    }
    .top .sec-fukuyama .text-box p {
        letter-spacing: 0.1px;
        font-size: 0.875rem;
        padding-bottom: 0.65rem;
    }

}
@media (max-width: 480px) {
    .top .content-links-area .col-4{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .top .content-links-area .col-4:not(:nth-child(1)) {
        padding-top: 3rem;
    }
    .top .sec-fukuyama .text-wrap {
        padding-top: 1.56rem;
    }
    .top .sec-fukuyama .text-wrap h3 {
        font-size: 1.125rem;
    }
    .top .sec-fukuyama .text-wrap p {
        padding-bottom: 0rem;
    }
}

/*bg*/
@media (max-width: 900px) {
    .top .bg.bg01 {
        background: url(../images/bg_ph01_sp.jpg) no-repeat center / cover;
        height: 242px;
    }
}

/*sec history*/
.top .sec-history {
    padding-top: 7rem;
    padding-bottom: 7rem;
    position: relative;
}
.top .sec-history-text {
 font-size: clamp(3rem, 6vw, 6rem);
 position: absolute;
 left: 0;
 color: #A78F45;
 writing-mode: vertical-rl;
 opacity: 0.2;
 line-height: 1;
 margin-left: -18px;
}
.top .sec-history .grid-box {
    max-width: 1600px;
    display: grid;
    grid-template-columns: 36% 57%;
    justify-content: space-between;
    box-sizing: border-box;
}
.top .sec-history .grid-box::after {
    content: "";
    display: block;
    width: 100%;
    height: 83.5%;
    background-color: #EDE9E1;
    position: absolute;
    z-index: -1;
    right: -19.5vw;
    top: 3.9rem;
}
.top .sec-history .grid-box {
    position: relative;
    z-index: 0;
}
.top .sec-history-caption {
    padding-bottom: 9rem;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 460px;
    margin-inline: auto 0;
    padding-left: 10%;
}
.top .sec-history-caption .link-txt-buff {
    text-align: right;
}
.top .sec-history figure {
    z-index: 10;
}
.top .sec-history figure img {
}
.top .sec-history h2 {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 3.125rem;
}
.top .sec-history h3 {
    font-size: 1rem;
    padding-bottom: 4rem;
}

@media (max-width: 1500px) {
    .top .sec-history-caption  {
        padding-bottom: clamp(0rem, 4rem, 9rem);
    }
}
@media (max-width: 900px) {
    .top .sec-history {
        padding-top: 11rem;
        padding-bottom: 6.5rem;
        z-index: -1;
        position: relative;
    }
    .top .sec-history .grid-box {
        display: block;
        padding-left: 2.8rem;
    }
    .top .sec-history .grid-box::after {
        top: -4.5rem;
      }
    .top .sec-history-caption {
        padding-left: 1.6875rem;
        padding-bottom: 2rem;
    }
    .top .sec-history h2 {
        font-size: 1.5rem;
        line-height: 1.5;
        margin-bottom: 1.8rem;
    }
    .top .sec-history h3 {
        font-size: 14px;
        line-height: 2;
        font-weight: 500;
        padding-bottom: 2.5rem;
    }
    .top .sec-history-text {
        font-size: 4rem;
        margin-left: -13px;
        top: 15.7rem;
    }
    .top .sec-history figure {
        width: calc(100% + 56px);
        margin-left: -28px;
    }
}

/*sec news*/
.top .sec-news {
    padding-top: 6rem;
    padding-bottom: 5.5rem;
}
.top .sec-news .title-wrap {
    position: relative;
}
.top .link-archive {
    /*position: relative;*/
    right: 0px;
    top: -78px;
    transition: 0.3s;
    opacity: 0.5;
    padding-right: 55px;
    display: flex;
    justify-content: flex-end;
    color: #B49531;
    width: 175px;
    position: absolute;
    top: 4.9rem;
}
.top .link-archive::after {
    content: "";
    display: block;
    width: 48px;
    height: 1px;
    background-color: #B49531;
    position: absolute;
    right: 0;
    top: 14px;
}
.top .link-archive:hover {
    opacity: 1;
}
.top .sec-news .title-sec-en {
    padding-bottom: 2.875rem;
}
.top .sec-news .cont-wrap {
    gap: var(--column-gap); 
    --column-gap: 3.5%;
}
.top .sec-news .box-left .img-wrap {
    position: relative;
    width: 100%; 
    padding-top: calc(100% / 1.41); /* アスペクト比 */
    background-color: #D0D0D0; 
    overflow: hidden;
    margin-bottom: 24px;
}
.top .sec-news .box-left .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.top .sec-news .tag {
    background-color: #B49531;
    color: white;
    font-size: 12px;
    padding: 3px;
    margin-right: 5px;
}
.top .sec-news .tag a {
    color: white;
}
.top .sec-news .box-right .post-sub.grid-box {
    display: grid;
    grid-template-columns: 30% 66%;
    gap: 4%;
}
.top .sec-news .box-right .news-sub-img {
    position: relative;
    width: 100%; 
    padding-top: calc(100% / 1.41); /* アスペクト比 */
    overflow: hidden;
}
.top .sec-news .box-right .news-sub-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    background-color: #D0D0D0; 
}
.top .sec-news .box-left .post-meta {
    padding-bottom: 6px;
}
.top .box-right .post-sub {
    padding: 2.5rem 0;
    border-bottom: 1px solid #CECAC3;
}
.top .box-right .post-sub:first-child {
    padding: 0% 0 2.5rem;
}
.top .sec-news time {
    padding-right: 15px;
}
@media (max-width: 1300px) {
    .top .sec-news .box-right .news-sub-img img {
        max-height: 117px;
    }
}
@media (max-width: 1050px) {
    .top .sec-news .box-right .news-sub-img img {
        max-height: 96px;
    }
}
@media (max-width: 900px) {
    .top .sec-news {
        padding-top: 3rem;
        padding-bottom: 4rem;
        z-index: -1;
        position: relative;
    }
    .top .title-sec-en span {
        padding-top: 3px;
    }
    .top .link-archive {
        font-size: 0.8125rem;
        opacity: 1;
        top: 3rem;
    }
    .top .link-archive::after {
        top: 11px;
    }
    .top .sec-news .title-sec-en {
        padding-bottom: 2.2rem;
    }
    .top .sec-news .box-right .news-sub-img {
        padding-top: calc(100% * (84 / 112)); /* 画像の高さ ÷ 幅 */
    }
    .top .sec-news .box-right .news-sub-img img {
       /* max-height: unset;*/
    }
    .top .sec-news .box-right .post-sub.grid-box {
        display: grid;
        grid-template-columns: 35% 57.5%;
        gap: 7.5%;
    }
    .top .sec-news  .box-right .post-sub.grid-box .post-meta {
        margin-top: -12px;  
    }
    .top .sec-news .tag-wrap {
        line-height: 1;
        padding-top: 9px;
    }
    .top .sec-news .tag {
        font-size: 11px;
    }
    .top .sec-news .post-text {
        font-size: 0.875rem;
        line-height: 1.7;
        padding-top: 1rem;
    }
    .top .box-right .post-sub {
        padding: 2rem 0;
    }
    .top .box-right .post-sub:first-child {
    padding: 0% 0 2rem;
    }
}

@media (max-width: 375px) {
    .top .sec-news .box-right .news-sub-img, .top .sec-news .box-right .news-sub-img img {
        height: 84px;
    }
}



/** second  page  共通**/
.wrap-mv {
    z-index: -1;
    position: relative;
}
.wrap-mv-cont {
    width: 100%;
    height: calc(100vh - 5.14479rem); 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.wrap-mv-cont::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.3;
}
.wrap-mv-cont .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 動画を背景にフィットさせる */
    /*z-index: -1; */
}
.wrap-mv-caption-center {
    position: absolute;
    top: calc(50% - 5.14479rem);
    left: 50%;
    transform: translate(-50%);
}
.wrap-mv-caption-center h2 {
 font-size: 2.5rem;
}
.wrap-mv-caption-center .txt-en-01 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: normal;
    text-align: center;
}
/*experience*/
.experience .wrap-mv-cont {
    background: url(../images/mv_img02.jpg) no-repeat center top/cover;
}
.experience .sec-concept {
    padding-top: 7.375rem;
    position: relative;
}
.experience .sec-concept::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #EDE9E1;
    position: absolute;
    z-index: -1;
    right: -22.375rem;
    top: 0;
}
.experience .sec-concept .container {
    max-width: 1600px;
    box-sizing: border-box;
    padding-right: 0;
    position: relative;
}
.experience .sec-concept .grid-box {

    display: grid;
    grid-template-columns: 28.2% 61.2%;
    justify-content: space-between;

}
.experience .sec-concept .grid-box {
    position: relative;
    z-index: 0;
    padding-bottom: 9.125rem;
}
.experience .sec-concept .grid-box figure {
    padding-left: 7.5rem;
    margin-right: -80px;
}
.second .sec-concept-caption {
    padding-top: 8.9375rem;
    min-width: 412px;
    padding-left: 5rem;
    /*padding-left: clamp(2rem, 5vw, 176px);*/
}
@media (max-width: 1200px) {
    .second .sec-concept-caption {
        /*padding-left: clamp(2rem, 5vw, 176px);*/
        min-width: 350px;
    }
}
@media (max-width: 1100px) {
    .second .sec-concept-caption {
        min-width: 350px;
    }
    .experience .sec-concept .grid-box figure {
        align-content: center;
        display: inline;
    }
}
.second .sec-concept-caption h2 {
    font-size: 1.875rem;
    line-height: 1.6;
    padding-bottom: 3.75rem;
}
.second .sec-concept-caption .sub-title {
    font-size: 1.125rem;
    padding-bottom: 1.875rem;
    letter-spacing: -0.1rem;
}
.second .sec-concept-caption h3 {
    padding-bottom: 4.4375rem;
}
.second .sec-concept-caption .link-txt-buff {
    text-align: right; 
    font-size: 0.875rem;
    display: flex;
    justify-content: flex-end;
}
.experience .grid-box02 {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: space-between;
    box-sizing: border-box;
}
.experience .sec-concept .grand-message {
    padding-bottom: 21rem;
}
.experience .sec-concept .grand-message .text-box {
    padding-left: clamp(2rem, calc(2rem + 5vw), 7rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 439px;
}
.experience .sec-concept .grand-message h3 {
   font-size: 2rem;
   line-height: 1.4;
   padding-bottom: 4.1rem;
}
.experience .sec-castle, .experience .sec-sujiganegomon,
.experience .sec-tsukimiyagura, .experience .sec-fukujukaikan ,
.experience .sec-oyudono {
    padding-bottom: 11rem;
}
/*.experience .sec-castle .container02::after {
    content: "";
    display: block;
    height: 640px;
    width: calc(100% + 160px);
    background: url(../images/experience_img02.jpg) no-repeat  center/ cover;
    position: absolute;
    top: 8.25rem;
}
.experience .sec-castle .content-wrap {
    padding-top: 640px;
}*/
.experience .sec-castle figure, 
.experience .sec-sujiganegomon figure,
.experience .sec-tsukimiyagura figure,
.experience .sec-fukujukaikan figure,
.experience .sec-oyudono figure {
    width: calc(100% + 80px);
    padding-top: 3rem;
}
.experience .sec-castle .box-wrap,.experience .sec-sujiganegomon .box-wrap, .experience .sec-tsukimiyagura .box-wrap,
.experience .sec-fukujukaikan .box-wrap,.experience .sec-oyudono .box-wrap {
    display: grid;
    grid-template-columns: 66% 34% ;
    align-items: center;
    margin-top: -80px;
    background: #F2F0EC;
    position: relative;
    align-items: stretch;
}
.experience .sec-castle .box-wrap .box-l, .experience .sec-sujiganegomon .box-wrap .box-l ,
.experience .sec-tsukimiyagura .box-wrap .box-l,
.experience .sec-fukujukaikan .box-wrap .box-l,
.experience .sec-oyudono .box-wrap .box-l
 {
    padding: 5rem 0rem 8rem 4.5625rem;
    line-height: 2;
}
.experience .sec-castle .box-wrap .box-r h3, .experience .sec-sujiganegomon .box-wrap .box-r h3,
.experience .sec-tsukimiyagura .box-wrap .box-r h3,
.experience .sec-fukujukaikan .box-wrap .box-r h3 ,
.experience .sec-oyudono .box-wrap .box-r h3 {
    font-size: 1.3125rem;
    padding-bottom: 0.5rem;
}
.experience .sec-castle .box-wrap .box-r,
.experience .sec-sujiganegomon .box-wrap .box-r,
.experience .sec-tsukimiyagura .box-wrap .box-r,
.experience .sec-fukujukaikan .box-wrap .box-r,
.experience .sec-oyudono .box-wrap .box-r
 {
     padding: 5rem 5rem 8rem 5rem;
     align-content: center;
}
.experience .sec-castle .box-wrap .box-l p, .experience .sec-sujiganegomon .box-wrap .box-l p,
.experience .sec-tsukimiyagura .box-wrap .box-l p,
.experience .sec-fukujukaikan .box-wrap .box-l p,
.experience .sec-oyudono .box-wrap .box-l p{
    padding-right: 5rem;
    border-right: 1px solid #CECAC3;
}

/*
.experience .sec-castle .box-wrap .box-r,
.experience .sec-sujiganegomon .box-wrap .box-r,
.experience .sec-tsukimiyagura .box-wrap .box-r,
.experience .sec-fukujukaikan .box-wrap .box-r,
.experience .sec-oyudono .box-wrap .box-r
 {
    border-left: 1px solid #CECAC3;
     padding: 1.75rem 5.375rem;
}
.experience .sec-sujiganegomon .box-wrap .box-r {
    height: calc(100% - 13rem);
}*/
.experience .sec-castle .box-wrap  .box-r >ul>li,
.experience .sec-sujiganegomon .box-wrap  .box-r >ul>li,
.experience .sec-tsukimiyagura .box-wrap  .box-r >ul>li,
.experience .sec-fukujukaikan .box-wrap  .box-r >ul>li,
.experience .sec-oyudono .box-wrap  .box-r >ul>li {
    position: relative;
    padding-left: 15px;
}
.experience .sec-castle .box-wrap  .box-r >ul>li::after,
.experience .sec-sujiganegomon .box-wrap  .box-r >ul>li::after,
.experience .sec-tsukimiyagura .box-wrap  .box-r >ul>li::after,
.experience .sec-fukujukaikan .box-wrap  .box-r >ul>li::after,
.experience .sec-oyudono .box-wrap  .box-r >ul>li::after
 {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #B49531;
    position: absolute;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0px;
}
.experience .sec-castle .img-box-wrap,
.experience .sec-sujiganegomon .img-box-wrap,
.experience .sec-tsukimiyagura .img-box-wrap,
.experience .sec-fukujukaikan .img-box-wrap,
.experience .sec-oyudono .img-box-wrap {
    gap: var(--column-gap); 
    --column-gap: 17px;
}
.experience .sec-schedule {
    padding-left: 160px;
    padding-top: 6rem;
    padding-bottom: 7rem;
}

.experience .sec-schedule .slick-wrap {
    position: relative;
    padding-top: 3rem;
}
.experience .sec-schedule .slick-wrap  .slick-btn-wrap {
    position: absolute;
    right: 80px;
    top: -3rem;
    z-index: 10;
    padding-bottom: 2.9rem;
}
.slick-btn-wrap .custom-prev, .slick-btn-wrap .custom-next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #CECAC3;
    color: #4D463C;
    font-size: 16px;
    margin-right: 5px;
    margin-left: 5px;
}
.experience .sec-schedule .slide-item .img-wrap {
    max-width: 474px;
    height: auto;
    aspect-ratio: 474 / 336;
    position: relative;
}
.experience .sec-schedule .container02 {
padding-right: 0;
}
.experience .sec-schedule .slide-item >.img-wrap >img {
width: 100%;
height: 100%;
object-fit: cover;
}
.experience .schedule-label {
position: absolute;
bottom: 10px;
left: 10px;
color: white;
padding: 5px 10px;
font-size: 14px;
border-radius: 5px;
}
.experience .schedule-label {
    font-size: 1.3rem;
    font-family: 'Cormorant', serif;
    font-style: italic;
    line-height: 1;
    padding-bottom: 1.875rem;
}
.experience .schedule-label .time {
    font-size: 2.5rem;
    display: block;
    padding-left: 3.5rem;
    margin-top: -0.5rem;
}
.experience .schedule-label .day-wrap {
    position: relative;
}
.experience .schedule-label .slash {
    position: absolute;
    bottom: -12px;
    transform: rotate(46deg);
    height: 27px;
    width: 1px;
    background-color: white;
}
.experience .sec-schedule .text-wrap {
    padding: 2rem 1.9rem 0;
    width: 100%;
    max-width: 474px;
    box-sizing: border-box;
}
.experience .sec-schedule .text-wrap .title {
font-size: 1.3125rem;
}
.title02 {
    padding-top: 1rem;;
}
.experience .sec-schedule .text-wrap .description {
font-size: 0.875rem;
padding-top: 0.45rem;
}
