@charset "UTF-8";
/* Scss Document */
/* motion-> */
/*
	animation -- 固有名 -- 動作時間 -- ease -- 開始遅延 -- 繰り返し -- 正反
	ex) animation: anime1 2s ease 0s infinite alternate;
	*/
.wait {
  opacity: 0;
}

.play.fadeIn {
  animation: fadeIn 0.75s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.play.bounceIn {
  animation: bounceIn 0.75s ease 0s 1 normal;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  70% {
    opacity: 0.7;
    transform: scale(1.1, 1.1);
  }
  80% {
    opacity: 0.8;
    transform: scale(0.9, 0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

.play.slideLeft {
  animation: slideLeft 0.75s ease 0s 1 normal;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(3rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.play.slideRight {
  animation: slideRight 0.75s ease 0s 1 normal;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.play.slideUp {
  animation: slideUp 0.75s ease 0s 1 normal;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.play.fadeLeft {
  animation: fadeLeft 0.75s ease 0s 1 forwards;
}

@keyframes fadeLeft {
  0% {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: left top;
  }
}

.wait.fadeLeft {
  opacity: 0.99;
}

.play.fadeRight {
  animation: fadeRight 0.75s ease 0s 1 forwards;
}

@keyframes fadeRight {
  0% {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}

.fadeRight.wait {
  opacity: 0.99;
}

.play.fadeCenter {
  animation: fadeCenter 0.75s ease 0s 1 normal;
}

@keyframes fadeCenter {
  0% {
    transform: scale(0, 1);
    transform-origin: center;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: center;
  }
}

.play.fadeCenter2 {
  animation: fadeCenter2 0.75s ease 0s 1 normal;
}

@keyframes fadeCenter2 {
  0% {
    opacity: 0;
    transform: scale(0.8, 0.8);
    transform-origin: center;
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
    transform-origin: center;
  }
}

/* ->motion */
body {
  color: #171f21;
  font-family: 'Noto Sans JP', "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  background: #FFF;
}

a:hover img {
  opacity: 0.64;
  transition: 0.5s;
}

.ac:after,
article:after,
div:after,
dl:after,
ul:after {
  content: "";
  display: block;
  clear: both;
}

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

* {
  box-sizing: border-box;
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #1EAA39;
  z-index: 999;
}

.overlay .loader {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: url(../img/load.png) center/cover no-repeat;
  position: absolute;
  top: 50%;
  left: calc(50% - 5rem);
}

.overlay .loader2 {
  background: url(../img/load2.png) center/cover no-repeat;
  transition: 0.125s;
  transform: rotate(-35deg);
}

/* header */
.header {
  position: relative;
}

.header .headerContents {
  width: 100%;
}

.header .menu {
  width: 4rem;
  height: 4rem;
  position: fixed;
  right: 2em;
  top: 2em;
  cursor: pointer;
  background: #FFF;
  border-radius: 50%;
  z-index: 5;
}

.header .menu:hover {
  -webkit-box-shadow: 0px 0px 0.5rem 4px rgba(233, 235, 238, 0.9);
  -moz-box-shadow: 0px 0px 0.5rem 4px rgba(233, 235, 238, 0.9);
  box-shadow: 0px 0px 0.5rem 4px rgba(233, 235, 238, 0.9);
}

.header .menu span {
  display: block;
  width: 1.5rem;
  height: 2px;
  position: absolute;
  left: 1.25rem;
  background: #1EAA39;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header .menu .span {
  top: calc(50% - 9px);
}

.header .menu .span2 {
  bottom: calc(50% - 1px);
  opacity: 1;
}

.header .menu .span3 {
  bottom: calc(50% - 9px);
}

.header .menu.open {
  background: #1EAA39;
}

.header .menu.open span {
  background: #fff;
}

.header .menu.open .span {
  top: calc(50% - 1px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header .menu.open .span2 {
  opacity: 0;
}

.header .menu.open .span3 {
  bottom: calc(50% - 1px);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header nav {
  display: none;
  width: 100%;
  background: #1EAA39;
  position: fixed;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 3;
}

.header nav .box {
  width: 100%;
  max-width: 30em;
  margin: 0 auto;
  padding: 3em 0;
}

.header nav .box h2 {
  margin: 0 0 2.5rem;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}

.header nav ul li {
  width: calc((100% - 5.25rem) / 2);
  border-top: 1px solid rgba(255, 255, 255, 0.64);
  margin-right: 5.25rem;
  float: left;
}

.header nav ul li:nth-last-child(-n+2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.64);
}

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

.header nav ul li a {
  display: block;
  padding: 1.25rem 0;
}

.header nav ul li a img {
  margin: 0 auto;
  height: 1rem;
}

.header nav .reservation {
  position: relative;
  margin: 2.5rem 0 0;
}

.header nav .reservation h3 {
  width: 7.75rem;
  padding: 0.425rem 0;
  border: 1px solid rgba(255, 255, 255, 0.64);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  font-size: 1.15rem;
  font-weight: normal;
}

.header nav .reservation .txt {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0.5rem;
  text-align: center;
  font-size: 1.15rem;
  text-indent: -0.5em;
  font-feature-settings: "palt" 1;
}

.header nav .reservation .tel {
  position: absolute;
  right: 0;
  top: 0.25rem;
  font-family: 'Ropa Sans', sans-serif;
  font-size: 1.5rem;
}

.header .h1 {
  position: fixed;
  left: 2em;
  top: 2em;
  z-index: 4;
}

.header .h1 img {
  height: 8rem;
}

.header .mainImage {
  padding-top: 62.5%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.header .mainImage .layer {
  width: 100%;
  padding-top: 62.5%;
  background: #1EAA39;
  position: absolute;
  top: 0;
  left: 0;
}

/* footer */
.footer {
  position: relative;
  margin: 6.75em 0 0;
  padding: 0 0 4em;
}

.footer #pagetop a {
  display: block;
  width: 3rem;
  position: absolute;
  right: 5.75em;
  top: -5.75rem;
}

.footer .body {
  position: relative;
  margin: 4em auto 0;
}

.footer .logo {
  margin: 0 0 2.75rem;
}

.footer .logo img {
  height: 6rem;
}

.footer .left {
  position: relative;
}

.footer .left .green a {
  display: block;
  position: absolute;
  top: 1.75rem;
  right: 0;
  width: 11rem;
  padding: 1em 0;
  background: #1EAA39;
  color: #fff;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
  text-align: center;
}

.footer .left .green a:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: 0.5s;
}

.footer .nav {
  margin: 0 0 3.25rem;
}

.footer .nav li {
  width: calc((100% - 3.5rem) / 2);
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  margin-right: 3.5rem;
  float: left;
}

.footer .nav li:nth-last-child(-n+2) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

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

.footer .nav li a {
  display: block;
  padding: 1.5rem 0;
}

.footer .nav li a img {
  margin: 0 auto;
  height: 1rem;
}

.footer .right {
  position: relative;
}

.footer .sns {
  padding: 2em 0 0;
}

.footer .sns p {
  position: absolute;
  left: 0;
  top: 2.5rem;
  font-family: 'Ropa Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.075em;
}

.footer .sns ul {
  text-align: right;
}

.footer .sns ul li {
  display: inline-block;
  margin: 0 0 0 1em;
}

.footer .sns ul li a img {
  margin: 0 auto;
  height: 2rem;
}

.footer .sns iframe {
  margin: 4.5em auto 0;
}

.footer .author {
  margin: -0.5em 0;
  line-height: 2;
  clear: both;
}

.footer .map .left {
  padding-top: 95.7317%;
  background: url("../img/lithe.jpg") center/cover no-repeat;
}

.footer .map .right {
  position: relative;
}

.footer .map .right iframe {
  position: absolute;
  top: 0;
  left: 0;
}

/* contents */
p {
  font-feature-settings: "palt" 1;
}

.contents .contactBox {
  margin: 5.25em auto 0;
}

.contents .contactBox .trial {
  background: #005BAB;
  padding: 2em;
}

.contents .contactBox .trial p {
  margin: -0.375em 0;
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: bold;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
}

.contents .contactBox .title2 {
  margin: 5.25rem 0 0;
  position: relative;
  text-align: center;
}

.contents .contactBox .title2 span.txt2 {
  position: relative;
  display: inline-block;
  background: #fff;
  margin: 0 2.5rem;
  padding: 0 2rem;
  z-index: 2;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-indent: 0.1em;
}

.contents .contactBox .title2 span.border {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.contents .contactBox .tel {
  display: table;
  width: 100%;
  max-width: 500px;
  margin: 2.25rem auto;
}

.contents .contactBox .tel span {
  display: table-cell;
  vertical-align: middle;
}

.contents .contactBox .tel span.b {
  width: 11rem;
  padding: 0.5rem 0;
  color: #FFF;
  text-align: center;
  font-size: 1.38rem;
  background: #1EAA39;
}

.contents .contactBox .tel span.b.blue {
  background: #005BAB;
}

.contents .contactBox .tel span.n {
  font-size: 2.5rem;
  font-family: 'Ropa Sans', sans-serif;
  padding: 0 0 0 1.25rem;
}

.contents .contactBox .tel span.t {
  font-size: 1.38rem;
  padding: 0 0 0 1.25rem;
}

.contents .contactBox .email {
  margin: 3em 0 0;
  text-align: center;
}

.contents .contactBox .txt {
  text-align: center;
  margin: -0.5em 0;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
  line-height: 2;
}

.post p {
  margin: calc(3rem + -0.5em) 0 -0.5em;
  line-height: 2;
  letter-spacing: 0.075em;
}

.post .center {
  text-align: center;
  text-indent: 0.075em;
}

.post .image {
  margin: 5em 0 0;
  padding-top: 69.29%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.post .image .layer {
  width: 100%;
  padding-top: 69.29%;
  background: #1EAA39;
  position: absolute;
  top: 0;
  left: 0;
}

.post .image2 {
  padding-top: 36.8571%;
  margin: 5em 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.subPage .header .mainImage {
  padding-top: 50.8%;
  position: relative;
}

.subPage .header .mainImage .layer {
  width: 100%;
  padding-top: 50.8%;
  background: #1EAA39;
  position: absolute;
  top: 0;
  left: 0;
}

.subPage .contents {
  padding-top: 14.25em;
}

.subPage .contents h1 {
  position: relative;
  text-align: center;
  font-size: 1.5rem;
}

.subPage .contents h1 span {
  position: relative;
  display: inline-block;
  background: #fff;
  margin: 0 2.5rem;
  padding: 0 2rem;
  z-index: 2;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-feature-settings: "palt" 1;
}

.subPage .contents h1 span.en {
  font-size: 1.75rem;
  font-family: 'Ropa Sans', sans-serif;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}

.subPage .contents h1 div {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.subPage .contents h2 {
  margin: 3.25rem 0 0;
  text-align: center;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
  font-size: 1.38rem;
}

.subPage .contents .staffs {
  padding: 5em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.75);
}

.subPage .contents .staffs:last-child {
  border-bottom: none;
}

.subPage .contents .staffs .right .name {
  margin-bottom: 2rem;
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.025em;
}

.subPage .contents .staffs .right .txt {
  margin: -0.375em 0;
  line-height: 1.75;
}

.subPage .contents .staffs .left {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subPage .contents .support {
  padding: 3.75rem 0 0;
}

.subPage .contents .support .head {
  position: relative;
}

.subPage .contents .support .head .logo img {
  height: 4rem;
}

.subPage .contents .support .head .title {
  position: absolute;
  top: 1.25rem;
  right: 0;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.045em;
}

.subPage .contents .support .box {
  margin: 3.75rem auto 0;
  position: relative;
  padding: 2em 1em;
}

.subPage .contents .support .box .border {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.subPage .contents .support .box p {
  margin: -0.375em 0;
  font-size: 1.25rem;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
  line-height: 1.75;
  text-align: center;
}

.subPage .contents .support .txt {
  margin: calc(-0.5em + 3.75rem) 0 -0.5em;
  line-height: 2;
  letter-spacing: 0.05em;
}

.subPage .contents .support .list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.75);
  padding-bottom: 3.75rem;
}

.subPage .contents .infoBox ul li {
  display: table;
  width: 100%;
  margin: 3em 0 0;
}

.subPage .contents .infoBox ul li .date {
  display: table-cell;
  width: 7.25rem;
  font-weight: bold;
  letter-spacing: 0.025em;
}

.subPage .contents .infoBox ul li .box {
  display: table-cell;
  width: calc(100% - 7.25rem);
}

.subPage .contents .infoBox ul li .box span {
  display: block;
}

.subPage .contents .infoBox ul li .box .title {
  display: block;
  margin: -0.25em 0;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

.subPage .contents .infoBox ul li .box .txt {
  margin: calc(-0.5em + 2.75rem) 0 -0.5em;
  line-height: 2;
  letter-spacing: 0.075em;
}

.subPage .contents .infoBox ul li .box .imgList {
  margin: 2.75em 0 0;
}

.subPage .contents .infoBox ul li .box .imgList .img {
  padding-top: 73.25%;
  float: left;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 2.25em;
}

.subPage .contents .wp-pagenavi {
  letter-spacing: -0.4em;
  text-align: center;
  margin: 4em auto 0;
}

.subPage .contents .wp-pagenavi.middle {
  padding-top: 4em;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.subPage .contents .wp-pagenavi span {
  display: inline-block;
  width: 2.75rem;
  letter-spacing: normal;
  padding: 0.75rem 0;
  margin: 0 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  text-align: center;
  font-weight: bold;
}

.subPage .contents .wp-pagenavi a {
  display: inline-block;
  width: 2.75rem;
  letter-spacing: normal;
  padding: 0.75rem 0;
  margin: 0 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  text-align: center;
  font-weight: bold;
}

.subPage .contents .wp-pagenavi a:hover {
  background: black;
  color: #FFF;
  text-decoration: none;
  transition: 0.5s;
}

.subPage .contents .availability .head {
  position: relative;
  margin: 2.75rem 0 0;
}

.subPage .contents .availability .head .prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  cursor: pointer;
}

.subPage .contents .availability .head .next {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  cursor: pointer;
}

.subPage .contents .availability .head .month {
  padding: 0.5rem 0;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-indent: 0.06em;
}

.subPage .contents .availability .head ul {
  margin: 1.5rem 0 0;
  text-align: center;
}

.subPage .contents .availability .head ul li {
  display: inline-block;
  font-size: 12px;
  padding: 0 0.25rem;
  line-height: 2;
  vertical-align: middle;
}

.subPage .contents .availability .head ul li span.yellow {
  color: #FFF799;
}

.subPage .contents .availability .head ul li span.blue {
  color: #D4ECEA;
}

.subPage .contents .availability ::-webkit-scrollbar {
  -webkit-appearance: none;
  height: 1rem;
  background-color: #e5e5e5;
}

.subPage .contents .availability ::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  border: 2px solid #e5e5e5;
  background-color: #bbb;
}

.subPage .contents .availability .of {
  width: 100%;
  overflow-x: scroll;
  margin: 1em 0 0;
}

.subPage .contents .availability .of table {
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
}

.subPage .contents .availability .of table tr th {
  width: calc(100% / 12);
  padding: 0.75em 0.25em;
  text-align: center;
  font-size: 0.8rem;
  font-weight: normal;
  border-left: 1px solid #808080;
  border-top: 1px solid #808080;
  font-feature-settings: "palt" 1;
}

.subPage .contents .availability .of table tr th.blue {
  background: #D4ECEA;
}

.subPage .contents .availability .of table tr td {
  min-width: 4.5em;
  padding: 0.75em 0.25em;
  text-align: center;
  font-size: 0.8rem;
  border-left: 1px solid #808080;
  border-top: 1px solid #808080;
  vertical-align: top;
}

.subPage .contents .availability .of table tr td.close {
  background: #FFF799;
  border-left-style: solid;
}

.subPage .contents .availability .of table tr td.blue {
  background: #D4ECEA;
}

.subPage .contents .availability .pager ul li {
  margin-bottom: 1rem;
}

.subPage .contents .availability .pager ul li a {
  padding: 0.875rem 0;
  font-size: 0.9rem;
}

.slide {
  position: relative;
  margin: 5.25em 0 13.25em;
}

.slide .image {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.slide .image li {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.slide .thum {
  width: 100%;
  position: absolute;
  bottom: -5.5rem;
  left: 0;
  z-index: 9;
}

.slide .thum ul {
  margin: 0 auto;
  width: 100% !important;
  text-align: center;
}

.slide .thum ul li {
  display: inline-block;
  position: relative;
  margin: 0 3.75em;
}

.slide .thum ul li span {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  cursor: pointer;
  text-indent: -9999px;
  margin: auto;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #E6E6E6;
}

.slide .thum ul li.on span {
  background: #808080;
}

#availability .contents {
  padding-top: 6.25rem;
}

#availability .contents .center {
  margin: 1em 0 0;
  text-align: center;
  font-size: 1.15rem;
}

#availability .contents .date {
  margin: 3rem 0 0;
  position: relative;
  text-align: center;
}

#availability .contents .date span.t {
  position: relative;
  display: inline-block;
  background: #fff;
  margin: 0 2.5rem;
  padding: 0 2rem;
  font-size: 12px;
  z-index: 2;
}

#availability .contents .date .border {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#service .contents .staffs {
  border-bottom: none;
  padding: 5em 0 0;
}

#service .contents .works {
  margin: 3.75em 0 0;
}

#service .contents .works li {
  height: 6rem;
  border: 1px solid rgba(45, 85, 156, 0.49);
  color: #2D559C;
  letter-spacing: 0.05em;
  text-align: center;
  text-indent: 0.05em;
  position: relative;
}

#service .contents .works li span {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-weight: bold;
  line-height: 1.5;
}

#service .contents .list h3 {
  margin: calc(-0.5em + 3.75rem) 0 -0.5em;
  color: #2D559C;
  letter-spacing: 0.025em;
  line-height: 2;
}

#service .contents .list .txt {
  margin: calc(-0.5em + 1rem) 0 -0.5em;
}

#service .contents .contactBox {
  border-top: 1px solid rgba(0, 0, 0, 0.75);
  padding-top: 5.25em;
}

#staff .contents {
  padding-top: 3.75em;
}

/* index */
#index .contents {
  margin: 5.25em 0 0;
}

#index .contents h2 {
  margin: 5.25rem 0 0;
  position: relative;
  text-align: center;
  font-size: 1.5rem;
}

#index .contents h2 span {
  position: relative;
  display: inline-block;
  background: #fff;
  margin: 0 2.5rem;
  padding: 0 2rem;
  z-index: 2;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-feature-settings: "palt" 1;
}

