@charset "UTF-8";
@import url("grid.css");

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}

a {
    display:block;
    color: #FFF91B;
    text-decoration-line: none;
}

a:hover { 
    color: #999;
}



/*PC時は非表示
-------------------------------------*/
.menu {
	display: none;
}




/*ヘッダー
-------------------------------------*/
header {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  background: rgb(40 107 47 / 95%);
}
header .inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 1200px;
  margin: 0 auto;
}

/* header-navi */

nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}

nav li {
	margin-left: 10px;
}

nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
    font-size: 17px;
}

nav a:hover {
   opacity: 0.8; 
}
nav a {
    padding: 0.5rem;
}

header .inner nav {
	margin-left: 10px;
    margin-top: 20px;
}

header .inner nav ul li:nth-child(6) {
	margin-top: 1px;
}

#header.scroll {
  position: fixed;
  top: 0;
  background: rgb(40 107 47 / 95%);
  animation-name: anime;
  animation-duration: 0.9s;
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#header.scroll .tel a,
#header.scroll .time {
	color: #fff;
}



/*ヘッダーロゴと問い合わせ
-------------------------------------*/
header .inner .logo-title {
	display: flex;
	align-items: center;
	margin-top: 80px;
}
header .inner .logo-title figure {
	width: 146px;
}
header .inner .logo-title figure img {
	width: 100%;
	height: 100%;
}
header .inner .logo-name {
	font-size: 44px;
	color: #fff;
	font-weight: 800;
	margin-bottom: 78px;
    margin-left: 10px;
}
header .inner .contact {
    margin-left: 22px;
}
header .inner .contact .top {
	display: flex;
    font-size: 17px;
    font-weight: 800;
    background: #fff;
    height: 35px;
    justify-content: center;
    padding-top: 7px;
}
header .inner .contact .top a {
	color: #286B2F;
}
header .inner .contact .top a:hover{
	opacity: 0.5;
}
header .inner .contact .top figure {
	width: 23px;
    margin-top: 2px;
}
header .inner .contact .top figure img {
	width: 100%;
	height: 100%;
}
header .inner .contact .bottom {
	color: #fff;
    font-size: 15px;
}
header .inner .contact .bottom .tel {
	display: flex;
	font-size: 27px;
    font-weight: 800;
}
header .inner .contact .bottom .tel a {
	color: #FFF;
}
header .inner .contact .bottom .time {
    position: relative;
    top: -18px;
	font-size: 15px;
}





/*スライダーPC・スマホの画像切り替え他
-------------------------------------*/
.autoplay-items img.mv_pc {
	display: block;
}
.autoplay-items img.mv_sp {
	display: none;
}

.autoplay-items img.mv_pc {
	display: block;
    width: 100vw;
	height: 100vh;
    object-fit: cover;
}
.autoplay-items img.txt_pc1,
.autoplay-items img.txt_pc2,
.autoplay-items img.txt_pc3 {
    z-index: 1;
    position: relative;
    top: 10vh;
    width: 40%;
    left: 10px;
    object-fit: contain;
}
.autoplay-items img.txt_pc1,
.autoplay-items img.txt_pc3 {
    position: relative;
    left: 60%;
}
.autoplay-items img.txt_pc2 {
    position: relative;
    left: 0;
}
.autoplay-items img.ph {
	position: relative;
    top: -100vh;
}
.slick-slider {
    height: 100vh;
}

.slick-dots {
    display: none !important;
}


/*スクロール促す表示
-------------------------------------*/
/* スクロールダウンの位置 */
.scroll {
  padding-top: 0;
  position: relative;
  text-align: center;
  top: -98px;
}
.scroll span {
  color: #286B2F;
  font-size: 24px;
}
/* 矢印のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 1px solid #286B2F;
  border-left: 1px solid #286B2F;
  content: "";
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
/* 矢印のアニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}




/*welcome
-------------------------------------*/
#welcome {
    margin-top: 0;
    padding-bottom: 70px;
}
.bg_welcome {
    background: no-repeat url(../img/bg_welcome.svg);
    background-position: center;
    height: 214.2px;
    padding-top: 80px;
    padding-left: 30px;
}
.welcome_inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 1020px;
    margin: 0 auto;
}
.welcome_inner p {
    line-height: 1.8;
}




