@charset "UTF-8";

/* ==============================
common
================================= */

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", "sofia-pro", sans-serif;
    font-style: normal;
    color: #574e40;
    background-color: #FBF6EE;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 0 var(--contentPadding);
}

.section__topic {
    padding: 60px 0 35px;
}

.section__topicTxt {
    color: #9E6A15;
    font-family: "sofia-pro";
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}

h3 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.brSp {
    display: none;
}
.brPc {
    display: none;
}

.brTablet {
    display: none;
}

hr {
    margin: 0 auto;
    border-top-width: 0.5px;
}

iframe {
    width: auto;
    height: 159px;
    flex-shrink: 0;
    border-radius: 10px;
}

/* ローディングアニメーション */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1001;
    background-color: #FBF6EE;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.loading__logo {
    opacity: 0;
    animation: logo_fade 2s 0.5s forwards;
    width: 175px;
}

@keyframes logo_fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    
    60% {
        opacity: 1;
        transform: translateY(0);
    }
    
    100% {
        opacity: 0;
    }
}

a {
    flex: 1;
}

/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0,50px);
    opacity: 0;
    transition: 1.8s;
}

.fadeIn.animated {
    transform: translate(0,0);
    opacity: 1;
}

/* ==============================
common tablet
================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .section {
        padding: 0 var(--contentPaddingTablet);
    }
    .section__topic {
        padding: 50px 0 50px;
    }
    .section__topicTxt {
        font-size: 5.5rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    a {
        flex: none;
    }
    .brSp {
        display: none;
    }
    .brTablet {
        display: block;
    }    
}
/* ==============================
common pc
================================= */

@media screen and (min-width: 1024px) {
    .section {
        padding: 0 var(--contentPaddingPc);
    }
    .section__topic {
        padding: 100px 0 100px;
        margin: 0 auto;
    }
    .section__topicTxt {
        text-align: center;
        font-size: 7.3rem;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        white-space: nowrap;
        padding: 0 7.2% 0;
    }
    h3 {
        text-align: center;
        font-weight: 700;
        color: #574E40;
        font-family: "Noto Sans JP";
        font-size: 1.8rem;
        font-style: normal;
        letter-spacing: 4.5px;
    }
    .brPc {
        display: block;
    }
    .brSp {
        display: none;
    }
    .brTablet {
        display: block;
    }    
}


/* ==============================
header
================================= */

.header {
    padding: 11px 5.1%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
	width: 100%;
	text-align: center;
	z-index: 2;
	transition: top 0.3s ease;
    top: 0;
}

.logo,
.nav__logo {
    width: 57px;
    height: 35px;
}

.logo a {
    cursor: pointer;
    display: inline-block;
    text-decoration:none;
    transition: color .2s;
}

.logo a:hover {
    opacity:0.8;
    filter:alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";
}

/* .nav初期表示 */

.nav {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.4s;
}

.nav__header {
    padding: 11px 5.1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list {
    margin-top: 40px;
}

.nav__item {
    color: #9E6A15;
    font-family: "sofia-pro";
    font-size: 1.6rem;
    font-weight: 800;
    line-height: normal;
    text-align: center;
}

.navItem a {
    cursor: pointer;
    display: inline-block;
    text-decoration:none;
    transition: color .2s;
    margin-bottom: 15px;
}

.navItem a:hover {
    color: #c2a76e;
}

.nav.active {
    transform: translateX(0);
    z-index: 1000;
}

.header__btnSP {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 5.1%;
    z-index: 99;
}

.header__btnTablet {
    display: none;
}

.nav__btn {
    z-index: 100;
}

/* ==============================
header tablet
================================= */

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .header {
        padding: 50px 5.7%;
    }
    .logo,
    .nav__logo {
        width: 73px;
        height: 41px;
    }
    .header__btnSP {
        display: none;
    }
    .header__btnTablet {
        display: block;
    }
    .nav__header {
        padding: 50px 5.7%;
    }
    .nav__btn {
        width: 52px;
        height: 52px;
    }
    .navItem a {
        margin-bottom: 35px;
    }
    .NavTxt {
        font-size: 1.8rem;
    }
    .nav__list {
        margin-top: 0;
    }
}
/* ==============================
header pc
================================= */

