@charset "utf-8";
/* レイアウト*/
body{
    font-family: "Zen Kaku Gothic Antique", sans-serif;
	color: #333;
	font-size: 1rem;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
    height: 100%;
}
@media screen and (max-width: 450px) {
    body{
        font-size: 0.8rem;
	}
}
*{box-sizing: border-box;}
ul{
	margin:0;
	padding: 0;
	list-style: none;
}
a{
	text-decoration: none;
    outline: none;
}
a:hover{
    opacity: 0.7;
}
img{
    width: 100%;
    height: auto;
}
/* font */
.blue{
    color: #4E9EB9;
}
.purple{
    color: #7F8AAD;
}
.pink{
    color: #E0638F;
}
.gold{
    color: #B09A5C;
}
.white{
    color: #fff;
}
.noto-serif{
    font-family: "Noto Serif JP", serif;
}
.oswald{
    font-family: "Oswald", sans-serif;
}
.black{
    font-weight: 900;
}
.bold{
    font-weight: 700;
}
.medium{
    font-weight: 500;
}
.normal{
    font-weight: 400;
}
.font-small80{
    font-size: 80%;
}
.font-big120{
    font-size: 120%;
}
.font-big140{
    font-size: 140%;
}
.strikethrough{
    text-decoration: line-through; 
}
.center{
    text-align: center;
}
/*btn,fixed-layout*/
.btn{
    text-align: center;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}