/*policy
-------------------------------------*/
#policy {
    margin-top: 0;
    padding-bottom: 70px;
}
.bg_policy {
    background: no-repeat url(../img/bg_policy.svg);
    background-position: center -5px ;
    height: 214.2px;
    padding-top: 80px;
    padding-left: 30px;
}
.policy_inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 1020px;
    margin: 0 auto;
}
.policy_inner p {
    line-height: 1.8;
}




/*note_image
-------------------------------------*/
#note_image img {
    width: 100%;
    height: auto;
}




/*class_time
-------------------------------------*/
#class_time {
    margin-top: -20px;
    padding-bottom: 70px;
}
.bg_class_time {
    background: no-repeat url(../img/bg_class.svg);
    background-position: center -5px ;
    height: 214.2px;
    padding-top: 80px;
    padding-left: 10px;
}
#class_time .bold_28px {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}
#class_time .bold_22px {
    font-size: 22px;
    font-weight: 800;
}
#class_time p.txt1 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-top: 10px;
}
#class_time p.txt2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
}
.top_spacer40 {
    padding-top: 40px; 
}
#class_time p.txt3 {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-top: 10px;
}
.class_time_inner {
    position: relative;
    display: block;
    height: 100%;
    width: 799px;
    margin: 50px auto 0;
}
.class_time_inner ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 20px;
}




/*price
-------------------------------------*/
#price {
    margin-top: -20px;
    padding-bottom: 70px;
}
.bg_price {
    background: no-repeat url(../img/bg_price.svg);
    background-position: center -5px ;
    height: 214.2px;
    padding-top: 80px;
    padding-left: 10px;
}
.bold_30px {
    display: flex;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.kakaku {
    font-size: 52px;
    font-weight: 800;
}
.en {
    font-size: 36px;
    font-weight: 800;
    padding-top: 15px;
}
.strikethrough {
    position: relative;
    margin-left: 10px;
    padding: 0 10px;
}
.strikethrough::before,
.strikethrough::after {
  position: absolute;
  content: "";
  display: block;
  transform: rotate(0);
  background-color: #A40018;
  width: 100%;
  height: 1px;
  left: 0;
}
.strikethrough::before {
  top: 55%;
}
.strikethrough::after {
  top: 42%;
}
#price p.txt1 {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-top: 10px;
    color: #A40018;
}
#price p.txt1 .can_small {
    font-size: 20px;
}
#price p.txt2 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#price p.txt2 .kakaku {
    font-size: 41px;
    font-weight: 800;
}
#price p.txt2 .en {
    font-size: 28.8px;
    font-weight: 800;
}
#price p.txt2 .small {
    font-size: 24px;
    font-weight: 800;
    padding-top: 20px;
}
#price p.txt2 .small2 {
    font-size: 24px;
    font-weight: 800;
    padding-top: 20px;
    margin-left: -10px;
}
#price .obi {
    background: #286B2F;
    margin-top: 40px;
}
#price p.txt3 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#price p.txt3 .kakaku {
    font-size: 52px;
    font-weight: 800;
    margin-left: 10px;
}
#price p.txt3 .en {
    font-size: 36px;
    font-weight: 800;
}
#price .clm4 {
    display: flex;
    justify-content: space-evenly;
    width: 1050px;
    margin: 40px auto;
}
#price .clm4 div {
    border: solid 2px #286B2F;
    height: 160px;
    padding: 0 15px;
}
#price .clm4 p.txt1 {
    font-size: 20px;
    font-weight: 800;
    color: #286B2F;
    display: flex;
    justify-content: center;
    align-items: center;
}
#price .clm4 p.txt1 .big {
    font-size: 30px;
    font-weight: 800;
    margin: 0 5px;
}
#price .clm4 p.txt2 {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -15px;
}
#price .clm4 p.kakaku {
    font-size: 52px;
    font-weight: 800;
    position: relative;
    top: -25px;
    text-align: center;
}
#price .clm4 p.kakaku .en {
    font-size: 36px;
    font-weight: 800;
    position: relative;
    top: 0;
}
#price .bold_24px {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
}
#price .bold_24px .kakaku {
    font-size: 41.6px;
    font-weight: 800;
    padding-left: 5px;
}
#price .bold_24px .en {
    font-size: 28.8px;
    font-weight: 800;
}
#price .txt_inner {
    width: 740px;
    margin: 0 auto;
    position: relative;
    top: -20px;
}
#price .txt_inner p {
    margin-top: 20px;
}
#price .txt_inner .underline {
    text-decoration: underline;
}
.cancel {
    display: flex;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    position: relative;
    top: 0;
}