@media screen and (min-width: 1024px) {
    .header {
        padding: 50px 2.8%;
        margin-top: 0;
        background-color: #FBF6EE;
    }
    .logo,
    .nav__logo {
        width: 87px;
        height: 48px;
        flex-shrink: 0;
    }
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: relative;
        transform: translate(0);
    }
    .nav__list {
        display: flex;
        margin-top: 0;
    }
    .nav__item {
        margin-left: 58px;
        margin-top: 0;
    }
    .nav__header {
        display: none;
    }
    .header__btn {
        display: none;
    }
    .navBtn {
        display: none;
    }
}


/* ==============================
article header
================================= */
.ReserveBtn {
    display: none;
}

.ReserveBtnTablet {
    display: none;
}

.ReserveBtnSP {
    display: block;
    position: fixed;
    right: 0;
    top: 600px;
}

.mainImg {
    padding-top: 50px;
}

.mainImgPc {
    display: none;
}

.mainImgTablet {
    display: none;
}

.mainImgSp {
    display: block;
}

.reserveBTN img {
    cursor: pointer;
    text-decoration:none;
    transition: color .2s;
    z-index: 1;  
}

.reserveBTN:hover img {
    opacity:0.8;
    filter:alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";    
}

/* ==============================
article header tablet
================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .mainImg {
        margin-top: 100px;
    }
    .mainImgTablet {
        display: block;
    }
    .mainImgSp,.mainImgPc {
        display: none;
    }
    .ReserveBtnTablet {
        display: block;
        position: fixed;
        right: 0;
        top: 500px;
        z-index: 100;
    }
    .ReserveBtnSP {
        display: none;
    }
    .ReserveBtn {
        display: none;
    }
}
/* ==============================
article header pc
================================= */

@media screen and (min-width: 1024px) {
    .ReserveBtn {
        display: block;
        position: fixed;
        right: 0;
        top: 600px;
        z-index: 100;
    }
    .ReserveBtnSP {
        display: none;
    }
    .ReserveBtnTablet {
        display: none;
    }
    .mainImg {
        padding-top: 150px;
    }
    .article__header {
        max-width: 1440px;
        margin: 0 auto;
    }
    .mainImgPc {
        display: block;
    }
    .mainImgTablet {
        display: none;
    }    
    .mainImgSp {
        display: none;
    }
}


/* ==============================
about
================================= */

.section__topicSubtxt__about {
    color: #EF8DA2;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 10px;
}

.aboutIntroduction__txt {
    margin-top: 15px;
    font-weight: 500;
    line-height: 2;
}

.aboutImg {
    text-align: center;
    margin-bottom: 60px;
}

.MainImg2SP {
    display: block;
}

.MainImg2Tablet {
    display: none;
}

.aboutBtn {
    display: flex;
    height: 57px;
    padding: 10px 17px;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin: 45px 0;
    background-color: #FFF;
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);    
}

.aboutBtn:hover {
    background-color: #574E40;
}

.aboutBtn:hover p {
    color: #ffffff;
}


/* ==============================
about tablet
================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .aboutIntroduction__txt {
        margin-top: 30px;
        line-height: 2.5;
    }    
    .MainImg2SP {
        display: none;
    }
    .MainImg2Tablet {
        display: block;
    }
    
}
/* ==============================
about pc
================================= */

@media screen and (min-width: 1024px) {
    .section__about {
        padding-bottom: 60px;
    }
    .aboutContent {
        display: flex;
        justify-content: space-between;
        max-width: 1440px;
        margin: 0 auto;
    }
    .aboutIntroduction__txt {
        text-align: left;
        font-weight: 500;
        line-height: 2.5;
    }
    .aboutBtn {
        display: flex;
        height: 57px;
        padding: 10px 17px;
        align-items: center;
        justify-content: space-between;
        border-radius: 10px;
        margin: 45px 11% 0 0;
        background-color: #FFF;
    }
}

