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

/* sec-mv ------------------------------------ */
.sec-mv {
    position: relative;
    z-index: 0;
    width: 100%;
}
.sec-mv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 440px;
    background: linear-gradient(to bottom, #fff3cd, #ffe79d);
}
.sec-mv .slide-item {
    height: 470px;
    margin: 0 15px;
    display: flex;
    align-items: flex-end;
    box-sizing: content-box;
}
.sec-mv .slide-items .slide-item a {
    display: flex; /* FireFoxのテキスト縦書き'margin: 0 auto;'挙動対策の為、flexにて中央寄せ */
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transition: height 0.28s ease;
}
.sec-mv .common-img {
    width: clamp(70px, 60%, 100px) ;
    aspect-ratio: 10 / 9;
    margin: 0 auto 25px;
    flex: 0 0 auto;
}
.sec-mv .common-img > img {
    width: 60%;
    aspect-ratio: 1 / 1;
}
.sec-mv .txt-area {
    padding-bottom: 80px;
    line-height: 1.5;
    -webkit-writing-mode: vertical-rl;
              -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
}
.sec-mv .icon-circle {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

/* 中央のスライド */
.sec-mv .slide-items .slide-item.slick-center a {
    height: 100%;
}

/* ドット */
.sec-mv .slick-dots-custom {
    position: absolute;
    top: 100%;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 5%;
    justify-content: center;
    gap: 10px;
}
.sec-mv .slick-dots-custom button {
    font-size: 0;
    display: block;
    width: 30px;
    height: 8px;
    border-radius: 4px;
    background-color: #dedede;
    transition: background-color 0.28s ease;
}
.sec-mv .slick-dots-custom .slick-active button,
.sec-mv .slick-dots-custom button:hover {
    background-color: #ed6c1e;
}

/* ページ読み込み直後のガタつき解消用 */
.sec-mv .slide-items {
    height: 510px;
    visibility: hidden;
}
.sec-mv .slide-items.slick-initialized {
    height: auto;
    visibility: visible;
}

@media (min-width: 768px) {
    .sec-mv .slide-items .slide-item a:hover .icon-circle {
        transform: translateX(-50%) scale(0.45);
    }
}
@media (max-width: 767px) {
    .sec-mv .slide-item {
        height: 430px;
    }
    .sec-mv .slide-items .slide-item a {
        height: 380px;
    }
}

/* sec-topics ------------------------------------ */
.sec-topics .container {
    display: flex;
}
.sec-topics .ttl-txt {
    position: relative;
    z-index: 0;
    -webkit-writing-mode: vertical-rl;
              -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
}
.sec-topics .ttl-txt .txt-en {
    position: absolute;
    top: 14%;
    left: 2%;
    z-index: -1;
    color: #fff3ce;
    letter-spacing: 0.045em;
}
.sec-topics .cont-area {
    margin-left: auto;
    width: min(84%, 1000px);
}

/* topics-cont ------ */
.sec-topics .common-nav-cat .cat-list {
    border-bottom: 10px solid #ff8d49;
}
.sec-topics .common-nav-cat .cat-list li {
	cursor: pointer;
}
.sec-topics .common-nav-cat .cat-list li > span.is-active {
    background-color: #ff8d49;
}
.sec-topics .common-nav-cat .cat-list li > span.is-active::before {
    background-color: #ff8d49;
}
.sec-topics .topics-cont .list-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.sec-topics .topics-cont .page-box {
	display: none;
}
.sec-topics .topics-cont .page-box.is-active {
	display: block;
}

/* bottom-area ------ */
.sec-topics .bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 20px;
}
.sec-topics .sns-area {
    display: flex;
    align-items: center;
    border-radius: 10px;
    background-color: #f0f0f0;
    margin-left: auto;
    margin-right: 0;
}
.sec-topics .sns-area .txt {
    line-height: 1.4;
    padding: 0 25px;
    text-align: center;
}
.sec-topics .sns-list {
    display: flex;
    align-items: center;
    height: 60px;
}
.sec-topics .sns-list li {
    height: 100%;
    min-width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}
