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

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}

/*ヘッダー
-------------------------------------*/
/*ナビゲーションを横並びに*/
nav ul{
  list-style: none;
  display: flex;
  justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
    position: relative;
    margin-bottom:0.8rem;
}
nav ul li.menu::before{
  content:'';
  position: absolute;
  left:15px;
  top:26px;
  width:8px;
  height:8px;
  border-top: 1px solid var(--base-color);
    border-right:1px solid var(--base-color);
    transform: rotate(45deg);
}
/*ナビゲーションのリンク設定*/
nav ul li a{
  display: block;
  text-decoration: none;
  padding:20px 35px;
  transition:all .3s;
	color:var(--base-color);
}

nav ul li li a{
  padding:10px 5px;
}

nav ul li a:hover{
  color:var(--linkhover-color);
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
  content:'';
  position: absolute;
  left:15px;
  top:26px;
  width:8px;
  height:8px;
  border-top: 1px solid var(--base-color);
    border-right:1px solid var(--base-color);
    transform: rotate(45deg);
}
/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
  position: absolute;
  left:0;
  top:62px;
  z-index: 4;
    /*形状を指定*/
  background:#fffff;
  width:180px;
    /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
    /*アニメーション設定*/
  transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
  color: var(--base-color);
}

nav li.has-child ul li:last-child > a{
 border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
  background:#a5a8c9;
}
nav  ul li a:hover,
nav  ul li a:active{
  background:#a5a8c9;
}
/*
@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 
nav {
    display: none !important;
}
#nav {
    display: none !important;
}
}*/

  nav{
    position:fixed;/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	z-index:999;
    top:0;/*ナビのスタート位置と形状*/
    right: -120%;
 	width:70%;
    height: 100vh;/*ナビの高さ*/
	background-color:var(--white-color);
}

/*アクティブクラスがついたら位置を0に*/
  nav.panelactive{
    right: 0;
}
  nav ul{
    display: block;
}
  
  nav li.has-child ul,
  nav li.has-child ul ul{
    position: relative;
  left:0;
  top:0;
  width:100%;
  visibility:visible;/*JSで制御するため一旦表示*/
  opacity:1;/*JSで制御するため一旦表示*/
  display: none;/*JSのslidetoggleで表示させるため非表示に*/
  transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}

/*矢印の位置と向き*/

nav ul ul li.has-child::before{
    transform: rotate(135deg);
  left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}


/*ナビゲーションの縦スクロール
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}*/

/*ナビゲーション
#nav ul {
    /*ナビゲーション天地中央揃え
    position: absolute;
    z-index: 999;
    top:10%;
}


#nav li{
  list-style: none;
    text-align: left;
}

#nav li a{
  color: var(--base-color);
  text-decoration: none;
  
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: bold;
}*/

/*========= ボタンのためのCSS ===============*/
.openbtn1{
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top:10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}
.openbtn1 span:nth-of-type(2) {
  top:23px;
}
.openbtn1 span:nth-of-type(3) {
  top:31px;
}
@media ( min-width : 768px ) {
    .openbtn1{
    position:fixed;
    z-index: 9999;
    top:10px;
    right: 10px;
    cursor: pointer;
    width: 80px;
    height:80px;
}
   
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}
.openbtn1 span:nth-of-type(2) {
  top:28px;
}
.openbtn1 span:nth-of-type(3) {
  top:41px;
}
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

#header{
	width:100%;   
    background:rgba(255,255,255,0.3);
	position:fixed;
	z-index: 99;
}
#header h1{
	margin-top:10px;
	margin-bottom:0;
}
#header img{width:10%;}

@media ( max-width : 980px ) {
    #header img{width:20%;}
}
@media ( max-width : 550px ) {
    #header img{width:30%;}
}

    
/*メイン
-------------------------------------*/
main {
    padding-top:90px;
}

.mainimg {
	background-image: url("../img/img_taiyou.png");
	background-repeat: no-repeat;
	background-size:cover;
    background-position:center;
	text-align:center;
	padding-top:20%;
    padding-bottom:50%;
}

.mainimg h2 {
    font-family:"Zen Old Mincho", "serif";
    color:var(--base-color);
    font-weight:600;
    font-size:3.0rem;
    line-height:1.7;
    letter-spacing:0.5;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);    
}
.mainimg h3{
	font-family:"Zen Old Mincho", "serif";
    color:var(--base-color);
    font-weight:600;
    font-size:3.0rem;
	letter-spacing:1.0;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
	margin-top:1.1rem;
}

