@charset "UTF-8";
/* sp-Loading
===================================== */
#loading{
    background: #fff;
    position: fixed;
    display: grid;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    place-items: center;
}
.loading-box{
    position: relative;
    width: 200px;
    height: 200px;
}
.loading-text{
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%,-90%);
    width: 100%;
    font-size: 1.4em;
    letter-spacing: .2em;
    text-align: center;
}
.text-span{
    opacity: 0;
}
/* ローディング アイテム画像(上) */
.loading-item--on{
    display: inline-block;
    position: absolute;
    width: 30px;
    top: 0;
    left: 0;
    animation: loading-Anime-on .5s alternate ease infinite;
}
/* ローディング　アニメーション(上) */   
@keyframes loading-Anime-on{
    from{
        top: 30%;
        transform: scaleX(1.8);
    }to{
        top: 0;
    }
}
.loading-item--on:nth-child(2){
    left: 42%;
    animation-delay: .4s;
}
.loading-item--on:nth-child(3){
    left: 85%;
    animation-delay: .6s;
}
/* ローディング アイテム画像(下) */
.loading-item--under{
    display: inline-block;
    position: absolute;
    width: 30px;
    top: 40%;
    left: 0;
    z-index: -1;
    animation: loading-Anime-under .5s alternate ease infinite;
}
/* ローディング　アニメーション(下) */   
@keyframes loading-Anime-under{
    from{
        transform: scaleX(1.7);
        opacity: 1;
    }to{
        transform: scaleX(.2);
        opacity: .4;
    }
}
.loading-item--under:nth-child(5){
    left: 42%;
    animation-delay: .4s;
}
.loading-item--under:nth-child(6){
    left: 85%;
    animation-delay: .6s;
}
/* Animation 
=====================================*/
.fadein{
    will-change: opacity;
    opacity: 0;
}
.slide-white{
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.slide-white::before{
    display: block;
    position: absolute;
    content: "";
    z-index: 200;
    inset: 0;
    background: #fff;
}
.slide-offwhite{
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 200;
}
.slide-offwhite::before{
    display: block;
    position: absolute;
    content: "";
    z-index: 200;
    inset: 0;
    background: var(--offwhite);
}
.slide-beige{
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.slide-beige::before{
    display: block;
    position: absolute;
    content: "";
    z-index: 200;
    inset: 0;
    background: var(--beige);
}
.slide-grey{
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.slide-grey::before{
    display: block;
    position: absolute;
    content: "";
    z-index: 200;
    inset: 0;
    background: var(--grey);
}
.scroll-down{
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.scroll-down::before{
    display: inline-block;
    position: absolute;
    content: "";
    z-index: 200;
    inset: 0;
    background: #fff;
}
/* sp-Base 
=====================================*/
html{
    min-width: 320px;
    font-size: 62.5%;
}
body{
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 2;
    font-family: 'fot-klee-pro', sans-serif;
    scroll-behavior: smooth;
}
img{
    width: 100%;
    height: auto;
}
:root{
    --offwhite: #f4f2ee;
    --beige: #dfd0b5;
    --grey: #e4dfd6;
    --brown: #57431e;
    --accent-color: #958360;
}
a:link,a:visited{
    text-decoration: none;
}
a{
    color: inherit;
}
li{
    list-style: none;
}
h1{   
    font-size: 2.4em;
    font-weight: 400;
}
h2{
    font-size: 1.6em;
}
h3{
    font-size: 1.4em;
}
h4{
    font-size: 1.3em;
}
.font-color-br{
    color: var(--brown);
}
.font-family-le{
    font-family: 'lemonde-sans','fot-klee-pro',sans-serif;
    letter-spacing: .1em;
    font-weight: 400;
}
.flex{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.l-container{
    max-width: 1920px;
    padding: 3em 1.5em;
    text-align: center;
    margin: 0 auto;
}
.l-title{
    margin: 1em 0;
}
.l-text-group{
    text-align: left;
    margin: 0 0 1em;
}
.l-text-left{
    text-align: left;
}
.l-center{
    display: inline-block;
    text-align: center;
}
.l-inner{
    margin: 1em;
}
.l-item-inner{
    margin: 1em 0;
}
.l-wide{
    max-width: 280px;
    margin: 0 auto;
}
.l-wrapper{
    position: relative;
    margin: 1em;
    padding: 2em 1em;
    background: var(--grey);
}
.l-wrapper::before{
    position: absolute;
    content: "";
    top: 10px;
    left: -12px;
    width: 45px;
    height: 2px;
    background: var(--accent-color);
    transform: rotate(-45deg);
}
.l-wrapper::after{
    position: absolute;
    content: "";
    bottom: 10px;
    right: -12px;
    width: 45px;
    height: 2px;
    background: var(--accent-color);
    transform: rotate(-45deg);
}
.contents-frame-inner .l-wrapper{
    margin: 1em auto;
}
.bg-white{
    background: #fff;
}
.bg-offwhite{
    background: var(--offwhite);
}
.circle-img{
    max-width: 142px;
    border-radius: 50%;
}
.landscape-img{
    position: relative;
    top: -2em;
    max-width: 280px;
}
.various-img{
    max-width: 50%;
}
.img-move{
    display: inline-block;
    will-change: transform,opacity;
    opacity: 0;
    max-width: 43%;
    margin: .5em;
}
.blur{
    position: relative;
    opacity: 0;
}
.img-caption{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 300;
    pointer-events: none;
    font-size: 1.6em;
    color: #fff;
}
.caption-box{
    position: relative;
    top: 1em;
    z-index: 100;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: #fff;
    opacity: .9;
}
.caption-box::before{
    position: absolute;
    content: "";
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: 90%;
    height: 92%;
    border: 2px solid var(--accent-color);
}
.caption-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/*  見出し（ページ先頭）*/
.title-head{
    display: inline-block;
    position: relative;
}
/* 見出し（ページ先頭）の下線 */
.title-head::after{
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    width: 100%;   
    border-bottom: 2px solid var(--accent-color); 
}
.title{
    display: inline-block;
    position: relative;
    margin: 2em 0 0;
}
.title::after{
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    width: 100%;   
    border-bottom: 2px solid var(--accent-color); 
}
.contents-frame{
    position: relative;
    margin: 2em 0 0 1em;
    padding: 2em 2em 3em;
    background: var(--grey);
    z-index: 100;
}
.contents-frame::before{
    position: absolute;
    content: "";
    bottom: 1em;
    right: 1em;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
}
.contents-frame-inner{
    margin: 0 1em 0 0;
}
/* 矢印の下線 */
.arrow-btn{
    display: inline-block;
    position: relative;
    margin: 1em auto;
    padding: 0em 2em .5em 1em;
    border-bottom: 2px solid var(--accent-color);
}
/* 矢印の先端 */
.arrow-btn::before{
    position: absolute;
    content: "";
    width: 15px;
    bottom: 4px;
    right: 0px;
    border-top: 2px solid var(--accent-color); 
    transform: rotate(45deg); /* 45度回転 */
}
.arrow-btn:hover{
    text-shadow: 0 1px 0 var(--accent-color);
    transform: translateX(10%);
    transition: .5s;
}
.arrow-btn::after{
    position: absolute;
    content: "";
    bottom: -0.5em;
    left: -0.5em;
    z-index: 100;
    width: 100%;
    border-bottom: 2px solid var(--beige);
    transform: scale(0,1);
    transform-origin: left;
    transition: .5s;
}
.arrow-btn:hover::after{
    transform: scale(1,1);
}
/* sp-Navigation 
=====================================*/
/* ナビボタン */
.btn-menu{
    position: fixed;
    top: 1em;
    left: 1em;
    width: 60px;
    height: 60px;
    z-index: 500;
    border-radius: 50%;
    border: 1px solid #000;
    cursor: pointer;
}
/* ナビボタン　(close時) */
.menu-bar{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scaleY(0.75) translate(-50%,1px);
    width: 20px;
    height: 2px;
    background: #000;
}
.menu-bar:nth-child(1){
    top: 19px;
    transition: .5s;
}
.menu-bar:nth-child(2){
    top: 28px;
    transition: .5s;
}
.menu-bar:nth-child(3){
    top: 38px;
    transition: .5s;
}
/* ナビボタン　(open時) */
.btn-menu.active span{
    background: #000;
    border-radius: 50%;
    border: 1px solid #000;
}
.btn-menu.active span:nth-child(1){
    top: 28px;
    left: 19px;
    transform: rotate(45deg);
    transition: .5s;
    background: #000;
}
.btn-menu.active span:nth-child(2){
    opacity: 0;
    transition: .5s;
}
.btn-menu.active span:nth-child(3){
    top: 28px;
    left: 19px;
    transform: rotate(-45deg);
    transition: .5s;
    background: #000;
}
/* メニュードロワー(初期値) */
.menu-panel{
    position: fixed;
    top: 0;
    left: -120%;
    z-index: 300;
    width: 50%;
    height: 100vh;
    letter-spacing: .2em;
    background: #fff;
    transition: .5s;
}
.menu-panel p{
    text-indent: -150%;
    overflow: hidden;
}
/* メニュードロワー(open時) */
.menu-panel.active{
    left: 0; /* 左からスライド */
}
.nav-list{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 500;
    width: 100%;
    text-align: center;
    transition: .5s;
}
.nav-list a{
    display: block;
    height: 70px;
    line-height: 70px;
    overflow: hidden;
}
.nav-list a:hover{
    color: #000;
    transition: .5s;
    transform: scale(1.2);
}
/* sp-Hero 
=====================================*/
.hero{
    position: relative;
    height: 80vh;
    color: #ffF;
    letter-spacing: .5em;
}
.hero-sub-title{
    position: absolute;
    top: 2em;
    right: 1em;
    writing-mode: vertical-rl;
    font-size: 2em;
    /* text-shadow: 1px 0 0 #000; */
}
.hero-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 4em;
    letter-spacing: .2em;
}
.logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 200px;
    height: 200px;
    background: url(images/logo.png) no-repeat center/cover;
}
/* 帯 */
.shop-name-wrapper{
    position: relative;
    height: 20vh;
    text-align: left;
    background: var(--grey);
    z-index: 200;
    color: var(--brown);
}
.shop-name{
    position: absolute;
    top: 50%;
    left: 2em;
    transform: translateY(-50%);
    line-height: 1.5;
    letter-spacing: .3em;
}
.logo-name{
    font-size: 2em;
    letter-spacing: .3em;
}
#home .hero{
    background: url(images/home-hero.webp) no-repeat center/cover;
}
#item .hero{
    background: url(images/item-hero.webp) no-repeat center/cover;
}
#lesson .hero{
    background: url(images/lesson-hero.webp) no-repeat center/cover;
}
#contact .hero{
    background: url(images/contact-hero.webp) no-repeat bottom/cover;
}
#pagetop{
    overflow: hidden;
}
.pagetop-icon{
    position: fixed;
    width: 60px;
    height: 60px;
    z-index: 700;
    border: 1px solid #000;
    bottom: 1em;
    right: 1em;
    border-radius: 50%;
    opacity: 0;
    cursor: pointer;
}
.pagetop-icon-text{
    position: absolute;
    left: 50%;
    bottom: 7px;
    transform: translateX(-50%);
    font-size: .8em;
    letter-spacing: .1em;
}
/* ページトップアイコン 矢印上部*/
.pagetop-icon::before{
    position: absolute;
    content: "";
    top: 14px;
    left: 22px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    border-right: transparent;
    border-bottom: transparent;
}
/* ページトップアイコン 矢印下部*/
.pagetop-icon::after{
    position: absolute;
    content: "";
    top: 14px;
    left: 29px;
    width: 30px;
    height: 16px;
    border-left: 2px solid #000;
}
/* sp-Footer
=====================================*/    
footer{
    position: relative;
    background: var(--accent-color);
}
.footer-inner{
    max-width: 1920px;
    padding: 3em 1.5em;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}
