@charset "UTF-8";

/*! =================================================
※※※※※※※※※※※※※※※※※※※※※※※※※
このCSSファイルはSassから生成されていますので、
※※※※※※※※※※※※※※※※※※※※※※※※※
=================================================== */
/* ---------------------------------------------------
base.scss
--------------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
  line-height: 140%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
  -webkit-transition: .3s all;
  transition: .3s all;
}

a:hover {
  opacity: .7;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

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

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #ececec;
}

th,
td {
  vertical-align: middle;
  border: 1px solid #ececec;
}

td {
  padding: 0 8px;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

address {
  font-style: normal;
}

/*---------------------------------------------------------
ここからフォーム
---------------------------------------------------------*/
form {
  margin: 0;
  padding: 0;
}

form button {
  width: auto;
  display: inline-block;
  padding: 0.6em 2em;
  margin: 0;
  background-image: none;
  background-color: #b1b1b1;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 0;
  font-size: 1.6rem;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

form button:hover,
form button:focus {
  outline: none;
}

form button:hover {
  opacity: .6;
}

form button ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input,
textarea {
  width: 100%;
  padding: 2px 8px;
  border-radius: 0;
  border: none;
  background-image: none;
  font-family: inherit;
  font-size: 1.4rem;
}

textarea {
  height: 120px;
}

textarea:hover,
textarea:focus {
  outline: none;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type="submit"],
input[type="button"] {
  width: 220px;
  display: inline-block;
  padding: 16px 0;
  margin: 0;
  background-image: none;
  background-color: #b1b1b1;
  color: #000;
  text-decoration: none;
  border: none;
  border-radius: 20px;
  font-size: 2rem;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

  input[type="submit"],
  input[type="button"] {
    display: block;
    width: 100%;
    font-size: 1.6rem;
  }
}

input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
  outline: none;
}

input[type="submit"]:hover,
input[type="button"]:hover {
  opacity: .6;
}

input[type="submit"] ::-moz-focus-inner,
input[type="button"] ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]+span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 16px 0 0;
  cursor: pointer;
}

input[type="radio"]+span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: block;
}

input[type="radio"]+span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="radio"]:checked+span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #707070;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: block;
  opacity: 1;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]+span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 16px 0 0;
  cursor: pointer;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

input[type="checkbox"]+span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #707070;
  border-radius: 2px;
  width: 26px;
  height: 26px;
  display: block;
}

input[type="checkbox"]+span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="checkbox"]:checked+span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 26px;
  height: 15.6px;
  margin-top: -0.2em;
  display: block;
  border-left: 4px solid #b1b1b1;
  border-bottom: 4px solid #b1b1b1;
  opacity: 1;
}

select {
  padding: 0.4em 2.4em 0.4em 0.8em;
  border-radius: 0;
  background-color: #fff;
  background-position: right 6px center;
  background-repeat: no-repeat;
  background-size: 24px;
  font-family: inherit;
  font-size: 1.6rem;
  color: #000;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid #707070;
  background-image: url(https://affect-gym.com/wp-content/uploads/2021/07/select_arrow.png);
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

/* ---------------------------------------------------
inner.scss
--------------------------------------------------- */
.inner {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1000px;
  height: inherit;
}

@media screen and (max-width: 999px) {
  .inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 767px) {
  .inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  input[type="checkbox"]+span {
    margin-bottom: 10px;
  }
}

.rt-inner {
  position: relative;
  /*max-width: 1100px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 999px) {
  .rt-inner {
    padding-left: 24px;
  }
}

@media screen and (max-width: 767px) {
  .rt-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 16px;
    padding-left: 16px;
  }
}

.lt-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*max-width: 1100px;*/
  width: 100%;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .lt-inner {
    padding-right: 24px;
  }
}

@media screen and (max-width: 767px) {
  .lt-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-right: 16px;
    padding-left: 16px;
  }
}

.lower-inner {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 999px) {
  .lower-inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 767px) {
  .lower-inner {
    width: 100%;
    max-width: 540px;
    padding-right: 16px;
    padding-left: 16px;
  }
}

.btn-more {
  text-align: center;
}

.btn-more a {
  display: inline-block;
  color: #000;
  font-size: 2rem;
  background-color: #b1b1b1;
  border-radius: 20px;
  padding: 17px 0;
  width: 220px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px) {
  .btn-more a {
    display: block;
    width: auto;
    font-size: 1.6rem;
  }
}

.btn-more a:hover {
  opacity: .7;
}

.kakko {
  background-image: url(../img/kakko01.png), url(../img/kakko02.png);
  background-position: center left, center right;
  background-size: contain, contain;
  background-repeat: no-repeat, no-repeat;
  padding: 30px;
}

.price-btn-more {
  text-align: center;
}

.price-btn-more,
.price-btn-pickup {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 45px;
}

@media screen and (max-width: 999px) {
  .price-list-item {
    padding-bottom: 100px !important;
  }

  .price-btn-more,
  .price-btn-pickup {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 45px;
  }
}

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

  .price-btn-more,
  .price-btn-pickup {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 45px;
    width: 80%;
    margin: auto;
  }
}

.price-btn-more a {
  display: inline-block;
  color: #000;
  font-size: 2rem;
  background-color: #FFF;
  border-radius: 20px;
  border: 3px solid #1F3851;
  padding: 14px 0;
  width: 150px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.price-list-item:nth-child(2) .price-btn-more a {
  border: 3px solid #52687F;
}

.price-list-item:nth-child(3) .price-btn-more a {
  border: 3px solid #52687F;
}

.price-list-item:nth-child(2) .price-btn-more a:hover {
  background: #52687F;
}

.price-list-item:nth-child(3) .price-btn-more a:hover {
  background: #52687F;
}

@media screen and (max-width: 767px) {
  .price-btn-more a {
    display: block;
    width: auto;
    font-size: 1.6rem;
  }
}

.price-btn-more a:hover {
  background-color: #1F3851;
  color: #FFF;
}

.price-btn-pickup {
  text-align: center;
}

.price-btn-pickup a {
  display: inline-block;
  color: #FFF;
  font-size: 2rem;
  background-color: #b1b1b1;
  border-radius: 20px;
  border: 3px solid #b1b1b1;
  padding: 14px 0;
  width: 150px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px) {
  .price-btn-pickup a {
    display: block;
    width: auto;
    font-size: 1.6rem;
  }
}

.price-btn-pickup a:hover {
  background-color: #FFF;
  color: #000;
}

.price_img {
	margin-bottom: 30px;
}

.contact-btn {
  text-align: left;
}

.contact-btn a {
  display: inline-block;
  color: #000;
  text-align: center;
  font-size: 1.8rem;
  background-color: #b1b1b1;
  border-radius: 20px;
  padding: 28px 0;
  width: 266px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px) {
  .contact-btn a {
    display: block;
    width: auto;
    font-size: 1.6rem;
  }
}

.contact-btn a:hover {
  opacity: .7;
}

.line_btn {
  text-align: left;
  margin-top: 30px;
}

.line_btn a {
  display: block;
  background: #18BC05;
  max-width: 266px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 20px;
}

.line_btn a img {
  width: 30px;
  height: auto;
  vertical-align: middle;
  padding-right: 10px;
}

#line_re .line_btn a {
  margin: 30px auto;
}

@media screen and (max-width: 767px) {
  .line_btn a {
    max-width: 100%;
  }
}

.footer-btn {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .footer-btn {
    text-align: center;
  }
}

.footer-btn a {
  display: inline-block;
  color: #000;
  text-align: center;
  font-size: 1.8rem;
  background-color: #b1b1b1;
  border-radius: 20px;
  padding: 28px 0;
  width: 266px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px) {
  .footer-btn a {
    display: block;
    width: auto;
    font-size: 1.6rem;
  }
}

.footer-btn a img {
  padding-left: 19px;
}

.footer-btn a:hover {
  opacity: .7;
}

.lower-kv {
  background-size: cover;
  width: 100%;
  max-width: 100%;
  height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 124px;
  margin-top: 90px;
  position: relative;
}

@media screen and (max-width: 999px) {
  .lower-kv {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .lower-kv {
    height: 160px;
    margin-bottom: 64px;
    margin-top: 60px;
  }
}

#load {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  overflow: visible;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  z-index: 9999;
  background-color: #000;
}

#load div {
  position: absolute;
  width: 20px;
  height: 36px;
  top: 30%;
  opacity: 0;
  font-family: Helvetica, Arial, sans-serif;
  animation: move 2s linear infinite;
  -o-animation: move 2s linear infinite;
  -moz-animation: move 2s linear infinite;
  -webkit-animation: move 2s linear infinite;
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  color: #b1b1b1;
}

#load div:nth-child(2) {
  animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}

#load div:nth-child(3) {
  animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

#load div:nth-child(4) {
  animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

#load div:nth-child(5) {
  animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}

#load div:nth-child(6) {
  animation-delay: 1s;
  -o-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

#load div:nth-child(7) {
  animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}

@keyframes move {
  0% {
    left: 0;
    opacity: 0;
  }

  35% {
    left: 41%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  65% {
    left: 59%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  100% {
    left: 100%;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    opacity: 0;
  }
}

@-webkit-keyframes move {
  0% {
    left: 0;
    opacity: 0;
  }

  35% {
    left: 41%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  65% {
    left: 59%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  100% {
    left: 100%;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    opacity: 0;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

header {
  position: fixed;
  background-color: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 10;
}

@media screen and (max-width: 999px) {
  header {
    height: 60px;
  }
}

header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 90px;
  margin: 0 auto;
  padding-left: 66px;
  padding-right: 60px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header .header-inner h1 {
  font-size: 1.0rem;
  font-weight: normal;
}

@media screen and (max-width: 999px) {
  header .header-inner {
    height: 60px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 767px) {
  header .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

header .header-inner .header-logo img {
  vertical-align: middle;
  padding-right: 10px;
}

@media screen and (min-width: 999px) {
  header .header-inner.fixed_h {
    height: 60px;
  }
}

@media screen and (max-width: 999px) {
  header .header-inner .pc-gloval-nav {
    display: none;
  }
}

header .header-inner .pc-gloval-nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .header-inner .pc-gloval-nav .menu .menu-item:not(:last-child) {
  margin-right: 40px;
}

header .header-inner .pc-gloval-nav .menu .menu-item a {
  display: block;
  line-height: 90px;
}

.f_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 500px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
	display: none;
}

.f_nav.fixed_b {
  display: none;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.f_nav ul {
  display: flex;
  align-items: center;
}

.f_nav ul li {
  width: 50%;
  text-align: center;
}

.f_nav ul li a {
  display: block;
  color: #000;
  font-size: 0.9rem;
  line-height: 120%;
  padding-top: 10px;
}

.f_nav ul li a img {
  width: 25px;
  height: auto;
  margin: auto;
  display: block;
}

.gloval-nav {
  position: relative;
  width: 100%;
  margin-top: -45px;
  z-index: 1000;
}

.gloval-nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 10px;
  z-index: 1000;
}

.gloval-nav .menu .tenpo {
  width: 100px;
  text-align: center;
  padding: 10px 20px;
  font-size: 1.2rem;
  background: #52687F;
  border-radius: 10px;
  margin-right: 10px;
}


.gloval-nav .menu .tenpo ul {
  display: none;
}

.gloval-nav .menu .tenpo:hover ul {
  display: block;
}

.gloval-nav .menu .tenpo ul li a {
  display: block;
  padding: 5px 0;
}

.gloval-nav .menu .tenpo ul l:last-of-type a {
  padding-bottom: 0;
}

.gloval-nav .menu .taiken a {
  text-align: center;
  font-size: 1.2rem;
  display: block;
  background: #1F3851;
  padding: 5px 10px;
  color: #fff;
  line-height: 140%;
  border-radius: 10px;
}

/*------------------------
ハンバーガーメニュー
------------------------*/
#nav-toggle {
  display: block;
}

#nav-toggle .txt {
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: -5px;
}


.open #nav-toggle .txt {
  display: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  #nav-toggle {
    display: block;
    position: fixed;
    top: 12px;
    right: 10px;
    height: 32px;
    cursor: pointer;
  }

  #nav-toggle>div {
    margin-top: 0px !important;
  }

  .gloval-nav .menu .taiken a {
    font-size: 0.9rem;
    padding: 7px 7px;
  }

  .gloval-nav .menu .tenpo {
    font-size: 1.0rem;
  }

  #nav-toggle .txt {
    font-size: 0.8rem;
  }

  .gloval-nav .menu {
    right: 35px;
  }
}

#nav-toggle>div {
  position: relative;
  width: 30px;
  height: 30px;
  margin-top: 10px;
}

