/* =========================
reset
============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* =========================
base
============================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  line-height: 1.7;
}

html, body {
    overflow-x: hidden;
}

/* 参考 */
/* font-size: 62.5%;
    通常は 1rem = 16px
    上記書くと 16px × 0.625 = 10px
    font-size: 1.6rem;→ 16px
*/

/* 参考 */
/*  
font-weight: 200; /* ExtraLight 
font-weight: 300; /* Light 
font-weight: 400; /* Regular 
font-weight: 500; /* Medium 
font-weight: 600; /* SemiBold 
font-weight: 700; /* Bold 
font-weight: 900; /* Black 
*/



/* =========================
header
============================*/
.header {
    width: 100%;
    height: 100px;
    background-color: white;
}

.header-inner {
    max-width: 342px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    transition: opacity 0.2s ease;
}

.header-logo:hover {
    opacity: 0.8;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-chatgpt {
    width: 160px;
}

.header-top-chatgpt {
    width: 140px;
    
}

.header-img {
    width: 75px;
    height: 75px;
    border-radius: 75px;
}

.header-title {
    font-family:  "Monoton", sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.btn-contact-sp {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 999px;
    background-color: #F0912C;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4%;
    transition: opacity 0.2s ease;
}

.btn-contact-sp:hover {
    opacity: 0.7;
}

.btn-contact-hamburger {
    font-size: 20px;
    font-weight: 600;
    padding: 6px 30px;
    margin-top: 40px;
}

.btn-contact-hamburger {
    transition: opacity 0.2s ease;
}

.btn-contact-hamburger:hover {
    opacity: 0.7;
}

.header-pc {
    display: none;
}

.header-menu {
  width: 32px;
  height: 24px;

  border: none;
  background: transparent;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  cursor: pointer;
  position: relative;
  z-index: 101;
  transition: opacity 0.2s ease;
}



.header-menu:hover {
    opacity: 0.7;
}

.pc-nav {
    display: none;
}

.header-menu span {
  width: 100%;
  height: 2px;
    display: block;
  background: #222;
  border-radius: 999px;
  transition: 0.3s;
}

.menu-box {
    position: fixed;
    z-index: 100;
    top: 0px;
    right: 0;
    width: 80%;
    padding: 80px 0 80px 60px ;
    border-radius: 20px 0 0 20px;
    transform: translatex(100%);
    background-color: #8DA274;
}


/* 450px以上 */
@media (min-width: 450px) {

    .menu-box {
        width: 70%;
    }

}

/* 550px以上 */
@media (min-width: 550px) {

    .menu-box {
        width: 55%;
    }

}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

.menu-list a {
    transition: opacity 0.2s ease;
}

.menu-list a:hover {
    opacity: 0.7;
}

/* ハンバーガー動かす */
.header-menu.menu-open span:nth-child(1) {
    transform: 
        translateY(11px) rotate(45deg);
    
}

.header-menu.menu-open span:nth-child(2) {
    opacity: 0;
    
}
.header-menu.menu-open span:nth-child(3) {
    transform: 
        translateY(-11px) rotate(-45deg);
    
}

/* メニュー表示 */
.menu-box.menu-open {
    transform: translateX(0);
}



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    opacity: 0;

    pointer-events: none;
}

.overlay.menu-open {
    opacity: 1;
    pointer-events: auto;
}

/* pc header */

@media (min-width: 768px)  {

    
    
    .header-inner {
    max-width: 1100px;
    height: 160px;
    padding: 0 7%;
    
    
    }

    .header {
        
        height: 160px;
    }



    .header-img {
    width: 140px;
    height: 140px;
    
    }

    .header-title {
        font-size: 28px;
    }

    .btn-contact-pc {
        
        padding: 7px 50px;
        font-size: 22px;
        display: inline-block;
        border-radius: 999px;
        background-color: #F0912C;
        transition: opacity 0.2s ease;
    }

    .btn-contact-pc:hover {
    opacity: 0.7;
}

    .btn-contact-sp {
        display: none;
    }

    .header-menu {
        display: none;
    }

    .pc-nav {
        display: block;

    }

    .pc-nav-list {
        display: flex;
        gap: 24px;
        font-size: 18px;
    }

    .pc-nav-list a {
    transition: opacity 0.2s ease;
}

    .pc-nav-list a:hover {
    opacity: 0.7;
}

    .header-pc {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .header-top-chatgpt {
    width: 170px;
    
}



}


/* =========================
fv
============================*/
.fv{
position: relative;
height: 400px;
}

.fv-price::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.05) 35%,
        transparent 60%
    );
    pointer-events: none;
}

.top-fv {
    position: relative;
    height: 400px;
}

.top-fv-inner {
    position: absolute;
    inset: 0;
    width: 100%;
}

.top-fv-img {
    width:100%;
    height:400px;
    object-fit:cover;
    object-position: 85% center;
}

.fv-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: 30% center;
}

.trainer-fv-img {
    object-position: 60% center;
}

.fv-img-price {
    object-position: 45% center;
}