#index .contents h2 span.en {
  font-size: 1.75rem;
  font-family: 'Ropa Sans', sans-serif;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}

#index .contents h2 div {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#index .contents .txt {
  margin: -0.5em 0;
  letter-spacing: 0.075em;
  line-height: 2;
}

#index .contents .txt.center {
  text-align: center;
  text-indent: 0.075em;
}

#index .contents .catch {
  margin: -0.575em 0;
  text-align: center;
  line-height: 2.15;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
}

#index .contents #infomation ul {
  margin: 3.25em auto 0;
}

#index .contents #infomation ul li {
  display: table;
  width: 100%;
  margin-bottom: 0.5em;
}

#index .contents #infomation ul li:last-child {
  margin-bottom: 0;
}

#index .contents #infomation ul li .date {
  display: table-cell;
  width: 7.25rem;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

#index .contents #infomation ul li .txt {
  display: table-cell;
  line-height: 1.5;
}

#index .contents #system .body {
  margin: 3.5em auto 0;
}

#index .contents #system .body .price {
  display: table;
  margin: 3.5rem auto 0;
}

#index .contents #system .body .price p {
  display: table-cell;
}

#index .contents #system .body .price .txt1 {
  width: 21.5rem;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

#index .contents #system .body .price .txt2 {
  padding-left: 2.25rem;
  font-feature-settings: "palt" 1;
  vertical-align: middle;
}