#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #FFF;
  position: absolute;
  -webkit-transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out, top .5s ease;
  transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
}

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

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

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

.open #nav-toggle span {
  background: #FFF;
}

.open #nav-toggle span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

.open #nav-toggle span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#global-nav {
  background: rgba(0, 0, 0, 0.9);
  color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.5rem;
  opacity: 0;
  -webkit-transition: opacity .6s ease, visibility .6s ease;
  transition: opacity .6s ease, visibility .6s ease;
}

@media screen and (max-width: 767px) {
  #global-nav {
    font-size: 1.8rem;
  }

  .gloval-nav .menu .tenpo {
    width: auto;
    padding: 5px;
    min-width: 50px;
  }

  .gloval-nav .menu .tenpo a {
    vertical-align: text-top;
  }
}

#global-nav a {
  display: block;
  color: #FFF;
  text-decoration: none;
  padding: 12px 0;
  -webkit-transition: color .6s ease;
  transition: color .6s ease;
  font-size: 1.8rem;
}

#global-nav a .txt_s {
  font-size: 1.2rem;
  display: block;
  color: #b1b1b1;
}

#global-nav a:hover {
  color: #666;
}

#global-nav ul {
  list-style: none;
}

#global-nav ul li {
  opacity: 0;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  -webkit-transition: opacity .2s ease, -webkit-transform .6s ease;
  transition: opacity .2s ease, -webkit-transform .6s ease;
  transition: transform .6s ease, opacity .2s ease;
  transition: transform .6s ease, opacity .2s ease, -webkit-transform .6s ease;
}

#global-nav ul li:nth-child(2) {
  -webkit-transition-delay: .15s;
  transition-delay: .15s;
}

#global-nav ul li:nth-child(3) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

#global-nav ul li:nth-child(4) {
  -webkit-transition-delay: .45s;
  transition-delay: .45s;
}

#global-nav ul li:nth-child(5) {
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}

#global-nav ul li:nth-child(6) {
  -webkit-transition-delay: .75s;
  transition-delay: .75s;
}

#global-nav ul li:nth-child(7) {
  -webkit-transition-delay: .9s;
  transition-delay: .9s;
}

#global-nav ul li:nth-child(8) {
  -webkit-transition-delay: 1.05s;
  transition-delay: 1.05s;
}

/* open */
.open {
  overflow: hidden;
}

.open #global-nav {
  visibility: visible;
  opacity: 1;
}

.open #global-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}

.top-kv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 600px;
  background-image: url(../img/kv_bg.jpg);
  background-size: cover;
  margin-top: 90px;
}

@media screen and (max-width: 999px) {
  .top-kv {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .top-kv {
    /*margin-bottom: 64px;*/
    margin-top: 60px;
    background-position: center center;
  }
}

.top-kv .lead {
  text-align: center;
  margin: auto;
}

.top-kv .lead-1 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.0rem;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .top-kv .lead-1 {
    line-height: 1.5;
    font-size: 2.4rem;
    margin-bottom: 22px;
  }
}

.top-kv .lead-2 {
  font-size: 1.5rem;
  color: #d6d6d6;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .top-kv .lead-2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .top-kv .lead-4 {
    margin-top: 20px;
  }
}

.top-kv .lead-3 {
  max-width: 320px;
  margin: auto;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2;
  padding: 20px;
  border: 1px solid #fff;
}

.top-kv .lead-4 {
  /*border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;*/
  margin-top: 30px;
  padding: 10px;
  display: inline-block;
  font-size: 1.4rem;
}

.top-kv .lead-5 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2;
  margin-top: 30px;
}

.top-kv .lead ul {
  max-width: 320px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-kv .lead ul li {
  border-radius: 50%;
  /*background: rgba(255,255,255,0.2);*/
  color: #fff;
  text-align: center;
  padding: 15px;
  padding-top: 21px;
  width: 90px;
  height: 90px;
  box-sizing: border-box;
  font-size: 1.4rem;
  border: 1px solid #aaa;
}

@media screen and (max-width: 767px) {
  .top-kv .lead {
    width: 80%;
  }

  .top-kv .lead-3 {
    font-size: 1.4rem;
  }

  .top-kv .lead-5 {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.top-kv .bar_img {
  position: absolute;
  top: 5%;
  right: 20px;
  max-width: 200px;
}

.bar_img {
  position: absolute;
  top: 5%;
  right: 20px;
  max-width: 200px;
}

@media screen and (max-width: 999px) {
  .top-kv .bar_img {
    max-width: 150px;
    height: auto;
    top: auto;
    bottom: 5%;
  }

  .bar_img {
    max-width: 150px;
    height: auto;
    top: auto;
    bottom: 5%;
  }
}

@media screen and (max-width: 767px) {
  .top-kv .bar_img {
    max-width: 120px;
    height: auto;
    top: auto;
    right: 0;
    left: 0;
    bottom: 5%;
    margin: auto;
  }

  .bar_img {
    max-width: 120px;
    height: auto;
    top: auto;
    right: 5px;
    bottom: -57px;
    margin: auto;
  }
}

.topun {
  background: #333;
  width: 100%;
}

.topun ul {
  max-width: 800px;
  padding: 25px 0;
  margin: auto;
  display: flex;
	justify-content: center;
}

.topun ul li {
  width: 50%;
}

.topun ul li a {
  display: block;
  padding: 20px 0;
  text-align: center;
  background: #1F3851;
}

.topun ul li a img {
  width: auto;
  height: 12px;
  padding-left: 20px;
  vertical-align: baseline;
}

/*.topun ul li:nth-of-type(2) a {
  background: #1F3851;
}*/

.about {
  margin-bottom: 120px;
}

@media screen and (max-width: 999px) {
  .about {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .about {
    margin-bottom: 64px;
    margin-top: 100px;
  }

  .topun ul {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .topun ul li {
    width: 90%;
    margin: auto;
  }

  .topun ul li a {
    font-size: 1.4rem;
  }
}

.about-txt {
  width: 40%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .about-txt {
    width: 100%;
  }
}

.about-txt .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: left;
  color: #FFF;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .about-txt .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .about-txt .sec-ttl {
    font-size: 2.5rem;
  }
}

.about-txt .sec-ttl:first-letter {
  color: #52687F;
}

.about-txt .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: left;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .about-txt .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.about-txt h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 20px;
}

.about-txt p {
  line-height: 2.25;
	padding-bottom: 20px;
}

.about-txt p.in_txt .num {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-weight: 800;
	    font-size: 1.8rem;
    padding-right: 10px;
}

@media screen and (max-width: 999px) {
  .about-txt p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 767px) {
  .about-txt p {
    text-align: justify;
    margin-bottom: 24px;
  }
}

.about-img {
  /*-webkit-clip-path: polygon(50% 0%, 100% 0, 100% 100%, 8% 100%);
          clip-path: polygon(50% 0%, 100% 0, 100% 100%, 8% 100%);*/
  width: 50%;
  /*height: 590px;*/
}

@media screen and (max-width: 999px) {
  .about-img {
    /*
-webkit-clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0% 100%);*/
    width: 50%;
    /*height: 500px;*/
  }

  .about-img img {
    /*margin-top: 30%;*/
  }
}

@media screen and (max-width: 767px) {
  .about-img {
    -webkit-clip-path: none;
    clip-path: none;
    width: 100%;
    height: 300px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.about-img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .about-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .about.training .rt-inner .about-img {
    order: 2;
  }

  .about.training .rt-inner .about-txt {
    order: -1;
  }
}

.movie {
  margin-bottom: 120px;
}

@media screen and (max-width: 999px) {
  .movie {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .movie {
    margin-bottom: 0;
  }
}

.movie-img {
  text-align: center;
  max-width: 800px;
  height: auto;
  margin: auto;
}

.covid {
  margin: auto;
  padding-bottom: 100px;
  padding-top: 100px;
  background: #111111;
}

.covid .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.0rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 72px;
}

.covid .sec-ttl:first-letter {
  color: #52687F;
}

.covid .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

.covid .inner {
  max-width: 650px;
}

.covid h3 {
  line-height: 150%;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.covid p {
  margin-bottom: 20px;
}

.covid ul li {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 999px) {
  .covid {
    margin: 80px auto;
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .covid .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .covid {
    margin: 0 auto 20px;
  }

  .covid .sec-ttl {
    text-align: left;
  }

  .covid .sub-ttl {
    text-align: left;
    font-size: 1.4rem;
  }

  .covid h3 {
    font-size: 1.6rem;
  }

  .covid ul li {
    font-size: 1.4rem;
  }
}

.worries {
  margin: 0 auto 0;
  padding: 150px 0;
  background-image: url("../img/bk01.jpg");
  background-size: cover;
  background-position: center center;
}

.worries .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.0rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 72px;
}

.worries .sec-ttl:first-letter {
  color: #52687F;
}

.worries .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

.worries .inner {
  max-width: 730px;
  text-align: center;
}

.worries h3 {
  line-height: 150%;
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  display: inline-block;
}

.worries p {
  /*margin-bottom: 30px;*/
  text-align: center;
  display: inline-block;
  margin: 0 auto 30px;
}

.worries ul {
  margin-bottom: 30px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
}

.worries ul li {
  padding-left: 2em;
  text-indent: -2em;
  padding-bottom: 5px;
  color: #000;
  text-align: left;
}

.worries ul li img {
  width: 30px;
  height: auto;
  padding-right: 10px;
}

.worries a {
  display: block;
  color: #000;
  font-size: 1.4rem;
  background-color: #b1b1b1;
  border-radius: 20px;
  padding: 17px 20px;
  width: 330px;
  -webkit-transition: .3s all;
  transition: .3s all;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .worries {
    margin: 80px auto;
  }

  .worries .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .worries {
    margin: 0px auto;
    padding: 100px 0;
  }

  .worries .sec-ttl {
    text-align: left;
  }

  .worries .sub-ttl {
    text-align: left;
  }

  .worries h3 {
    font-size: 1.6rem;
    text-align: left;
  }

  .worries ul li {
    font-size: 1.4rem;
  }

  .worries p {
    text-align: left;
  }
}


.facility {
  margin: 120px auto 0;
  position: relative;
}

@media screen and (max-width: 999px) {
  .facility {
    margin: 100px auto;
  }
}

@media screen and (max-width: 767px) {
  .facility {
    margin: 100px auto 0;
  }

  .inner-tenpo {
    padding: 100px 0 !important;
  }
}

.facility .inner {
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.facility .inner:nth-of-type(2) {
  background: #111;
}

.facility .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 72px;
}

.facility .sec-ttl:first-letter {
  color: #52687F;
}

.facility h3.sec-ttl:first-letter {
  color: #ffffff;
}

.facility h3.sec-ttl {
  font-size: 2.6rem;
}

@media screen and (max-width: 999px) {
  .facility .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .facility .sec-ttl {
    font-size: 2.5rem;
    margin-bottom: 0;
  }

  .facility h3.sec-ttl {
    font-size: 2.0rem;
  }
}

.facility .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

.facility h3 .sub-ttl {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .facility .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }

  .facility h3 .sub-ttl {
    font-size: 1.2rem;
    margin-top: 5px;
  }
}

.facility li {
  /* 	width: calc(25% - 60px / 4); */
  width: 100%;
  /*     margin-right: 14px; */
  margin-right: 0;
  margin-bottom: 70px;
  display: inline-block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.facility li:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .facility li {
    font-size: 1.2rem;
    width: calc(50% - 16px / 2);
    margin-right: 0px;
    margin-bottom: 32px;
  }

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

  .facility li:nth-child(n+7) {
    margin-bottom: 0;
  }
}

.facility .box {
  margin-bottom: 120px;
  position: relative;
  max-width: 800px;
}

.facility .box .facility-detail h3 {
  text-align: left;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.0rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 30px;
}

.facility .box .facility-detail h3 .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.2rem;
  margin-top: 5px;
  text-align: left;
}

.facility .box .facility-detail .add {
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.facility .box .facility-detail .add dt {
  max-width: 200px;
  width: 100%;
  font-weight: 900;
  color: #52687F;
}

.facility .box .facility-detail .map-wrap {
  padding-top: 60px;
}

.facility .box .facility-detail .map-wrap h3 {
  text-align: center;
}

.facility .box .facility-detail .map-wrap h3 .sub-ttl {
  text-align: center;
}

.facility .box .facility-detail ul {
  display: flex;
}

.facility .box .facility-detail ul li {
  width: 100%;
  display: block;
  margin: 30px auto 0;
}

.facility .box .facility-detail ul li a {
  max-width: 350px;
  font-size: 1.35rem;
  padding: 15px 30px;
  text-align: center;
  color: #000;
  background-color: #b1b1b1;
  border-radius: 20px;
  display: block;
  margin: auto;
}

.facility .box .facility-detail iframe {
  width: 100%;
}

.facility .box .facility-img {
  overflow: hidden;
  min-height: 330px;
}

.facility .box .facility-img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

.facility .btn-more {
  text-align: left;
}

.facility .btn-more a {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .facility .box {
    margin-top: 60px;
    padding: 0 20px;
  }

  .facility .box .facility-detail {
    position: relative;
    top: 0;
  }

  .facility .swiper-button-prev {
    left: 34% !important;
  }

  .facility .swiper-button-next {
    right: 30% !important;
  }

  .facility .box {
    margin: 0 20px;
  }

  .facility .box .facility-img {
    margin-left: 0;
    margin-top: 30px;
  }

  .slider1 .swiper-button-prev,
  .swiper-button-next {
    display: block;
  }

  .slider1 .swiper-button-next {
    display: block;
  }

  .facility .box .facility-detail .add dt {
    max-width: 100px;
  }
}

.choosing {
  margin-bottom: 150px;
  padding: 150px 0;
  background-image: url("../img/bk01.jpg");
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 999px) {
  .choosing {
    margin-bottom: 100px;
  }
}

.inner-tenpo {
  /*max-width: 800px;*/
  margin: auto;
  background: #111;
  padding: 150px 0;
}

.inner-tenpo:first-of-type {
  /*margin-top: 30px;*/
  background: #000;
  padding-top: 60px;
}

.inner-tenpo:nth-of-type(3) {
  /*margin-top: 30px;*/
  background: #000;
}

.inner-tenpo .box {
  max-width: 800px;
  margin: auto;
	padding-top: 60px;
	margin-top: -60px;
}

@media screen and (max-width: 767px) {
  .choosing {
    margin-bottom: 64px;
    padding: 100px 0 80px;
  }
}

.choosing .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 72px;
}

.choosing .sec-ttl:first-letter {
  color: #52687F;
}

@media screen and (max-width: 999px) {
  .choosing .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .choosing .sec-ttl {
    font-size: 2.5rem;
  }
}

.choosing .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .choosing .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.choosing-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .choosing-items {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }
}

.choosing-items .choosing-item {
  text-align: center;
  font-size: 1.9rem;
  line-height: 2;
  width: calc(25% - 60px / 4);
  margin-right: 20px;
  margin-bottom: 70px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 999px) {
  .choosing-items .choosing-item {
    font-size: 1.4rem;
    width: calc(25% - 45px / 4);
    margin-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .choosing-items .choosing-item {
    font-size: 1.2rem;
    width: calc(50% - 16px / 2);
    margin-right: 16px;
    margin-bottom: 32px;
  }

  .choosing-items .choosing-item:nth-child(2n) {
    margin-right: 0;
  }

  .choosing-items .choosing-item:nth-child(n+7) {
    margin-bottom: 0;
  }
}

.choosing-items .choosing-item:nth-child(4n) {
  margin-right: 0;
}

.choosing-items .choosing-item:nth-child(n+5) {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .choosing-items .choosing-item:nth-child(n+5) {
    margin-bottom: 32px;
  }
}

.choosing-items .choosing-item:before,
.choosing-items .choosing-item:after {
  position: absolute;
  content: '';
  height: 0%;
  width: 2px;
  background: #b1b1b1;
}

.choosing-items .choosing-item:before {
  right: 0;
  top: 0;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.choosing-items .choosing-item:after {
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.1s 0.2s ease;
  transition: all 0.1s 0.2s ease;
}

.choosing-items .choosing-item:hover:before {
  -webkit-transition: all 0.1s 0.2s ease;
  transition: all 0.1s 0.2s ease;
  height: 100%;
}

.choosing-items .choosing-item:hover:after {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  height: 100%;
}

.choosing-items .choosing-item span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px 0;
}

.choosing-items .choosing-item span:before,
.choosing-items .choosing-item span:after {
  position: absolute;
  content: '';
  background: #b1b1b1;
}

.choosing-items .choosing-item span:before {
  left: 0;
  top: 0;
  width: 0%;
  height: 3px;
  -webkit-transition: all 0.1s 0.1s ease;
  transition: all 0.1s 0.1s ease;
}

.choosing-items .choosing-item span:after {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
}

.choosing-items .choosing-item span:hover:before {
  width: 100%;
}

.concept {
  margin-bottom: 110px;
  /*padding-top: 110px;*/
}

@media screen and (max-width: 999px) {
  .concept {
    margin-bottom: 100px;
    padding-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .concept {
    margin-bottom: 64px;
    padding-top: 50px;
  }
}

.concept .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 62px;
}

.concept .sec-ttl:first-letter {
  color: #52687F;
}

@media screen and (max-width: 999px) {
  .concept .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .concept .sec-ttl {
    font-size: 2.5rem;
  }
}

.concept .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .concept .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.concept-img-left {
  -webkit-clip-path: polygon(0 0, 67% 0, 100% 100%, 0 100%);
  width: 50%;
  /*height: 550px;*/
  position: relative;
}

.concept-img-left>div:after {
  content: "";
  display: block;
  padding-top: 100%;
  overflow: hidden;
}

.concept-img-left>div img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 999px) {
  .concept-img-left {
    height: 490px;
  }
}

@media screen and (max-width: 767px) {
  .concept-img-left {
    -webkit-clip-path: none;
    clip-path: none;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 350px;
  }
}

.concept-img-left img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .concept-img-left img {
    width: 110%;
  }
}