/* ==============================
style gallery
================================= */

.section.section__styleGallery {
    background-color: #EEE1CC;
    padding-bottom: 80px;
}

.section__topicSubtxt__styleGallery {
    color: #E38934;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 10px;
}

.scroll-infinity {
    display: block;
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 50px;
}
.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}
.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 20px;
    margin-right: 20px;
}
.scroll-infinity__list--left {
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
    width: calc(200vw / 6);
}
.scroll-infinity__item>img {
    width: 100%;
}
@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes infinity-scroll-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}
.scroll-infinity__list--right {
    animation: infinity-scroll-right 80s infinite linear 0.5s both;
}



/* ==============================
style gallery tablet
================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .slide-wrapper {
        display: none;
    }
    .scroll-infinity {
        display: block;
        max-width: 1440px;
        margin: 0 auto;
        padding-bottom: 50px;
    }
    .scroll-infinity__wrap {
        display: flex;
        overflow: hidden;
    }
    .scroll-infinity__list {
        display: flex;
        list-style: none;
        padding: 0;
        gap: 40px;
        margin-right: 60px;
    }
    .scroll-infinity__list--left {
        animation: infinity-scroll-left 80s infinite linear 0.5s both;
    }
    .scroll-infinity__item {
        width: calc(100vw / 6);
    }
    .scroll-infinity__item>img {
        width: 100%;
    }
    @keyframes infinity-scroll-left {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }
    @keyframes infinity-scroll-right {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0%);
        }
    }
    .scroll-infinity__list--right {
        animation: infinity-scroll-right 80s infinite linear 0.5s both;
    }
}

/* ==============================
style gallery pc
================================= */

@media screen and (min-width: 1024px) {
    .section__styleGallery {
        border-radius: 100% 100% 0 0/65%;
    }
    .styleGalleryContent {
        display: none;
    }
    .styleGallerySp {
        display: none;
    }
    .styleGalleryPc {
        display: block;
        max-width: 1440px;
    }
    .slide-wrapper {
        display: none;
    }
    @keyframes infinity-scroll-left {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }
    .scroll-infinity {
        display: block;
        max-width: 1440px;
        margin: 0 auto;
        padding-bottom: 50px;
    }
    .scroll-infinity__wrap {
        display: flex;
        overflow: hidden;
    }
    .scroll-infinity__list {
        display: flex;
        list-style: none;
        padding: 0;
        gap: 60px;
        margin-right: 60px;
    }
    .scroll-infinity__list--left {
        animation: infinity-scroll-left 80s infinite linear 0.5s both;
    }
    .scroll-infinity__item {
        width: calc(100vw / 6);
    }
    .scroll-infinity__item>img {
        width: 100%;
    }
    @keyframes infinity-scroll-right {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0%);
        }
    }
    .scroll-infinity__list--right {
        animation: infinity-scroll-right 80s infinite linear 0.5s both;
    }
}


/* ==============================
menu
================================= */

.section__topicSubtxt__menu {
    color: #90CC73;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 10px;
}

.menu__content {
    padding: 27px 0;
}

.menu__category {
    display: flex;
    gap: 10px;
}

.menu__category__cut,
.menu__category__color {
    background-color: #574e40;
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 700;
    width: 70px;
    height: 21px;
    padding: 0 14px;
    border-radius: 5px;
}

.menu__category__treatment {
    background-color: #574e40;
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 700;
    width: 112px;
    height: 21px;
    padding: 0 7px;
    border-radius: 5px;
}

.menu__name {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: normal;
    margin-top: 15px;
}

.menu__price {
    color: #9E6A15;
    font-family: "sofia-pro";
    font-size: 1.6rem;
    font-weight: 800;
    line-height: normal;
    text-align: end;
    margin-top: 15px;
}