/*self_study
-------------------------------------*/
#self_study {
    margin-top: -20px;
    padding-bottom: 100px;
}
.bg_self_study {
    background: no-repeat url(../img/bg_self.svg);
    background-position: center -5px ;
    height: 214.2px;
    padding-top: 80px;
    padding-left: 0;
}
#self_study p.txt1 {
    font-size: 33px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    padding: 15px 0;
}
#self_study .txt_inner {
    width: 740px;
    margin: 0 auto;
    position: relative;
    top: 40px;
}
#self_study .obi {
    background: #286B2F;
    margin-top: 40px;
}




/*principal
-------------------------------------*/
#principal {
    margin-top: -20px;
    padding-bottom: 100px;
}
.bg_principal {
    background: no-repeat url(../img/bg_principal.svg);
    background-position: center -5px ;
    height: 214.2px;
    padding-top: 80px;
    padding-left: 0;
}
#principal .content_inner {
    width: 1200px;
    margin: 50px auto 0;
}
#principal .content_inner .bold_20px {
    display: flex;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    align-items: center;
}
#principal .content_inner .bold_20px .name {
    font-size: 32px;
    font-weight: 800; 
}
#principal .content_inner p {
    margin-top: 10px;
    font-size: 18px;
}
#principal .content_inner .bold_24px {
    display: flex;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    align-items: center;
    margin-top: 40px;
}
#principal .content_inner .two-clm {
    display: flex;
    margin-top: 30px;
}
#principal .content_inner .two-clm p {
    font-size: 18px;
    padding-right: 10px;
}
#principal .content_inner .two-clm figure {
    width: 568px;
    margin-top: 15px;
}
#principal .content_inner .two-clm figure img {
    width: 100%;
    height: 100%;
}




/*footer
-------------------------------------*/
footer {
    background-color: #fff;
    margin-top: -20px;
}
.footer_top_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1238px;
    margin: 0 auto;
}
.footer_top_inner figure.gaikan {
    width: 187.8px;
    height: auto;
    margin-top: 55px;
}
.footer_top_inner figure.gaikan img {
    width: 100%;
    height: 100%;
}
.footer_top_inner figure.footer_logo {
    width: 146.04px;
    height: auto;
    margin-top: 55px;
}
.footer_top_inner figure.footer_logo img {
    width: 100%;
    height: 100%;
}
.footer_top_inner .logo-name {
    font-size: 44.66px;
    font-weight: 800;
}
.footer_top_inner p {
    font-size: 16px;
    font-weight: 800;
}
.footer_top_inner figure.googlemap {
    width: 109.29px;
    height: auto;
    margin-top: 30px;
}
.footer_top_inner figure.googlemap img {
    width: 100%;
    height: 100%;
}
.footer_top_inner figure.to_top {
    width: 136.11px;
    height: auto;
    margin-top: 40px;
}
.footer_top_inner figure.to_top img {
    width: 100%;
    height: 100%;
}

.footer_tottom {
    width: 100vw;
    background: #286B2F;
    margin-top: -60px;
}
.footer_tottom .footer_tottom_inner {
    display: flex;
    width: 1236.5px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 10px;
}
.footer_tottom .footer_tottom_inner p.left {
    font-size: 13px;
    color: #fff;
    margin-top: 30px;
}
.footer_tottom .footer_tottom_inner .right {
    display: flex;
    align-items: center;
}
.footer_tottom .footer_tottom_inner figure.insta {
    width: 34.35px;
    height: auto;
    margin-right: 12px;
}
.footer_tottom .footer_tottom_inner figure.insta img {
    width: 100%;
    height: 100%;
}
.footer_tottom .footer_tottom_inner figure.tel {
    width: 217.67px;
    height: auto;
    margin-right: 12px;
}
.footer_tottom .footer_tottom_inner figure.tel img {
    width: 100%;
    height: 100%;
}
.footer_tottom .footer_tottom_inner figure.contact {
    width: 150px;
    height: auto;
}
.footer_tottom .footer_tottom_inner figure.contact img {
    width: 100%;
    height: 100%;
}





