@charset "utf-8";

:root {
    --green: #06773E;
    --green2: #00B162;
    --text-color: #392200;
    --black: #000000;
    --white: #fff;
    --trans-white: rgba(255, 255, 255, 0.76);
    --red: #E43905;
    --gray:#EEEEEE;
}

html,
body {
    font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.5;
    font-style: normal;
    letter-spacing: 0.2em;
    overflow-x: clip;
    color: var(--text-color);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "hina-mincho", sans-serif;
    font-style: normal;
}

a p {
    color: var(--text-color);
    text-decoration: none !important;
    transition: all 0.3s ease;
}

a:hover p {
    color: var(--green2);
    cursor: pointer;
}


/* フォント */

.hina {
font-family: "hina-mincho", sans-serif;
}

.goth {
font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
}
  
.mama{
    font-family: "mama-script", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.yuji {
    font-family: "Yuji Syuku", serif;
}

.zen {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.yu {
    font-family: "yu-mincho-pr6n", sans-serif;
}

.hira {
    font-family: "hiragino-mincho-pron", sans-serif;
}

.fc-white {
    color: var(--white) !important;
}

.fc-green {
    color: var(--green);
}

.fc-green2 {
    color: var(--green2);
}

.fc-brown {
    color: var(--text-color)!important;
}

.fc-red {
    color: #E43905 !important;
}


.v-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
}

.text-shadow {
    text-shadow: 2px 2px 5px black;
}

.text-shadow-white {
    text-shadow: 2px 2px 5px white;
}

.has-shadow {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

.ls-04{
    letter-spacing: 0.4em;
}

.ls-02 {
    letter-spacing: 0.2em;
}

/* 背景 */
.bg-white {
    background-color: #FFF;
}

.bg-green {
    background-color: #F5FFF1;
}

.bg-green2 {
    background-color: #E8FFF3;
}

.bg-beige-1 {
    background-color: rgba(242, 203, 76, 0.21);
}

.bg-beige-2 {
    background-color: rgba(190, 135, 16, 0.15);
}



/*罫線*/
.b-green {
    border: 1px solid var(--green2) ;
}

.b-green-cent {
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
    justify-content: center; /* 水平方向の中央揃え */
}

.b-green-cent h2 {
    display: flex;
    align-items: center; /* テキストと線を中央揃え */
}

.b-green-cent h2::after {
    display: none;
}

@media (min-width:768px){
    .b-green-cent h2::after {
        content: "";
        display: block; /* ブロック要素に変更 */
        width: 120px;
        height: 1px;
        background-color: #00B162;
        margin-left: 30px; /* テキストとの間隔 */
    }
}

.bl-greenn {
    border-left: 1px solid var(--green2) ;
}

.br-green {
    border-right: 1px solid var(--green2) ;
}

.bb-green {
    border-bottom: 1px solid var(--green2) ;
}

.bt-green {
    border-bottom: 1px solid var(--green2) ;
}

/* ボタン */
.button {
    position: relative;
    display: inline-flex !important;
    color: var(--text-color);
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
}

.button p {
    color: var(--text-color);
    font-family: "hina-mincho", sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.2rem;
    transition: all 0.3s;
}

.button p::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../images/button-round.svg);
    background-size: contain;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute;
    top: 32%;
    left: -30px;
    transition: all 0.3s;
}

.button p::after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/arrow-r.svg);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.button:hover p::before {
    transform: scale(1.3);
}

.button:hover p::after {
    right: -30px;
}

.button-g{
    position: relative;
    display: inline-flex !important;
    color: var(--text-color);
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    background-color: #00A555;
    border-radius: 5px;
}

.button-g p {
    color: var(--white);
    font-family: "hina-mincho", sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.2rem;
    transition: all 0.3s;
}

.button-g:hover {
    transform: scale(1.05);
}

.button-g:hover p {
    color: var(--text-color);
}

.button-g div::after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/tri-white.svg);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.button-g:hover div::after {
    right: 20px;
}


.button-w {
    position: relative;
    display: inline-flex !important;
    color: var(--text-color);
    justify-content: start;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #392200;
}