.footer-item{
    display: block;
    letter-spacing: .2em;
}
footer a:hover{
    color: #000;
    transition: .5s;
    transform: scale(1.2);
}
/* sp-Home-page - News
=====================================*/
.home-container{
    max-width: 1920px;
    padding: 3em 1.5em 0;
    text-align: center;
    margin: 0 auto;
}
.news{
    margin: 0 10%;
    padding: 3em 0 0;
    text-align: right;
}
.news-list{
    position: relative;
    text-align: left;
    padding: 0;
}
.news-list-text{
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 0 0 1em;
    padding: 1em;
}
.news-list-date{
    background: url(images/news-date-icon.svg) no-repeat center/cover;
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    padding: 1em;
    line-height: 1.4;
    text-align: center;
    color: #fff;
}
.news-list-date p{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-55%);
    line-height: 1.8;
    font-size: .8em;
    letter-spacing: .2em;
}
/* sp-Home-page - Slideshow
=====================================*/
/* slideshow ラッパー */
.slideshow-wrapper{
    display: flex;
    align-items: center;
    overflow: hidden; /* はみ出しを隠す */
}
/* slideshow ホバー時に動きを止める */
.slide-paused:hover .slideshow{
    animation-play-state: paused;
    transition: .5s;
}
.slideshow-item{
    width: 150px;
    height: 150px;
}
.slideshow-item:nth-child(1n){
    margin: 0 0 5em 0;
}
.slideshow-item:nth-child(2n){
    margin: 5em 0 0 0;
}
/* slideshow item 横並び*/
.slideshow{
    display: flex;
    margin: 2em 0;
    animation: loop-slide 20s infinite linear 1s both;
}
/* slideshow アニメーション(左にスライドする) */
@keyframes loop-slide{
    from{
        transform: translateX(0);
    }to{
        transform: translateX(-100%);
    }
}
/* slideshow-item--anime アニメーション(画像の動き) */
.slideshow-item--anime{
    animation: rotate-anime 1.5s infinite alternate-reverse ease-in-out;
}
@keyframes rotate-anime{
    from{
        transform: rotate(20deg);
    }to{
        transform: rotate(-20deg);
    }
}
/* sp-Home-page - Shop
=====================================*/    
.shop-area{
    padding: 3em 0 0;
}
/* 煙突 */
.chimney{
    position: relative;
    left: 10%;
    width: 20%;
    height: 60px;
    line-height: 60px;
    background: var(--beige);
}
.chimney::after{
    position: absolute;
    content: "";
    top: -1em;
    left: 50%;
    transform: translate(-50%,0em);
    width: 110%;
    height: 15px;
    background: var(--accent-color);
}
/* 屋根 */
.roof{
    position: relative;
    height: 200px;
    background: var(--beige);
    clip-path: polygon(5% 0, 95% 0, 100% 200px, 0% 200px);
}
.shop-title-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
address{
    display: inline-block;
    margin: 0 0 1em 0;
    padding: 1em;
    text-align: left;
    font-style: normal;  
    letter-spacing: .1em;
}
#home .calendar{
    margin: 0 auto 2em;
    padding: 0;
    font-size: 1em;
    border-spacing: .5em;
}
th,td{
    text-align: center;
}
.holiday{
    position: relative;
}
.holiday::after{
    position: absolute;
    content: "休";
    bottom: -2.5em;
    left: 50%;
    transform: translateX(-50%);
    width: 7em;
    font-size: .4em;
    color: rgb(255, 0, 0);
}
/* ■の配置　*/
.square-mark{
    display: inline-block;
    position: relative;
    margin: 0 0 0 1.5em;
}
/* ■ */
.square-mark::before{
    position: absolute;
    content: "";
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: var(--accent-color);
}
.lesson-day-bg{
    color: #fff;
    background: var(--accent-color);
}
.shop-area .various-img{
    max-width: 260px;
    box-sizing: border-box;
}
/* sp-Lineup-page
=====================================*/
/* item-name ナンバー */
.circle-num{
    display: inline-block;
    width: 3em;
    height: 3em;
    line-height: 3;
    vertical-align: middle;
    font-size: 1.2em;
    color: #fff;
    background: var(--accent-color);
    border-radius: 50%;
}
.item-name{
    display: inline-block;
    vertical-align: middle;
}
.item-price{
    font-size: 1.2em;
}
/* sp-Lesson-page
=====================================*/
#lesson .scroll-down{
    width: 100%;
}
.guide-area{
    margin: .5em;
    padding: 1em;
    background: var(--grey);
}
.white-box{
    padding: 1em;
    border: 2px solid var(--accent-color);
}
.white-box-wrapper{
    width: 100%;
    height: 100%;
    margin: 1em 0;
    padding: 1em;
    background: #fff;    
}
.lesson-name-in{
    position: relative;
    display: inline-block;
    line-height: 1.5;
    padding: 1em 0;
}
.lesson-name-in::before{
    position: absolute;
    content: "";
    top: 50%;
    left: -1em;
    width: 2px;
    height: 1.7em;
    background: var(--accent-color);
    transform: translateY(-50%) rotate(-25deg);
}
.lesson-name-in::after{
    position: absolute;
    content: "";
    top: 50%;
    right: -1em;
    width: 2px;
    height: 1.7em;
    background: var(--accent-color);
    transform: translateY(-50%) rotate(25deg);
}
.lesson-name-out{
    position: relative;
    display: inline-block;
}
.lesson-name-out::before{
    position: absolute;
    content: "";
    bottom: 28%;
    left: -1.5em;
    width: 2px;
    height: 1em;
    background: var(--accent-color);
    transform: rotate(-40deg);
}
.lesson-name-out::after{
    position: absolute;
    content: "";
    bottom: 28%;
    right: -1.5em;
    width: 2px;
    height: 1em;
    background: var(--accent-color);
    transform: rotate(40deg);
}
.guide-inner{
    margin: 0 auto;
    border-spacing: 1em;
}
.calendar{
    padding: 1em;
    margin: 0 auto;
    border-spacing: 1em;
}
/* カレンダーフレーム */
.frame{
    position: relative;
    width: 100%;
    height: 100%;
    margin: 3em 0;
    padding: 2em 0;
    background: #fff;
}
.frame::before{
    position: absolute;
    content: "";
    top: -1.2em;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-right: transparent;
    border-bottom: transparent;
    transform: translateX(-50%) rotate(45deg);
}
/* sp-Contact-page
=====================================*/
.text-link{
    display: inline-block;
    position: relative;
    margin: 0 0 .5em 0;
    padding: 0 .2em .3em 0;
    border-bottom: 2px solid var(--accent-color);
}
.text-link::after{
    position: absolute;
    content: "";
    bottom: -0.5em;
    left: 0;
    width: 100%;
    border-bottom: 2px solid var(--beige);
    transform: scale(0,1);
    transform-origin: left;
    transition: .5s;    
}
.text-link:hover{
    transform: translate(2px,0);
    text-shadow: 0 1px 0 var(--accent-color);
    transition: .5s;
}
.text-link:hover::after{
    transform: scale(1,1);
}
.form-inner{
    margin: 3em auto 0;
}
.form-inputbox{
    margin: 2em 0;
    text-align: left;
}
.label-box{
    display: inline-block;
}
.select-box{
    position: relative;
}
.select-box::after{
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1em;
    content: '\f107';
    font-family: "FontAwesome";
    color: #666;
}
input[type="text"],select,textarea{
    width: 100%;
    padding: 1em;
    background: #fff;
}
/* 必須テキスト */
.required-mark{
    display: inline-block;
    color:rgb(255, 0, 0);
}
/* エラーテキスト */
.error{
    display: block;
    color:rgb(255, 0, 0);
}
.agreed-box{
    display: inline-block;
    padding: 1em 0;
}
#check{
    display: inline-block;
    margin: 0 1em 0 0;
}
/****************************************************************************/
@media screen and ( min-width : 600px ){
/* tab-Loading 
=====================================*/
.loading-box{
    width: 250px;
    height: 250px;
}
.loading-item--on{
    width: 40px;
}
.loading-item--under{
    width: 40px;
}
/* tab-Base 
=====================================*/
body{
    font-size: 14px;
    font-size: 1.4rem;
}
.circle-img{
    max-width: 200px;
}
.landscape-img{
    max-width: 340px;
}   
.various-img{
    max-width: 300px;
}
.caption-box{
    width: 115px;
    height: 115px;
}
.l-item-inner{
    margin: 1em;
}
.img-move{
    max-width: 20%;
    margin: 1em;
}
.l-wrapper{
    height: 96%;
}
.l-wide{
    max-width: 340px;
    margin: 0;
}
.contents-frame-inner .l-wrapper{
    margin: 0;
}
.flex-spaceCenter{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.flex-centerCenter{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.flex-spaceStart{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: stretch;
    height: 100%;        
}
.flex-item-centerStart{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    height: 100%;        
}
/* tab-Navigation 
=====================================*/
.menu-panel{
    width: 30%;
}
.footer-item{
    width: 30%;
}
/* footer-area 要素並び順変更 */
.footer-contents--first{
    order: 1;
}
.footer-contents--second{
    order: 3;
}
.footer-contents--third{
    order: 2;
}
/* tab-Home-page - Shop
=====================================*/
.chimney{
    width: 12%;
}
/* shop-area 要素並び順変更 */
.shop-contents--first{
    order: 1;
    margin: 1em;
    width: 30%;
}
.shop-contents--second{
    order: 3;
    margin: 1em;
    width: 30%;
}
.shop-contents--third{
    order: 2;
    margin: 1em;
    width: 30%;
}
/* tab-Lineup-page
=====================================*/    
.scroll-down{
    width: 45%;
}
.item-area .flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
}
/* tab-Lesson-page
=====================================*/
.white-box-wrapper{
    width: 60%;
}
.frame{
    width: 30%;
}
.calendar{
    font-size: .6em;
    border-spacing: .5em;
}
.monthly{
    font-size: 1.5em;
}
/* tab-Contact-page
=====================================*/
.form-inputbox{
    margin: 2em 10%;
}
.label-box{
    width: 30%;
    vertical-align: top;
}
.select-box::after{
    top: 1em;
}    
input[type="text"],select,textarea{
    width: 68%;
}
.agreed-box-wrapper{
    width: 50%;
}
.error{
    padding: 0 1em 0 0;
}
}
/****************************************************************************/
@media screen and ( min-width : 1025px ){
/* pc-Base
=====================================*/
body{
    font-size: 16px;
    font-size: 1.6rem;
}
#wrapper{
    margin: 0 0 0 20%;
}
.l-inner{
    margin: 1em;
    padding: 1em;
}
.circle-img{
    max-width: 300px;
}
.landscape-img{
    max-width: 400px;
}
.l-wide{
    max-width: 400px;
}
.caption-box{
    width: 130px;
    height: 130px;    
}
/* pc-Navigation 
=====================================*/
.btn-menu{
    display: none;
}
.menu-panel{
    width: 20%;
    left: 0;
}
.news-wrapper{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.news{
    width: 40%;
    margin: 0 5%;
}
/* pc-Home-page - Slideshow
=====================================*/
.slideshow-item{
    width: 200px;
    height: 200px;
}
/* pc-Home-page - Shop
=====================================*/    
.roof{
    height: 240px;
    clip-path: polygon(4% 0, 96% 0, 100% 240px, 0% 240px);
}
/* pc-Lineup-page
=====================================*/    
.scroll-down{
    width: 33%;
}
/* pc-Lessonpage
=====================================*/    
.guide-inner{
    border-spacing: 2em 1em;
}
.calendar{
    border-spacing: 1em;
}
}
