@charset "utf-8";

/* Base Start */

* {
  box-sizing: border-box;
  margin:0;
  padding:0;
}

article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,textarea {
  display:block;
}

img {
  border:0;
  vertical-align:top;
}

em,address {
  font-style:normal;
}

body {
  background-color: #f6f2ea;
  color:#000;
  font-family: "Noto Sans JP","游ゴシック体",YuGothic,"YuGothic M","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS P Gothic";
  font-size:100%;
  text-align:center;
  letter-spacing: 1px;
}

a {
  color:#000;
  text-decoration:none;
  outline:none;
  transition:.5s ease-in-out;
}

a:hover {
  color:#000;
  text-decoration:underline;
}

#anc-wrapper {
  width:100%;
  overflow:hidden;
}

/* Base End */

/* Clearfix Start */

.clearfix::after {
  content:"";
  display:block;
  clear:both;
}

/* Clearfix End */

/* Header Start */

#header {
  z-index: 99999;
  position: fixed;
  left: 0;
  top: 0;
  display:flex;
  align-items:center;
  padding: 0 160px 0 44px;
  background: url(../img/common_images/bg_header.webp) no-repeat center bottom;
  background-size: cover;
  height:145px;
  width: 100%;
}

#header strong {
  display:inline-block;
  margin-right:auto;
  width: auto;
  height: 74px;
}

#header strong img {
  width: auto;
  height: 100%;
}

.pc-navi {
  display: flex;
  align-items: center;
  padding-bottom: 26px;  
  list-style: none;
}

.pc-navi li {
  line-height: 100%;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.pc-navi li a {
  color: #2c3946;
  text-decoration: none;
}

.pc-navi li a:hover,
.pc-navi li.current a,
.pc-navi li.current a:hover {
  color: #999;
}

.pc-navi li+li {
  padding-left: 24px;
}

#header em {
  position: absolute;
  right: -31px;
  top: -17px;
  width: 160px;
  height: 160px;
}

#header em a {
  display: flex;
  justify-content:center;
  align-items:center;
  background-color: #2c3946;
  border-radius: 50%;
  padding-right: 20px;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

#header em a img {
  width: 84px;
  height: auto;
}

#header em a:hover {
  opacity: .8;
}

#nav-toggle {
  z-index:100000;
  position: relative;
  display:none;
  justify-content:center;
  align-items:center;
  margin-bottom: 16px;
  width:47px;
  height:47px;
  cursor:pointer;
  transition:.5s ease-in-out;
}

#nav-toggle div {
  position:relative;
  width:37px;
  height:21px;
}

#nav-toggle div span {
  position:absolute;
  left: 0;
  display:block;
  background-color:#2c3946;
  width:100%;
  height:3px;
  transition:.35s ease-in-out;
}

#nav-toggle div span:nth-child(1) {
  top: 0;
}

#nav-toggle div span:nth-child(2) {
  top: 8px;
}

#nav-toggle div span:nth-child(3) {
  top: 16px;
}

.open #nav-toggle div span {
  background-color: #fff;
}

.open #nav-toggle div span:nth-child(1) {
  top:10px;
  transform:rotate(315deg);
}

.open #nav-toggle div span:nth-child(2) {
  width:0;
  left:50%;
}

.open #nav-toggle div span:nth-child(3) {
  top:10px;
  transform:rotate(-315deg);
}

.open #nav-toggle::after {
	position: absolute;
	left: 0;
  top: 100%;
	display: block;
	width: 100%;
	line-height: 100%;
	font-size: 17px;
	color: #fff;
	content: "close";
}

.open .sp-navi {
  transform:translateY(100%);
}

.sp-navi {
  z-index:10000;
  position:absolute;
  left:0;
  bottom:100%;
  display:block;
  padding:180px 68px 76px;
  background-color: #2c3946;
  width:100%;
  height: auto;
  transition:.5s ease-in-out;
  line-height:100%;
  overflow-y:auto;
}

.sp-navi ul {
  list-style: none;
}

.sp-navi ul>li {
  padding-bottom: 40px;
  font-size:24px;
  text-align: right;
}

.sp-navi ul>li a {
  color:#fff;
  text-decoration:none;
}

.sp-navi b {
  position: absolute;
  left: 68px;
  bottom: 92px;
  display: block;
  width: 213px;
  height: 213px;
}

.sp-navi b a {
  display: flex;
  justify-content:center;
  align-items:center;
  background-color: #c1a470;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.sp-navi b a span {
  position: relative;
  display: inline-block;
  padding: 40px 0;
  color: #fff;
  line-height: 141%;
  font-size: 18px;
}

.sp-navi b a span::before {
  position: absolute;
  left: calc(50% - (105px / 2));
  bottom: calc(100% - 10px);
  display: block;
  background: url(../img/common_images/sp_menu_lc@2x.webp) no-repeat;
  background-size: 105px 180px;
  width: 105px;
  height: 180px;
  content: "";
}

.sp-navi b a span::after {
  position: absolute;
  left: calc(50% - 12px);
  bottom: 0;
  display: block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  content: "";
}

@media only screen and (max-width : 1249px) {
  #header {
    padding: 0 20px;
    height: 84px;
  }

  #header strong {
    height: 52px;
  }
  
  .pc-navi {
    display: none;
  }

  #header em {
    right: -13px;
    top: 102px;
    width: 145px;
    height: 145px;
  }

  #header em a {
    padding-right: 0;
  }
  
  #nav-toggle {
    display: flex;
  }
}

@media screen and (min-width : 768px) and (max-width : 1249px) {
}

@media only screen and (max-width : 767px) {
  .sp-navi {
    padding:180px 20px 52px;
  }

  .sp-navi b {
    left: 20px;
    bottom: 46px;
    width: 140px;
    height: 140px;
  }

  .sp-navi b a span {
    padding: 20px 0;
    font-size: 14px;
  }

  .sp-navi b a span::before {
    left: calc(50% - 26px);
    bottom: 100%;
    background-size: 52px 90px;
    width: 52px;
    height: 90px;
  }
  
  .sp-navi b a span::after {
    left: calc(50% - 8px);
    width: 12px;
    height: 12px;
  }
}

/* Header End */

/* Main Start */

#contents {
  width: 100%;
}

.top-mv,
.mv {
  position: relative;
  margin-top: 70px;
  height: calc(100vh - 70px);
}

.top-mv img,
.mv img {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-mv>span,
.mv>span {
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.top-mv span div {
  position: relative;
  margin: 0 auto;
  height: 100%;
  width: 1248px;
}

.top-mv span div h1 {
  position: absolute;
  left: 0;
  bottom: 56px;
  padding-bottom: 120px;
  line-height: 0;
  font-size: 0;
}

.top-mv span div h1 big {
  display: block;
  color: #fff;
  line-height: 143%;
  font-size: 68px;
  font-weight: 600;
  text-align: left;
}

.top-mv span div h1 small {
  position: absolute;
  display: inline-block;
  padding: 8px 22px 9px;
  line-height: 100%;
  font-size: 21px;
  background-color: #2c3946;
  color: #fff;
  text-align: left;
  white-space: nowrap;
}

.top-mv span div h1 small em {
  color: #c0a470;
}

.top-mv span div h1 small>span {
  display: inline-block;
} 

.top-mv span div h1 small:first-of-type {
  left: 0;
  bottom: 51px;
}

.top-mv span div h1 small:last-of-type {
  left: 66px;
  bottom: 0;
}

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

.mv span h1 {
  color: #fff;
  line-height: 0;
  font-size: 0;
}

.mv span h1 big {
  display: block;
  padding-bottom: 24px;
  line-height: 100%;
  font-size: 48px;
  font-weight: 600;
}

.mv span h1 small {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c3946;
  margin: 0 auto;
  width: 322px;
  height: 38px;
  line-height: 100%;
  font-size: 21px;
}

.main-h2 {
  line-height: 0;
  font-size: 0;
}

.main-h2 small {
  display: block;
  line-height: 100%;
  font-size: 13px;
  font-weight: 600;
}

.main-h2 b {
  position: relative;
  display: block;
  padding-left: 56px;
  margin-bottom: 32px;
  color: #666;
  line-height: 100%;
  font-size: 15px;
}

.main-h2 b::before {
  position: absolute;
  left: 0;
  top: calc(50% - 22px);
  display: block;
  background: url(../img/coach/pga_logo.webp) no-repeat;
  background-size: 44px 44px;
  width: 44px;
  height: 44px;
  content: "";
}

.main-h2 big {
  display: block;
  line-height: 140%;
  font-size: 50px;
}

.more {
	display:block;
}

.more a {
	display: inline-block;
  padding: 20px 32px;
  border: 1px solid #6a1b7d;
}

.more a span {
  position: relative;
  display: inline-block;
  padding: 0 64px;
  color: #6a1a7d;
  line-height: 100%;
  font-size: 17px;
}

.more a span::after {
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/top_images/button_arrow.png) no-repeat;
  background-size: 12px 12px;
  content: "";
}

.more a:hover {
  opacity: .5;
}

.container {
	margin:0 auto;
	width:1248px;
}

.bg-beige {
  background-color: #f6f2ea;
}

.bg-beige::before {
  background: url(../img/common_images/beige_wave.webp) no-repeat;
}

.bg-brown {
  background-color: #c1a470;
}

.bg-brown::before {
  background: url(../img/common_images/brown_wave.webp) no-repeat;
}

.bg-navy {
  background-color: #2c3946;
}

.bg-navy::before {
  background: url(../img/common_images/navy_wave.webp) no-repeat;
}

.bg-beige,
.bg-brown,
.bg-navy {
  position: relative;
  width: 100%;
}

.bg-beige::before,
.bg-brown::before,
.bg-navy::before {
  position: absolute;
  left: 0;
  bottom: 100%;
  display: block;
  width: 100%;
  height: 43px;
  background-size: 100% 100%;
  content: "";
}

.trial-lesson {
  padding: 100px 0;
}

.trial-lesson dl {
  display: flex;
}

.trial-lesson dl dt {
  flex-shrink: 0;
  width: 185px;
}

.trial-lesson dl dt span {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 140px;
}

.trial-lesson dl dt span img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}

.trial-lesson dl dd {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 60px;
}

.lesson-text {
  text-align: left;
}

.lesson-text h2 {
  color: #fff;
}

.lesson-text strong {
  display: block;
  padding: 16px 0 20px 0;
  line-height: 120%;
  font-size: 28px;
  color: #c1a470;
}

