@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,800);
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

html,
body {
  width: 100%;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #fff;
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #231815;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: baseline;
}

.bold {
  font-family: "ヒラギノ角ゴシック Std", "Hiragino Kaku Gothic Std", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
}

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

p {
  font-weight: bold;
  line-height: 1.8;
}

.inner {
  width: 94%;
  margin: 0 auto;
}

a img {
  transition: all 0.3s ease-in;
}

a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  body {
    font-size: 16px;
  }

  br.sp_br {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  body {
    font-size: 18px;
  }

  br.sp_br {
    display: none;
  }

  .inner {
    width: 1020px;
    margin: 0 auto;
  }
}
#header {
  position: relative;
  border-top: 20px solid #231815;
  margin-bottom: 6%;
}
#header .upper {
  background-image: url(../images/header/bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
#header .upper #main_title1 {
  text-align: left;
  padding-top: 12%;
  padding-bottom: 15%;
}
#header .upper #main_title1 img {
  max-width: 755px;
}
#global-nav {
  font-family: "Open Sans", sans-serif;
}
#global-nav a {
  color: #fff;
  text-decoration: none;
}
#global-nav a:hover {
  color: #d7508e;
  text-decoration: none;
}
#global-nav #sp_menu {
  z-index: 100;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 1%;
  right: 3%;
  cursor: pointer;
  -moz-transition: all, 0.5s, ease-out;
  -o-transition: all, 0.5s, ease-out;
  -webkit-transition: all, 0.5s, ease-out;
  transition: all, 0.5s, ease-out;
}
#global-nav #sp_menu span {
  width: 100%;
  height: 20%;
  background-color: #d7508e;
  position: absolute;
}
#global-nav #sp_menu span:nth-child(1) {
  top: 0;
}
#global-nav #sp_menu span:nth-child(2) {
  top: 40%;
}
#global-nav #sp_menu span:nth-child(3) {
  top: 80%;
}

@media screen and (max-width: 768px) {
  #global-nav ul {
    position: fixed;
    top: -1000px;
    left: 0;
    width: 100%;
    background: #231815;
    -moz-transition: all, 0.3s, ease-in;
    -o-transition: all, 0.3s, ease-in;
    -webkit-transition: all, 0.3s, ease-in;
    transition: all, 0.3s, ease-in;
  }
  #global-nav ul li {
    text-align: center;
    border-top: 1px solid #fff;
  }
  #global-nav ul li a {
    display: block;
    padding: 20px 0;
  }
  #global-nav.on #sp_menu span {
    background-color: #d7508e;
  }
  #global-nav.on #sp_menu span:nth-child(1) {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 40%;
  }
  #global-nav.on #sp_menu span:nth-child(2) {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
  #global-nav.on #sp_menu span:nth-child(3) {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 40%;
  }
  #global-nav.on ul {
    top: 0;
    left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #global-nav {
    background: #231815;
  }
  #global-nav #sp_menu {
    display: none;
  }
  #global-nav ul {
    overflow: hidden;
    *zoom: 1;
    width: 100%;
    display: table;
  }
  #global-nav ul li {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 20%;
    padding: 27px 0;
  }
  #global-nav ul li:first-child,
  #global-nav ul li:last-child {
    width: 30%;
  }
}
#main article {
  text-align: center;
  margin-bottom: 8%;
  padding-top: 4%;
}
#main h1 {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  font-family: "Open Sans", sans-serif;
  color: #d7508e;
  font-size: 283%;
  border-left: 9px solid #d7508e;
  border-right: 9px solid #d7508e;
  line-height: 0.8;
}
#main .pagetop {
  display: none;
  position: fixed;
  right: 3%;
  bottom: 3%;
  z-index: 100000;
}
#main .pagetop img {
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 768px) {
  #main h1 {
    padding: 0 5%;
    margin-bottom: 30px;
    font-size: 160%;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  #main h1 {
    padding: 0 5%;
    margin-bottom: 60px;
  }
  #main .pagetop img {
    width: 64px;
    height: 64px;
  }
}
@media screen and (min-width: 1100px) {
  #main h1 {
    padding: 0 80px;
    margin-bottom: 60px;
  }
  #main .pagetop img {
    width: 64px;
    height: 64px;
  }
}

