@charset "utf-8";

/*
	Theme Name: 昭和の家
	Theme URI: https://shouwanoie.jp/
    Author: デザインオフィスすぴか
    Author URI : https://www.spica-design.jp/
*/

/************************************************
 *              全体共通
 ************************************************/

html{
    font-size: 62.5%;
}
body{
    min-width: 1100px;
    font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体', serif;
    font-size: 1.6em;
}
#contents{
    overflow: hidden;
}
main{
    display: block;
}
a{
    color: #5a8a79;
    text-decoration: none;
}
a:not([class]):hover{
    text-decoration: underline;
}

.sp,
.sp-mini{
    display: none!important;
}
.mr-half-pc{
    display: inline-block;
    margin-right: 0.5em;
}
.full-width{
    width: 100%;
}
.mb1em{
    margin-bottom: 1em;
}
.copyright{
    padding-right: 17px;
    font-size: 1.2rem;
    text-align: right;
    letter-spacing: 0.06em;
}

@media (max-width: 820px){
    body{
        min-width: 100%;
    }
    .sp{
        display: block!important;
    }
    .mr-half-pc{
        display: block;
        margin-right: 0;
    }
}
@media (max-width: 420px){
    .sp-mini{
        display: block!important;
    }
}
/************************************************
 *                スライダー共通
 ************************************************/
.fade-slide{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.fade-slide .slide-item{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}
.fade-slide .slide-item img{
    width: auto;
    max-width: 100vw;
    max-width: initial;
    height: 100%;
}

/* 動作に関わるクラス */
.slide-activate{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}
.slide-current{
    opacity: 1;
    z-index: 500;
    transition: all 2000ms ease 0s;
}
.slide-moving{
    opacity: 0;
}

.slide-item:not(:first-of-type),
.slide-item.slide-hidden{
    display: none;
}
.slide-item.slide-current,
.slide-item.slide-next{
    display: block;
}
/* 動作に関わるクラスここまで */

.slide-item span{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.2) translateX(0);
}
.slide-animation span{
    z-index: 2;
    animation: horizontal-moving 9600ms linear 0s normal forwards;
}

@keyframes horizontal-moving{
    0%{
        transform: scale(1.2) translateX(0);
    }
    100%{
        transform: scale(1.2) translateX(-50px);
    }
}


/************************************************
 *      トップ、お問い合わせ、利用規定共通
 ************************************************/
 .base main{
     min-height: 100vh;
     padding-top: 160px;
 }
 .base header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 270px;
    padding-left: 7px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 7000;
    overflow: hidden;
 }
 .base header.menu-open{
     height: 100vh;
     position: fixed;
 }
 .base .common-logo{
     display: inline-block;
     width: 120px;
     position: relative;
     top: 25px;
 }
 .base .common-logo::before{
     content: "";
     width: 240px;
     height: 140px;
     position: absolute;
     top: -39px;
     left: -67px;
     z-index: -1;
     background-color: #fff;
     transform: rotate(-44deg);
 }
 .base .common-logo img{
     width: 100%;
     transition: opacity 250ms ease 0s;
 }
 .base .common-logo img:hover{
    opacity: 0.6;
 }
 .common-menu-btn{
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     align-items: center;
     width: 60px;
     height: 28px;
     margin-left: auto;
     margin-right: 35px;
     position: relative;
     z-index: 12000;
     top: 17px;
     transition: transform 300ms ease 0s;
 }
 .common-menu-btn:hover{
     cursor: pointer;
 }
 .common-menu-btn span{
     display: block;
     width: 100%;
     height: 2px;
     position: relative;
     background-color: #434343;
     transition: all 300ms ease 0s;
 }
 .common-menu-btn span:first-of-type{
     width: 50px;
    left: -20px;
 }
.common-menu-btn span:nth-of-type(2){
    width: 70px;
   left: -10px;
}
.common-menu-btn:hover span:first-of-type,
.common-menu-btn:hover span:nth-of-type(2){
    width: 100%;
    left: 0;
}
.menu-open .common-menu-btn{
    height: 60px;
    margin-right: 0;
    position: fixed;
    top: 0;
    right: 35px;
    transform: rotate(135deg);
}
.menu-open .common-menu-btn span:nth-of-type(2){
    opacity: 0;
}
.menu-open .common-menu-btn span{
    width: 100%;
    left: 0;
}
.menu-open .common-menu-btn span:first-of-type{
    top: 29px;
}
.menu-open .common-menu-btn span:last-of-type{
    bottom: 30px;
    transform: rotate(-90deg);
}

.base .common-menu-box{
    width: 100%;
    height: 100vh;
    padding: 0px 20px 20px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    background-color: #fff;
    background-image: url(images/studio-about-bg.jpg), url(images/cafe-about-bg.jpg);
    background-repeat: no-repeat;
    background-position: top -55% left -20%, bottom right;
    transform: scale(0) translate3d(0, 0 ,0);
    opacity: 0;
    transition: opacity 300ms ease 0s;
}
.base .menu-open .common-menu-box{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    opacity: 1;
}
.base header nav{
    width: 100%;
}
.base header nav .common-menu-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 410px;
    margin: 0 auto;
    font-size: 2.1rem;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
}

.base header nav .common-menu-list li{
    margin-bottom: 20px;
    padding: 40px 20px 0;
}
.base header nav .common-menu-list li.menu-list-logo{
    margin: 0 -60px 0 0;
    padding-top: 60px;
}
.base header .common-menu-list li a{
    display: block;
    height: 100%;
    position: relative;
}
.base header .common-menu-list .common-menu-logo{
    display: inline-block;
    width: 160px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.base header .common-menu-list li img{
    display: inline-block;
}
.base header .common-menu-list .common-menu-logo:hover img{
    opacity: 0.7;
}
.base header .common-menu-list li:not([class]) a::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -5px;
    border-right: 1px solid #669484;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 400ms ease 0s;
}
.base header .common-menu-list li a:hover{
    text-decoration: none;
}
.base header .common-menu-list li a:hover::before{
    transform: scaleY(1);
    transform-origin: top;
}

 .base .copyright{
    margin-bottom: 69px;
 }
 
 @media (max-width: 820px){
    .base header{
        padding-left: 3px;
    }
    .base .common-logo{
        width: 25%;
        max-width: 120px;
    }
    .base .common-logo::before{
        top: -70px;
    }
    .base .common-menu-btn{
        width: 50px;
        margin-right: 12px;
    }
    .common-menu-btn span:first-of-type{
        width: 100%;
        left: -12%;
    }
    .common-menu-btn span:nth-of-type(2){
        width: 110%;
        left: -5%;
    }
    .base .menu-open .common-menu-btn{
        right: 12px;
    }
    .base .menu-open .common-menu-box{
        display: block;
        background-position: top 0 left -20vw, bottom right -50%;
        background-size: 75%;
    }
    .menu-open .common-menu-btn span:first-of-type{
        left: 0;
    }

    .base header nav .common-menu-list{
        flex-direction: row-reverse;
        flex-wrap: wrap;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    }
    .base header .common-menu-list li:nth-of-type(n+2){
        width: 19%;
        max-width: 3em;
        padding: 0;
        display: flex;
        align-items: center;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    }
    .base header .common-menu-list li a{
        padding: 0;
        position: relative;
    }
    
    .base header nav .common-menu-list li.menu-list-logo{
        width: 100%;
        margin: 0 0 10px;
        padding: 60px 0 0;
        text-align: center;
    }
    .base header .common-menu-list .common-menu-logo{
        width: 45%;
        margin: 0 auto;
    }
    .base main{
        padding-top: 120px;
    }
    .base .copyright{
        margin-bottom: 30px;
     }
 }
 @media (max-width: 420px){
    .base .common-logo::before{
        width: 250px;
        height: 150px;
        top: -80px;
        left: -77px;
    }
 }


/************************************************
*                 トップページ
 ************************************************/
.top main{
    padding-top: 60px;
}
.top h2{
    color: #477565;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
}
.top .common-logo{
    width: 110px;
}

 .top .firstView{
    padding: 0 18px 0 28px;
    overflow: hidden;
}
.top .firstView .slider-area{
    width: 100%;
    padding-top: 37.6%;
    position: relative;
    overflow: hidden;
}

section.top-about{
    padding: 77px 0 164px;
    position: relative;
}

.top-about-txt-box{
    width: 391px;
    height: 344px;
    position: relative;
    left: 59.4%;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
}
.top-about-txt-box span:not(class){
    display: inline-block;
    width: 1em;
    height: 1em;
    text-align: center;
    transform: rotate(-90deg);
}
.top .about-title-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 45px;
    position: relative;
    top: -10px;
    color: #477565;
}
.top .about-title-box h2{
    margin-bottom: 26px;
}
.top .about-title-box p{
    font-size: 1.7rem;
}

.top .about-txt{
    padding-top: 14px;
}
.top .about-txt img{
    width: 100%;
    transform: rotate(0.01deg);
}

.top .about-txt p:first-of-type{
    width: 94px;
    margin-left: 82px;
}
.top .about-txt p:nth-of-type(2){
    width: 133px;
    padding-top: 5px;
}
.top-about .about-img-area{
    width: 52.3%;
    height: calc(100% - 90px - 164px);
    position: absolute;
    top: 78px;
    left: 0;
}

