@charset "UTF-8";
/* CSS Document */

.sp{
    display: none;
}

.pc{
    display: inherit;
}

/*動き*/
.fadein-element {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

.fadein-element2 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

.fadein-element-is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    left: 0;
    right: 0;
}

/*
.fadein-element2 {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
*/


body{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    letter-spacing: 0.09em;
    line-height: 1.9;
    color: #393939;
    font-size: 15px;
    background: #fff;
    word-break: break-all;
}

.serif,
.course-title,
.min-title,
#course .contents #slider .slider-item ul:last-child .title{
    font-family: "NotoSerif", serif;
}

.serif-italic{
    font-family: "NotoSerif", serif;
    font-style: italic;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.fw-r{
    font-weight: 300;
}

.fw-n{
    font-weight: 400;
}

.fw-b{
    font-weight: 600;
}

a:hover,
#course .contents .course-btn:hover,
#course .contents #slider .slider-item ul:last-child .btn:hover,
.page-box-100 .shop-list ul li:last-child:hover,
.hamburger:hover{
    opacity: 0.7;
}

.page-box-100 .shop-list ul li:last-child a:hover{
    opacity: 1;
}

img{
    width: 100%;
}

/*------top------*/
/*header*/

header {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255,255,255,0.9);
    color: #5A413A;
    box-shadow: 0 2px 9px rgba(0,0,0,0.1)
}

.header-inner {
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
}

h1 {
    z-index: 9;
    font-family: "Noto Serif", serif;
    font-weight: 300;
    font-size: 30px;
    letter-spacing: 0;
}

nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #5A413A;
    transition: ease .4s;
    z-index: 999;
}

.nav-item-box {
    padding-top: 200px;
    width: 80%;
    margin: 0 auto;
}

.nav-item {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    border-bottom: 1px dashed #fff;
    line-height: 50px;
    font-size: 14px;
}

.nav-item a {
    color: #FFFFFF;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    
}

.nav-item:last-child a {
    margin-bottom: 0;
}

.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
    cursor: pointer;
    background: #5A413A;
    width: 80px;
    height: 100%;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    position: relative;
    transition: ease .4s;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    margin: 7px 0;
}

.hamburger span:nth-child(3) {
    top: 0;
}

nav.active {
    transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
    width: 30px;
    left:30%;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: -11px;
    transform: rotate(-45deg);
    width: 30px;
    left:30%;
}

#header-menu{
    display: flex;
    font-size: 14px;
    position: absolute;
    right: 100px;
}

/*
#header-menu li:last-child{
    margin-left: 30px; 
}
*/

#header-menu li{
    margin-left: 15px; 
}

/*mv*/
#mv{
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.item{
    width: 100%;
    height: 100vh;
    opacity: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 20s 0s infinite;
    animation: anime 20s 0s infinite;
}

.item:nth-of-type(2) {
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
    z-index: 9;
    position: relative;
}

@keyframes anime {
    0% {
        opacity: 0;
    }
    20%{
        opacity: 1;
    }
    50% {
        opacity: 1;
        z-index: 9;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes anime {
    0% {
        opacity: 0;
    }
    20%{
        opacity: 1;
    }
    50% {
        opacity: 1;
        z-index: 9;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*latest-news*/
.latest-news{
    max-width: 550px;
    width: 100%;
    position: absolute;
    z-index: 10;
    bottom: 30px;
    right: 0;
    background: rgba(255,255,255,0.8);
    box-shadow: -2px 2px 10px rgba(0,0,0,0.3);
    padding: 25px 30px;
}

.latest-news ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.latest-news ul li:first-child{
    font-size: 18px;
    line-height: 1.2;
    color: #5A413A;
    border-right: 1px solid #59413B;
    width: 21%;
}

.latest-news ul li:last-child{
    line-height: normal;
    margin-left: 20px;
    width: 100%;
    letter-spacing: 0;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.latest-news ul li:last-child span{
    display: block;
    margin-bottom: 3px;
}

/*about*/
#about{
    background: url('img/about_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    padding: 100px 0;
}

#about .contents{
    max-width: 900px;
    width: 86.67%;
    margin: 0 auto;
    background: rgba(255,255,255,0.8);
    padding: 50px 0;
}

#about .contents h2{
    max-width: 260px;
    width: 90%;
    margin: auto auto 40px auto;
}

#about .contents p:first-of-type{
    color: #5A413A;
    font-size: 23px;
    margin-bottom: 35px;
    line-height: normal;
}

/*advantages*/
#advantages{
    background: url('img/advantages_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    padding: 100px 0;
}

#advantages .contents{
    max-width: 1050px;
    width: 86.67%;
    margin: 0 auto;
}

#advantages .contents h2{
    max-width: 370px;
    width: 90%;
    margin: auto auto 30px auto;
}

#advantages .contents .h2-text{
    margin: auto auto 60px auto;
    width: 90%;
    color: #5A413A;
    font-size: 105%;
}

#advantages .contents div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#advantages .contents div ul{
    width: 47.62%;
    background: rgba(255,255,255,0.7);
    padding: 20px 15px 0 15px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#advantages .contents div ul:nth-child(3),
#advantages .contents div ul:last-child{
    margin-bottom: 0;
}

#advantages .contents div ul li .point{
/*    padding: 10px 1em;*/
    line-height: normal;
    color: #fff;
    font-size: 25px;
    
    background: #5A413A;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#advantages .contents div ul li.img{
    position: relative;
}

#advantages .contents div ul li.title{
    padding: 40px 0 15px 0;
    line-height: normal;
    color: #5A413A;
    font-size: 25px;
    border-bottom: 1px dashed #5A413A;
    margin-bottom: 20px;
}