.concept-img-right {
  -webkit-clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
  width: 50%;
  /*height: 621px;*/
  text-align: right;
  position: relative;
}

.concept-img-right>div {
  content: "";
  display: block;
  padding-top: 100%;
}

.concept-img-right>div img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 999px) {
  .concept-img-right {
    height: 550px;
  }
}

@media screen and (max-width: 767px) {
  .concept-img-right {
    -webkit-clip-path: none;
    clip-path: none;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: auto;
  }
}

.concept-img-right img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .concept-img-right img {
    width: 100%;
  }
}

.concept-caps-top {
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
  margin: auto;
}

@media screen and (max-width: 767px) {
  .concept-caps-top {
    -webkit-transform: translateX(-6%);
    transform: translateX(-6%);
    margin-bottom: 16px;
  }
}

.concept-caps-top .cap-2 {
  -webkit-transform: translateX(10%);
  transform: translateX(10%);
}

@media screen and (max-width: 767px) {
  .concept-caps-top .cap-2 {
    -webkit-transform: translateX(8%);
    transform: translateX(8%);
  }
}

.concept-caps-top .cap-3 {
  -webkit-transform: translateX(18%);
  transform: translateX(18%);
}

@media screen and (max-width: 767px) {
  .concept-caps-top .cap-3 {
    -webkit-transform: translateX(16%);
    transform: translateX(16%);
  }
}

.concept-caps-top .cap-4 {
  -webkit-transform: translateX(25%);
  transform: translateX(25%);
}

@media screen and (max-width: 767px) {
  .concept-caps-top .cap-4 {
    -webkit-transform: translateX(24%);
    transform: translateX(24%);
  }
}

.concept-caps-bottom {
  -webkit-transform: translateX(8%);
  transform: translateX(8%);
  margin: auto;
}

@media screen and (max-width: 999px) {
  .concept-caps-bottom {
    padding-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .concept-caps-bottom {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .concept-caps-bottom .cap-11 {
    display: table;
    -webkit-transform: translateX(4%);
    transform: translateX(4%);
  }
}

.concept-caps-bottom .cap-10 {
  -webkit-transform: translateX(6%);
  transform: translateX(6%);
}

@media screen and (max-width: 767px) {
  .concept-caps-bottom .cap-10 {
    display: table;
    -webkit-transform: translateX(17%);
    transform: translateX(17%);
  }
}

.concept-caps-bottom .cap-9 {
  -webkit-transform: translateX(14%);
  transform: translateX(14%);
}

@media screen and (max-width: 767px) {
  .concept-caps-bottom .cap-9 {
    display: table;
    -webkit-transform: translateX(28%);
    transform: translateX(28%);
  }
}

.concept-caps-bottom .cap-8 {
  -webkit-transform: translateX(21%);
  transform: translateX(21%);
}

@media screen and (max-width: 767px) {
  .concept-caps-bottom .cap-8 {
    display: table;
    -webkit-transform: translateX(43%);
    transform: translateX(43%);
  }
}

.concept-caps-bottom .cap-7 {
  -webkit-transform: translateX(28%);
  transform: translateX(28%);
}

@media screen and (max-width: 767px) {
  .concept-caps-bottom .cap-7 {
    display: table;
    -webkit-transform: translateX(85%);
    transform: translateX(85%);
  }
}

.concept-caps-bottom .cap-6 {
  -webkit-transform: translateX(36%);
  transform: translateX(36%);
}

@media screen and (max-width: 767px) {
  .concept-caps-bottom .cap-6 {
    display: table;
    -webkit-transform: translateX(85%);
    transform: translateX(85%);
  }
}

.concept-caps-bottom .cap-5 {
  -webkit-transform: translateX(43%);
  transform: translateX(43%);
}

@media screen and (max-width: 767px) {
  .concept-caps-bottom .cap-5 {
    display: table;
    -webkit-transform: translateX(75%);
    transform: translateX(75%);
  }
}

.concept-quote {
  font-weight: 800;
  /*font-style: italic;*/
  font-size: 8rem;
  color: #000;
  background-color: #b1b1b1;
  padding: 48px 0;
  text-align: center;
  font-family: 'Anton', sans-serif;
  letter-spacing: 6px;
}

@media screen and (max-width: 999px) {
  .concept-quote {
    font-size: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .concept-quote {
    font-size: 2.3rem;
    padding: 24px 0;
  }
}

.concept-cap-top h3,
.concept-cap-bottom h3 {
  font-size: 2.2rem;
  margin-bottom: 13px;
  text-indent: -1em;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.concept-cap-top h3:hover,
.concept-cap-bottom h3:hover {
  opacity: .7;
}

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

  .concept-cap-top h3,
  .concept-cap-bottom h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}

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

  .concept-cap-top h3,
  .concept-cap-bottom h3 {
    font-size: 1.6rem;
  }
}

.concept-cap-top h3:first-letter,
.concept-cap-bottom h3:first-letter {
  color: #b1b1b1;
  font-size: 3rem;
}

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

  .concept-cap-top h3:first-letter,
  .concept-cap-bottom h3:first-letter {
    font-size: 2.6rem;
  }
}

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

  .concept-cap-top h3:first-letter,
  .concept-cap-bottom h3:first-letter {
    font-size: 2.6rem;
  }
}