.lesson-text p {
  color: #fff;
  line-height: 160%;
  font-size: 16px;
}

.lesson-button em {
  display: block;
  width: 213px;
  height: 213px;
}

.lesson-button em a {
  display: flex;
  justify-content:center;
  align-items:center;
  background-color: #c1a470;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.lesson-button em a span {
  position: relative;
  display: inline-block;
  padding-bottom: 40px;
  color: #fff;
  line-height: 141%;
  font-size: 18px;
}

.lesson-button em a span::after {
  position: absolute;
  left: calc(50% - 12px);
  bottom: 0;
  display: block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  content: "";
}

.lesson-button em a:hover {
  opacity: .8;
}

.to-contact {
  padding: 200px 0 272px 0;
}

.to-contact h2 small {
  color: #999;
}

.to-contact h2 big {
  color: #2c3946;
}

.to-contact p {
  padding: 56px 0 52px 0;
  line-height: 160%;
  font-size: 16px;
}

.to-contact ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.to-contact ul li {
  width: 175px;
}

.to-contact ul li img {
  width: 111px !important;
  height: 112px !important;
}

.to-contact ul li span {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 35px;
  color: #2c3946;
  line-height: 100%;
}

.to-contact ul li:first-child span {
  font-size: 18px;
}

.to-contact ul li:last-child span {
  font-size: 22px;
}

.to-contact ul li a:hover {
  opacity: .8;
}

@media only screen and (max-width : 1249px) {
  .top-mv,
  .mv {
    margin-top: 40px;
    height: calc(100vh - 40px);
  }

  .top-mv span div {
    width: 92%;
  }

  .trial-lesson dl dd {
    flex-direction: column;
  }
}

@media screen and (min-width : 768px) and (max-width : 1249px) {
  .container {
		width:750px;
	}

  .top-mv span div h1 {
    padding-bottom: 100px;
  }

  .top-mv span div h1 big {
    font-size: 59px;
  }

  .top-mv span div h1 small {
    font-size: 19px;
  }

  .mv span h1 big {
    font-size: 43px;
  }

  .bg-beige::before,
  .bg-brown::before,
  .bg-navy::before {
    height: 32px;
  }

  .trial-lesson {
    padding: 75px 0;
  }

  .trial-lesson dl dt {
    width: 150px;
  }

  .trial-lesson dl dt span {
    height: 120px;
  }

  .trial-lesson dl dd {
    margin-left: 45px;
  }

  .lesson-button {
    margin-right: auto;
    padding-top: 45px;
  }

  .to-contact {
    padding: 200px 0 204px 0;
  }

  .to-contact p {
    padding: 42px 0 39px 0;
  }
}

@media only screen and (orientation: portrait) and (max-width : 767px) {
  .top-mv img {
    width: calc(100% + 34vh + 40px);
  }
}

@media only screen and (max-width : 767px) {
  .container {
		width:90%;
  }

  .top-mv span div h1 {
    padding-bottom: 70px;
  }

  .top-mv span div h1 big {
    font-size: 28px;
  }

  .top-mv span div h1 small {
    padding: 4px 5px 5px;
    font-size: 13px;
  }

  .top-mv span div h1 small:first-of-type {
    left: 0;
    bottom: 30px;
  }
  
  .top-mv span div h1 small:last-of-type {
    left: 0;
    bottom: 0;
  }

  .mv span h1 big {
    font-size: 38px;
  }

  .main-h2 big {
    font-size: 32px;
  }

  .bg-beige::before,
  .bg-brown::before,
  .bg-navy::before {
    height: 21px;
  }

  .trial-lesson {
    padding: 50px 0;
  }

  .trial-lesson dl dt {
    width: 100px;
  }

  .trial-lesson dl dt span {
    height: 80px;
  }

  .trial-lesson dl dd {
    margin-left: 30px;
  }

  .lesson-button {
    margin-right: auto;
    padding-top: 30px;
  }

  .lesson-button em {
    width: 180px;
    height: 180px;
  }

  .to-contact {
    padding: 200px 0 136px 0;
  }

  .to-contact p {
    padding: 28px 0 26px 0;
  }
}

/* Main End */

/* Footer Start */

#footer {
  position: relative;
  padding: 56px 0 80px 0;
  background-color: #fff;
  width: 100%;
}

#footer::before {
  position: absolute;
  left: 0;
  bottom: 100%;
  display: block;
  width: 100%;
  height: 43px;
  background: url(../img/common_images/white_wave.webp) no-repeat;
  background-size: 100% 100%;
  content: "";
}

#footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  list-style: none;
}

#footer ul li {
  padding: 16px 18px;
  line-height: 100%;
  font-size: 15px;
  white-space: nowrap;
}

#footer ul li a {
  color: #2c3946;
  text-decoration: none;
}

#footer ul li a:hover {
  text-decoration: underline;
}

#footer h3 {
  padding: 72px 0 28px 0;
}

#footer small {
  display: block;
  color: #2c3946;
  line-height: 10px;
  font-size: 9px;
}

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

@media screen and (min-width : 768px) and (max-width : 1249px) {
  #footer {
    padding: 42px 0 60px 0;
  }

  #footer::before {
    height: 32px;
  }

  #footer h3 {
    padding: 54px 0 21px 0;
  }
}

@media only screen and (max-width : 767px) {
  #footer {
    padding: 28px 0 40px 0;
  }

  #footer::before {
    height: 21px;
  }

  #footer h3 {
    padding: 36px 0 14px 0;
  }
}

/* Footer End */

/* Page Bottom And Pagetop Start */

.page-bottom {
  z-index: 1000;
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c3946;
  width: 100%;
  height: 154px;
}

.page-bottom ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.page-bottom ul li {
  padding: 0 8px;
}

#pagetop {
  z-index: 10;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
}

#pagetop img {
  width: 100%;
  height: 100%;
}

/* Page Bottom And Pagetop End */

/* Top Page (index.html) Start */

.pc-img {
  display: block;
}

.sp-img {
  display: none;
}

.top-chara {
  padding-top: 144px;
}

.top-chara h2 {
  text-align: left;
}

.top-chara h2 big {
  color: #2c3946;
}

.top-chara strong {
  display: block;
  padding: 48px 0 84px 0;
  line-height: 180%;
  font-size: 17px;
  font-weight: 400;
  text-align: left;
}

.top-chara ul {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  list-style: none;
}

.top-chara ul li {
  margin: 0 35px 35px;
  background-color: #fff;
  border: 2px solid #2c3946;
  border-radius: 10px;
  width: 100%;
  max-width: 346px;
}

.top-chara ul li h3 {
  position: relative;
  margin: 0 auto;
  width: 62px;
  height: 36px;
}

.top-chara ul li h3 span {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c3946;
  border-radius: 50%;
  color: #fff;
  line-height: 100%;
  font-size: 30px;
  width: 62px;
  height: 62px;
}

.top-chara ul li em {
  display: block;
  padding-top: 28px;
  color: #2c3946;
  line-height: 100%;
  font-size: 22px;
  font-weight: 600;
}

.top-chara ul li div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
}

.top-chara ul li div p {
  line-height: 160%;
  font-size: 15px;
}

.top-chara ul li div p span {
  display: inline-block;
}

.top-chara ul li img {
  border-radius: 0 0 8px 8px;
  width: 100%;
  height: auto;
}

.mofsk {
  padding: 160px 0 200px 0;
}

.mofsk h3 img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.mofsk strong {
  display: block;
  padding: 64px 0 24px 0;
  color: #2c3946;
  line-height: 160%;
  font-size: 30px;
}

.mofsk em {
  line-height: 180%;
  font-size: 15px;
}

.mofsk ul {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  list-style: none;
}

.mofsk ul li {
  padding-top: 76px;
  width: 50%;
}

.mofsk ul li dl dt img {
  max-width: 100%;
  height: auto;
}

.mofsk ul li dl dd h4 {
  padding: 28px 0 20px 0;
  color: #2c3946;
  line-height: 100%;
  font-size: 20px;
}

.mofsk ul li dl dd p {
  line-height: 180%;
  font-size: 15px;
}

.lesson-plan {
  padding: 112px 0 180px 0;
}

.lesson-plan h2 {
  color: #fff;
}

.lesson-plan b {
  display: block;
  padding: 36px 0 48px 0;
  color: #fff;
  line-height: 180%;
  font-size: 17px;
}

.lesson-plan ul {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  list-style: none;
}

.lesson-plan ul>li {
  margin: 32px 16px 0;
  padding: 40px 0 48px 0;
  background-color: #fff;
  border-radius: 14px;
  width: 318px;
}

.plan-name,
.plan-fee,
.plan-detail {
  border-bottom: 1px dotted #ccc;
  margin: 0 auto;
  width: 264px;
}

.plan-name h3 {
  line-height: 0;
  font-size: 0;
}

.plan-name h3 small {
  display: block;
  color: #2c3946;
  line-height: 100%;
  font-size: 13px;
}

.plan-name h3 big {
  display: block;
  padding: 20px 0 28px 0;
  line-height: 100%;
  font-size: 24px;
}

.plan-fee strong {
  display: block;
  padding: 28px 0 24px 0;
  line-height: 100%;
  font-size: 45px;
}

.plan-fee strong span {
  font-size: 21px;
}

.plan-detail {
  padding: 32px 0 36px 0;
}

.plan-detail h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #2c3946;
  border-radius: 12px;
  color: #fff;
  line-height: 100%;
  font-size: 13px;
  font-weight: 400;
  width: 120px;
  height: 31px;
}

.plan-detail>ol {
  padding-top: 28px;
  padding-left: 32px;
  list-style: none;
  text-align: left;
}

.plan-detail ol>li {
  position: relative;
  margin: 0;
  padding: 0;
  padding: 8px 0 8px 40px;
  background: none;
  border-radius: 0;
  color: #333;
  width: auto;
  line-height: 100%;
  font-size: 18px;
}

.plan-detail ol li::before {
  position: absolute;
  left: 0;
  top: calc(50% - (21px / 2));
  display: block;
  background: url(../img/top_images/checked.webp) no-repeat;
  background-size: 21px 21px;
  width: 21px;
  height: 21px;
  content: "";
}

.lesson-plan p {
  padding: 28px 5px 0;
  color: #666;
  line-height: 160%;
  font-size: 15px;
  letter-spacing: 0;
}

.rec {
  position: relative;
}