.button-w p {
    font-family: "hina-mincho", sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.2rem;
    transition: all 0.3s;
}

.button-w:hover {
    transform: scale(1.05);
}

.button-w p::after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/arrow-r.svg);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.button-w:hover p::after {
    right: 20px;
}


.sns-logo {
    transition: all 0.3s;
    cursor: pointer;
}

.sns-logo:hover {
    transform: scale(1.1);
}

.no-deco {
    text-decoration: none !important;
}

/* ナビ */

.a-nav {
    width: 100%;
    height: auto;
    z-index: 1200;
    transition: all 0.3s;
    font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
}

.a-nav-menu {
    flex-direction: column;
    align-items: center;
    display: none;
}

.navi-m {
    margin: 1.5rem 0;
}

.navi-m a {
    margin-bottom: 0.8rem;
    text-decoration: none;
    min-height: 0;
}

.a-nav a p {
    color: var(--text-color);
    transition: all 0.3s ease;
}

.a-nav a:hover p {
    color: var(--green2);
}

.top-logo {
    height: 60px;
    width: auto;
}

.top-logo-link {
    align-self: start;
}

.header-posi{
    padding: 1.5rem 0 1.5rem 1.5rem;
}

@media (min-width: 768px) {
    .header-posi{
        padding: 2rem 0 2rem 2rem;
    }
}

.sp-top-logo {
    max-width: 120px;
    height: auto;
}

.nav-logo {
    max-width: 160px;
}

.menu-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-box>a:not(:last-child) {
    margin-bottom: 12px;
}

.reserve-button {
    position: fixed;
    bottom: 46px;
    right: 46px;
    width: 200px;
    height: auto;
    transition: all 0.3s;
    transform-origin: right;
    z-index: 700;
    cursor: pointer;
}

.reserve-button:hover {
    transform: scale(1.05);
}

.a-burger-posi {
    position: fixed;
    top: 38px;
    right: 38px;
    z-index: 1100;
}

@media (min-width: 768px) {
.a-burger-posi {
    top: 40px;
    right: 40px;
    }
}

.a-burger {
    position: relative;
    background-color:#66CE99;
    border-radius: 30px;
    cursor: pointer;
    width: 52px;
    height: 52px;
    margin: 0;
    padding: 0;
}

.a-burger div {
    width: 26px;
    height: 2px;
    background-color: #FFF;
    border-radius: 2px;
    position: absolute;
    left: 13px;
    transform-origin: center;
    transition: all 0.3s;
    padding: 0;
    margin: 0;
    min-height: 2px !important;
}

.a-burger div:nth-child(1) {
    top: 20px;
}

.a-burger div:nth-child(2) {
    bottom: 20px;
}

.a-burger.is-active div:nth-child(1) {
    transform: rotate(-45deg);
    top: 25px;
}

.a-burger.is-active div:nth-child(2) {
    transform: rotate(45deg);
    bottom: 25px;
}

.nav-tel-link {
    max-width: 200px;
}

.nav-open{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    max-height: 100vh;
    width: 100%;
    background-color: var(--white);
    z-index: 900;
}

.nav-img {
    display: flex;
    align-items: stretch; /* カラムの高さに合わせる */
    object-fit: cover;
    height: 100vh; /* カラムの高さを指定 */
    overflow: hidden; /* 画像がはみ出た場合に切り取る */
  }


/* フッター */

.foot-logo {
    max-width: 220px;
}

.foot-insta {
    width: 26px;
}

@media (min-width: 768px) {
    .foot-logo {
        max-width: 250px;
    }
}