.concept-cap-top p,
.concept-cap-bottom p {
  position: relative;
  font-size: 1.8rem;
  padding-left: 20px;
}

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

  .concept-cap-top p,
  .concept-cap-bottom p {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}

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

  .concept-cap-top p,
  .concept-cap-bottom p {
    font-size: 1.2rem;
  }
}

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

  .concept-cap-top p,
  .concept-cap-bottom p {
    padding-left: 15px;
  }
}

.concept-cap-top p:before,
.concept-cap-bottom p:before {
  position: absolute;
  top: -20%;
  left: 0;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  border-right: 1px solid #FFF;
  border-top: 1px solid #FFF;
  content: '';
}

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

  .concept-cap-top p:before,
  .concept-cap-bottom p:before {
    width: 10px;
    height: 10px;
  }
}

.concept-cap-top {
  margin-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .concept-cap-top {
    margin-bottom: 15px;
  }
}

.concept-cap-top:last-child {
  margin-bottom: 0;
}

.concept-cap-bottom {
  margin-bottom: 12px;
}

.concept-cap-bottom:last-child {
  margin-bottom: 0;
}

.blog {
  margin-bottom: 110px;
}

.blog:nth-of-type(even) {
  padding-top: 100px;
}

.blog:nth-of-type(odd) {
  background: #111;
  padding: 100px 0;
  margin-bottom: 0;
}

@media screen and (max-width: 999px) {
  .blog {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .blog {
    margin-bottom: 100px;
  }
}

.blog .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 38px;
}

@media screen and (max-width: 999px) {
  .blog .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .blog .sec-ttl {
    font-size: 2.5rem;
  }
}

.blog .sec-ttl:first-letter {
  color: #52687F;
}

.blog .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .blog .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

/*  サムネイル有り */

.article {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .article {
    max-width: 540px;
    margin-bottom: 48px;
  }
}

.article-lists {
  display: flex;
  flex-wrap: wrap;
}

.article-lists-item {
  width: 23%;
  margin-right: 2.6%;
}

.article-lists-item:nth-of-type(4n) {
  margin-right: 0;
}

/* .article-lists-item .thum {
	display: block;
	position: relative;
	background-image: url("https://affect-gym.com/wp-content/themes/training-gym/img/logo_voice.jpg");
	background-position: center center;
} */

.article-lists-item .thum a {
  content: "";
  /* 	padding-top: 100%; */
  display: block;
}

.article-lists-item .thum a:hover {
  opacity: 1;
}

.article-lists-item .thum a:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.article-lists-item .thum img {
  height: 230px;
  object-fit: cover;
}

.article-lists-item .thum.low img {
  height: 184px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .article-lists-item .thum img {
    height: 171px;
    object-fit: cover;
  }

  .article-lists-item .thum.low img {
    height: 171px;
    object-fit: cover;
  }
}

.article-lists-item .post-meta {
  padding: 10px 0;
}

.article-lists-item .post-meta span {
  color: #000;
  font-size: 1.4rem;
  display: block;
  background-color: #FFF;
  text-align: center;
  width: 110px;
  padding-top: 4px;
  padding-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .article-lists-item .post-meta span {
    font-size: 1.2rem;
    padding: 4px 12px;
  }
}

.article-lists-item .post-meta time {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .article-lists-item .post-meta time {
    font-size: 1.2rem;
  }
}

.article-lists-item .post-ttl {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .article-lists {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .article-lists-item {
    width: 48%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* 元データ　
.article {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .article {
    max-width: 540px;
    margin-bottom: 48px;
  }
}

.article-lists {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .article-lists {
    text-align: left;
  }
}

.article-lists-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #FFF;
  padding: 15px 0;
}

@media screen and (max-width: 767px) {
  .article-lists-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 18px 0;
  }
}

.article-lists-item a {
  display: block;
}

.article-lists-item .post-meta {
  width: 43%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .article-lists-item .post-meta {
    margin-bottom: 16px;
    width: 100%;
  }
}

.article-lists-item .post-meta time {
  font-size: 1.4rem;
  margin-right: 11px;
}

@media screen and (max-width: 767px) {
  .article-lists-item .post-meta time {
    font-size: 1.2rem;
  }
}

.article-lists-item .post-meta span {
  color: #000;
  font-size: 1.4rem;
  display: inline-block;
  background-color: #FFF;
  text-align: center;
  width: 110px;
  padding-top: 4px;
  padding-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .article-lists-item .post-meta span {
    font-size: 1.2rem;
    padding: 4px 12px;
  }
}

.article-lists-item .post-ttl {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.4;
}*/

.voice {
  margin-bottom: 180px;
}

.voice .inner.g_btn {
  display: flex;
  justify-content: space-between;
}

.voice .inner a.btn_g {
  display: flex;
  background: #ccc;
  height: 70px;
  padding: 10px 20px;
  box-sizing: border-box;
  align-items: center;
  color: #000;
}

.voice .inner a img.logo_g {
  width: auto;
  height: 40px;
  padding-right: 20px;
}

.voice .inner a img.yaji {
  width: auto;
  height: 12px;
  padding-left: 20px;
}

@media screen and (max-width: 999px) {
  .voice {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .voice {
    margin: 150px auto 0;
  }

  .voice .inner a.btn_g {
    height: 60px;
    padding: 10px;
    font-size: 1.2rem;
  }

  .voice .inner a img.logo_g {
    height: 30px;
    padding-right: 15px;
  }

  .voice .inner a img.yaji {
    padding-left: 15px;
  }
}

.voice .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: left;
  color: #FFF;
  margin-bottom: 63px;
}

.voice .sec-ttl:first-letter {
  color: #52687F;
}

@media screen and (max-width: 999px) {
  .voice .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .voice .sec-ttl {
    font-size: 2.5rem;
  }
}

.voice .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: left;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .voice .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.voice-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  margin: 0 auto;
  padding: 0 5%;
}

@media screen and (max-width: 767px) {
  .voice-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
  }
}

.voice-card-img {
  width: 45%;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;
  /*-webkit-clip-path: polygon(0 0, 67% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 67% 0, 100% 100%, 0 100%);*/
}

.voice-card-img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .voice-card-img {
    width: 100%;
    /*height: 350px;*/
    -webkit-clip-path: none;
    clip-path: none;
    margin-right: 0;
  }

  .voice-card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.voice-card-txt {
  color: #000;
  /*width: 50%;*/
  padding: 30px 0;
}

@media screen and (max-width: 999px) {
  .voice-card-txt {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .voice-card-txt {
    width: 100%;
    padding: 24px;
  }
}

.voice-card-txt h3 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.9rem;
  /*width: 120%;
  -webkit-transform: translateX(-17%);
          transform: translateX(-17%);*/
  margin-bottom: 30px;
}

@media screen and (max-width: 999px) {
  .voice-card-txt h3 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .voice-card-txt h3 {
    font-size: 1.6rem;
    width: auto;
    -webkit-transform: none;
    transform: none;
    margin-bottom: 16px;
  }
}

.voice-card-txt p {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .voice-card-txt p {
    font-size: 1.3rem;
  }
}

.swiper-button-next,
.swiper-button-prev {
  outline: none;
}

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

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

.swiper-button-next:after,
.swiper-button-prev:after {
  content: '';
}

.swiper-button-next {
  right: 13%;
}

.slider1 .swiper-button-next {
  right: 40%;
}

.swiper-button-prev {
  left: 13%;
}

.slider1 .swiper-button-prev {
  left: 40%;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #FFF;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #b1b1b1;
  opacity: 1;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.swiper-parent {
  position: relative;
}

.swiper-container {
  padding-bottom: 50px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .swiper-container {
    margin-bottom: 25px;
  }
}

.slider1 .swiper-slide-active {
  /* 	width: 380px !important; */
  width: 100%;
}

.slider1 .swiper-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .slider1 .swiper-slide img {
    height: 300px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  top: calc((100% - 50px) * 0.5);
  margin-top: -22px;
}

.facility .swiper-button-prev,
.facility .swiper-button-next {
  margin-top: 160px;
}

.facility .swiper-button-prev {
  left: 0;
}

.facility .swiper-button-next {
  right: 0;
}


/*.slider1 .swiper-button-prev, .swiper-button-next {
	margin-top: 50px;
}*/

/* .swiper-slide-prev,
.swiper-slide-next {
  -webkit-transform: translateY(10%) !important;
          transform: translateY(10%) !important;
} */

.slider1 .swiper-slide-prev,
.slider1 .swiper-slide-next {
  -webkit-transform: none !important;
  transform: none !important;
}

.trainers {
  margin-bottom: 120px;
  padding: 150px 0;
  background-image: url("../img/bk01.jpg");
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 999px) {
  .trainers {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .trainers {
    margin-bottom: 100px;
    padding: 100px 0;
  }
}

.trainers .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 60px;
}

@media screen and (max-width: 999px) {
  .trainers .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .trainers .sec-ttl {
    font-size: 2.5rem;
  }
}

.trainers .sec-ttl:first-letter {
  color: #52687F;
}

.trainers .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .trainers .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.trainers .trainers-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: normal;
  text-align: center;
  max-width: 800px;
  /* 	width: 100%!important;
	margin: auto; */
}

.trainers .trainers-list-item {
  width: 100%;
  margin-bottom: 57px;
  /*   margin-right: -100px; */
}

.trainers .trainers-list-item a {
  display: block;
  /*max-width: 250px;*/
  margin: auto;
}

.trainers .trainers-list-item img {
  width: 50%;
  /* 	height: 250px; */
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .trainers .trainers-list {
    flex-direction: row;
    justify-content: normal;
  }

  .trainers .trainers-list-item {
    margin-bottom: 34px;
    margin-right: 0px;
    /*width: calc(50% - 10px / 2);*/
    width: 100%;
  }

  .trainers .trainers-list-item img {
    width: 100%;
  }

  .trainers .trainers-list-item:last-child {
    margin-right: 0;
  }
}

.trainers .trainers-list-item:last-child {
  margin-right: 0;
}

.trainers .trainers-list-item h3 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  margin-top: 12px;
}

@media screen and (max-width: 767px) {
  .trainers .trainers-list-item h3 {
    font-size: 1.3rem;
  }
}

.trainers .trainers-list-item span {
  display: inline-block;
  color: #b1b1b1;
  margin-bottom: 15px;
}

.trainers .trainers-list-item p {
  font-size: 1.4rem;
}

.price {
  background-image: url(../../../img/price_bg_img.jpg);
  background-size: cover;
  background-position: center center;
  padding: 100px 0;
}

.trainer-flex-pagination {
  display: flex;
  justify-content: space-around;
  padding: 0px 0 40px;
}

@media screen and (max-width: 999px) {
  .price {
    padding: 100px 0;
  }
}

@media screen and (max-width: 767px) {
  .price {
    padding: 100px 0 100px;
  }
}

.price .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .price .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .price .sec-ttl {
    font-size: 2.5rem;
  }
}

.price .sec-ttl:first-letter {
  color: #52687F;
}

.price .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .price .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .price-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.price-list-item {
  color: #000;
  background-color: #e8e8eb;
  padding: 0 0 50px 0;
  width: calc(33.3333333% - 100px / 3);
  margin-right: 50px;
  text-align: center;
  position: relative;
  /*border-radius: 30px;*/
  border: 3px solid #52687F;
  /*border: 3px solid #73b5de;*/
  overflow: hidden;
}

