@charset "utf-8";


/* ----------------------------------------------------------------------
	
	 Atelier Kanae Des arts et des ailes　css
	
---------------------------------------------------------------------- */


/* - 共通内容

---------------------------- */


html {
	/*-webkit-font-smoothing: antialiased;*/
	font-size: 62.5%;
}


body {
	font-size: 100%;
	font-family: 'Montserrat' , 'M PLUS 1', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
	/*-webkit-font-smoothing: subpixel-antialiased;*/
	word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  color: #564239;
  line-height: 1.6;;
}


a {
	text-decoration:none;
	color:#000000;
}

img {
	max-width: 100%;
  width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
}

br.sp {
	display:none;
}


i {
  margin-right: 0.4em;
}

#wrapper {
	width:100%;
	position:relative;
	font-size: 1.5rem;
}

#wrapper * { box-sizing: border-box; }

figcaption {
  margin-top: 8px;
}

.note > li {
  display: table;
  font-size: 1.2rem;
  color: #777;
}

.note > li + li {
  margin-top: 5px;
}

.note > li > span {
  display: table-cell;
  padding-right: 0.4em;
}

.note > li > span.cap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

.dot_list > li {
  padding-left: 1em;
  text-indent: -1em;
}

.dot_list > li + li {
  margin-top: 3px;
}

/* ------------------------------------------------------------

	共通パーツなど

------------------------------------------------------------ */


#contentsbody {
  padding: 0 0 60px;
}

#contentsbody .content section {
  padding: 0 15px;
}

.-ttl {
  font-family: 'Lora','Noto Sans JP', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.07em;
  margin-bottom: 35px;
}

/* - メニュー
---------------------------- */

.nav_inner {
  width: 100%;
  background-color: #53A1A8;
  padding: 15px 0;
}

.nav_inner .menu .left img {
  max-width: 140px;
  width: 100%;
}

.nav_inner .menu .left a {
  display: block;
}

.nav_inner .menu .right {
  display: flex;
}

nav {
  font-family: 'Lora','Noto Sans JP', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
  /*text-align: right;*/
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
}

nav ul {
  display: inline-block;
}

nav ul > li {
  display: inline-block;
}

nav ul > li + li {
  margin-left: 20px;
}

nav ul > li a {
  font-size: 1.35rem;
  color: #FFF;
  display: block;
  position: relative;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}

nav ul > li a:hover {
  color: #d9d9d9;
}

.res_menu {
    display: none;
}

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

nav ul.g-nav {
  display: none;
}


.res_menu {
    display: inline-block;
    /*position: absolute;*/
    /*left: 15px;
    top: 50%;*/
    /*transform: translateY(-50%);*/
}

}


.toggle {
    display: inline-block;
    position: relative;
    z-index: 400;
    text-align: center;
}
.toggle:hover {
    cursor: pointer;
}
.toggle a {
    color: #444;
}

.menu-trigger, .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.menu-trigger {
    position: relative;
    width: 24px;
    height: 18px;
}
.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    border-radius: 4px;
}
.bg_top .menu-trigger span {
    background-color: #FFF;
}
.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger span:nth-of-type(2) {
    top: 8px;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

/* - オーバーレイ部分
---------------------------- */
.overlay {
    content: '';
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 3;
    z-index: 400;
}
.overlay::after {
    visibility: hidden;
    position: fixed;
    top: 40%;
    left: 0;
    display: block;
    width: 100%;
    height: 50px;
    color: rgba(255, 255, 255, 0);
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.side-open .overlay {
    visibility: visible;
    cursor: pointer;
    background: rgba(189, 189, 189, 0.7);
    -webkit-transform: translate3d(260px, 0, 0);
    transform: translate3d(260px, 0, 0);
}
/* サイドメニュー ※リストのスタイルは省略 */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    text-align: left;
    padding-top: 40px;
    z-index: 1;
    color: #FFF;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: translate3d(-260px, 0, 0);
    transform: translate3d(-260px, 0, 0);
    background-color: #FFF;
    
}
.side-menu .menu-trigger span {
    background-color: #444;
}
.side-menu .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}
.side-menu .menu-trigger span:nth-of-type(2) {
    opacity: 0;
}
.side-menu .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}
.side-menu .sm_title {
    padding: 0 20px;
    margin-bottom: 30px;
}
.side-menu .sm_title h2 {
    font-weight: normal;
    border-bottom: 1px solid #565656;
    padding-bottom: 4px;
    font-size: 1.3rem;
}
.menu_body {
    padding: 0 20px;
}
.side_list {
    margin-top: 40px;
}

.side_list > li + li {
    margin-top: 30px;
}


.side_list > li > a {
    display: block;
    color: #555;
    font-weight: bold;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 1.4rem;
}