.mainimg img {
    width: 25%;
}
@media screen and (max-width: 980px){
    .mainimg{
    padding-top:40%;
    padding-bottom:50%;
    }
}
@media screen and (max-width: 550px){
    .mainimg{
    padding-top:40%;
    padding-bottom:50%;
    }
    .mainimg h2{font-size:2.4rem;}
    
	.mainimg img {width: 60%;}
	
	.mainimg h3{font-size:2.4rem;}
}

.anchor{
    padding-top:60px;
}

/*スライドショー２
-----------------------------------
.slide_02 {
  position: relative;
  max-width: 900px;
  margin:0 auto 3rem;
  padding-top: 60%;
  overflow: hidden;
  background-color: var(--white-color);
}
@keyframes slideshow_02 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
 
.slide_02 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 0;
  animation: slideshow_02 24s linear infinite;
}
 
.slide_02 img:nth-child(2) {
  animation-delay: 8s;
}
.slide_02 img:last-child {
  animation-delay: 16s;
}

.slide_01 {
	position: relative;
	width: 640px;
	height: 550px;
	overflow: hidden;
	margin: 0 auto;
}
*/
.slide_01 {
	position: relative;
	background-color: white;
	overflow: hidden;
	margin: 0 auto;
	width: 700px;
 	height: 500px;
 	box-shadow: -5px -5px 10px 1px white, 5px 5px 10px 1px white;
}


@media screen and (max-width: 768px){
.slide_01{
   width: 80%;
   height: 300px;
}
}
.img-01, .img-02, .img-03{
   position: absolute;
   background-position:center;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;
}
.img-01{
   background-image: url('../img/img_slide_01.png');
   animation: slide-animation-01 16s infinite;
}
.img-02{
   background-image: url('../img/img_slide_02.png');
   animation: slide-animation-02 16s infinite;
}
/*
@keyframes slide-animation-01 {
    0% {opacity: 1; transform: scale(1.0);}
  30% {opacity: 1;}
  40% {opacity: 0; transform: scale(1.15);}
  90% {opacity: 0}
100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
    0% {opacity: 0;}
  30% {opacity: 0; transform: scale(1.1);}
  40% {opacity: 1;}
  60% {opacity: 1;}
  70% {opacity: 0; transform: scale(1.0);}
100% {opacity: 0;}
}
@keyframes slide-animation-03 {
    0% {opacity: 0;}
  60% {opacity: 0;  transform: scale(1.0);}
  70% {opacity: 1;}
  90% {opacity: 1;}
100% {opacity: 0; transform: scale(1.1);}
}
*/


@keyframes slide-animation-01 {
  0% {opacity: 1; transform: scale(1.0);}
  30% {opacity: 1;}
  40% {opacity: 0; transform: scale(1.05);}
  90% {opacity: 0}
  100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
  0% {opacity: 0;}
  30% {opacity: 0; transform: scale(1.1);}
  40% {opacity: 1;}
  60% {opacity: 1;}
  70% {opacity: 1; transform: scale(1.0);}
  90% {opacity: 1;}
  100% {opacity: 0;}
}

section {
	margin: 0 auto;
	padding-bottom: 5rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: var(--back-color); 
    padding: 5rem 0;
}


.footer{
width:75%;
max-width:200px;
text-align:center;
margin: 0 auto;
}

.footer img{width:90%;}

.sns {
margin-top:3rem;
display: flex;
align-items:center;
align-content: space-between;
list-style-type: none;
}
.sns li{
margin-right:10px;
margin-left:10px
}
.sns li {
width:50px;
}
/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--base-color);
	color: var(--white-color);
}
small{font-size:70%;}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}

#pagetop a {
    display: flex;
   justify-content: center;
   align-items: center;
   width: 50px;
   height: 50px;
   background: var(--base-color);
    border-radius:50%;
}
#pagetop a:hover {
    background-color: var(--linkhover-color);
}
.arrow{
   width: 10px;
   height: 10px;
   border-top: 3px solid #fff;
   border-right: 3px solid #fff;
   transform: rotate(-45deg);
   margin-top: 5px;
}
	
/*お問い合わせ
-------------------------------------*/
.table {
	margin: 4rem 0;
}
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}


#navi2 ul{  
    display:flex;
    margin: 0;
    text-align:center;
    justify-content:space-around;
    list-style-type:none;
}
#navi2 ul li{
    padding: 0;
    border-left:1px solid var(--base-color);    
}

