@charset "utf-8";
/*---------------------------------
リセットｃｓｓ
---------------------------------*/
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box
}

  
.js-fadeinup-trigger,
.js-fadein-trigger {
  opacity: 0;
}	

html {
  font-size: 100%;
  overflow-x : hidden;
  -webkit-overflow-scrolling: touch;
  backface-visibility:hidden;			
}
  
body {
  color: #262626;
  font-family: Segoe UI, Segoe UI Midlevel, Segoe WP, Arial, Sans-Serif;
  background-color: #fffcfc;
  line-height: 2;
  overflow-x: hidden!important;
}
		
  
a{
  text-decoration: none;
  word-break: break-all;
  /*改行しなければテキストがコンテンツボックスからあふれる場合に、
  ブラウザーが改行を挿入するかどうかを指定します。*/

}

img{
  max-width: 100%;
  height: auto;
}

p {
  font-size: 1rem;
  text-align: justify;
}
li{
  list-style: none;
  font-size: 1rem;
}
.wrapper{
 max-width: 1100px;
 margin: 0 auto 130px auto;
 font-size: 0.9rem;
 padding: 0 4%;
}


.button {
  position: relative;
  display: inline-block;
  padding: 0.8em 7em;
  text-decoration: none;
  color: white;
  background: #CB5266;/*色*/
  border: solid 1px #CB5266;/*線色*/
  border-radius: 25px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
 
}


/* ヘッダー */
header{
  width:1300px;
  display: flex;
  justify-content: space-between;
  align-items:center;
  margin: 0 auto;
  padding: 10px 4%;
  background-color: white;
  margin-bottom: 20px;

}
header .pc img {
width: 300px;
}

.head_menu .flex {
display: flex;
}

.head_menu .box-a a:hover{
opacity: 0.5;

}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
.head_menu .boxs img {
width: 250px;
}


@media screen and (max-width:600px) {
.wrapper{
  padding: 0 5%;
}  
header{
position: fixed;
padding: 4px;
width: 100%;
top:0;
left:0;
border-bottom: solid 1px;
margin-bottom: 0px;    
}
.pc { 
display: none !important; 
}
.sp { display: block !important; }
.head_menu {
display: none;
}
.marquee {
display: none;
}
.button {
width: 300px;
margin: 5px;
font-size: 16px;
text-align: center;
}
}
             
nav .inner {
display: none;
}

@media screen and (max-width:600px) {

body{
font-weight: 400;
}
nav {
display: block;
width: 220px;
position: fixed;
background-color: #ffffff;
top: 0;
left: -300px;
bottom: 0;
transition: all 0.5s;
z-index: 999;
opacity: 0;
}
.open nav {
left: 0;
opacity: 1;
}

nav .inner {
display: block;
padding: 25px;

}
nav .inner ul {
list-style: none;
margin: 0;
padding: 0;

}

nav .inner ul li {
margin: 0;
border-bottom: 1px solid #333;
}
nav .inner ul li a {
display: block;
text-decoration: none;
color: #333;
font-size: 14px;
padding: 1rem;
transition-duration: 0.2s;
}
nav .inner ul li a:hover {
background-color: #e4e4e4;
}

.toggle-btn {
display: block;
position: fixed;
top: 10px;
right: 30px;
width: 30px;
height: 30px;
z-index: 3;
cursor: pointer;

}
.toggle-btn span {
position: absolute;
display: block;
left: 0;
width: 30px;
height: 2px;
background-color: #333;
transition: all 0.5s;
border-radius: 4px;
}
.toggle-btn span:nth-child(1) {
top: 4px;
}
.toggle-btn span:nth-child(2) {
top: 14px;
}

.toggle-btn span:nth-child(3) {
bottom: 4px;
}
.open .toggle-btn span {
background-color: #fff;
}
.open .toggle-btn span:nth-child(1) {
transform: translateY(10px) rotate(-315deg)
}
.open .toggle-btn span:nth-child(2) {
opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
transform: translateY(-10px) rotate(315deg)
}

#mask {
display: none;
transition: 0.5s;
}

.open #mask {
display: block;
background-color: #000;
width: 100%;
height: 100%;
top: 0;
left: 0;
position: fixed;
opacity: 0.3;
cursor: pointer;
}

}