#trainer .upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#trainer .upper .portrait {
  width: 48%;
}
#trainer .upper .name {
  width: 50%;
}
#trainer .upper .name h2 {
  text-align: right;
  font-weight: bold;
}
#trainer .upper .name h2 p {
  line-height: 1;
  padding-bottom: 20px;
}
#trainer .upper .name h2 p:nth-child(1) {
  font-size: 34px;
}
#trainer .upper .name h2 p:nth-child(2) {
  font-size: 25px;
}
#trainer .upper .name h2 p:nth-child(3) {
  font-size: 60px;
}
#trainer .description {
  width: 71%;
  margin: 40px auto 0;
  text-align: center;
}
#trainer .description p {
  margin-bottom: 30px;
}
#trainer .description p:last-child {
  margin-bottom: 0;
}
#trainer .career {
  margin-top: 40px;
  text-align: left;
}
#trainer .career h3 {
  font-size: 150%;
}
#trainer .career p {
  margin-top: 10px;
}
#trainer .career img {
  margin-top: 20px;
}
#trainer .career img.magazine {
  margin-top: 40px;
}

@media screen and (min-width: 1100px) {
  #trainer .upper .name h2 p:nth-child(1) {
    font-size: 266%;
  }
  #trainer .upper .name h2 p:nth-child(2) {
    font-size: 200%;
  }
  #trainer .upper .name h2 p:nth-child(3) {
    font-size: 472%;
  }
}

@media screen and (max-width: 768px) {
  #trainer .upper {
    flex-wrap: wrap;
    padding-bottom: 15px;
  }
  #trainer .upper .portrait {
    width: 100%;
  }
  #trainer .upper .name {
    width: 100%;
    padding-top: 5%;
  }
  #trainer .upper .name h2 {
    text-align: center;
  }
  #trainer .upper .name h2 p:nth-child(1) {
    font-size: 28px;
  }
  #trainer .upper .name h2 p:nth-child(2) {
    font-size: 24px;
  }
  #trainer .upper .name h2 p:nth-child(3) {
    font-size: 48px;
  }
  #trainer .description {
    width: 100%;
    margin-top: 0;
    text-align: left;
  }
}