#index .contents #system .body .price .txt2 strong {
  font-size: 2rem;
  font-weight: normal;
}

#index .contents #system .body .txt3 {
  text-align: center;
  margin: 3.5rem 0 0;
}

#index .contents .training .mainImage {
  margin: 9em 0 0;
  padding-top: 56.25%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#index .contents .training .mainImage .layer {
  width: 100%;
  padding-top: 56.25%;
  background: #1EAA39;
  position: absolute;
  top: 0;
  left: 0;
}

#index .contents .training .body h3 {
  margin: 0 0 1.75rem;
  text-align: center;
}

#index .contents .training .body h3 span {
  display: inline-block;
  padding: 0 0 0 1.75rem;
  vertical-align: middle;
  font-size: 1.25rem;
}

#index .contents .training .body h3 img {
  display: inline-block;
  vertical-align: middle;
}

#index .contents .training .body .title {
  margin: 5.75rem 0 0;
}

#index .contents .training .body .title img {
  height: 7rem;
  margin: 3.75em auto 0;
}

#index .contents .training .body .title span {
  display: block;
  margin: 3.25rem 0 0;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.045em;
  text-indent: 0.045em;
}

#index .contents .training .body .txtB {
  margin: -0.5em 0;
  text-align: center;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}

#index .contents .training .body .box {
  position: relative;
  margin: 3.5rem auto;
  padding: 1.75em 0;
}

