@charset "UTF-8";
/*
Theme Name: 株式会社SAUNA
Description: 株式会社SAUNA WEBSITE
Author: KOKORO企画
Version: 1.0.0
*/

/* common
---------------------------------------- */
html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.08em;
    color: #3B3B3B;
    animation: 0.5s fadeinlogo;
}
@keyframes fadeinlogo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

img {
    max-width: 100%;
    /* vertical-align: bottom; */
}
a {
    text-decoration: none;
    transition: .3s;
}
ul {
    padding-left: 0;
}
li {
    list-style: none;
}
p {
    text-align: justify;
}
/* btn */
.btn {
    max-width: 240px;
    margin: auto;
    margin-bottom: 20px;
}
.btn a {
    position: relative;
    display: block;
    width: 240px;
    padding: 13px 0;
    text-decoration: none;
    text-align: center;
    color: #FFF;
    background-color: #3B3B3B;
}
.btn a:hover {
    background: #555555;
}

/* fadeIn */
.fadeIn {
    opacity: 0;
    transition: 2s;
  }
.fadeIn.is-show {
    opacity: 1;
}

/* header
---------------------------------------- */
.header_nav {
    position:fixed;
    width: 100%;
    height: 80px;
    z-index: 1;
    background-color: rgba(255,255,255,1);
}
h1 {
    margin-left: 30px;
    height: 80px;
}
h1 img {
    position:fixed;
    margin-top: 30px;
    max-width: 150px;
    object-fit: cover;
}

.nav_pc {
    display: none;
}
.nav_sp {
    display: none;
}

/* nav_SP */
.nav_sp {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255,255,255,1);
    z-index: 10;
}
h1.nav_sp_logo {
    margin-bottom: 120px;
}
h1.nav_sp_logo img {
    margin-top: 30px;
    max-width: 150px;
    object-fit: cover;
}
.nav_sp ul li {
    margin: 0 40px;
    margin-bottom: 60px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.3125rem;
    line-height: 0.8em;
}
.nav_sp ul li span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 0.687rem;
    color: #3B3B3B;
}
.nav_sp ul li a {
    color: #4DD8FC;
}
.nav_sp ul li a:hover {
    opacity: 0.6;
}
.nav_sp_sns {
    margin-top: 80px;
    display: flex;
}
.nav_sp_sns li {
    margin-bottom: 5px!important;
}
.nav_sp_sns li.x-icon {
    margin: 0;
}
.nav_copyright {
    margin: 0 40px;
    font-size: 0.625rem;
}

/* Toggle */
.Toggle {
	position:fixed;
	cursor: pointer;
	top: 10px;
	right: 3.7%;
    width: 60px;
    height: 60px;
    z-index: 100;
}
.Toggle span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 17px;
    height: 1px;
    background: #3B3B3B;
    width: 45%;
}
.Toggle span:nth-of-type(1) {
    top: 20px; 
}
.Toggle span:nth-of-type(2) {
    top: 30px;
}
.Toggle span:nth-of-type(3) {
    top: 40px;
}
.Toggle.active span:nth-of-type(1) {
    top: 23px;
    left: 22px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color: #3B3B3B;
}
.Toggle.active span:nth-of-type(2) {
    opacity: 0;
}
.Toggle.active span:nth-of-type(3){
    top: 35px;
    left: 22px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #3B3B3B;
}

/* mv */
.mv {
    position: relative;
    margin: 0 30px;
    height: 400px;
}
.mv h2 {
    position: absolute;
    top: 60%;
    transform: translateY(-60%);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1.4em;
}
h2.effect span {
    display: inline-block;
    position: relative;
}
h2.effect span,
h2.effect span::after {
  animation-delay: var(--animation-delay, 1s); /* アニメーションの開始タイミング */
  animation-iteration-count: var(--iterations, 1); /* 再生される回数 */
  animation-duration: var(--duration, 800ms); /* 完了するまでの所要時間 */
  animation-fill-mode: both; /* 実行の前後 */
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* タイミングの指定 */
}

h2.effect.scroll-in span {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  white-space: nowrap;
}
h2.effect.scroll-in span::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4DD8FC;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* contents
---------------------------------------- */
main {
    margin: 0 30px;
} 
h3 {
    margin-bottom: 45px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.3125rem;
    line-height: 0.8em;
    color: #4DD8FC;
}
h3 span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 0.687rem;
    color: #3B3B3B;
}

/* about
---------------------------------------- */
#about {
    margin-bottom: 100px;
}
#about dl div {
    margin-bottom: 35px;
}
#about dl dt {
    font-weight: 700;
}

/* contact
---------------------------------------- */
#contact {
    margin-bottom: 40px;
}
button, input, select, textarea {
    width: 100%;
    padding: 8px 10px;
    background-color: #FAFAFA;
}
textarea {
    height: 160px;
}
.form-content dt {
    margin-bottom: 5px;
}
.form-content dd {
    margin-bottom: 35px;
}
.form-content dt span {
    margin-left: 5px;
    color: #F56E6E;
}