#philosophy {
  text-align: left;
}
#philosophy h2 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  font-family: "Open Sans", sans-serif;
  transform: scale(1, 0.9);
  font-weight: 800;
  font-size: 294%;
  padding: 0 0.2em;
}
#philosophy h2:before {
  content: "";
  position: absolute;
  background: #d7508e;
  width: 100%;
  height: 15px;
  left: 0;
  bottom: -3px;
  z-index: -1;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -moz-transform: skewY(-1deg);
  -ms-transform: skewY(-1deg);
  -webkit-transform: skewY(-1deg);
  transform: skewY(-1deg);
}
#philosophy .graph {
  background: #fffeee;
}
#philosophy .graph h3 {
  color: #d7508e;
  font-size: 161%;
  font-weight: bold;
}
#philosophy .graph figure {
  width: 89%;
  text-align: center;
  margin: 0 auto;
}
#philosophy .graph figure figcaption {
  font-size: 77.7%;
  font-weight: normal;
  text-align: left;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  #philosophy {
    margin-top: 30px;
  }
  #philosophy h2 {
    font-size: 240%;
    margin-bottom: 10px;
  }
  #philosophy > p {
    margin-bottom: 20px;
  }
  #philosophy .p2 {
    margin-top: 20px;
  }
  #philosophy .graph {
    background: #fffeee;
    padding: 5% 3%;
  }
  #philosophy .graph h3 {
    text-align: center;
    padding-bottom: 20px;
  }
  #philosophy .graph figure {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  #philosophy .graph figure figcaption {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  #philosophy {
    margin-top: 50px;
  }
  #philosophy h2 {
    padding: 0 10px;
    margin-bottom: 10px;
  }
  #philosophy > p {
    margin-bottom: 20px;
  }
  #philosophy .p2 {
    margin-top: 20px;
  }
  #philosophy .graph {
    padding: 22px 24px 10px;
  }
}
@media screen and (min-width: 1100px) {
  #philosophy {
    margin-top: 30px;
  }
  #philosophy h2 {
    margin-bottom: 10px;
  }
  #philosophy > p {
    margin-bottom: 20px;
    line-height: 1.9;
  }
  #philosophy .p2 {
    margin-top: 20px;
  }
  #philosophy .graph {
    padding: 22px 24px 10px;
  }
}
#flow ul li {
  font-weight: bold;
  line-height: 1.8;
}
#flow #soap .lists {
  text-align: left;
}
#flow #soap .lists .list h2 {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  font-family: "Open Sans", sans-serif;
  position: relative;
  font-size: 177%;
}
#flow #soap .lists .list h2 b {
  font-family: "Open Sans", sans-serif;
  transform: scale(1, 0.9);
  font-weight: 800;
  font-size: 203%;
}
#flow #soap .lists .list h2:before {
  content: "";
  position: absolute;
  background: #d7508e;
  width: 100%;
  height: 15px;
  left: 0;
  bottom: -3px;
  z-index: -1;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -moz-transform: skewY(-1deg);
  -ms-transform: skewY(-1deg);
  -webkit-transform: skewY(-1deg);
  transform: skewY(-1deg);
}
#flow #soap .lists .list p {
  font-size: 79%;
  font-weight: normal;
  line-height: 1.8;
}
#flow #soap .lists .list .soap_img > img {
  display: block;
}
#flow #pfb {
  text-align: left;
}
#flow #pfb h2 {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  position: relative;
  font-size: 322%;
  font-weight: bold;
}
#flow #pfb h2:before {
  content: "";
  position: absolute;
  background: #d7508e;
  width: 100%;
  height: 30px;
  left: 0;
  bottom: -3px;
  z-index: -1;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -moz-transform: skewY(-1deg);
  -ms-transform: skewY(-1deg);
  -webkit-transform: skewY(-1deg);
  transform: skewY(-1deg);
  bottom: -13px;
}
#flow #pfb .catchcopy {
  color: #d7508e;
  font-size: 177.7%;
  line-height: 1.4;
}
#flow #pfb .description {
  border: 5px solid #d7508e;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #flow h1 {
    padding: 0 40px;
  }
  #flow #soap .lists {
    margin-top: 23px;
  }
  #flow #soap .lists .list {
    margin-bottom: 30px;
  }
  #flow #soap .lists .list h2 {
    padding: 0 12px;
    margin-bottom: 20px;
  }
  #flow #soap .lists .list p {
    font-size: 100%;
    padding-bottom: 10px;
  }
  #flow #soap .lists .list .soap_img > img {
    display: block;
  }
  #flow #pfb {
    margin-top: 40px;
  }
  #flow #pfb h2 {
    font-size: 32px;
    padding-left: 16px;
    margin-bottom: 30px;
  }
  #flow #pfb h2:before {
    content: "";
    position: absolute;
    background: #d7508e;
    width: 100%;
    height: 20px;
    left: 0;
    bottom: -3px;
    z-index: -1;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -moz-transform: skewY(-1deg);
    -ms-transform: skewY(-1deg);
    -webkit-transform: skewY(-1deg);
    transform: skewY(-1deg);
    bottom: -10px;
  }
  #flow #pfb .catchcopy {
    font-size: 20px;
  }
  #flow #pfb .catchcopy br {
    display: none;
  }
  #flow #pfb .img_area {
    margin-top: 20px;
  }
  #flow #pfb .img_area #pfb1 {
    margin-bottom: 20px;
  }
  #flow #pfb .description {
    margin-top: 27px;
    border: 3px solid #d7508e;
    padding: 5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  #flow h1 {
    padding: 0 40px;
  }
  #flow #soap .lists {
    overflow: hidden;
    *zoom: 1;
  }
  #flow #soap .lists:first-child {
    margin-top: 23px;
  }
  #flow #soap .lists .list {
    width: 50%;
    float: left;
    margin-bottom: 30px;
  }
  #flow #soap .lists .list:nth-child(2n-1) {
    padding-right: 10px;
  }
  #flow #soap .lists .list:nth-child(2n) {
    padding-left: 10px;
  }
  #flow #soap .lists .list h2 {
    padding: 0 12px;
    margin-bottom: 20px;
  }
  #flow #soap .lists .list p {
    min-height: 120px;
  }
  #flow #soap .lists:nth-child(2) .list p {
    min-height: 100px;
  }
  #flow #pfb {
    margin-top: 33px;
  }
  #flow #pfb h2 {
    padding-left: 16px;
    margin-bottom: 40px;
  }
  #flow #pfb .img_area {
    position: relative;
    overflow: hidden;
    *zoom: 1;
    margin-top: 0;
  }
  #flow #pfb .img_area #pfb1 {
    width: 50%;
    float: left;
    margin-top: 10%;
  }
  #flow #pfb .img_area #pfb2 {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  #flow #pfb .description {
    margin-top: 27px;
    padding: 41px 50px 50px 47px;
  }
}
@media screen and (min-width: 1100px) {
  #flow h1 {
    padding: 0 40px;
  }
  #flow #soap .lists {
    overflow: hidden;
    *zoom: 1;
  }
  #flow #soap .lists:first-child {
    margin-top: 23px;
  }
  #flow #soap .lists .list {
    width: 50%;
    float: left;
    margin-bottom: 30px;
  }
  #flow #soap .lists .list:nth-child(2n-1) {
    padding-right: 10px;
  }
  #flow #soap .lists .list:nth-child(2n) {
    padding-left: 10px;
  }
  #flow #soap .lists .list h2 {
    padding: 0 12px;
    margin-bottom: 20px;
  }
  #flow #soap .lists .list p {
    min-height: 126px;
  }
  #flow #pfb {
    margin-top: 33px;
  }
  #flow #pfb h2 {
    padding-left: 16px;
    margin-bottom: 40px;
  }
  #flow #pfb .img_area {
    position: relative;
    margin-top: 20px;
    height: 506px;
  }
  #flow #pfb .img_area #pfb1 {
    width: 550px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  #flow #pfb .img_area #pfb2 {
    width: 550px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  #flow #pfb .description {
    margin-top: 27px;
    padding: 41px 50px 50px 47px;
  }
}
#price #course {
  border-top: 3px solid #231815;
  border-bottom: 3px solid #231815;
}