#index .contents .training .body .box .border {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

#index .contents .training .body .box p {
  margin: -0.375em 0;
  font-size: 1.25rem;
  letter-spacing: 0.07em;
  text-indent: 0.07em;
  line-height: 1.75;
  text-align: center;
}

#index .contents .training .body .box2 {
  width: 100%;
  max-width: 600px;
  position: relative;
  margin: 4em auto 3.5rem;
  padding: 0.25em 5em 3em;
}

#index .contents .training .body .box2 .border {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-top: 1px solid #07579F;
  border-bottom: 1px solid #07579F;
}

#index .contents .training .body .box2 p {
  margin: calc(2.25rem + -0.375em) 0 -0.375em;
  color: #07579F;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
  line-height: 2;
}

#index .contents .training .body .box2 p.center {
  text-align: center;
  font-weight: bold;
}

#index .contents .training .body .menuPrice {
  margin: 5.5em auto 0;
}

#index .contents .training .body .menuPrice h4 {
  margin: 3.75rem 0 0;
  position: relative;
  font-size: 1.25rem;
}

#index .contents .training .body .menuPrice h4 span {
  position: absolute;
  right: 0;
  top: 0;
}

#index .contents .training .body .menuPrice .txt {
  margin: calc(2rem + -0.5em) 0 -0.5em;
}