.top-about .about-img{
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.top-about .about-img.img01{
    width: 29.6vw;
    min-width: 338px;
    height: 19.7vw;
    min-height: 225px;
    top: 82px;
    left: 0;
    background-image: url(images/top-about-img1.jpg);
}
.top-about .about-img.img02{
    width: 20vw;
    min-width: 229px;
    height: 13.3vw;
    min-height: 152px;
    top: 0;
    right: 0;
    background-image: url(images/top-about-img2.jpg);
}


section.top-information{
    height: auto;
    padding-bottom: 95px;
    position: relative;
}
.top-information::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: url(images/top-info-bg.jpg) repeat-x left bottom / cover;
}
.top-information .info-title-box{
    margin-bottom: 65px;
    position: relative;
    top: -20px;
    color: #477565;
    text-align: center;
    line-height: 1;
}
.top-information .info-title-box h2{
    margin-bottom: 20px;
    font-size: 3.15rem;
    letter-spacing: -0.02em;
}
.top-information .info-title-box p{
    font-size: 1.7rem;
}
.top-infomation-area{
    width: 840px;
    margin: 0 auto;
}
.top .info-list .info-item{
    margin: 0 auto;
    padding: 24px 0;
    border-bottom: 1px solid #bababa;
}
.top .info-list .info-item:first-of-type{
    padding-top: 0;
}
.top .info-list .info-item-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* width: 81%; */
    margin: 0 auto;
    font-size: 1.8rem;
}
.top .info-list .info-label{
    display: block;
    width: 80px;
    margin-right: 41px;
    margin-left: 9.5%;
    padding: 4px 0 8px;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1;
    border-radius: 2px;
}
.top .info-list .info-label.studio{
    background-color: #f9cbbe;
}
.top .info-list .info-label.cafe{
    background-color: #b5d4c3;
}
.top .info-list .info-label.event{
    background-color: #ffd5ab;
}
.top .info-list .info-label.other{
    background-color: #bababa;
}
.top .info-list .info-txt{
    max-width: 640px;
}
.top .info-list .info-txt strong{
    display: inline-block;
    margin-bottom: 0.25em;
}
.top .info-list .info-item-box time{
    display: block;
    margin-top: 3px;
    margin-bottom: 8px;
    color: #646464;
    line-height: 1;
}

section.top-branch{
    margin-bottom: 112px;
    padding-top: 91px;
}
.top .branch-area{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 980px;
    height: 601px;
    margin: 0 auto;
}

.top .branch-box{
    width: 450px;
    position: relative;
    font-size: 1.8rem;
    font-family: "Hannari", 'Noto Serif JP', serif;
    line-height: 1;
}
.top .branch-box.cafe{
    margin-top: auto;
}
.top .branch-img{
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.top .branch-box .branch-img span{
    display: block;
    width: 100%;
    height: 100%;
    transition: all 300ms ease 0s;
    transform: scale(1);
}
.top .branch-box:hover .branch-img span{
    opacity: 0.5;
    transform: scale(1.1);
}
.top .branch-title-box{
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.top .branch-title-box::before{
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -60%;
    left: 21px;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}
.top .branch-box.studio .branch-title-box::before{
    background-image: url(images/top-branch-studio-icon.png);
}
.top .branch-box.cafe .branch-title-box::before{
    background-image: url(images/top-branch-cafe-icon.png);
}
.top .branch-title{
    width: 343px;
    margin-bottom: 4px;
    padding-left: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #535353;
}
.top .branch-title p{
    margin-bottom: 2px;
}
.top .branch-title h3{
    font-size: 3.6rem;
    font-weight: 700;
}
.top .branch-link{
    display: block;
    text-align: right;
    color: #000;
}
.top .branch-link img{
    display: inline-block;
    width: 108px;
}
.top .branch-link::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media (max-width: 820px){
    .top h2{
        font-size: 3rem;
    }
    .top .common-logo{
        width: inherit;
        max-width: 100px;
    }
    .top .firstView{
        margin-bottom: 30px;
    }
    .top .firstView .slider-area{
        padding-top: 78%;
    }

    section.top-about{
        padding: 0 0 94px;
    }
    .top .about-title-box{
        margin-left: 5%;
    }
    .top-about-txt-box{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 20px;
        left: 0;
    }
    .top .about-txt{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 74%;
        max-width: 284px;
    }
    .top .about-txt p:first-of-type{
        width: 34%;
        max-width: 94px;
        margin-left: 0;
    }
    .top .about-txt p:nth-of-type(2){
        width: 51%;
        max-width: 133px;
    }
    .top-about .about-img-area{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        top: 0;
    }
    .top-about .about-img{
        position: relative;
    }
    .top-about .about-img.img01,
    .top-about .about-img.img02{
        min-width: initial;
        min-height: initial;
    }
    .top-about .about-img.img01{
        width: 57vw;
        height: 32.7vw;
        top: 20px;
        left: 0;
    }
    .top-about .about-img.img02{
        width: 43vw;
        height: 32.3vw;
    }

    section.top-information{
        height: auto;
        padding-bottom: 30px;
    }
    .top-information::before{
        height: 100%;
    }
    .top-information .info-title-box{
        margin-bottom: 30px;
    }
    .top-information .info-title-box h2{
        margin-bottom: 12px;
    }
    .top-infomation-area{
        width: 94%;
    }
    .top .info-list .info-item-box{
        flex-direction: column;
        align-items: flex-start;
        width: 94%;
        position: relative;
    }
    .top .info-list .info-label{
        margin-right: 0;
        position: absolute;
        top: -4px;
        right: auto;
        left: 7em;
    }
    .top .info-list .info-item{
        padding-bottom: 20px;
    }
    .top .info-list .info-item-box .info-txt{
        max-width: 100%;
        font-size: 1.6rem;
    }
    .top .info-list .info-item-box time{
        width: 60%;
    }
    
    section.top-branch{
        margin-bottom: 60px;
    }
    .top .branch-area{
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
    }
    .top .branch-box{
        width: 90%;
        max-width: 450px;
    }
    .top .branch-box.studio{
        margin-bottom: 40px;
    }
    .top .branch-title{
        width: 90%;
        padding-left: 8.5vw;
    }
    .top .branch-title h3{
        font-size: 3.2rem;
    }
    .top .branch-title p{
        margin-bottom: 6px;
    }
    .top .branch-title-box::before{
        width: 15vw;
        max-width: 90px;
        height: 15vw;
        max-height: 100px;
        top: -10vw;
        left: 5px;
    }
}

@media (max-width: 420px){
    .top .firstView{
        padding-left: 6vw;
    }
    .top .info-list .info-label{
        margin-right: 0;
        position: absolute;
        top: -4px;
        right: 0;
        left: auto;
    }
}


/************************************************
 *       studio cafe サイドバー共通
 ************************************************/
.sidemenu{
    width: 169px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    text-align: center;
    border-right: 1px solid #b6b6b6;
    background-color: #fff;
}
.sidemenu-box .title-box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    line-height: 1;
    margin-bottom: 5vh;
}
.sidemenu-box .title-box:hover a{
    opacity: 0.6;
}
.sidemenu-logo{
    width: 96px;
    min-height: 0%;
    margin: 0 auto 33px;
}
.sidemenu-logo img{
    width: 100%;
}

.studio .sidemenu{
    padding-top: 68px;
}

.cafe .sidemenu{
    padding-top: 60px;
    left: calc(100% - 169px);
    border-right: none;
    border-left: 1px solid #b6b6b6;
}

.sidemenu h1{
    width: 31px;
    min-height: 0%;
}
.sidemenu .title-en{
    font-size: 2.2rem;
    font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体', 'Noto Serif JP', sans-serif;
}
.sidemenu-box .title-box .link-sp{
    pointer-events: none;
}
ul.sidemenu-list{
    padding: 0 28px 0 23px;
}

.sidemenu-list li:not(:last-of-type){
    border-bottom: 1px solid #656565;
}
.sidemenu-list li a{
    display: inline-block;
    width: 100%;
    padding: 20px 0 16px;
    color: #656565;
    font-weight:300;
}
.sidemenu-list li a:hover{
    color: #000;
    text-decoration: none;
}
.sidemenu-list img{
    width: 100%;
}
li.menu-facebook a{
    display: block;
    width: 21px;
    margin: 0 auto;
    transition: all 300ms ease 0s;
}
li.menu-facebook:hover a{
    opacity: 0.6;
}
.menu-tabelog a{
    display: inline-block;
    width: 120px;
    padding: 6px 0 7px;
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    background-color: #f8aa02;
    border-radius: 4px;
    transition: all 300ms ease 0s;
}
.menu-tabelog a:hover{
    text-decoration: none;
    opacity: 0.6;
}
.menu-tabelog a span{
    font-size: 1.2rem;
}

@media (min-width: 821px) and (max-height: 740px){
    .sidemenu-logo{
        margin-bottom: 4vh;
    }
    .studio .sidemenu{
        padding-top: 6vh;
    }
    .sidemenu-list li:first-of-type a{
        padding-top: 0;
    }
}

@media (max-width: 820px){
    .studio .common-menu-btn,
    .cafe .common-menu-btn{
        display: flex!important;
    }
    .studio header,
    .cafe header{
        width: 100%;
        height: 70px;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #fff;
        border-bottom: 1px solid #b6b6b6;
    }
    .studio .sidemenu,
    .cafe .sidemenu{
        width: 100%;
        height: 100%;
        padding-top: 0;
        position: relative;
        border: none;
    }
    .sidemenu h1,
    ul.sidemenu-list{
        display: none;
    }
    .sidemenu-box .title-box{
        flex-direction: row;
        justify-content: center;
        height: 100%;
        padding-top: 7px;
        padding-bottom: 3px;
        margin-bottom: 0;
    }
    .studio .sidemenu-box .title-box{
        padding-bottom: 7px;
    }
    .cafe .sidemenu-box .title-box{
        padding-top: 6px;
        padding-bottom: 4px;
    }
    .sidemenu-logo{
        margin: 0 20px 0 0;
    }
    .cafe .sidemenu-logo{
        width: 90px;
    }
    .sidemenu-box .title-box .link-sp{
        pointer-events: all;
        text-decoration: none;
    }
    
    .studio .common-menu-btn,
    .cafe .common-menu-btn{
        width: 50px;
        margin: 0;
        position: absolute;
        right: 12px;
    }
    .studio header.menu-open,
    .cafe header.menu-open{
        height: auto;
        padding-bottom: 30px;
        background-color: #fff;
    }
    .studio header.sidemenu-box.menu-open .title-box{
        padding-bottom: 7px;
    }
    .studio header.menu-open ul.sidemenu-list,
    .cafe header.menu-open ul.sidemenu-list{
        display: block;
    }
    
}

@media (max-width: 420px){
    .studio .common-menu-btn, .cafe .common-menu-btn{
        right: 3%;
    }
    .sidemenu-box .title-box{
        justify-content: flex-start;
    }
    .sidemenu-logo{
        margin-left: 3%;
        margin-right: 3%;
    }
    .cafe .sidemenu-logo{
        margin-left: 6%;
    }
}

/************************************************
 *      studio cafe コンテンツ表示領域
 ************************************************/
 /* 幅指定 */
 .studio main,
 .studio footer{
    width: calc(100% - 168px);
    margin-left: 168px;
 }
 .cafe main,
 .cafe footer{
    width: calc(100% - 168px);
    margin-right: 168px;
 }

 /* 共通CSS */
 .studio main,
 .cafe main{
    padding-top: 40px;
 }
 .studio .firstView,
 .cafe .firstView{
    padding-top: 54.4%;
    position: relative;
 }

 section.about {
     position: relative;
 }
section.about .about-txt-box{
    position: relative;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
}
section.about .about-title-box h2{
    font-weight: 400;
}
section.about .about-img-area{
    height: 100%;
    position: absolute;
    left: 0;
}
section.about .about-img{
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.common-branch-area{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 71px;
 }

 .common-branch-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 370px;
    position: relative;
    z-index: 5;
    color: #FFF;
    overflow: hidden;
 }
 .common-branch-box::before,
 .common-branch-box::after{
     content: "";
     display: block;
     width: 100%;
     height: 100%;
     position: absolute;
     top: 0;
     left: 0;
     transition: all 300ms ease 0s;
 }
 .common-branch-box::before{
     z-index: -3;
     background-repeat: no-repeat;
     background-position: center;
     background-size: cover;
 }
 .common-branch-box::after{
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
}

 .common-branch-box.contact::before{
    background-image: url(images/common-branch-contact-bg.jpg);
 }
 .common-branch-box.cafe::before{
    background-image: url(images/common-branch-cafe-bg.jpg);
 }
 .common-branch-box.studio::before{
    background-image: url(images/common-branch-studio-bg.jpg);
 }
 .common-branch-box:hover::before{
     transform: scale(1.1);
 }
 .common-branch-box:hover::after{
    opacity: 0.5;
}
 .common-branch-box a{
     display: block;
     width: 72.3%;
     padding: 27px 0 29px;
     font-size: 2.6rem;
     text-align: center;
    font-family: "Hannari", 'Noto Serif JP', serif;
    color: #FFF;
    line-height: 1;
    border: 1px solid #FFF;
 }
 .common-branch-box a:hover{
     text-decoration: none;
 }
 .common-branch-box a::before{
     content: "";
     display: block;
     width: 100%;
     height: 100%;
     position: absolute;
     top: 0;
     left: 0;
 }
 .studio footer,
 .cafe footer{
     padding-bottom: 90px;
 }

 @media (max-width: 820px){
    .studio main,
    .cafe main{
        width: 100%;
        margin: 0;
        padding-top: 70px;
    }
    .studio main,
    .studio footer{
        width: 100%;
        margin-left: 0;
    }
    .studio footer,
    .cafe footer{
        padding-bottom: 35px;
    }
    .cafe footer{
        width: 100%;
        margin-right: 0;
    }
    .studio .firstView,
    .cafe .firstView{
        padding-top: 84.4%;
    }

    .common-branch-area{
        display: block;
        margin-bottom: 40px;
    }
    .common-branch-box{
        width: 100%;
        height: 240px;
    }
    .common-branch-box a{
        width: 88.3%;
        max-width: 374px;
    }
 }


/************************************************
 *              スタジオ『昭和の家』
 ************************************************/

.studio .sidemenu h1{
    margin-bottom: 30px;
}
.studio .title-en{
    color: #f9cbbe;
}
.studio .photo-gallery h2,
.studio .studio-prices h2,
.studio .studio-facility h2{
    font-size: 4.5rem;
    font-family: "Hannari", 'Noto Serif JP', serif;
    font-weight: 400;
    line-height: 1;
}

.studio .firstView{
    background: #f9cbbe url(images/studio-about-bg.jpg) center / 100%;
    background-color: #f9cbbe;
}
.studio .studio-fv-copy{
    position: absolute;
    top: 49%;
    right: 8.7%;
    z-index: 10;
    color: #FFF;
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    transform: translateY(-75%);
}
.studio .firstView .fade-slide{
    z-index: 0;
}

.studio section.about{
    display: flex;
    flex-shrink: 0;
    padding: 88px 0 70px;
}
.studio section.about .about-txt-box{
    position: absolute;
    top: 88px;
    left: 49.8%;
}
.studio section.about .about-txt-box::before{
    content: "";
    display: block;
    width: 354px;
    height: 315px;
    position: absolute;
    bottom: -2em;
    right: -8.5em;
    z-index: -1;
    background: url(images/studio-about-bg.jpg) no-repeat center / cover;
}
.studio section.about .about-txt-box h2{
    margin-left: 70px;
    color: #cc6e6a;
    font-size: 2.6rem;
    letter-spacing: 0.08em;
}
.studio section.about .about-txt{
    width: 280px;
    min-height: 0%;
    padding-top: 10px;
}
.studio section.about .about-txt p{
    width: 280px;
    height: auto;
    min-height: 0%;
    transform: rotate(0.01deg);
}
.studio section.about .about-img-area{
    width: 36%;
    height: 28.7vw;
    min-height: 402px;
    margin-right: auto;
    margin-left: 87px;
    position: relative;
    top: 21px;
}
.studio .about-img.img01{
    width: 21.4vw;
    min-width: 300px;
    height: 14.3vw;
    min-height: 199px;
    top: 0;
    right: 0;
    background-image: url(images/studio-about-img1.jpg);
}
.studio .about-img.img02{
    width: 18.6vw;
    min-width: 260px;
    height: 12.4vw;
    min-height: 173px;
    bottom: 0;
    left: 0;
    background-image: url(images/studio-about-img2.jpg);
}

.studio .photo-gallery{
    padding: 79px 0 82px;
}
.studio .photo-gallery h2{
    font-size: 5rem;
    margin-bottom: 60px;
    text-align: center;
}
/* フォトギャラリー内容 */
.studio section.photo-gallery .tab-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 72.7vw;
    margin: 0 auto;
}
.studio section.photo-gallery input[type="radio"]{
    display: none;
}
.studio section.photo-gallery .tab-label{
    display: block;
    width: 44%;
    max-width: 312px;
    padding-bottom: 35px;
    color: #6f6f6f;
    font-size: 2.2rem;
    text-align: center;
    letter-spacing: 0.2em;
    border-bottom: 2px solid #FFF;
    transition: all 200ms ease 0s;
}
.studio section.photo-gallery .tab-label:hover{
    cursor: pointer;
}
section.photo-gallery .photogallery-tab{
    display: none;
}
.photo-gallery input#radio-exterior + .tab-label{
    margin-right: 4.5vw;
}
.photo-gallery input#radio-exterior:checked + .tab-label,
.photo-gallery input#radio-interior:checked + .tab-label{
    color: #000;
    border-bottom-color: #97bea9;
}
.photo-gallery input#radio-exterior:checked ~ .photogallery-area .exterior,
.photo-gallery input#radio-interior:checked ~ .photogallery-area .interior{
    display: block;
}