@media screen and (max-width: 999px) {
  .price-list-item {
    padding: 0 0 20px;
    width: calc(33.3333333% - 40px / 3);
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .price-list-item {
    padding: 0 0 24px !important;
    max-width: 560px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .price-list-item:last-child {
    margin-bottom: 0;
  }
}

.price-list-item:last-child {
  margin-right: 0;
}

/*.price-list-item:nth-child(2) {
  position: relative;
  border: 4px solid #b1b1b1;
}

.price-list-item:nth-child(2):before {
  content: "pick up!";
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: "Allura", cursive;
  font-size: 3.1rem;
  font-weight: 700;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .price-list-item:nth-child(2):before {
    font-size: 2.4rem;
    top: 10px;
    right: 10px;
  }
}

.price-list-item:nth-child(2):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 79px 79px 0;
  border-color: transparent #b1b1b1 transparent transparent;
}

@media screen and (max-width: 767px) {
  .price-list-item:nth-child(2):after {
    border-width: 0 50px 50px 0;
  }
}*/

.price-list-item h3 {
  font-size: 1.6rem;
  padding: 10px 20px;
  margin: 0 !important;
  line-height: 150%;
  background: #52687F;
  color: #fff;
}

@media screen and (max-width: 999px) {
  .price-list-item h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .price-list-item h3 {
    font-size: 1.6rem;
  }
}

.price-list-item h4 {
  font-size: 2.6rem;
	padding: 30px 0 20px;
  line-height: 140%;
  color: #52687F !important;
	background: #fff !important;
}

.price-list-item h4 .s_txt {
	font-size: 2rem;
}

.price-list-item:nth-child(1) h4 {
  color: #1F3851;
}

@media screen and (max-width: 999px) {
  .price-list-item h4 {
    font-size: 2.6rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .price-list-item h4 {
    font-size: 2.6rem;
    margin-bottom: 0;
  }
}

.price-list-item .price-icon {
  height: 60px;
  margin-bottom: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .price-list-item .price-icon {
    margin-bottom: 20px;
  }
}

.price-list-item .price-icon img {
  vertical-align: middle;
}

.price-list-item .price-list-item-txt {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.29 !important;
	margin: 0 auto;
	padding-bottom: 20px;
	width: 100%;
	background: #ffffff;
}

.price-list-item .price-list-item-txt span {
	color: #000 !important;
	font-size: 1.4rem !important;
	font-weight: 400 !important;
}

.price-list-item .txt_pri {
	font-size: 1.4rem;
	text-align: left;
	padding: 20px 20px 0;
}

.top_concept {
  padding: 120px 0;
  background-image: url("../img/logo_pic.jpg");
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 999px) {
  .top_concept {
    padding: 80px 0;
  }
}

@media screen and (max-width: 767px) {
  .top_concept {
    padding: 60px 0 40px 0;
    background-position: 67% center;
  }
}

.top_concept .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .top_concept .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .top_concept .sec-ttl {
    font-size: 2.5rem;
  }
}

.top_concept .sec-ttl:first-letter {
  color: #52687F;
}

.top_concept .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #b1b1b1;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .top_concept .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.top_concept .text_box {
  font-weight: bold;
  line-height: 1.5;
  font-size: 1.4rem;
  padding-top: 20px;
}

.top_concept .text_box span.name {
  text-align: right;
  display: block;
}

.top_concept .text_box span.name {
  font-family: 'Herr Von Muellerhoff', cursive;
  font-size: 6rem;
  font-weight: normal;
  line-height: 100%;
  padding-top: 20px;
}

.top_concept .text_box span.f_s {
  font-size: 3rem;
}

.top_concept .text_box span.font_b {
  font-weight: 900;
  font-size: 1.8rem;
}

@media screen and (max-width: 999px) {
  .top_concept .text_box p {
    overflow: auto;
    height: 260px;
    font-weight: normal;
  }
}

@media screen and (max-width: 767px) {
  .top_concept .text_box span.name {
    font-size: 3.5rem;
    padding-top: 20px;
  }

  .about-img img {
    margin-top: 0;
  }
}

.comparison {
  padding: 95px 0;
  background-color: #ececec;
}

@media screen and (max-width: 999px) {
  .comparison {
    padding: 80px 0;
  }
}

@media screen and (max-width: 767px) {
  .comparison {
    padding: 40px 0;
    margin-bottom: 64px;
  }
}

.comparison .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #000;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .comparison .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .comparison .sec-ttl {
    font-size: 2.5rem;
  }
}

.comparison .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .comparison .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.comparison-table {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  line-height: 1.14;
}

.comparison-table p {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 999px) {
  .comparison-table p {
    font-size: 1.2rem;
  }
}

.comparison-table tr {
  height: 120px;
}

.comparison-table tr:nth-child(5) {
  height: 145px;
}

.comparison-table tr:first-child {
  height: 50px;
}

.comparison-table tr:first-child th:first-child {
  background-color: #dadada;
}

.comparison-table tr:first-child th:nth-child(2) {
  background-color: #b1b1b1;
}

.comparison-table tr:first-child th:nth-child(n+3) {
  background-color: #e5d8a5;
}

.comparison-table tr:nth-child(n+2) th {
  background-color: #b1b1b1;
}

.comparison-table tr th {
  width: 180px;
  min-width: 180px;
}

@media screen and (max-width: 999px) {
  .comparison-table tr th {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .comparison-table tr th {
    width: 130px;
  }
}

.comparison-table tr th:first-child {
  width: 100px;
  min-width: 100px;
}

.comparison-table tr td:nth-child(2) {
  background-color: #fceeb6;
}

.comparison-table tr td:nth-child(n+3) {
  background-color: #dadada;
}

.double-circle {
  background: url(../img/double_circle_icon.png) no-repeat center;
}

.triangle {
  background: url(../img/triangle_icon.png) no-repeat center;
}

.batsu {
  background: url(../img/batsu_icon.png) no-repeat center;
}

.table-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

span.scroll-hint-icon {
  display: none;
}

@media screen and (max-width: 767px) {
  span.scroll-hint-icon {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .access .contact {
    width: 100%;
    margin: 100px auto;
  }
}

.access .contact {
  margin: 26px auto;
}

.access .contact .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: left;
  color: #FFF;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .access .contact .sec-ttl {
    margin-bottom: 40px;
    line-height: 120%;
  }
}

@media screen and (max-width: 767px) {
  .access .contact .sec-ttl {
    font-size: 2.5rem;
  }
}

.access .contact .sec-ttl:first-letter {
  color: #52687F;
}

.access .contact .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: left;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .access .contact .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.access .contact-info {
  margin-bottom: 41px;
}

@media screen and (max-width: 767px) {
  .access .contact-info {
    font-size: 1.4rem;
  }
}

.access .contact-info dt {
  float: left;
  clear: both;
}

.access .contact-info dt:after {
  content: '：';
}

.access .contact-info dd {
  margin-bottom: 20px;
}

.access .contact-info dd:last-child {
  margin-bottom: 0;
}

.access .map-wrap {
  width: 55%;
}

@media screen and (max-width: 767px) {
  .access .map-wrap {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.access .map-wrap iframe {
  width: 100%;
  /*-webkit-clip-path: polygon(27% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(27% 0, 100% 0, 100% 100%, 0% 100%);*/
}

@media screen and (max-width: 767px) {
  .access .map-wrap iframe {
    -webkit-clip-path: none;
    clip-path: none;
  }
}

footer {
  padding-top: 100px;
  padding-bottom: 20px;
  background-image: url(../../../img/footer_bg.jpg);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  footer {
    padding-top: 64px;
    padding-bottom: 60px;
  }
}

footer .footer-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 999px) {
  footer .footer-inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 767px) {
  footer .footer-inner {
    padding-right: 16px;
    padding-left: 16px;
  }
}

footer .footer-inner .footer-logo {
  margin-bottom: 59px;
}

.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 70px;
}

@media screen and (max-width: 999px) {
  .footer-flex {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .footer-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
  }
}

.footer-flex .footer-info {
  width: 70%;
}

.footer-flex .footer-info img {
  max-width: 100%;
  padding-top: 30px;
  padding-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .footer-flex .footer-info {
    width: 100%;
    margin-bottom: 32px;
  }
}

.footer-flex .footer-info dt {
  float: left;
  clear: both;
}

.footer-flex .footer-info dt:after {
  content: '：';
}

@media screen and (max-width: 767px) {
  .footer-flex .footer-info dt {
    font-size: 1.4rem;
  }
}

.footer-flex .footer-info dd {
  margin-bottom: 20px;
  padding-left: 80px;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .footer-flex .footer-info dd {
    font-size: 1.4rem;
  }
}

.footer-flex .footer-info dd:last-child {
  margin-bottom: 0;
}

.footer-flex .footer-info dd:nth-child(6) {
  padding-top: .1em;
  line-height: 1.3;
}

.footer-flex .footer-info .opening {
  line-height: 1.5;
}

.footer-flex .footer-nav {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .footer-flex .footer-nav {
    width: 100%;
  }
}

.footer-flex .footer-nav .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

@media screen and (max-width: 767px) {
  .footer-flex .footer-nav .footer-menu {
    font-size: 1.4rem;
  }
}

.footer-flex .footer-nav .footer-menu-item {
  width: 46%;
  line-height: 2;
  margin-right: 4%;
  margin-bottom: 20px;
}

.footer-flex .footer-nav .footer-menu-item:nth-of-type(2n) {
  margin-right: 0;
}

.footer-flex .footer-nav .footer-menu-item:last-of-type {
  width: 100%;
}

@media screen and (max-width: 999px) {
  .footer-flex .footer-nav .footer-menu-item {
    margin-right: 4%;
  }
}

/*.footer-flex .footer-nav .footer-menu-item:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 999px) {
  .footer-flex .footer-nav .footer-menu-item:nth-child(4n) {
    margin-right: 30px;
  }
}*/

.footer-flex .footer-nav p {
  text-align: right;
  padding-top: 20px;
  font-size: 1.4rem;
}

.copyright {
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .copyright {
    font-size: 1.2rem;
  }
}

.blog-kv {
  background-image: url(../img/blog_kv.jpg);
}

.blog-kv .lower-kv-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 5.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .blog-kv .lower-kv-ttl {
    font-size: 3.5rem;
  }
}

.blog-kv .lower-sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .blog-kv .lower-sub-ttl {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.lower-blog {
  margin-bottom: 120px;
}

@media screen and (max-width: 999px) {
  .lower-blog {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .lower-blog {
    margin-bottom: 64px;
  }
}

.article-lists-item a {
  width: 100%;
  display: block;
}

.cat-tab-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 64px;
}

@media screen and (max-width: 767px) {
  .cat-tab-lists {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 32px;
    justify-content: space-between;
  }
}

.cat-tab-lists .cat-tab-item {
  margin-right: 20px;
}

.cat-tab-lists .cat-tab-item a {
  /*margin-right: 40px;*/
  border: 1px solid #FFF;
  padding: 14px 0;
  width: 144px;
  text-align: center;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .cat-tab-lists .cat-tab-item {
    /*margin-right: 25px;*/
    margin-right: 0;
    width: 48%;
  }

  .cat-tab-lists .cat-tab-item a {
    font-size: 1.4rem;
    /*width: calc(50% - 25px / 2);*
    /*margin-right: 25px;*/
    padding: 10px 0;
    width: 100%;
  }

  .cat-tab-lists .cat-tab-item:nth-child(2n) {
    margin-right: 0;
  }

  .cat-tab-lists .cat-tab-item:nth-child(n+3) {
    margin-top: 15px;
  }
}

.cat-tab-lists .cat-tab-item a:last-child {
  margin-right: 0;
}

.cat-tab-lists .cat-tab-current {
  background-color: #b1b1b1;
  color: #000;
  border: none;
}

.lower-article {
  max-width: 100%;
  margin: 0;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .lower-article {
    margin-bottom: 32px;
  }
}

.wp-pagenavi {
  text-align: center;
  font-size: 1.4rem;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .current,
.wp-pagenavi .page {
  padding-right: 42px;
}

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

  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .current,
  .wp-pagenavi .page {
    padding-right: 22px;
  }
}

.wp-pagenavi a {
  border: none;
}

.yokohama-kv {
  background-image: url(../img/yokohama-kv.jpg);
}

.yokohama-kv .lower-kv-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 5.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .yokohama-kv .lower-kv-ttl {
    font-size: 3.5rem;
  }
}