.side_list > li > a:hover {
    color: #bdbdbd;
}
/* サイドメニューオープン */
.side-open .c_contents, .side-open .overlay {
    /*-webkit-transform: translate3d(-260px, 0, 0);
  transform: translate3d(-260px, 0, 0);*/
}
.side-open .side-menu {
    display: block;
    z-index: 500;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
#side_block {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100vh;
    z-index: 100;
    background-color: #FFF;
}
#side_block .content {
    padding: 60px 25px 10px;
}
#side_block h1 {
    text-align: center;
}
#side_block h1 img {
    max-width: 150px;
    vertical-align: top;
    width: 100%;
}
@media screen and (max-width: 979px) {
    .res_menu.side-no {
        display: none;
    }
    
    .detail_block > ul > li > .content > div.layout h3 {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 479px) {
    .side-open .overlay {
        -webkit-transform: translate3d(220px, 0, 0);
        transform: translate3d(220px, 0, 0);
    }
    /* サイドメニュー ※リストのスタイルは省略 */
    .side-menu {
        width: 220px;
        -webkit-transform: translate3d(-220px, 0, 0);
        transform: translate3d(-220px, 0, 0);
    }
    .side-menu .menu-trigger span:nth-of-type(1) {
        -webkit-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg);
    }
    .side-menu .menu-trigger span:nth-of-type(2) {
        opacity: 0;
    }
    .side-menu .menu-trigger span:nth-of-type(3) {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
    }
    .menu_body {
        padding: 0 15px;
    }
    
    .side-menu .sm_title {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .side_list {
        margin-top: 30px;
    }
    
}




/* - common
---------------------------- */

.-section + .-section {
  margin-top: 120px;
  margin-top: 80px;
}

.-section > .content {
  max-width: 1100px;
  margin: 0 auto;
}

h1.sectionTitle {
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  color: #52A0A6;
  margin-bottom: 70px;
}

h1.sectionTitle > span {
  border-bottom: 3px solid #52A0A6;
  padding: 0 8px 5px;
  position: relative;
}

h1.sectionTitle > span > .ill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#access h1.sectionTitle > span > .left {
  left: -140px;
  max-width: 90px;
}

#access h1.sectionTitle > span > .right {
  right: -150px;
  max-width: 110px;
}

.-center {
  text-align: center;
}

.st-line {
  background:linear-gradient(transparent 60%, #ff6 60%);
}

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

.-section + .-section {
  margin-top: 80px;
}

br.sp {
	display:block;
}

}

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

h1.sectionTitle {
  font-size: 3rem;
  margin-bottom: 50px;
}

#access h1.sectionTitle > span > .left {
  left: -88px;
  max-width: 66px;
}

#access h1.sectionTitle > span > .right {
  right: -92px;
  max-width: 70px;
}

}

/* - KV
---------------------------- */

.kv {
  max-width: 1100px;
  padding: 60px 15px 0;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 100px;
}

.kv img.sp {
  display: none;
}

.kv-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  color: #4c3933;
  margin-bottom: 40px;
}

.kv-title br {
  display: none;
}

.kv-title > .inner {
  position: relative;
}

.kv-title > .inner > .ill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.kv-title > .inner > .left {
  left: -95px;
  max-width: 80px;
}

.kv-title > .inner > .right {
  right: -95px;
  max-width: 82px;
  top: 40px;
}

div.kv-caption {
  font-size: 1.6rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}

div.kv-caption br {
  display: none;
}

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


.kv-title {
  margin-bottom: 20px;
}

.kv-title br {
  display: block;
}

.kv-title > .inner > .left {
  left: -63px;
  max-width: 47px;
}

.kv-title > .inner > .right {
  right: -164px;
  max-width: 60px;
  top: 78px;
}

.kv img.sp {
  display: block;
}

.kv img.pc {
  display: none;
}

.kv {
  max-width: 600px;
  padding: 60px 15px 0;
  margin-bottom: 60px;
}

div.kv-caption br {
  display: block;
}

}

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

.kv-title > .inner > .right {
  right: -119px;
  max-width: 53px;
  top: 73px;
}

}

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

.kv {
  padding: 40px 15px 0;
}

.kv-title {
  font-size: 2.4rem;
}

.kv-title > .inner > .right {
  top: 29px;
}

.kv-title > .inner > .left {
  left: -47px;
  max-width: 41px;
}

}


/* - CONCEPT
---------------------------- */

#concept {
  margin-top: 60px;
}

.-table > .inner {
  display: flex;
  width: 100%;
  align-items: center;
}

.-table.-top > .inner {
  align-items:baseline;
}

.-table > .inner > .left {
  margin-right: 25px;
  width: 50%;
}

.-table > .inner > .right {
  margin-left: 25px;
  width: 50%;
}

#concept .-table.-event > .inner > .right {
  display: flex;
}

#concept .-table.-event > .inner > .right > div:first-child {
  margin-right: 10px;
}

#concept .-table.-event > .inner > .right > div:last-child {
  margin-left: 10px;
}


#workshop .-table.-event > .inner > .right {
  display: flex;
}

#workshop .-table.-event > .inner > .right > div:first-child {
  margin-right: 10px;
}

#workshop .-table.-event > .inner > .right > div:last-child {
  margin-left: 10px;
}

#workshop .-table.-event > .inner > .right img {
  border: 1px solid #efefef;
}

.works-img {
  display: flex;
  column-gap: 10px;
  margin-bottom:40px 
}

#concept h2 {
  font-size: 3.2rem;
  margin-bottom: 30px;
}

#concept .inner .txt {
  font-size: 2.2rem;
  line-height: 1.7;
}

#workshop h2 {
  font-size: 3.2rem;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

#workshop .inner .txt {
  font-size: 2rem;
  line-height: 1.6;
}

#concept .block + .block {
  margin-top: 140px;
}


#concept .point {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 30px;
}

#concept .point > div {
  color: #FFF;
  border-radius:20px;
  padding: 10px 25px;
}

#concept .point > .draw {
  background-color: #fbb363;
  background-color: #ff8c4b;
  margin-right: 10px;
}

#concept .point > .create {
  background-color: #f1999d;
  background-color: #ff555d;
  margin-left: 10px;
}

.-table.concept1 > .inner > .left {
  width: 36%;
}

.-table.concept1 > .inner > .left div + div {
  margin-top: 10px;
}

.-table.concept1 > .inner > .right {
  width: 64%;
}



@media (min-width: 768px) and (max-width: 930px) {

#concept h2 {
  font-size: 2.8rem;
}

#concept .inner .txt {
  font-size: 1.7rem;
}