.menu_lists {
 display: flex;
}
.menu_list {
 width: 130px;
 height: 60px;
 position: relative;
 transition: all .3s;
}
.menu_list:hover {
 background-color: #F1B0B2;
}
.menu_list:not(:first-child)::before {
 content: "";
 width: 1px;
 height: 100%;
 background-color: #fff;
 position: absolute;
 top: 0;
 left: 0;
 transition: all .3s;
}
.menu_list:hover::before {
 background-color: #F1B0B2;
}
.menu_list a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 100%;
 text-decoration: none;
 color: #CB5266;
 font-size: 14px;
 letter-spacing: 0.05em;
 font-weight: 600;
 transition: all .3s;
}
.menu_list:hover a {
 color: #fff;
}
.dropdown__lists {
display: none;/*デフォルトでは非表示の状態にしておく*/
width: 100%;
position: absolute;
top: 60px;
left: 0;
}
.menu_list:hover .dropdown__lists {
display: block;/*Gナビメニューにホバーしたら表示*/
z-index: 999;
}
.dropdown__list {
background-color:#CB5266;
height: 60px;
transition: all .3s;
position: relative;
padding-left: 4px;
}
.dropdown__list:not(:first-child)::before{
content: "";
width: 100%;
height: 1px;
background-color: #CB5266;
position: absolute;
top: 0;
left: 0;
}
.dropdown__list:hover {
background-color: #CB5266;
}

@media screen and (max-width:600px) {
.menu_wrap {
 display: none;
}
.menu_lists {
 display: none;
}
}


h1 {
  padding: 15px 0;
  line-height: 2;
  font-size: 28px;
  text-align: center;
}
h1 strong {
  font-size: 30px;
  background: linear-gradient(transparent 50%, #41e5fb 50%);
}
h1 span {
  display: inline-block;
}
.title_2 {
  margin-top: 80px;
}


.sp {
  display: none;
} 
@media screen and (max-width:840px) {

}
@media screen and (max-width:600px) {
   
h1 {
  margin-top: 70px;
  line-height: 1.3;
  font-size: 23px;
  margin-bottom: 30px;
}
   
h2{
  font-size: 1.2rem;
 
}
h2 span {
  display: inline-block;
}
h3 span {
  display: inline-block;
}
.pc {
  display: none;
}

.title_2 {
  margin-top: 80px;
}
#top .under {
  text-decoration : none;
}
}

@media screen and (max-width:376px) {
.wrapper{
  padding: 0 8px;
}
}

@media screen and (max-width:320px) {
p {
  font-size: 15px;
}

}
b{
  font-size: 1.2rem;
  background: linear-gradient(transparent 65%, #c1e0ff 65%);
}
.top_con_a {
  margin-top: 40px;
}
.top_con_p {
  margin-bottom: 25px;
}

.top_con_c {
  margin-bottom: 40px;
}
@media screen and (max-width:600px) {


.top_sp {
  text-align: left;
}

}

.secondary {
  max-width: 1400px;
 margin: 0 auto 130px auto;
 font-size: 0.9rem;
 padding: 0 4%;

}
.secondary h2 {
  font-size: 1.5rem;
  border-left: solid 10px #F1B0B2;
  padding: 0.25em 0.5em;

}
.secondary .flex {
  display: flex; 
}
.secondary .box {
  width: 50%;
  height: auto;
  margin: 0 30px 80px 30px;
}
.secondary img {
  border-radius: 50%;

}
.secondary strong{
  font-size: 17px;
  color: #E30021;
}
.secondary .box p{
  font-size: 0.9rem;
}
.note {
  font-size: 0.7rem;
  margin-top: 30px;
}
@media screen and (max-width:600px) {

.secondary {
  margin-bottom: 50px;
  padding: 0;
  margin: 0;
}
.secondary .flex {
  flex-direction: column;
  margin-bottom: 60px;
}
.secondary .number {
  margin-top: 40px;
}
.secondary .box {
  padding: 0;
  width: 100%;
  height: auto;
  margin: 0;
}

.secondary .box p {
  padding-top: 8px;
}
.secondary .balloon1-left p{
  font-size: 14px;
}
.secondary img {
  width: 100%;
  height: auto;
}

.secondary h4 span{
  display: inline-block;
}
.pc { 
  display: none !important; 
}
.sp { display: block !important; }  
  
}
@media screen and (max-width:320px) { 
.secondary h4{
  font-size: 16px;
}
.secondary strong{
  font-size: 16px;
}
}

/*---------------------------------
トップ
---------------------------------*/
  
#main-contents .flex{
  display: flex;
  margin: 30px 0;
}
#main-contents .box{
  padding: 10px;
}
#main-contents h2 {
  font-size: 1.5rem;
  border-left: solid 10px #F1B0B2;
  padding: 0.25em 0.5em;
  margin: 40px 0 20px 0;
  
}
#main-contents h3 {
  margin: 20px 0;
}
#main-contents img {
  width: 600px;
  height: auto;
}
.conte_p {
  margin-top: 20px;
}
@media screen and (max-width:600px) {


#main-contents h2 {
  font-size: 1.5rem;
  border-left: solid 10px #F1B0B2;
  padding: 0;
  text-align: center;
  border-right: solid 10px #F1B0B2;

}
#main-contents h2 span{
  display: inline-block;
}