.sec-topics .sns-list li a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec-topics .sns-list .img-wrap {
    width: 25px;
    height: 25px;
}
.sec-topics .sns-list .img-wrap img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: transform 0.28s ease;
}
.sec-topics .sns-list .img-wrap.youtube {
    width: 27px;
}

@media (min-width: 768px) {
    .sec-topics .sns-list a:hover img {
        transform: scale(1.1);
    }
}
@media (max-width: 767px) {
    .sec-topics .container {
        flex-direction: column;
        row-gap: 20px;
    }
    .sec-topics .ttl-area {
        padding-top: 20px;
    }
    .sec-topics .ttl-txt .txt-en {
        top: -74%;
        left: 1.5%;
    }
    .sec-topics .ttl-txt {
        -webkit-writing-mode: horizontal-tb;
                    -ms-writing-mode: lr-tb;
                writing-mode: horizontal-tb;
    }
    .sec-topics .cont-area {
        margin-left: 0;
        width: 100%;
    }
    .sec-topics .bottom-area {
        flex-wrap: wrap;
        row-gap: clamp(1.5rem, 1.1664rem + 0.69vw, 2rem);
    }
}

@media (max-width: 480px) {
    .sec-topics .sns-area {
        width: 100%;
		max-width: 360px;
    }
	.sec-topics .sns-area .txt {
	    padding: 0 15px;
	}
    .sec-topics .sns-list {
		flex: 1;
    }
    .sec-topics .sns-list li {
        height: 100%;
        width: calc(100% / 4);
    }
    .sec-topics .bottom-area {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 400px) {
    .sec-topics .sns-area .txt {
	    padding: 0 5px;
	}
}


/* お知らせ共通パーツ ------------------ */
.sec-topics .topics-cont .common-topics-item .list-container {
    min-height: 110px;
}
.sec-topics .topics-cont .common-topics-item .topics-txt .txt {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 767px) {
    .sec-topics .topics-cont .common-topics-item .list-container {
        min-height: auto;
    }
    .sec-topics .topics-cont .common-topics-item .topics-txt .txt {
        display: -webkit-box;
        white-space: initial;
        -webkit-box-orient: vertical;
            -moz-box-orient: vertical;
            -ms-box-orient: vertical;
                box-orient: vertical;
        -webkit-line-clamp: 2;
            -moz-line-clamp: 2;
            -ms-line-clamp: 2;
                line-clamp: 2;
    }
}


/* 共通 ---------------------------------------------- */
.sec-common .common-ttl-area {
    display: flex;
    column-gap: 30px;
}
.sec-common .common-ttl-head {
    display: flex;
    flex-direction: column;
}
.sec-common .bottom-area {
    max-width: 870px;
    margin-left: 130px;
}
@media (max-width: 767px) {
    .sec-common .common-ttl-area {
        column-gap: 20px;
    }
    .sec-common .bottom-area {
        margin-left: 100px;
    }
}
@media (max-width: 640px) {
    .sec-common .bottom-area {
        margin-left: 0;
    }
}
/* sec-library ------------------------------------ */
.sec-library {
    background-color: #fff9e5;
}
.sec-library .common-ttl-area {
    transform: translateY(-10px);
}
.sec-library .common-img {
    aspect-ratio: 10 / 11;
}
.sec-library .common-img .img {
    transform: translateY(5px);
}
.sec-library .common-ttl-head {
    justify-content: flex-end;
}
.sec-library .common-ttl-jp {
    margin-left: -5px;
}
.sec-library .container-inner {
    display: flex;
    column-gap: 20px;
}
.sec-library .container-inner .btnarea {
    flex: 1;
}
@media (max-width: 767px) {
    .sec-library .bottom-area {
        padding-left: 0;
    }
    .sec-library .container-inner {
        display: contents;
    }
}

/* sec-dispatch ------------------------------------ */
.sec-dispatch .common-ttl-area {
    transform: translateY(-10px);
    text-align: center;
}
.sec-dispatch .common-img {
    height: 60px;
    margin-left: auto;
    margin-right: auto;
}
.sec-dispatch .common-ttl-head {
    align-items: center;
}
.sec-dispatch .dispatch-list {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    column-gap: 4.2%;
    counter-reset: number 0;
}
.sec-dispatch .dispatch-list li {
    flex: 1;
}
.sec-dispatch .dispatch-list a {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 210px;
    border: 2px solid #fabe00;
    border-radius: 5px;
    transition: background-color 0.28s ease;
}
.sec-dispatch .dispatch-list a::before {
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero);
    position: absolute;
    top: 15px;
    left: 18px;
    font-size: clamp(1.4rem, 1.3328rem + 0.14vw, 1.5rem);
    color: #999;
    font-weight: bold;
}
.sec-dispatch .dispatch-list .img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    z-index: 0;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-color: #fabe00;
    overflow: hidden;
}
.sec-dispatch .dispatch-list .img-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
}
.sec-dispatch .dispatch-list .img-inner {
    width: 60px;
    height: 60px;
}
.sec-dispatch .dispatch-list .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sec-dispatch .dispatch-list .icon-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
}