#navi2 {
    background:var(--white-color);
    margin: -1rem auto 2rem;
    max-width: 1200px;
    padding: 0 ;
    position: relative;
}

._bg__forest {
    background-image: url("../img/img_back_green_01.png");
}
._bg_forest {
    background-image: url("../img/img_back_green_01.png");
    background-repeat: repeat-y;
	background-size:contain;
    margin:0 auto;
    padding:1rem;
}
#top {
    font-family:"Zen Old Mincho", "serif";
    max-width:640px;
    margin:auto;
    padding:auto;
}


#info, #lesson, #students_voice, #class_special, #instructor, #retreat, #culture, #form{
    max-width:980px;
    margin:0 auto;
}
#info h2, #lesson h2, #students_voice h2,#instructor h2, #retreat h2, #culture h2, #form h2{
    font-family:"Zen Old Mincho", "serif";
    font-weight:500;
    color:var(--base-color);
}

#info h2, #lesson h2, #students_voice h2, #instructor h2, #retreat h2, #culture h2, #form h2{
	position: relative;
	display: flex;
	padding-bottom: 1rem;
	margin-bottom:3rem;
	text-align:center;
	justify-content: center;
}

#info h2:before, #lesson h2:before, #students_voice h2:before, #instructor h2:before, #retreat h2:before, #culture h2:before, #form h2:before{
  content: '';
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 2rem;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--base-color);
  border-radius: 2px;
}

.fadein{
	animation-name:fadeInAnime;
	animation-duration:3s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#info{
	padding:5rem 1rem;
	background-color: var(--back-color);	
}
#retreat{
	padding:5rem 1rem;
	background-color: var(--white-color);
}
#lesson{
	padding:5rem 1rem;
	background-color: var(--white-color);
}
#class_special{
	padding:5rem 1rem;
	background-color: var(--white-color);
}
#instructor{
	padding:5rem 1rem;
	background-color: var(--pale4-color);	
}
#students_voice{
	padding:5rem 2rem;
	background-color: var(--pale04-color);
}
#students_voice hr{
	margin-top: 1rem;
	margin-bottom: 1rem;
	border-width: 0;
	border-top: 3px dotted #E1E1E1;
}
.students_voice h8 {
    display:block;
    font-weight:600;
    color:var(--base-color);
    padding:2rem 1rem 1rem;
    margin-bottom:1rem;    
    border-bottom:1px solid var(--base-color);
}
.students_voice p{
    font-size:0.85em;
    font-weight:normal;
    color:var(--base-color);
	background:var(--base-pale3-color);
    padding:1rem;
}
.toiawase{
    max-width:768px;
    margin:auto;
}
.toiawase p{
	display:block;
	text-align:center;
	margin: 3rem 1rem -1rem;
	padding:.5rem;
	color:var(--base-color);
	font-weight:500;
	background:white;
	border: 1px solid var(--base-color);
}
#culture{
	background-color: var(--pale04-color);
	padding:5rem 1rem;
	z-index:0;
}
#form{
	background-color: var(--back-color);
	padding:5rem 1rem;
}
.instructor{
	max-width:768px;
    margin:auto;
}

#info h3, #retreat h3{
    margin:2rem auto;
    text-align:center;
    font-weight:700;
    color:var(--base-color);
}
#info h3 span{
    display:inline-block;
	font-size:80%; 
    letter-spacing:0;
}
#retreat h3 span{
    display:inline-block; 
    background-color:var(--base-pale3-color);
    margin-top:1rem;
    padding:0 2rem;
    font-size:75%;
    font-weight:500;
    letter-spacing:0;
}

#retreat h7{   
    display:inline;
    text-align: center;
    background:var(--base-pale2-color);
	font-size:1em;
    margin:0.3rem;
    padding:0 0.5rem ;
}

#info p{margin-bottom:2rem;}

.top_title{    
	margin-top:0;
    padding:4rem 2rem;
	background-color: rgba(255,255,255,0.4);
}
.top_title h2 {
    display:block;
    font-family:"Zen Old Mincho", "serif";
    color:var(--base-color);
    font-size:2.2rem;
    font-weight:500;
    margin:0;
    text-align:center;
}
#top p{
    display:block;
    max-width:640px;
    margin:auto;
    padding:5rem 2rem;
	font-size:16px;
    font-weight:500;
    color:var(--base-color);
    line-height:2.4;
}