.top-fv-title {
    position: absolute;
    left: 38px;
    top: 88px;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.6;
    /* font-family: "Zen Antique", serif; */
    font-family: "Zen Old Mincho", serif;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.top-fv-detail {
    position: absolute;
    left: 38px;
    bottom: 40px;
    font-size: 16px;
    letter-spacing: 8%;
    font-weight: 800;
     font-family: "Zen Old Mincho", serif;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.fv-decoration {
    position: absolute;
    left: 43px;
    top: 31px;
    color: rgba(255,255,255,.3);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.8em;
}

.fv-decoration-price {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.fv-decoration-services {
    color: rgba(255,255,255,.45);
}

.fv-decoration-trainer {
    color: rgba(255,255,255,.7);
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
    opacity: 0.8;
}

.fv-decoration-place {
    color: rgba(255,255,255,.7);
    text-shadow: 0 1px 4px rgba(0,0,0,.15);
}

.fv-title {
    position: absolute;
    left: 43px;
    top: 54px;
    font-size: 29px;
    font-weight: 900;
    font-family: "Zen Old Mincho", serif;
    color: #fff;
}

.fv-title-price {
    color: rgba(255,255,255,.9);
    text-shadow: 0 2px 6px rgba(0,0,0,.35);
}

.fv-title-place {
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.fv-title-trainer {
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
}

.fv-detail {
    position: absolute;
    left: 43px;
    bottom: 65px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Zen Old Mincho", serif;
    color: #fff;
}

.fv-detail-place {
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.fv-detail-services {
    text-shadow: 0 2px 6px rgba(0,0,0,.25);
}

.fv-detail-br {
    display: none;
}

.fv-place::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.05) 35%,
        transparent 60%
    );
    pointer-events: none;
}


/* pc fv */

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

.fv {
    height: 500px;
}

.fv-place::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.08) 30%,
        transparent 50%
    );
    pointer-events: none;
}

.top-fv-inner {
        max-width: 1100px;
        width: calc(100% - 120px);
        margin: 0 auto;
    }

.top-fv-img {    
    height: 650px; 
    object-position: 30% 13%;
    object-fit: cover;
    }

.fv-img {    
    height: 500px; 
    object-position: 30% center;
    }

.trainer-fv-img {
    height: 500px; 
    object-position: 30% 10%;
}

.fv-img-trainer {
    object-position: 30% 0%;
}

.fv-img-price {
    object-position: 0% 35%;
}

.top-fv-title {
    
    /* left: 110px; */
    top: 100px;
    font-size: 34px;
    left: 0;  
    
    }

.top-fv-detail {
    
    bottom:  113px;
    font-size: 25px;
    font-weight: 500; 
    left:0;  
    } 

.top-fv-title-spbr {
    display: none;
}

.fv-decoration {
    position: absolute;
    left: 116px;
    top: 53px;
    font-size: 18px;
}

.fv-decoration-place {
    color: rgba(255, 255, 255, .75);
    text-shadow: 0 2px 6px rgba(0,0,0,.25);
}

.fv-title {
    position: absolute;
    left: 110px;
    top: 75px;
    font-size: 41px;
}

.fv-title-place {
    text-shadow: 0 2px 6px rgba(0,0,0,.25);
}