.rec::before {
  position: absolute;
  left: calc(50% - 99px);
  bottom: calc(100% - 18px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c1a470;
  border-radius: 10px;
  color: #fff;
  width: 198px;
  height: 39px;
  line-height: 100%;
  font-size: 13px;
  content: "RECOMMENDED";
}

.rec .plan-detail h4 {
  background-color: #c1a470;
}

.lesson-plan em {
  display: block;
  padding-top: 80px;
}

.lesson-plan em a,
.top-access em a,
.top-coach em a,
.news-button em a {
  display: inline-block;
  padding: 24px 76px;
  background-color: #c1a470;
  border-radius: 20px / 28px;
  color: #fff;
  line-height: 100%;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.lesson-plan em a span,
.top-access em a span,
.top-coach em a span,
.news-button em a span {
  position: relative;
  display: inline-block;
  padding: 0 24px;
}

.lesson-plan em a span::before,
.top-access em a span::before,
.top-coach em a span::before,
.news-button em a span::before {
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  content: "";
}

.lesson-plan em a:hover,
.top-access em a:hover,
.top-coach em a:hover,
.news-button em a:hover {
  opacity: .8;
}

.top-access {
  padding: 148px 0 272px 0;
}

.top-access h2 {
  text-align: left;
}

.top-access h2 small {
  color: #666;
}

.top-access h2 big {
  color: #2c3946;
}

.top-access p {
  padding-top: 32px;
  line-height: 180%;
  font-size: 17px;
  text-align: left;
}

.top-access ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.top-access ul li {
  padding-top: 44px;
  width: 100%;
  max-width: 357px;
}

.top-access ul li img {
  border-radius: 16px;
  max-width: 100%;
  height: auto;
}

.top-access ul li span {
  display: block;
  padding-top: 16px;
  line-height: 100%;
  font-size: 18px;
}

.top-access em {
  display: block;
  padding-top: 52px;
}

.top-access em a,
.news-button em a {
  background-color: #2c3946;
}

.top-coach {
  padding: 80px 0 116px 0;
}

.top-coach dl {
  display: flex;
  align-items: center;
}

.top-coach dl dt {
  flex-shrink: 0;
  width: 346px;
}

.top-coach dl dt img {
  border-radius: 16px;
  max-width: 100%;
}

.top-coach dl dd {
  order: -1;
  flex-grow: 1;
  margin-right: 32px;
  color: #fff;
  text-align: left;
}

.top-coach dl dd p {
  padding: 44px 0 36px 0;
  line-height: 180%;
  font-size: 18px;
}

.top-coach dl dd ul li {
  margin-left: 1em;
  line-height: 180%;
  font-size: 16px;
}

.top-coach em {
  display: block;
  padding-top: 24px;
}

.top-coach em a {
  background-color: #2c3946;
}

.top-coach dl dd>em {
  display: block;
}

.top-coach>em {
  display: none;
}

.news-swipe {
  z-index: 10;
  position: relative;
  padding-top: 156px;
}

.news-swipe h2 {
  text-align: left;
}

.news-swipe h2 small {
  color: #666;
}

.news-swipe h2 big {
  color: #2c3946;
}

.news-swipe strong {
  display: block;
  padding: 20px 0 68px 0;
  line-height: 180%;
  font-size: 17px;
  font-weight: 400;
  text-align: left;
}


.news-swipe .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}

.news-swipe .swiper-wrapper .swiper-slide {
  width: 375px;
}

.news-swipe section {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 375px;
}

.news-swipe section img {
  z-index: 1;
  border-radius: 14px;
  width: 100%;
  height: auto;
}

.news-swipe section p {
  padding-top: 16px;
  line-height: 160%;
  font-size: 14px;
}

.news-swipe section big,
.news-swipe section small,
.news-swipe section b {
  z-index: 10;
  position: absolute;
  right: 13px;
  top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  color: #fff;
  width: 140px;
  height: 26px;
  line-height: 100%;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.news-swipe section big {/* Dark Green */
  background-color: #6dac4d;
}

.news-swipe section small {/* Light Green */
  background-color: #bbc53f;
}

.news-swipe section b {/* Orange */
  background-color: #f90;
}

.news-swipe .swiper-button-prev {
  position: absolute;
  left: calc(50% - 38px);
  bottom: -60px;
}
.news-swipe .swiper-button-next {
  position: absolute;
  right: calc(50% - 13px);
  bottom: -60px;
}

.news-swipe .swiper-button-prev svg,
.news-swipe .swiper-button-next svg {
  display: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  cursor: pointer;
  text-rendering: initial;
}

.news-swipe .swiper-button-prev::after {
  display: block;
  background: url(../img/top_images/swiper_back.webp) no-repeat;
  background-size: 21px 34px;
  width: 21px;
  height: 34px;
  content: "";
}

.news-swipe .swiper-button-next::after {
  display: block;
  background: url(../img/top_images/swiper_next.webp) no-repeat;
  background-size: 21px 34px;
  width: 21px;
  height: 34px;
  content: "";
}

.news-button {
  padding: 112px 0 300px 0;
}

.news-button em {
  display: block;
}

@media only screen and (max-width : 1249px) {
  .pc-img {
    display: none;
  }
  
  .sp-img {
    display: block;
  }

  .mofsk ul li {
    width: 100%;
  }

  .top-access ul {
    justify-content: center;
    flex-flow: row wrap;
  }

  .top-access ul li {
    margin: 0 auto;
  }

  .top-coach dl {
    flex-direction: column;
  }

  .top-coach dl dt {
    padding: 36px 0;
    width: 100%;
  }

  .top-coach dl dd {
    margin: 0;
  }

  .top-coach dl dd>em {
    display: none;
  }
  
  .top-coach>em {
    display: block;
  }
}

@media screen and (min-width : 768px) and (max-width : 1249px) {
  .top-chara {
    padding-top: 108px;
  }
  
  .top-chara strong {
    padding: 36px 0 63px 0;
  }
  
  .top-chara ul {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    list-style: none;
  }
  
  .top-chara ul li {
    margin: 0 calc(29px / 2) 29px;
  }
  
  .top-chara ul li em {
    padding-top: 21px;
  }

  .mofsk {
    padding: 120px 0 150px 0;
  }
  
  .mofsk strong {
    padding: 48px 0 18px 0;
  }
  
  .mofsk ul li {
    padding-top: 97px;
  }
  
  .mofsk ul li dl dd h4 {
    padding: 21px 0 15px 0;
    font-size: 18px;
  }

  .lesson-plan {
    padding: 84px 0 135px 0;
  }
  
  .lesson-plan b {
    padding: 27px 0 36px 0;
    font-size: 16px;
  }
  
  .plan-name h3 big {
    padding: 15px 0 21px 0;
  }
  
  .plan-fee strong {
    padding: 21px 0 18px 0;
  }
  
  .plan-detail {
    padding: 24px 0 27px 0;
  }
  
  .plan-detail>ol {
    padding-top: 21px;
  }
  
  .lesson-plan p {
    padding: 21px 5px 0;
  }
  
  .lesson-plan em {
    padding-top: 60px;
  }
  
  .lesson-plan em a,
  .top-access em a,
  .top-coach em a,
  .news-button em a {
    padding: 18px 57px;
    border-radius: 15px / 21px;
    font-size: 15px;
  }

  .top-access {
    padding: 111px 0 204px 0;
  }
  
  .top-access p {
    padding-top: 24px;
    font-size: 16px;
  }
  
  .top-access ul li span {
    padding-top: 12px;
  }
  
  .top-access em {
    padding-top: 39px;
  }

  .top-coach {
    padding: 60px 0 87px 0;
  }
  
  .top-coach dl dd p {
    padding: 33px 0 27px 0;
    font-size: 17px;
  }

  .news-swipe {
    padding-top: 117px;
  }

  .news-swipe strong {
    padding: 15px 0 51px 0;
    font-size: 16px;
  }

  .news-button {
    padding: 112px 0 225px 0;
  }
}

@media only screen and (max-width : 767px) {
  .top-chara {
    padding-top: 72px;
  }
  
  .top-chara strong {
    padding: 24px 0 42px 0;
  }
  
  .top-chara ul {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    list-style: none;
  }
  
  .top-chara ul li {
    margin: 0 auto 29px;
  }
  
  .top-chara ul li em {
    padding-top: 14px;
  }

  .mofsk {
    padding: 80px 0 100px 0;
  }
  
  .mofsk strong {
    padding: 32px 0 12px 0;
  }
  
  .mofsk ul li {
    padding-top: 38px;
  }
  
  .mofsk ul li dl dd h4 {
    padding: 14px 0 10px 0;
    font-size: 16px;
  }

  .lesson-plan {
    padding: 56px 0 90px 0;
  }
  
  .lesson-plan b {
    padding: 18px 0 24px 0;
    font-size: 15px;
  }
  
  .plan-name h3 big {
    padding: 10px 0 14px 0;
  }
  
  .plan-fee strong {
    padding: 14px 0 12px 0;
  }
  
  .plan-detail {
    padding: 16px 0 18px 0;
  }
  
  .plan-detail>ol {
    padding-top: 14px;
  }
  
  .lesson-plan p {
    padding: 14px 5px 0;
  }
  
  .lesson-plan em {
    padding-top: 40px;
  }
  
  .lesson-plan em a,
  .top-access em a,
  .top-coach em a,
  .news-button em a {
    padding: 18px 24px;
    border-radius: 10px / 14px;
    font-size: 14px;
  }

  .lesson-plan ul {
    flex-direction: column;
  }

  .lesson-plan ul>li {
    margin: 32px auto 0 auto;
  }

  .top-access {
    padding: 74px 0 136px 0;
  }
  
  .top-access p {
    padding-top: 16px;
    font-size: 15px;
  }
  
  .top-access ul li span {
    padding-top: 8px;
  }
  
  .top-access em {
    padding-top: 26px;
  }

  .top-coach {
    padding: 40px 0 58px 0;
  }
  
  .top-coach dl dd p {
    padding: 22px 0 18px 0;
    font-size: 16px;
  }
  
  .top-coach dl dd ul li {
    font-size: 15px;
  }

  .news-swipe {
    padding-top: 78px;
  }

  .news-swipe strong {
    padding: 10px 0 34px 0;
    font-size: 15px;
  }

  .news-button {
    padding: 112px 0 150px 0;
  }
}

/* Top Page (index.html) End */

/* Facilitie/Access (access/index.html) Start */

.access {
  padding-top: 144px;
}

.access-top h2 small {
  color: #666;
}

.access-top h2 big {
  color: #2c3946;
}

.access-top p {
  padding: 64px 0 76px 0;
  line-height: 180%;
  font-size: 17px;
}

.access article {
  padding-bottom: 212px;
}

.access article h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c3946;
  color: #fff;
  border-radius: 12px;
  width: 100%;
  height: 98px;
  line-height: 100%;
  font-size: 30px;
}

.access article strong {
  display: block;
  padding: 36px 0;
  line-height: 180%;
  font-size: 26px;
}

.slider {
  margin: 0 auto;
  width: 100%;
  max-width: 662px;
}

.slider ul {
  list-style: none;
}

.slider ul li {
  width: 662px;
  height: 495px;
}

.slider ul li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.access article b {
  display: block;
  padding: 60px 0 40px 0;
  line-height: 180%;
  font-size: 19px;
}

.access article section {
  background-color: #fff;
  margin: 0 auto;
  padding: 36px 28px;
  width: 100%;
  max-width: 1000px;
}

.access article section dl {
  display: flex;
  align-items: center;
}

.access article section dl dt {
  flex-shrink: 0;
  width: 112px;
}

.access article section dl dt span {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c3946;
  border-radius: 10px;
  color: #fff;
  line-height: 100%;
  font-size: 16px;
  font-weight: 600;
  width: 112px;
  height: 112px;
}

.access article section dl dd {
  flex-grow: 1;
  margin-left: 30px;
}

.access article section dl dd ul {
  list-style: none;
}

.access article section dl dd ul li {
  position: relative;
  padding-left: 135px;
  line-height: 29px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.access article section dl dd ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ccc;
  border-radius: 8px;
  width: 120px;
  height: 29px;
  line-height: 29px;
  font-size: 14px;
  font-weight: 600;
}

.access article section dl dd ul li:nth-child(1)::before {
  content: "住所";
}

.access article section dl dd ul li:nth-child(2)::before {
  content: "最寄り駅";
}

.access article section dl dd ul li:nth-child(3)::before {
  content: "施設利用費";
}

.access article:nth-of-type(3) section dl dd ul li:nth-child(2)::before {
  content: "開催頻度";
}

.access article section dl dd ul li+li {
  margin-top: 8px;
}

.access article section dl dd ul li:nth-of-type(n+2) {
  margin-top: 8px;
}

.access article em {
  display: block;
  padding-top: 40px;
}

.access article em a {
  display: inline-block;
  padding: 24px 76px;
  background-color: #c1a470;
  border-radius: 20px / 28px;
  color: #fff;
  line-height: 100%;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.access article em a span {
  position: relative;
  display: inline-block;
  padding: 0 24px;
}

.access article em a span::before {
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  content: "";
}

.access article em a span span {
  position: static;
  display: inline-block;
  padding: 0;
}

.access article em a span span::before {
  display: none;
}

.access article em a:hover {
  opacity: .8;
}


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

@media screen and (min-width : 768px) and (max-width : 1249px) {
	.access {
    padding-top: 108px;
  }

  .access-top p {
    padding: 48px 0 57px 0;
    font-size: 16px;
  }
  
  .access article {
    padding-bottom: 159px;
  }

  .access article h3 {
    height: 73px;
    font-size: 24px;
  }
  
  .access article strong {
    padding: 27px 0;
    font-size: 22px;
  }

  .access article b {
    padding: 50px 0 30px 0;
    font-size: 18px;
  }
  
  .access article section {
    padding: 27px 21px;
  }

  .access article em {
    padding-top: 30px;
  }

  .access article em a {
    padding: 18px 57px;
    border-radius: 15px / 21px;
    font-size: 15px;
  }
}

@media only screen and (max-width : 767px) {
	.access {
    padding-top: 72px;
  }

  .access-top p {
    padding: 32px 0 38px 0;
    font-size: 15px;
  }
  
  .access article {
    padding-bottom: 106px;
  }

  .access article h3 {
    height: 49px;
    font-size: 18px;
  }
  
  .access article strong {
    padding: 18px 0;
    font-size: 18px;
  }
  
  .slider ul li {
    width: 100%;
    height: 260px;
  }

  .access article b {
    padding: 40px 0 20px 0;
    font-size: 17px;
  }
  
  .access article section {
    padding: 18px 14px;
  }
  
  .access article section dl {
    flex-direction: column;
  }
  
  .access article section dl dt {
    width: 100%;
  }
  
  .access article section dl dt span {
    margin: 0 auto;
  }
  
  .access article section dl dd {
    margin-left: 0;
    padding-top: 20px;
    width: 100%;
  }
  
  .access article section dl dd ul li {
    padding-left: 0;
    line-height: 160%;
    font-size: 16px;
  }
  
  .access article section dl dd ul li::before {
    position: static;
    margin-right: auto;
    margin-bottom: 7px;
  }

  .access article em {
    padding-top: 20px;
  }
  
  .access article em a {
    padding: 18px 22px;
  }
}

/* Facilitie/Access (access/index.html) End */

/* Blog Index (blog/index.html) Start */

.blog {
  padding: 144px 0 200px 0;
}

.blog h2 small {
  color: #666;
}

.blog h2 big {
  color: #2c3946;
}

.blog p {
  padding: 124px 0 64px 0;
  line-height: 180%;
  font-size: 17px;
  text-align: left;
}

.blog>ul {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  list-style: none;
}

.blog ul>li {
  position: relative;
  margin: 0 12px 40px;
  width: 100%;
  max-width: 375px;
}

.blog ul li a {
  display: block;
  text-decoration: none;
}

.blog ul li a:hover {
  opacity: .8;
}

.blog ul li img {
  z-index: 1;
  border-radius: 14px;
  width: 100%;
  height: auto;
}

.blog ul li span {
  display: block;
  padding-top: 20px;
  line-height: 160%;
  font-size: 14px;
}

.blog ul li big,
.blog ul li small,
.blog ul li b {
  z-index: 10;
  position: absolute;
  right: 13px;
  top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  color: #fff;
  width: 140px;
  height: 26px;
  line-height: 100%;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.blog ul li big {/* Dark Green */
  background-color: #6dac4d;
}

.blog ul li small {/* Light Green */
  background-color: #bbc53f;
}

.blog ul li b {/* Orange */
  background-color: #f90;
  top: -13px;
}

.blog .pager ol {
  display: flex;
  justify-content: center;
  padding-top: 80px;
  list-style: none;
}

.blog .pager ol>li {
  padding: 0 5px 10px;
}

.blog .pager ol li>a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ccc;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  width: 36px;
  height: 36px;
  line-height: 100%;
  font-size: 18px;
}

.blog .pager ol li.back a,
.blog .pager ol li.next a {
  position: relative;
  text-indent: -9999px;
}

.blog .pager ol li.back a::after {
  position: absolute;
  left: calc(50% - 3px);
  top: calc(50% - 6px);
  display: block;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  content: "";
}

.blog .pager ol li.next a::after {
  position: absolute;
  right: calc(50% - 3px);
  top: calc(50% - 6px);
  display: block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  content: "";
}

.blog .pager ol li a:hover,
.blog .pager ol li.current a,
.blog .pager ol li.current a:hover {
  background-color: #2c3946;
}

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

@media screen and (min-width : 768px) and (max-width : 1249px) {
  .blog {
    padding: 108px 0 150px 0;
  }
  
  .blog p {
    padding: 93px 0 48px 0;
    font-size: 16px;
  }

  .blog ul>li {
    margin: 0 5px 30px;
    max-width: 365px;
  }
  
  .blog ul li span {
    padding-top: 15px;
  }
  
  .blog>ol {
    padding-top: 60px;
  }
}

@media only screen and (max-width : 767px) {
  .blog {
    padding: 72px 0 100px 0;
  }
  
  .blog p {
    padding: 62px 0 32px 0;
    font-size: 15px;
  }
  
  .blog ul>li {
    margin: 0 auto 20px;
  }

  .blog ul li span {
    padding-top: 10px;
  }
  
  .blog>ol {
    padding-top: 40px;
  }
}

/* Blog Index (blog/index.html) End */

/* Blog Detail (blog/detail.html) Start */

.blog-detail {
  padding: 144px 0 200px 0;
}

.blog-detail h2 small {
  color: #666;
}

.blog-detail h2 big {
  color: #2c3946;
}

.details {
  display: flex;
  justify-content: space-between;
}

.blog-article {
  padding-top: 108px;
  width: 884px;
  text-align: left;
}

.blog-article h3 {
  padding-bottom: 20px;
  line-height: 180%;
  font-size: 29px;
}

.blog-article dl {
  display: flex;
  padding-bottom: 52px;
}

.dark-green dt {
  background-color: #6dac4d;
}

.light-green dt {
  background-color: #bbc53f;
}

.orange dt {
  background-color: #f90;
}

.blog-article dl dt {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  border-radius: 13px;
  color: #fff;
  width: 140px;
  height: 26px;
  line-height: 100%;
  font-size: 12px;
}

.blog-article dl dd {
  color: #666;
  line-height: 26px;
  font-size: 12px;
}

.blog-article strong {
  /* display: block; */
  text-align: center;
}

.blog-article strong img {
  max-width: 100%;
  height: auto;
}

div:not(:has(.wp-block-group)) .blog-article strong span {
  display: block;
  padding: 28px 0 84px 0;
  line-height: 100%;
  font-size: 16px;font-weight: 400;
}

.anchor-index {
  padding-bottom: 64px;
}

.anchor-index h4 {
  padding: 44px 0 28px 0;
  line-height: 100%;
  font-size: 20px;
  text-align: center;
}

.anchor-index div {
  padding: 36px 56px;
  background-color: rgba(153,102,0,.08);
  line-height: 180%;
  font-size: 16px;
}

.anchor-index div ol li {
  margin-left: 2em;
}

.blog-main-text {
  padding-bottom: 56px;
}

.blog-main-text h2 {
  margin-top: 64px;
  padding: 20px;
  background-color: #2c3946;
  color: #fff;
  line-height: 180%;
  font-size: 20px;
}

.blog-main-text p {
  padding-top: 32px;
  line-height: 180%;
  font-size: 16px;
}

.blog-main-text p b {
  font-weight: 600;
}

.blog-main-text h3 {
  padding: 60px 0 8px 0;
  border-bottom: 1px solid #a1998b;
  color: #2c3946;
  line-height: 180%;
  font-size: 20px;
}

.blog-main-text h4 {
  margin: 60px 0 0 0;
  padding-left: 10px;
  border-left: 2px solid #2c3946;
  color: #2c3946;
  line-height: 180%;
  font-size: 18px;
}

.blog-main-text em {
  display: block;
  padding-top: 60px;
  text-align: center;
}

.blog-main-text em a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #f60;
  width: 264px;
  height: 58px;
  text-decoration: none;
}

.blog-main-text em a span {
  position: relative;
  display: inline-block;
  padding: 0 14px;
  color: #fff;
  text-decoration: none;
  line-height: 100%;
  font-size: 17px;
}

.blog-main-text em a span::before {
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  display: block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  content: "";
}

.blog-main-text em a:hover {
  opacity: .8;
}

.blog-main-text figure {
  margin-top: 24px;
}

.blog-notice-links {
  padding-top: 64px;
}

.blog-notice-links p {
  padding-bottom: 32px;
  line-height: 180%;
  font-size: 16px;
}

.blog-notice-links ul {
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.blog-notice-links ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.blog-notice-links ul li a {
  position: relative;
  padding-left: 32px;
  line-height: 200%;
  font-size: 16px;
}

.blog-notice-links ul li a::before {
  position: absolute;
  left: 0;
  top: 4px;
  display: block;
  background-color: #000;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  content: "";
}

.blog-notice-links ul li a::after {
  position: absolute;
	left: 7px;
	top: 10px;
	display: block;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #fff;
	width: 0;
	height: 0;
	content: "";
}

.blog-back-next {
  padding-top: 160px;
}

.blog-back-next ol {
  display: flex;
  justify-content: center;
  list-style: none;
}

.blog-back-next ol li {
  padding: 0 40px;
}

.blog-back-next ol li a {
  display: flex;
  align-items: center;
}

.blog-back-next ol li a span {
  display: inline-block;
}

.blog-back-next ol li a span.b-button {
  margin-right: 14px;
}

.blog-back-next ol li a span.n-button {
  margin-left: 14px;
}

.blog-back-next ol li a span.b-button,
.blog-back-next ol li a span.n-button {
  position: relative;
  text-indent: -9999px;
  background-color: #ccc;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition:.5s ease-in-out;
}

.blog-back-next ol li a span.t-link {
  line-height: 100%;
  font-size: 16px;
}

.blog-back-next ol li a span.b-button::after {
  position: absolute;
  left: calc(50% - 3px);
  top: calc(50% - 6px);
  display: block;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  content: "";
}

.blog-back-next ol li a span.n-button::after {
  position: absolute;
  right: calc(50% - 3px);
  top: calc(50% - 6px);
  display: block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  content: "";
}

.blog-back-next ol li a:hover span.b-button,
.blog-back-next ol li a:hover span.n-button {
  background-color: #2c3946;
}

.blog-navi {
  padding-top: 120px;
  width: 218px;
}

.blog-navi div {
  border-top: 1px solid #666;
}

.blog-navi div h3 {
  padding: 20px 0 16px 0;
  border-bottom: 1px solid #666;
}

.blog-navi div ul {
  padding: 32px 12px 36px 12px;
  border-bottom: 1px solid #666;
  list-style: none;
}

.blog-navi div ul li {
  line-height: 180%;
  font-size: 15px;
  text-align: left;
}

.blog-navi div ul li a {
  position: relative;
  display: block;
  padding-left: 18px;
}

.blog-navi div ul li a::before {
  position: absolute;
  left: 0;
  top: 12px;
  display: block;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  content: "";
}

@media only screen and (max-width : 1249px) {
	.details {
    flex-direction: column;
  }

  .blog-article,
  .blog-navi {
    width: 100%;
  }
}

@media screen and (min-width : 768px) and (max-width : 1249px) {
	.blog-detail {
    padding: 108px 0 150px 0;
  }

  .blog-navi {
    padding-top: 90px;
  }

  .blog-article h3 {
    padding-bottom: 15px;
    font-size: 24px;
  }

  .blog-article dl {
    padding-bottom: 39px;
  }

  .blog-article strong span {
    padding: 21px 0 63px 0;
    font-size: 16px;
  }
  
  .anchor-index {
    padding-bottom: 48px;
  }
  
  .anchor-index h4 {
    padding: 33px 0 21px 0;
  }
  
  .anchor-index div {
    padding: 27px 42px;
  }
  
  .blog-main-text {
    padding-bottom: 42px;
  }
  
  .blog-main-text h2 {
    padding: 15px;
    font-size: 20px;
  }
  
  .blog-main-text p {
    padding-top: 24px;
    font-size: 16px;
  }
  
  .blog-main-text h3 {
    padding: 45px 0 6px 0;
    font-size: 20px;
  }
  
  .blog-main-text em {
    padding-top: 45px;
  }
  
  .blog-notice-links {
    padding-top: 63px;
  }
  
  .blog-notice-links p {
    padding-bottom: 24px;
  }
  
  .blog-back-next {
    padding-top: 120px;
  }
  
  .blog-back-next ol li {
    padding: 0 30px;
  }
  
  .blog-navi {
    padding-top: 90px;
  }
}

@media only screen and (max-width : 767px) {
	.blog-detail {
    padding: 72px 0 100px 0;
  }

  .blog-navi {
    padding-top: 60px;
  }

  .blog-article h3 {
    padding-bottom: 10px;
    font-size: 19px;
  }

  .blog-article dl {
    flex-direction: column;
    padding-bottom: 26px;
  }

  .blog-article strong span {
    padding: 14px 0 42px 0;
    font-size: 16px;
  }
  
  .anchor-index {
    padding-bottom: 32px;
  }
  
  .anchor-index h4 {
    padding: 22px 0 14px 0;
  }
  
  .anchor-index div {
    padding: 18px 28px;
  }
  
  .blog-main-text {
    padding-bottom: 28px;
  }
  
  .blog-main-text h4 {
    padding: 10px;
    font-size: 20px;
  }
  
  .blog-main-text p {
    padding-top: 16px;
    font-size: 16px;
  }
  
  .blog-main-text h5 {
    padding: 30px 0 4px 0;
    font-size: 20px;
  }
  
  .blog-main-text em {
    padding-top: 30px;
  }
  
  .blog-notice-links {
    padding-top: 42px;
  }
  
  .blog-notice-links p {
    padding-bottom: 16px;
  }
  
  .blog-back-next {
    padding-top: 80px;
  }
  
  .blog-back-next ol li {
    padding: 0 20px;
  }
  
  .blog-navi {
    padding-top: 60px;
  }
}

/* Blog Detail (blog/detail.html) End */

/* Coach (coach/index.html) Start */

.coach {
  padding: 144px 0 200px 0;
}

.coach h2 small {
  color: #666;
}

.coach h2 big {
  color: #2c3946;
}

.coach dl {
  display: flex;
  padding-top: 136px;
}

.coach dl dt {
  flex-shrink: 0;
  width: 100%;
  max-width: 450px;
}

.coach dl dt em {
  position: relative;
  display: inline-block;
}

.coach dl dt em img.coach-photo {
  z-index: 1;
  border-radius: 16px;
  max-width: 100%;
  height: auto;
}

.coach dl dt em span {
  z-index: 10;
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: block;
  width: 87px;
  height: 87px;
}

.coach dl dd {
  flex-grow: 1;
  margin-left: 48px;
  text-align: left;
}

.coach dl dd h3 {
  display: flex;
  align-items: baseline;
  margin: -2px 0 28px 0;
  line-height: 0;
  font-size: 0;
}

.coach dl dd h3 big {
  margin-right: 16px;
  line-height: 100%;
  font-size: 28px;
}

.coach dl dd h3 small {
  padding: 3px 0 0 12px;
  border-left: 1px solid #666;
  color: #666;
  line-height: 100%;
  font-size: 14px;
}

.coach dl dd h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 64px auto 20px 0;
  background-color: #2c3946;
  border-radius: 8px;
  color: #fff;
  width: 226px;
  height: 43px;
  line-height: 100%;
  font-size: 14px;
  letter-spacing: 0;
}

.coach dl dd p {
  line-height: 180%;
  font-size: 16px;
}

.coach dl dd p span {
  display: block;
  padding-bottom: 28px;
}

.coach dl dd p + p {
  padding-top: 28px;
}

.coach dl dd p + ul {
  padding-top: 28px;
}

.coach dl dd>ol {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.coach dl dd ul {
  list-style: disc;
}

.coach dl dd ul>li {
  margin-left: 1em;
  line-height: 180%;
  font-size: 16px;
}

.coach dl dd>ol>li {
  margin: 0;
}

@media only screen and (max-width : 1249px) {
  .coach dl,
  .coach dl dd>ol {
    flex-direction: column;
  }

  .coach dl dt,
  .coach dl dd {
    width: 100%;
  }

  .coach dl dt {
    margin: 0 auto;
  }

  .coach dl dd {
    margin-left: 0;
    padding-top: 32px;
  }
}

@media screen and (min-width : 768px) and (max-width : 1249px) {
  .coach {
    padding: 108px 0 150px 0;
  }
  
  .coach dl {
    padding-top: 102px;
  }
  
  .coach dl dd h3 {
    margin: 0 0 21px 0;
  }
  
  .coach dl dd h4 {
    margin: 48px auto 15px 0;
  }
  
  .coach dl dd p span {
    padding-bottom: 21px;
  }
  
  .coach dl dd p + p,
  .coach dl dd p + ul {
    padding-top: 21px;
  }
}

@media only screen and (max-width : 767px) {
  .coach {
    padding: 72px 0 100px 0;
  }
  
  .coach dl {
    padding-top: 68px;
  }
  
  .coach dl dd h3 {
    margin: 0 0 14px 0;
  }
  
  .coach dl dd h4 {
    margin: 32px auto 10px 0;
  }
  
  .coach dl dd p span {
    padding-bottom: 14px;
  }
  
  .coach dl dd p + p,
  .coach dl dd p + ul {
    padding-top: 21px;
  }
}

/* Coach (coach/index.html) End */

/* Contact (contact/index.html) Start */

.contact-top {
  padding: 144px 0 148px 0;
}

.contact-top h2 small {
  color: #666;
}

.contact-top h2 big {
  color: #2c3946;
}

.contact-top p {
  padding: 60px 0 20px 0;
  line-height: 180%;
  font-size: 17px;
  font-weight: 600;
}

.contact-top strong {
  display: block;
  line-height: 180%;
  font-size: 19px;
}

.contact-middle {
  padding: 104px 0 224px 0;
}

.contact-middle dl {
  color: #fff;
}

.contact-middle dl dt {
  padding-bottom: 52px;
  line-height: 100%;
  font-size: 28px;
}

.contact-middle dl dd strong {
  display: block;
}

.contact-middle dl dd b {
  display: block;
  padding: 24px 0 16px 0;
  line-height: 100%;
  font-size: 16px;
  font-weight: 400;
}

.contact-middle dl dd em {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #fff;
  color: #2c3946;
  width: 144px;
  height: 32px;
  line-height: 100%;
  font-size: 18px;
}

.contact-middle dl dd p {
  padding: 20px 0 96px 0;
  line-height: 160%;
  font-size: 16px;
}

.contact-middle h3 {
  position: relative;
  display: inline-block;
  margin: 0 auto 52px;
  padding: 0 72px;
}

.contact-middle h3::before {
  position: absolute;
  left: 0;
  top: 3px;
  display: block;
  background: url(../img/common_images/lesson_chara@2x.webp) no-repeat;
  background-size: 59px 102px;
  width: 59px;
  height: 102px;
  content: "";
}

.contact-middle h3 small {
  display: block;
  color: #c1a470;
  line-height: 100%;
  font-size: 13px;
}

.contact-middle h3 big {
  display: block;
  padding: 16px 0;
  color: #c1a470;
  line-height: 100%;
  font-size: 38px;
}

.contact-middle h3 b {
  display: block;
  color: #fff;
  line-height: 160%;
  font-size: 16px;
}

.contact-middle h3 big span,
.contact-middle h3 b span {
  display: inline-block;
}

.contact-middle div {
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  border: 3px solid #fff;
  width: 100%;
  max-width: 500px;
}

.contact-middle div ul {
  list-style-position: inside;
}

.contact-middle div ul li {
  color: #fff;
  line-height: 160%;
  font-size: 16px;
}

.contact-form {
  padding: 128px 0 280px 0;
}

.contact-form h2 small {
  color: #666;
}

.contact-form h2 big {
  color: #2c3946;
}

.contact-form p {
  padding: 48px 0 68px 0;
  line-height: 160%;
  font-size: 16px;
}

.contact-form ul {
  list-style: none;
}

.contact-form ul li {
  padding-bottom: 52px;
}

.contact-form ul li dl {
  display: flex;
  align-items: center;
  text-align: left;
}

.contact-form ul li dl dt {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-left: 28px;
  width: 242px;
  line-height: 100%;
  font-size: 16px;
  font-weight: 600;
}

.nece::after {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c3946;
  color: #fff;
  margin-left: auto;
  width: 70px;
  height: 28px;
  line-height: 100%;
  font-size: 14px;
  font-weight: 400;
  content: "必須";
}

.contact-form ul li dl dd {
  flex-grow: 1;
  margin-left: 56px;
}

.contact-form ul li dl dd input[type="text"],
.contact-form ul li dl dd input[type="email"],
.contact-form ul li dl dd input[type="tel"],
.contact-form ul li dl dd textarea {
	padding:12px;
	background-color:#f9f9f9;
	border:1px solid #ccc;
  border-radius: 4px;
	width:75%;
  font-family: "Noto Sans JP","游ゴシック体",YuGothic,"YuGothic M","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS P Gothic";
	line-height:150%;
	font-size:16px;
}

.contact-form em {
  display: block;
  padding-top: 36px;
}

.contact-form em input[type="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border: 0;
  background-color: #2c3946;
  color: #fff;
  width: 227px;
  height: 76px;
  line-height: 100%;
  font-family: "Noto Sans JP","游ゴシック体",YuGothic,"YuGothic M","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS P Gothic";
  font-size: 18px;
  cursor: pointer;
  transition:.5s ease-in-out;
}

.contact-form em input[type="submit"]:hover {
	opacity:.8;
}

@media only screen and (max-width : 1249px) {
  .contact-form ul li dl dd input[type="text"],
  .contact-form ul li dl dd input[type="email"],
  .contact-form ul li dl dd input[type="tel"],
  .contact-form ul li dl dd textarea {
    width: 100%;
  }
}

@media screen and (min-width : 768px) and (max-width : 1249px) {
  .contact-top {
    padding: 108px 0 111px 0;
  }
  
  .contact-top p {
    padding: 45px 0 15px 0;
  }
  
  .contact-top strong {
    font-size: 19px;
  }
  
  .contact-middle {
    padding: 78px 0 168px 0;
  }
  
  .contact-middle dl dt {
    padding-bottom: 39px;
  }
  
  .contact-middle dl dd b {
    padding: 18px 0 12px 0;
  }
  
  .contact-middle dl dd p {
    padding: 15px 0 72px 0;
  }
  
  .contact-middle h3 {
    margin: 0 auto 39px;
    padding: 0 72px;
  }
  
  .contact-middle h3::before {
    top: 3px;
    background-size: 59px 102px;
    width: 59px;
    height: 102px;
  }
  
  .contact-middle h3 big {
    padding: 12px 0;
    font-size: 31px;
  }
  
  .contact-middle div {
    padding: 15px;
  }

  .contact-form p {
    padding-bottom: 48px;
  }

  .contact-form ul li {
    padding-bottom: 39px;
  }

  .contact-form ul li dl dt {
    padding-left: 14px;
  }

  .contact-form ul li dl dd {
    margin-left: 28px;
  }

  .contact-form em {
    padding-top: 27px;
  }
}

@media only screen and (max-width : 767px) {
  .contact-top {
    padding: 72px 0 74px 0;
  }
  
  .contact-top p {
    padding: 30px 0 10px 0;
  }
  
  .contact-top strong {
    font-size: 19px;
  }
  
  .contact-middle {
    padding: 52px 0 112px 0;
  }
  
  .contact-middle dl dt {
    padding-bottom: 26px;
  }
  
  .contact-middle dl dd b {
    padding: 12px 0 8px 0;
  }
  
  .contact-middle dl dd p {
    padding: 10px 0 48px 0;
  }
  
  .contact-middle h3 {
    margin: 0 auto 26px;
    padding: 0 72px;
  }
  
  .contact-middle h3::before {
    top: 3px;
    background-size: 59px 102px;
    width: 59px;
    height: 102px;
  }
  
  .contact-middle h3 big {
    padding: 8px 0;
    font-size: 24px;
  }
  
  .contact-middle div {
    padding: 10px;
  }
  
	.contact-form p {
    padding-bottom: 32px;
  }

  .contact-form ul li {
    padding-bottom: 26px;
  }

  .contact-form ul li dl {
    flex-direction:column;
  }

  .contact-form ul li dl dt {
    margin-right: auto;
    padding-left: 0;
  }

  .contact-form ul li dl dd {
    margin-left: 0;
    padding-top: 10px;
    width: 100%;
  }

  .contact-form em {
    padding-top: 18px;
  }
} 

/* Contact (contact/index.html) End */

/* Trial Lesson (experience/index.html) Start */

.about-lesson {
  padding-top: 144px;
}

.about-lesson p {
  padding: 64px 0 40px 0;
  line-height: 180%;
  font-size: 17px;
}

.about-lesson ol {
  display: flex;
  justify-content: center;
  list-style: none;
}

.about-lesson ol li {
  padding-top: 102px;
  width: 100%;
  max-width: 341px;
}

.about-lesson ol li+li {
  position: relative;
  margin-left: 64px;
}

.about-lesson ol li+li::before {
  position: absolute;
  right: calc(100% + 27px);
  top: 260px;
  display: block;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  content: "";
}

.about-lesson ol li div {
  background-color: #fff;
  border-radius: 20px;
  width: 341px;
  height: 341px;
}

.about-lesson ol li div span {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  width: 87px;
  height: 49px;
}

.about-lesson ol li div span h3 {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c3946;
  border-radius: 50%;
  color: #fff;
  width: 87px;
  height: 87px;
}

.about-lesson ol li div span h3 em {
  display: inline-block;
}

.about-lesson ol li div span h3 em small {
  display: block;
  padding-bottom: 6px;
  line-height: 100%;
  font-size: 13px;
}

.about-lesson ol li div span h3 em big {
  display: block;
  line-height: 100%;
  font-size: 35px;
}

.about-lesson ol li div strong {
  display: block;
}

.about-lesson ol li dl dt {
  padding: 32px 0 24px 0;
  color: #2c3946;
  line-height: 100%;
  font-size: 28px;
}

.about-lesson ol li dl dd b {
  display: block;
  padding-bottom: 20px;
  line-height: 160%;
  font-size: 16px;
  font-weight: 400;
}

.about-lesson ol li dl dd>ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.about-lesson ol li dl dd>ul>li {
  margin: 0;
  padding: 0;
  width: 100px;
}

.about-lesson ol li dl dd>ul>li+li::before {
  display: none;
}

.about-lesson ol li dl dd>ul>li span {
  display: block;
  padding-top: 12px;
  color: #2c3946;
  line-height: 100%;
  font-size: 12px;
  letter-spacing: 0;
}

.about-lesson ol li dl dd>ul>li a:hover {
  opacity: .8;
}

.lesson-detail {
  padding-top: 144px;
}

.lesson-detail h2 {
  margin-bottom: 80px;
}

.lesson-detail table {
  border-collapse: collapse;
  border-top: 1px solid #666;
  width: 100%;
}

.lesson-detail table tr {
  border-bottom: 1px solid #666;
}

.lesson-detail th {
  padding: 36px 32px;
  background-color: rgba(85,122,148,.08);
  border-right: 2px solid #f6f2ea;
  text-align: left;
  line-height: 180%;
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
}

.lesson-detail th span {
  position: relative;
  padding-left: 48px;
}

.lesson-detail tr:nth-child(1) th span::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: url(../img/experience/icon01.webp) no-repeat;
  background-size: 23px 28px;
  width: 23px;
  height: 28px;
  content: "";
}

.lesson-detail tr:nth-child(2) th span::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: url(../img/experience/icon02.webp) no-repeat;
  background-size: 28px 28px;
  width: 28px;
  height: 28px;
  content: "";
}