#advantages .contents div ul li.text{
    text-align: left;
    padding-bottom: 20px;
    width: 90%;
    margin: 0 auto;
    color: #5A413A;
}

#advantages .contents div ul li.text .min{
    font-size: 85%;
    display: block;
    margin-top: 0.3em;
}

#advantages .contents div ul li.text .check-img{
    width: 1em;
    vertical-align: middle;
    margin-right: 0.5em;
    padding-bottom: 0.2em;
}

/*
#advantages .contents div ul::before{
    content: '';
    display: block;
    position: absolute;
    left: -15px;
    top: 60%;
     max-width: 227px; 
    width: 50%;
    height: 96px;
}
*/

/*
#advantages .contents div ul:first-child::before{
    background: url('img/advantages_point1.png');
    background-size: contain;
    background-repeat: no-repeat;
}

#advantages .contents div ul:nth-child(2)::before{
    background: url('img/advantages_point2.png');
    background-size: contain;
    background-repeat: no-repeat;
}

#advantages .contents div ul:nth-child(3)::before{
    background: url('img/advantages_point3.png');
    background-size: contain;
    background-repeat: no-repeat;
}

#advantages .contents div ul:last-child::before{
    background: url('img/advantages_point4.png');
    background-size: contain;
    background-repeat: no-repeat;
}
*/

/*advantages*/
#course{
    background: url('img/course_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    padding: 100px 0;
}

#course .contents{
    margin: 0 auto;
}

#course .contents h2{
    max-width: 290px;
    width: 90%;
    margin: auto auto 60px auto;
}

#course .contents #slider{
/*    margin-left: -30px;*/
} 


#course .contents #slider .slider-item{
    max-width: 1050px;
    width: 86.67%;
/*    width: 1050px;*/
    border: 1px solid #A38B7A;
    background: rgba(255,255,255,0.7);
    display: flex;
    padding: 40px 50px;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    
        margin: 0 30px 0 0;
    position: relative;
}

#course .contents #slider .slider-item ul:first-child{
    width: 63.3%;
    margin-right: 5.5%;
}

#course .contents #slider .slider-item ul:last-child{
    width: 83.8%;
}

#course .contents #slider .slider-item ul:last-child .title{
    width: 100%;
    font-size: 20px;
    color: #5A413A;
    text-align: center;
    border-bottom: 1px solid #5A413A;
    margin-bottom: 20px;
    padding-bottom: 5px;
    line-height: normal;
    font-weight: 600;
}

#course .contents #slider .slider-item ul:last-child .text{
    margin-bottom: 20px;
}

#course .contents #slider .slider-item ul:last-child .list{
    border-bottom: 1px dashed #5A413A;
    padding-bottom: 10px;
    margin-bottom: 10px;
    line-height: normal;
    display: flex;
}

#course .contents #slider .slider-item ul:last-child .list span:first-child{
    width: 30%;
    display: inline-block;
}

#course .contents #slider .slider-item ul:last-child .list span:last-child{
    width: 70%;
    display: inline-block;
}

#course .contents #slider .slider-item ul:last-child .comment{
    background: #393939;
    color: #fff;
    text-align: center;
    padding: 0.3em;
    margin: 0.5em 0 1em 0;
    font-size: 90%;
}

#course .contents #slider .slider-item ul:last-child .comment.mb-1{
    margin-top: 1.5em;
}

#course .contents #slider .slider-item .comment-min{
    font-size: 85%;
    line-height: 1.4;
    display: block;
    margin-top: 0.3em;
}

#course .contents #slider .slider-item .red{
    color: red;
}

#course .contents #slider .slider-item ul:last-child .btn{
    max-width: 200px;
    width: 100%;
    border: 1px solid #393939;
    font-size: 12px;
    text-align: center;
    margin: 30px auto auto auto;
    position: relative;
    background: #fff;
}

#course .contents #slider .slider-item ul:last-child .btn.mt_10{
    margin: 10px auto auto auto;
}


#course .contents #slider .slider-item ul:last-child .btn a{
    width: 100%;
    height: 100%;
    display: block;
    padding: 9px 1em;
}

#course .contents #slider .slider-item ul:last-child .btn a::after{
    content: '';
    background: url('img/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: block;
}

.swiper-button-prev{
    width: 57px;
    z-index: 8;
    top: 50%;
    left: 24.5vw;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    position: absolute;
    cursor: pointer;
}

.swiper-button-next{
    width: 57px;
    z-index: 8;
    top: 50%;
    right: 24.5vw;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    position: absolute;
    cursor: pointer;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    opacity: 0.7;
}

.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

#course .contents .course-btn{
    max-width: 250px;
    width: 100%;
    border: 1px solid #393939;
    font-size: 15px;
    text-align: center;
    margin: 60px auto auto auto;
    position: relative;
    background: #fff;
}

#course .contents .course-btn a{
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px 1em;
}

#course .contents .course-btn a::after{
    content: '';
    background: url('img/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: block;
}

/*accordion*/
#course .contents .toggle {
	display: none;
}
#course .contents .label {
	display: block;
    position: relative;
    line-height: 1.5;
}
#course .contents .label::before{
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
#course .contents .label,
#course .contents .accordion-content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
#course .contents .accordion-content {
	height: 0;
	overflow: hidden;
}
#course .contents .toggle:checked + .label + .accordion-content {
	height: auto;
	transition: all .3s;
    padding-bottom: 1em;
}
#course .contents .toggle:checked + .label::before {
	transform: rotate(-45deg) !important;
}

/*news*/
#news{
    background: #fff;
    text-align: center;
    width: 100%;
    padding: 100px 0;
}

#news .contents{
    max-width: 1170px;
    width: 86.67%;
    margin: 0 auto;
}