.fv-detail {
    position: absolute;
    left: 110px;
    bottom: 60px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.fv-detail-price {
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.fv-detail-place {
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
}


}

/* =========================
   tablet fv
============================*/

@media (min-width: 768px) and (max-width: 1023px) {

    .top-fv {
        height: 500px;
    }

    .top-fv-img {
        height: 500px;
        object-fit: cover;
        object-position: 30% center;
    }

    .top-fv-title {
        top: 80px;
        left: 0;
        font-size: 30px;
        line-height: 1.6;
    }

    .top-fv-detail {
        bottom: 70px;
        left: 0;
        font-size: 20px;
        line-height: 1.6;
    }

}


/* =========================
cta
========================= */

.cta {
    margin-top: 70px;
}

.instagram-next {
  margin-top: 50px;
}

.cta-inner {
    max-width: 342px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 25px;
    font-weight: 500;

}

.cta-text {
    margin-top: 30px;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.cta-text-choose {
    font-size: 17px;
    margin-top: 15px;
    font-weight: 300;
}

.cta-btn {
    
    background-color: #F0912C;
    padding: 12px 70px;
    display: flex;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.2s ease;
}

.cta-btn:hover {
    opacity: 0.7;
}



.cta-btn-mail {
    font-size: 31px;
    color: #fff;
}

.cta-btn-text {
    color: #fff;
    position: relative;
    top: -2px;
}

/* pc cta */
@media (min-width:768px) {
.cta {
    margin-top: 70px;
    padding-top: 30px;
    
}

 .instagram-next {
        margin-top: 20px;
    }

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 30px;
    font-weight: 500;

}

.cta-text-choose {
    font-size: 23px;
    margin-top: 15px;
}

.cta-text {
    font-size: 29px;
    line-height: 42px;
    letter-spacing: 0.07em;
    font-weight: 500;
}

.cta-btn {
    background-color: #F0912C;
    padding: 8px 70px;
    display: flex;
    width: fit-content;
    border-radius: 999px;
    font-size: 28px;
    font-weight: 500;
    margin: 50px auto 0;
    align-items: center;
    justify-content: center;
    gap: 10px;
}




}

/* =========================
footer
========================= */

.footer {
    background-color: #708657;
    color: #fff;
    margin-top: 110px;
}


.footer-logo a {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-chatgpt {
    width: 120px;
    display: block;
    transform: translateY(-1px);
}

.footer-inner {
    max-width: 342px;
    margin: 0 auto;
}
.sns-logo {
    display: flex;
    align-items: center;
    gap: 42px;
    width: fit-content;
    margin: 0 auto;
    padding-top: 60px;
    
}


.sns-list {
    display: flex;
    gap: 20px;
}

.sns-item {
    font-size: 29px;
}

.sns-item-line {
    font-size: 29px;
}

.footer-line {
    width: 284px;
    height: 1px;
    background-color: rgba(255,255,255,0.5);
    margin: 18px auto 0;
}


.footer-nav {
    display: flex;
    gap: 80px;
    width: fit-content;
    margin: 0 auto;
    transform: translateX(-25px);
}

.footer-nav-item {
    margin-top: 24px;
    font-size: 19px;
}

.footer-copyright {
    display: block;
    margin: 70px auto 0;
    padding-bottom: 80px;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.18em;
}

/* pc footer */

@media (min-width: 1024px){
    .footer {
    margin-top: 130px;
}

.footer-logo {
    font-size: 25px;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
}
.sns-logo {
    display: flex;
    align-items: center;
    gap: 60px;
    width: fit-content;
    margin: 0 auto 0 20%;
    padding-top: 85px;
    
}


.sns-list {
    display: flex;
    gap: 34px;
}

.sns-list a {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.sns-list a:hover {
    opacity: 0.7;
}

.sns-item {
    font-size: 32px;
}

.footer-line {
    width: 550px;
    height: 1px;
    background-color: rgba(255,255,255,0.5);
    margin: 30px auto 0 20%;
}


.footer-nav {
    display: flex;
    gap: 95px;
    width: fit-content;
    margin: 0 auto 0 20%;
    
}

.footer-nav-item {
    margin-top: 30px;
    font-size: 22px;
}

.footer-nav-item a {
    transition: opacity 0.2s ease;
}

.footer-nav-item a:hover {
    opacity: 0.7;
}

.footer-copyright {
    display: block;
    margin: 50px auto 0;
    padding-bottom: 80px;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
}




}

/* top ページ */

/* =========================
message
========================= */


.message-inner {
    max-width: 342px;
    margin: 0 auto;
    
}

.message-title {
    font-family:  "Zen Antique", serif; 
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    line-height: 1.4;
}

.message-title-pc-br {
    display: none;
}

.message-text {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 300;
    line-height: 34px;
    letter-spacing: 0.07em;
}

.conjunction {
    font-size: 24px;
}

/* pc message */

@media (min-width: 768px) {

    .message-inner {
    max-width: 1440px;
    padding-left: 7.2%;
    
    
}

.sp-br {
    display: none;
}

.message-title {
    
    font-size: 43px;
    font-weight: 900;
    margin-top: 40px;
}

.message-title-pc-br {
    display: block;
}

.message-text {
    
    font-size: 22px;
    font-weight: 300;
    line-height: 38px;
    letter-spacing: 0.08em;
    max-width: 550px;
    width: fit-content;
    margin: 40px auto 0;
}

.conjunction {
    font-size: 43px;
}


}


/* =========================
hero
========================= */
.hero {
    margin-top: 40px;
}

.hero-picture1 ,
.hero-picture2 {
    width: 100%;
    height: 200px;
    object-fit: cover;

}

/* pc hero */

@media (min-width: 768px) {
    .hero {
        display: flex;
        margin: 90px 8.5% 0;
        max-width: 1440px;
    }

    .hero-picture1,
    .hero-picture2 {
        width: 50%;
        height: 300px;
    }

}






/* =========================
concern
========================= */

.concern-inner {
    max-width: 342px;
    margin: 0 auto;
}

.concern-title {
    margin-top: 30px;
    font-size: 25px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    text-align: center;
    line-height: 41px;
    letter-spacing: 0.05em;
}

.concern-list {
    margin: 30px auto 0;
}

.concern-item {
    display: flex;
    margin-top: 0px;
    align-self: flex-start;
    gap: 9px;
    background-color: #FAF8F3;
    border-radius: 8px;
    padding: 9px 10px;
}

.concern-item + .concern-item {
    margin-top: 15px;
}



.concern-text {
    
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.07em;
}

/* pc concern */

@media (min-width:768px) {
    .concern {
        margin-top: 85px;

}

.concern-inner {
    max-width: 880px;
    
}

.concern-title-br {
    display: none;
}

.concern-title { 
    font-size: 37px;
    
}

.concern-item {
    display: block;
    align-self: flex-start;
    gap: 10px;
}

.concern-list {
    margin: 50px auto 0;
    width: fit-content;
}



.concern-text {
    
    font-size: 23px;
    font-weight: 400;
    line-height: 1.3;
}



}

/* =========================
feature
========================= */

.feature-inner {
    max-width: 342px;
    margin: 0 auto;
}


.feature-picture {
    width: 280px;
    height: 280px;
    border-radius: 999px;
    object-fit: cover;
    margin: 0 auto;
}

.feature-picture-place {
    object-position: 65% 100%;
    
}

.feature-item:first-child .feature-picture {
    margin-top: 60px;
}

.feature-item + .feature-item {
    margin-top: 80px;
}

.feature-title {
    text-align: center;
    margin-top: 18px;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.3;
}

.feature-title-name {
    margin-top: 0;
}

.feature-subtitle {
    text-align: center;
    margin-top: 18px;
    font-size: 17px;
    font-weight: 400;
    color: #666666;
    line-height: 1.3;
}

.feature-text {
    max-width: 278px;
    margin: 20px auto 0;
    font-size: 19px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0.07em;
}

.feature-online {
    margin: 5px auto 0;
    width: fit-content;
    font-size: 15px;
    color: #666666;
}
 
.feature-btn {
    padding: 5px 0;
    width: 264px;
    border: solid 1px black;
    border-radius: 999px;
    text-align: center;
    margin: 25px auto 0;
    display: block;
    font-size: 22px;
    font-weight: 300;
}



/* pc feature */
@media (min-width:1024px) {

.feature-inner {
    max-width: 1100px;
    margin: 0 auto;
}


.feature-item {
    max-width: 967px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 100px auto 0;

}

.feature-item + .feature-item {
    margin-top: 90px;
}

.feature-item:first-child {
    margin-top: 70px;
}

.feature-item-set {
    width: 440px;
}
.feature-list {
    margin-top: 100px;
}


.feature-picture {
    width: 340px;
    height: 340px;
    border-radius: 999px;
    margin-top: 0
}

.feature-title {
    
    margin-top: 0px;
    font-size: 36px;
    
    
}

.feature-text {
    max-width: 375px;
    margin: 30px auto 0;
    text-align: left;
    font-size: 22px;
    font-weight: 300;
    line-height: 45px;
    
}

.feature-text-spbr {
    display: none;
}
 
.feature-btn {
    padding: 7px 0;
    width: 300px;
    border: solid 1px black;
    border-radius: 999px;
    /* width: fit-content; */
    margin: 30px auto 0;
    display: block;
    transition: opacity 0.2s ease;
}

.feature-btn:hover {
    opacity: 0.7;
}

.feature-item-reverse {
    flex-direction: row-reverse;
}


}

/* =========================
Instagram
========================= */
.instagram {
    margin: 50px auto 0;
    text-align: center;
}
.instagram-title {
    font-size: 25px;
    font-weight: 500;
    
}

.instagram-btn {
    font-size: 20px;
    font-weight: 500;
}

.instagram-subtitle {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
    display: inline-block;
    text-align: left;
    font-weight: 300;
}

.instagram-icon-btn {
    margin-top: 30px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.2s ease;
}

.instagram-link:hover {
    opacity: 0.7;
}

.instagram-link iconify-icon {
    font-size: 26px;
}

@media (min-width:768px) {

    .instagram {
    margin: 80px auto 0;
    text-align: center;
}
.instagram-title {
    font-size: 34px;
    font-weight: 500;
    
}

.instagram-btn {
    font-size: 25px;
}

.instagram-subtitle {
    font-size: 24px;
    margin-top: 15px;
    display: inline-block;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 300;
}

.instagram-icon-btn {
    margin-top: 30px;
}

 .eapps-instagram-feed-posts-grid {
    max-width: 1100px;
    margin: 0 auto;
  }

 #eapps-instagram-feed-1 .eapps-instagram-feed-posts-grid-load-more {
    margin-top: 40px !important;
 }

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.instagram-link iconify-icon {
    font-size: 35px;
}


}




/* サポートページ */

/* =========================
main
========================= */
.support-main {
    background-color: #F6F1E7;
}

.support-header {
    background-color: #F6F1E7;
}

@media (max-width: 1023px) {

    .support-main {
        padding-bottom: 90px;
    }
}

@media (min-width: 1024px) {

    .support-main {
        padding-bottom: 140px;
    }
}



/* =========================
fv後　説明
========================= */
.support-message-inner {
    max-width: 342px;
    margin: 0 auto;
}

.support-message-title {
    font-size: 23px;
    font-family: "Noto sans JP", serif;
    font-weight: 700;
    margin: 35px auto 0;
    
}

.support-message-text {
    margin-top: 30px;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 30px;
    
}


.support-important {
    font-size: 18px;
    font-weight: 600;
}


/* pc fv後説明 */
@media (min-width:1024px) {

.support-message-inner {
    max-width: 800px;
    margin: 0 auto;
}

.support-message-title {
    font-size: 39px;
    
    font-weight: 700;
    width: fit-content;
    margin: 65px auto 0;
    
}

.support-message-text {
    margin: 50px auto 0;
    max-width: 530px;
    
    
}

.support-important {
    font-size: 34px;
    font-weight: 600;
}

.support-message-item {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 45px;
}

.support-br-pc {
    display: block;
}




}

/* =========================
カード
========================= */
.support-card {
    margin-top: 30px;
}
.support-item{
    width: 342px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 45px 50px;
    
}

.support-heading {
    width: fit-content;
    margin: 20px auto 0;
}

.support-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.support-item-picture {
    display: block;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    object-fit: cover;
    margin: 0 auto ;
    
}

.support-item-picture-teach {
    object-position: 65% center;
}



.support-item-picture-strech {
    object-position: 60% center;
}

.support-title {
   font-size: 20px; 
   font-weight: 800;
   margin-top: 0px;
   text-align: center;
}

.support-detail-pc {
    display: none;
}

.support-line {
    border: #B3CC97 solid 1px;
    width: 180px;
    margin: 16px auto 0;
}

.support-detail {
    margin: 25px auto 0;
    font-size: 16px;
    letter-spacing: 8%;
}

/* pc カード */
@media (min-width: 1024px) {
.support-item {
    display: flex;
    flex-direction:row-reverse;
    width: 900px;
    padding: 48px 40px 48px 80px;
    
}

.support-heading {
    margin: 0;
}

.support-card {
    margin-top: 90px;
}


.support-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.support-item-picture {
    display: block;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    object-fit: cover;
    
    
}

.support-title {
   font-size: 36px; 
   font-weight: 800;
   margin-top: 0;
   text-align: left;
   

}

.support-line {
    border: #B3CC97 solid 1px;
    width: 220px;
    margin: 16px 0 0;
    
}

.support-detail {
    margin: 45px 0 0;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0.08em;
    max-width: 370px;
}

.support-detail-pc {
    display: block;
}

.support-item-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


}

/* =========================
誘導写真
========================= */
.forward {
    margin-top: 80px;
}

.forward-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.forward-item {
    position: relative;
    
}

.forward-picture {
    max-width: 342px;
    margin: 0 auto;
    height: 230px;
    object-fit: cover;
    display: block;
}

.forward-picture-privategym {
    object-position: center 100%;
    
}

.forward-title {
    font-size: 21px;
    color: #fff;
    font-weight: 700;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 68%;
    transform: translate(-50%, -50%);
}

.forward-btn {
    border: #fff solid 1px;
    font-size: 15px;
    font-weight: 300;
    padding: 0 14px;
    color: #fff;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 82%;
    transform: translate(-50%,-50%);
}


/* pc 誘導写真 */
@media (min-width: 1024px) {
.forward {
    margin-top: 160px;
}

.forward-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 956px;
    margin: 0 auto;
    justify-content: center;
}



.forward-item {
    position: relative;
    gap: 20px;
    
    
}

.forward-picture {
    width: 440px;
    max-width: none;
}

.forward-title {
    font-size: 23px;
    color: #fff;
    font-weight: 700;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 62%;
    transform: translate(-50%, -50%);
}

.forward-btn {
    border: #fff solid 1px;
    font-size: 15px;
    font-weight: 300;
    padding: 3px 14px;
    color: #fff;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 77%;
    transform: translate(-50%,-50%);
    margin-top: 5px;
    transition: opacity 0.2s ease;
}

.forward-btn:hover {
    opacity: 0.7;
}

.forward-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0) 60%
    );
    pointer-events: none;
}



}