.lesson-detail tr:nth-child(3) th span::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: url(../img/experience/icon03.webp) no-repeat;
  background-size: 26px 34px;
  width: 26px;
  height: 34px;
  content: "";
}

.lesson-detail tr:nth-child(4) th span::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: url(../img/experience/icon04.webp) no-repeat;
  background-size: 23px 29px;
  width: 23px;
  height: 29px;
  content: "";
}

.lesson-detail td {
  padding: 36px 40px;
  background-color: rgba(153,102,0,.08);
  text-align: right;
}

.lesson-detail td big {
  display: block;
  line-height: 180%;
  font-size: 22px;
  font-weight: 600;
}

.lesson-detail td small {
  line-height: 160%;
  font-size: 16px;
}

.lesson-faq {
  padding: 144px 0 200px 0;
}

.lesson-faq ul {
  padding-top: 60px;
  list-style: none;
}

.lesson-faq ul li {
  padding: 36px 0;
}

.lesson-faq ul li+li {
  border-top: 1px solid #a1998b;
}

.lesson-faq ul li dl {
  text-align: left;
}

.lesson-faq ul li dl dt {
  padding-bottom: 20px;
}

.lesson-faq ul li dl dt div {
  display: flex;
  align-items: center;
  min-height: 60px;
}

.lesson-faq ul li dl dt div span {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c3946;
  border-radius: 50%;
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 100%;
  font-size: 30px;
}

