@charset "UTF-8";

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  color: #222;
  background-color: #fff;
  font-size: 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
p {
    line-height: 1.6em;
    text-align: justify;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #222;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
}


/* 共通設定 ------------------------------- */
.pc{
    display: block;
}
.tb{
    display: none;
}
.sp{
    display: none;
}

/* セクションタイトル */
.section-title{
    display: flex;
    flex-direction: column;
    margin-left: calc(10% + 30px);
    margin-bottom: 50px;
    position: relative;
}
.section-title.right{
    margin-left: auto;
    margin-right: calc(10% + 30px);
}
.section-title.center{
    margin: 0 auto 50px auto;
}
.section-title::before{
    content: "";
    width: 26px;
    height: 63px;
    background-image: url(../img/icon-title.jpg);
    background-size: contain;
    position: absolute;
    top: 0;
    left: -30px;
}
.section-title.right::before{
    left: auto;
    right: -30px;
}
.section-title.center::before{
    content: none;
}
.section-title span{
    display: block;
    line-height: 1.2em;
}
.section-title.right span{
    width: fit-content;
    margin: 0 0 0 auto;
}
.section-title.center span{
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}
.section-title .ja{
    font-size: 32px;
    font-weight: 500;
}
.section-title .en{
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #A36637;
}

/* btn */
/*== 波紋がふわっと広がる */

.btn{
    position: relative;
    display: block;
    width: fit-content;
    text-align: center;
    z-index: 0;
}

/* 常にある丸（ベース） */
.btn::before {
    content: "";
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #F3E6DE;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* ホバーで広がる */
.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #F3E6DE;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    z-index: -1;
}

/* ホバー時 */
.btn:hover::after {
    animation: ripple 0.8s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* ページタイトル */
#page-title-area{
    width: 100%;
    height: 400px;
    padding: 0 5%;
    position: relative;
}
#page-title-area .backimage-wrap{
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
#page-title-area .backimage-wrap img{
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}

#page-title-area .main-wrap{
    width: 55%;
    padding: 45px 0;
    margin: 0 0 0 auto;
}
#page-title-area .main-wrap .page-title{
    margin: 0 0 40px auto;
}
#page-title-area .main-wrap .page-title span{
    display: block;
    line-height: 1.2em;
    width: fit-content;
    margin: 0 0 0 auto;
}
#page-title-area .main-wrap .page-title .sub{
    font-size: 18px;
    font-weight: 400;
}
#page-title-area .main-wrap .page-title .main{
    font-size: 32px;
    font-weight: 500;
}
#page-title-area .main-wrap p{
    text-indent: 1em;
}

/* フェードイン */
.fade-in{
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s;
}
.fade-in.inview{
    opacity: 1;
    transform: translateY(0);
}

/* header -------------------------------- */
#header{
    width: 100%;
    height: 150px;
    background-color: #F3E6DE;
    padding: 0;
    margin: 0;
}
#header .line-area{
    width: 100%;
    height: 10px;
    background-color: #222;
}

/* ロゴエリア */
#header .nav-area{
    width: 100%;
    position: relative;
}
#header .nav-area .logo{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3E6DE;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
}
#header .nav-area .logo a{
    width: 90px;
}
#header .nav-area .logo a img{
    width: 100%;
}

/* ナビエリア */
#header .header-nav{
    width: 100%;
    background-color: #F3E6DE;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 45px 0;
}
#header .header-nav .nav-list{
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    padding: 0 5%;
}
#header .header-nav .left-menu{
    justify-content: flex-end;
    padding: 0 10% 0 2%;
}
#header .header-nav .right-menu{
    justify-content: flex-start;
    padding: 0 2% 0 10%;
}
#header .header-nav .nav-list li{
    width: 96px;
    text-align: center;
}
#header .header-nav .nav-list li a{
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
}

/* ここからホバー時の挙動 */
#header .header-nav .nav-list .text-link a{
	position: relative;
}

#header .header-nav .nav-list .text-link a:hover{
	color:#333;
}

#header .header-nav .nav-list .text-link a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -10px;
    left: 0;
    /*線になる丸の形状*/
    width: 100%;
    height: 5px;
    border-radius: 50%;
    background:#222;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0.04, 1);/*X方向0.04、Y方向1*/
    transform-origin:center bottom;/*中央下部基点*/
}

/*現在地とhoverの設定*/
#header .header-nav .nav-list .text-link a:hover::after {
    height: 2px;/*縦幅を変化*/
    border-radius: 0;/*丸みをなくす*/    
    transform: scale(0.8, 1);/*X方向0.8、Y方向1にスケール拡大*/
}
/* ここまで */

#header .header-nav .nav-list .sns-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
#header .header-nav .nav-list .sns-container a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #222;
}
#header .header-nav .nav-list .sns-container a img{
    width: 20px;
}

/* mv  ------------------------------- */
#main-visual{
    width: 100%;
}