/* =========================
pc support-footer
========================= */
@media (max-width:767px) {
.support-footer {
    margin-top: 0;
}
}
 


@media(min-width: 768px) {
.support-footer {
    margin-top: 0px;
}

}



/* トレーナーページ */

/* =========================
main
========================= */


/* =========================
introduce
========================= */
.introduce {
    max-width: 320px;
    margin: 0 auto;
}

.introduce-name {
    font-size: 32px;
    font-weight: 600;
    margin-top: 45px;
}

.introduce-name-kana {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.21em;
    line-height: 1;
    margin-top: 5px;
}

.introduce-roll {
    font-size: 18px;
    letter-spacing: 0.09em;
    line-height: 1.3;
    margin-top: 20px;
}

.introduce-devided-line {
    border: #B3CC97 solid 1px;
    width: 280px;
    margin-top: 23px;
}

/* pc introduce */

@media (min-width: 1024px) {
.introduce {
    max-width: 750px;
    margin: 0 auto;
}

.introduce-name {
    font-size: 46px;
    font-weight: 600;
    margin-top: 75px;
}

.introduce-name-kana {
    font-size: 21px;
    font-weight: 300;
    letter-spacing: 0.09em;
    line-height: 1;
    /* margin-top: 16px; */
}

.introduce-roll {
    font-size: 22px;
    letter-spacing: 0.09em;
    line-height: 1.3;
    margin-top: 60px;
}

.introduce-devided-line {
    border: #B3CC97 solid 1px;
    width: 750px;
    margin-top: 35px;
}


}