.lesson-faq ul li dl dt div p {
  margin-left: 24px;
  line-height: 120%;
  font-size: 22px;
  font-weight: 600;
}

.lesson-faq ul li dl dd div {
  display: flex;
  align-items: center;
  min-height: 60px;
}

.lesson-faq ul li dl dd div span {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c1a470;
  border-radius: 50%;
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 100%;
  font-size: 30px;
}

.lesson-faq ul li dl dd div p {
  margin-left: 24px;
  line-height: 160%;
  font-size: 16px;
}

.about-lesson h2 small,
.lesson-detail h2 small,
.lesson-faq h2 small {
  color: #666;
}

.about-lesson h2 big,
.lesson-detail h2 big,
.lesson-faq h2 big {
  color: #2c3946;
}

@media only screen and (max-width : 1249px) {
	.about-lesson ol {
    flex-direction: column;
  }

  .about-lesson ol li+li {
    margin-left: 0;
  }

  .about-lesson ol li,
  .about-lesson ol li+li {
    margin: 0 auto;
  }
  
  .about-lesson ol li+li::before {
    display: none;
  }

  .about-lesson ol li+li::after {
    position: absolute;
    top: 20px;
    left: calc(50% - 9px);
    display: block;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
    content: "";
  }

  .about-lesson ol li dl dd>ul>li+li::after {
    display: none;
  }
}