#concept .block + .block {
  margin-top: 90px;
}

#concept .point {
  font-size: 1.6rem;
}

/*#workshop h2 {
  font-size: 2.8rem;
}*/

#workshop .inner .txt {
  font-size: 1.7rem;
}

}


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

#concept .block + .block {
  margin-top: 100px;
}

.-table > .inner {
  flex-direction: column;
}


.-table > .inner > .left {
  margin-right: 0;
  width: 100%;
}

.-table > .inner > .right {
  margin-left: 0;
  width: 100%;
}

.-table.concept1 > .inner > .left {
  width: 100%;
  display: flex;
  column-gap: 10px;
  margin-top: 30px;
}
.-table.concept1 > .inner > .left div + div {
  margin-top: 0;
}

.-table.concept1 > .inner > .right {
  width: 100%;
}

.-table > .inner > .right {
  margin-top: 30px;
}

.-table.-reverse > .inner {
  flex-direction: column-reverse;
}

.-table.-reverse > .inner > .right {
  margin-top: 0;
}

.-table.-reverse > .inner > .left {
  margin-top: 30px;
}


.-table.concept2 > .inner > .right img {
  max-width: 420px;
}

.-table.concept4 > .inner > .left img {
  max-width: 480px;
}

}

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

#workshop h2 .sp {
  display: block;
}

}

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

#concept h2 {
  font-size: 2.4rem;
}

#concept .inner .txt {
  font-size: 1.6rem;
}

#concept .block + .block {
  margin-top: 70px;
}

#concept .point {
  font-size: 1.6rem;
}

#workshop h2 {
  font-size: 2rem;
}

#workshop .inner .txt {
  font-size: 1.6rem;
}

.works-img {
  flex-direction: column;
  row-gap: 10px;
}

}

.dotpoint li {
  text-align: left;
}

.dotpoint li .inner {
  display: table;
  
}

.dotpoint li .inner > span {
  display: table-cell;
}

.dotpoint li .inner > span.top {
  padding-right: 0.5em;
  color: #49a8bb;
  font-size: 1.4rem;
}

.dotpoint li + li {
  margin-top: 8px;
}

.concept_bottom {
  margin-top: 110px;
}

.concept_bottom .-title {
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#concept .on-bg,#workshop .on-bg {
  background-color: #fffdd5;
  padding: 15px 20px;
  font-size: 2rem;
  border-radius: 8px;
  /*max-width: 600px;*/
  margin: 0 auto;
}

#concept .on-bg span,#workshop .on-bg span {
  color: #49a8bb;
  font-weight: bold;
}

#concept .school img {
  max-width: 130px;
}

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

.concept_bottom .-title {
  font-size: 2rem;
}

#concept .on-bg {
  padding: 10px;
  font-size: 1.8rem;
}

#workshop .on-bg {
  padding: 10px;
  font-size: 1.8rem;
}

}

/* - workshop
---------------------------- */

/*#workshop {
  background-color: #f7f7f7;
}

#workshop > .content {
  padding: 80px 0;
}*/


/*@media screen and (max-width: 639px) {

#workshop > .content {
  padding: 60px 0;
}

}*/

/* - トップギャラリー
---------------------------- */

ul.topgal {
  display: flex;
  column-gap: 15px;
}

ul.topgal li a {
  display: block;
  opacity: 1;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

ul.topgal li a .title {
  margin-top: 5px;
}

ul.topgal li a img {
  border-radius: 8px;
  opacity: 1;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

ul.topgal li a:hover img {
  opacity: 0.6;
}

ul.topgal li a .title svg {
  margin-right: 0.5em;
  vertical-align: middle;
  color: #52A0A6;
}


#topgalley {
  background-color: #f7f7f7;
}

#topgalley > .content {
  padding: 80px 0;
}

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

ul.topgal {
  flex-wrap: wrap;
  column-gap: normal;
}

ul.topgal li {
    width: calc(33.33% - 20px / 3 );
    margin-right: 10px;
    max-width: 100%;
}

ul.topgal li:nth-child(3n) {
    margin-right: 0;
}

ul.topgal li:nth-child(n+4) {
    margin-top: 10px;
}

}


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

#topgalley > .content {
  padding: 60px 0;
}

}

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

ul.topgal li {
    width: calc(50% - 10px / 2 );
    margin-right: 10px;
    max-width: 100%;
}

ul.topgal li:nth-child(3n) {
    margin-right: 10px;
}

ul.topgal li:nth-child(2n) {
    margin-right: 0;
}

ul.topgal li:nth-child(n+3) {
    margin-top: 10px;
}


}

/* - LESSON
---------------------------- */

.lessonCaption {
  text-align: center;
  font-size: 2.2rem;
  color: #52A0A6;
  font-weight: bold; 
}

table.-course {
  border-collapse: collapse;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
}

table.-course thead th {
  color: #52A0A6;
  vertical-align: middle;
  padding: 7px 5px 10px;
}



table.-course tbody th {
  color: #FFF;
  background-color: #52A0A6;
  vertical-align: middle;
  padding: 12px 5px;
}

table.-course tbody td {
  color: #52A0A6;
  background-color: #fef5e6;
  vertical-align: middle;
}

table.-course tbody td:last-child {
  border-left: 2px dashed #52A0A6;
}

table.-course tbody tr {
  border-bottom: 8px solid #FFF;
}

.tab_content {
  display: none;
}

.tab_content.on {
  display: block;
}

.nav-tab {
  display: flex;
  margin: 0 auto;
  margin-top: 60px;
  justify-content: center;
  width: 100%;
  font-size: 1.7rem;
  margin-bottom: 30px;
}

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

  .nav-tab {
    font-size: 1.5rem;
  }

}
.nav-tab > div {
  width: 16.66%;
  text-align: center;
}