.photo-gallery .photogallery-area{
    width: 100%;
    padding-top: 94px;
}
.studio .photogallery-list{
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: flex-start;
}
.studio .photogallery-list::after{
    content: "";
    display: block;
    width: 29.5%;
    min-width: 230px;
}
.studio .photogallery-list .photogallery-item{
    width: 29.5%;
}
.studio .photogallery-list .photogallery-item:hover{
    cursor: pointer;
}
.studio .photogallery-list li:not(:nth-last-of-type(-n+3)){
    margin-bottom: 80px;
}
.studio .photogallery-list .gallery-thumbnail{
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}
.studio .photogallery-list .gallery-thumbnail::before{
    content: "";
    display: block;
    width: 30px;
    height: 28px;
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 10;
    background: #FFF url(images/studio-modal-icon.png) no-repeat center / 16px;
}
.studio .photogallery-item .gallery-thumbnail img{
    transform: scale(1);
    transition: transform 300ms ease 0s;
}
.studio .photogallery-item:hover .gallery-thumbnail img{
    transform: scale(1.1);
}
.studio .photogallery-list .gallery-title{
    color: #656565;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1;
}

/* フォトギャラリー内容ここまで */

/* モーダルウィンドウ */
.modal-wrap{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.6);
}
.modal-overlay{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.modal-wrap .modal-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 68.5%;
    max-width: 960px;
    height: 90%;
    position: relative;

    background-color: #fff;
}
.modal-wrap .modal-area button{
    display: block;
    padding: 0;
    background-color: transparent;
    text-indent: -100em;
    border: none;
    overflow: hidden;
}
.modal-wrap .modal-area .modal-close-btn{
    width: 36px;
    height: 36px;
    position: absolute;
    top: 32px;
    right: 39px;
    z-index: 6000;
}
.modal-wrap .modal-area .modal-close-btn::before,
.modal-wrap .modal-area .modal-close-btn::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    border-top: 2px solid #000;
}
.modal-wrap .modal-area .modal-close-btn::before{
    transform: rotate(-45deg);
}
.modal-wrap .modal-area .modal-close-btn::after{
    transform: rotate(45deg);
}
.modal-wrap .modal-area .modal-arrow{
    width: 22px;
    height: 78%;
    position: absolute;
    top: 11%;
    z-index: 4000;
}
.modal-wrap .modal-area .modal-close-btn,
.modal-wrap .modal-area .modal-arrow:hover{
    cursor: pointer;
}
.modal-wrap .modal-area .modal-arrow::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.modal-wrap .modal-area .modal-arrow.prev{
    left: 60px;
}
.modal-wrap .modal-area .modal-arrow.prev::before{
    background-image: url(images/modal-arrow-prev.png);
}
.modal-wrap .modal-area .modal-arrow.next{
    right: 60px;
}
.modal-wrap .modal-area .modal-arrow.next::before{
    background-image: url(images/modal-arrow-next.png);
}
.modal-wrap .modal-img-wrap{
    width: 72.9%;
    min-height: 0%;
    margin-bottom: 20px;
}
.modal-wrap .modal-img-wrap img{
    display: inline-block;
    width: 100%;
}
.modal-wrap .modal-img-wrap.portrait{
    width: auto;
    height: 86.2%;
    text-align: center;
}
.modal-wrap .modal-img-wrap.portrait img{
    width: auto;
    height: 100%;
}
.modal-wrap .modal-text{
    font-size: 1.8rem;
}