.largeTxt {
    font-size: 3.1rem;
    font-weight: 500;
    line-height: normal;
}

.menuIntroduction__txt {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 15px;
    font-weight: 500;
}

.menuIntroduction__txt:last-child {
    margin-bottom: 40px;
}

.menu__introductionTxt {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    margin-top: 15px;
}

.menu__end {
    margin-top: 27px;
}

.menuBtn {
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
    height: 57px;
    padding: 10px 19px;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    margin: 40px 11% 0;
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.menuBtn:hover {
    background-color: #574E40;
}

.menuBtn:hover p {
    color: #ffffff;
}

.menuBtn__txt {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 3.5;
    letter-spacing: 2.25px;
    white-space: nowrap;
}

.menuBtn__arrow {
    width: 20px;
    height: 20px;
}

.hrSp {
    display: block;
}

.hrPc {
    display: none;
}


/* ==============================
menu tablet
================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .menuIntroduction__txt {
        font-size: 1.8rem;
    }
}

/* ==============================
menu pc
================================= */

@media screen and (min-width: 1024px) {
    .menuContent {
        display: flex;
        justify-content: space-between;
        max-width: 1440px;
        margin: 0 auto;
        gap: 100px;
    }
    .menu__content {
        padding: 0;
    }
    .menu__category {
        margin-top: 25px;
    }
    .menu__title {
        display: flex;
        justify-content: space-between;
    }
    .menu__name {
        font-size: 2.6rem;
        font-weight: 600;
    }
    .menuIntroduction {
        max-width: 528px;
    }
    .menuIntroduction__txt {
        font-size: 1.8rem;
        font-weight: 500;
        line-height: 2;
        letter-spacing: 4.5px;
        text-align: left;
        margin-bottom: 25px;
    }
    .menuIntroduction__txt:first-child {
        margin-top: 0;
    }
    .menu__introductionTxt {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 2;
        margin-bottom: 15px;
    }
    .hrPc {
        display: block;
    }
    .hrSp {
        display: none;
    }
    .menuBtn {
        display: flex;
        height: 57px;
        padding: 10px 17px;
        align-items: center;
        border-radius: 10px;
        margin: 45px 0;
    }
}


/* ==============================
reserve
================================= */

.section__topicSubtxt__reserve {
    color: #53A7A8;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 10px;
}

.reserveBtn {
    padding-bottom: 60px;
    border-radius: 10px;
}

.Reserve div {
    cursor: pointer;
    text-decoration:none;
    transition: color .2s;
}

.Reserve:hover div{
    opacity:0.8;
    filter:alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";
}

.reserveBtn__contentOne,
.reserveBtn__contentTwo,
.reserveBtn__contentThree {
    background-color: #4E8788;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 81px;
    margin-top: 2px;
    align-items: center;
}

.reserveBtn__img {
    width: 39px;
    height: 39px;
    margin-right: 25px;
}

.reserveBtn__imgPhone {
    padding-right: 20px;
}

.reserveBtn__txt,
.reserveBtn__txtPhone {
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap
}

.reserveBtn__txtPhone {
    margin: 0 30px;
}

.reserveBtn__contentOne {
    border-radius: 10px 10px 0 0;
}

.reserveBtn__contentThree {
    border-radius: 0 0 10px 10px;
}

.Reserve {
    flex: 1;
}

/* ==============================
reserve tablet
================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .reserveBtn {
        display: flex;
        width: 100%; /* 追加 */
        max-width: 1023px; /* PCと同じ最大幅に */
        margin: 0 auto; /* 中央寄せ */
        gap: 2px; /* 間隔もPCに合わせるなら */
        padding-top: 0; /* 任意：PCと揃えるなら */
    }    
    .reserveBtn__contentOne,
    .reserveBtn__contentTwo,
    .reserveBtn__contentThree {
        padding: 32px 3.3%;
        display: block;
        text-align: center;
        height: 152px;
    }
    .reserveBtn__contentOne {
        border-radius: 10px 0 0 10px;
    }
    .reserveBtn__contentThree {
        border-radius: 0 10px 10px 0;
    }
    .reserveBtn__img {
        width: auto;
        height: 50px;
        margin-right: 0;
    }
    .reserveBtn__txt {
        font-size: 1.5rem;
        font-weight: 600;
        margin-top: 25px;
    }
    .reserveBtn__txtPhone {
        font-size: 1.5rem;
        font-weight: 600;
        margin-top: 17px;
    }
    .reserveBtn__imgPhone {
        width: auto;
        height: 56px;
        margin-right: 0;
    }
}