.main-contents_illust{
  width: 100%;
  margin-left: 0px;
}

#main-contents img {
  display: none;
}

}
/*---------------------------------
体験
---------------------------------*/
#contents {
  line-height: 2;
  margin-bottom: 50px;
}
#contents h2 {
  font-size: 1.5rem;
  border-left: solid 10px #F1B0B2;
  padding: 0.25em 0.5em;

}
#contents h2 span {
  display: inline-block;
}

#contents h3{
  font-size: 22px;
  text-align: left;
  margin-left: 15px;
  margin-bottom: 10px; 
  text-decoration: underline;
  color: red;
}
#contents h3 span {
    display: inline-block;
  }
#contents h4{
  padding: 20px 15px 25px 15px;
  text-align: left;
  font-size: 17px;
}
   
#contents .flex{
    display: flex;
    margin:  50px 0 5px 0;
    background: white;
}
#contents .flex .box p{
  margin-left: 15px;
  font-size: 16px;

}

#contents .contents_photo {
  width: 400px;
  height: auto;
  box-shadow: 10px 10px 10px 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-top: 20px;
}
#contents .box {
  margin-bottom: 20px;
  padding: 20px;
}
  

#contents .sentence {
  margin: 30px; 
  columns: 2 15em;
  column-gap: 2em;
  column-rule: 2px dotted #24292e;
} 
  
@media screen and (max-width:600px) {
#contents {
  padding: 0;

}
#contents .title_2{
  text-align: center;
  border-right: solid 10px #F1B0B2;
  line-height: 1.5;
  margin-bottom: 10px;
  padding: 0;
  font-size: 1.3rem;
  margin-top: 80px;
}
#contents h3{
  font-size: 1.1rem;
  margin: 20px 0 10px 0;
  text-align: center;
      
}
#contents h4{
  font-size: 1.1rem;
  text-align: center;
}
#contents .flex{
  flex-direction: column;
  margin: 0;
} 
#contents h5{
  font-size: 18px;
  text-align: center;
}
#contents .photo img{
  width: 100%;
  box-shadow: none;
  margin-top: 40px;
}
#contents .box {
  width: 100%;
  padding: 0px;
}

#contents .box:nth-child(1) {
  order: 2;
}

#contents .box:nth-child(2) {
  order: 1;
}
.content-button {
  text-align: right;
}

#contents .flex .box p{
  margin-left: 0;
  width: 100%;
}

   
#contents .title_o {
  margin: 0;
  font-size: 18px;
}   
#contents .title_r {
  margin: 0;
  font-size: 18px;

}   
#contents .title_x {
  margin: 0;
  font-size: 18px;
}   
#contents .sentence {
  margin: 0;  
}        
}
@media screen and (max-width:320px) { 

#contents h2{
  font-size: 1.1rem;

}

}

#sub-content .flex {
  display: flex;
  margin-top: 60px;
}
#sub-content h2 {
  font-size: 1.5rem;
  border-left: solid 10px #F1B0B2;
  padding: 0.25em 0.5em;
  margin-top: 80px;
}
#sub-content .title_3 {
  margin-top: 30px;
  font-size: 1.6rem;
  margin-left: 10px;
  padding: 0.5em 1em;
  color: #2c2c2f;
  background: #cde4ff;/*背景色*/
  display: inline-block;
}
#sub-content .sub_flex {
  display: flex;
  margin-top: 60px;
}
#sub-content .box {
  width: 50%;
  padding: 10px;
}
#sub-content .photo_z {
  width: 400px;
}
#sub-content ul li{
  margin: 7px 0;
  text-decoration: underline;
}

#sub-content .box .circle {
  height:30px;
  width:30px;
  border-radius:50%;
  line-height:30px;
  text-align:center;
  background:pink;
  font-size:20px;
  margin-left:20px;
  display: inline-block;
  margin-right: 10px;
}
#sub-content strong {
  color: #E30021;
  font-size: 1.2rem;
}