/* モーダルウィンドウ ここまで */

.studio .streetView-area{
    width: 100%;
    padding-top: 32.5%;
    margin-bottom: 141px;
    position: relative;
}
.studio .streetView-area iframe{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.studio section.studio-prices{
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    padding-bottom: 45px;
    position: relative;
}
.studio .studio-prices .studio-prices-area{
    width: 61.8%;
    margin-left: auto;
    position: relative;
}
.studio .studio-prices .studio-prices-detail{
    margin-bottom: 15px;
    padding: 61px 0 78px 124px;
    background: url(images/studio-about-bg.jpg) center / 100%;
}
.studio-prices-detail .studio-prices-inner{
    width: 94%;
    max-width: 550px;
}
.studio .studio-prices h2{
    position: absolute;
    top: 85px;
    left: -0.4em;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
}
.studio .studio-prices .studio-prices-detail h3{
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}
.studio-prices-contact-area{
    margin-bottom: 57px;
    padding: 36px 0 44px 43px;
    border: 1px solid #000;
    line-height: 1;
}
.studio-prices-contact-area h3{
    margin-bottom: 33px;
}
.studio-prices-contact-area p:first-of-type{
    margin-bottom: 11px;
    font-size: 1.7rem;
}
.studio-prices-contact-area .studio-prices-tel{
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 16px;
    font-size: 3.6rem;
}
.studio-prices-contact-area .studio-prices-tel span{
    display: inline-block;
    width: 41px;
    margin-left: 9px;
    margin-right: 17px;
}
.studio-prices-contact-area address{
    padding-left: 20px;
    font-size: 1.8rem;
    font-style: normal;
}

.studio-prices-plan {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 9px;
    padding-left: 26px;
    position: relative;
    font-size: 2rem;
}
.studio-prices-plan::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: 1px solid #000;
}
.studio-prices-plan dt,
.studio-prices-plan dd{
    padding-top: 21px;
    padding-bottom: 21px;
    line-height: 1;
}
.studio-prices-plan dt:first-of-type,
.studio-prices-plan dd:first-of-type{
    padding-bottom: 31px;
}
.studio-prices-plan dt{
    width: 26%;
    max-width: 110px;
}
.studio-prices-plan dd{
    width: 74%;
}
.studio-plan-notice{
    margin-bottom: 80px;
    padding-left: 22px;
    color: #4c4c4c;
    font-size: 1.8rem;
}
.studio-prices-payment{
    padding-left: 18px;
}
.studio-prices-payment h3{
    margin-bottom: 25px;
}
.studio-prices-payment p{
    padding-left: 11px;
}