/* contactform7 */
button, html [type='submit'] {
    max-width: 240px;
    margin: auto;
    position: relative;
    display: block;
    width: 240px;
    padding: 13px 0;
    text-decoration: none;
    text-align: center;
    color: #FFF;
    background-color: #3B3B3B;
    transition: .3s;
}
input.wpcf7-submit:hover {
    background-color: #555;
}
.wpcf7-spinner {
    display: none!important;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0!important;
    padding: 0!important;
    width: 100%!important;
    text-align: center!important;
    border: none!important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    font-weight: 400;
    color: #dc3232;
}
.wpcf7-not-valid-tip {
    font-size: 0.875em!important;
}
/* safari 角丸対策 */
input[type="text"],input[type="image"],textarea {
    -webkit-appearance: none;
    border-radius: 0;
}
/* contactform7 end */


/* footer
---------------------------------------- */
footer {
    margin: 0 30px;
    margin-bottom: 30px;
}
.arrow_top {
    margin-bottom: 20px;
    text-align: right;
}
.arrow_top img {
    width: 45px;
}
.arrow_top a:hover {
    opacity: 0.7;
}
footer ul {
    display: flex;
    margin-bottom: 5px;
}
footer ul li:last-child {
    margin-left: 40px;
}
.instagram-icon {
    width: 25px;
    height: 25px;
}
.x-icon {
    width: 35px;
    height: 35px;
}
.instagram-icon a:hover,
.x-icon a:hover  {
    opacity: 0.6;
} 
.copyright {
    font-size: 0.625rem;
}

/* -----------------------------
	tablet向け 760px〜
-------------------------------- */
@media screen and (min-width: 760px){
    /* header
    ---------------------------------------- */
    .nav_sp ul li a {
        font-size: 2.25rem;
    }
    .nav_sp ul li span {
        font-size: 0.75rem;
    }
    .mv {
        height: 500px;
    }
    .mv h2 {
        top: 50%;
        transform: translateY(-50%);
        font-size: 3.125rem;
    }

    /* contents
    ---------------------------------------- */
    h3 {
        width: 40%;
        font-size: 2.25rem;
        line-height: 0.55em;
    }
    h3 span {
        font-size: 0.75rem;
    }

    /* about
    ---------------------------------------- */
    #about {
        display: flex;
        justify-content: space-between;
    }
    #about dl {
        width: 60%;
    }
    #about dl div {
        display: flex;
    }
    #about dl dt {
        width: 180px;
    }
    #about dl dd {
        width: 360px;
    }

    /* contact
    ---------------------------------------- */
    #contact {
        display: flex;
        justify-content: flex-start;
    }
    #contact dl {
        width: 60%;
    }
    input, textarea {
        width: 540px;
    }
}

/* -----------------------------
	PC向け 961px〜
-------------------------------- */
@media screen and (min-width: 961px){
    body {
        max-width: 1520px;
        margin: auto;
    }

    /* header
    ---------------------------------------- */
    h1 img {
        margin-top: 45px;
        max-width: 300px;
    }
    .Toggle {
        display: none;
    }
    .header_nav_wrapper {
        display: flex;
        justify-content: space-between;
    }
    .header_nav {
        max-width: 1520px;
        margin: auto;
        height: 135px;
        font-size: 1.125rem;
    }
    .nav_pc {
        display: inline-block;
        margin-right: 40px;
    }
    .nav_pc ul {
        display: flex;
        gap: 60px;
        margin-top: 52px;
        font-family: "Figtree", sans-serif;
        font-optical-sizing: auto;
        font-weight: 700;
        font-style: normal;
    }
    .nav_pc ul a {
        color: #3B3B3B;  
    }
    .nav_pc ul a:hover {
        opacity: 0.6;
    }
    .nav_pc ul .instagram-icon,
    .nav_pc ul .x-icon {
        margin-top: 3px;
    }

    .mv {
        height: 600px;
    }
    .mv h2 {
        font-size: 5rem;
        line-height: 1.3em;
    }

    /* contents
    ---------------------------------------- */
    h3 {
        font-size: 3.75rem;
        line-height: 0.5em;
    }
    h3 span {
        font-size: 1rem;
    }

    /* about
    ---------------------------------------- */
    #about dl {
        width: 60%;
        font-size: 1rem;
    }
    /* contact
    ---------------------------------------- */
    #contact dl {
        max-width: 540px;
    }
    .arrow_top img {
        width: 75px;
    }    
}

/* -----------------------------
	PC向け 961px〜1079px
-------------------------------- */
@media screen and (min-width: 961px) and (max-width:1079px) {
    /* header
    ---------------------------------------- */
    .mv h2 {
        font-size: 4.375rem;
    }
}