/* =========================
trainer-motto
========================= */
.trainer-motto {
    max-width: 340px;
    margin: 0 auto;
}

.trainer-picture {
    width: 335px;
    height: 335px;
    display: block;
    border-radius: 999px;
    object-fit: cover;
    margin-top: 32px;
    object-position: 100% center;
   
}

.trainer-motto-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
}

.trainer-motto-text {
    
    font-size: 17px;
    font-weight: 300;
    margin-top: 25px;
    line-height: 30px;
    letter-spacing: 0.06em;
}

.trainer-motto-item {
    margin-top: 20px;
    
}

/* pc trainer-motto */
@media(min-width: 1024px) {
.trainer-motto {
    display: flex;
    max-width: 1016px;
    margin: 80px auto 0; 
    gap: 30px;
}

.trainer-picture {
    width: 442px;
    height: 442px;
    border-radius: 999px;
    object-fit: cover;
    margin-top: 55px;
}

.trainer-motto-title {
    font-size: 33px;
    font-weight: 700;
    margin-top: 30px;
}

.trainer-motto-text {
    width: 510px;
    font-size: 25px;
    font-weight: 300;
    margin-top: 60px;
    line-height: 38px;
    letter-spacing: 0.08em;
}

.trainer-motto-item {
    margin-top: 30px;
}

}