@media screen and (min-width : 768px) and (max-width : 1249px) {
  .about-lesson {
    padding-top: 108px;
  }
  
  .about-lesson p {
    padding: 48px 0 30px 0;
    font-size: 17px;
  }
  
  .about-lesson ol li dl dt {
    padding: 32px 0 24px 0;
    font-size: 28px;
  }
  
  .about-lesson ol li dl dd b {
    padding-bottom: 20px;
  }

  .lesson-detail {
    padding-top: 108px;
  }
  
  .lesson-detail h2 {
    margin-bottom: 60px;
  }
  
  .lesson-detail th {
    padding: 27px 24px;
    font-size: 20px;
  }
  
  .lesson-detail td {
    padding: 27px 30px;
  }
  
  .lesson-detail td big {
    font-size: 20px;
  }
  
  .lesson-detail td small {
    font-size: 15px;
  }
}

@media only screen and (max-width : 767px) {
  .about-lesson {
    padding-top: 72px;
  }
  
  .about-lesson p {
    padding: 32px 0 20px 0;
    font-size: 17px;
  }
  
  .about-lesson ol li dl dt {
    padding: 16px 0 12px 0;
    font-size: 24px;
  }
  
  .about-lesson ol li dl dd b {
    padding-bottom: 10px;
  }

  .lesson-detail {
    padding-top: 72px;
  }
  
  .lesson-detail h2 {
    margin-bottom: 40px;
  }
  
  .lesson-detail th {
    display: block;
    padding: 18px 16px;
    border-right: none;
    border-bottom: 2px solid #f6f2ea;
    font-size: 18px;
  }
  
  .lesson-detail td {
    display: block;
    padding: 18px 20px;
  }
  
  .lesson-detail td big {
    font-size: 18px;
  }
  
  .lesson-detail td small {
    font-size: 14px;
  }
}