.studio-prices-img-area{
    width: 25.8vw;
    min-width: 350px;
    min-height: 390px;
    padding-top: 35%;
    position: absolute;
    top: 175px;
    left: 0;
}
.studio-prices-img-area div{
    padding-top: 56.2%;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.studio-prices-img-area .img01{
    width: 21.6vw;
    min-width: 302px;
    top: 0;
    left: 0;
    background-image: url(images/studio-price-img1.jpg);
}
.studio-prices-img-area .img02{
    width: 17.1vw;
    min-width: 240px;
    padding-top: 43.5%;
    bottom: 0;
    right: 0;
    background-image: url(images/studio-price-img2.jpg);
}

.studio section.studio-facility{
    padding: 61px 0 161px;
}
.studio .studio-facility-inner{
    width: 850px;
    margin: 0 auto;
}
.studio section.studio-facility h2{
    margin-bottom: 46px;
    position: relative;
    top: -3px;
    left: 9px;
    letter-spacing: 0.1em;
}
.studio .studio-facility-table{
    border-collapse: collapse;
    font-size: 1.8rem;
}

.studio .studio-facility-table th,
.studio .studio-facility-table td{
    padding: 24px 0 22px;
    border-bottom: 1px solid #000;
}
.studio .studio-facility-table tr:first-of-type th,
.studio .studio-facility-table tr:first-of-type td{
    padding: 25px 0 31px;
}
.studio .studio-facility-table tr:nth-of-type(n) th{
    width: 212px;
    padding-left: 37px;
    text-align: left;
    font-weight: 400;
}
.studio .studio-facility-table td{
    padding-right: 35px;
}

section.studio-address{
    padding: 46.3% 0 47px;
    position: relative;
    background-color: #ceddd1;
}
.studio .map-area{
    width: 100%;
    padding-top: 46.7%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}
.studio .map-area iframe{
    display: block;
    width: 100%;
    height: 160%;
    position: absolute;
    top: -42%;
    left: 0;
}
.studio .address-detail-area{
    width: 84%;
    max-width: 1005px;
    margin: -241px auto 0;
    padding: 53px 0 96px;
    position: relative;
    z-index: 3;
    background-color: #fff;
}
.studio .address-title-box{
    margin-bottom: 62px;
    text-align: center;
}
.studio .address-detail-txt{
    display: flex;
    justify-content: center;
}
.studio .address-detail-txt p:first-of-type{
    margin-right: 1.5em;
}
.studio .address-logo{
    width: 174px;
    margin: 0 auto 14px;
}
.studio .address-title-box p:nth-of-type(2){
    margin-bottom: 4px;
}
.studio .address-route-list{
    padding-right: 4em;
    padding-left: 172px;
}
.studio .address-route-list dt{
    margin-bottom: 13px;
    color: #477565;
    font-size: 2.25rem;
    font-weight: 700;
    font-family: "Hannari", 'Noto Serif JP', serif;
    line-height: 1;
    letter-spacing: -0.08;
}
.studio .address-route-list dd{
    margin-left: 0.5em;
    font-size: 1.8rem;
}
.studio .address-route-list dd:not(:last-of-type){
    margin-bottom: 45px;
}
.studio .address-route-bus-txt{
    margin-bottom: 20px;
}
.studio-tel{
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.4rem;
    white-space: nowrap;
}

@media (min-width: 821px) and (max-width: 1100px){
    .photo-gallery input#radio-exterior + .tab-label{
        margin-right: 0;
    }
}
@media (min-width: 821px) and (max-height: 740px){
    .studio .sidemenu h1{
        margin-bottom: 3vh;
    }
}
@media ( max-width: 820px ){
    .studio .photo-gallery h2,
    .studio .studio-prices h2,
    .studio .studio-facility h2{
        font-size: 3.3rem;
    }
    .studio .img01,
    .studio .img02{
        min-width: auto;
    }

    .studio .studio-fv-copy{
        padding: 0 10px;
        top: 54%;
        right: 0;
        font-size: 2.4rem;
    }

    .studio section.about{
        flex-grow: 0;
        flex-shrink: 0;
        flex-direction: column;
        align-items: center;
        padding: 40px 0 40px;
    }
    
    .studio section.about .about-img-area{
        width: 100%;
        height: auto;
        min-height: inherit;
        display: flex;
        justify-content: space-between;
        margin-left: 0;
    }
    .studio .about-img.img01{
        width: 52vw;
        min-width: inherit;
        height: 33vw;
        min-height: inherit;
        top: 0;
        left: 0;
        z-index: 5;
    }
    .studio .about-img.img02{
        width: 45vw;
        min-width: inherit;
        height: 33vw;
        min-height: inherit;
        top: 20px;
        left: auto;
        right: 0;
    }

    .studio section.about .about-txt-box{
        display: flex;
        flex-grow: 0;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 90%;
        height: 84vw;
        max-height: 416px;
        margin: 0 auto;
        position: relative;
        top: 0;
        left: auto;
    }
    .studio section.about .about-txt-box::before{
        height: 60%;
        bottom: 1em;
    }
    .studio section.about .about-txt-box h2{
        margin-right: 0;
        margin-left: 4vw;
    }
    .studio section.about .about-txt{
        width: 70%;
        max-width: 280px;
    }
    .studio section.about .about-txt p{
        width: 100%;
        min-width: 200px;
    }
    .studio section.about .about-txt img{
        width: 100%;
        height: auto;
    }

    .studio .photo-gallery h2{
        margin-bottom: 40px;
    }
    .studio section.photo-gallery .tab-wrap{
        width: 80vw;
    }
    .studio section.photo-gallery .tab-label{
        width: 45%;
        padding-bottom: 14px;
        font-size: 2rem;
    }

    .studio .streetView-area{
        margin-bottom: 60px;
        padding-top: 80%;
    }
    .studio .photo-gallery{
        padding: 50px 0;
    }
    .photo-gallery .photogallery-area{
        padding-top: 30px;
    }
    .studio .photogallery-list{
        justify-content: space-around;
    }
    .studio .photogallery-list .photogallery-item{
        min-width: 230px;
    }
    .studio .photogallery-list li:nth-of-type(n){
        margin-bottom: 40px;
    }
    .studio .photogallery-list .gallery-thumbnail{
        margin-bottom: 10px;
    }
    /* SP版モーダルウィンドウ */
    .modal-wrap .modal-area{
        width: 100%;
        padding-top: 60px;
        padding-bottom: 60px;
        height: auto;
        justify-content: flex-start;
    }
    .modal-wrap .modal-img-wrap{
        width: 94%;
        height: 50%;
    }
    .modal-wrap .modal-img-wrap.portrait{
        width: 94%;
        height: 50%;
    }
    .modal-wrap .modal-img-wrap.portrait img{
        width: 64%;
        height: auto;
    }
    .modal-wrap .modal-area .modal-close-btn{
        top: 12px;
        right: 10px;
    }
    .modal-wrap .modal-area .modal-arrow{
        height: 30%;
        top: 70%;
    }
    .studio .photogallery-list .gallery-title{
        font-size: 1.6rem;
    }
    .modal-wrap .modal-area .modal-arrow.prev{
        left: 4px;
    }
    .modal-wrap .modal-area .modal-arrow.next{
        right: 4px;
    }
    .modal-wrap .modal-text{
        width: calc(100% - 22px - 22px);
        margin: 0 auto;
        text-align: center;
    }
    /* SP版モーダルウィンドウ ここまで */

    .studio section.studio-prices{
        flex-direction: column-reverse;
        padding-bottom: 0;
    }
    .studio .studio-prices .studio-prices-img-area{
        width: 100%;
        min-width: auto;
        min-height: 0%;
        padding-top: 42%;
        position: relative;
        top: 0;
    }
    .studio-prices-img-area div{
        padding-top: 20%;
    }
    .studio-prices-img-area .img01{
        width: 45vw;
        height: 29vw;
    }
    .studio-prices-img-area .img02{
        width: 40%;
        padding-top: 30%;
        right: 10px;
        bottom: 10%;
    }
    .studio .studio-prices h2{
        top: -6vw;
        left: auto;
        right: -20px;
    }
    .studio .studio-prices .studio-prices-area{
        width: 93%;
        margin-left: 0;
    }
    .studio-prices-detail .studio-prices-inner{
        width: 94%;
        max-width: inherit;
        margin-left: 2%;
    }
    .studio .studio-prices .studio-prices-detail{
        padding: 32px 10px 38px 24px;
    }
    .studio .studio-prices .studio-prices-detail h3{
        margin-bottom: 1em;
    }
    .studio-prices-img-area .img01{
        top: -4vw;
        left: 4%;
    }
    .studio-prices-img-area .img02{
        padding-top: 25%;
        right: 3vw;
        bottom: 25%;
    }
    .studio-prices-contact-area{
        margin-bottom: 22px;
        padding: 24px 12px 30px 17px;
    }
    .studio-prices-contact-area p:first-of-type{
        margin-bottom: 1em;
    }
    .studio-prices-contact-area .studio-prices-tel{
        font-size: 2.2rem;
    }
    .studio-prices-contact-area .studio-prices-tel span{
        width: 30px;
        margin-left: 5px;
        margin-right: 7px;
    }
    .studio-prices-contact-area address{
        padding-left: 0;
        font-size: 1.6rem;
    }
    .studio-prices-plan{
        display: block;
        padding-left: 12px;
        font-size: 1.8rem;
    }
    .studio-prices-plan dt,
    .studio-prices-plan dd{
        width: 100%;
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 1.6rem;
    }
    .studio-prices-plan dt,
    .studio-prices-plan dt:first-of-type{
        padding-bottom: 0;
    }
    .studio-plan-notice{
        margin-bottom: 40px;
        padding-left: 0;
        font-size: 1.6rem;
    }
    .studio-prices-payment{
        padding-left: 0;
    }
    .studio .studio-prices .studio-prices-area > p{
        padding-left: 10px;
    }

    .studio section.studio-facility{
        padding-bottom: 70px;
    }
    .studio .studio-facility-inner{
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }
    .studio section.studio-facility h2{
        margin-bottom: 30px;
    }
    .studio .studio-facility-table{
        font-size: 1.6rem;
    }
    .studio .studio-facility-table th,
    .studio .studio-facility-table td,
    .studio .studio-facility-table tr:first-of-type th,
    .studio .studio-facility-table tr:nth-of-type(n) th{
        display: block;
        padding: 19px 0 9px;
        padding-left: 0.5em;
    }
    .studio .studio-facility-table tr:first-of-type th{
        padding-top: 0;
    }
    .studio .studio-facility-table th{
        width: 100%;
        /* padding-bottom: 0; */
        border-bottom: none;
    }
    .studio .studio-facility-table td,
    .studio .studio-facility-table tr:first-of-type td{
        padding-top: 6px;
        padding-left: 20px;
        padding-bottom: 19px;
        padding-right: 10px;
    }

    section.studio-address{
        padding-top: 76.3%;
    }
    .studio .map-area{
        padding-top: 76.3%;
    }
    .studio .address-title-box{
        margin-bottom: 40px;
    }
    .studio .address-detail-area{
        width: 88%;
        margin-top: -30vw;
        padding: 30px 0 40px;
    }
    .studio .address-detail-txt{
        display: block;
    }
    .studio .address-route-list{
        padding-left: 0.8em;
        padding-right: 0.8em;
    }
    .studio .address-route-list dt{
        font-size: 2rem;
    }
    .studio .address-route-list dd{
        font-size: 1.6rem;
    }
    .studio .address-route-list dd:not(:last-of-type){
        margin-bottom: 2em;
    }

    .studio .common-branch-box.contact a{
        margin-top: -4%;
    }
    .studio-tel{
        top: 67%;
        font-size: 1.8rem;
    }
    
}
@media ( max-width: 580px ){
    .studio section.about .about-txt-box::before{
        bottom: 0;
    }
    .studio .photogallery-list::after{
        display: none;
    }
    .studio .photogallery-list .photogallery-item{
        width: 100%;
        min-width: 100%;
    }
}

 /************************************************
 *                『縁側カフェ』
 ************************************************/

 .cafe .sidemenu h1{
    margin-bottom: 22px;
}
 .cafe .title-en{
    color: #b9d8c8;
}
.cafe h2{
    font-family: "Hannari", 'Noto Serif JP', serif;
    line-height: 1;
}

.cafe .firstView{
    background: #b9d8c8 url(images/cafe-about-bg.jpg) center / cover;
    background-color: #b9d8c8;
}
.cafe section.about{
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    min-height: 0%;
    margin-bottom: 163px;
    padding-top: 95px;
}
.cafe section.about .about-txt-box{
    min-height: 0%;
    margin-right: 9.5vw;
    margin-left: auto;
}
.cafe section.about .about-title-box h2{
    margin-left: 5vw;
    color: #5a8a79;
    font-size: 2.7rem;
}
.cafe section.about .about-txt{
    min-height: 0%;
    padding-top: 11px;
}
.cafe section.about .about-txt p,
.cafe section.about .about-txt img{
    min-height: 0%;
    max-height: 500px;
    transform: rotate(0.01deg);
}
.cafe section.about .about-txt p:first-of-type{
    width: 139px;
    margin-left: 51px;
}
.cafe section.about .about-txt p:last-of-type{
    width: 220px;
    
}
.cafe section.about .about-txt img{
    width: 100%;
    height: auto;
}
.cafe section.about .about-img-area{
    width: 48.8vw;
    height: 53%;
    bottom: 0;
    z-index: -1;
}
.cafe section.about .about-img-area .img01{
    width: 32vw;
    height: 15.6vw;
    left: 0;
    bottom: 45%;
    z-index: 5;
    background-image: url(images/cafe-about-img1.jpg);
}
.cafe section.about .about-img-area .img02{
    width: 36vw;
    height: 18.9vw;
    top: 23%;
    left: 12vw;
    z-index: -1;
    background-image: url(images/cafe-about-bg.jpg);
}


.cafe section.cafe-menu-area{
    margin-bottom: 144px;
    position: relative;
}
.cafe section.cafe-menu-area h2{
    margin-bottom: 93px;
    font-size: 5rem;
    text-align: center;
    font-weight: 400;
}
.cafe section.cafe-menu-area h3{
    position: relative;
    left: -10px;
    color: #5a8a79;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1;
}
.cafe-menu-area .cafe-menu-block{
    margin-right: auto;
    padding-left: 11.2vw;
    position: relative;
}

.cafe-menu-area .cafe-menu-block .cafe-menu-list:not(:last-of-type){
    margin-bottom: 60px;
}

.cafe-menu-area .cafe-menu-list li:not(:last-of-type){
    margin-bottom: 26px;
}
.cafe-menu-area .cafe-menu-list dl{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    line-height: 1;
}