/* =========================
resume
========================= */
.resume {
    margin: 50px auto 0;
    max-width: 342px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trainer-card {
    background-color: #EFEBDD;
    padding: 37px 40px 50px;
    border-radius: 8px;
}

.history-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.history-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.07em;
}



/* pc resume */

@media (min-width: 1024px) {
.resume {
    margin: 100px auto 0;
    max-width: 822px;
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.trainer-card {
    background-color: #EFEBDD;
    padding: 39px auto auto 59px;
    border-radius: 8px;
}

.trainer-card-title {
    font-size: 28px;
}

.history-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: disc;
    padding-left: 25px;
}

.history-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 34px;
    letter-spacing: 0.07em;
}

.history-text-spbr {
    display: none;
}

}

/* =========================
line
========================= */


.contact-line-btn {
    background-color: #06C755;
    padding: 12px 70px;
    width: 342px;
    border-radius: 999px;
    margin: 10px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.contact-line-btn:hover {
    opacity: 0.7;
}
    

.contact-line-color {
    color: #fff;
    font-size: 30px;
}


.line-btn-text {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}


@media (min-width:768px) {
    .contact-line-btn {
    background-color: #06C755;
    padding: 8px 70px;
    height: 64px;
    display: flex;
    width: 405px;
    border-radius: 999px;
    font-size: 28px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px auto 0;
}

    

.line-btn-text {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    position: relative;
    top: -2px;
}

.contact-line-color {
    color: #fff;
    font-size: 35px;
}
}


/* =========================
sns-post
========================= */
.sns-account {
    max-width: 342px;
    margin: 70px auto 0;
    text-align: center;

}
.sns-picture {
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    object-fit: cover;
    margin: 0 auto;
}

.sns-section-title {
    font-size: 28px;
    margin-top: 40px;
    line-height: 1.2;
}

.sns-name-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
   
}

.sns-name {
    font-size: 29px;
    font-weight: 300;
}

.sns-account-logo iconify-icon {
    font-size: 40px;
    
    position: relative;
    top: 2px;
}

/* pc sns-post */
@media (min-width: 768px) {
.sns-account {
    max-width: 630px;
    margin: 130px auto 0;
    text-align: center;
    display: flex;
    gap: 80px;
}
.sns-picture {
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    object-fit: cover;
    margin: 0 auto;
}

.sns-section-title {
    font-size: 35px;
    margin-top: 40px;
    line-height: 1.2;
}

.sns-name-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
   
}

.sns-name {
    font-size: 29px;
    font-weight: 300;
}

.sns-account-logo iconify-icon {
    font-size: 40px;
    
    position: relative;
    top: 2px;
}


}

/* price */

/* =========================
料金種類
========================= */
.price-area {
    background-color: #FFFDF4;
    
    margin: 0 24px;
    border-radius: 8px;
    padding-bottom: 60px;
}
.price {
    max-width: 342px;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
}

.price-group {
    margin-top: 20px;
}

.price-firsttime {
    margin: 0 2%;
}

.price-title {
    font-size: 21px;
    font-weight: 600;
}

.price-card {
    background-color: #fff;
    border-radius: 15px;
    padding-bottom: 35px;
    margin-top: 15px;
}

.price-course {
    font-size: 17px;
    font-weight: 600;
    background-color: #708657;
    color: #fff;
    padding: 18px 94px;
    border-radius: 15px 15px 0 0;
}

.price-one {
    font-size: 17px;
    font-weight: 400;
    margin-top: 20px;
}

.price-price {
    font-size: 28px;
    font-weight: 800;
    margin-top: 14px;
}

.price-text {
    font-size: 16px;
    font-weight: 200;
    margin-top: 23px;
}

.price-severaltime {
    margin: 30px 2% 0;
}

.price-group-several {
    margin-top: 55px;
}

.price-group-title {
    font-size: 17px;
    font-weight: 400;
    
}

.price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 3px;
}

.price-time {
    font-size: 19px;
    font-weight: 300;
    color: #666;
}

.price-value {
    font-size: 28px;
    font-weight: 800;
}

.price-group-title-space {
    margin-bottom: 10px;
}

/* =========================
オンライン
========================= */
.price-online {
    font-size: 15px;
    max-width: 300px;
    margin: 15px auto 0;
}