@media screen and (max-width: 768px) {
  #price h1 {
    padding: 0 40px;
  }
  #price #course {
    margin-top: 37px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  #price h1 {
    padding: 0 40px;
  }
  #price #course {
    margin-top: 37px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1100px) {
  #price h1 {
    padding: 0 40px;
  }
  #price #course {
    margin-top: 37px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#reservation_access h2 {
  margin: 0 auto;
  font-size: 200%;
  font-weight: bold;
}
#reservation_access #cal p {
  font-size: 122%;
  line-height: 1;
}
#reservation_access #cal p b {
  font-size: 163%;
}
#reservation_access #access p {
  font-size: 200%;
  line-height: 129%;
}
#reservation_access #access p small {
  font-size: 61%;
}
#reservation_access .inner_content:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 100px;
  height: 2px;
  background: #231815;
}
#reservation_access #contact {
  margin-bottom: 20px;
}
#reservation_access #contact ul {
  width: 90%;
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
}
#reservation_access #contact ul li {
}
#reservation_access #contact ul li img {
  width: 110px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  #reservation_access h2 {
    margin-top: 55px;
    padding-bottom: 24px;
  }
  #reservation_access #contact ul {
    width: 100%;
  }
  #reservation_access #contact ul li img {
    width: 70%;
  }
  #reservation_access #cal {
    margin-top: 40px;
  }
  #reservation_access #cal p {
    margin: 27px auto 30px;
    line-height: 36px;
  }
  #reservation_access #access p {
    font-size: 135%;
    margin-top: 23px;
  }
  #reservation_access #access p small {
    font-size: 14px;
  }
  #reservation_access #access .map {
    margin-top: 26px;
  }
  #reservation_access #access .map > div {
    margin-bottom: 40px;
  }
  #reservation_access #access .map #gmap {
    width: 100%;
    height: 90vw;
  }
}
@media screen and (min-width: 768px) {
  #reservation_access h2 {
    margin-top: 55px;
    padding-bottom: 44px;
  }
  #reservation_access #contact ul {
    padding: 3px 0;
  }
  #reservation_access #cal p {
    padding: 27px 0 30px;
  }
  #reservation_access #access p {
    margin-top: 23px;
  }
  #reservation_access #access .map {
    overflow: hidden;
    *zoom: 1;
    margin-top: 26px;
  }
  #reservation_access #access .map > div {
    float: left;
    width: 50%;
  }
  #reservation_access #access .map > div:first-child {
    padding-right: 10px;
  }
  #reservation_access #access .map > div:last-child {
    padding-left: 10px;
  }
  #reservation_access #access .map #gmap {
    width: 46vw;
    max-width: 500px;
    height: 46vw;
    max-height: 500px;
  }
}
#footer {
  color: #fff;
  background: #231815;
  text-align: center;
  padding: 5px 0 7px;
}
#footer small {
  font-size: 72%;
  font-weight: bold;
  line-height: 1.8;
}