/* News表示 */
.index-news .webgene-blog,
.news-page .webgene-blog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.index-news .webgene-item,
.news-page .webgene-item {
    width: 100%;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {

    .index-news .webgene-item,
    .news-page .webgene-item {
        width: 48%;
    }
}

@media (min-width: 992px) {
    .index-news .webgene-item {
        width: 24%;
    }
}


.webgene-pagination {
    width: 100%;
}

.webgene-pagination ul,
.pagelink {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 5rem;
    align-items: center;
}

.webgene-pagination ul li a,
.pagelink p a {
    display: inline-flex !important;
    color:var(--text-color)!important;
    padding: 8px 20px !important;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    font-family: "hina-mincho", sans-serif;
}

@media (min-width:768px) {

    .webgene-pagination ul,
    .pagelink {
        gap: 50px;
    }

    .webgene-pagination ul li a,
    .pagelink p a {
        padding: 20px 22px !important;
    }
}

.webgene-pagination ul li.next a::after,
.pagelink p.next a::after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/arrow-r.svg);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.webgene-pagination ul li.next a:hover,
.pagelink p.next a:hover {
    cursor: pointer;
    color: var(--green2) !important;
    transition-duration: 0.3s;
    text-decoration: none;
}

.webgene-pagination ul li.prev a::before,
.pagelink p.prev a::before {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/arrow-l.svg);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.webgene-pagination ul li.prev a:hover,
.pagelink p.prev a:hover {
    cursor: pointer;
    color: var(--green2) !important;
    transition-duration: 0.3s;
    text-decoration: none;
}

.webgene-pagination ul li.next a:hover::after,
.pagelink p.next a:hover::after {
    right: -35px;
}

.webgene-pagination ul li.prev a:hover::before,
.pagelink p.prev a:hover::before {
    left: -35px;
}

.webgene-pagination ul li,
.pagelink p {
    margin: 0;
    position: relative;
    display: inline-block;
}

.webgene-item-prevPageLink {
    margin-left: 1rem;
}

.news-list .webgene-blog {
    display: flex;
    flex-wrap: wrap;
}

.news-list .webgene-blog .webgene-item {
    width: 45%;
    margin: 2rem 2.5%;
}

/* フォーム */
.formInput,
.formTextArea {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 0;
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;
    margin-bottom: 2rem;
}

.formTextArea {
    height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;

}
.zipInput {
    width: 6rem;
}
@media (min-width:768px) {
    .formTh {
        padding-left: 2rem;
    }
}

.requiredText {
    background-color: #A3987C;
    color: #FFF;
    padding: 4px 8px;
    font-size: 0.8rem;
    margin-left: 1rem;
}
.privacyformError {
    padding-top: 25px;
}
@media (min-width:768px){
    .privacyformError {
        padding-top: 0;
    }
}

/* ページ共通設定 */

.fv {
    height: 70vh;
}

@media (min-width:768px){
    .fv {
        height: 80vh;
    }
}

@media (min-width: 1200px) {
    .fv {
        height: 100vh;
    }
}

.fv2 {
    height: 70vh;
}

@media (min-width:768px){
    .fv2 {
        height: 80vh;
    }
}

.fv-slider{
    height: 64%; /* 親要素の高さ */
    overflow: hidden; /* 画像がはみ出した部分を隠す */
}

@media (min-width:768px){
    .fv-slider {
        height: 80%;
    }
}

.fv-slider img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像の縦横比を維持してフィット */
    object-position: center; /* 中央に配置 */
}

.fv-sub {
    height: 64%;
}

@media (min-width:768px){
    .fv-sub {
        height: 80%;
    }
}

.fv-img-conce {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 60vh;
}

@media (min-width:768px){
    .fv-img-conce {
        height: 70vh;
    }
}

.news-detail-top {
    margin-top: 64px;
}

@media (min-width:992px) {
    .news-detail-top {
        margin-top: 102px;
    }
}

.deco-fv-size {
    max-height: 140px;
}

/* 角 */

.r-20{
    border-radius: 20px;
}

.r-40{
    border-radius: 40px;
}

.r-r-20 {
    border-radius: 0 20px 20px 0;
}

.r-tr-40{
    border-radius: 0 40px 0 0;
}

.r-lb-60 {
    border-radius: 0 0px 0 60px;
}

.r-tr-140{
    border-radius: 0 140px 0 0;
}

/* TOPページ */

.top-fv {
    background-image: url(../images/top-bg-sp.jpg);
}

/* ヘッドスパページ */

.title-en-box {
    position: relative;
    padding: 30px;
    background-image: url(../images/en-deco.svg);
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