.btn a{
    width: 100%;
    max-width: 450px;
    height: 120px;
    border: 1px solid #fff;
    background: linear-gradient(90deg, rgba(78,158,185,1) 0%, rgba(243,159,188,1) 100%);
    border-radius: 100px;
    line-height: 1.3;
    padding: 8px 5px;
    transition: all .4s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn a:hover{
    color: #4E9EB9;
    background: #fff;
    border: 1px solid #4E9EB9;
    opacity: 1;
    font-size: 120%;
}
.hidden {
  display: none;
  transition: 0.3s;
}
@media screen and (max-width: 1023px) {
    .btn{
        max-width: 400px;
    }
    .btn a{
        max-width: 400px;
        height: 95px;
        font-size: 130%;
    }
}
/* common */
section{
    padding: 60px;
    width: 100%;
    max-width: 1246px;
    margin: 0 auto;
}
h2{
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}
h2 p{
    text-transform: uppercase;
    font-size: 400%;
    color: #E7E9F0;
}
h2 span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50%);
    color: #7F8AAD;
    font-weight: 900;
    width: 100%;
}
#concept h3,
#reason h3{
    text-align: center;
    font-size: 250%;
    position: relative;
    border-top: 1px dashed #7F8AAD;
    border-bottom: 1px dashed #7F8AAD;
    padding: 10px;
    width: 95%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
}
@media screen and (max-width: 1023px) {
    section{
        padding: 50px 30px;
    }
    #concept h3,
    #reason h3{
        font-size: 220%;
    }
}
@media screen and (max-width: 600px) {
    h2{
        margin-bottom: 30px;
    }
    h2 p{
        font-size: 350%;
    }
    h2 span{
        font-size: 95%;
    }
    #concept h3,
    #reason h3{
        font-size: 180%;
        width: 90%;
    }
}
@media screen and (max-width: 450px) {
    section{
        padding: 30px 20px;
    }
    h2{
        margin-bottom: 20px;
    }
    #concept h3,
    #reason h3{
        width: 100%;
    }
}
/* mv */
#mv{
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 0;
}
h1{
    width: 150px;
    position: absolute;
    top: 30px;
    left: 30px;
}
.mv-img{
    width: 60%;
    max-width: 850px;
    margin-top: 50px;
    margin-left: -30px;
}
.mv-copy{
    position: absolute;
    right: 5%;
    top: 20px;
    transform: rotate( -5deg);
    line-height: 1.4;
}
.mv-copy p:first-of-type{
    font-size: 250%;
    margin-left: -15rem;
}
.mv-copy p:nth-of-type(2){
    font-size: 400%;
    margin-left: -10rem;
    margin-top: -10px;
    text-shadow: 3px 3px 0 #d9d9d9;
}
.mv-copy p:nth-of-type(3){
    font-size: 160%;
    margin-bottom: 1rem;
}
.mv-copy p:nth-of-type(4){
    font-size: 220%;
    background-color: #7F8AAD;
    padding: 10px 25px;
    display: inline-block;
    margin-left: 8rem;
}
.mv-cv{
    position: absolute;
    right: 60px;
    top: 50%;
}
.cv-container{
    display: flex;
    align-items: center;
    gap: .5rem;
    line-height: 1.2;
}
.free-img{
    width: 180px;
}
.regular-price{
    margin-bottom: .5rem;
}
.regular-price span{
    margin-left: 3rem;
}
.price-box{
    display: flex;
    align-items: center;
    gap: .5rem;
}
.first{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.off{
    background-color: #4E9EB9;
    border-radius: 50px;
    padding: 3px 15px;
}
.first-text,
.price span:last-of-type{
    font-size: 200%;
}
.price span:first-of-type{
    font-size: 400%;
}
.moreover{
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 150%;
}
@media screen and (max-width: 1200px) {
    #mv{
        padding: 60px 30px;
    }
    .mv-img{
        width: 55%;
    }
    .mv-copy{
        top: 0;
    }
    .mv-copy p:first-of-type{
        font-size: 250%;
        margin-left: -10rem;
    }
    .mv-copy p:nth-of-type(2){
        font-size: 400%;
        margin-left: -5rem;
    }
}
@media screen and (max-width: 1023px) {
    #mv{
        padding: 60px 30px 30px;
    }
    .mv-copy p:first-of-type{
        font-size: 180%;
        margin-left: 3rem;
    }
    .mv-copy p:nth-of-type(2){
        font-size: 300%;
        margin-left: 6rem;
    }
    .mv-copy p:nth-of-type(3){
        font-size: 140%;
        margin-left: 10rem;
    }
    .mv-copy p:nth-of-type(4){
        font-size: 180%;
        margin-left: 13rem;
    }
    .mv-cv{
        right: 30px;
    }
    .free-img{
        width: 140px;
    }
    .regular-price span{
        margin-left: 2rem;
    }
    .off{
        font-size: 120%
    }
    .first-text,
    .price span:last-of-type{
        font-size: 160%;
    }
    .price span:first-of-type{
        font-size: 300%;
    }
    .moreover{
        font-size: 120%;
        margin-top: -.8rem;
    }
}
@media screen and (max-width: 767px) {
    #mv{
        padding: 60px 20px 0;
    }
    h1{
        width: 130px;
    }
    .mv-copy{
        top: 50px;
        left: 50%;
        right: inherit;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        rotate: -3deg;
    }
    .mv-copy p:first-of-type{
        font-size: 170%;
        margin-left: 0;
    }
    .mv-copy p:nth-of-type(2){
        font-size: 280%;
        margin-left: 0;
    }
    .mv-copy p:nth-of-type(3){
        font-size: 140%;
        margin-left: 0;
    }
    .mv-copy p:nth-of-type(4){
        font-size: 170%;
        margin-left: 4rem;
    }
    .mv-img{
        width: 100%;
        margin: 220px auto 0;
    }
    .mv-cv{
        position: inherit;
        right: inherit;
        top: inherit;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -30px;
        justify-content: center;
    }
}
@media screen and (max-width: 450px) {
    h1{
        width: 100px;
        top: 20px;
        left: 20px;
    }
    .mv-copy{
        line-height: 1.5;
    }
    .mv-copy p:first-of-type{
        font-size: 160%;
    }
    .mv-copy p:nth-of-type(2){
        font-size: 260%;
    }
    .mv-copy p:nth-of-type(3){
        font-size: 130%;
        margin-bottom: .5rem;;
    }
    .mv-copy p:nth-of-type(4){
        font-size: 150%;
    }
    .mv-img{
        margin: 165px auto 0;
    }
    .mv-cv{
        margin-top: -15px;;
    }
    .free-img{
        width: 110px;
    }
    .regular-price{
        font-size: 120%;
    }
    .regular-price span{
        margin-left: 1rem;
    }
    .off{
        font-size: 110%
    }
    .first-text,
    .price span:last-of-type{
        font-size: 150%;
    }
    .price span:first-of-type{
        font-size: 280%;
    }
    .moreover{
        font-size: 110%;
        margin-top: -.2rem;
    }
}
/* fixed-cv*/
#fixed-cv{
    background-image: url("../images/fixed-cv_bg.jpg");
    background-size: cover;
    padding: 10px 40px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9;
}
.cv-inner{
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    align-items: center;
}
.cv-wrap{
    width: 100%;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#fixed-cv .cv-box{
    display: flex;
    align-items: center;
}
#fixed-cv .free-img{
    width: 128px;
}
#fixed-cv .regular-price{
    font-size: 100%;
}
#fixed-cv .regular-price span{
    margin-left: 1rem;
}
#fixed-cv .off{
    padding: 3px 10px;
    font-size: 110%;
}
#fixed-cv .first-text,
#fixed-cv .price span:last-of-type{
    font-size: 140%;
}
#fixed-cv .price span:first-of-type{
    font-size: 280%;
}
#fixed-cv .moreover{
    text-align: left;
    margin: -1.8rem 0 0 7rem;
    font-size: 110%;
}
#fixed-cv .btn{
    max-width: 550px;
}
#fixed-cv .btn a{
    max-width: 550px;
    height: 90px;
}
@media screen and (max-width: 1200px) {
    #fixed-cv{
        padding: 10px 20px;
    }
    #fixed-cv .btn{
        width: 98%;
    }
    #fixed-cv .btn a{
        width: 98%;
        margin-left: auto;
        font-size: 130%;
    }
    #fixed-cv .btn a:hover{
        font-size: 110%;
    }
}
@media screen and (max-width: 819px) {
    .cv-wrap{
        display: none;
    }
    #fixed-cv{
        background:linear-gradient(90deg, rgba(78, 158, 185, 1) 0%, rgba(243, 159, 188, 1) 100%);
        padding: 0;
        border: 1px solid #fff;
    }
    #fixed-cv .btn a{
        border: none;
        border-radius: 0;
        background: transparent;
    }
    #fixed-cv .btn a:hover{
        font-size: 100%;
        color: #fff;
    }
}
/* concept*/
.concept-list{
    margin-bottom: 130px;
}
.concept-list li{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    margin-bottom: 80px;
}
.concept-list li:nth-of-type(2n){
    flex-direction: row-reverse
}
.number{
    font-size: 500%;
}
.concept-img-a,
.concept-img-b{
    width: 50%;
    max-width: 525px;
}
.concept-img-a{
    box-shadow: 30px 30px 0 #A6CEDC;
}
.concept-img-b{
    box-shadow: -30px 30px 0 #CAE1EA;
    margin-left: 30px;
}
.concept-text{
    font-size: 160%;
    margin-bottom: 100px;
}
.prob-pc{
    display: block;
    margin: 0 auto;
    max-width: 1100px;
}
.prob-sp{
    display: none;
}
.arrow-down{
    width: 160px;
    display: block;
    margin: 50px auto;
}
.fit{
    font-size: 160%;
}
.best{
    position: relative;
}
.underline{
    width: 35%;
    min-width: 392px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
@media screen and (max-width: 1023px) {
    .number{
        font-size: 400%;
    }
    .concept-list li{
        gap: 5%;
    }
    .concept-detail{
        font-size: 130%;
    }
    .concept-text{
        font-size: 140%;
    }
    .arrow-down{
        width: 130px;
    }
    .fit{
        font-size: 140%;
    }
}
@media screen and (max-width: 767px) {
    .concept-list li,
    .concept-list li:nth-of-type(2n){
        flex-direction: column;
        gap: 30px;
    }
    .concept-img-a{
        margin-right: 30px;
    }
    .concept-img-a,
    .concept-img-b{
        width: 75%;
    }
    .concept-text{
        text-align: left;
    }
}
@media screen and (max-width: 450px) {
    .concept-list{
        margin-bottom: 90px;
    }
    .concept-img-a,
    .concept-img-b{
        width: 90%;
    }
    .concept-img-a{
        box-shadow: 20px 20px 0 #A6CEDC;
        margin-right: 20px;
    }
    .concept-img-b{
        box-shadow: -20px 20px 0 #CAE1EA;
        margin-left: 20px;
    }
    .concept-text{
        font-size: 130%;
        margin-bottom: 60px;
    }
    .prob-pc{
        display: none;
    }
    .prob-sp{
        display: block;
    }
    .arrow-down{
        width: 100px;
    }
    .fit{
        font-size: 130%;
    }
    .underline{
        min-width: 300px;
    }
}
/* exercise */
#exercise h3{
    font-size: 160%;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0 #d9d9d9;
}
.exe-lead{
    margin-bottom: 30px;
}
.exe-sp{
    display: none;
}
@media screen and (max-width: 450px) {
    #exercise h3{
        text-shadow: 2px 2px 0 #d9d9d9;
    }
    .exe-pc{
        display: none;
    }
    .exe-sp{
        display: block;
        width: 95%;
        margin: 0 auto;
    }
}
/* reason */
.reason-list{
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}
.reason-list li{
    display: flex;
    align-items: center;
    position: relative;
}
.reason-list li:nth-of-type(1){
    border: 1px solid #4E9EB9;
    margin-bottom: 1.5rem;
}
.reason-list li:nth-of-type(2){
    border: 1px solid #7F8AAD;
    margin-bottom: 1.5rem;
}
.reason-list li:nth-of-type(3){
    border: 1px solid #E0638F;
    margin-bottom: 1.5rem;
}
.reason-list li:nth-of-type(4){
    border: 1px solid  #B09A5C;
    margin-bottom: 100px;
}
.point{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 250px;
}
.point01{
    background-color: #4E9EB9;
}
.point02{
    background-color: #7F8AAD;
}
.point03{
    background-color: #E0638F;
}
.point04{
    background-color: #B09A5C;
}
.reason-text{
    width: 60%;
}
.reason-text p:first-of-type{
    margin-bottom: 1rem;
    font-size: 160%;
}
.point span:last-of-type{
    font-size: 300%;
    margin-top: -1rem;
}
.reason-a,
.reason-b{
    width: 22%;
    max-width: 250px;
    border: 2px solid #fff;
    position: absolute;
    right: -2rem;
}
.reason-a{
    rotate: -8deg;
}
.reason-b{
    rotate: 8deg;
}
@media screen and (max-width: 1023px) {
    .reason-list li{
        flex-direction: column;
    }
    .point{
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        width: 100%;
        height: 80px;
        padding-left: 40px;
    }
    .reason-text{
        width: 100%;
        padding: 10px 40px;
    }
    .reason-text p:first-of-type{
        text-align: left;
        margin-bottom: .5rem;
        font-size: 140%;
        
    }
    .reason-text p:last-of-type{
        text-align: left;
        font-size: 120%;
    }
    .point span:last-of-type{
        font-size: 200%;
        margin-top: -1rem;
    }
    .reason-a,
    .reason-b{
        top: -20px;
        right: 0;
    }
}
@media screen and (max-width: 600px) {
    .reason-text{
        padding: 15px;
    }
    .reason-text p:first-of-type{
        font-size: 120%;
        
    }
    .reason-text p:last-of-type{
        font-size: 100%;
    }
    .reason-a,
    .reason-b{
        width: 30%;
        top: -30px;
    }
}
@media screen and (max-width: 450px) {
    .reason-list li:nth-of-type(4){
        margin-bottom: 60px;
    }
}
/* voice */
.voice-list{
    display: flex;
    gap: 2rem;
    margin-bottom: 40px;
}
.voice-list li{
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.16);
}
.voice-babble{
    background-color: #8DBED1;
    padding: 20px;
    position: relative;
}
.voice-babble::after{
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #8dbed1 transparent transparent;
}
.voice-detail{
    padding: 30px 25px;
}
.voice-detail p:first-of-type{
    padding-bottom: 5px;
    margin-bottom: 1rem;
    border-bottom: 1px dashed #8dbed1;
}
@media screen and (max-width: 1023px) {
    .voice-list{
        flex-wrap: wrap;
        justify-content: center;
    }
    .voice-list li{
        width: 45%;
    }
}
@media screen and (max-width: 600px) {
    .voice-list li{
        width: 95%;
        max-width: 375px;
    }
}
@media screen and (max-width: 450px) {
    .voice-babble{
        padding: 15px;
    }
}
/* cv-area */
#cv-area{
    max-width: inherit;
    background-image: url("../images/cv-bg.png");
    background-size: cover;
}
#cv-area .cv-container{
    justify-content: center;
}
#cv-area .cv-lead{
    font-size: 250%;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px #fff;
}
#cv-area .moreover{
    text-shadow: 2px 2px 5px #fff;
}
@media screen and (max-width: 767px) {
     #cv-area .cv-lead{
        font-size: 220%;
    }
}
@media screen and (max-width: 450px) {
    #cv-area .cv-lead{
        font-size: 200%;
    }
    #cv-area .free-img{
        width: 110px;
    }
}
/* menu */
#menu h3{
    font-size: 160%;
    margin-bottom: 1rem;
}
#menu ul{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
}
#menu ul li{
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.other-menu{
    display: flex;
    justify-content: center;
    gap: 30px;
}
.subsc-list-a li,
.short-term li,
.visitor li{
    width: 350px;
}
.subsc-list-b li{
    width: 1110px;
}
.menu-name{
    padding: 10px;
}
.menu-price,
.menu-detail{
    padding: 20px;
    background-color: #E7E9EF;
}
.menu-price{
    line-height: 1;
}
.subsc-list-a li .menu-detail{
    min-height: 130px;
}
.subsc-list-b li .menu-detail span{
    margin-left: 1rem;
}
.name01{
    background-color: #4E9EB9;
}
.name02{
    background-color: #B09A5C;
}
.name03{
    background-color: #E0638F;
}
.name04{
    background-color: #7F8AAD;
}
.name05{
    background-color: #8CBFD1;
}
.name06{
    background-color: #E998B5;
}
.name07{
    background-color: #98A1BD;
}
.menu-price{
    font-size: 180%;
}
.menu-price span{
    font-size: 60%;
}
@media screen and (max-width: 1200px) {
    .subsc-list-a li,
    .short-term li,
    .visitor li{
        width: 280px;
        min-width: 280px;
    }
    .subsc-list-b li{
        width: 900px;
        min-width: 900px;
    }
}
@media screen and (max-width: 1023px) {
    #menu ul,
    .other-menu{
        gap: 20px;
    }
    .subsc-list-b li{
        width: 880px;
        min-width: 880px;
    }
}
@media screen and (max-width: 900px) {
    #menu ul,
    .other-menu{
        flex-direction: column;
    }
    .subsc-list-a li,
    .subsc-list-b li,
    .short-term li,
    .visitor li{
        width: 95%;
        min-width: inherit;
        margin: 0 auto;
    }
    .subsc-list-a li .menu-detail{
        min-height: inherit;
    }
}
/* access */
#access{
    width: 85%;
    max-width: 900px;
}
iframe{
    display: block;
    margin:0 auto 30px;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}