.nav-tab > div:first-child {
  border-left: 0;
}


.nav-tab > div a {
  background-color: #e7e7e7;
  color: #8e8e8e;
  display: block;
  padding: 10px 5px;
  border-left: 2px solid #FFF;
  position: relative;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}


.nav-tab > div a:hover {
  background-color: #b0d0d2;
}

.nav-tab > div.current a{
  background-color: #52A0A6;
  color: #FFF;
}

.nav-tab > div a span {
  padding-left: 0.5em;
}

.nav-tab > div.current a.c-adult1 { background-color: #fc8548; }
.nav-tab > div.current a.c-school1 { background-color: #9AD852; }
.nav-tab > div.current a.c-school2 { background-color: #18CD81; }
.nav-tab > div.current a.c-child1 { background-color: #f54951; }
.nav-tab > div.current a.c-child2 { background-color: #63aee2; }
.nav-tab > div.current a.c-puchi { background-color: #F8AAB8; }


.nav-tab > div.current a:after {
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(38, 131, 0, 0);
	border-top-color: #52A0A6;
	border-width: 15px;
	margin-left: -15px;
  top: 99%;
}

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

  .nav-tab {
    flex-wrap: wrap;
    justify-content: flex-start;
 
}

.nav-tab > div {
  width: 25%;
}

.nav-tab > div a {
  padding: 10px 5px;
  border-left: 2px solid #FFF;
  position: relative;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}

.nav-tab > div a span {
  font-size: 1rem;
}

.nav-tab > div:nth-child(n+5) a {
  border-top: 2px solid #FFF;
}

.nav-tab > div.current a:after {
  display: none;
}

}

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

.lessonCaption {
  font-size: 1.8rem;
}

.nav-tab > div a {
  font-size: 1.4rem;
}

}

.nav-tab > div.current a.c-adult1:after { border-top-color: #fc8548; }
.nav-tab > div.current a.c-school1:after { border-top-color: #9AD852; }
.nav-tab > div.current a.c-school2:after { border-top-color: #18CD81 }
.nav-tab > div.current a.c-child1:after { border-top-color: #f54951; }
.nav-tab > div.current a.c-child2:after { border-top-color: #63aee2; }
.nav-tab > div.current a.c-puchi:after { border-top-color: #F8AAB8; }

.titleWrap {
  border-bottom: 3px solid #52A0A6;
  
}

.courseTitle {
  width: 100%;
  padding-bottom: 5px;
  font-size: 2.4rem;
}

.courseTitle > .inner {
  display: table;
}

.courseTitle > .inner > span {
  display: table-cell;
  padding: 3px 15px;
}

.courseTitle > .inner > span.main {
  padding-left: 10px;
  border-right: 2px dashed #bebebe;
}

.courseTitle > .inner .sm {
  font-size: 1.6rem;
}

.course_opt {
  color: #888;
  margin-top: 10px;
}

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

.courseTitle {
  font-size: 2rem;
}

}

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

.courseTitle {
  font-size: 1.6rem;
}


.courseTitle > .inner > span {
  padding: 5px 8px;
}

}

.courseblock .line {
  display: flex;
  border-bottom: 1px dashed #bebebe;
  padding: 23px 0;
}

.courseblock .line > .week {
  margin-right: 30px;
}

.courseblock .line > .week > div {
  text-align: center;
  display: flex;
  width: 110px;
  height: 110px;
  background-color: #52A0A6;
  color: #FFF;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 50%;
}

.courseblock .line > .week .circle > span {
  display: block;
  font-size: 2.8rem;
}


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

.courseblock .line > .week {
  margin-right: 20px;
}

.courseblock .line > .week > div {
  width: 80px;
  height: 80px;
  font-size: 1.4rem;
}

.courseblock .line > .week .circle > span {
  font-size: 2rem;
}


}

.courseblock .line > .detail h3 {
  font-size: 2rem;
  color: #52A0A6;
  margin-bottom: 15px;
}

.courseblock .line > .detail h3 > span {
  font-size: 1.5rem;
  display: block;
}

.courseblock .line > .detail .time {
  display: table;
  margin-top: 10px;
  font-weight: bold;
}

.courseblock .line > .detail .time > span {
  display: table-cell;
}

.courseblock .line > .detail .time > span:first-child {
  padding-right: 0.5em;
}

.corseContent {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 30px;
}

#c-school2 .corseContent {
  align-items: baseline;
}

.corseContent > .left {
  width: 52%;
  margin-right: 20px;
}

.corseContent > .right {
  width: 48%;
  margin-left: 20px;
  text-align: center;
}

.corseContent > .right img {
  max-width: 460px;
}


#c-school2 .corseContent > .right img {
  margin-top: 30px;
}

#c-child1 .corseContent > .right img {
  max-width: 180px;
  margin-top: 30px;
}

/*.courseblock .subject {
  margin-top: 23px;
}*/


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

.corseContent {
  flex-direction: column-reverse;
}

.corseContent > .left {
  width: 100%;
  margin-right: 0;
}

.corseContent > .right {
  width: 100%;
  margin-left: 0;
  margin-bottom: 25px;
  text-align: center;
}

#c-child1 .corseContent > .right img,
#c-school2 .corseContent > .right img{
  margin-top: 0;
}

#c-child1 .corseContent > .right img {
  max-width: 160px;
}

.corseContent > .right img {
  max-width: 360px;
}

}

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

.corseContent > .right img {
  max-width: 260px;
}

}