#sub-content .sub_photo {
  width: 180px;
  height: 250px;
  margin: 0 10px;
}
.character_a {
  margin-left: 40px;
  font-size: 14px;
}
 
.character_b {
  margin-left: 50px;
}

@media screen and (max-width:600px) {

#sub-content .flex {
  flex-direction: column;
  margin-top: 0;
}
#sub-content .sub_flex {
  flex-wrap: wrap;
  justify-content: space-around;
}
#sub-content .box {
  width: 100%;
}
#sub-content .photo_z {
  margin-top: 20px;
}
#sub-content .sub_photo {
  width: 130px;
  height: 200px;
}

#sub-content .title_top2{
  text-align: center;
  border-right: solid 10px #F1B0B2;
  line-height: 1.5;
  margin-bottom: 10px;
  padding: 0;
  font-size: 1.5rem;
  margin-top: 80px;
}
#sub-content .box .circle {
  margin-left:0px;
}

#sub-content .title_3 {
  text-align: center;
}
#sub-content .subtitle_3 {
  margin-top: 50px;
  text-align: center;
}
#sub-content .sp {
  text-align: center;
}
.character_a {
  margin-left: 20px;
  font-size: 14px;
}
 
.character_b {
  margin-left: 30px;
}

.title_k {
  padding: 15px 12px;
}
.title_k p span {
  display: inline-block;

}
}

@media screen and (max-width:320px) { 
  
.photo_t {
  padding-left: 0;
  padding: 10px;
}
}

/*---------------------------------
チェックリスト
---------------------------------*/

#catch .flex {
  display: flex;
}

#catch .box {
  margin: 10px;
}
#catch strong {
  margin: 20px;
}
#catch h2 {
  font-size: 1.5rem;
  border-left: solid 10px #F1B0B2;
  padding: 0.25em 0.5em;
  margin-top: 80px;
}
@media screen and (max-width:600px) {

#catch h2 {
  font-size: 1.5rem;
  border-left: solid 10px #F1B0B2;
  padding: 0;
  margin-top: 100px;
  text-align: center;
  border-right: solid 10px #F1B0B2;
}
#catch h2 span {
  display: inline-block;
}

#catch .flex {
  flex-direction: column;
}
}
/*---------------------------------
本
---------------------------------*/
#book .flex {
  display: flex;
}
#book .box {
  padding: 22px;
}
#book h3 {
  font-size: 1.1rem;
}
#book h4{
  padding: 0.25em 0.5em;
  font-size: 1.2rem;
  border-left: solid 10px #c1e0ff;
}
#book .present {
  margin: 30px 0;
}
#book .text {
  width: 50%;
  margin: 10px;
}
#book .box_k img {
  padding: 20px;
} 
#book .book_bp {
  margin-bottom: 20px;

}
@media screen and (max-width:600px) {
#book .flex {
  flex-direction: column;
  
}
#book .title_2 {
text-align: center;
border-right: solid 10px #F1B0B2;
line-height: 1.5;
margin-bottom: 10px;
padding: 0;
font-size: 1.3rem;
margin-top: 80px;
}
#book .title_2 span{
  display: inline-block;
}

#book .title_3 {
  text-align: center;
}
#book h4 span{
  display: inline-block;
}
#book img {
  width: 100%;
}
#book .box .book_price {
  text-align: center;
}
#book .book_photo {
  margin: 30px 0;
}

#book .text {
  width: 100%;
  margin: 0px;
}
}

/*---------------------------------
もくじ
---------------------------------*/
@media screen and (max-width:600px) {
.table_contents .text p{
  max-width: 100%;

}
}

/*---------------------------------
著者
---------------------------------*/
#author {
  margin-top: 80px;
}
#author .flex {
  display: flex;
  justify-content: center;
  align-items:flex-start;
}
#author .box {
  padding: 10px;
}
#author .box p {
  font-size: 15px;
}
.photo-a {
  max-width: 500px;
  height: auto;
  box-shadow: 2px 2px 4px gray;
}

#author h3 {
  margin: 0px 0px 20px 0;
  font-size: 1rem;
}
#author h5 {
  text-align: center;
}
#author .point {
  color:#E30021;
  margin-left: 10px;
}
#author strong {
  color:blue;
  font-size: 16px;
}
#author b {
  font-size: 14px;
}
.book-img {
  width: 100px;
  height: auto;
  margin: 20px;
}