#news .contents h2{
    max-width: 246px;
    width: 90%;
    margin: auto auto 60px auto;
}

#news .contents div ul{
    border-bottom: 1px dashed #59413B;
    text-align: left;
}

#news .contents div ul a{
    display: flex;
    flex-wrap: nowrap;
    line-height: 50px;
}

#news .contents div ul .oswald{
    font-size: 15px;
    letter-spacing: 0.1em;
    width: 7.1em;
}

#news .contents div ul .category{
    font-size: 14px;
    left: 0.014em;
    width: 11.8%;
}

#news .contents div ul .title{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    width: 80%;
}

#news .contents .news-btn{
    font-size: 15px;
    text-align: right;
    margin-top: 35px;
    width: auto;
    display: block;
}

#news .contents .news-btn a{
    border-bottom: 1px solid #393939;
    padding-bottom: 5px;
}

#news .contents .news-btn a::after{
    content: '';
    background: url('img/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    margin-left: 15px;
    padding-bottom: 10px;
    display: inline-block;
}

/*insta*/
#insta{
    background: #F4F1F0;
    text-align: center;
    width: 100%;
    padding: 100px 0;
}

#insta .contents{
    max-width: 1170px;
    width: 86.67%;
    margin: 0 auto;
}

#insta .contents h2{
    max-width: 202px;
    width: 90%;
    margin: auto auto 60px auto;
}

#insta .contents p.text{
    margin-bottom: 1.5em;
}

.takahash-category-filter .btn {
    margin-bottom: 5px;
}

.tns-item,
.tns-item:hover{
    opacity: 1;
}

/*access*/
#access{
    background: url('img/access_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    padding: 100px 0 60px 0;
}

#access .contents{
    max-width: 1275px;
    width: 86.67%;
    margin: 0 auto;
}

#access .contents div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#access .contents div ul:first-child {
    width: 100%;
    max-width: 700px;
}

#access .contents div ul:first-child li iframe{
    height: 330px;
}

#access .contents div ul:last-child{
    width: 70%;
    text-align: left;
    padding-left: 50px;
}

#access .contents div ul:last-child p{
    text-align: center;
    color: #5A413A;
    font-size: 23px;
    margin-bottom: 30px;
}

#access .contents div ul:last-child li{
    width: 100%;
    border-bottom: 1px dashed #59413B;
/*    line-height: 50px;*/
    margin-top: 25px;
    padding-bottom: 5px;
    
    display: flex;
}

#access .contents div ul:last-child li span:first-child {
    width: 31.2%;
    display: inline-block;
}

#access .contents .banner {
    max-width: 900px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 100px auto auto auto;
}

#access .contents .banner li{
    width: 44.5%;
}

/*footer*/
footer{
    background: #5A413A;
    width: 100%;
    padding: 45px 0 20px 0;
/*    padding: 10px 0;*/
    color: #fff;
}

footer .contents{
    max-width: 975px;
    width: 86.67%;
    margin: 0 auto;
}

footer .contents div{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

footer .contents div ul:first-child{
    max-width: 180px;
    width: 30%;
}

footer .contents div ul:first-child span{
    font-size: 25px;
    margin: 0 0.2em 0 0;
}

footer .contents div ul:last-child ol{
    display: flex;
    flex-wrap: wrap;
}

footer .contents div ul:last-child ol li{
    width: auto;
}

footer .contents div ul:last-child ol li:first-child{
    margin-right: 50px;
}

footer .contents div ul:last-child ol li a{
    display: block;
    width: 100%;
    margin-bottom: 20px;
    line-height: normal;
}

footer .contents p{
    font-size: 12px;
    text-align: center;
    margin-top: 100px;
}

footer .contents div ul:last-child .sns {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding-top: 20px;
    padding-bottom: 10px;
    font-weight: 500;
}

footer .contents div ul:last-child .sns span:first-child {
    width: 100%;
    font-size: 120%;
}

footer .contents div ul:last-child .sns span:last-child {
    display: flex;
    width: 100%;
    font-size: 45px;
    justify-content: center;
}

footer .contents div ul:last-child .sns span:last-child a {
    width: auto;
    margin: 0 10px;
}




/*------page------*/
.page-title{
    text-align: center;
    color: #fff;
    font-size: 23px;
    padding-top: 150px;
    letter-spacing: 0.06em;
}

.page-box{
    max-width: 1170px;
    width: 86.67%;
    background: #fff;
    margin: -230px auto auto auto;
    padding: 50px;
}

.page-box-100{
    width: 100%;
}

.page-box-100.bg-w{
    background: #fff;
}

.page-box-100.bg-g{
    background: #EEEEEE;
}

.min-title{
    background: #5A413A;
    text-align: center;
    color: #fff;
    padding: 15px 0.5em 15px 0.5em;
    width: 100%;
    font-size: 17px;
    margin-bottom: 30px;
}


/*------blog------*/
#blog-bg{
    background: url('img/blog_title_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    height: 480px;
}

#blog{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog-l{
    width: 70%;
}

.blog-r{
    width: 25%;
    text-align: center;
}

.blog-l .blog-l-list{
    border-bottom: 2px solid #5A413A;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.blog-l .blog-l-list:first-child{
    padding-top: 0;
}

.blog-l .blog-l-list ul:first-child li{
    height: 125px;
    width: 187px;
    margin-top: 8px;
    margin-right: 10px;
}