/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop_pc {
    width: 1236.5px;
    position: fixed;
    bottom: 55px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    /*border: 1px solid red;*/
}
#pagetop_pc a {
    position: fixed;
    right: 0;
    bottom: 30px;
}









/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
	#navi, .contact {
		display: none;
	}
	header .inner {
		width: 100%;
	}
	header {
	    margin-bottom: 10px;
	    height: 50px;
	}
	nav ul {
		flex-direction: column;
	}
	header li {
		padding-top: 0;
	}
	header .inner .logo-title figure {
	    width: 71px;
	}
	header .inner .logo-name {
    	font-size: 22px;
    	margin-bottom: 50px;
    }
    header .inner .logo-title {
	    margin-top: 55px;
	    margin-left: 10px;
	}


	 /* ハンバーガーメニューのスタイル */
	.hamburger-menu {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		transition: transform 0.3s;
		z-index: 9999999;
		width: 70px;
		height: 56px;
		padding: 0 14px;
		position: absolute;
        top: 0;
        right: 0;
	}
	
	
	/* ハンバーガーメニューのアイコンのスタイル */
	.hamburger-line {
	  width: 70%;
	  height: 2px;
	  background-color: #fff;
	  margin-bottom: 4px;
	  transition: background-color 0.3s;
	}
	
	
	/* activeクラスのスタイル */
	.active .hamburger-line:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
		background-color: #348839;
	}
	.active .hamburger-line:nth-child(2) {
		opacity: 0;
	}
	.active .hamburger-line:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
		background-color: #348839;
	}
	/*.hamburger-menu.active {
		background-color: #fff;
	}
	
	/* メニューのスタイル */
	.menu a {
		color: #286B2F;
		font-weight: 800;
		font-size: 16px;
	}
	.menu li {
		margin: 10px 0;
	}
	
	/* activeクラスが付与されたときのメニューのスタイル */
	.active + .menu {
		display: block;
		z-index: 999999;
		position: absolute;
		top: 0;
		right: 0;
		list-style: none;
		padding: 80px 10px 30px;
		opacity: 0.9;
		background: #ffffff;
		text-align: right;
	}/* ハンバーガーメニューEND */
	
	
	/* スライダー */
	.autoplay-items img.mv_pc {
		display: none;
	}
	.autoplay-items img.mv_sp {
		display: block;
        object-fit: cover;
        box-sizing: border-box;
        height: 100svh;
        width: 100vw;
	}
	.autoplay-items img.ph {
        top: -100svh;
    }
	.autoplay-items img.txt_sp {
        z-index: 2;
        position: relative;
        top: -20px;
        width: 90%;
        left: 15px;
        object-fit: none;
    }
    .slick-slider {
        height: 100svh;
    }	
	
	.scroll {
	  top: -130px;
	}
	
    
    
    #welcome {
        margin-top: 0;
        padding-bottom: 15px;
        background: #fff;
        padding-top: 20px;
    }
    .bg_welcome {
        background: no-repeat url(../img/bg_welcome_sp.svg);
        background-position: center;
        height: 81.4px;
        padding-top: 30px;
        padding-left: 10px;
        margin-bottom: 20px;
    }
    .welcome_inner {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        width: 90%;
        margin: 0 auto;
    }
    
    
    #policy {
        margin-top: 0;
        padding-bottom: 20px;
    }
    .bg_policy {
        background: no-repeat url(../img/bg_policy_sp.svg);
        background-position: center 20px;
        height: 101.4px;
        padding-top: 48px;
        padding-left: 10px;
        margin-bottom: 20px;
    }
    .policy_inner {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        width: 90%;
        margin: 0 auto;
    }
    
    
    #class_time {
        margin-top: -20px;
        padding-bottom: 15px;
    }
    .bg_class_time {
        background: no-repeat url(../img/bg_class_sp.svg);
        background-position: center 0;
        height: 81.4px;
        padding-top: 30px;
        padding-left: 10px;
    }
    .bold_28px {
        font-size: 18px;
    }
    .bold_22px {
        font-size: 16px;
    }
    #class_time p.txt1 {
        font-size: 16px;
        margin-top: 5px;
    }
    #class_time p.txt2 {
        font-size: 30px;
    }
    .top_spacer40 {
        padding-top: 20px; 
    }
    #class_time p.txt3 {
        font-size: 16px;
        margin-top: 10px;
    }
    #class_time .small {
        font-size: 15px;
    }
    .class_time_inner {
        width: 90%;
        margin: 15px auto 0;
    }
    
    
    #price {
        margin-top: 0;
        padding-bottom: 20px;
        padding-top: 22px;
    }
    .bg_price {
        background: no-repeat url(../img/bg_price_sp.svg);
        background-position: center 0 ;
        height: 81.4px;
        padding-top: 30px;
        padding-left: 10px;
    }
    .bold_30px {
        font-size: 21px;
    }
    .kakaku {
        font-size: 36px;
    }
    .en {
        font-size: 25px;
        padding-top: 15px;
    }
    #price p.txt1 {
        font-size: 21px;
        line-height: 1.4;
        position: relative;
        top: -5px;
    }
    #price p.txt1 .can_small {
        font-size: 14px;
        position: relative;
        top: -5px;
    }
    #price p.txt2 {
        font-size: 16.8px;
        display: block;
    }
    #price p.txt2 .kakaku {
        font-size: 29.12px;
        position: relative;
        top: -5px;
    }
    #price p.txt2 .en {
        font-size: 20.16px;
        position: relative;
        top: -5px;
    }
    #price p.txt2 .small {
        font-size: 16.18px;
        padding-top: 20px;
        position: relative;
        top: -5px;
    }
    #price p.txt2 .small2 {
        font-size: 16.18px;
        padding-top: 20px;
        margin-left: -10px;
        position: relative;
        top: -5px;
    }
    #price .obi {
        margin-top: 15px;
    }
    #price p.txt3 {
        font-size: 21px;
    }
    #price p.txt3 .kakaku {
        font-size: 36.4px;
        font-weight: 800;
        margin-left: 5px;
    }
    #price p.txt3 .en {
        font-size: 25.2px;
    }
    #price .clm4 {
        flex-wrap: wrap;
        width: 94%;
        margin: 25px auto;
    }
    #price .clm4 div {
        width: 44%;
        height: 95px;
        padding: 0 5px;
        margin-bottom: 15px;
    }
    #price .clm4 p.txt1 {
        font-size: 12.6px;
    }
    #price .clm4 p.txt1 .big {
        font-size: 18.9px;
        margin: 0 5px;
    }
    #price .clm4 p.txt2 {
        font-size: 12.6px;
        top: -15px;
    }
    #price .clm4 p.kakaku {
        font-size: 32.76px;
        top: -25px;
    }
    #price .clm4 p.kakaku .en {
        font-size: 22.68px;
        font-weight: 800;
        top: 0;
    }
    #price .bold_24px {
        font-size: 16.8px;
        position: relative;
        top: -5px;
    }
    #price .bold_24px .kakaku {
        font-size: 29.12px;
        padding-left: 5px;
    }
    #price .bold_24px .en {
        font-size: 20.16px;
        margin-bottom: 8px;
    }
    #price .txt_inner {
        width: 90%;
        top: -20px;
    }
    #price .txt_inner p {
        margin-top: 10px;
    }
    .cancel {
        font-size: 18px;
    }


    #self_study {
        margin-top: -20px;
        padding-bottom: 45px;
        padding-top: 22px;
    }
    .bg_self_study {
        background: no-repeat url(../img/bg_self_sp.svg);
        background-position: center 0 ;
        height: 81.4px;
        padding-top: 30px;
        padding-left: 0;
    }
    #self_study .obi {
        margin-top: 15px;
    }
    #self_study p.txt1 {
        font-size: 18px;
        padding: 10px 0;
        text-align: left;
        margin: 0 auto;
        width: fit-content;
    }
    #self_study .txt_inner {
        width: 90%;
        top: 20px;
    }
    
    
    #principal {
        margin-top: -20px;
        padding-bottom: 25px;
        padding-top: 22px;
    }
    .bg_principal {
        background: no-repeat url(../img/bg_principal_sp.svg);
        background-position: center 0 ;
        height: 81.4px;
        padding-top: 30px;
        padding-left: 0;
    }


    #principal .content_inner {
        width: 90%;
        margin: 25px auto 0;
    }
    #principal .content_inner .bold_20px {
        font-size: 15px;
    }
    #principal .content_inner .bold_20px .name {
        font-size: 24px;
    }
    #principal .content_inner p {
        margin-top: 7px;
        font-size: 14px;
    }
    #principal .content_inner .bold_24px {
        font-size: 16px;
        text-align: left;
        margin-top: 30px;
    }
    #principal .content_inner figure {
        width: 100%;
    }
    #principal .content_inner figure img {
        width: 100%;
        height: auto;
    }


    .sp_fix_btn {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 3;
    }
    .sp_fix_btn a {
        color: #fff;
        text-decoration: none;
    	display: inline;
    }

    .sp_fix_footer {
        display: flex;
        justify-content: space-between;
    }
    .sp_fix_footer .left {
        display: flex;
        background: #FFF91B;
        width: 50%;
        justify-content: space-evenly;
        padding-top: 20px;
    }
    .sp_fix_footer .right {
        display: flex;
        background: #286B2F;
        width: 50%;
        justify-content: center;
        padding-top: 18px;
        align-items: center;
    }


    #pagetop_sp {
        width: 100%;
    }
    #pagetop_sp a {
        position: fixed;
        left: 50%;
        right: unset;
        -webkit-transform: translateX(-50%);
        bottom: 70px;
        z-index: 4;
    }


    .footer_top_inner {
        width: 90%;
        align-items: center;
        justify-content: flex-start;
        margin-top: 50px;
    }
    .footer_top_inner figure.footer_logo {
        width: 102.18px;
        height: auto;
        margin-top: 0;
    }
    .footer_top_inner .logo-name {
        font-size: 31.26px;
        margin-left: 15px;
        margin-top: -20px;
    }
    .footer_tottom {
        margin-top: -35px;
    }
    .footer_tottom .footer_tottom_inner p {
        color: #fff;
        font-size: 13px;
        text-align: center;
        padding-bottom: 6px;
    }
    .footer_tottom .footer_tottom_inner p a {
        color: #fff;
    }
    .footer_tottom .footer_tottom_inner {
        display: block;
        width: 100%;
    }
    .footer_tottom figure.gaikan {
        width: 100%;
        height: auto;
    }
    .footer_tottom figure.gaikan img {
        width: 100vw;
        height: 100%;
    }
    figure.to_top {
        position: relative;
        bottom: 3.8em;
        text-align: center;
        z-index: 6;
    }
    .sp_copyright {
        padding-top: 10px;
        padding-bottom: 20px;
        text-align: center;
        position: relative;
        top: -65px;
    }


}