.courseblock .subject .focus {
  display: inline-block;
  padding: 2px 12px;
  font-size: 1.4rem;
  border: 2px solid #000;
  border-radius: 30px;
  margin-bottom: 10px;
}

.courseblock .subject h3 {
  font-size: 2.2rem;
  /*margin-top: 12px;*/
}

.courseblock .subject.sec h3 {
  margin-top: 40px;
}

.courseblock .subject .sub {
  margin-top: 10px;
}

.courseblock .subject .sec-sub {
  color: #7d7d7d;
  margin-top: 15px;
}

.schoolBlock {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #CCC;
}


.corseContent .sec-line {
  display: flex;
  font-weight: bold;
  align-items: center;
}

.corseContent .sec-line + .sec-line {
  margin-top: 15px;
}

.corseContent .sec-line .top {
  background-color: #000;
  color: #FFF;
  border-radius: 30px;
  padding: 3px 10px;
  width: 150px;
  text-align: center;
  margin-right: 15px;
}

.corseContent .sec-line .caption > span {
  margin-right: 0.5em;
}
table.schollTable {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}

table.schollTable thead th {
  background-color: #e9e9e9;
  color: #555;
  border-left: 2px solid #FFF;
  padding: 3px 5px;
}

table.schollTable thead th:first-child {
  border-left: none;
}

table.schollTable tbody tr {
  border-top: 2px solid #FFF;
}

table.schollTable tbody th,table.schollTable tbody td{
  vertical-align: middle;
  padding: 6px 8px;
}

table.schollTable tbody th {
  background-color: #ffa8a1;
  background-color: #def5f6;
  /*color: #FFF;*/
}


/*#c-child2 table.schollTable tbody th {
  background-color: #63aee2;
}*/

table.schollTable tbody td {
  background-color: #f7f7f7;
  border-left: 2px solid #FFF;
}

.speechBubble {
  position: relative;
  display: inline-block;
  margin-top: 16px;
  padding: 16px;
  border: 2px solid #CCC;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  text-align: center;
}

.speechBubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: 9%;
  border-style: solid;
  border-width: 0 12px 16px 12px;
  border-color: transparent transparent #CCC;
  translate: -50% -100%;
}

.speechBubble::after {
  content: "";
  position: absolute;
  top: 0;
  left: 9%;
  border-style: solid;
  border-width: 0 9.5px 12.7px 9.5px;
  border-color: transparent transparent #ffffff;
  translate: -50% -100%;
}

.speechBubble > .main {
  font-size: 1.8rem;
}

#c-adult1 .titleWrap {
  border-bottom-color: #fc8548;
}

#c-adult1 .courseblock .line > .week > div {
  background-color:#fc8548
}

#c-adult1 .courseblock .line > .detail h3 {
  color: #fc8548;
}

#c-adult2 .img_block {
  text-align: center;
  margin-top: 40px;
}

#c-adult2 .img_block img {
  max-width: 600px;
}

#c-school1 .titleWrap { border-bottom-color: #9AD852; }

#c-school1 .courseblock .subject .focus {
  border-color:#9AD852;
  color: #9AD852;
}

#c-school1 .corseContent .sec-line .top { background-color: #9AD852; }

#c-school1 .courseblock .subject h3 { color: #9AD852;}
#c-school1 .courseblock .subject .sub { color: #9AD852;}

#c-school2 .titleWrap { border-bottom-color: #18CD81; }

#c-school2 .courseblock .subject .focus {
  border-color:#d59456;
  color: #18CD81;
}

#c-school2 .corseContent .sec-line .top { background-color: #18CD81; }

#c-school2 .courseblock .subject h3 { color: #18CD81;}
#c-school2 .courseblock .subject .sub { color: #18CD81;}


#c-child1 .titleWrap { border-bottom-color: #f54951; }

#c-child1 .courseblock .subject .focus {
  border-color:#f54951;
  color: #f54951;
}

#c-child1 .corseContent .sec-line .top { background-color: #f54951; }
#c-child1 .courseblock .subject h3 { color: #f54951;}
#c-child1 .courseblock .subject .sub { color: #f54951;}


#c-child2 .titleWrap { border-bottom-color: #63aee2; }

#c-child2 .courseblock .subject .focus {
  border-color:#63aee2;
  color: #63aee2;
}

#c-child2 .corseContent .sec-line .top { background-color: #63aee2; }
#c-child2 .courseblock .subject h3 { color: #63aee2;}
#c-child2 .courseblock .subject .sub { color: #63aee2;}


#c-puchi .titleWrap { border-bottom-color: #f2979f; }

#c-puchi .courseblock .subject .focus {
  border-color:#f2979f;
  color: #f2979f;
}

#c-puchi .corseContent .sec-line .top { background-color: #f2979f; }
#c-puchi .courseblock .subject h3 { color: #f2979f;}
#c-puchi .courseblock .subject .sub { color: #f2979f;}


/* - PRICE
---------------------------- */

#price {
  background-color: #f7f7f7;
}

#price > .content {
  padding: 80px 0;
}

.price_title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.price_title > .top {
  margin-right: 25px;
}

.price_title > .top > span {
  display: inline-block;
  background-color: #52A0A6;
  color: #FFF;
  font-size: 1.8rem;
  text-align: center;
  padding: 10px 20px;
  border-radius: 40px;
}

.price_title > .main .admi {
  font-size: 1.5rem;
  /*font-weight: bold;*/
}

.price_title > .main .admi > span:first-child {
  margin-right: 1em;
}

.price_title > .main .sub {
  font-size: 1.2rem;
}

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

#price > .content {
  padding: 60px 0;
}

.price_title {
  flex-direction: column;
  align-items: flex-start;
}

.price_title > .top > span {
  font-size: 1.4rem;
  padding: 5px 10px;
}

}


