@charset "utf-8";
@import "./reset.css";
@import "./base.css";



.sec-ttl {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.sec-ttl span {
    display: inline-block;
    font-size: 24px;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 0 50px;
}
@media screen and (max-width: 765px) {
    .sec-ttl {
        margin-bottom: 30px;
    }
    .sec-ttl span {
        font-size: 18px;
        padding: 0 20px;
    }
}
@media screen and (max-width: 390px) {
    .sec-ttl {
        margin-bottom: 3rem;
    }
    .sec-ttl span {
        font-size: 1.8rem;
        padding: 0 2rem;
    }
}



/* header */
header.top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}
header.top.active {
    opacity: 1;
    pointer-events: all;
    transition: all .3s ease;
}
header.top .hero__btn {
    position: static;
    top: 0;
    left: 0;
}
@media screen and (max-width: 765px) {
    header.top {
        position: fixed;
        bottom: 3rem;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        transition: all .3s ease;
    }
    header.top.active {
        opacity: 1;
        pointer-events: all;
        transition: all .3s ease;
    }
    header.top .hero__btn {
        position: fixed;
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translate(-50%, 0);
    }
}



/* main */
/* hero */
.hero {
    width: 100%;
    position: relative;
}
.hero .slider {
    height: calc(100vh - 14.3rem);
    min-height: 550px;
}
.hero .slick-slider .slick-track, .slick-slider .slick-list {
    height: 100% !important;
}
.hero .slider__cnt {
    height: 100%;
    position: relative;
}
/* レスポンシブ時のレイアウト崩れ対策 */
ul.slider > li:not(:first-child) {
    display: none;
}
.hero__img {
    width: 100%;
    height: 100%;
}
.hero__img.vertical {
    width: auto;
    height: 100%;
    margin: 0 auto;
}
.hero__logo {
    width: 225px;
    position: absolute;
    top: 40px;
    left: 50px;
}
.header__logo__img {
    display: block;
    width: 100%;
    transition: all .3s ease;
}
.header__logo__img img {
    width: 100%;
}
.hero__left__txt {
    margin-top: 15px;
}
.hero__left__txt p {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
.hero__left__txt span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-top: 10px;
}
.hero__info {
    width: 300px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid #CDAD84;
    padding: 20px 0 75px 70px;
    position: absolute;
    top: 50px;
    right: 50px;
}
.hero__info__txt01 {
    font-size: 15px;
    letter-spacing: 0.05em;
}
.hero__info__price {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
}
.hero__info__price span {
    font-size: 54px;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-right: 5px;
}
.hero__info__txt02 {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    margin-top: 5px;
}
.hero__info__txt03 {
    display: block;
    width: calc(100% - 30px);
    background: #453F35;
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.08em;
    padding: 7px;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
}
.hero__info__item {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: #CDAD84;
    position: absolute;
    top: -20px;
    left: -20px;
}
.hero__info__item span {
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
}
.hero__txt {
    width: 40rem;
    background: rgba(255, 255, 255, .8);
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.7;
    padding: 30px;
    position: absolute;
    bottom: 40px;
    left: 50px;
}
.hero__btn {
    width: 300px;
    position: absolute;
    right: 50px;
    bottom: 18rem;
}
.hero__btn a {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, .25);
    transition: all .3s ease;
}
.hero__btn a:hover {
    box-shadow: none;
    transform: translate(4px, 4px);
    transition: all .3s ease;
}
.hero__btn__download {
    display: block;
    width: 100%;
    background: #453F35;
    padding: 15px 20px;
}
.hero__btn__download__point {
    display: flex;
    gap: 0 10px;
}
.hero__btn__download__point__point01 {
    color: #FFF;
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
    border: 1px solid #FFF;
    padding: 5px;
}
.hero__btn__download__point__point02 {
    color: #FFF;
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
    border: 1px solid #FFF;
    padding: 5px;
}
.hero__btn__download__index {
    width: 100%;
    background: #FFF;
    border-radius: 100px;
    padding: 7px 0;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
}
.hero__btn__download__index p {
    color: #453F35;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.5;
}
.hero__btn__download__index span {
    width: 0;
    height: 0;
    border-top: 8px solid #453F35;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}
.hero__btn__contact {
    display: block;
    background: linear-gradient(90deg, #D0A771, #E6C984);
    padding: 20px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero__btn__contact p {
    color: #FFF;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
.hero__btn__contact__item {
    width: 30px;
    height: 30px;
    background: #FFF;
    border-radius: 100%;
    position: relative;
}
.hero__btn__contact__item::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid #D0A771;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
}
/* thumbnail */
.thumbnail__wrap {
    background: #FFF;
}
.thumbnail {
    width: 85%;
    background: #FFF;
    padding: 2rem 0;
    margin: 0 auto;
}
.thumbnail__img {
    margin: 0 1rem;
    opacity: 0.6;
    aspect-ratio: 1/1 !important;
    cursor: pointer;
    transition: all .3s ease;
}
.thumbnail__img:hover {
    opacity: 1;
    transition: all .3s ease;
}
.thumbnail__img img {
    width: 100%;
    height: 100%;
}
.thumbnail .slick-prev, .thumbnail .slick-next {
    width: 5rem;
    height: 5rem;
    border: .1rem solid #453F35;
    border-radius: 100%;
}
.thumbnail .slick-prev {
    left: -5%;
}
.thumbnail .slick-prev::before {
    content: '';
    width: 1.8rem;
    height: 1rem;
    background: url('../images/slick-prev-item.svg') center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
}
.thumbnail .slick-prev:hover::before {
    left: 45%;
    transition: all .3s ease;
}
.thumbnail .slick-prev.slick-disabled, .thumbnail .slick-next.slick-disabled {
    opacity: .25;
}
.thumbnail .slick-prev.slick-disabled::before, .thumbnail .slick-next.slick-disabled::before {
    opacity: 1;
}
.thumbnail .slick-prev.slick-disabled:hover::before, .thumbnail .slick-next.slick-disabled:hover::before {
    left: 50%;
}
.thumbnail .slick-next {
    right: -5%;
}
.thumbnail .slick-next::before {
    content: '';
    width: 1.8rem;
    height: 1rem;
    background: url('../images/slick-next-item.svg') center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
}
.thumbnail .slick-next:hover::before {
    left: 55%;
    transition: all .3s ease;
}
@media screen and (max-width: 765px) {
    .hero .slider {
        height: 610px;
        min-height: 0;
    }
    .hero .slider__cnt {
        height: 100%;
    }
    .hero__img {
        width: 100%;
        height: auto;
        max-height: 220px;
        margin-top: 185px;
    }
    .hero__img.vertical {
        width: 100%;
        height: 100%;
        max-height: none;
    }
    .hero__logo {
        width: 100px;
        position: absolute;
        top: 30px;
        left: 20px;
    }
    .hero__info {
        width: 200px;
        padding: 10px 0 50px 40px;
        position: absolute;
        top: 35px;
        right: 20px;
    }
    .hero__info__txt01 {
        font-size: 11px;
    }
    .hero__info__price {
        font-size: 16px;
    }
    .hero__info__price span {
        font-size: 36px;
        margin-right: 3px;
    }
    .hero__info__txt02 {
        font-size: 10px;
        margin-top: 2px;
    }
    .hero__info__txt03 {
        width: calc(100% - 20px);
        font-size: 10px;
        padding: 4px 0;
        bottom: 7px;
    }
    .hero__info__item {
        width: 50px;
        height: 50px;
        top: -15px;
        left: -15px;
    }
    .hero__info__item span {
        font-size: 14px;
    }
    .hero__txt {
        display: none;
    }
    .hero__btn {
        width: 350px;
        top: auto;
        left: 50%;
        right: auto;
        bottom: 20px;
        transform: translate(-50%, 0);
    }
    .hero__btn a {
        box-shadow: 4px 4px 4px rgba(0, 0, 0, .25);
    }
    .hero__btn a:hover {
        transform: translate(0, 0);
    }
    .hero__btn__download {
        padding: 12px;
    }
    .hero__btn__download__point {
        gap: 0 5px;
    }
    .hero__btn__download__point__point01 {
        font-size: 10px;
        padding: 5px 4px;
    }
    .hero__btn__download__point__point02 {
        font-size: 10px;
        padding: 5px 4px;
    }
    .hero__btn__download__index {
        padding: 8px 0;
        margin-top: 10px;
        gap: 0 10px;
    }
    .hero__btn__download__index p {
        font-size: 12px;
    }
    .hero__btn__download__index span {
        border-top: 8px solid #453F35;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
    }
    .hero__btn__contact {
        padding: 15px;
        margin-top: 10px;
    }
    .hero__btn__contact p {
        font-size: 14px;
    }
    .hero__btn__contact__item {
        width: 30px;
        height: 30px;
    }
    .hero__btn__contact__item::before {
        border-left: 8px solid #D0A771;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }
    /* thumbnail */
    .thumbnail {
        width: 75%;
        padding: 1.5rem 0;
    }
    .thumbnail__img {
        margin: 0 .5rem;
    }
    .thumbnail .slick-prev, .thumbnail .slick-next {
        width: 2.5rem;
        height: 2.5rem;
        border: .1rem solid #453F35;
    }
    .thumbnail .slick-prev {
        left: -3.2rem;
    }
    .thumbnail .slick-next {
        right: -3.2rem;
    }
    .thumbnail .slick-prev::before {
        width: 1.2rem;
        height: .6rem;
    }
    .thumbnail .slick-next::before {
        width: 1.2rem;
        height: .6rem;
    }
}
@media screen and (max-width: 390px) {
    .hero .slider {
        height: 61rem;
    }
    .hero__img {
        max-height: 22rem;
        margin-top: 18.5rem;
    }
    .hero__logo {
        width: 10rem;
        top: 3rem;
        left: 2rem;
    }
    .hero__info {
        width: 20rem;
        padding: 1rem 0 5rem 4rem;
        top: 3.5rem;
        right: 2rem;
    }
    .hero__info__txt01 {
        font-size: 1.1rem;
    }
    .hero__info__price {
        font-size: 1.6rem;
    }
    .hero__info__price span {
        font-size: 3.6rem;
        margin-right: .3rem;
    }
    .hero__info__txt02 {
        font-size: 1rem;
        margin-top: .2rem;
    }
    .hero__info__txt03 {
        width: calc(100% - 2rem);
        font-size: 1rem;
        padding: .4rem 0;
        bottom: .7rem;
    }
    .hero__info__item {
        width: 5rem;
        height: 5rem;
        top: -1.5rem;
        left: -1.5rem;
    }
    .hero__info__item span {
        font-size: 1.4rem;
    }
    .hero__btn {
        width: 35rem;
        bottom: 2rem;
    }
    .hero__btn a {
        box-shadow: .4rem .4rem .4rem rgba(0, 0, 0, .25);
    }
    .hero__btn__download {
        padding: 1.2rem;
    }
    .hero__btn__download__point {
        gap: 0 .5rem;
    }
    .hero__btn__download__point__point01 {
        font-size: 1rem;
        padding: .5rem .4rem;
    }
    .hero__btn__download__point__point02 {
        font-size: 1rem;
        padding: .5rem .4rem;
    }
    .hero__btn__download__index {
        padding: .8rem 0;
        margin-top: 1rem;
        gap: 0 1rem;
    }
    .hero__btn__download__index p {
        font-size: 1.2rem;
    }
    .hero__btn__download__index span {
        border-top: .8rem solid #453F35;
        border-left: .5rem solid transparent;
        border-right: .5rem solid transparent;
    }
    .hero__btn__contact {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    .hero__btn__contact p {
        font-size: 1.4rem;
    }
    .hero__btn__contact__item {
        width: 3rem;
        height: 3rem;
    }
    .hero__btn__contact__item::before {
        border-left: .8rem solid #D0A771;
        border-top: .5rem solid transparent;
        border-bottom: .5rem solid transparent;
    }
}



/* room */
.room {
    padding: 8rem 0 10rem;
}
.room__img {
    width: 45rem;
    margin: 0 auto;
    position: relative;
}
.room__img img {
    width: 100%;
}
.room__img__item01 {
    width: 35rem;
    position: absolute;
    top: 0;
    left: -40rem;
}
.room__img__item02 {
    width: 28rem;
    position: absolute;
    top: 53%;
    left: -33rem;
    transform: translateY(-50%);
}
.room__img__item03 {
    width: 33rem;
    position: absolute;
    bottom: 0;
    left: -38rem;
}
.room__img__item04 {
    width: 25rem;
    position: absolute;
    top: 3rem;
    right: -30rem;
}
.room__img__item05 {
    width: 38rem;
    position: absolute;
    bottom: 5rem;
    right: -43rem;
}
@media screen and (min-width: 1440px) {
	.room {
        padding: 80px 0 100px;
    }
    .room__img {
        width: 450px;
    }
    .room__img__item01 {
        width: 350px;
        left: -400px;
    }
    .room__img__item02 {
        width: 280px;
        left: -330px;
    }
    .room__img__item03 {
        width: 330px;
        left: -380px;
    }
    .room__img__item04 {
        width: 250px;
        top: 30px;
        right: -300px;
    }
    .room__img__item05 {
        width: 380px;
        bottom: 50px;
        right: -430px;
    }
}
@media screen and (max-width: 768px) {
    .room {
        padding: 70px 0;
    }
    .room__img {
        width: 150px;
    }
    .room__img__item01 {
        width: 95px;
        left: -105px;
    }
    .room__img__item02 {
        width: 85px;
        left: -95px;
    }
    .room__img__item03 {
        width: 95px;
        left: -105px;
        bottom: 10px;
    }
    .room__img__item04 {
        width: 80px;
        top: 15px;
        right: -90px;
    }
    .room__img__item05 {
        width: 95px;
        bottom: 30px;
        right: -105px;
    }
}
@media screen and (max-width: 390px) {
    .room {
        padding: 7rem 0;
    }
    .room__img {
        width: 15rem;
    }
    .room__img__item01 {
        width: 9.5rem;
        left: -10.5rem;
    }
    .room__img__item02 {
        width: 8.5rem;
        left: -9.5rem;
    }
    .room__img__item03 {
        width: 9.5rem;
        left: -10.5rem;
        bottom: 1rem;
    }
    .room__img__item04 {
        width: 8rem;
        top: 1.5rem;
        right: -9rem;
    }
    .room__img__item05 {
        width: 9.5rem;
        bottom: 3rem;
        right: -10.5rem;
    }
}



/* map */
.map {
    padding: 0 0 120px;
}
.map__container {
    width: 90%;
    max-width: 1340px;
    margin: 0 auto;
}
.map__container h2::before, .map__container h2::after {
    content: '';
    width: calc(50% - 72px);
    height: 1px;
    background: #CDAD84;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.map__container h2::before {
    left: 0;
}
.map__container h2::after {
    right: 0;
}
.map__container h2 span {
    color: #CDAD84;
}
.map__exp {
    font-size: 24px;
    letter-spacing: 0.1em;
    text-align: center;
}
.map__exp span {
    display: inline-block;
}
.map__img {
    width: 100%;
    height: 500px;
    margin-top: 30px;
}
.map__img iframe {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 765px) {
    .map {
        padding: 0 0 70px;
    }
    .map__container h2::before, .map__container h2::after {
        width: calc(50% - 37px);
        height: 1px;
    }
    .map__exp {
        font-size: 16px;
        line-height: 1.5;
    }
    .map__img {
        height: 300px;
        margin-top: 20px;
    }
}
@media screen and (max-width: 390px) {
    .map {
        padding: 0 0 7rem;
    }
    .map__container h2::before, .map__container h2::after {
        width: calc(50% - 3.7rem);
        height: .1rem;
    }
    .map__exp {
        font-size: 1.6rem;
    }
    .map__img {
        height: 30rem;
        margin-top: 2rem;
    }
}



/* movie */
.movie {
    width: 100%;
    background: url('../images/movie-bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 100px 0;
}
.movie__container {
    width: 90%;
    max-width: 1340px;
    margin: 0 auto;
}
.movie__container h2::before, .movie__container h2::after {
    content: '';
    width: calc(50% - 137px);
    height: 1px;
    background: #FFF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.movie__container h2::before {
    left: 0;
}
.movie__containerh2::after {
    right: 0;
}
.movie__container h2 span {
    color: #FFF;
}
.movie__cnt {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
}
.movie__cnt iframe {
    width: 100%;
    aspect-ratio: 9/16;
}
@media screen and (max-width: 765px) {
    .movie {
        padding: 70px 0;
    }
    .movie__container h2::before, .movie__container h2::after {
        width: calc(50% - 85px);
        height: 1px;
    }
    .movie__cnt {
        max-width: 300px;
    }
}
@media screen and (max-width: 390px) {
    .movie {
        padding: 7rem 0;
    }
    .movie__container h2::before, .movie__container h2::after {
        width: calc(50% - 8.5rem);
        height: .1rem;
    }
    .movie__cnt {
        max-width: 30rem;
    }
}




/* summary */
.summary {
    padding: 100px 0;
}
.summary__container {
    width: 90%;
    max-width: 1340px;
    margin: 0 auto;
}
.summary__container h2::before, .summary__container h2::after {
    content: '';
    width: calc(50% - 97px);
    height: 1px;
    background: #CDAD84;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.summary__container h2::before {
    left: 0;
}
.summary__containerh2::after {
    right: 0;
}
.summary__container h2 span {
    color: #CDAD84;
}
.summary__exp {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 2;
}
@media screen and (max-width: 765px) {
    .summary {
        padding: 70px 0;
    }
    .summary__container h2::before, .summary__container h2::after {
        width: calc(50% - 55px);
        height: 1px;
    }
    .summary__exp {
        font-size: 16px;
        line-height: 1.7;
    }
}
@media screen and (max-width: 390px) {
    .summary {
        padding: 7rem 0;
    }
    .summary__container h2::before, .summary__container h2::after {
        width: calc(50% - 5.5rem);
        height: .1rem;
    }
    .summary__exp {
        font-size: 1.6rem;
    }
}



/* specific */
.specific {
    padding-bottom: 100px;
}
.specific__container {
    width: 90%;
    max-width: 1340px;
    margin: 0 auto;
}
.specific__container h2::before, .specific__container h2::after {
    content: '';
    width: calc(50% - 201px);
    height: 1px;
    background: #CDAD84;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.specific__container h2::before {
    left: 0;
}
.specific__containerh2::after {
    right: 0;
}
.specific__container h2 span {
    color: #CDAD84;
}
.specific__cnt {
    width: 90%;
    max-width: 1000px;
    margin: 80px auto 0;
}
.specific__cnt:first-child {
    margin: 0 auto;
}
.specific__cnt h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}
.specific__cnt table {
    width: 100%;
    background: #FFF;
    margin-top: 30px;
}
.specific__cnt table tr th, .specific__cnt table tr td {
    font-size: 14px;
    border-bottom: 1px solid #E5E5E5;
    padding: 15px 20px;
}
.specific__cnt table tr th {
    width: 18%;
    color: #FFF;
    font-weight: 500;
    letter-spacing: 0.1em;
    background: #CDAD84;
    text-align: center;
}
.specific__cnt table tr td {
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: left;
}
.specific__cnt__inner {
    display: flex;
    gap: 0 30px;
}
.specific__cnt__person {
    width: 100px;
}
.specific__cnt__person__img {
    width: 100%;
    vertical-align: middle;
}
.specific__cnt__person__img img {
    width: 100%;
}
.specific__cnt__person__name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.specific__cnt__person__name__index {
    color: #FFF;
    font-size: 11px;
    background: #453F35;
    padding: 0 7px;
}
.specific__cnt__person__name p {
    font-size: 13px;
}
.specific__cnt__txt {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 765px) {
    .specific {
        padding-bottom: 70px;
    }
    .specific__container h2::before, .specific__container h2::after {
        width: calc(50% - 133px);
        height: 1px;
    }
    .specific__cnt {
        width: 100%;
        margin: 50px auto 0;
    }
    .specific__cnt h3 {
        font-size: 16px;
    }
    .specific__cnt__table__wrap {
        overflow: hidden;
    }
    .specific__cnt table {
        display: block;
        max-height: 450px;
        overflow-y: scroll;
        margin-top: 20px;
    }
    .specific__cnt table tbody, .specific__cnt table tr {
        display: block;
        width: 100%;
    }
    .specific__cnt table tr th, .specific__cnt table tr td {
        display: block;
        width: 100%;
        min-height: 39px;
        font-size: 12px;
        border-bottom: none;
        padding: 10px 15px;
    }
    .specific__cnt table tr th {
        line-height: 1.5;
        text-align: left;
    }
    .specific__cnt__inner {
        gap: 0 15px;
    }
    .specific__cnt__person {
        width: 90px;
    }
    .specific__cnt__person__name__index {
        font-size: 10px;
        padding: 0 5px;
    }
    .specific__cnt__person__name p {
        font-size: 12px;
    }
    .specific__cnt__txt {
        width: calc(100% - 105px);
        font-size: 12px;
    }
}
@media screen and (max-width: 390px) {
    .specific {
        padding-bottom: 7rem;
    }
    .specific__container h2::before, .specific__container h2::after {
        width: calc(50% - 13.3rem);
        height: .1rem;
    }
    .specific__cnt {
        margin: 5rem auto 0;
    }
    .specific__cnt h3 {
        font-size: 1.6rem;
    }
    .specific__cnt table {
        max-height: 45rem;
        margin-top: 2rem;
    }
    .specific__cnt table tr th, .specific__cnt table tr td {
        min-height: 3.9rem;
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }
    .specific__cnt__inner {
        gap: 0 1.5rem;
    }
    .specific__cnt__person {
        width: 9rem;
    }
    .specific__cnt__person__name__index {
        font-size: 1rem;
        padding: 0 .5rem;
    }
    .specific__cnt__person__name p {
        font-size: 1.2rem;
    }
    .specific__cnt__txt {
        width: calc(100% - 10.5rem);
        font-size: 1.2rem;
    }
}



/* contact */
.contact {
    width: 100%;
    display: flex;
    align-items: stretch;
}
.contact__img {
    width: 50%;
    height: auto;
    background: url('../images/contact-img.jpg') center center no-repeat;
    background-size: cover;
}
.contact__cnt {
    width: 50%;
    background: #575149;
    padding: 120px 50px;
}
.contact__cnt h2 {
    color: #FFF;
    font-size: 36px;
    letter-spacing: 0.1em;
    text-align: center;
}
.contact__cnt h2 span {
    display: block;
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.05em;
}
.contact__cnt__message {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 40px;
    margin: 40px auto 0;
}
.contact__cnt__message__img {
    width: 150px;
}
.contact__cnt__message__img img {
    width: 100%;
    vertical-align: middle;
}
.contact__cnt__message__txt {
    background: #FFF;
    border-radius: 10px;
    padding: 25px;
    position: relative;
}
.contact__cnt__message__txt::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 20px solid #FFF;
    border-bottom: 10px solid transparent;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}
.contact__cnt__message__txt p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
.contact__btn {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(90deg, #D0A771 0%, #E6C984 50%, #D0A771 100%);
    background-position: 0% 50%;
    background-size: 200% auto;
    padding: 20px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 30px;
    transition: all .3s ease;
}
.contact__btn:hover {
    background-position: 100% 50%;
    transition: all .3s ease;
}
.contact__btn p {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
}
.contact__btn__item {
    width: 40px;
    height: 40px;
    background: #FFF;
    border-radius: 100%;
    position: relative;
    transition: all .3s ease;
}
.contact__btn__item::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 10px solid #D0A771;
    border-bottom: 6px solid transparent;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}
.contact__btn:hover .contact__btn__item {
    transform: translateX(5px);
    transition: all .3s ease;
}
@media screen and (max-width: 765px) {
    .contact {
        flex-wrap: wrap;
    }
    .contact__img {
        width: 100%;
        aspect-ratio: 1.5/1;
    }
    .contact__cnt {
        width: 100%;
        padding: 70px 5%;
    }
    .contact__cnt h2 {
        font-size: 20px;
    }
    .contact__cnt h2 span {
        font-size: 18px;
    }
    .contact__cnt__message {
        gap: 0 25px;
        margin: 30px auto 0;
    }
    .contact__cnt__message__img {
        width: 100px;
    }
    .contact__cnt__message__txt {
        border-radius: 10px;
        padding: 15px;
    }
    .contact__cnt__message__txt::before {
        border-top: 10px solid transparent;
        border-right: 15px solid #FFF;
        border-bottom: 10px solid transparent;
        left: -14px;
    }
    .contact__cnt__message__txt p {
        font-size: 13px;
    }
    .contact__btn {
        width: 100%;
        max-width: 350px;
        padding: 15px;
        margin: 40px auto 0;
        gap: 0 10px;
    }
    .contact__btn:hover {
        background-position: 0% 50%;
    }
    .contact__btn p {
        font-size: 14px;
    }
    .contact__btn__item {
        width: 30px;
        height: 30px;
    }
    .contact__btn__item::before {
        border-top: 5px solid transparent;
        border-left: 8px solid #D0A771;
        border-bottom: 5px solid transparent;
    }
    .contact__btn:hover .contact__btn__item {
        transform: translateX(0);
    }
}
@media screen and (max-width: 390px) {
    .contact__cnt {
        padding: 7rem 5%;
    }
    .contact__cnt h2 {
        font-size: 2rem;
    }
    .contact__cnt h2 span {
        font-size: 1.8rem;
    }
    .contact__cnt__message {
        gap: 0 2.5rem;
        margin: 3rem auto 0;
    }
    .contact__cnt__message__img {
        width: 10rem;
    }
    .contact__cnt__message__txt {
        border-radius: 1rem;
        padding: 1.5rem;
    }
    .contact__cnt__message__txt::before {
        border-top: 1rem solid transparent;
        border-right: 1.5rem solid #FFF;
        border-bottom: 1rem solid transparent;
        left: -1.4rem;
    }
    .contact__cnt__message__txt p {
        font-size: 1.3rem;
    }
    .contact__btn {
        max-width: 35rem;
        padding: 1.5rem;
        margin: 4rem auto 0;
        gap: 0 1rem;
    }
    .contact__btn p {
        font-size: 1.4rem;
    }
    .contact__btn__item {
        width: 3rem;
        height: 3rem;
    }
    .contact__btn__item::before {
        border-top: .5rem solid transparent;
        border-left: .8rem solid #D0A771;
        border-bottom: .5rem solid transparent;
    }
}



/* service */
.service {
    background: #F1EDE7;
    padding: 100px 0;
}
.service__container {
    width: 90%;
    max-width: 1340px;
    margin: 0 auto;
}
.service__container {
    width: 90%;
    max-width: 1340px;
    margin: 0 auto;
}
.service__container h2::before, .service__container h2::after {
    content: '';
    width: calc(50% - 201px);
    height: 1px;
    background: #CDAD84;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.service__container h2::before {
    left: 0;
}
.service__containerh2::after {
    right: 0;
}
.service__container h2 span {
    color: #CDAD84;
}
.service__ttl p {
    font-size: 24px;
    letter-spacing: 0.15em;
    text-align: center;
}
.service__ttl__logo {
    width: 300px;
    margin: 30px auto 0;
}
.service__ttl__logo img {
    width: 100%;
}
.service__cnt__wrap {
    margin: 70px auto 0;
    display: flex;
    justify-content: space-between;
}
.service__index {
    font-size: 4rem;
    letter-spacing: 0.1em;
    line-height: 1.9;
}
.service__cnt {
    width: calc(100% - 55rem);
}
.service__cnt section {
    margin-top: 30px;
}
.service__cnt section:first-child {
    margin-top: 0;
}
.service__cnt__ttl {
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.service__cnt__ttl__num {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background: #CDAD84;
    position: relative;
}
.service__cnt__ttl__num span {
    color: #FFF;
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.service__cnt__ttl h3 {
    width: calc(100% - 60px);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
.service__cnt__txt {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.7;
    background: #FFF;
    border-radius: 10px;
    padding: 20px 25px;
    margin-top: 15px;
}
@media screen and (min-width: 1440px)  {
    .service__index {
        font-size: 40px;
    }
    .service__cnt {
        width: calc(100% - 550px);
    }
}
@media screen and (max-width: 765px) {
    .service {
        padding: 70px 0;
    }
    .service__container h2::before, .service__container h2::after {
        width: calc(50% - 64px);
        height: 1px;
    }
    .service__ttl p {
        font-size: 14px;
        line-height: 1.7;
    }
    .service__ttl__logo {
        width: 200px;
        margin: 25px auto 0;
    }
    .service__cnt__wrap {
        margin: 50px auto 0;
        flex-wrap: wrap;
        gap: 20px 0;
    }
    .service__index {
        font-size: 22px;
    }
    .service__cnt {
        width: 100%;
        margin-top: 30px;
    }
    .service__cnt section {
        margin-top: 30px;
    }
    .service__cnt__ttl {
        gap: 0 15px;
    }
    .service__cnt__ttl__num {
        width: 35px;
        height: 35px;
    }
    .service__cnt__ttl__num span {
        font-size: 18px;
    }
    .service__cnt__ttl h3 {
        width: calc(100% - 55px);
        font-size: 17px;
    }
    .service__cnt__txt {
        font-size: 14px;
        padding: 15px 20px;
        margin-top: 15px;
    }
}
@media screen and (max-width: 390px) {
    .service {
        padding: 7rem 0;
    }
    .service__container h2::before, .service__container h2::after {
        width: calc(50% - 6.4rem);
        height: .1rem;
    }
    .service__ttl p {
        font-size: 1.4rem;
    }
    .service__ttl__logo {
        width: 20rem;
        margin: 2.5rem auto 0;
    }
    .service__cnt__wrap {
        margin: 5rem auto 0;
        gap: 2rem 0;
    }
    .service__index {
        font-size: 2.2rem;
    }
    .service__cnt {
        margin-top: 3rem;
    }
    .service__cnt section {
        margin-top: 3rem;
    }
    .service__cnt__ttl {
        gap: 0 1.5rem;
    }
    .service__cnt__ttl__num {
        width: 3.5rem;
        height: 3.5rem;
    }
    .service__cnt__ttl__num span {
        font-size: 1.8rem;
    }
    .service__cnt__ttl h3 {
        width: calc(100% - 5.5rem);
        font-size: 1.7rem;
    }
    .service__cnt__txt {
        font-size: 1.4rem;
        padding: 1.5rem 2rem;
        margin-top: 1.5rem;
    }
}



/* voice */
.voice {
    background: #F1EDE7;
    padding-bottom: 100px;
}
.voice__container {
    width: 90%;
    max-width: 1340px;
    margin: 0 auto;
}
.voice__container h2::before, .voice__container h2::after {
    content: '';
    width: calc(50% - 201px);
    height: 1px;
    background: #CDAD84;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.voice__container h2::before {
    left: 0;
}
.voice__containerh2::after {
    right: 0;
}
.voice__container h2 span {
    color: #CDAD84;
}
.voice__index {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}
.voice__cnt__wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.voice__cnt {
    width: 49%;
    background: #FFF;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.voice__cnt p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.8;
    flex-grow: 1;
}
.voice__cnt span {
    display: block;
    font-size: 20px;
    text-align: end;
    margin-top: 20px;
}
@media screen and (max-width: 765px) {
    .voice {
        padding-bottom: 70px;
    }
    .voice__container h2::before, .voice__container h2::after {
        width: calc(50% - 95px);
        height: 1px;
    }
    .voice__index {
        font-size: 20px;
    }
    .voice__cnt__wrap {
        flex-wrap: wrap;
        gap: 30px 0;
        margin-top: 30px;
    }
    .voice__cnt {
        width: 100%;
        border-radius: 10px;
        padding: 15px 20px;
    }
    .voice__cnt p {
        font-size: 14px;
    }
    .voice__cnt span {
        font-size: 16px;
        margin-top: 10px;
    }
}
@media screen and (max-width: 390px) {
    .voice {
        padding-bottom: 7rem;
    }
    .voice__container h2::before, .voice__container h2::after {
        width: calc(50% - 9.5rem);
        height: .1rem;
    }
    .voice__index {
        font-size: 2rem;
    }
    .voice__cnt__wrap {
        gap: 3rem 0;
        margin-top: 3rem;
    }
    .voice__cnt {
        border-radius: 1rem;
        padding: 1.5rem 2rem;
    }
    .voice__cnt p {
        font-size: 1.4rem;
    }
    .voice__cnt span {
        font-size: 1.6rem;
        margin-top: 1rem;
    }
}