/* ==============================
reserve pc
================================= */

@media screen and (min-width: 1024px) {
    .reserveBtn {
        display: flex;
        padding-top: 0;
        padding-bottom: 50px;
        gap: 5px;
        max-width: 1440px;
        margin: 0 auto;
    }
    .reserveBtn__contentOne,
    .reserveBtn__contentTwo,
    .reserveBtn__contentThree {
        padding: 75px 6.7%;
        height: 267px;
        display: block;
        width: auto;
        text-align: center;
    }
    .reserveBtn__contentOne {
        border-radius: 10px 0 0 10px;
    }
    .reserveBtn__contentThree {
        border-radius: 0 10px 10px 0;
    }
    .reserveBtn__img {
        width: auto;
        height: 70px;
        margin-right: 0;
    }
    .reserveBtn__txt {
        font-size: 1.8rem;
        font-weight: 600;
        margin-top: 25px;
    }
    .reserveBtn__txtPhone {
        font-size: 1.8rem;
        font-weight: 600;
        margin-top: 25px;
    }
    .reserveBtn__imgPhone {
        width: auto;
        height: 70px;
        margin-right: 0;
    }
}


/* ==============================
info
================================= */

.section.section__information {
    background-color: #EEE1CC;
    padding-bottom: 60px;
}

.section__topicSubtxt__info {
    color: #D485E0;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 10px;
}

.infoContent {
    width: 100%;
    background-color: #FFF;
    border-radius: 10px;
}

.infoTopic {
    display: flex;
    justify-content: left;
}

.infoTitleBox {
    background: rgba(251, 246, 238, 0.57);
    width: 100px;
    height: auto;
    text-align: center;
    padding: 25px 0;
    flex: none;
}

.infoTxtBox .infoTxt:nth-of-type(2) {
    padding-top: 0;
}

.infoTitle,
.infoTxt {
    color: #9E6A15;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 1.4px;
}

.infoTxt {
    width: auto;
    padding: 25px 5.3%;
}

.infoImgSp {
    display: block;
}

.infoImgPc {
    display: none;
}

.GoogleMap {
    display: flex;
    align-items: center;
}

.Googlemap {
    flex: 0;
}

.googleMaps {
    color: #9E6A15;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.5;
    letter-spacing: 2px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    margin-left: 15px;
    white-space: nowrap;
    margin-right: 15px;
}

.GoogleMapIcon {
    width: 15px;
    height: 15px;
}


/* ==============================
info tablet
================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .infoTxt,
    .infoTitle {
        width: auto;
        font-weight: 500;
        line-height: 2;
    }
    .GoogleMapIcon {
        width: 18px;
        height: 18px;
    }
    .googleMaps {
        margin-left: 30px;
    }
}

/* ==============================
info pc
================================= */

@media screen and (min-width: 1024px) {
    .section.section__information {
        border-radius: 100% 100% 0 0/65%;
    }
    .infoContent {
        max-width: 1440px;
        margin: 0 auto;
    }
    .infoTitleBox {
        width: 200px;
    }
    .infoTxt,
    .infoTitle {
        width: auto;
        font-size: 2rem;
        font-weight: 500;
        line-height: 2;
    }
    .infoTxt {
        margin-left: 3.1%;
        padding: 30px 0;
    }
    .infoImgSp {
        display: none;
    }
    .infoImgPc {
        display: block;
    }
    .googleMaps {
        font-size: 2rem;
        margin-left: 30px;
    }
    .Googlemap {
        flex: 0;
    }
    .GoogleMapIcon {
        width: 25px;
        height: 25px;
    }
}