.price_block {
  /*display: flex;*/
  width: 100%;
}

/*.price_block > div {
  width: 50%;
}*/
  
.price_block > .line {
  display: flex;
  font-size: 1.5rem;
  width: 100%;
  align-items: center;
}

.price_block > .line > .cap {
  background-color: #f5f5f5;
  background-color: #8a8a8a;
  padding: 7px 5px;
  border: 1px solid #bbb;
  border-bottom: none;
  width: 230px;
  text-align: center;
  color: #FFF;
}


.price_block > .line > .price {
  padding: 7px 12px;
  border: 1px solid #bbb;
  border-bottom: none;
  border-left:none;
  flex: 1;
  background-color: #FFF;
}

.price_block > .line.bottom > .cap,
.price_block > .line.bottom > .price{
  border-bottom: 1px solid #bbb;
}

.price_block > .line > .price {
  /*border-right: none;*/
}

.underline {
  text-decoration: underline;
  color: #000;
}

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

.price_block > .line {
  font-size: 1.4rem;
}

.price_block > .line > .cap {
  width: 155px;
}

.price_block > .line > .price {
  display: table;
}

.price_block > .line > .price span {
  display: table-cell;
  vertical-align: middle;
}

}


/* - お知らせ
---------------------------- */

.news_block {
  /*max-width: 720px;*/
  margin: 0 auto;
}

ul.newsList > li {
  border-bottom:1px solid #DDD; 
}

ul.newsList > li:first-child {
  border-top:1px solid #DDD;
}

ul.newsList > li > a {
  display: block;
  padding: 16px 5px;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}

ul.newsList > li > a:hover {
  background-color: #EEE;
}

ul.newsList > li > a .inner {
  display: flex;
}

ul.newsList > li > a .inner > .day {
  margin-right: 25px;
}

ul.newsList > li > a .inner svg {
  margin-right: 0.5em;
  color: #52A0A6;
}

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

ul.newsList > li > a .inner {
  flex-direction: column;
}

ul.newsList > li > a .inner > .txt {
  margin-top: 7px;
}

}

/* - TEACHER
---------------------------- */

#teacher {
  background-color: #f7f7f7;
}

#teacher > .content {
  padding: 80px 0;
}

.teacherBlock {
  display: flex;
  justify-content: center;
  align-items: center;
}

.teacherBlock img {
  max-width: 420px;
  width: 100%;
}

.teacherBlock .img {
  margin-right: 25px;
}

.teacherBlock .txt {
  margin-left: 25px;
}

.teacherBlock h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.teacherBlock .note > li {
  color: #564239;
  font-size: 1.5rem;
}

.teacherBlock .note > li > span.cap {
  width: 70px;
}

.teacherBlock .txt p {
  font-size: 1.3rem;
}

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

#teacher > .content {
  padding: 60px 0;
}

.teacherBlock {
  flex-direction: column;
}

.teacherBlock img {
  max-width: 420px;
  width: 100%;
}

.teacherBlock .img {
  margin-right: 0;
}

.teacherBlock .txt {
  margin-left: 0;
  margin-top: 30px;
}


}

/* - アクセス
---------------------------- */

.address {
  text-align: center;
}

div.map_area {
  margin-top: 40px;
}

div.map_area > .if_inner {
    position: relative;
}
div.map_area > .if_inner > .if_wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
div.map_area > .if_inner > .if_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* - お問い合わせ
---------------------------- */

.contact_block {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.contact_block > ul > li {
  display: table;
  color: #52A0A6;
  font-size: 1.6rem;
  font-weight: bold;
}

.contact_block > ul > li > span {
  display: table-cell;
}

.contact_block > ul > li > span.cap {
  white-space: nowrap;
}

.contact_block > ul > li .bikou {
  display: block;
  color: #777;
  font-size: 1.2rem;
  font-weight: normal;
}

.contact_block > .img {
  margin-top: 30px;
}

.contact_block > .img img {
  max-width: 160px;
}

div.btn {
  max-width: 320px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

div.btn.mt30 {
  margin-top: 30px;
}

div.btn.mt40 {
  margin-top: 40px;
}

div.btn.mt50 {
  margin-top: 50px;
}

div.btn a {
  display: block;
  background-color: #52A0A6;
  border: 1px solid #52A0A6;
  color: #FFF;
  padding: 15px 10px;
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 8px;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
}

div.btn a:hover {
  background-color: #FFF;
  color: #52A0A6;
}

div.btn a .arrow svg {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

div.btn a .icon svg {
  margin-right: 0.4em;
}

.btnCaption {
  margin: 60px 0 10px;
  text-align: center;
}

.btnCaption > span {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  font-size: 1.8rem;
}

.btnCaption > span::before,
.btnCaption > span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1em;
  height: 2px;
  background-color: currentColor;
  transform: rotate(240deg);
}

.btnCaption > span::before {
  left: -1.1em;
}

.btnCaption > span::after {
  right: -1.1em;
  transform: rotate(110deg);
}


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

div.btn a {
  font-size: 1.6rem;
}

}

/* - ギャラリー
---------------------------- */

.sec_title > .inner {
 padding: 80px 15px 0;
 text-align: center;
}

.sec_title > .inner h1 {
  font-size: 3.6rem;
  color: #52A0A6;
  position: relative;
}

.sec_title > .inner h1 span.inner {
  position: relative;
}

.sec_title > .inner h1 span.img {
  position: absolute;
  top: -35px;
  right: -126px;
  max-width: 100px;
}


#gallery {
  margin-top: 60px;
}

#gallery .-grid {
  display: flex;
  width: 100%;
}