.location{
    display: flex;
    justify-content: flex-start;
    gap: 10%;
    margin-bottom: 40px;
}
.phone{
    display: flex;
    justify-content: center;
    gap: .5rem;
    align-items: center;
    color: #000;
    font-size: 2rem;
}
.phone img{
    width: 27px;
    height: 27px;
}
.opening-times h3{
    text-align: center;
    margin-bottom: 1rem;
}
.times-list{
    text-align: center;
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
}
.times-list dt{
    background-color: #7F8AAD;
    padding: 15px;
}
.times-list dd{
    background-color: #ECEEF4;
    padding: 15px;
}

@media screen and (max-width: 767px) {
    .location{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
@media screen and (max-width: 550px) {
    #access{
        width: 100%;
    }
}
/* contact */
#contact{
    background: url("../images/contact-bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
    max-width: inherit;
}
.contact-content{
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 90%;
    max-width: 520px;
    margin: 0 auto;
    padding: 50px;
    position: relative;
}
.contact-content::after{
    content: '';
    position: absolute;
    border: 1px solid #7F8AAD;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
#contact h3{
    margin-bottom: 1rem;
    font-size: 160%;
}
.phone{
    margin-bottom: 1rem;
}
#contact h4{
    margin-bottom: .5rem;;
}
#contact .phone img{
    width: 40px;
    height: 40px;
}
.qr-code{
    width: 180px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .qr-code{
        width: 160px;
    }
}
@media screen and (max-width: 450px) {
    .contact-content {
        padding: 50px 25px;
        width: 100%;
    }
    .qr-code{
        width: 150px;
    }
}
/* footer */
footer{
    background-color: #4E9EB9;
    color: #fff;
    font-size: 90%;
    text-align: center;
    padding: 30px 10% 150px;
    position: relative;
}
.footer-content{
    max-width: 1246px;
    width: 95%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 120px;
}
.footer-logo{
    width: 150px;
    height: 73px;
    position: absolute;
    top: 0;
    left: 5%;
}
.sns-list{
    display: flex;
    gap: 1rem;
    position: absolute;
    top: 0;
    right: 10%;
}
.sns-list img{
    width: 30px;
}
.copyright{
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX( -50%);
    width: 100%;
    line-height: 2;
}
#page-top{
    position: absolute;
    top: 20px;
    right: 20px;
}
#page-top a{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #8CBFD1;
    border: 1px solid #fff;
	width: 50px;
	height: 50px;
	text-align: center;
	transition:all 0.3s;
}
#page-top a img{
    width: 16px;
}
#page-top a .arrow-b{
    display: none;
}
#page-top a:hover{
	background-color: #fff;
    border: 1px solid #8CBFD1;
    opacity: 1;
}
#page-top a:hover .arrow-w{
    display: none;
}
#page-top a:hover .arrow-b{
    display: block;
}
@media screen and (max-width: 1023px) {
    footer{
        padding: 30px 5% 160px;
    }
    .copyright{
        top: 100px;
    }
}
@media screen and (max-width: 767px) {
    .footer-logo{
        left: 5%;
    }
    .sns-list{
        right: 12%;
    }
}
@media screen and (max-width: 450px) {
    .footer-logo{
        width: 120px;
        height: auto;
        left: 0;
    }
    .sns-list{
        right: 18%;
    }
}