.yokohama-kv .lower-sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .yokohama-kv .lower-sub-ttl {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.access-kv {
  background-image: url(../img/access-kv.jpg);
}

.access-kv .lower-kv-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 5.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .access-kv .lower-kv-ttl {
    font-size: 3.5rem;
  }
}

.access-kv .lower-sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .access-kv .lower-sub-ttl {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.lower-access {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .lower-access {
    margin-bottom: 64px;
  }
}

.lower-access-logo {
  text-align: center;
  margin-bottom: 56px;
}

@media screen and (max-width: 767px) {
  .lower-access-logo {
    margin-bottom: 40px;
  }
}

.lower-access-info {
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .lower-access-info {
    -webkit-transform: none;
    transform: none;
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}

.lower-access-info dl {
  display: inline-block;
  margin-bottom: 22px;
}

.lower-access-info dt {
  float: left;
  text-align: left;
}

.lower-access-info dt:after {
  content: '：';
}

.lower-access-info dd {
  text-align: left;
  margin-bottom: 22px;
  padding-left: 80px;
}

@media screen and (max-width: 767px) {
  .lower-access .map-wrap {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.lower-access .map-wrap iframe {
  width: 100%;
}

.lower-access .map-wrap {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .lower-access .map-wrap {
    margin-bottom: 60px;
  }
}

.trainers-kv {
  background-image: url(../img/trainers-kv.jpg);
}

.trainers-kv .lower-kv-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 5.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .trainers-kv .lower-kv-ttl {
    font-size: 3.5rem;
  }
}

.trainers-kv .lower-sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .trainers-kv .lower-sub-ttl {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.lower-trainers {
  margin-bottom: 130px;
}

@media screen and (max-width: 999px) {
  .lower-trainers {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .lower-trainers {
    margin-bottom: 0px;
  }
}

.lower-trainers-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.lower-trainers-list-item {
  margin-bottom: 60px;
  width: 30%
}

@media screen and (max-width: 767px) {
  .lower-trainers-list-item {
    width: 48%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/*.lower-trainers-list-item:last-child {
  margin-bottom: 0;
}*/

/*.lower-trainers-img {
  margin-right: 50px;
  width: 250px;
  height: 250px;
}*/

@media screen and (max-width: 767px) {
  .lower-trainers-img {
    margin-right: 0;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
}

.lower-trainers-img img {
  width: 100%;
  /*height: 350px;*/
  object-fit: cover;
}

.lower-trainers-txt {
  width: 70%;
}

@media screen and (max-width: 767px) {
  .lower-trainers-txt {
    width: 100%;
  }
}

.lower-trainers-txt h2 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 150%;
}

@media screen and (max-width: 767px) {
  .lower-trainers-txt h2 {
    font-size: 1.6rem;
  }
}

.lower-trainers-txt .lower-trainers-name {
  display: inline-block;
  font-size: 1.6rem;
  color: #b1b1b1;
  margin-right: 30px;
  margin-bottom: 27px;
}

@media screen and (max-width: 767px) {
  .lower-trainers-txt .lower-trainers-name {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}

.lower-trainers-txt .lower-trainers-pos {
  display: inline-block;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .lower-trainers-txt .lower-trainers-pos {
    font-size: 1.2rem;
  }
}

.lower-trainers-txt .lower-trainers-message {
  font-size: 1.4rem;
  line-height: 1.7;
}

.lower-trainers .lower-inner {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.lower-trainers .lower-inner .box .img_box {
  max-width: 400px;
  height: auto;
  margin: auto;
  text-align: center;
}

.lower-trainers .lower-inner .box .img_box h3 {
  text-align: center;
  margin: 40px 0 20px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.0rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}

.lower-trainers .lower-inner .box .img_box h3 .lower-sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 15px;
}

.lower-trainers .lower-inner .box h4 {
	margin-bottom: 40px;
	text-align: center;
}

.lower-trainers .lower-inner .box .txt_box {
  max-width: 800px;
  margin: auto;
}

.lower-trainers .lower-inner .box .txt_box dt {
  padding-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 800;
}

.lower-trainers .lower-inner .box .txt_box dd {
  color: #999;
  margin-bottom: 50px;
}

.lower-trainers .lower-inner .box dl:last-of-type dd {
  margin-bottom: 0;
}

.lower-trainers .lower-inner .box {
  padding: 150px 0;
}

.lower-trainers .lower-inner .box:first-child {
  padding-top: 60px;
}

.lower-trainers .lower-inner .box:nth-of-type(even) {
  background: #111111;
}

.price-kv {
  background-image: url(../img/price_kv.jpg);
  margin-bottom: 124px;
}

@media screen and (max-width: 999px) {
  .price-kv {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .price-kv {
    margin-bottom: 64px;
  }

  .lower-trainers .lower-inner .box {
    padding: 100px 20px;
  }
}

.price-kv .lower-kv-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 5.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .price-kv .lower-kv-ttl {
    font-size: 3.5rem;
  }
}

.price-kv .lower-sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .price-kv .lower-sub-ttl {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.lower-price {
  margin-bottom: 134px;
}

@media screen and (max-width: 767px) {
  .lower-price {
    margin-bottom: 64px;
  }
}

.lower-price .lower-inner {
	max-width: 1000px !important;
}

.lower-price-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .lower-price-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.lower-price-list-item:nth-child(2) {
  position: relative;
  padding-top: 40px;
}

.lower-price-list-item:nth-child(2):before {
  content: "pick up!";
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: "Allura", cursive;
  font-size: 3.1rem;
  font-weight: 700;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .lower-price-list-item:nth-child(2):before {
    font-size: 2.4rem;
    top: 10px;
    right: 10px;
  }
}

.lower-price-list-item:nth-child(2):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 79px 79px 0;
  border-color: transparent #b1b1b1 transparent transparent;
}

@media screen and (max-width: 767px) {
  .lower-price-list-item:nth-child(2):after {
    border-width: 0 50px 50px 0;
  }
}

.lower-price-list-item figure {
  margin-right: 45px;
  max-width: 180px;
}

@media screen and (max-width: 767px) {
  .lower-price-list-item figure {
    margin-right: 0;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .lower-price-list-item figure img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.lower-price-list-item .wrap {
  /*width: 58.75%;*/
}

@media screen and (max-width: 767px) {
  .lower-price-list-item .wrap {
    width: 100%;
    text-align: center;
  }
}

.lower-price-list-item .wrap h2 {
  font-size: 2.6rem;
  margin-bottom: 38px;
  line-height: 140%;
}

@media screen and (max-width: 767px) {
  .lower-price-list-item .wrap h2 {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}

.lower-price-list-item .wrap span {
  font-size: 1.5rem;
  line-height: 30px;
  display: block;
}

@media screen and (max-width: 767px) {
  .lower-price-list-item .wrap span {
    font-size: 1.6rem;
  }
}

.lower-price-list-item .wrap .ml-ajust {
  margin-left: 66px;
}

@media screen and (max-width: 767px) {
  .lower-price-list-item .wrap .ml-ajust {
    margin-left: 40px;
  }
}

.lower-price-list-item .wrap p {
  font-size: 1.4rem;
  line-height: 1.29;
}

@media screen and (max-width: 767px) {
  .lower-price-list-item .wrap p {
    margin-bottom: 24px;
  }
}

.lower-price .price_txt {
  text-align: center;
  font-size: 2rem;
  margin: 30px auto;
  background: #fff;
  display: block;
  width: 300px;
  padding: 10px;
  color: #000;
}

.lower-price .price_txt a {
  display: block;
}

.lower-price .p_txt_p {
	text-align: center;
	padding: 20px 0 50px;
}

.lower-price .tokuten {
  width: 100%;
  max-width: 600px;
  margin: 60px auto 100px;
  box-sizing: border-box;
}

.lower-price .tokuten:after {
  display: block;
  content: "";
  width: 300px;
  height: 1px;
  background: #fff;
  margin: 100px auto 0;
  text-align: center;
}

.lower-price .tokuten li {
  margin-bottom: 30px;
  padding-left: 1em;
  text-indent: -1em;
}

.lower-price .tokuten li span {
  font-size: 1.2rem;
}

.lower-price .muryou {
  text-align: center;
  margin: 60px auto 100px;
}

.lower-price .muryou h2 {
  font-size: 2.6rem;
  margin-bottom: 38px;
  line-height: 140%;
}

.lower-price .muryou:after {
  display: block;
  content: "";
  width: 300px;
  height: 1px;
  background: #fff;
  margin: 90px auto 0;
  text-align: center;
}

.lower-price .muryou h3 {
  margin-bottom: 30px;
}

.lower-price .muryou a {
  display: block;
  text-align: center;
  font-size: 2rem;
  margin: 32px auto;
  background: #b1b1b1;
  width: 300px;
  padding: 10px;
  color: #000;
  border-radius: 4px;
  font-weight: 600;
}

.lower-price .pri_se {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.lower-price .pri_se li {
	width: 45%;
	margin-bottom: 80px;
}

.lower-price .pri_se li h5 {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 2.0rem;
    font-weight: 800;
    text-align: center;
    color: #FFF;
    margin-bottom: 30px;
}

.lower-price .pri_se li h5:first-letter {
  color: #52687F;
}

@media screen and (max-width: 767px) {
	.lower-price .pri_se {
		flex-direction: column;
	}
	.lower-price .pri_se {
	width: 100%;
}
	.lower-price .pri_se li {
		margin-bottom: 50px !important;
	}
}


/* 0614 */
/* ここから無料カウンセリングセクション追加 */
.muryou-banner {
  margin: 0 auto;
  margin-top: 3rem;
  width: 600px;
  height: 307px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .muryou-banner {
    width: 100%;
    height: 100%;
  }
}


.muryou-banner__text {
  margin-top: 3rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .muryou-banner__text {
    text-align: center;
  }
}

.counseling {
  border: 1px solid #fff;
  padding-top: 4.5rem;
  margin-top: 3rem;
}

.counseling h2 {
  font-size: 2.5rem;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.counseling h2::first-letter {
  color: #52687f;
}

@media screen and (max-width: 767px) {
  .counseling h2 {
    font-size: 2.2rem !important;
  }
}

.counseling-lists {
  margin-top: 50px;
}

.counseling-list {
  display: flex;
  align-items: flex-start;
  padding: 5.1rem 7.5rem;
  position: relative;
}

.counseling-list:last-child {
  border-bottom: unset;
}

.counseling-list::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background-color: #fff;
}

.counseling-list:last-child::after {
  display: none;
}

@media screen and (max-width: 767px) {
  .counseling-list {
    display: block;
    padding: 1.5rem;
  }
}

.counseling-silder {
  display: block;
}

.counseling-silder-container {
  margin-bottom: 0;
  padding-bottom: 0;
}

.counseling-silder-title {
  width: 100%;
}

.counseling-list:first-child {
  padding-top: 0;
}

.counseling-img {
  position: relative;
  width: 175px;
  height: 150px;
}

.counseling-img.pc_non {
  display: none;
}

.counseling-img.sp_non {
  display: block;
}

.counseling-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .counseling-img {
    margin: 0 auto;
  }

  .counseling-img.pc_non {
    display: block;
  }

  .counseling-img.sp_non {
    display: none;
  }
}

.counseling-list_title {
  display: flex;
  font-size: 1.6rem;
  font-family: "游明朝体",
    "Yu Mincho",
    YuMincho,
    "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro",
    "MS P明朝",
    "MS PMincho",
    serif;
  background-color: #b1b1b1;
  padding: 10px 10px;
  max-width: 43.5rem;
  width: calc((435/1200 * 100vw));
  color: #333;
  line-height: 1.26;
  font-weight: 600;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .counseling-list_title {
    width: 100%;
    max-width: 100%;
  }
}

.counseling-list_wrap {
  margin-left: 4rem;
}

@media screen and (max-width: 767px) {
  .counseling-list_wrap {
    margin: 0;
    margin-top: 2rem;
  }
}

.counseling-silder-title {
  max-width: 100%;
  width: 100%;
}

.counseling-sub-title {
  font-weight: 600;
}

.counseling-silder-text {
  width: 80%;
  margin: 0 auto;
  margin-top: 2rem;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .counseling-silder-text {
    font-size: 1.4rem;
  }
}


.counseling-list_text {
  margin-top: 2rem;
  font-weight: 300;
  text-align: left;
}

.counseling-silder-img {
  max-width: 500px;
  width: calc(500/1200 * 100vw);
  max-height: 308px;
  height: calc(308/1200 * 100vw);
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
}

.counseling-silder-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .counseling-silder-img {
    width: 175px;
    height: 150px;
  }

  .bar-sp {
    display: none;
  }
}

.counseling-silder-button-prev {
  left: 0;
}

@media screen and (max-width: 767px) {
  .counseling-silder-button-prev {
    display: block;
  }
}

.counseling-silder-button-next {
  right: 0;
}

@media screen and (max-width: 767px) {
  .counseling-silder-button-next {
    display: block;
  }
}


.contact-price .muryou::after {
  display: none;
}

/* 0614 */
/* ここまで編集しました */

.main-course {
  margin-bottom: 120px;
}

@media screen and (max-width: 999px) {
  .main-course {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .main-course {
    margin-bottom: 64px;
  }

  .lower-price .tokuten {
    text-align: left;
  }

  .lower-price .muryou h3 {
    font-size: 1.6rem;
  }

  .lower-price .muryou p {
    text-align: left;
    font-size: 1.5rem;
  }
}

.lower-price .course h2 {
  text-align: center;
}

.lower-price .course h3 {
  text-align: center;
  margin: 60px auto 30px;
}

.lower-price .course .basic {
  margin-bottom: 100px;
  display: flex;
  justify-content: space-around;
}

.lower-price .course > li {
  width: 300px;
  text-align: center;
  color: #000;
	background-color: #e8e8eb;
  padding: 0 0 40px 0;
  position: relative;
  border: 3px solid #52687F;
  overflow: hidden;
}

.lower-price .premium > li {
  border: 3px solid #1F3851;
	background: #ffffff !important;
	width: 30%;
}

.lower-price .premium li h4 {
  background: #1F3851 !important;
	padding: 10px 20px !important;
	margin-bottom: 20px;
}

.lower-price .premium li .txt span {
  color: #1F3851 !important;
}

.lower-price .course li h4 {
  background: #52687F;
  color: #fff;
  padding: 30px 10px 20px;
}

.lower-price .course li .txt {
  text-align: center;;
  width: 100%;
  padding: 0 30px 30px;
  box-sizing: border-box;
  line-height: 200%;
}

.lower-price .course li .txt span {
  text-align: right;
  font-size: 2.0rem;
  font-weight: 800;
  color: #52687F;
}

.lower-price .premium li .txt {
  line-height: 30px;
}

.lower-price .premium li .line {
  border-bottom: 1px solid #ccc;
	margin: 0 20px 15px;
	padding-bottom: 15px;
	padding: 0 20px 15px;
  text-align: left;
  font-size: 1.4rem;
	color: #333333;
}

.lower-price .premium li .line:last-of-type {
  margin-bottom: 0;
}

.lower-price .course .premium {
  display: flex;
  justify-content: space-around;
}

.lower-price .course .txt_box {
  text-align: center;
  margin: 60px auto 0;
  border: 1px solid #fff;
  padding: 30px 0;
}

.main-course .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .main-course .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .main-course .sec-ttl {
    font-size: 2.5rem;
  }

  .lower-price .course .basic {
    flex-wrap: wrap;
  }

  .lower-price .course .premium {
    flex-wrap: wrap;
  }

  .lower-price .course li {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
  }

  .lower-price .course > li:last-of-type {
    margin-bottom: 0;
  }

  .lower-price .course .txt_box {
    text-align: left;
    margin: 30px auto 0;
    padding: 20px;
  }
}

.main-course .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .main-course .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.main-course-details {
  font-size: 1.6rem;
  width: 168px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .main-course-details {
    font-size: 1.4rem;
  }
}

.main-course-details h3 {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 18px;
}

.main-course-details span {
  display: block;
  text-align: left;
  margin-bottom: 17px;
}

.main-course-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .main-course-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.main-course-items dl {
  width: calc(50% - 36px /2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 36px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding: 14px 0;
}

@media screen and (max-width: 767px) {
  .main-course-items dl {
    width: 100%;
    font-size: 1.5rem;
  }
}

.main-course-items dl:nth-child(2n) {
  margin-right: 0;
}

.service {
  margin-bottom: 120px;
}

@media screen and (max-width: 999px) {
  .service {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .service {
    margin-bottom: 64px;
  }
}

.service .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .service .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .service .sec-ttl {
    font-size: 2.5rem;
  }
}

.service .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .service .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.service-list-item {
  border-bottom: 1px solid #FFF;
  padding: 14px 0;
}

@media screen and (max-width: 767px) {
  .service-list-item {
    padding: 22px 0;
  }
}

.service-list-item h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .service-list-item h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}

.service-list-item p {
  font-size: 1.4rem;
  line-height: 1.7;
  padding-left: 2rem;
}

.option {
  margin-bottom: 120px;
	margin-top: 120px;
}

@media screen and (max-width: 999px) {
  .option {
    margin-bottom: 100px;
	  margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .option {
    margin-bottom: 64px;
	  margin-top: 64px;
  }
}

.option .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 59px;
}

@media screen and (max-width: 999px) {
  .option .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .option .sec-ttl {
    font-size: 2.5rem;
  }
}

.option .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .option .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.option-course {
  margin-bottom: 38px;
}

@media screen and (max-width: 767px) {
  .option-course {
    font-size: 1.4rem;
  }
}

.option-course span {
  text-align: center;
  display: block;
  margin-bottom: 19px;
}

.option-course span.font_b {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 900;
  font-size: 1.8rem;
}

.option-course span:last-child {
  margin-bottom: 0;
}

.option p {
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .option p {
    font-size: 1.4rem;
  }
}

.blog-detail-kv {
  background-image: url(../img/blog_kv.jpg);
}

.blog-detail-kv .lower-kv-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 5.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .blog-detail-kv .lower-kv-ttl {
    font-size: 3.5rem;
  }
}

.blog-detail-kv .lower-sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .blog-detail-kv .lower-sub-ttl {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.blog-detail {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .blog-detail {
    margin-bottom: 64px;
  }
}

.blog-detail .blog-main-content {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .blog-detail .blog-main-content {
    margin-bottom: 50px;
  }
}

.blog-detail .blog-main-content .content-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.6rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .blog-detail .blog-main-content .content-ttl {
    font-size: 1.8rem;
  }
}

.blog-detail .blog-main-content .meta-list {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .blog-detail .blog-main-content .meta-list {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}

.blog-detail .blog-main-content .meta-list time {
  font-size: 1.4rem;
  margin-right: 11px;
}

.blog-detail .blog-main-content .meta-list .cat-tag {
  display: inline-block;
  font-size: 1.4rem;
  color: #000;
  width: 110px;
  padding: 4px;
  background-color: #FFF;
  text-align: center;
}

.blog-detail .blog-main-content .content p {
  font-size: 1.4rem;
  line-height: 2.14;
  margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
  .blog-detail .blog-main-content .content p {
    line-height: 1.6;
  }
}

.concept-kv {
  background-image: url(../img/concept_kv.jpg);
}

.corporation-kv {
  background-image: url(../img/corporation_kv.jpg);
}

.concept-kv .lower-kv-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 5.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .concept-kv .lower-kv-ttl {
    font-size: 3.5rem;
  }
}

.concept-kv .lower-sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .concept-kv .lower-sub-ttl {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.lower-concept-message {
  text-align: center;
  margin-bottom: 122px;
}

@media screen and (max-width: 767px) {
  .lower-concept-message {
    margin-bottom: 64px;
  }
}

.lower-concept-message h2 {
  margin-bottom: 57px;
}

@media screen and (max-width: 767px) {
  .lower-concept-message h2 {
    margin-bottom: 32px;
  }
}

.lower-concept-message p {
  line-height: 2.25;
}

@media screen and (max-width: 767px) {
  .lower-concept-message p {
    text-align: left;
    line-height: 1.8;
    font-size: 1.4rem;
  }
}

.lower-concept {
  position: relative;
  margin-bottom: 120px;
}

@media screen and (max-width: 999px) {
  .lower-concept {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .lower-concept {
    margin-bottom: 64px;
  }
}

.lower-concept .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 97px;
}

@media screen and (max-width: 999px) {
  .lower-concept .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .lower-concept .sec-ttl {
    font-size: 2.5rem;
  }
}

.lower-concept .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .lower-concept .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

.lower-concept-caps-top {
  margin-bottom: 138px;
}

@media screen and (max-width: 767px) {
  .lower-concept-caps-top {
    margin-bottom: 80px;
  }
}

.lower-concept-cap-top,
.lower-concept-cap-bottom {
  margin-bottom: 40px;
}

.lower-concept-cap-top:last-child,
.lower-concept-cap-bottom:last-child {
  margin-bottom: 0;
}

.lower-concept-cap-top h3,
.lower-concept-cap-bottom h3 {
  font-size: 2.2rem;
  margin-bottom: 13px;
}

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

  .lower-concept-cap-top h3,
  .lower-concept-cap-bottom h3 {
    font-size: 1.8rem;
  }
}

.lower-concept-cap-top h3:first-letter,
.lower-concept-cap-bottom h3:first-letter {
  color: #b1b1b1;
  font-size: 3rem;
}

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

  .lower-concept-cap-top h3:first-letter,
  .lower-concept-cap-bottom h3:first-letter {
    font-size: 2.6rem;
  }
}

.lower-concept-cap-top span,
.lower-concept-cap-bottom span {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  padding-left: 38px;
  margin-bottom: 18px;
}

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

  .lower-concept-cap-top span,
  .lower-concept-cap-bottom span {
    font-size: 1.4rem;
  }
}

.lower-concept-cap-top span:before,
.lower-concept-cap-bottom span:before {
  position: absolute;
  top: -20%;
  left: 15px;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  border-right: 1px solid #FFF;
  border-top: 1px solid #FFF;
  content: '';
}

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

  .lower-concept-cap-top span:before,
  .lower-concept-cap-bottom span:before {
    width: 10px;
    height: 10px;
  }
}

.lower-concept-cap-top .txt,
.lower-concept-cap-bottom .txt {
  font-size: 2rem;
  line-height: 1.8;
  padding-left: 45px;
  text-align: justify;
}

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

  .lower-concept-cap-top .txt,
  .lower-concept-cap-bottom .txt {
    font-size: 1.6rem;
  }
}

.lower-concept .footer-btn {
  text-align: center;
  padding: 50px 0;
}

.lower-concept .footer-btn p {
  margin-bottom: 30px;
}

.lower-movie {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .lower-movie {
    margin-bottom: 64px;
  }
}

.lower-movie .movie-img {
  width: 100%;
  height: 100%;
}

.side-message {
  position: absolute;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  top: 13%;
  left: 45px;
  font-size: 8rem;
  font-weight: 800;
  color: #202020;
  writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  -webkit-writing-mode: vertical-lr;
  z-index: -2;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .side-message {
    top: 15%;
    font-size: 9rem;
  }
}

.side-message span {
  display: inline-block;
}

.side-message span:first-child {
  margin-bottom: 60px;
}

span.wpcf7-list-item {
  margin: 0;
}

.contact-kv {
  background-image: url(../img/contact_kv.jpg);
}

.contact-kv .lower-kv-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 5.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .contact-kv .lower-kv-ttl {
    font-size: 3.5rem;
  }
}

.contact-kv .lower-sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .contact-kv .lower-sub-ttl {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.lower-contact {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .lower-contact {
    margin-bottom: 64px;
  }
}

.lower-contact .lead {
  font-size: 1.4rem;
  line-height: 1.71;
  text-align: center;
  margin-bottom: 59px;
}

.lower-contact .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 59px;
}

.lower-contact .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 999px) {
  .lower-contact .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .lower-contact .sec-ttl {
    font-size: 2.5rem;
  }

  .lower-contact .sub-ttl {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

@media screen and (max-width: 767px) {
  .lower-contact .lead {
    font-size: 1.2rem;
    margin-bottom: 32px;
  }
}

.lower-contact .contact-form {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .lower-contact .contact-form {
    margin-bottom: 32px;
  }
}

.lower-contact .contact-form .input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #FFF;
}

.lower-contact .contact-form .input-box:last-child {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.wpcf7-form-control-wrap.first_time .wpcf7-form-control,
.wpcf7-form-control-wrap.second_time .wpcf7-form-control,
.wpcf7-form-control-wrap.third_time .wpcf7-form-control {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .lower-contact .contact-form .input-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.lower-contact .contact-form .input-box .label-area {
  position: relative;
  width: 25%;
}

@media screen and (max-width: 767px) {
  .lower-contact .contact-form .input-box .label-area {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
}

.lower-contact .contact-form .input-box .input-area {
  width: 80%;
  height: 100%;
}

.lower-contact .contact-form .input-box .input-area .txt {
  padding-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .lower-contact .contact-form .input-box .input-area {
    width: 100%;
    height: 100%;
  }
}

.lower-contact .action-box {
  text-align: center;
}

.wpcf7-mail-sent-ok {
  border: none;
}

.wpcf7-response-output {
  text-align: center;
  margin: 0 0 40px !important;
  border: none !important;
}

.choosing-kv {
  background-image: url(../img/concept_kv.jpg);
}

.choosing-kv .lower-kv-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 5.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .choosing-kv .lower-kv-ttl {
    font-size: 3.5rem;
  }
}

.choosing-kv .lower-sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .choosing-kv .lower-sub-ttl {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.lower-choosing {
  margin-bottom: 120px;
}

@media screen and (max-width: 999px) {
  .lower-choosing {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .lower-choosing {
    margin-bottom: 64px;
  }
}

.lower-choosing .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 59px;
}

@media screen and (max-width: 999px) {
  .lower-choosing .sec-ttl {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .lower-choosing .sec-ttl {
    font-size: 2.5rem;
  }
}

.lower-choosing .main-color {
  color: #b1b1b1;
}

.lower-choosing-lists-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .lower-choosing-lists-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.lower-choosing-lists-item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .lower-choosing-lists-item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.lower-choosing-lists-item:nth-child(2n) .lower-choosing-txt {
  margin: 0 60px 0 0;
}

.lower-choosing-lists-item .lower-choosing-txt {
  width: 62%;
  margin: 0 0 0 60px;
}

@media screen and (max-width: 999px) {
  .lower-choosing-lists-item .lower-choosing-txt {
    margin: 0 0 0 30px;
  }

  .lower-choosing-lists-item:nth-child(2n) .lower-choosing-txt {
    margin: 0 30px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .lower-choosing-lists-item .lower-choosing-txt {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  .lower-choosing-lists-item:nth-child(2n) .lower-choosing-txt {
    margin: 0;
  }
}

.lower-choosing-lists-item .lower-choosing-txt .lower-choosing-ttl {
  margin-bottom: 36px;
}

@media screen and (max-width: 999px) {
  .lower-choosing-lists-item .lower-choosing-txt .lower-choosing-ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 16px;
  }
}

.lower-choosing-lists-item .lower-choosing-txt .lower-choosing-ttl span {
  display: inline-block;
  font-size: 3.6rem;
  color: #b1b1b1;
  margin-bottom: 14px;
}

@media screen and (max-width: 999px) {
  .lower-choosing-lists-item .lower-choosing-txt .lower-choosing-ttl span {
    font-size: 2.4rem;
    line-height: 1.1;
    margin-right: 8px;
    margin-bottom: 0;
  }
}

.lower-choosing-lists-item .lower-choosing-txt .lower-choosing-ttl h3 {
  font-size: 2.6rem;
  line-height: 1.4;
}

@media screen and (max-width: 999px) {
  .lower-choosing-lists-item .lower-choosing-txt .lower-choosing-ttl h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}

.lower-choosing-lists-item .lower-choosing-txt .lower-choosing-cap {
  line-height: 1.88;
}

@media screen and (max-width: 767px) {
  .lower-choosing-lists-item .lower-choosing-txt .lower-choosing-cap {
    line-height: 1.4;
    font-size: 1.4rem;
  }
}

.lower-choosing-lists-item figure {
  width: 32%;
}

@media screen and (max-width: 767px) {
  .lower-choosing-lists-item figure {
    width: 100%;
    margin-bottom: 24px;
  }
}

.lower-choosing-lists-item figure img {
  width: 100%;
  /*height: 250px;*/
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
}

.voice-kv {
  background-image: url(../img/voice-kv.jpg);
}

.voice-kv .lower-kv-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 5.6rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .voice-kv .lower-kv-ttl {
    font-size: 3.5rem;
  }
}

.voice-kv .lower-sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .voice-kv .lower-sub-ttl {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

.lower-voice {
  margin-bottom: 120px;
}

@media screen and (max-width: 999px) {
  .lower-voice {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .lower-voice {
    margin-bottom: 64px;
  }
}

.lower-voice-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #FFF;
  margin: 0 auto;
  margin-bottom: 60px;
  padding-right: 5%;
}

@media screen and (max-width: 767px) {
  .lower-voice-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.lower-voice-card-img {
  position: relative;
  width: 48%;
  margin-right: 32px;
  padding: 30px;
  box-sizing: border-box;
  /*-webkit-clip-path: polygon(0 0, 68% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 68% 0, 100% 100%, 0 100%);*/
}

.lower-voice-card-img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .lower-voice-card-img {
    width: 100%;
    /*height: 200px;*/
    -webkit-clip-path: none;
    clip-path: none;
    margin-right: 0;
  }

  .lower-voice-card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.lower-voice-card-img .logo-img {
  position: absolute;
  left: 36px;
  bottom: 23px;
}

@media screen and (max-width: 767px) {
  .lower-voice-card-img .logo-img {
    left: 18px;
    bottom: 12px;
  }
}

.lower-voice-card-txt {
  color: #000;
  width: 45%;
  padding: 30px 0;
}

@media screen and (max-width: 999px) {
  .lower-voice-card-txt {
    padding: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .lower-voice-card-txt {
    width: 100%;
    padding: 24px;
  }
}

.lower-voice-card-txt dl {
  padding-bottom: 30px;
}

.lower-voice-card-txt dt {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
}

.lower-voice-card-txt h3 {
  font-size: 2rem;
  width: 100%;
  /*-webkit-transform: translateX(-17%);
          transform: translateX(-17%);*/
  margin-bottom: 13%;
}

@media screen and (max-width: 999px) {
  .lower-voice-card-txt h3 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .lower-voice-card-txt h3 {
    width: auto;
    -webkit-transform: none;
    transform: none;
    margin-bottom: 16px;
  }
}

.lower-voice-card-txt p {
  line-height: 1.5;
}

@media screen and (max-width: 999px) {
  .lower-voice-card-txt p {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 999px) {
  .pc-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pctab-only {
    display: none;
  }

  .pctab-only-flex {
    display: none !important;
  }
}

.tab-only {
  display: none;
}

@media screen and (max-width: 999px) {
  .tab-only {
    display: block;
  }
}

.sp-only {
  display: none;
}

.sp-only-flex {
  display: none !Important;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }

  .sp-only-flex {
    display: flex !important;
  }
}

/*# sourceMappingURL=style.css.map */
.home_blog_text {
  text-align: center;
  margin: 60px auto;
  line-height: 1.5;
}

.gaiyo dl {
  clear: both;
}

.gaiyo dt {
  width: 120px;
  float: left;
}

.gaiyo dd {
  padding-left: 130px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #fff;
  line-height: 150%;
}

.price_con {
  margin: 40px auto;
  text-align: center;
}

.price_con a {
  display: inline-block;
  color: #000;
  text-align: center;
  font-size: 1.8rem;
  background-color: #b1b1b1;
  border-radius: 20px;
  padding: 28px 0;
  width: 266px;
  -webkit-transition: .3s all;
  transition: .3s all;
  margin-top: 30px;
}

.price_con a img {
  padding-left: 19px;
}

.trainers_box {
  margin-top: 120px;
  max-width: 800px;
  margin: auto;
  margin-top: 150px;
}

.trainers_box .tit {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3rem;
  font-weight: 800;
  text-align: left;
  color: #FFF;
  margin-bottom: 50px;
}

.trainers_box .tit .jp {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: left;
  margin-top: 24px;
}

.trainers_box li p.lower-trainers-message a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .trainers_box {
    padding: 100px 20px 80px;
    margin-top: 0;
  }
}

.news {
  margin: 0 auto;
  padding-bottom: 100px;
  padding-top: 100px;
}

.news .inner {
  max-width: 650px;
}

.news .sec-ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.0rem;
  font-weight: 800;
  text-align: center;
  color: #FFF;
  margin-bottom: 72px;
}

.news .sub-ttl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
  color: #b1b1b1;
  text-align: center;
  margin-top: 24px;
}

.news h3 {
  line-height: 150%;
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.news a {
  display: block;
  color: #000;
  font-size: 2rem;
  background-color: #b1b1b1;
  border-radius: 20px;
  padding: 17px 0;
  width: 220px;
  -webkit-transition: .3s all;
  transition: .3s all;
  margin: auto;
  text-align: center;
  margin-top: 60px;
}

.news .sec-ttl:first-letter {
  color: #52687F;
}

@media screen and (max-width: 767px) {
  .news {
    margin: 0 auto 20px;
    padding-bottom: 60px;
  }

  .news .sec-ttl {
    text-align: left;
    margin-bottom: 40px;
  }

  .news .sub-ttl {
    text-align: left;
    font-size: 1.4rem;
  }

  .news h3 {
    text-align: left;
  }
}

.click_non {
	pointer-events: none;
}

.wpcf7-spinner {
	display: block !important;
}

.trainers-list_box {
	max-width: 1000px;
	margin: auto;
}

.trainers-list_box .trainers-list_square {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.trainers-list_box .trainers-list_square .trainers-list-item_square {
	width: 32%;
	margin-bottom: 60px;
}

.trainers-list_box .trainers-list_square .trainers-list-item_square .yaku{
	font-size: 1.2rem;
	padding: 5px 0;
}

.trainers-list_box .trainers-list_square .trainers-list-item_square h3 {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 2rem;
    font-weight: 800;
	padding-bottom: 10px;
}

.trainers-list_box .trainers-list_square .trainers-list-item_square h4 {
	font-size: 1.2rem;
}

.trainers-list_box .trainers-list_square .trainers-list-item_square .txt {
	font-size: 1.4rem;
	padding-top: 5px;
}

@media screen and (max-width: 767px) {
	.trainers-list_box .trainers-list_square .trainers-list-item_square {
	margin-bottom: 30px;
}
}