/* pc 料金種類 */

@media (min-width: 1024px) {
.price-area {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 8px;
    padding-bottom: 100px;
}

.price {
    max-width: 894px;
    margin: 0 auto;
    text-align: center;
    padding-top: 110px;
}

.price-firsttime {
    margin: 0 2%;
}

.price-title {
    font-size: 26px;
    font-weight: 600;
}

.price-card {
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    padding-bottom: 45px;
    margin: 30px auto 0;
}

.price-course {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    padding: 21px 0;
    
}

.price-one {
    font-size: 25px;
    font-weight: 400;
    margin-top: 50px;
}

.price-price {
    font-size: 41px;
    font-weight: 800;
    margin-top: 40px;
}

.price-text {
    font-size: 21px;
    font-weight: 200;
    margin-top: 60px;
}



.price-severaltime {
    margin: 100px 2% 0;
}

.price-group-several {
    margin-top: 20px;
}

.price-group-merge {
    display: flex;
    width: 850px;
    margin: 0 auto;
}

.price-group {
    flex: 1;
}

.price-group-title {
    font-size: 25px;
    font-weight: 400;
    margin-top: 50px;
}

.price-group-titlebr {
    display: none;
}

.price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 65px;
    margin-top: 40px;
}

.price-time {
    font-size: 25px;
    font-weight: 300;
}

.price-value {
    font-size: 40px;
    font-weight: 800;
}

}


/* =========================
初回体験内容
========================= */
.first-experience {
    max-width: 342px;
    margin: 0 auto;
    
    background-color: #FFFDF4;
}

.experience-picture {
    
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 60px;
    object-position: 60% center;
}

.experience-title {
    font-size: 25px;
    margin: 30px 8% 0;
    font-weight: 700;
}

.experience-text {
    margin: 18px 8% 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 31px;
    letter-spacing: 0.03em;
} 

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
    margin: 20px auto 0;
    list-style: none;
}

.experience-item {
    display: flex;
    align-items: baseline;
    gap: 13px;
}

.experience-item-name {
    font-size: 19px;
    font-weight: 500;
    
}

.experience-check-icon iconify-icon {
    font-size: 18px;
}

.experience-check-icon {
    position: relative;
    top: 2px;
}

/* pc 初回体験内容 */

@media (min-width: 1024px) {
.first-experience {
    max-width: 922px;
    margin: 0 auto;
    background-color: #FFFDF4;
}

.experience-merge {
    display: flex;
    gap: 70px;
    margin-top: 130px;
}
.experience-picture {
    width: 423px;
    height: 524px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 0;
}

.experience-title {
    font-size: 34px;
    margin: 0px;
    font-weight: 700;
}

.experience-text {
    margin: 50px auto 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 44px;
    letter-spacing: 0.03em;
} 

.experience-list {
    display: flex;
    flex-direction: column;
    
    
    gap: 12px;
    width: fit-content;
    margin: 30px auto 0;
    list-style: none;
}

.experience-item {
    display: flex;
    align-items: baseline;
    gap: 13px;
}

.experience-item-name {
    font-size: 26px;
    font-weight: 500;
    
}

.experience-check-icon iconify-icon {
    font-size: 26px;
}

.experience-check-icon {
    position: relative;
    top: 2px;
}



}

/* =========================
price-cta
========================= */
.price-cta {
    margin-top: 90px;
}

/* place ページ */

/* =========================
fv
========================= */
.fv-img-place {
    object-position: 55% center;
}


@media (min-width: 1024px) {
    .fv-img-place {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center center;
}
}
/* =========================
fv後　説明
========================= */
.place-message-title {
    text-align: center;
    line-height: 46px;
    letter-spacing: 0.05em;
    margin-top: 20px;
    font-size: 24px;
}

.place-message-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 300px;
    margin: 40px auto 0;
    text-align: left;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.03em;
}

.place-message-detailbr {
    display: none;
}

/* pc fv後　説明 */

@media (min-width: 768px) {
.place-message-title {
    text-align: center;
    font-size: 35px;
    line-height: 40px;
    letter-spacing: 0.05em;
    margin-top: 80px;
}

.place-message-text {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 630px;
    margin: 80px auto 0;
    text-align: left;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.05em;
}


}

/* =========================
場所
========================= */
.places {
    margin-top: 70px;
}

.places-number {
    font-size: 26px;
    color: #708657;
    font-weight: 600;
    margin-left: 6%;
    line-height: 1.2;
}

