@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #2C3424; /* RGB */
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8em;
  line-height: 1.8;
  text-align: center;
}
body p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
li {
  list-style: none;
}
.none {
  display: none;
}
#header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 50px;
  ;
}
#header h1 img {
  width: 100%;
  object-fit: contain;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.purple {
	background-color: #895586;
}
#header.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgba(247,243,230,.7);
  box-sizing: border-box;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
nav ul li a {
	display: block;
  text-decoration: none;
  color: #F7F3E6;
  padding-left: 30px;
  font-size: 1.4rem;
	line-height: 1.5;
}
nav ul li a span {
	display: block;
}
#header h1 {
  width: 120px;
}
.header-logo.-before {
  display: block;
}
.header-logo.-after {
  display: none;
}
#header.fixed .header-logo.-before {
  display: none;
}
#header.fixed .header-logo.-after {
  display: block;
}
#header.fixed nav ul li a {
  color: #2C3424;
}
#footer {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: fixed;
  z-index: 999; /*最前面へ*/
  top: 50%;
  transform: translateY(-50%) translateX(0);
  right: 10px;
  display: block;
  font-size: 1.4rem;
}
footer {
	background-color: #895586;
		color: #F7F3E6;
	padding: 60px 0 30px;
}
footer a {
	color: #F7F3E6;
	border-bottom: solid 1px #F7F3E6;
}
.footer-button {
	position: fixed;
	bottom: 14px;
	right: 80px;
	width: 240px;
	height: 60px;
	margin: 0 0 0 auto;
	background-color: #DAB2C0;
	color: #2C3424;
}
.footer-button p {
	position: absolute;
	display: inline-block;
	top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
	width: 80%;
	font-weight: 600;
}

@media (max-width:1060px) {
	body {
  font-size: 1.6em;
}
body p {
  font-size: 1.4rem;
}
  /*========= ナビゲーションのためのCSS ===============*/
  #header {
    height: 60px;
		padding: 15px;
  }
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
  }
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background-color: #F7F3E6;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #333;
    padding: 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 1.4rem;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #F7F3E6;
    width: 45%;
  }
  #header.fixed .openbtn span {
    background-color: #2C3424;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color: #2C3424;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #2C3424;
  }
  #header h1 {
    width: 100px;
  }
  #footer {
    position: relative;
    writing-mode: horizontal-tb;
    padding: 20px;
    top: 0px;
    right: 0px;
    z-index: 0;
    transform: translateY(0) translateX(0);
  }
	footer {
	padding: 20px 0 80px;
}
}

a {
  transition: 0.4s;
}

.blog-wrapper {
  flex-wrap: wrap;
  margin: 80px auto 60px!important;
}
.aboutTop {
  position: relative;
  height: 50vh;
}
.aboutTop img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.aboutTop h2 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #ffffff;
  text-shadow:
  0px 0px 3px #333333,
  0px 0px 6px #333333,
  0px 0px 9px #333333;
}
.aboutContent {
  clip-path: none!important;
}
.wp-pagenavi {
  margin-top: 40px;
}
input {
  font-size: 1.6rem;
}
textarea {
  font-size: 1.6rem;
}
.row img {
  aspect-ratio: 4/3;
}
.blog-wrapper {
  flex-wrap: wrap;
}
.lesson__contetnt {
  padding: 40px 0 120px !important;
}
.trial-submit {
  cursor: pointer;
  transition: 0.4s;
}
.trial-submit:hover {
  opacity: 0.6;
}
.submit {
  cursor: pointer;
  transition: 0.4s;
}
.submit:hover {
  opacity: 0.6;
}
.wpcf7-previous {
  display: block;
  padding: 10px 50px;
  margin: 40px auto 40px;
}
.single-article {
  padding: 50px 0;
  background-color: #F5EDD3;
  background-image: url(../images/index/bg-blog-contact.svg);
  background-size: contain;
  background-repeat: repeat-y;
}
.single__content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.mokuji {
  width: 50%;
  min-width: 300px;
  text-align: left;
  border: solid 1px #2C3424;
  padding: 20px 0;
  margin-bottom: 50px;
}
.mokuji h3 {
  width: 90%;
  font-size: 2rem;
  padding-bottom: 10px;
  border-bottom: solid 1px #2C3424;
  margin: 0 auto 10px;
}
.mokuji a {
  color: #2C3424;
}
.mokuji__ul__li {
  width: 90%;
  margin: 10px auto;
}
.mokuji__ul__smallLi {
  width: 90%;
  padding-left: 15px;
  margin: 0 auto 10px;
}
.single__text {
  text-align: left;
  margin-bottom: 40px;
}
.single__text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.single__text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.single__text p {
  margin-bottom: 20px;
}
.single__text img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
  width: 100%;
  max-width: 800px;
  height: 100%;
}
.pagenation {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.pagenation a {
  color: #2C3424;
}
.aboutTopProfile img {
  object-position: top right;
}