.blog-l .blog-l-list ul:first-child li img{
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-l .blog-l-list ul:last-child{
    width: 70%;
}

.blog-l .blog-l-list ul:last-child .oswald{
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
    margin-right: 1em;
}

.blog-l .blog-l-list ul:last-child .category{
    background: #5A413A;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    padding: 2px 1em 4px 1em;
    vertical-align: middle;
    letter-spacing: 0.08em;
    line-height: normal;
}

.blog-l .blog-l-list ul:last-child .title{
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px dashed #5A413A;
    padding-bottom: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.blog-l .blog-l-list ul:last-child .link{
    text-align: right;
    font-size: 13px;
}

.blog-r ul li{
    border-bottom: 1px solid #ccc;
    padding: 0.5em 0;
}

.blog-r ul li:first-child{
    background: #ccc;
    padding: 10px 0.5em;
    border-bottom: none;
}

.blog-r ul:first-child{
    margin-bottom: 50px;
}

.blog-r ul a{
    font-size: 14px;
}

/*pagenavi*/
.wp-pagenavi{
    text-align: center;
    margin: 20px auto;
}

.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #BFBFBF;
    padding: 3px 5px;
    margin: 2px;
}

.wp-pagenavi .pages{
    display: none;
}

.wp-pagenavi .current{
    background: #5A413A;
    color: #fff;
}

/*------archive/category------*/
.archive-title{
    width: 70%;
    font-size: 17px;
    margin-bottom: 10px;
    border-left: 5px solid #5A413A;
    padding-left: 8px;
    line-height: normal;
    color: #5A413A;
}

/*------single------*/
.blog-l .blog-single .oswald{
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
    margin-right: 1em;
}

.blog-l .blog-single .category{
    background: #5A413A;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    padding: 2px 1em 4px 1em;
    vertical-align: middle;
    letter-spacing: 0.08em;
    line-height: normal;
}

.blog-l .blog-single .title{
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px dashed #5A413A;
    padding-bottom: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.blog-l .blog-single .text{
    border-bottom: 1px solid #5A413A;
    padding-bottom: 50px;
}

.blog-l .blog-single .text img{
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 1em 0;
}

.b-n{
    text-align: center;
    margin-top: 50px;
}

/*------faq------*/
#faq-bg{
    background: url('img/blog_title_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    height: 480px;
}

.faq-box ul li:first-child{
    font-size: 18px;
    color: #5A413A;
    font-weight: 600;
    margin: 2em auto 0.7em auto;
    text-indent: -1.9em;
    margin-left: 1.9em;
}

.faq-box ul:first-of-type li:first-child{
    margin: 0 auto 0.7em 1.9em;
}

.faq-box ul li:last-child{
    background: #eee;
    padding: 15px 25px 15px 50px;
}

.faq-box ul li:first-child .serif{
    font-size: 130%;
    font-weight: 600;
    margin-right: 0.3em;
}

.faq-box ul li:last-child .serif{
    color: #BC0000;
    font-size: 130%;
    font-weight: 600;
    margin-right: 0.3em;
    margin-left: -1.45em;
}

/*------company------*/
#company-bg{
    background: url('img/blog_title_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    height: 480px;
}

.company-set{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-set .company-l{
    width: 40%;
}

.company-set .company-r{
    width: 55%;
}

.company-set .company-r li{
    border-bottom: 1px dashed #5A413A;
    padding-bottom: 5px;
    margin-top: 10px;
    
    display: flex;
    justify-content: space-between;
}

.company-set .company-r li:first-child{
    margin-top: 0;
}

.company-set .company-r li span:first-child{
    width: 25%;
}

.company-set .company-r li span:last-child{
    width: 70%;
}

.company-set .company-r li a{
    text-decoration: underline;
    padding: 0 0.3em;
}

.page-box-100 .company-point{
/*    max-width: 750px;*/
/*    width: 80%;*/
    max-width: 1150px;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 50px;
    text-align: center;
}

.page-box-100 .company-point ul{
    display: inline-block;
}

.page-box-100 .company-point ul li{
    text-align: left;
    border-bottom: 1px dashed #5A413A;
    padding: 0 0 10px 0;
    margin-top: 10px;
}

.page-box-100 .company-point ul li span{
/*    margin-right: 10px;*/
    font-size: 120%;
    display: block;
}

.page-box-100 .company-set{
    max-width: 1150px;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.page-box-100 .company-set.access .company-r li:first-child{
    font-size: 25px;
    color: #5A413A;
    display: block;
    text-align: center;
}

.page-box-100 .company-set.access .company-l li:first-child iframe {
    height: 350px;
}

.page-box-100 .shop-list{
    max-width: 1150px;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.page-box-100 .shop-list ul{
    width: 31%;
    margin-bottom: 30px;
}

.page-box-100 .shop-list ul:last-child{
    margin-bottom: 0;
}

.page-box-100 .shop-list ul li{
    border-bottom: 1px dashed #5A413A;
    padding-bottom: 5px;
    margin-top: 10px;
    
    display: flex;
    justify-content: space-between;
}

.page-box-100 .shop-list ul li:first-child,
.page-box-100 .shop-list ul li:last-child{
    border-bottom: none;
    text-align: center;
    display: block;
    width: 100%;
}

.page-box-100 .shop-list ul li:nth-child(2){
    text-align: center;
    display: block;
    width: 100%;
}

.page-box-100 .shop-list ul li span:first-child{
    width: 20%;
}

.page-box-100 .shop-list ul li span:last-child{
    width: 79%;
}

.page-box-100 .shop-list ul li:last-child{
    color: #fff;
    background: #971d44;
    border-radius: 45px;
    margin: 15px auto auto auto;
    width: 85%;
}

.page-box-100 .shop-list ul li:last-child a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 0.5em 3px 0.5em;
}

/*------teacher------*/
#teacher-bg{
    background: url('img/blog_title_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    height: 480px;
}

.teacher_border{
   border-bottom: 1px solid #ccc;
    display: block;
    padding-top: 20px;
}

/*
.teacher-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.teacher-box ul{
    width: 32%;
    margin-bottom: 40px;
}

.teacher-box ul.mb-0{
    margin-bottom: 0;
}

.teacher-box ul li:nth-child(2){
    font-size: 120%;
    font-weight: 600;
    color: #5A413A;
    text-align: center;
    border-bottom: 1px dashed #5A413A;
    padding-bottom: 5px;
    margin-top: 10px;
}
*/

.teacher-box div{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.teacher-box div:last-child{
    margin-bottom: 0;
}

.teacher-box div ul:first-child{
    width: 35%;
}

.teacher-box div ul:nth-child(2){
    width: 60%;
}

.teacher-box div ul:nth-child(2) li:first-child{
    font-size: 120%;
    font-weight: 600;
    color: #5A413A;
    text-align: left;
    border-bottom: 1px dashed #5A413A;
    padding-bottom: 3px;
    margin-bottom: 5px;
}

.teacher-box div ul:nth-child(2) li:first-child span{
    font-size: 80%;
}

/*------course-page------*/
#course-bg{
    background: url('img/blog_title_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    height: 480px;
}

.course-menu{
    border-top: 3px solid #5A413A;
    padding: 20px 0;
    margin-bottom: 30px;
}

.course-menu:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
}

/*
.course-scroll{
    margin-top: -200px;
    padding-top: 200px;
}
*/

.course-menu .course-title{
    font-size: 140%;
    font-weight: 600;
    margin-bottom: 20px;
    color: #5A413A;
    line-height: 1.5;
}

.course-menu .course-menu-detail{
    display: flex;
    justify-content: space-between;
/*    flex-wrap: wrap;*/
}

.course-menu .course-menu-detail ul:first-child{
    width: 35%;
}

.course-menu .course-menu-detail ul:last-child{
    width: 60%;
}

.course-menu .course-menu-detail ul:last-child li{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #5A413A;
    padding-bottom: 15px;
    margin-top: 15px;
    
    flex-wrap: wrap;
}

.course-menu .course-menu-detail ul:last-child li.course-menu-bg {
    background: #393939;
    color: #fff;
    padding: 5px;
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-top: 0px;
}

.course-menu .course-menu-detail ul:last-child li:first-child{
    margin-top: 0;
}

.course-menu .course-menu-detail ul:last-child li span:first-child{
    width: 20%;
}

.course-menu .course-menu-detail ul:last-child li span:last-child{
    width: 75%;
}

.course-menu .course-menu-detail ul:last-child li:first-child{
    display: block;
    width: 100%;
}

.course-menu .course-menu-detail ul:last-child li span.red{
    color: red;
    display: block;
    width: 100%;
}

.course-menu .course-menu-detail .border-none{
    border: none!important;
}

.course-menu .course-menu-detail .min{
    font-size: 90%;
    margin-bottom: 5px;
}

.course-menu .curriculum{
    background: #EEEEEE;
    margin: 30px auto;
    padding: 20px 20px 10px 20px;
}

.course-menu .curriculum p{
    border-bottom: 1px solid #5A413A;
    font-size: 110%;
    font-weight: 600;
    padding-bottom: 3px;
    margin-bottom: 10px;
    color: #5A413A;
}

.course-menu .curriculum p:nth-child(n+3){
    margin-top: 1em;
}

.course-menu .curriculum ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.course-menu .curriculum ul::after{
    content:"";
    display: block;
    width: 29.9%;
    padding-right: 2%;
    margin-left: 1.2em;
}

.course-menu .curriculum ul li{
    width: 29.9%;
    vertical-align: top;
    padding-right: 2%;
    text-indent: -1.2em;
    margin-left: 1.2em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.course-menu .curriculum ul li::before{
    content: '●';
    color: #5A413A;
    padding-right: 0.1em;
}

.course-menu .curriculum ul:nth-child(n+2){
    display: block;
}

.course-menu .curriculum ul:nth-child(n+2) li{
    width: auto;
}

.course-menu .curriculum ul.flex li{
    width: 29.9%;
    vertical-align: top;
    padding-right: 2%;
    text-indent: -1.2em;
    margin-left: 1.2em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.course-menu .curriculum ul.flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/*------request/inquiry = form------*/
#request-bg{
    background: url('img/blog_title_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    height: 480px;
}

#inquiry-bg{
    background: url('img/blog_title_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    height: 480px;
}

.form-box .text{
    margin-bottom: 20px;
    text-align: center;
}

.form-box .text span{
    text-align: left;
    display: inline-block;
}

.inquiry_btn {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.inquiry_btn a {
    max-width: 250px;
    width: 100%;
    margin: 10px;
    display: inline-block;
}

.form-box table{    
    width: 100%;
    font-size: 14px;
}

.form-box table th {
    text-align: left;
    padding-right: 5px;
    width: 25%;
    background: #f7f7f7;
    border: solid 1px #d7d7d7;
    
    padding: 15px;
    font-weight: 400;
}

.form-box table td {
    border: solid 1px #d7d7d7;
    padding: 15px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    border: 1px solid #ddd;
    font-size: 100%;
    padding: 8px;
}

.form-box table .haveto{
    background: #7E5555;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    margin-right: 5px;
}

.form-box table .any{
    background: #B09797;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    margin-right: 5px;
}

.form-box .form-text{
    text-align: center;
    font-size: 16px;
    margin: 10px auto 20px auto;
}

.form-box .form-text span {
    vertical-align: bottom;
    margin-left: 0.5em;
}

.form-box #formbtn{
    background: #5A413A;
    padding: 20px 5px;
    margin: 0 auto;
    display: block;
    max-width: 450px;
    width: 100%;
    text-align: center;
    color: #fff;
}

#form-page .policy{
    margin-top: 50px;
}

#form-page .policy p{
    border-bottom: 1px dashed #5A413A;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.screen-reader-response{
    display: none;
}

.wpcf7-not-valid-tip{
    font-size: 12px;
    color: red;
}

.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output {
    display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    text-align: center;
    margin-top: 10px;
}
.wpcf7 form .wpcf7-response-output {
/*    margin: 2em 0.5em 1em;*/
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
    text-align: center;
} 

.wpcf7-submit:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.wpcf7 form .wpcf7-response-output{
    margin-top: 10px;
}

#autozip{
    display: none!important;
}

/*------voice------*/
#voice-bg{
    background: url('img/blog_title_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    height: 480px;
}

.voice-box div{
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #5A413A;
    padding-bottom: 30px;
}

.voice-box div:last-child{
    margin-bottom: 0;
}

.voice-box ul.mb-0{
    margin-bottom: 0;
}

.voice-box ul:first-child{
    width: 35%;
}

.voice-box ul:last-child{
    width: 60%;
}

.voice-box ul:last-child .title{
    font-size: 130%;
    border-bottom: 1px dashed #5A413A;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.voice-box ul:last-child .course{
    background: #eee;
    padding: 10px 20px;
    margin-top: 20px;
    line-height: 1.8;
}

.voice-box ul:last-child .course span{
    font-size: 120%;
}

.voice-box .min-title.mt-20{
    margin-top: 60px;
}

/*------chatbot------*/
#chatbot-bg{
    background: url('img/blog_title_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    width: 100%;
    height: 480px;
}

.chatbot-box p{
    text-align: center;
}

@media screen and (max-width:1000px){
/*
    #advantages .contents div ul li:last-child{
        font-size: 2vw;
    }
    
    #advantages .contents div ul::before,
    #advantages .contents div ul:nth-child(2)::before{
        top: 19vw;
    }
*/
}

@media screen and (max-width:1150px){
    /*------top------*/
    /*header*/

    header {
        height: 50px;
        color: #5A413A;
    }

    .header-inner {
        padding: 0 0 0 20px;
    }

    h1 {
        font-size: 20px;
    }

    .nav-item-box {
        padding-top: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .nav-item {
        line-height: 40px;
    }

    .hamburger {
        width: 50px;
    }

    #header-menu{
        display: none;
    }

/*
    #header-menu li:last-child{
        margin-left: 0; 
    }
*/
}


@media screen and (max-width:767px){
    .pc{
        display: none!important;
    }

    .sp{
        display: inherit;
    }   
    
    body{
        font-size: 14px;
    }
    
    a:hover,
    #course .contents .course-btn:hover,
    #course .contents #slider .slider-item ul:last-child .btn:hover,
    .page-box-100 .shop-list ul li:last-child:hover,
    .hamburger:hover{
        opacity: 1;
    }
    
    /*------top------*/
    /*header*/
/*

    header {
        height: 50px;
        color: #5A413A;
    }

    .header-inner {
        padding: 0 0 0 20px;
    }

    h1 {
        font-size: 20px;
    }

    .nav-item-box {
        padding-top: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .nav-item {
        line-height: 40px;
    }

    .hamburger {
        width: 50px;
    }

    #header-menu{
        display: none;
    }

    #header-menu li:last-child{
        margin-left: 0; 
    }
*/

    /*latest-news*/
    .latest-news{
        bottom: 0;
        box-shadow: -2px -2px 10px rgba(0,0,0,0.3);
        padding: 15px;
    }

    .latest-news ul{
        display: block;
    }

    .latest-news ul li:first-child{
        font-size: 14px;
        line-height: 1;
        border-right: none;
        border-bottom: 1px solid #59413B;
        width: 100%;
        padding-bottom: 5px;
    }

    .latest-news ul li:last-child{
        margin-left: 0;
    }

    .latest-news ul li:last-child span{
        margin-bottom: 3px;
        margin-top: 7px;
    }

    /*about*/
    #about{
        background: url('img/sp/about_bg.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        padding: 50px 0;
        text-align: left;
    }

    #about .contents{
        padding: 30px 0;
    }

    #about .contents h2{
        max-width: 182px;
    }

    #about .contents p:first-of-type{
        font-size: 17px;
/*        margin-bottom: 25px;*/
        text-align: center;
        line-height: 1.6;
        width: 93%;
        margin: auto auto 25px auto;
    }

    #about .contents p:last-of-type{
        width: 88%;
        margin: 0 auto;
    }
      

    /*advantages*/
    #advantages{
        background: url('img/sp/advantages_bg.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        padding: 50px 0;
    }

    #advantages .contents h2{
        max-width: 258px;