@media (min-width: 768px) {
    .sec-dispatch .dispatch-list a:hover  {
        background-color: rgba(0, 0, 0, 0.03);
    }
    .sec-dispatch .dispatch-list a:hover .icon-arrow {
        transform: translateX(10px);
    }
}
@media (max-width: 767px) {
    .sec-dispatch .dispatch-list {
        padding: 0
    }
}
@media (max-width: 640px) {
    .sec-dispatch .dispatch-list {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }
    .sec-dispatch .dispatch-list li {
        width: 100%;
    }
    .sec-dispatch .dispatch-list a {
        height: 160px;
    }
    .sec-dispatch .dispatch-list .img-wrap {
        margin-bottom: 10px;
        width: 60px;
        height: 60px;
    }
    .sec-dispatch .dispatch-list .img-inner {
        width: 40px;
    }
}
@media (max-width: 480px) {
    .sec-dispatch .dispatch-list a {
        height: 160px;
    }
}

/* sec-course ----------------------------------- */
.sec-course {
    background-color: #f9f7f2;
}
.sec-course .common-ttl-area {
    transform: translateY(-10px);
}
.sec-course .common-img {
    aspect-ratio: 10 / 11;
}
.sec-course .common-img .img {
    transform: translateY(5px);
}
.sec-course .common-ttl-head {
    justify-content: flex-end;
}
.sec-course .common-ttl-jp {
    margin-left: -2px;
}
/*.sec-course .btn-container {
    display: flex;
    align-items: center;
    column-gap: 50px;
}*/
.sec-course .main-btn {
    flex: 1;
}
.sec-course .main-btn .btn {
    width: 100%;
}
.sec-course .sub-btn {
    display: block;
}
@media (max-width: 767px) {
    .sec-course .bottom-area {
        padding-left: 0;
    }
    .sec-course .btn-container {
        row-gap: 40px;
    }
    .sec-course .main-btn {
        flex: 0 1 auto;
        width: 100%;
    }
    .sec-course .main-btn .btn {
        max-width: none;
    }
    .sec-course .sub-btn {
        margin-left: auto;
    }
}

/* sec-salon ------------------------------------ */
.sec-salon .cont-area {
    border-bottom: 2px solid #e86194;
}
.sec-salon .cont-inner {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
}
.sec-salon .common-ttl-area {
    display: flex;
    column-gap: 20px;
}
.sec-salon .common-ttl-head {
    justify-content: center;
    transform: translateY(4px);
}
.sec-salon .common-ttl-jp {
    margin-left: -2px;
}
.sec-salon .ttl-txt {
    padding-top: 25px;
}
.sec-salon .cont-area .btnarea .btn-cont::before {
    /* display: none; */
}


/* other-page ------------------------------------ */
.other-page .btnarea {
    column-gap: 10px;
}
@media (max-width: 767px) {
    .other-page .btnarea {
        flex-wrap: wrap;
        row-gap: 10px;
    }
    .other-page .btnarea .btn {
        width: 100%;
        max-width: none;
    }
}
