@charset "utf-8";
html, body ,*{
    box-sizing: border-box;
}

html,body,*{
    font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
    -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.page-wrapper {
    width: 100%;
    max-width: 750px;
}


a:hover{
    color: #414141 !important;
}

p{
    color: #414141;
    font-weight: 500;
    line-height: 1.5em !important;
}

img{
    display: block;
    width: 100%;
}


header{
    position: fixed;
    width: 100%;
    height: clamp(50px,13.3vw,100px);
    max-width: 750px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    z-index: 10;

    padding: 0 clamp(20px,5.3vw,40px);
}

.header-logo{
    width: 26.7%;
}

/*------------------------------------
ヘッダー ハンバーガーメニュー ↓
------------------------------------*/
.menu {
    padding: 14.5% 0 14.5% 8.7%;
    position: absolute;
    right: 0;
    transition: all 0.4s;
    top: 0;
    width: 62%;
    opacity: 0;
    z-index: 2;
    background: linear-gradient(180deg, #e8e6d1, #d8cfa8);
    border-radius: 0 0 0 100px;
    pointer-events: none;
}
.menu nav ul li {
    position: relative;
}
.menu nav ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 9%;
    left: -8%;
    width: auto;
    border-bottom: 2px dotted #BFBA9D;
}
.menu nav ul li:last-child::after {
    display: none;
}
.menu nav ul li a {
    text-decoration: none;
    color: #414141;
    font-size: clamp(14px,3.7vw,28px);
    line-height: 2.85em;
    font-weight: 500;
}
.hamburger {
    cursor: pointer;
    position: relative;
    width: clamp(35.5px,9.4vw,71px);
    height: clamp(35.5px,9.4vw,71px);
    background-color: #D9D0B0;
    border-radius: 50px;
    z-index: 3;
}
.hamburger span {
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transition: all 0.4s;
    width: clamp(15.5px,4.1vw,31px);
    height: clamp(2px,0.5vw,4px);
    background: #F9F9F9;
}
.hamburger_linetop {
    top: clamp(10px,2.6vw,20px);
}
.hamburger_linecenter {
    top: 47%;
}
.hamburger_linebottom {
    bottom: clamp(10px,2.6vw,20px);
}
/*------------------------------------
メニュークリックした後 ↓
------------------------------------*/
.nav_open .menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.nav_open .hamburger {
    background-color: #fff;
}
.nav_open .hamburger span {
    background-color: #D9D0B0;
}
.nav_open .hamburger_linetop {
    bottom: 28%;
    transform: rotate(45deg);
}
.nav_open .hamburger_linecenter {
    opacity: 0;
}
.nav_open .hamburger_linebottom {
    top: 28%;
    transform: rotate(-45deg);
}
.nav_open .overlay {
    opacity: 0.8;
    visibility: visible;
    pointer-events: auto;
}
/*------------------------------------
メニュークリック後メニュー外の背景 ↓
------------------------------------*/
.overlay {
    background-color: #000;
    cursor: pointer;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.4s;
    visibility: hidden;
    width: 100vw;
    z-index: 1;
    pointer-events: none;
}

#fv{
    padding-top: clamp(50px,13.3vw,100px);
}

.campaign{
    position: relative;
    margin-top: 17px;
}

.cta-btn{
    position: absolute;
    left: 2.5%;
    right: 0;
    width: auto;
}

.cta-btn_01,.cta-btn_02{
    bottom: 0;
}


.cta-btn img{
    animation: squash 1.2s ease-in-out infinite;
}

@keyframes squash {
    0% {transform: scale(0.98);}
    50% {transform: scale(1);}
    100% {transform: scale(0.98);}
}

.studio{
    display: none;
}

.studio-head{
    width: 69.2%;
    margin: 2.6vw 0 3.7vw 5.6vw;
}

.shop{
    width: 92%;
    margin: 0 auto;
}

.studio-title{
    font-size: clamp(20px,5.3vw,40px);
    text-align: center;
}

.address{
    margin: 1.5% 0 4% 2.4%;
}

.address p{
    font-size: clamp(15px,4vw,30px);
    letter-spacing: -0.01em;
}

.map-wrap {
  position: relative;
  width: 100%;
  padding-top: calc(386 / 691 * 100%);
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yuhigaoka-ten{
    margin-top: 9.5%;
}

.studio-info{
    margin-top: 9%;
    font-size: clamp(20px,5.3vw,40px);
    margin-left: 3.8%;
    margin: 1.47em 0 1.17em 0.77em;
}

.studio-info__label{
    background-color: #E1C6B5;
    padding: 0.1em 0.55em;
}

.studio-info__text{
    margin: 0.25em 0 0.72em;
}

.tel{
    margin: 0.25em 0 0.72em;
}

.tel a {
    pointer-events: none;
    text-decoration: none;
    color: #414141;
    font-size: clamp(20px,5.3vw,40px);
    font-weight: 500;
    line-height: 1.5em;
}

.cta-btn_03{
    bottom: 0.5%;
}

.floating-banner {
  position: fixed;
  width: 450px;
  bottom: 0;
  right: calc(50% - 375px);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.floating-banner.is-show {
  opacity: 1;
  pointer-events: auto;
}


.nav_open .floating-banner{
    opacity: 0;
}


footer{
    background-color: #D9D9D9;
}

.footer-inner{
    padding: clamp(15px,4vw,30px) 0;
    margin: 0 auto;
    width: 64%;
}

.footer-menu {
    width: 96%;
    list-style: none;
    margin: 0 auto clamp(22.5px,6vw,45px);
    padding: 0;
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(20px,5.3vw,40px);
}

.footer-menu a {
    text-decoration: none;
    color: #414141;
    font-size: clamp(10px,2.6vw,20px);
    white-space: nowrap;
    line-height: 1.5em;
}

.copyright{
    font-size: clamp(10px,2.6vw,20px) !important;
    text-align: center;
}


@media screen and (max-width:750px){
    .floating-banner {
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}