#index .contents .training .body .menuPrice table {
  margin: 2rem 0 0;
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

#index .contents .training .body .menuPrice table th {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding: 1rem 0;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: normal;
  text-align: center;
}

#index .contents .training .body .menuPrice table td {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding: 2rem 0;
  font-size: 1.25rem;
  text-align: center;
}

#index .contents .training .body .menuPrice ul.kome {
  margin: 2.5em 0 0;
}

#index .contents .training .body .menuPrice ul.kome li {
  position: relative;
  font-feature-settings: "palt" 1;
  padding-left: 1em;
  margin: 0 0 1rem;
  line-height: 1.25;
}

#index .contents .training .body .menuPrice ul.kome li::after {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

#index .contents .training .body .menuPrice ul.kome li.blue {
  color: #005BAB;
}

#index .contents .training .body .menuPrice ul.maru li {
  position: relative;
  font-feature-settings: "palt" 1;
  padding-left: 1em;
  margin: 0 0 1rem;
  line-height: 1.25;
}

#index .contents .training .body .menuPrice ul.maru li::after {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

#index .contents .training .body .menuPrice ul.maru li.blue {
  color: #005BAB;
}

#index .contents .training .body .menuPrice .body2 {
  margin: 4em auto 0;
}

#index .contents .training .body .menuPrice .body2 ul.coruse li {
  display: table;
  width: 100%;
  margin: 0 0 1.75rem;
}