/*        margin: auto auto 40px auto;*/
    }
    
    #advantages .contents .h2-text{
        width: 100%;
        font-size: 100%;
        margin: auto auto 40px auto;
    }

    #advantages .contents div{
        display: block;
    }

    #advantages .contents div ul{
        max-width: 400px;
        width: 100%;
        padding: 10px 10px 0 10px;
        margin: auto auto 20px auto;
    }

    #advantages .contents div ul:nth-child(3){
        margin-bottom: 20px;
    }
    
    #advantages .contents div ul li .point{
        font-size: 23px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    #advantages .contents div ul li.title{
        padding: 35px 0 10px 0;
        font-size: 23px;
        margin-bottom: 10px;
    }

    #advantages .contents div ul li.text{
        padding-bottom: 15px;
    }



/*
    #advantages .contents div ul li:last-child{
        padding: 20px 0 20px 0;
        font-size: 17px;
    }
*/

/*
    #advantages .contents div ul::before{
        left: -5px;
        top: 68%;
        max-width: 130px;
        width: 50%;
        height: 60px;
    }

    #advantages .contents div ul:nth-child(2)::before{
        left: -5px;
        top: 62%;
        max-width: 130x;
        width: 50%;
        height: 60px;
    }

    #advantages .contents div ul:first-child::before{
        background: url('img/sp/advantages_point1.png');
        background-size: contain;
        background-repeat: no-repeat;
    }

    #advantages .contents div ul:nth-child(2)::before{
        background: url('img/sp/advantages_point2.png');
        background-size: contain;
        background-repeat: no-repeat;
    }

    #advantages .contents div ul:nth-child(3)::before{
        background: url('img/sp/advantages_point3.png');
        background-size: contain;
        background-repeat: no-repeat;
    }

    #advantages .contents div ul:last-child::before{
        background: url('img/sp/advantages_point4.png');
        background-size: contain;
        background-repeat: no-repeat;
    }  
*/
    
    /*advantages*/
    #course{
        background: url('img/sp/course_bg.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        padding: 50px 0;
    }

    #course .contents h2{
        max-width: 202px;
        margin: auto auto 40px auto;
    }

    #course .contents #slider .slider-item{
        max-width: 100%;
        display: block;
        padding: 20px 18px;
        margin: 0;
    }

    #course .contents #slider .slider-item ul:first-child{
        width: 100%;
        margin-right: 0;
    }

    #course .contents #slider .slider-item ul:last-child{
        width: 100%;
    }

    #course .contents #slider .slider-item ul:last-child .title{
        font-size: 16px;
        margin-bottom: 15px;
        margin-top: 10px;
    }

    #course .contents #slider .slider-item ul:last-child .text{
        margin-bottom: 20px;
    }

    #course .contents #slider .slider-item ul:last-child .list{
        padding-bottom: 10px;
        margin-bottom: 10px;
        display: block;
    }

    #course .contents #slider .slider-item ul:last-child .list span:first-child{
        width: 100%;
        margin-bottom: 5px;
    }
    
    #course .contents #slider .slider-item ul:last-child .list span:last-child{
        width: 100%;
    }

    #course .contents #slider .slider-item ul:last-child .comment{
        font-size: 85%;
    }

    #course .contents #slider .slider-item ul:last-child .comment.mb-1{
        margin-top: 1.5em;
    }

    #course .contents #slider .slider-item .comment-min{
        font-size: 85%;
        line-height: 1.4;
    }

    #course .contents #slider .slider-item ul:last-child .btn{
        font-size: 12px;
    }

    .swiper{
        padding: 0 1.2rem;
    }

    .swiper-button-prev{
        width: 30px;
        z-index: 8;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        position: absolute;
        cursor: pointer;
    }

    .swiper-button-next{
        width: 30px;
        z-index: 8;
        top: 50%;
        right: 5px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        position: absolute;
        cursor: pointer;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover{
        opacity: 1;
    }

    #course .contents .course-btn{
        max-width: 230px;
        font-size: 14px;
        text-align: center;
        margin: 40px auto auto auto;
        position: relative;
        background: #fff;
    }

    #course .contents .course-btn a{
        width: 100%;
        height: 100%;
        display: block;
        padding: 10px 1em;
    }

    #course .contents .course-btn a::after{
        content: '';
        background: url('img/arrow.png');
        background-size: contain;
        background-repeat: no-repeat;
        width: 8px;
        height: 8px;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        display: block;
    }

    /*news*/
    #news{
        padding: 50px 0;
    }


    #news .contents h2{
        max-width: 172px;
        margin: auto auto 40px auto;
    }

    #news .contents div ul{
        margin-bottom: 15px;
    }

    #news .contents div ul a{
        display: block;
        flex-wrap: nowrap;
        line-height: normal;
    }

    #news .contents div ul .oswald{
        font-size: 14px;
        display: inline-block;
    }

    #news .contents div ul .category{
        font-size: 13px;
        left: 0.01em;
        width: auto;
        display: inline-block;
    }

    #news .contents div ul .title{
        width: 100%;
        margin-top: 5px;
        margin-bottom: 15px;
    }

    #news .contents .news-btn{
        font-size: 12px;
        margin-top: 25px;
    }
    
    /*insta*/
    #insta{
        padding: 50px 0;
    }

    #insta .contents h2{
        max-width: 140px;
        margin: auto auto 40px auto;
    }

    /*access*/
    #access{
        background: url('img/sp/access_bg.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        padding: 0 0 50px 0;
    }

    #access .contents{
        width: 100%;
    }

    #access .contents div{
        display: block;
    }

    #access .contents div ul:first-child {
        width: 100%;
        max-width: none;
    }

    #access .contents div ul:first-child li iframe{
        height: 300px;
    }

    #access .contents div ul:last-child{
        width: 86.67%;
        padding-left: 0;
        margin: 0 auto;
    }

    #access .contents div ul:last-child p{
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 0;
    }

    #access .contents div ul:last-child li{
        margin-top: 20px;
        padding-bottom: 15px;
    }

    #access .contents div ul:last-child li span:first-child {
        width: 23.6%;
        padding-right: 1%;
    }

    #access .contents .banner {
        width: 86.67%;
        display: block;
        margin: 50px auto auto auto;
    }

    #access .contents .banner li{
        width: 100%;
    }
    
    #access .contents .banner li:first-child{
        margin-bottom: 20px;
    } 
    
    /*footer*/
    footer{
        padding: 30px 0 20px 0;
    }

    footer .contents div{
        display: block;
    }

    footer .contents div ul:first-child{
        max-width: none;
        width: 41.5%;
        margin: 0 auto;
    }
    
    
    footer .contents div ul:first-child li{
        text-align: center;
    }

    footer .contents div ul:last-child ol{
        display: block;
        margin-top: 50px;
    }

    footer .contents div ul:last-child ol li{
        width: auto;
    }

    footer .contents div ul:last-child ol li:first-child{
        margin-right: 0;
    }

    footer .contents div ul:last-child ol li a{
        display: block;
        width: 100%;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #fff;
    }

    footer .contents p{
        margin-top: 30px;
    }
    
    footer .contents div ul:last-child .sns {
        margin-top: 0;
        border-top: none;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    footer .contents div ul:last-child .sns span:first-child {
        font-size: 110%;
    }

    footer .contents div ul:last-child .sns span:last-child {
        line-height: 1.3;
    }
    
    
    /*------page------*/
    .page-title{
        font-size: 18px;
        padding-top: 85px;
    }

    .page-box{
        margin: -50px auto auto auto;
        padding: 20px 20px 50px 20px;
    }

    /*------blog------*/
    #blog-bg,
    #faq-bg,
    #company-bg,
    #teacher-bg,
    #course-bg,
    #request-bg,
    #inquiry-bg,
    #voice-bg,
    #chatbot-bg{
        height: 200px;
    }

    #blog{
        display: block;
    }

    .blog-l,
    .blog-l .blog-l-list ul:last-child{
        width: 100%;
    }

    .blog-r{
        width: 90%;
        margin: 50px auto auto auto;
    }

    .blog-l .blog-l-list{
        display: block;
    }

    .blog-l .blog-l-list ul:first-child li{
        height: 45vw;
        width: 100%;
        margin-bottom: 10px;
        margin-top: 0;
        margin-right: 0;
    }
    
    /*------archive/category------*/
    .archive-title{
        width: 100%;
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    /*------faq------*/
    .faq-box ul li:first-child{
        font-size: 16px;
    }

    /*------single------*/

    .blog-l .blog-single .text{
        padding-bottom: 30px;
    }

    .b-n{
        margin-top: 30px;
    }

    /*------company------*/

    .company-set{
        display: block;
    }

    .company-set .company-l{
        width: 100%;
        margin-bottom: 15px;
    }

    .company-set .company-r{
        width: 100%;
    }

    .page-box-100 .company-set.access .company-r li:first-child{
        font-size: 18px;
        letter-spacing: 0.02em;
    }
    
    .page-box-100 .company-point ul{
        width: 100%;
    }
    
    .page-box-100 .company-point ul li {
        padding: 0 0 10px 0;
    }
    
    .page-box-100 .company-point ul li span {
        margin-right: 0;
        margin-bottom: -5px;
    }
    
    .page-box-100 .company-point ul li span{
        display: block;
    }

    .page-box-100 .shop-list{
        display: block;
    }

    .page-box-100 .shop-list ul{
        width: 100%;
        margin-bottom: 40px;
    }
    
    /*------teacher------*/

/*
    .teacher-box{
        display: block;
    }

    .teacher-box ul{
        width: 100%;
        margin-bottom: 40px;
    }

    .teacher-box ul.mb-0{
        margin-bottom: 40px;
    }

    .teacher-box ul.mb-0:last-child{
        margin-bottom: 0;
    }
*/
.teacher-box div{
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.teacher-box div ul:first-child{
    width: 100%;
    margin-bottom: 10px;
}

.teacher-box div ul:nth-child(2){
    width: 100%;
}
    
    /*------course-page------*/
    .course-menu{
        margin-bottom: 10px;
    }

    .course-menu .course-title{
        font-size: 120%;
    }

    .course-menu .course-menu-detail{
        display: block;
    }

    .course-menu .course-menu-detail ul:first-child{
        width: 100%;
        margin-bottom: 15px;
    }

    .course-menu .course-menu-detail ul:last-child{
        width: 100%;
    }

    .course-menu .course-menu-detail ul:last-child li span:first-child{
        width: 25%;
    }

    .course-menu .course-menu-detail ul:last-child li span:last-child{
        width: 70%;
    }

    .course-menu .course-menu-detail ul:last-child li span.red{
        width: 100%;
    }
    
    .course-menu .curriculum:last-child{
        margin-bottom: 0;
    }

    .course-menu .curriculum ul,
    .course-menu .curriculum ul.flex{
        display: block;
    }

    .course-menu .curriculum ul li,
    .course-menu .curriculum ul.flex li{
        width: auto;
        padding-right: 0;
    }

    /*------request/inquiry = form------*/
    .form-box .text{
        margin-bottom: 10px;
    }

    .form-box table th,
    .form-box table td {
        display: block;
        width: 100%;
    }
    
    .form-box .form-text{
        font-size: 15px;
    }
    
    /*------voice------*/
    .voice-box div{
        display: block;
    }

    .voice-box ul:first-child{
        width: 100%;
        margin-bottom: 10px;
    }

    .voice-box ul:last-child{
        width: 100%;
    }

    .voice-box ul:last-child .title{
    }

    .voice-box ul:last-child .course{
        padding: 5px 10px;
        margin-top: 10px;
    }

    .voice-box ul:last-child .course span{
        font-size: 110%;
    }
    
    .voice-box .min-title.mt-20{
        margin-top: 40px;
    }
}

@media screen and (max-width:400px){
    #advantages .contents div ul li:last-child{
/*        font-size: 4.5vw;*/
    }
    
/*
    #advantages .contents div ul::before,
    #advantages .contents div ul:nth-child(2)::before{
        top: 40vw;
    }
*/
}

@media screen and (max-width:310px){
    h1 {
        font-size: 5.5vw;
    }

}