.book-title {
  font-size: 13px;
}
.book_wrap {
  margin: 0px 10px;
}
.book_wrap p{
  font-size: 11px;
}
.one-g {
  color: #CB5266;
}
.book_p {
  margin-left: 20px;
}

.books .flex {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
#supervision {
  margin-top: 80px;
}
#supervision .flex {
  display: flex;
  justify-content: center;
  align-items:flex-start;
}

#supervision .box {
  padding: 10px;
}
#supervision .box p {
  font-size: 15px;
}

#supervision h3 {
  margin: 0px 0px 20px 0;
  font-size: 1rem;
}
#supervision h5 {
  text-align: center;
}
#supervision .point {
  color:#E30021;
  margin-left: 10px;
}
#supervision strong {
  color:blue;
  font-size: 16px;
}

#supervision b {
  font-size: 14px;
}

.photo-b {
  width: 600px;
  height: auto;
  box-shadow: 2px 2px 4px gray;
}
#supervision .box .title_5 {
  font-size: 20px;
}
@media screen and (max-width:835px) { 
  
.books .flex {
  display: flex;
  flex-wrap: wrap;
}
}
@media screen and (max-width:600px) {
  
.book_p {
  text-align: center;
  margin-left: 0;
}

#author .box h3 {
  font-size: 1.2rem;
  text-align: left;
}
#author h4 {
  font-size: 1.2rem;
  text-align: center;
}

#supervision .flex {
  flex-direction: column;
}

.photo-a {
  width: 300px;
  height: auto;
}
}
@media screen and (max-width:320px) { 
  
#author .title_one-a {
  font-size: 18px;

}

#author h4 {
  font-size: 17px;
}
}
/*---------------------------------
主任ご挨拶
---------------------------------*/
#one-b .flex {
  display: flex;
  justify-content:space-between;
  align-items:flex-start;
}
#one-b .box {
  padding: 10px;
}
#one-b h3 {
  margin-bottom: 20px;
  font-size: 20px;

}
#one-b h3 strong{
  font-size: 20px;
}
#one-b h4 {
  margin: 20px 0;
  font-size: 17px;
}
#one-b {
  margin-top: 100px;
}
#one-b .box22 {
  margin-bottom: 20px;
}
#one-b img {
  width: 400px;
  height: auto;
}
#one-b p strong {
  font-size: 16px;
  color: #E30021;
}




@media screen and (max-width:600px) {
#author .flex {
  flex-direction: column;
}
#author .profile{
  display: none;
}
#author h2 {
  font-size: 23px;
}
#author h3 {
  text-align: center;
}
#author h3 span {
  display: inline-block;
}
#one-b h2 {
  font-size: 22px;
}
#one-b .box22 {
  text-align: left;
  margin-bottom: 20px;
}
#one-b .flex {
  flex-direction: column;
}
#one-b .box:nth-child(1){
  order: 2;
}
#one-b .box:nth-child(2){
  order: 1;
}
#one-b p {
  text-align: left;
}
#one-b img {
  width: 100%;
  height: auto;
}
 
#one-f .flex {
  flex-direction: column;
}
.book_wrap {
  text-align: center;
}
#one-f h3 {
  padding-left: 0px;
}
.book-title {
  margin-left: 15px;
}

}
@media screen and (max-width:320px) { 

#one-b h3 {
  font-size: 17px;

}
}

 
@media screen and (max-width:2000px) {
  
.button_a {
  padding: 0.8em 8em;
}
}

@media screen and (max-width:600px) {
    
 .button_a {
  padding: 0.8em 3em;
 }
 .consultation_button{
  margin-top: 30px;
 }

}

.important_button {
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width:600px) {
  
.important_button .button{
  padding: 10px;
  margin-top: 30px;
}
}
/*---------------------------------
トップへもどるボタン
---------------------------------*/

.go-top{
     position: fixed;
     bottom: 10px;
     right: 20px;
     z-index: 9999;
   }
.go-top a{
     width: 50px;
     height: 50px;
     display: inline-block;
     background: #E94E66;
     border-radius: 50%;
     text-align: center;
     line-height: 50px;
     color: black;
     text-decoration: none;
   }
 
.go-top a:hover{
       opacity: 0.8;
     }

@media screen and (max-width:835px) {
   
.go-top{
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  left: 10px;

}
}
@media screen and (max-width:600px) {
  
.go-top{
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  left: 10px;

}
}