#gallery .-grid.-top {
  flex-direction: column;
}

#gallery .-grid > .side_col {
  margin-right: 50px;
}

#gallery .-grid.-top > .side_col {
  margin-right: 0;
  margin-bottom: 30px;
  display: none;
}

#gallery .-grid > .side_col > .content {
  border: 1px solid #ddd;
  padding: 15px;
}

#gallery .-grid > .side_col > .content h3 {
  font-size: 1.6rem;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 3px;
  margin-bottom: 15px;
}

.gal_catlist > li {
  font-size: 1.4rem;
}

.gal_catlist > li svg {
  margin-right: 0.4em;
}

.gal_catlist > li + li {
  margin-top: 8px;
}

/*#gallery .-grid.-top > .side_col > .content {
  padding: 10px;
}

.-grid.-top .gal_catlist > li {
  display: inline-block;
  padding: 5px;
}

.-grid.-top .gal_catlist > li + li {
  margin-top: 0;
}*/

.-grid.-top .gal_catlist > li + li {
  margin-top: 0;
  margin-left: 25px;
}

.-grid.-top .gal_catlist {
  display: flex;
  justify-content: center;
}

.-grid.-top.-workshop .gal_catlist {
  flex-wrap: wrap;
  justify-content:flex-start
}


.-grid.-top.-workshop .gal_catlist > li {
  width: calc(33.33% - 20px / 3 );
  margin-right: 10px;
}

.-grid.-top.-workshop .gal_catlist > li + li {
  margin-left: 0;
}

.-grid.-top.-workshop .gal_catlist > li:nth-child(3n) {
    margin-right: 0;
}

.-grid.-top.-workshop .gal_catlist > li:nth-child(n+4) {
    margin-top: 10px;
}

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

#gallery .-grid {
  flex-direction: column;
}

#gallery .-grid > .side_col {
  margin-right: 0;
  margin-bottom: 30px;
}


#gallery.-workshop .-grid {
  flex-direction: column-reverse;
}

#gallery.-workshop .-grid > .side_col {
  margin-right: 0;
  margin-top: 30px;
}

#gallery .-grid > .side_col > .content {
  padding: 10px;
}

.gal_catlist > li {
  display: inline-block;
  padding: 5px;
}

.gal_catlist > li + li {
  margin-top: 0;
}

}

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

.sec_title > .inner {
 padding-top: 60px;
}

#gallery {
  margin-top: 40px;
}

.sec_title > .inner h1 {
  font-size: 3rem;
}

}

#gallery .-grid > .main_col {
  flex: 1;
}

#gallery .-grid > .main_col .gal_top {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}


#gallery .-grid > .main_col .gal_top li {
    width: calc(33.33% - 20px / 3 );
    margin-right: 10px;
    max-width: 100%;
}

#gallery .-grid > .main_col .gal_top li:nth-child(3n) {
    margin-right: 0;
}

#gallery .-grid > .main_col .gal_top li:nth-child(n+4) {
    margin-top: 25px;
}


#gallery .-grid > .main_col .gal_top li .pic a {
  display: block;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  color: #333;
  color: #FFF;
  position: relative;
}

#gallery .-grid > .main_col .gal_top li .pic a:before {
    content: "";
    display: block;
    padding-top: 100%;
}

#gallery .-grid > .main_col .gal_top li .pic a img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
    vertical-align: top;
    object-position: center;
    font-family: 'object-fit: cover; object-position: bottom;';
    -webkit-transition: .3s ease;
    transition: .3s ease;
    opacity: 1;
}

#gallery .-grid > .main_col .gal_top li .pic a:hover img {
  opacity: 0.6;
}

#gallery .-grid > .main_col .gal_top li h3 {
    position: relative;
    margin-top: 5px;
}

#gallery .-grid > .main_col .gal_top li h3 a {
	display: block;
	padding-bottom: 5px;
  margin-top: 5px;
	font-size: 1.6rem;
  color: #564239;
	position: relative;
	webkit-transition: .3s ease;
	transition: .3s ease;
  font-weight: normal;
}

#gallery .-grid > .main_col .gal_top li h3 a svg {
  margin-right: 0.4em;
  /*vertical-align: middle;*/
  color: #52A0A6;
}

#gallery .-grid > .main_col div.btn{
  margin-top: 50px;
}


#gallery .gallery-item {
	 padding: 0 5px;
	 box-sizing: border-box;
 }
 
#gallery .gallery-item .gallery-icon {
	 position: relative;
 }
 
#gallery .gallery-item .gallery-icon:before {
    content: "";
    display: block;
    padding-top: 100%;
 }
 
#gallery .gallery-item a {
 	 display: block;
  }
  
#gallery .gallery-item img {
        border: none !important;
        position: absolute;
        width: 100%;
        height: 100%;
        max-height: 160px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        object-fit: cover;
        object-fit: contain;
        object-position: center;
        font-family: 'object-fit: cover; object-position: bottom;';
        -webkit-transition: .3s ease;
        transition: .3s ease;
        opacity: 1;
}

#gallery .gallery-item a:hover img {
  opacity: 0.6;
}

#gallery.-workshop .gallery-item img {
        max-height:none;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        object-fit: cover;
        object-position: center;
        font-family: 'object-fit: cover; object-position: bottom;';
}

#gallery-1 .gallery-caption {
  display: none;
}

#gallery.-workshop .gal-title {
  margin-bottom: 30px;
}


.gal-conTitle {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 35px;
}

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

.gal-conTitle {
  font-size: 2.4rem;
}

}

.gal-title h2 {
    border-top: 4px solid #53a1a8;
    padding-top: 10px;
    /*margin-bottom: 15px;*/
}