.cafe-menu-area .cafe-menu-note{
    color: #5f5f5f;
    font-size: 1.4rem;
    line-height: 1;
}
.cafe-menu-area .cafe-menu-list .cafe-menu-item.recommend{
    position: relative;
}
.cafe-menu-area .cafe-menu-list .cafe-menu-item.recommend::before{
    content: "おすすめ";
    display: block;
    padding: 5px 7px 5px 8px;
    position: absolute;
    top: 19%;
    color: #FFF;
    font-size: 1.2rem;
    line-height: 1;
    border-radius: 4px;
    background-color: #ec3935;
}
.cafe .cafe-menu-area .cafe-menu-img-area{
    width: 45%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.cafe .cafe-menu-img-area .cafe-img-item{
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cafe-menu-area .cafe-menu-block.hot-drink{
    margin-bottom: 143px;
}
.cafe-menu-area .cafe-menu-block.hot-drink .cafe-menu-box{
    width: 49%;
    max-width: 416px;
}
.cafe-menu-area .hot-drink h3{
    margin-bottom: 54px;
}
.cafe-menu-area .hot-drink .cafe-menu-list dl dd{
    width: 54px;
}
.cafe-menu-area .cafe-menu-block.hot-drink .cafe-menu-list .cafe-menu-item.recommend::before{
    left: -7em;
}
.cafe-menu-area .cafe-menu-block.hot-drink .cafe-menu-img-area{
    right: 0;
}
.cafe-menu-area .cafe-menu-block.hot-drink .img01{
    width: 30.5vw;
    height: 20.25vw;
    top: 60px;
    right: 40px;
    background-image: url(images/cafe-hotdrink-img1.jpg);
}
.cafe-menu-area .cafe-menu-block.hot-drink .img02{
    width: 22vw;
    height: 15vw;
    max-height: 252px;
    top: 60.5%;
    right: 39.75%;
    background-image: url(images/cafe-hotdrink-img2.jpg);
}

.cafe-menu-area .cafe-menu-block.ice-drink{
    margin-bottom: 152px;
    margin-left: auto;
}
.cafe-menu-area .ice-drink .cafe-menu-box{
    width: 342px;
    max-width: 342px;
    margin-left: auto;
    margin-right: calc((50% - 259px) / 2);
}
.cafe-menu-area .ice-drink h3{
    margin-bottom: 44px;
}
.cafe-menu-area .cafe-menu-block.ice-drink .cafe-menu-img-area{
    width: 49.25%;
    left: 0;
}
.cafe-menu-area .cafe-menu-block.ice-drink .img01{
    width: 30.7vw;
    max-width: 430px;
    height: 20.75vw;
    max-height: 286px;
    top: 34px;
    right: 0;
    background-image: url(images/cafe-icedrink-img1.jpg);
}
.cafe-menu-area .cafe-menu-block.ice-drink .img02{
    width: 22.5vw;
    max-width: 285px;
    height: 15vw;
    max-height: 189px;
    top: 66.5%;
    right: 44.5%;
    background-image: url(images/cafe-icedrink-img2.jpg);
}

.cafe-menu-area .cafe-menu-block.sweets-toast{
    margin-bottom: 90px;
    margin-right: auto;
    margin-left: calc(50.5% - 480px);
    padding-left: 0.25vw;
}
.cafe-menu-area .cafe-menu-block.sweets-toast .cafe-menu-box{
    width: 480px;
    max-width: 480px;
}
.cafe-menu-area .sweets-toast h3{
    margin-bottom: 40px;
}
.cafe-sweets-notice-area{
    margin-bottom: 55px;
    padding: 15px 12px 15px;
    color: #5a8a79;
    font-size: 1.7rem;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.04em;
    border: 1px solid #5a8a79;
}
.cafe-sweets-notice-area p:last-of-type{
    font-size: 1.5rem;
}
.cafe-menu-area .multi-lines dt{
    line-height: 1.3;
}
.cafe-menu-area .multi-lines dd{
    margin-bottom: auto;
    line-height: 1.3;
}
.cafe-menu-area .cafe-menu-block.sweets-toast .cafe-menu-img-area{
    right: 0;
}
.cafe-menu-area .cafe-menu-block.sweets-toast .img01{
    width: 30vw;
    max-width: 420px;
    height: 20vw;
    max-height: 280px;
    top: 100px;
    right: 3.5vw;
    background-image: url(images/cafe-sweets-img1.jpg);
}
.cafe-menu-area .cafe-menu-block.sweets-toast .img02{
    width: 17.5vw;
    max-width: 245px;
    height: 11.6vw;
    max-height: 163px;
    top: 54%;
    right: 1.6vw;
    background-image: url(images/cafe-sweets-img2.jpg);
}
.cafe-menu-area .cafe-menu-block.sweets-toast .img03{
    width: 15.8vw;
    max-width: 221px;
    min-width: 190px;
    height: 10.5vw;
    max-height: 147px;
    min-height: 126px;
    top: 80%;
    left: 3.25vw;
    background-image: url(images/cafe-sweets-img3.jpg);
}

.cafe-menu-area .cafe-menu-attention{
    padding-left: calc(50.5% - 480px);
    color: #5f5f5f;
    font-size: 1.8rem;
}


.cafe .cafe-address{
    padding-top: calc(675px + 110px);
    position: relative;
}
.cafe .cafe-address .map-area{
    width: 100%;
    height: 675px;
    position: absolute;
    top: 110px;
    left: 0;
    overflow: hidden;
}
.cafe .cafe-address .map-area iframe{
    display: block;
    width: 150%;
    height: 110%;
    position: absolute;
    top: -10%;
    left: 0;
}
.cafe .cafe-address-detail-area{
    width: 580px;
    padding: 68px 0 74px 43px;
    position: absolute;
    top: 0;
    left: 4%;
    color: #FFF;
    background-color: #5a8a79;
}
.cafe .cafe-address-detail-area h2{
    margin-bottom: 46px;
    font-size: 3.6rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}
.cafe .cafe-address-txt{
    margin-bottom: 58px;
}
.cafe .cafe-address-detail-list{
    display: flex;
    flex-wrap: wrap;
}
.cafe .cafe-address-detail-list dt{
    width: 98px;
}
.cafe .cafe-address-detail-list dd{
    width: calc(100% - 98px);
}
.cafe .cafe-address-detail-list dd:not(:last-of-type){
    margin-bottom: 35px;
}
.cafe .cafe-address-detail-list dd:last-of-type{
    margin-left: auto;
}
.cafe .cafe-address-detail-list dd p:not(:last-of-type){
    margin-bottom: 17px;
}
.cafe .cafe-tabelog{
    padding: 106px 0 126px;
    font-size: 1.8rem;
    line-height: 1;
    text-align: center;
}
.cafe .cafe-tabelog > p{
    margin-bottom: 19px;
}
.cafe .cafe-tabelog .tabelog-btn{
    display: block;
    width: 420px;
    margin: 0 auto;
    padding: 18px 0 17px;
    color: #FFF;
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    background-color: #f8aa02;
    transition: all 300ms ease 0s;
}
.cafe .cafe-tabelog .tabelog-btn:hover{
    opacity: 0.6;
}
.cafe .cafe-banner-area{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 146px;
    margin-bottom: 21px;
    background: #c3dbd2 url(images/cafe-banner-bg.jpg) center / 100%;
}
.cafe .cafe-banner-area .cafe-banner-block{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width:39%;
    max-width: 490px;
    min-width: 410px;
    height: 102px;
    padding: 10px 31px 10px 10px;
    position: relative;
    background-color: #fff;
}

.cafe .cafe-banner-block .cafe-banner-thumb{
    display: block;
    width: 120px;
    height: 80px;
    margin-right: 30px;
    transition: opacity 250ms ease 0s;
}
.cafe .cafe-banner-area .cafe-banner-block:hover .cafe-banner-thumb{
    opacity: 0.7;
}
.cafe .cafe-banner-thumb img{
    width: 100%;
}
.cafe .cafe-banner-block .cafe-banner-txt{
    width: calc(100% - 150px);
    line-height: 1;
}
.cafe .cafe-banner-block .cafe-banner-txt > span{
    display: block;
    margin-bottom: 10px;
    padding-bottom: 9px;
    color: #5b5b5b;
    font-size: 1.5rem;
    border-bottom: 1px solid #bababa;
}
.cafe .cafe-banner-block a{
    color: #010101;
    font-size: 1.9rem;
}
.cafe .cafe-banner-block a::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.cafe .cafe-banner-block a:hover{
    text-decoration: none;
}
@media (min-width: 1600px){
    .cafe section.about .about-img-area .img02{
        top: 10%;
    }
    .cafe-menu-area .cafe-menu-block.hot-drink{
        padding-left: 20%;
    }
    .cafe-menu-area .cafe-menu-block.hot-drink .img02{
        top: 64%;
    }
    .cafe-menu-area .ice-drink .cafe-menu-box{
        margin-right: 21%;
    }
    .cafe-menu-area .cafe-menu-block.sweets-toast .cafe-menu-img-area{
        right: 10%;
    }
}
@media (max-width: 1240px) and (min-width: 821px){
    .cafe section.about .about-txt-box{
        margin-right: 0;
        margin-left: 38vw;
    }
    .cafe-menu-area .cafe-menu-block.hot-drink .img02{
        right: 36%;
    }
    .cafe-menu-area .cafe-menu-block.sweets-toast .cafe-menu-box{
        margin-left: 2em;
    }
}
@media (max-width: 1100px) and (min-width: 821px){
    
    .cafe-menu-area .ice-drink .cafe-menu-box{
        margin-right: 12vw;
    }
    .cafe-menu-area .cafe-menu-block.ice-drink .cafe-menu-img-area{
        width: 45%;
    }
    
}

@media (max-width: 820px){
    .cafe section.about{
        flex-direction: column;
        align-items: center;
        margin-bottom: 14vw;
        padding-top: 40px;
    }
    
    .cafe section.about .about-txt-box{
        display: flex;
        flex-grow: 0;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        width: 90%;
        height: 89vw;
        max-height: 522px;
        margin: 0 0 30px;
        padding-top: 0;
    }
    .cafe section.about .about-txt{
        display: flex;
        flex-direction: column;
        align-items: stretch;
        max-width: 410px;
        width: 80%;
    }
    .cafe section.about .about-txt p:first-of-type{
        width: 34%;
        max-width: 139px;
        margin-bottom: 32px;
        margin-left: 4vw;
    }
    .cafe section.about .about-txt p:last-of-type{
        width: 53.66%;
        max-width: 220px;
        margin-right: auto;
    }
    .cafe section.about .about-img-area,
    section.about .about-img{
        position: relative;
    }
    .cafe section.about .about-img-area{
        width: 100%;
    }
    .cafe section.about .about-img-area .img01{
        width: 72.5vw;
        max-width: 480px;
        height: 40vw;
        max-height: 223px;
        left: 0;
        bottom: 34%;
    }
    .cafe section.about .about-img-area .img02{
        width: 60vw;
        height: 30vw;
        position: absolute;
        top: 50%;
        left: auto;
        right: 0;
    }

    .cafe section.cafe-menu-area{
        margin-bottom: 60px;
        padding-top: 40px;
    }
    .cafe section.cafe-menu-area h2{
        margin-bottom: 40px;
        font-size: 3.2rem;
    }
    .cafe-menu-area .cafe-menu-block{
        display: flex;
        flex-direction: column-reverse;
    }
    .cafe .cafe-menu-area .cafe-menu-img-area{
        width: 100%;
        position: relative;
        order: 0;
    }
    .cafe .cafe-menu-img-area .cafe-img-item.img01{
        position: relative;
    }

    body.cafe .cafe-menu-area .cafe-menu-block .cafe-menu-box{
        width: 88%;
    }
    .cafe section.cafe-menu-area h3{
        margin-bottom: 24px;
        left: -8px;
        font-size: 2.2rem;
    }
    .cafe-menu-area .cafe-menu-block .cafe-menu-list:not(:last-of-type){
        margin-bottom: 2em;
    }
    .cafe-menu-area .cafe-menu-list li:not(:last-of-type){
        margin-bottom: 1.5em;
    }
    .cafe-menu-area .cafe-menu-list dl{
        font-size: 1.6rem;
    }
    .cafe-menu-area .cafe-menu-list .cafe-menu-item.recommend::before{
        display: inline-block;
        margin-bottom: 6px;
        position: relative;
        top: 0;
        left: 0;
    }

    .cafe-menu-area .cafe-menu-block.hot-drink{
        margin-bottom: 80px;
        padding-left: 0;
    }
    .cafe-menu-area .cafe-menu-block.hot-drink .cafe-menu-img-area{
        margin-bottom: 40px;
    }
    .cafe-menu-area .cafe-menu-block.hot-drink .img01{
        width: 47.7vw;
        height: 31.5vw;
        top: 0;
        right: auto;
        left: 1em;
    }
    .cafe-menu-area .cafe-menu-block.hot-drink .img02{
        width: 35.5vw;
        height: 25vw;
        left: auto;
        right: 4vw;
        top: auto;
        bottom: -20px;
    }
    .cafe-menu-area .cafe-menu-block.hot-drink .cafe-menu-box{
        margin: 0 auto;
    }
    .cafe-menu-area .cafe-menu-block.hot-drink .cafe-menu-list .cafe-menu-item.recommend::before{
        left: 0;
    }
    .cafe-menu-area .cafe-menu-list dl{
        flex-wrap: wrap;
    }
    .cafe-menu-area .cafe-menu-list dd{
        margin-left: auto;
    }

    .cafe-menu-area .cafe-menu-block.ice-drink{
        margin-bottom: 80px;
        padding-left: 0;
    }
    .cafe-menu-area .ice-drink .cafe-menu-box{
        margin: 0 auto;
    }
    .cafe-menu-area .cafe-menu-block.ice-drink .cafe-menu-img-area{
        margin-bottom: 40px;
    }
    .cafe-menu-area .cafe-menu-block.ice-drink .img01{
        width: 48.7vw;
        height: 32.5vw;
        max-height: 100%;
        top: 0;
        left: 102%;
        right: auto;
    }
    .cafe-menu-area .cafe-menu-block.ice-drink .img02{
        width: 37.5vw;
        height: 25vw;
        top: 30%;
        left: 0;
        right: auto;
    }

    .cafe-menu-area .cafe-menu-block.sweets-toast{
        margin: 0 auto 32px;
        padding-left: 0;
    }
    .cafe-menu-area .cafe-menu-block.sweets-toast .cafe-menu-img-area{
        margin-bottom: 22px;
    }
    .cafe-menu-area .cafe-menu-block.sweets-toast .img01{
        width: 50vw;
        height: 35vw;
        top: 0;
        right: 0;
        left: 2vw;
    }
    .cafe-menu-area .cafe-menu-block.sweets-toast .img02{
        width: 27vw;
        height: 17vw;
        top: 0;
        right: 0;
    }
    .cafe-menu-area .cafe-menu-block.sweets-toast .img03{
        width: 23vw;
        max-width: inherit;
        min-width: inherit;
        height: 15vw;
        max-height: inherit;
        min-height: inherit;
        top: auto;
        bottom: 0;
        left: auto;
        right: 18vw;
    }
    .cafe-menu-area .cafe-menu-block.sweets-toast .cafe-menu-box{
        margin: 0 auto;
    }
    .cafe-sweets-notice-area{
        margin: 0 auto 30px;
    }

    .cafe-menu-area .cafe-menu-attention{
        width: 94%;
        margin: 0 auto;
        padding-left: 0;
        font-size: 1.6rem;
    }

    .cafe .cafe-tabelog .tabelog-btn{
        width: 86%;
        max-width: 420px;
        min-width: 290px;
    }

    .cafe .cafe-address{
        padding-top: 0;
    }
    .cafe .cafe-address .map-area{
        position: relative;
        height: 60vw;
        top: 0;
    }
    .cafe .cafe-address-detail-area{
        width: 90%;
        min-width: 300px;
        margin-top: -17vw;
        padding: 32px 16px 32px 8%;
        position: relative;
        top: 0;
        left: 0;
    }
    .cafe .cafe-address-detail-area h2{
        font-size: 3rem;
        margin-bottom: 1em;
    }
    .cafe .cafe-address-txt{
        margin-bottom: 26px;
    }
    .cafe .cafe-address-detail-list,
    .cafe .cafe-address-detail-list dt,
    .cafe .cafe-address-detail-list dd{
        display: block;
        width: 100%;
    }
    .cafe .cafe-address-detail-list dd{
        padding-left: 1em;
    }
    .cafe .cafe-address-detail-list dd:last-of-type{
        margin: 0;
    }
    .cafe .cafe-address-detail-list dd:not(:last-of-type){
        margin-bottom: 24px;
    }
    .cafe .cafe-tabelog{
        padding: 40px 0 40px;
        font-size: 1.6rem;
    }
    .cafe .cafe-tabelog > p{
        line-height: 1.5;
    }

    .cafe .cafe-banner-area{
        flex-direction: column;
        height: auto;
        padding: 12px 0;
    }
    .cafe .cafe-banner-area .cafe-banner-block{
        width: 90%;
        min-width: 300px;
        padding: 10px;
    }
    .cafe .cafe-banner-area .cafe-banner-block:first-of-type{
        margin-bottom: 20px;
    }
    .cafe .cafe-banner-block .cafe-banner-thumb{
        margin-right: 10px;
    }
    .cafe .cafe-banner-block .cafe-banner-txt{
        width: calc(100% - 127px);
    }
}
@media (max-width: 420px){
    .cafe-menu-area .cafe-menu-list dl{
        align-items: flex-start;
        line-height: 1.25;
    }
}


/************************************************
 *          お問い合わせ、利用規定共通
 ************************************************/
.pages header{
    height: 130px;
}
.pages .common-logo{
    top: 17px;
}
.pages .common-logo::before{
    display: none;
}

.pages h1{
    margin-bottom: 88px;
    font-size: 5rem;
    text-align: center;
    line-height: 1;
    font-family: "Hannari", 'Noto Serif JP', serif;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.pages .pages-fv{
    width: 100%;
    padding-top: 18.9%;
    position: relative;
    z-index: 8;
    background-image: url(images/terms-fv-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.pages .pages-main{
    padding-top: 89px;
    position: relative;
    z-index: 5;
    font-size: 1.8rem;
}
.pages .pages-main::before{
    content: "";
    display: block;
    width: 100%;
    height: calc(100% + 300px);
    position: absolute;
    top: -1px;
    left: 0;
    z-index: -1;
    opacity: 0.6;
    background-image: linear-gradient(to right, #ceddd1 0, #ceddd1 90px, rgba(255, 255, 255, 0) 90px),
    linear-gradient(to left, #ceddd1 0, #ceddd1 90px, rgba(255, 255, 255, 0) 90px);
    pointer-events: none;
}
.pages .pages-contents{
    width: 860px;
    margin: 0 auto;
}
.pages .common-toppage-btn{
    display: inline-block;
    padding: 19px 78px 21px 85px;
    font-size: 2.2rem;
    text-align: center;
    line-height: 1;
    border: 1px solid #5a8a79;
    transition: all 250ms ease 0s;
}
.pages .common-toppage-btn:hover{
    color: #FFF;
    background-color: #5a8a79;
}

.pages .copyright{
    padding-right: 24px;
    position: relative;
    z-index: 5;
}

@media (max-width: 820px){
    .pages .common-logo::before{
        display: none;
    }
    .pages .pages-main::before{
        background-image: linear-gradient(to right, #ceddd1 0, #ceddd1 3%, rgba(255, 255, 255, 0) 3%),
            linear-gradient(to left, #ceddd1 0, #ceddd1 3%, rgba(255, 255, 255, 0) 3%);
    }
    .pages .pages-contents{
        width: 88%;
    }
    .pages h1{
        font-size: 3.4rem;
        margin-bottom: 60px;
    }
    .pages h1 .title-conjunction{
        display: block;
        padding: 4px 0;
        font-size: 0.8em;
    }
    .pages .pages-main{
        padding-top: 60px;
        font-size: 1.6rem;
    }
    .pages .common-toppage-btn{
        padding: 22px 30px;
        font-size: 2rem;
    }
    .pages .copyright{
        padding-right: 17px;
    }
}

 /************************************************
 *                  お問い合わせ
 ************************************************/
body.contact .pages-fv{
    background-image: url(images/contact-fv-bg.jpg);
}
body.contact .pages-main{
    padding-top: 88px;
    padding-bottom: 94px;
}
.contact .contact-txt-box{
    margin-bottom: 94px;
    text-align: center;
}
.contact .contact-txt-box p:first-of-type{
    margin-bottom: 45px;
    line-height: 2;
}
.contact .contact-tel-area{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 76px;
    margin-bottom: 89px;
    border-bottom: 1px solid #bababa;
}
.contact .contact-tel-area .contact-tel-block{
    width: 400px;
    padding: 18px 10px 31px;
    color: #5a8a79;
    text-align: center;
    line-height: 1;
    border: 1px solid #5a8a79;
}
.contact .contact-tel-area .contact-tel-block h3{
    margin-bottom: 29px;
    font-family: "Hannari", 'Noto Serif JP', serif;
    font-weight: 400;
}
.contact .contact-tel-area .contact-tel-block.studio h3{
    font-size: 2.6rem;
    letter-spacing: -0.02em;
}
.contact .contact-tel-area .contact-tel-block.cafe h3{
    font-size: 3.2rem;
}
.contact-tel-area .contact-tel-num{
    margin-bottom: 12px;
    font-size: 3.4rem;
    letter-spacing: 0.04em;
}
.contact-tel-area .contact-tel-hours{
    font-family: "Hannari", 'Noto Serif JP', serif;
}
.contact-tel-area .contact-tel-hours span{
    display: inline-block;
    margin-right: 1.5em;
}
.contact .contact-form-area{
    width: 600px;
    margin: 0 auto;
}
.contact .contact-form-area dl{
    margin-bottom: 87px;
}
.contact .contact-form-area dt{
    margin-bottom: 7px;
    padding-left: 10px;
    font-size: 2rem;
    font-family: "Hannari", 'Noto Serif JP', serif;
}
.contact .contact-form-area dt.contact-require::after{
    content: "＊";
    display: inline-block;
    color: #fc815f;
    font-size: 1.6rem;
}
.contact .contact-title-en{
    display: inline-block;
    margin-left: 13px;
    margin-right: 9px;
    color: #5f5f5f;
    font-size: 1.5rem;
}
.contact .contact-form-area dd{
    margin-bottom: 32px;
}
.contact .contact-form-area dd:first-of-type{
    margin-bottom: 21px;
}

.contact .contact-form-area .contact-input-wrap{
    display: flex;
    justify-content: space-between;
}
.contact input,
.contact textarea{
    -webkit-appearance: none;
    width: 100%;
    padding: 17px 22px 14px;
    border: none;
    line-height: 1.6;
    background-color: #f6f6f6;
    border-radius: 6px;
}
.contact input:focus,
.contact textarea:focus{
    outline: 2px solid transparent;
    box-shadow: 0 0 2px #669484, 0 0 2px #669484;
    border-radius: 6px;
}
.contact input::placeholder{
    color: #b0b0b0;
    opacity: 1;
}
.contact :-ms-input-placeholder{
    color: #b0b0b0;
    opacity: 1;
}
.contact textarea{
    height: 229px;
}
.contact .contact-form-area .contact-input-wrap > span{
    display: inline-block;
    width: 46.7%;
}
.contact .contact-form-area .your-company-name,
.contact .contact-form-area .your-tel,
.contact .contact-form-area .your-email{
    display: inline-block;
    width: 81.7%;
}

.contact .contact-btn-area{
    position: relative;
    text-align: center;
}
.contact .contact-form-area input[type="submit"]{
    display: inline-block;
    width: 340px;
    height: 61px;
    padding: 4px 17px;
    color: #FFF;
    font-size: 2.9rem;
    background-color: #5a8a79;
    border-radius: 0;
    transition: background-color 150ms ease 0s;
}
.contact .contact-form-area input[type="submit"]:hover{
    cursor: pointer;
    background-color: #8aaca0;
}
div.wpcf7 .ajax-loader{
    position: absolute;
    top: calc(50% - 8px);
    right: -100px;
}

@media (max-width: 820px){
    body.contact .pages-main{
        padding: 60px 0;
    }
    .contact .contact-txt-box{
        margin-bottom: 60px;
        text-align: left;
    }
    .contact .contact-txt-box p{
        line-height: 2;
    }
    .contact .contact-txt-box p:first-of-type{
        margin-bottom: 2em;
    }

    .contact .contact-tel-area .contact-tel-block.studio h3{
        margin-bottom: 0.8em;
        font-size: 2.2rem;
        line-height: 1.25;
    }
    .contact .contact-tel-area .contact-tel-block.cafe h3{
        margin-bottom: 0.8em;
        font-size: 2.5rem;
    }
    .contact .contact-tel-area{
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
    .contact .contact-tel-area .contact-tel-block{
        width: 80%;
        max-width: 400px;
    }
    .contact .contact-tel-area .contact-tel-block.studio{
        margin-bottom: 20px;
    }
    .contact-tel-area .contact-tel-num{
        font-size: 2.8rem;
    }
    .contact .contact-form-area{
        width: 90%;
        font-size: 1.6rem;
    }
    .contact .contact-form-area dl{
        margin-bottom: 40px;
    }
    .contact .contact-form-area dt{
        font-size: 1.8rem;
    }
    .contact input, .contact textarea{
        padding: 12px;
    }
    .contact .contact-form-area .your-company-name,
    .contact .contact-form-area .your-tel,
    .contact .contact-form-area .your-email{
        width: 100%;
    }
    .contact .contact-form-area input[type="submit"]{
        width: 84%;
        max-width: 340px;
        font-size: 2.2rem;
    }
    div.wpcf7 .ajax-loader{
        position: absolute;
        top: calc(50% - 8px);
        right: 0;
    }
}
@media (max-width: 350px){
    .contact .contact-form-area dt.contact-require{
        position: relative;
    }
    .contact .contact-form-area dt.contact-require::after{
        position: absolute;
        top: -2px;
        left: 66%;
    }
    .contact .contact-title-ja{
        display: block;
        line-height: 1;
    }
    .contact .contact-title-en{
        font-size: 1.4rem;
    }
}

 /************************************************
 *                  Thanksページ
 ************************************************/
body.thanks .pages-contents{
    padding-bottom: 130px;
    text-align: center;
}
body.thanks .thanks-title{
    margin-bottom: 52px;
    color: #5a8a79;
    font-size: 2.8rem;
}
body.thanks .thanks-txt-box{
    margin-bottom: 81px;
}
body.thanks .thanks-txt-box p:not(:last-of-type){
    margin-bottom: 20px;
}
body.thanks .thanks-txt-box p:nth-last-of-type(2){
    margin-bottom: 49px;
}

@media (max-width: 820px){  
    body.thanks .pages-main{
        padding-bottom: 0;
    }
    body.thanks .pages-contents{
        padding-bottom: 60px;
    }
    body.thanks .thanks-title{
        margin-bottom: 30px;
    }
    body.thanks .thanks-txt-box p:not(:last-of-type){
        margin-bottom: 12px;
    }
    body.thanks .thanks-txt-box p:nth-last-of-type(2){
        margin-bottom: 25px;
    }
    body.thanks .thanks-txt-box{
        margin-bottom: 40px;
        text-align: left;
    }

}

 /************************************************
 *            キャンセルポリシー＆利用規定
 ************************************************/
body.terms .pages-contents{
    padding-bottom: 90px;
}
body.terms .terms-title{
    margin-bottom: 23px;
    padding-bottom: 10px;
    color: #5a8a79;
    font-size: 2.4rem;
    font-family: "Hannari", 'Noto Serif JP', serif;
    border-bottom: 1px solid #bababa;
}
body.terms .terms-block:not(:last-of-type){
    margin-bottom: 112px;
}
body.terms .terms-block:first-of-type p:first-of-type{
    white-space: nowrap;
}
body.terms .terms-block:first-of-type p.mb1em{
    margin-bottom: 27px;
}
.terms .terms-table-area table{
    width: 562px;
    margin-left: 5px;
    border-collapse: collapse;
    border: 1px solid #669484;
}
.terms .terms-table-area table th{
    width: 261px;
    height: 50px;
    padding-left: 60px;
    text-align: left;
    font-weight: 400;
    color: #FFF;
    background-color: #669484;
}
.terms .terms-table-area table tr:nth-of-type(2) th,
.terms .terms-table-area table tr:nth-of-type(2) td{
    border-top: 1px solid #669484;
    border-bottom: 1px solid #669484;
}
.terms .terms-table-area table tr:nth-of-type(2) th{
    border-color: #FFF;
}
.terms .terms-table-area table tr:nth-of-type(2) td{
    border-color: #669484
}
.terms .terms-table-area table td{
    padding-left: 89px;
}

.terms .terms-list li{
    margin-left: 1em;
    margin-bottom: 29px;
    line-height: 1.6;
}
.terms .terms-list li::before{
    content: "・";
    display: inline-block;
    margin-left: -1em;
}

@media (max-width: 820px){
    body.terms .pages-contents{
        padding-bottom: 60px;
    }
    body.terms .terms-block:not(:last-of-type){
        margin-bottom: 60px;
    }
    body.terms .terms-title{
        margin-bottom: 12px;
        padding-bottom: 10px;
        font-size: 2.2rem;
    }

    body.terms .terms-block:first-of-type p:first-of-type{
        white-space: normal;
    }
    .terms .terms-table-area table{
        width: 100%;
        max-width: 500px;
    }
    .terms .terms-table-area table th,
    .terms .terms-table-area table td{
        padding: 10px;
    }
    .terms .terms-table-area table th{
        width: 9em;
    }
    .terms .terms-list li{
        margin-bottom: 16px;
    }
}


 /************************************************
 *                     404ページ
 ************************************************/
 body.not_found .pages-main{
     padding-bottom: 98px;
 }
 .not_found .pages-contents{
    text-align: center;
 }
 .not_found h2{
     margin-bottom: 50px;
     color: #5a8a79;
 }
 .not_found .pages-contents p:last-of-type{
     margin-bottom: 60px;
 }