/* Trial Lesson (experience/index.html) End */

/* Plan (plan/index.html) Start */

.plan {
  padding-top: 144px;
}

.plan strong {
  display: block;
  padding: 52px 0 16px 0;
  line-height: 180%;
  font-size: 17px;
  font-weight: 400;
}

.plan article {
  background-color: #fff;
  border-radius: 12px 12px 0 0;
  margin-top: 72px;
}

.plan article h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  border-radius: 12px 12px 0 0;
  color: #fff;
  height: 98px;
}

.plan article h3 big {
  line-height: 100%;
  font-size: 28px;
  font-weight: 600;
}

.plan article h3 small {
  line-height: 100%;
  font-size: 12px;
  font-weight: 600;
}

.plan article section {
  padding: 0 28px;
}

.plan-time {
  padding-bottom: 40px;
  border-bottom: 1px solid #999;
}

.plan-time p {
  padding: 40px 0 44px 0;
  line-height: 180%;
  font-size: 20px;
  text-align: left;
}

.plan-time div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  color: #fff;
  width: 168px;
  height: 43px;
  line-height: 100%;
  font-size: 19px;
}

.tech-guide,
.practice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  border-radius: 12px;
  color: #fff;
  width: 323px;
  height: 123px;
}

.tech-guide small,
.practice small {
  position: relative;
  display: inline-block;
  line-height: 100%;
  font-size: 21px;
}

.tech-guide small {
  padding-left: 44px;
}

.tech-guide small::before,
.practice small::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}

.tech-guide small::before {
  background: url(../img/plan/icon01.webp) no-repeat;
  background-size: 27px 48px;
  width: 27px;
  height: 48px;
}

.practice small {
  padding-left: 57px;
}

.practice small::before {
  background: url(../img/plan/icon02.webp) no-repeat;
  background-size: 40px 38px;
  width: 40px;
  height: 38px;
}

.tech-guide big,
.practice big {
  line-height: 100%;
  font-size: 48px;
  font-weight: 600;
}

.tech-guide big span,
.practice big span {
  font-size: 21px;
}

.pt-plus {
  line-height: 100%;
  font-size: 45px;
}

.pt-total {
  display: flex;
  align-items: center;
}

.pt-total-equal {
  display: inline-block;
  padding-right: 8px;
  line-height: 100%;
  font-size: 45px;
}

.pt-total-title {
  display: inline-block;
  transform: translateY(-13px);
  padding-right: 8px;
  line-height: 100%;
  font-size: 21px;
}

.pt-total-time {
  display: inline-block;
  line-height: 100%;
  font-size: 60px;
  font-weight: 600;
}

.pt-total-time span {
  font-size: 21px;
}

.plan article:nth-of-type(1) h3,
.plan article:nth-of-type(1) .ticket,
.plan article:nth-of-type(1) .tech-guide,
.plan article:nth-of-type(1) .practice {
  background-color: #2c3946;
}

.plan article:nth-of-type(1) .pt-plus,
.plan article:nth-of-type(1) .pt-total-equal,
.plan article:nth-of-type(1) .pt-total-title,
.plan article:nth-of-type(1) .pt-total-time {
  color: #2c3946;
}

.plan article:nth-of-type(2) h3,
.plan article:nth-of-type(2) .ticket,
.plan article:nth-of-type(2) .tech-guide,
.plan article:nth-of-type(2) .practice {
  background-color: #c1a470;
}

.plan article:nth-of-type(2) .pt-plus,
.plan article:nth-of-type(2) .pt-total-equal,
.plan article:nth-of-type(2) .pt-total-title,
.plan article:nth-of-type(2) .pt-total-time {
  color: #c1a470;
}

.plan article:nth-of-type(3) h3,
.plan article:nth-of-type(3) .ticket,
.plan article:nth-of-type(3) .tech-guide,
.plan article:nth-of-type(3) .practice {
  background-color: #557a94;
}

.plan article:nth-of-type(3) .pt-plus,
.plan article:nth-of-type(3) .pt-total-equal,
.plan article:nth-of-type(3) .pt-total-title,
.plan article:nth-of-type(3) .pt-total-time {
  color: #557a94;
}

.plan-price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 40px 0;
}

.fee-cate {
  display: inline-block;
  margin-right: 12px;
  text-align: left;
  transform: translateY(-12px);
}

.fee-cate small {
  display: block;
  padding-bottom: 6px;
  line-height: 100%;
  font-size: 16px;
}

.fee-cate big {
  display: block;
  line-height: 100%;
  font-size: 45px;
  font-weight: 600;
}

.fee-cate big span {
  font-size: 21px;
}

.plan-plice-plus,
.plan-price-equal {
  display: inline-block;
  margin-right: 12px;
  line-height: 100%;
  font-size: 35px;
}

.plan-price-total {
  display: inline-block;
  line-height: 100%;
  font-size: 45px;
  font-weight: 600;
}

.plan-price-total span {
  font-size: 21px;
}


.fee-cate,
.plun-plice-plus {
  color: #666;
}

.plan h2 small,
.plan-fee h2 small {
  color: #666;
}

.plan h2 big,
.plan-fee h2 big {
  color: #2c3946;
}

.lesson-fee {
  padding: 144px 0 200px 0;
}

.lesson-fee h2 {
  margin-bottom: 76px;
}

.lesson-fee table {
  border-collapse: collapse;
  width: 100%;
}

.lesson-fee table thead {
  background-color: rgba(102,102,102,.14);
  border-top: 1px solid #666;
}

.lesson-fee table thead th,
.lesson-fee table thead td {
  padding: 24px 44px;
  line-height: 100%;
  font-size: 19px;
  font-weight: 600;
}

.lesson-fee table tbody {
  background-color: rgba(85,122,148,.08);
}

.lesson-fee table tbody th,
.lesson-fee table tbody td {
  padding: 40px 44px;
  line-height: 100%;
  font-size: 22px;
  font-weight: 600;
}

.lesson-fee table tr {
  border-bottom: 1px solid #666;
}

.lesson-fee table thead th,
.lesson-fee table tbody th {
  text-align: left;
}

.lesson-fee table thead td,
.lesson-fee table thead td {
  text-align: center;
}