@media screen and (min-width: 550px){
    #top p {
    font-size:18px;
}
}
	
.lesson{
	max-width:768px;
    margin:auto;
}
#lesson h4{
	position:relative;
	margin-top:3rem;
	padding-left:40px;
}

#lesson h4:before{
 content:"";
 position:absolute;
 background:var(--base-pale2-color);
 width:30px;
 height:30px;
 border-radius:50%;
 top:50%;
 left:10px;
 transform:translateY(-50%);
}

.flex{
    display:flex;
}

#instructor h3{	
    background-color:var(--pale2-color);
	font-weight:500;
	padding:1rem;
	margin-bottom:1rem;
	text-align:center;
}
.instructor > .flex{margin-bottom:1rem;}
.instructor item{
    padding:1rem;
    margin-right:1rem;
	width:50%;
	text-align:center;
}
.instructor item:nth-child(even){
    margin-right:0;
}

.class-menu{
    max-width:768px;
    margin:auto;
	justify-content: space-between;
}
.flex .col.span-6 {
    flex: 0 0 49%;
    max-width: 49%;
    position:relative;
	margin:1rem 1rem 0 0;
}
.flex .col.span-6 p {
   font-size:0.9em; position:absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
    color:var(--base-color);
    background-color:rgba(255, 255, 255, 0.7);
}

.flex .col.span-6 img {
    width: 100%;
}

#retreat img{padding:2rem 0rem;}

.students_voice {
    display: flex;
    flex-direction: row;
	background:white;
	max-width:768px;
	margin:auto;
	padding:1rem;
}
.students_voice p{
    font-size:0.9em;
}
.students_voice .col.span-5 {
    flex: 0 0 39.3%;
    max-width: 39.3%;
}
.students_voice .col.span-5 img{
   border-radius:50%;
	padding:2rem 1rem;
}

.students_voice .col.span-7 {
    flex: 0 0 56.6%;
    max-width: 56.6%;
}
@media screen and (min-width: 550px){
    .students_voice .col.span-5 {
    flex: 0 0 25%;
    max-width: 25%;
}
    .students_voice .col.span-7 {
    flex: 0 0 65%;
    max-width: 65%;
}
}
.under {
    border-bottom: 0.1rem solid var(--base-color);
    padding:0 1rem 1rem 1rem;
}
.center {
	text-align: center;
}

#class_special_schedule{
    max-width:768px;
    margin:auto;
    padding:1rem;
}

a.btn_viewmore {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 12em;
	margin: 0 auto 2em;
	padding:0.3em;
	font-size:0.9em;
	font-weight: 600;
    color: var(--base-color);
	background: var(--base-pale2-color);
	border-radius: 100vh;
	transition: 0.5s;
}
a.btn_viewmore:hover {
	color: var(--white-color);
	background: var(--base-color);
}

.btn_viewmore i{
  margin-left: 1rem;
}

a.btn_viewmore_02 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 20em;
	margin: auto;
	padding:0.3em;
	font-size:0.9em;
	font-weight: 300;
    color: var(--base-color);
	background: var(--pale2-color);
	border-radius: 100vh;
	transition: 0.5s;
}
a.btn_viewmore_02:hover {
	color: var(--base-color);
	background: var(--pale1-color);
}

.btn_viewmore_02 {
	text-align:center;
}
.btn_viewmore_02 i{
  margin-left: 1rem;
}

.btn_arrow{
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    color: #333;
    text-decoration: none;
    outline: none;
	font-size:0.8em;
}
.btn_arrow::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
  position: absolute;
    bottom:5px;	
    left:90%;
    /*下線の形状*/    
    width: 2rem;
    height: 1px;
  background:#333;   
}

.btn_arrow::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:8px;
    left:100%;
    /*矢印の形状*/    
    width: 1rem;
    height:1px;
	background:#333;
    transform: rotate(35deg);  
}

.btn,
a.btn,
button.btn {  
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.rem;
    bottom:0;
}

a.btn-c {
  font-size: 1.1rem;
  position: relative;
  padding: 1.5rem 1rem 1.5rem 1rem;
  border-radius:5px;
}

a.btn-c i.fa {
  margin-right: 1rem;
}
@media screen and (min-width: 768px){
a.btn-c {  
  padding: 1.5rem 5rem 1.5rem 5rem;
}
} 