.places-title {
    margin-left: 6%;
    margin-top: 5px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.places-picture {
    width: 100%;
    border-radius: 8px;
    height: 400px;
    object-fit: cover;
    margin-top: 20px;
}

.places-text  {
    text-align: left;
    width: fit-content;
    margin: 23px auto 0;
    font-size: 20px;
    
}

.places-detail {
    margin: 28px auto 0;
    text-align: left;
    font-size: 17px;
    max-width: 300px;
    letter-spacing: 0.08em;
    font-weight: 400;
}

.recommended {
    background-color: #EFF5E8;
    max-width: 342px;
    padding: 20px 46px;
    border-radius: 20px;
    margin: 25px auto 0;
}

.recommended-title {
    font-size: 19px;
    font-weight: 500;
    color: #708657;
    letter-spacing: 0.08em;
}

.recommended-list {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 26px;
    list-style: disc;
}

.place-info{
    max-width: 342px;
    margin: 20px auto 0;
    color: #666666;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.04em;
    padding-left: 16px;
    line-height: 1.8;
}

.places-item {
    margin-top: 56px;
}

.places-subtitle {
    font-size: 13px;
    font-weight: 300;
    margin-left: 6%;
}



/* pc 場所 */
@media (min-width:1024px) {
.places {
    margin-top: 150px;
}

.places-list {
    max-width: 1100px;
    margin: 0 auto;
}

.places-number {
    font-size: 30px;
    font-weight: 600;
    margin-left: 6%;
    line-height: 1.2;
}

.places-title {
    margin-left: 6%;
    margin-top: 16px;
    font-size: 31px;
    font-weight: 800;
    line-height: 1.2;
}

.places-picture {
    width: 100%;
    border-radius: 8px;
    height: 550px;
    margin: 30px auto 0;
    max-width: 900px;
}

.places-picture-outside {
    object-position: center 15%;
}

.places-text  {
    text-align: center;
    margin-top: 70px;
    font-size: 30px;

}

.places-text-br {
    display: none;
}

.places-detail {
    margin: 45px auto 0;
    text-align: left;
    font-size: 23px;
    max-width: 690px;
    text-align: 36px;
    letter-spacing: 0.08em;

}

.recommended {
    max-width: 537px;
    background-color: #EFF5E8;
    padding: 23px 70px 30px;
    border-radius: 20px;
    margin: 40px auto 0;
}

.recommended-title {
    font-size: 26px;
    font-weight: 500;
    color: #708657;
    letter-spacing: 0.08em;
}

.recommended-list {
    margin-top: 13px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 25px;
    list-style: disc;
}

.recommended-item {
    margin-top: 10px;
}

.place-info{
    max-width: 537px;
    margin: 13px auto 0;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .04em;
}


.places-item {
    margin-top: 56px;
}

.places-title-sub {
    display: flex;
    gap: 15px;
    align-items: baseline;
}
.places-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-left: 0;
}



}

/* =========================
places-cta
========================= */
.places-cta {
    margin-top: 80px;
}

.places-btn {
    font-size: 16px;
}



/* pc places-cta */
@media (min-width:768px) {


.places-cta {
    margin-top: 80px;
}

.places-btn {
    font-size: 20px;
}



}


/* sp：お問い合わせフォーム */

.contact-form {
    display: none;
}

.contact-form {
    background-color: #fff;
    padding: 30px 24px;
    margin-top: 30px;
    border-radius: 24px;
    text-align: left;
}

.contact-form-beige {
    background-color: #F7F3EA;
}

.contact-form h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 28px;
}

.form-item {
    margin-bottom: 20px;
}

.form-item label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-item input,
.form-item textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    font-size: 16px;
    font-family: inherit;
}

.form-item textarea {
    resize: vertical;
}

.contact-form-submit {
    width: 100%;
    padding: 13px;
    margin-top: 8px;
    border: none;
    border-radius: 999px;
    background-color: #F0912C;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.contact-form-submit:hover {
    opacity: 0.7;
}

.contact-form-header {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header h3 {
    margin: 0;
}

.contact-form-close {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #888;
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
}

/* PC：お問い合わせフォーム */
@media screen and (min-width: 768px) {

    .contact-form {
        max-width: 800px;
        margin: 60px auto 0;
    }

    .contact-form h3 {
        margin-bottom: 40px;
    }


    .form-item {
        margin-bottom: 32px;
    }

    
    
    .contact-form-submit {
        width: 360px;
        display: block;
        margin: 20px auto 0;
    }

}

/* =========================
   Privacy Policy
========================= */

.privacy {
    padding: 60px 24px;
    background-color: #F7F3EA;
}

.privacy-inner {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.privacy-intro {
    margin-bottom: 40px;
    line-height: 2;
}

.privacy-item {
    margin-bottom: 35px;
}

.privacy-item h2 {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}

.privacy-item p {
    line-height: 2;
}

.privacy-item ul {
    margin-top: 10px;
    padding-left: 1.5em;
    line-height: 2;
}

.privacy-date {
    margin-top: 60px;
    text-align: right;
}

.footer-privacy {
    margin-top: 0;
}

.privacy-footer-title {
    display: block;
    margin: 35px auto 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}


/* =========================
   PC
========================= */

@media (min-width: 768px) {

    .privacy {
        padding: 80px 24px;
    }

    .privacy-title {
        margin-bottom: 50px;
        font-size: 32px;
    }

    .privacy-intro {
        margin-bottom: 50px;
    }

    .privacy-item {
        margin-bottom: 40px;
    }

    .privacy-item h2 {
        font-size: 20px;
    }

    .privacy-footer-title {
    display: block;
    margin: 40px auto 0;
    text-align: center;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-footer-title {
    transition: opacity 0.2s ease;
}

.privacy-footer-title:hover {
    opacity: 0.7;
}

}
