/* footer  ------------------------------- */
#footer{
    width: 100%;
    background-color: #F3E6DE;
}

#footer .scroll-text{
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 55px;
}  
#footer .scroll-text-inner {
    display: flex;
    width: max-content;
    animation: scroll-left 120s linear infinite;
}
  
#footer .scroll-text-inner span {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 96px;
    font-weight: 500;
    padding-right: 50px;
}
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

#footer .main-wrap{
    margin: 0 auto 70px auto;
}
#footer .main-wrap .catchcopy{
    font-size: 20px;
    margin-bottom: 45px;
    text-align: center;
}
#footer .main-wrap .logo{
    display: block;
    width: 100px;
    margin: 0 auto 15px auto;
}
#footer .main-wrap .logo img{
    width: 100%;
}
#footer .main-wrap .en-copy{
    color: #A36637;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

#footer .main-wrap .info-wrap{
    width: 100%;
    padding: 0 10% 60px 10%;
}
#footer .main-wrap .info-wrap .address{
    line-height: 1.2em;
    text-align: center;
    margin-bottom: 10px;
}
#footer .main-wrap .info-wrap .address .post-number{
    font-size: 16px;
}
#footer .main-wrap .info-wrap .tel-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
#footer .main-wrap .info-wrap .tel-wrap p{
    display: block;
    font-size: 24px;
    font-weight: 500;
}
#footer .main-wrap .info-wrap .tel-wrap p .small{
    font-size: 15px;
}

#footer .main-wrap .footer-nav{
    width: 80%;
    margin: 0 10%;
}
#footer .main-wrap .footer-nav .footer-nav-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}
#footer .main-wrap .footer-nav .footer-nav-list li{
    width: auto;
}
#footer .main-wrap .footer-nav .footer-nav-list li a{
    /* 文字の改行禁止 */
    white-space: nowrap;
    padding-bottom: 5px;
    border-bottom: 1px dotted #222;
}
#footer .main-wrap .footer-nav .footer-nav-list li a:hover{
    border-bottom: 1px solid #222;
}

#footer .main-wrap .footer-nav .sub-link-list{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
#footer .main-wrap .footer-nav .sub-link-list li{
    width: auto;
}
#footer .main-wrap .footer-nav .sub-link-list li a{
    display: inline-block;
    white-space: nowrap;
    padding-bottom: 5px;
    border-bottom: 1px dotted #222;
}
#footer .main-wrap .footer-nav .sub-link-list li .instagram{
    position: relative;
}
#footer .main-wrap .footer-nav .sub-link-list li .instagram::before{
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../img/icon-instagram-black.png);
    background-size: contain;
    position: absolute;
    top: 5px;
    left: -25px;
}
#footer .main-wrap .footer-nav .sub-link-list li a:hover{
    border-bottom: 1px solid #222;
}

#footer .footer-img{
    width: 100%;
}
#footer .footer-img img{
    width: 100%;
}
#footer .black-line-area{
    width: 100%;
    background-color: #222;
    padding: 5px 0;
}
#footer .black-line-area .copyright{
    color: #F3E6DE;
    font-size: 10px;
    line-height: 1em;
    text-align: center;
}

/* privacy_policy ----------------------- */
#privacy_policy{
    width: 100%;
    padding: 120px 0 0 0;
}
#privacy_policy .main-wrap{
    width: 80%;
    margin: 0 auto;
}
#privacy_policy .main-wrap .btn{
    margin: 80px auto 120px auto;
}

#privacy_policy p{
    margin-bottom: 40px;
}
#privacy_policy ul{
    margin-bottom: 40px;
}
#privacy_policy ul li{
    list-style: disc;
    margin-left: 20px;
}