a.btn_large-c {
  font-size: 1.5rem;
  text-align:center;
  position: relative;
  padding: 1.5rem 1rem 1.5rem 1rem;
  margin:1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
  
a.btn_large-c i.fa {
  margin-right: 1rem;
}

#info hr, #retreat hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; 
}
@media screen and (min-width: 550px){
 #info hr {display:none;}
}
    
.information {
    max-width:980px;
    margin:auto;
    padding:0 1rem;
}

.retreat{
	max-width:768px;
    margin:auto;
    padding:0 1rem;
}

.intro {
	max-width:980px;
    padding:3rem auto;
}

.flex-start{
	align-items: flex-start;
}

.instructor_name{
	margin:2rem 0;
}

.instructor img{
    margin:0;
	padding:0;
}

.instructor_top {
    margin-bottom:3rem;
    padding:1rem 1rem 3rem;
}
.instructor_top img{
    padding:3rem;
}

.instructor h7{
    font-size:1.3em; 
	font-weight:500;
	line-height:1;
	letter-spacing: 0.2rem;
}
.instructor h7 span{
    font-size:0.7em; 
	font-weight:300;
}
.instructor hr{
	margin-top:1rem;
	margin-bottom:1rem;
	border-top: 1px solid var(--border-color);
}

#culture span{
	padding:0 1rem;
}

a.btn--toiawase {
  color: var(--white-color);
  background-color: var(--base-color);
  border:1px solid var(--base-color);
}

a.btn--toiawase:hover {
  color: var(--base-color);
  background: var(--base-pale2-color);
}


@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}
article {
	margin:0 0 5rem;
}

.culture {
	max-width:768px;
	margin:auto;
	padding:1rem;
}

.culture h3 {
    background: var(--pale4-color);
    border-top:1px solid var(--border-color);
    border-bottom:1px solid var(--border-color);
    margin:0 -0.5rem;
    padding:2rem 1rem;
    color:var(--base-color);
    font-size:1.0em;
    letter-spacing:0.01em;
}

/*.culture h4 {    padding:3rem 0;
	text-align:center;
	line-height:1.5;
	font-weight:600;
	color:var(--base-color);
}	
*/
.culture h4 {  
    position: relative;
    padding: 3rem 0 1.5rem;
	color:var(--base-color);
    font-weight: 600;
	line-height:1.5;
    text-align: center;
}

.culture h4:before {
    position: absolute;
    width: 110px;
    height: 110px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background: var(--pale2-color);
    transform: translate(-50%, -50%);
    content: '';
    z-index: -1;
}

.title_bg_circle{
	position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 1rem;
    box-sizing: border-box;
    z-index: 0;
}
.culture h5 {
	padding:2rem 0;
	text-align:center;
	line-height:1.5;
	font-weight:600;
	color:var(--base-color);
}

._bg_round{
  background-color: white;
  background-image: -webkit-radial-gradient(circle, #fedcd6 15%, var(--pale2-color) 35%, white 50%);
  background-image: radial-gradient(circle, #fedcd6 5%, var(--pale2-color) 20%, white 40%);
  max-width:768px;
  padding:calc(100vw/8) 0;
}
.form {
    margin: auto;
    max-width: 768px;
    padding: 0 1rem;
}
.form th, .form td{
    padding: 0 ;
}
.form p{ font-size:0.9em; line-height:1.4em;}
#form span{font-size:85%; }
#form .notice{display:block; border:1px solid #333; padding:0.5rem;}

.intro_msg {
	display: block;
    margin:auto;
	text-align:center;
	font-family:"Zen Old Mincho", "serif";
	font-size:2.2rem;
	line-height: 2.0;
	letter-spacing:-0.1rem;
	color: var(--base-color);
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

.students_comment {
    background:white;
    padding:0 1rem 5rem;
    font-size:0.9em;
}

.borderbox {border:1px solid var(--base-color);
	
}

._monthly_message {
	width:100%;
	max-width:700px;
	margin:auto;
}

.monthly_message {
	background-color:rgb(255, 251, 248); 
	padding-top:5rem;
	padding-bottom:5rem;
}

/*pc/sp切り替え
-------------------------------------*/

@media screen and (max-width: 550px){
.msg_pc{display:none;}
.msg_sp{
	width:100%;
	margin: auto;
	padding:1rem;
}
}
@media screen and (min-width: 550px){
.msg_sp{display:none;}
.msg_pc{
	width:100%;
	max-width:700px;
	margin: auto;
	padding:1rem;
}
}