#index .contents .training .body .menuPrice .body2 ul.coruse li span {
  display: table-cell;
  font-size: 1.15rem;
  text-align: center;
  font-feature-settings: "palt" 1;
  vertical-align: middle;
}

#index .contents .training .body .menuPrice .body2 ul.coruse li span.waku {
  padding: 0.5rem 0;
  font-size: 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

#index .contents .training .body .menuPrice .body2 ul.coruse li span strong {
  font-size: 2rem;
}

#index .contents .training .body .menuPrice .body2 ul.coruse2 li {
  display: table;
  width: 100%;
  margin: 0 0 1.75rem;
}

#index .contents .training .body .menuPrice .body2 ul.coruse2 li span {
  width: 25%;
  max-width: 164px;
  display: table-cell;
  font-feature-settings: "palt" 1;
  vertical-align: middle;
}

#index .contents .training .body .menuPrice .body2 ul.coruse2 li span:nth-of-type(2) {
  width: 50%;
}

#index .contents #toga .body h2 {
  margin-top: 8rem;
}

#index .contents #toga .body .title img {
  height: 6rem;
}

#index .contents #toga .body .menuPrice {
  margin-top: 5rem;
}

#index .contents #toga .body .menuPrice .body2 .coruse {
  margin: 3.75em 0;
}