/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 960px) {

    /* 共通設定 ------------------------------- */
    .pc{
        display: none;
    }
    .tb{
        display: block;
    }

    /* セクションタイトル */
    .section-title{
        margin-left: calc(10% + 25px);
        margin-bottom: 40px;
    }
    .section-title.right{
        margin-left: auto;
        margin-right: calc(10% + 25px);
    }
    .section-title::before{
        width: 18px;
        height: 43px;
        left: -25px;
    }
    .section-title.right::before{
        right: -25px;
    }
    .section-title .ja{
        font-size: 24px;
    }
    .section-title .en{
        font-size: 13px;
    }

    /* btn */
    /* ホバー時 */
    .btn:hover::after {
        animation: none;
    }

    /* ページタイトル */
    #page-title-area{
        height: auto;
    }
    #page-title-area .backimage-wrap img{
        height: 376px;
    }

    #page-title-area .main-wrap{
        width: 100%;
        padding: 396px 0 45px 0;
        margin: 0 auto;
    }
    #page-title-area .main-wrap .page-title{
        margin: 0 auto 40px 0;
    }
    #page-title-area .main-wrap .page-title span{
        margin: 0 auto 0 0;
    }

    /* header -------------------------------- */
    #header{
        height: 100px;
    }

    /* ロゴエリア */
    #header .nav-area .logo{
        width: 150px;
        height: 150px;
    }
    #header .nav-area .logo a{
        width: 70px;
    }

    /* ハンバーガー */
    #header .nav-area .hamburger{
        width: 50px;
        height: 50px;
        background-color: #222;
        border-radius: 50%;
        cursor: pointer;
        position: fixed;
        top: 30px;
        right: 40px;
        z-index: 100;
    }
    #header .nav-area .hamburger span{
        width: 24px;
        height: 1px;
        background-color: #fff;
        display: inline-block;
        position: absolute;
        left: 13px;
        transition: all 0.4s;
    }
    #header .nav-area .hamburger span:nth-of-type(1){
        top: 18px;
    }
    #header .nav-area .hamburger span:nth-of-type(2){
        top: 25px;
    }
    #header .nav-area .hamburger span:nth-of-type(3){
        top: 32px;
    }
    /* active */
    #header .nav-area .hamburger.active span:nth-of-type(1){
        top: 25px;
        transform: rotate(45deg);
    }
    #header .nav-area .hamburger.active span:nth-of-type(2){
        opacity: 0;
    }
    #header .nav-area .hamburger.active span:nth-of-type(3){
        top: 25px;
        transform: rotate(-45deg);
    }

    /* ナビエリア */
    #header .nav-area .header-nav{
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 95;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 60px;
        padding: 0;
    }
    #header .nav-area .header-nav.active{
        transform: translateX(0);
        overflow: auto;
    }


    #header .header-nav .nav-list{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        flex: initial;
        padding: 0;
        margin: 0 auto;
    }
    #header .header-nav .left-menu{
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    #header .header-nav .right-menu{
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    #header .header-nav .nav-list li{
        width: 108px;
    }
    #header .header-nav .nav-list li a{
        font-size: 18px;
    }

    /* ここからホバー時の挙動 */
    #header .header-nav .nav-list .text-link a:hover{
        color:#222;
    }

    #header .header-nav .nav-list .text-link a::after {
        content: none;
    }
    /* ここまで */

    /* footer  ------------------------------- */
    #footer .main-wrap .footer-nav{
        width: 90%;
        margin: 0 5%;
    }

}

/*-------------------------------------------
スマホ
-------------------------------------------*/
@media screen and (max-width: 767px) {

    /* 共通設定 ------------------------------- */
    .sp{
        display: block;
    }

    /* セクションタイトル */
    .section-title{
        margin-left: calc(5% + 25px);
    }
    .section-title.right{
        margin-left: calc(5% + 25px);
        margin-right: auto;
    }
    .section-title.right::before{
        left: -25px;
        right: auto;
    }
    .section-title.right span{
        margin: 0 auto 0 0;
    }

    /* ページタイトル */
    #page-title-area .backimage-wrap{
        width: auto;
        height: 240px;
        left: -30px;
    }
    #page-title-area .backimage-wrap img{
        height: 240px;
    }

    #page-title-area .main-wrap{
        padding: 260px 0 45px 0;
    }
    #page-title-area .main-wrap .page-title .sub{
        font-size: 16px;
    }
    #page-title-area .main-wrap .page-title .main{
        font-size: 24px;
    }

    /* header -------------------------------- */
    #header{
        height: 60px;
    }
    #header .line-area{
        height: 5px;
    }

    /* ロゴエリア */
    #header .nav-area .logo{
        width: 80px;
        height: 80px;
    }
    #header .nav-area .logo a{
        width: 40px;
    }

    /* ハンバーガー */
    #header .nav-area .hamburger{
        width: 40px;
        height: 40px;
        top: 12px;
        right: 5%;
    }
    #header .nav-area .hamburger span{
        left: 8px;
    }
    #header .nav-area .hamburger span:nth-of-type(1){
        top: 13px;
    }
    #header .nav-area .hamburger span:nth-of-type(2){
        top: 20px;
    }
    #header .nav-area .hamburger span:nth-of-type(3){
        top: 27px;
    }
    /* active */
    #header .nav-area .hamburger.active span:nth-of-type(1){
        top: 20px;
    }
    #header .nav-area .hamburger.active span:nth-of-type(3){
        top: 20px;
    }

    /* footer  ------------------------------- */
    #footer .scroll-text-inner span {
        font-size: 64px;
        padding-right: 30px;
    }
    
    #footer .main-wrap .info-wrap .tel-wrap{
        flex-direction: column;
        gap: 0;
    }
    #footer .main-wrap .info-wrap .tel-wrap p{
        line-height: 1.2em;
    }
    #footer .main-wrap .footer-nav .footer-nav-list{
        gap: 20px 40px;
    }

    #footer .main-wrap .footer-nav .sub-link-list{
        flex-direction: column;
        gap: 20px;
    }

    /* privacy_policy ----------------------- */
    #privacy_policy{
        padding: 80px 0 0 0;
    }
    #privacy_policy .main-wrap{
        width: 90%;
    }


}