.gallery-caption {
  text-align: left;
}


.gal-link {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
/* ----- モーダル追加 ----- */


/*インライン用*/
.inline-wrapper {
	position: relative;
	margin:10px auto;
	max-width: 650px;
	background-color:#FFF;
	padding: 25px;
}

.mfp-close-btn-in .mfp-close {
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.inline-wrapper .image,
.inline-wrapper .popup-modal-dismiss {
	text-align: center;
}

.inline-wrapper .inline_body {
	width:100%;
	text-align:center;
}

.inline-wrapper .inline_body > h3 {
	margin-bottom:20px;
}

.inline-wrapper .inline_body > h3 > img {
	max-width:210px;
}

.inline-wrapper .inline_body > p.number {
	text-align:center;
	font-size:0.9rem;
	margin-top:5px;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;;
	font-weight:bold;
}

.inline-wrapper .inline_body .img img {
    vertical-align: top;
}

/*表示のエフェクト*/
  .mfp-fade.mfp-bg {
	opacity: 0.001; /* Chrome opacity transition bug */
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
  }
  .mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
  }
  .mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
  }
  .mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
  }
  .mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
  }
  .mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
  }

.mfp-bg {
  background-color: #FFF;
  opacity: 1;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid #52A0A6;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid #52A0A6;
}

.mfp-title {
  line-height: 1;
  padding-right: 0;
  font-size: 1.5rem;
  color: #555;
  /*padding-top: 8px;*/
  line-height: 1.3;
}

.mfp-image-holder .mfp-content {
  max-width: 720px;
  max-width: 500px;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #333;
}


/* - お問合せ
---------------------------- */

#contact {  margin-top: 60px;}

#contact > .content {
  max-width: 800px;
}

#contact > .content .intro {
  text-align: center;
}

#contact .form_block {
  margin-top: 40px;
}

#contact dl.forms {
  margin-top: 30px;
}

#contact input {
  width: 100%;
  border: 1px solid #CCC;
  padding: 15px;
  border-radius: 5px;
}

span.a-red {
  color: #c00;
}


#contact .wpcf7-confirm,
#contact .wpcf7-submit,
#contact .wpcf7-back
{
  display: block;
  margin: 0 auto;
  max-width: 245px;
  margin-top: 50px;
  font-weight: bold;
  font-size: 1.5rem;
}

.wpcf7c-conf {
  background-color: #ffeedc !important;
}

p.add_title {
  margin: 30px 0 0;
  font-size: 1.8rem;
}

#contact dl.forms.mt10 {
  margin-top: 10px;
} 


#contact .wraps {
  display: flex;
}


#contact .wpcf7-radio input {
  margin: 0;
  margin-right: 0.5em;
  width: 16px;
}

#contact .wpcf7-radio span.wpcf7-list-item {
  display: block;
  margin: 0;
  margin-top: 10px;
}

#contact .wpcf7-radio.in_hopeclass span.wpcf7-list-item:nth-child(3),
#contact .wpcf7-radio.in_hopeclass span.wpcf7-list-item:nth-child(5),
#contact .wpcf7-radio.in_hopeclass span.wpcf7-list-item:nth-child(6),
#contact .wpcf7-radio.in_hopeclass span.wpcf7-list-item:nth-child(8){
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dotted #CCC;
}

#contact .wpcf7-radio span.wpcf7-list-item label {
  display: flex;
  align-items: center;
}


.radio-59 {
  margin-top: 10px;
}

.wpcf7-textarea.in_mess {
  border: 1px solid #CCC;
  border-radius: 5px;
  width: 100%;
  padding: 15px;
}

/* - フッター
---------------------------- */

#footer {
  background-color: #52A0A6;
  padding: 50px 15px;
  color: #FFF;
  text-align: center;
  font-size: 1.4rem;
}

.footerLink > ul {
  display: flex;
  justify-content: center;
  column-gap: 25px;
}

.footerLink > ul li a {
  color: #FFF;
}

.footerDetail {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 35px 0;
  column-gap: 30px;
}

.footerDetail .logo img {
  max-width: 140px;
  width: 100%;
}


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

.footerLink > ul {
  column-gap: 15px;
}

}


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

#footer {
  padding: 35px 10px 70px;
}

.footerLink > ul {
  flex-direction: column;
  column-gap: 0;
  grid-row-gap: 8px;
}

.footerDetail {
  column-gap: 0;
  row-gap: 15px;
  flex-direction: column;
}

}


/* - ページトップ
---------------------------- */

.pagetop {
	 display: none;
	 position: fixed;
	 bottom: 20px;
	 right: 20px;
	 z-index:1000;
	 font-size: 3.4rem;
	 line-height:0;
}


.pagetop > p a {
	 display: block;
	 text-decoration: none;
	 color:#9cbbbd;
	 text-align:center;
}

/* - 固定お問合せ
---------------------------- */

#contactBtn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  right: 20px;
  border-radius: 50px;
  padding: 15px;
  font-size: 1.3rem;
  background-color: #52A0A6;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  opacity: 1;
}

#contactBtn:hover {
  opacity: 0.7;
}

#contactBtn a {
  color: #FFF;
  display: block;
}

#contactBtn a .icon {
  display: block;
}

#contactBtn a svg {
  font-size: 1.8rem;
}

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

#contactBtn {
  position: fixed;
  top: inherit;
  bottom: 0;
  transform: translateY(0);
  text-align: center;
  right: 0;
  border-radius: 0;
  padding: 15px 5px;
  width: 100%;
}

#contactBtn a .icon {
  display: inline-block;
}

#contactBtn a br {
  display: none;
}

#contactBtn a p {
  display: flex;
  column-gap: 7px;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

}