/* ==============================
member
================================= */

.section.section__member {
    background: rgba(78, 135, 136, 0.59);
    padding-bottom: 45px;
}

.section__topicTxt__member {
    color: #FFF;
    font-family: "sofia-pro";
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}

.section__topicSubtxt__member {
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 10px;
}

.memberIntroduction__txt__member {
    color: #FFF;
}

.memberIntroduction__txt {
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    margin-top: 30px;
    line-height: 2;
}

.memberBtn {
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
    height: 57px;
    padding: 10px 19px;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    margin: 30px 11% 30px;
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);    
}

.memberBtn:hover {
    background-color: #574E40;
}

.memberBtn:hover p {
    color: #ffffff;
}

.memberBtn__txt {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 3.5;
    letter-spacing: 2.25px;
}


/* ==============================
member tablet
================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {
.memberIntroduction {
    text-align: center;
}
.section__topicTxt__member {
    font-size: 5.5rem;
}
}
/* ==============================
member pc
================================= */

@media screen and (min-width: 1024px) {
    .section__topicTxt__member {
        font-size: 7.3rem;
        font-weight: 700;
    }
    .memberIntroduction {
        display: flex;
        gap: 155px;
        max-width: 1440px;
        margin: 0 auto;
    }
    .memberIntroduction__txt {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 2.5;
        letter-spacing: 2.7px;
        text-align: left;
    }
    .memberImg {
        border-radius: 10px;
    }
    .memberBtn {
        border-radius: 10px;
        margin: 80px 0;
        display: flex;
        height: 47px;
        padding: 10px;
        gap: 10px;
    }
}


/* ==============================
recruit
================================= */

.recruitImgSp {
    display: block;
    width: 100%;
}

.recruitImgPc {
    display: none;
}

.Recruit img {
    cursor: pointer;
    text-decoration:none;
    transition: color .2s;    
}

.Recruit:hover img {
    opacity:0.8;
    filter:alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";    
}


/* ==============================
recruit tablet
================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {

}

/* ==============================
recruit pc
================================= */

@media screen and (min-width: 1024px) {
    .recruitImgSp {
        display: none;
    }
    .recruitImgPc {
        display: block;
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
    }
}

/* ==============================
footer
================================= */

.footerContent {
    display: flex;
    justify-content: space-between;
    padding: 33px 11%;
}

.footerImg {
    width: 62px;
    height: 35px;
    flex-shrink: 0;
    margin-right: 137px;
}

.FooterLogo img {
    cursor: pointer;
    display: inline-block;
    text-decoration:none;
    transition: color .2s;
}

.FooterLogo img:hover {
    opacity:0.8;
    filter:alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";
}


.footerTxt {
    color: #9E6A15;
    font-family: "sofia-pro";
    font-size: 1.4rem;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
    display: block;
}

.copy {
    text-align: center;
    font-family: "sofia-pro";
    font-size: 1.4rem;
    font-weight: 500;
    padding: 18px 36%;
}

.footerMenu p {
    cursor: pointer;
    text-decoration:none;
    transition: color .2s;
}

.footerMenu p:hover {
    color: #c2a76e;
}



/* ==============================
footer tablet
================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {

}

/* ==============================
footer pc
================================= */

@media screen and (min-width: 1024px) {
    .footerContent {
        padding: 70px 3.1%;
    }
    .footerImg {
        width: 111px;
        height: 64px;
    }
    .footerMenu {
        display: flex;
        gap: 50px;
        align-items: center;
        margin-right: 100px;
    }
    .footerTxt {
        color: #9E6A15;
        font-family: "sofia-pro";
        font-size: 1.6rem;
        font-weight: 600;
    }
}