.lesson-fee table td {
  white-space: nowrap;
}

.lesson-fee-sample {
  margin-top: 30px;
  text-align: left;
}

.lesson-fee-sample .label {
  font-size: 20px;
  font-weight: bold;
}

.lesson-fee-sample .notes {
  margin-top: 24px;
  font-weight: 500;
  color: #990000;
}

.lesson-fee-sample .lesson-fee-sample-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
  gap: 30px;
  margin-top: 24px;
}

.lesson-fee-sample .lesson-fee-sample-wrap .item p {
  font-weight: bold;
  line-height: 1.8;
}

@media only screen and (max-width : 1249px) {
	.plan-time div {
    flex-direction: column;
  }

  .ticket {
    margin-bottom: 20px;
  }

  .pt-plus {
    padding: 5px 0 10px 0;
  }
}

@media screen and (min-width : 768px) and (max-width : 1249px) {
  .plan {
    padding-top: 108px;
  }
  
  .plan strong {
    padding: 39px 0 12px 0;
  }
  
  .plan-time p {
    padding: 30px 0 33px 0;
    font-size: 18px;
  }

  .lesson-fee {
    padding: 108px 0 150px 0;
  }
  
  .lesson-fee h2 {
    margin-bottom: 57px;
  }
  
  .lesson-fee table thead th,
  .lesson-fee table thead td {
    padding: 18px 33px;
    line-height: 100%;
    font-size: 18px;
  }
  
  .lesson-fee table tbody th,
  .lesson-fee table tbody td {
    padding: 30px 33px;
    font-size: 20px;
  }
}

@media only screen and (max-width : 767px) {
  .plan {
    padding-top: 72px;
  }
  
  .plan strong {
    padding: 26px 0 8px 0;
  }
  
  .plan article h3 {
    padding: 0 14px;
    height: 70px;
  }
  
  .plan article h3 big {
    font-size: 16px;
  }
  
  .plan article h3 small {
    font-size: 11px;
  }

  .plan-time p {
    padding: 20px 0 22px 0;
    font-size: 16px;
  }

  .fee-cate small {
    font-size: 12px;
  }
  
  .fee-cate big,
  .plan-price-total {
    font-size: 21px;
  }

  .plan-plice-plus,
  .plan-price-equal {
    font-size: 21px;
  }

  .lesson-fee {
    padding: 72px 0 100px 0;
  }
  
  .lesson-fee h2 {
    margin-bottom: 38px;
  }
  
  .lesson-fee table thead th,
  .lesson-fee table thead td {
    padding: 12px 12px;
    line-height: 100%;
    font-size: 17px;
  }
  
  .lesson-fee table tbody th,
  .lesson-fee table tbody td {
    padding: 20px 12px;
    font-size: 18px;
  }
}

/* Plan (plan/index.html) End */

/* Scroll Animation Start */

.sa {
  opacity:0;
  transition:all .9s ease-in-out;
}

.sa.show {
  opacity:1;
  transform:none;
}

.ltr {
  transform:translate(-100px,0);
}

.rtl {
  transform:translate(100px,0);
}

.bt {
  transform:translate(0,100px);
}

.tb {
  transform:translate(0,-100px);
}

/* Scroll Animation End */


.ez-toc-title-container {
  display: none;
}

#ez-toc-container .ez-toc-list {
  margin-left: 1.5em;
}

#ez-toc-container .ez-toc-list li {
  list-style-type: decimal;
}

#ez-toc-container .ez-toc-list li ul {
  margin-left: 1.5em;
}

.wpcf7-not-valid-tip {
  margin-top: 0.5em;
}

.wpcf7-spinner {
  margin-top: 0.5em;
}

.wp-block-list {
  margin-top: 1em;
  margin-left: 1.5em;
}

.wp-block-list li {
  line-height: 1.4;
}

.wp-block-list.is-style-num_circle {
  margin: 1em 0 0;
  padding: 0;
  list-style: none;
  counter-reset: li;
}

.wp-block-list.is-style-num_circle li {
  position: relative;
  font-size: 16px;
  padding-left: 2em;
  line-height: 1.5;
}

.wp-block-list.is-style-num_circle li:not(:first-child) {
  margin-top: 0.5em;
}

.wp-block-list.is-style-num_circle li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #2c3946;
  font-size: 1rem;
  color: #fff;
  line-height: 20px;
  text-align: center;
}

.blog-main-text .obitsuki_title {
  width: fit-content;
  margin-top: 24px;
  padding: 12px 20px;
  background: #FFF;
  border-left: 4px solid #2c3946;
  font-weight: bold;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}

.wp-block-embed__wrapper {
  width: 100%;
}

.wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
}

.swell-block-capbox.cap_box {
  margin-top: 64px;
  background: #FFF;
}

.swell-block-capbox.cap_box .caption {
  padding: 16px 20px;
  background: #2c3946;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.swell-block-capbox.cap_box .wp-block-group {
  padding: 0 20px 16px;
}

.swell-block-capbox.cap_box .wp-block-group p {
  padding-top: 16px;
}

.blog-main-text .wechat_code .cap_box_ttl {
  padding: 16px 20px;
  color: #FFF;
  font-weight: bold;
  font-size: 16px;
  background: #2c3946;
  text-align: center;
}

.blog-main-text .wechat_code figure {
  margin-top: 0;
  padding: 16px 20px;
}

.wp-block-table th {
  background: #2c3946;
  color: #FFF;
  font-weight: bold;
}

.wp-block-table {
  border-bottom: 1px solid #2c3946;
  border-left: 1px solid #2c3946;
}

.wp-block-table th,
.wp-block-table td {
  padding: .5em .75em;
  border-top: 1px solid #2c3946;
  border-right: 1px solid #2c3946;
  border-bottom: none ;
  border-left: none;
}

.wp-block-table thead th {
  border-right: 1px solid #FFF;
}

.wp-block-table thead th:last-of-type {
  border-right: 1px solid #2c3946;
}

.balloon {
  align-items: flex-start;
  column-gap: 30px;
  margin-top: 24px;
}

.balloon .balloon_img {
  flex-basis: 80px;
}

.balloon .balloon_img .wp-block-image {
  width: 80px;
  height: 80px;
  margin-top: 0;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #2c3946;
}


.balloon .balloon_img .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.balloon .balloon_img .balloon_name {
  display: block;
  margin-top: 0;
  padding-top: 4px;
  font-size: 10px;
  line-height: 1;
  text-align: center;
}

.balloon .balloon_text {
  position: relative;
  flex-basis: auto!important;
  flex: 1!important;
  padding: 1em 1.5em;
  border-radius: 10px;
  border: 1px solid #2c3946;
  background: #FFF;
}

.balloon .balloon_text p {
  padding-top: 0;
}

.balloon .balloon_text:before {
  content: "";
  position: absolute;
  top: 20px;
  left: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 15px solid #2c3946;
  border-left: 0;
  border-radius: 2px;
}

.balloon .balloon_text:after {
  content: "";
  position: absolute;
  top: 21px;
  left: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 13px solid #ffffff;
  border-left: 0;
  border-radius: 2px;
}

.blog-main-text .wp-block-image a {
  overflow: hidden;
}

.blog-main-text .wp-block-image a img {
  transform-origin: center;
  transition: all 0.2s ease;
}

.blog-main-text .wp-block-image a:hover img {
  transform: scale(1.1);
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.blog_footer {
  margin-top: 64px;
}

.blog_footer .category {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.blog_footer .category ul {
  flex: 1;
  display: flex;
  align-items: center;
  column-gap: 15px;
  list-style: none;
}

.blog_footer .category ul li a {
  display: block;
  width: fit-content;
  padding: 7px 12px;
  background: #2c3946;
  color: #FFF;
  font-weight: bold;
  font-size: 14px;
  border-radius: 9999px;
}

.blog_footer .tags {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-top: 15px;
}

.blog_footer .tags .tags_inner {
  flex: 1;
  display: flex;
  align-items: center;
  column-gap: 20px;
  padding: 15px 15px;
  background: #FFF;
  border-radius: 20px;
}

.blog_nav {
  margin-top: 30px;
}

.blog_nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.blog_nav ul li {
  position: relative;
}

.blog_nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 4em;
  padding: 0 10px;
}

.blog_nav ul li:first-of-type a {
  border-left: 1.25em solid #2c3946;
}

.blog_nav ul li:last-of-type a {
  border-right: 1.25em solid #2c3946;
}

.blog_nav ul li:before {
  content: "";
  display: block;
  height: .5em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: .5em;
  z-index: 1;
  color: #fff;
}

.blog_nav ul li:first-of-type:before {
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  left: .35em;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.blog_nav ul li:last-of-type:before {
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  right: .35em;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}

.blog_related .obitsuki_title {
  width: fit-content;
  margin-top: 64px;
  padding: 12px 20px;
  border-left: 4px solid #2c3946;
  font-weight: bold;
}

.blog_related .blog_related_list {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
  gap: 24px 12px;
  list-style: none;
  margin-top: 24px;
}

.blog_related .blog_related_list li a {
  transition: all 0.2s ease;
}

.blog_related .blog_related_list li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.blog_related .blog_related_list li a .img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.blog_related .blog_related_list li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease;
}

.blog_related .blog_related_list li a:hover .img img {
  transform: scale(1.1);
}

.blog_related .blog_related_list li a .title {
  margin-top: 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}

.blog_related .blog_related_list li a .time {
  display: flex;
  align-items: center;
  column-gap: 4px;
  margin-top: 14px;
  font-size: 11px;
  color: #666;
  line-height: 1;
}

.blog-main-text .link_button_3d {
  margin-top: 36px;
}

.blog-main-text .link_button_3d a {
  padding: 15px 60px;
  background: #2c3946;
  color: #FFF;
  font-weight: bold;
  box-shadow: 0 5px 0 #6889a7; /* 影の太さ・色 */
  transition: all 0.2s ease;
}

.blog-main-text .link_button_3d a:hover {
  text-decoration: none;
  box-shadow: none;
  transform: translateY(5px);
}

.blog-detail .eyecatch img {
  width: 100%;
  height: auto;
}

.blog-main-text .wp-block-list.list_under_line li {
  border-bottom: 1px solid #2c3946;
  padding: 1em 0;
}

.blog-main-text .wp-block-list.list_under_line li a {
  color: #557a94;
}

.blog-main-text .wp-block-image.size-full img {
  width: 100%;
  height: auto;
}