/* 幅769以上1180px以下の表示
-------------------------------------*/
@media screen and (min-width:769px) and ( max-width:1180px) {
	#navi, .contact {
		display: none;
	}
	header .inner {
		width: 100%;
	}
	header {
	    margin-bottom: 10px;
	    height: 50px;
	}
	nav ul {
		flex-direction: column;
	}
	header li {
		padding-top: 0;
	}
	header .inner .logo-title figure {
	    width: 71px;
	}
	header .inner .logo-name {
    	font-size: 22px;
    	margin-bottom: 50px;
    }
    header .inner .logo-title {
	    margin-top: 55px;
	    margin-left: 10px;
	}

	 /* ハンバーガーメニューのスタイル */
	.hamburger-menu {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		transition: transform 0.3s;
		z-index: 9999999;
		width: 70px;
		height: 56px;
		padding: 0 14px;
		position: absolute;
        top: 0;
        right: 0;
	}
	
	
	/* ハンバーガーメニューのアイコンのスタイル */
	.hamburger-line {
	  width: 70%;
	  height: 2px;
	  background-color: #fff;
	  margin-bottom: 4px;
	  transition: background-color 0.3s;
	}
	
	
	/* activeクラスのスタイル */
	.active .hamburger-line:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
		background-color: #348839;
	}
	.active .hamburger-line:nth-child(2) {
		opacity: 0;
	}
	.active .hamburger-line:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
		background-color: #348839;
	}
	/*.hamburger-menu.active {
		background-color: #fff;
	}
	
	/* メニューのスタイル */
	.menu a {
		color: #286B2F;
		font-weight: 800;
		font-size: 16px;
	}
	.menu li {
		margin: 10px 0;
	}
	
	/* activeクラスが付与されたときのメニューのスタイル */
	.active + .menu {
		display: block;
		z-index: 999999;
		position: absolute;
		top: 0;
		right: 0;
		list-style: none;
		padding: 80px 10px 30px;
		opacity: 0.9;
		background: #ffffff;
		text-align: right;
	}
	.welcome_inner {
	    width: 90%;
	}
	
	table {
        font-size: 19px;
    }
    .class_time_inner {
        width: 90%;
    }        
	
    #price .clm4 {
        flex-wrap: wrap;
        width: 94%;
        margin: 25px auto;
    }
    #price .clm4 div {
        margin-bottom: 2vh;
    }
    .bg_self_study {
        height: 160px;
        padding-top: 50px;
        background-size: contain;
    }
    
    #principal .content_inner {
        width: 90%;
    }
    #principal .content_inner .two-clm {
        flex-direction: column-reverse;
    }
    #principal .content_inner .two-clm figure {
        width: 100%;
        margin-top: 0;
    }
    #principal .content_inner .bold_24px {
        text-align: left;
    }
    
    .sp_fix_btn {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 3;
    }
    .sp_fix_btn a {
        color: #fff;
        text-decoration: none;
    	display: inline;
    }

    .sp_fix_footer {
        display: flex;
        justify-content: space-between;
    }
    .sp_fix_footer .left {
        display: flex;
        background: #FFF91B;
        width: 50%;
        justify-content: space-evenly;
        padding-top: 20px;
    }
    .sp_fix_footer .right {
        display: flex;
        background: #286B2F;
        width: 50%;
        justify-content: center;
        padding-top: 18px;
        align-items: center;
    }
    
    .pc_show {
        display: none;
    }
    .sp_show {
        display: block;
        margin: 0 auto;
    }
    
    .footer_top_inner {
        width: 90%;
        align-items: center;
        justify-content: flex-start;
        margin-top: 50px;
    }
    .footer_top_inner figure.footer_logo {
        width: 102.18px;
        height: auto;
        margin-top: 0;
    }
    .footer_top_inner .logo-name {
        font-size: 31.26px;
        margin-left: 15px;
        margin-top: -20px;
    }
    .footer_tottom {
        margin-top: -35px;
    }
    .footer_tottom .footer_tottom_inner p {
        color: #fff;
        font-size: 13px;
        text-align: center;
        padding-bottom: 6px;
    }
    .footer_tottom .footer_tottom_inner {
        display: block;
        width: 100%;
    }
    .footer_tottom .footer_tottom_inner figure.gaikan {
        width: 100%;
        height: auto;
    }
    .footer_tottom .footer_tottom_inner figure.gaikan img {
        width: 100vw;
        height: 100%;
    }    
    .footer_tottom figure.gaikan img {
        width: 100%;
    }
    
    
    figure.to_top {
        position: relative;
        bottom: 2.8em;
        text-align: center;
        z-index: 6;
    }
    .sp_copyright {
        padding-top: 10px;
        padding-bottom: 20px;
        text-align: center;
        position: relative;
        top: -65px;
    }
    
    #pagetop_sp {
        width: 100%;
        z-index: 4;
        position: fixed;
        bottom: 55px;
        left: 50%;
        -webkit-transform: translateX(-50%);
    }
    #pagetop_sp a {
        position: fixed;
        bottom: 30px;
        left: 50%;
        -webkit-transform: translateX(-50%);
    }
    
    .scroll {
        top: -150px;
    }

}