@charset "UTF-8";
/*
FOX CSS 3.0.0
by Ronan Levesque - CC BY 3.0 license

Includes Normalize by Nicolas Gallagher
More info => http://necolas.github.io/normalize.css/
*/
/*-------------------------*/
/* +RESETS                 */
/*-------------------------*/
*, *:after, *:before {
  box-sizing: border-box;
}

html, body, blockquote, form, figure {
  margin: 0;
  padding: 0;
}

blockquote, code, embed, iframe,
img, input, object, pre,
table, td, textarea, video {
  max-width: 100%;
  height: auto;
}

a img, form, fieldset {
  border: none;
}

input, button, select {
  vertical-align: middle;
}

textarea {
  vertical-align: top;
}

abbr {
  cursor: help;
  border-bottom: 1px dotted #bbb;
}

blockquote p, button, input,
li h1, li h2, li h3, li h4,
li h5, li h6, li li, li p,
select, td p, th p {
  font-size: 100%;
}

/*-------------------------*/
/* +NORMALIZE              */
/*-------------------------*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.1280px;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td, th {
  padding: 0;
}

/*-------------------------*/
/* +UTILS                  */
/*-------------------------*/
.fx-txt-left {
  text-align: left;
}

.fx-txt-right {
  text-align: right;
}

.fx-txt-center {
  text-align: center;
}

.fx-ellip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fx-left {
  float: left;
}

.fx-right {
  float: right;
}

.fx-center {
  margin: auto;
}

.fx-clearfix:before, .fx-clearfix:after {
  content: "";
  display: table;
}

.fx-clearfix:after {
  clear: both;
}

.fx-clear {
  clear: both;
}

.fx-inline {
  display: inline;
}

.fx-inlineb {
  display: inline-block;
}

.fx-valign {
  vertical-align: middle;
}

/*-------------------------*/
/* +GRID                   */
/*-------------------------*/
.fx-row {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
}

.fx-row + .fx-row {
  margin-top: 0;
}

.fx-row-start-xs {
  justify-content: flex-start;
}

.fx-row-center-xs {
  justify-content: center;
}

.fx-row-end-xs {
  justify-content: flex-end;
}

.fx-row-between-xs {
  justify-content: space-between;
}

.fx-row-around-xs {
  justify-content: space-around;
}

@media screen and (min-width: 768px) {
  .fx-row-start-s {
    justify-content: flex-start;
  }
  .fx-row-center-s {
    justify-content: center;
  }
  .fx-row-end-s {
    justify-content: flex-end;
  }
  .fx-row-between-s {
    justify-content: space-between;
  }
  .fx-row-around-s {
    justify-content: space-around;
  }
}

@media screen and (min-width: 960px) {
  .fx-row-start-m {
    justify-content: flex-start;
  }
  .fx-row-center-m {
    justify-content: center;
  }
  .fx-row-end-m {
    justify-content: flex-end;
  }
  .fx-row-between-m {
    justify-content: space-between;
  }
  .fx-row-around-m {
    justify-content: space-around;
  }
}

@media screen and (min-width: 1280px) {
  .fx-row-start-l {
    justify-content: flex-start;
  }
  .fx-row-center-l {
    justify-content: center;
  }
  .fx-row-end-l {
    justify-content: flex-end;
  }
  .fx-row-between-l {
    justify-content: space-between;
  }
  .fx-row-around-l {
    justify-content: space-around;
  }
}

.fx-row-reverse-xs {
  flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  .fx-row-reverse-s {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 960px) {
  .fx-row-reverse-m {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1280px) {
  .fx-row-reverse-l {
    flex-direction: row-reverse;
  }
}

[class*="fx-col"] {
  margin-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  flex-grow: 1;
}

.fx-col-10-xs {
  flex-basis: 10%;
  max-width: 10%;
}

.fx-col-20-xs {
  flex-basis: 20%;
  max-width: 20%;
}

.fx-col-25-xs {
  flex-basis: 25%;
  max-width: 25%;
}

.fx-col-30-xs {
  flex-basis: 30%;
  max-width: 30%;
}

.fx-col-33-xs {
  flex-basis: 33.3333%;
  max-width: 33.3333%;
}

.fx-col-40-xs {
  flex-basis: 40%;
  max-width: 40%;
}

.fx-col-50-xs {
  flex-basis: 50%;
  max-width: 50%;
}

.fx-col-60-xs {
  flex-basis: 60%;
  max-width: 60%;
}

.fx-col-66-xs {
  flex-basis: 66.6666%;
  max-width: 66.6666%;
}

.fx-col-70-xs {
  flex-basis: 70%;
  max-width: 70%;
}

.fx-col-75-xs {
  flex-basis: 75%;
  max-width: 75%;
}

.fx-col-80-xs {
  flex-basis: 80%;
  max-width: 80%;
}

.fx-col-90-xs {
  flex-basis: 90%;
  max-width: 90%;
}

.fx-col-100-xs {
  flex-basis: 100%;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .fx-col-10-s {
    flex-basis: 10%;
    max-width: 10%;
  }
  .fx-col-20-s {
    flex-basis: 20%;
    max-width: 20%;
  }
  .fx-col-25-s {
    flex-basis: 25%;
    max-width: 25%;
  }
  .fx-col-30-s {
    flex-basis: 30%;
    max-width: 30%;
  }
  .fx-col-33-s {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
  .fx-col-40-s {
    flex-basis: 40%;
    max-width: 40%;
  }
  .fx-col-50-s {
    flex-basis: 50%;
    max-width: 50%;
  }
  .fx-col-60-s {
    flex-basis: 60%;
    max-width: 60%;
  }
  .fx-col-66-s {
    flex-basis: 66.6666%;
    max-width: 66.6666%;
  }
  .fx-col-70-s {
    flex-basis: 70%;
    max-width: 70%;
  }
  .fx-col-75-s {
    flex-basis: 75%;
    max-width: 75%;
  }
  .fx-col-80-s {
    flex-basis: 80%;
    max-width: 80%;
  }
  .fx-col-90-s {
    flex-basis: 90%;
    max-width: 90%;
  }
  .fx-col-100-s {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .fx-col-10-m {
    flex-basis: 10%;
    max-width: 10%;
  }
  .fx-col-20-m {
    flex-basis: 20%;
    max-width: 20%;
  }
  .fx-col-25-m {
    flex-basis: 25%;
    max-width: 25%;
  }
  .fx-col-30-m {
    flex-basis: 30%;
    max-width: 30%;
  }
  .fx-col-33-m {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
  .fx-col-40-m {
    flex-basis: 40%;
    max-width: 40%;
  }
  .fx-col-50-m {
    flex-basis: 50%;
    max-width: 50%;
  }
  .fx-col-60-m {
    flex-basis: 60%;
    max-width: 60%;
  }
  .fx-col-66-m {
    flex-basis: 66.6666%;
    max-width: 66.6666%;
  }
  .fx-col-70-m {
    flex-basis: 70%;
    max-width: 70%;
  }
  .fx-col-75-m {
    flex-basis: 75%;
    max-width: 75%;
  }
  .fx-col-80-m {
    flex-basis: 80%;
    max-width: 80%;
  }
  .fx-col-90-m {
    flex-basis: 90%;
    max-width: 90%;
  }
  .fx-col-100-m {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1280px) {
  .fx-col-10-l {
    flex-basis: 10%;
    max-width: 10%;
  }
  .fx-col-20-l {
    flex-basis: 20%;
    max-width: 20%;
  }
  .fx-col-25-l {
    flex-basis: 25%;
    max-width: 25%;
  }
  .fx-col-30-l {
    flex-basis: 30%;
    max-width: 30%;
  }
  .fx-col-33-l {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
  .fx-col-40-l {
    flex-basis: 40%;
    max-width: 40%;
  }
  .fx-col-50-l {
    flex-basis: 50%;
    max-width: 50%;
  }
  .fx-col-60-l {
    flex-basis: 60%;
    max-width: 60%;
  }
  .fx-col-66-l {
    flex-basis: 66.6666%;
    max-width: 66.6666%;
  }
  .fx-col-70-l {
    flex-basis: 70%;
    max-width: 70%;
  }
  .fx-col-75-l {
    flex-basis: 75%;
    max-width: 75%;
  }
  .fx-col-80-l {
    flex-basis: 80%;
    max-width: 80%;
  }
  .fx-col-90-l {
    flex-basis: 90%;
    max-width: 90%;
  }
  .fx-col-100-l {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.fx-col-top-xs {
  align-self: flex-start;
}

.fx-col-center-xs {
  align-self: center;
}

.fx-col-bottom-xs {
  align-self: flex-end;
}

@media screen and (min-width: 768px) {
  .fx-col-top-s {
    align-self: flex-start;
  }
  .fx-col-center-s {
    align-self: center;
  }
  .fx-col-bottom-s {
    align-self: flex-end;
  }
}

@media screen and (min-width: 960px) {
  .fx-col-top-m {
    align-self: flex-start;
  }
  .fx-col-center-m {
    align-self: center;
  }
  .fx-col-bottom-m {
    align-self: flex-end;
  }
}

@media screen and (min-width: 1280px) {
  .fx-col-top-l {
    align-self: flex-start;
  }
  .fx-col-center-l {
    align-self: center;
  }
  .fx-col-bottom-l {
    align-self: flex-end;
  }
}

/* CSS Document */
/*
 オリジナルリセットcss
 ----------------------------------------------------------- */
p {
  margin-bottom: 0;
}

img {
  display: block;
}

/*
 デバイス共通
 ----------------------------------------------------------- */
body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "YuGothic M","メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.65;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.68;
  }
}

a, a img {
  transition: all .3s;
}

a:hover, a img:hover {
  opacity: 0.7;
}

.dib {
  display: inline-block;
}

.m0a {
  margin: 0 auto;
}

.mla {
  margin-left: auto;
}

.posr {
  position: relative;
}

.posa {
  position: absolute;
}

.imgr {
  display: block;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .sp_scroll {
    width: 100%;
    overflow-x: scroll;
  }
  .sp_scroll > * {
    min-width: 768px;
  }
}

/*
 テキスト関連
 ----------------------------------------------------------- */
.fwb {
  font-weight: bold !important;
}

.underline {
  text-decoration: underline;
}

.font_xs {
  font-size: 0.666em;
}

/*12px*/
.font_s {
  font-size: 0.777em;
}

/*14px*/
.font_m {
  font-size: 1.333em;
}

/*24px*/
.font_l {
  font-size: 2.222em;
}

/*40px*/
.font_xl {
  font-size: 3.333em;
}

/*60px*/
.tac {
  text-align: center !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.shadow {
  text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}

.font_min {
  font-family: "Yu Mincho", YuMincho, HG明朝B, "MS Mincho", serif;
}

.font_go {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
}

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

.note {
  position: relative;
  font-size: 0.777em;
  padding-left: 1em;
}

.note:before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
  font-size: 1em;
  line-height: 1.554em;
}

@media (min-width: 768px) and (max-width: 1229px) {
  .tab_shadow {
    text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
  }
}

@media screen and (max-width: 767px) {
  .sp_tal {
    text-align: left !important;
  }
  .sp_shadow {
    text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
  }
}

/*
 余白&幅調整
 ----------------------------------------------------------- */
.mt0 {
  margin-top: 0;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt45 {
  margin-top: 45px;
}

.mt60 {
  margin-top: 60px;
}

.mt75 {
  margin-top: 75px;
}

.mt90 {
  margin-top: 90px;
}

.mt120 {
  margin-top: 120px;
}

.mb0 {
  margin-bottom: 0;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb120 {
  margin-bottom: 120px;
}

.pt0 {
  padding-top: 0;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt45 {
  padding-top: 45px;
}

.pt60 {
  padding-top: 60px;
}

.pt75 {
  padding-top: 75px;
}

.pt90 {
  padding-top: 90px;
}

.pt120 {
  padding-top: 120px;
}

.pb0 {
  padding-bottom: 0;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb75 {
  padding-bottom: 75px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb120 {
  padding-bottom: 120px;
}

.pl0 {
  padding-left: 0;
}

.pr0 {
  padding-right: 0;
}

.ph0 {
  padding-left: 0;
  padding-right: 0;
}

.ph15 {
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 767px) {
  .spmt0 {
    margin-top: 0;
  }
  .spmt5 {
    margin-top: 5px;
  }
  .spmt10 {
    margin-top: 10px;
  }
  .spmt15 {
    margin-top: 15px;
  }
  .spmt20 {
    margin-top: 20px;
  }
  .spmt30 {
    margin-top: 30px;
  }
  .spmt45 {
    margin-top: 45px;
  }
  .spmt60 {
    margin-top: 60px;
  }
  .spmb0 {
    margin-bottom: 0;
  }
  .spmb5 {
    margin-bottom: 5px;
  }
  .spmb10 {
    margin-bottom: 10px;
  }
  .spmb15 {
    margin-bottom: 15px;
  }
  .spmb20 {
    margin-bottom: 20px;
  }
  .spmb30 {
    margin-bottom: 30px;
  }
  .spmb45 {
    margin-bottom: 45px;
  }
  .spmb60 {
    margin-bottom: 60px;
  }
  .sppt0 {
    padding-top: 0;
  }
  .sppt5 {
    padding-top: 5px;
  }
  .sppt10 {
    padding-top: 10px;
  }
  .sppt15 {
    padding-top: 15px;
  }
  .sppt20 {
    padding-top: 20px;
  }
  .sppt30 {
    padding-top: 30px;
  }
  .sppt45 {
    padding-top: 45px;
  }
  .sppt60 {
    padding-top: 60px;
  }
  .sppb0 {
    padding-bottom: 0;
  }
  .sppb5 {
    padding-bottom: 5px;
  }
  .sppb10 {
    padding-bottom: 10px;
  }
  .sppb15 {
    padding-bottom: 15px;
  }
  .sppb20 {
    padding-bottom: 20px;
  }
  .sppb30 {
    padding-bottom: 30px;
  }
  .sppb45 {
    padding-bottom: 45px;
  }
  .sppb60 {
    padding-bottom: 60px;
  }
  .sppl0 {
    padding-left: 0;
  }
  .sppr0 {
    padding-right: 0;
  }
  .spph0 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .spwd50 {
    width: 50% !important;
  }
  .spwd60 {
    width: 60% !important;
  }
  .spwd70 {
    width: 70% !important;
  }
  .spwd80 {
    width: 80% !important;
  }
  .spwd90 {
    width: 90% !important;
  }
}

/*
 見出し
 ----------------------------------------------------------- */
h1, h2, h3 {
  letter-spacing: -0.05em;
  line-height: 1.4;
}

h2 {
  margin: 0;
  padding: 0 0 60px;
  text-align: center;
}

h3 {
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 1229px) {
  h2 {
    padding: 0 0 45px;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    padding: 0 0 30px;
  }
}

/*
 ボタン
 ----------------------------------------------------------- */
.btn {
  appearance: none;
  display: block;
  background: #25ad38;
  margin: 0 auto;
  border: 3px solid #25ad38;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 190%;
  font-family: inherit;
  padding: 5px;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0px 4px 0px #197827;
  text-align: center;
  padding: 10px 0;
  position: relative;
  width: 100%;
}

.btn a {
  color: #FFF;
}

.btn:focus {
  color: #FFF;
  text-decoration: none;
}

.btn:hover {
  background: #45ba55;
  border: 3px solid #45ba55;
  box-shadow: 0px 4px 0px #236251;
  color: #FFF;
  text-decoration: none;
}

.btn img {
  position: absolute;
  right: 5px;
  width: 20%;
  top: -12px;
}

.btn_gradient {
  appearance: none;
  display: block;
  background: #2d660a;
  background: linear-gradient(#5edd00 0%, #2d660a 100%);
}

button {
  margin: 0 auto;
  text-align: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  width: 100%;
}

button img:hover {
  opacity: .7;
}

/*
cv
 ----------------------------------------------------------- */
.cv {
  background-color: #ffd201;
}

.cv .container {
  position: relative;
}

.cv .img {
  position: absolute;
  right: -130px;
  bottom: 0;
}

.cv .tel-inner {
  line-height: .9em;
  padding: 15px 0;
  border-radius: 5px;
  font-size: 160%;
  background-color: #2bc650;
  color: #FFF;
}

.cv .tel-inner {
  line-height: .9em;
  padding: 15px 0;
  border-radius: 5px;
  font-size: 160%;
  background-color: #2bc650;
  color: #FFF;
}

.cv .btn {
  padding: 10px 0;
  font-size: 100%;
  background-color: #fc481e;
  border-color: #fc481e;
  box-shadow: none;
}

.cv .btn:hover {
  background: #ff7b5c;
  border: 3px solid #ff7b5c;
  box-shadow: none;
  color: #FFF;
  text-decoration: none;
}

.cv_area {
  background-color: #f5f0ef;
}

.cv_area h2 {
  text-align: center;
}

.cv_area .tit {
  padding: 1.5em 0 1em;
  padding-top: 15vw;
  font-size: 115%;
  margin-bottom: 10px;
}

.cv_area form {
  padding: 50px 70px 30px;
  padding-top: 35px;
}

.cv_area span.required {
  color: #FFF;
  background-color: #d1392d;
  padding: 2px 5px;
  font-size: 60%;
  margin-left: 4px;
}

.cv_area .form_tit {
  margin-bottom: 3px;
}

.cv_area form input {
  margin-bottom: 3px;
  height: 30px;
  padding: 6px 7px;
  width: 100% !important;
}

.cv_area form input.form-control {
  height: 50px;
}

.cv_area .inner {
  background-color: #FFF;
  border: solid 4px #597248;
  position: relative;
}

/*
Page Top
----------------------------------------------------------- */
/*TOPへ戻る*/
.pagetop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
}

.pagetop a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  -moz-opacity: 1;
  opacity: 1;
  font-size: 14.1px;
}

.pagetop a:before {
  position: absolute;
  content: "";
  border-left: 1px solid #8c6c15;
  border-top: 1px solid #8c6c15;
  width: 45px;
  height: 45px;
  top: 5px;
  transform: rotate(45deg);
  transition: all .3s;
}

.pagetop a:after {
  position: absolute;
  content: "Go Top";
  font-family: 'Sorts Mill Goudy', serif;
  font-weight: normal;
  bottom: 0;
  letter-spacing: 0;
  word-break: keep-all;
  width: 5rem;
  text-align: center;
}

.pagetop a:hover:before {
  top: -5px;
}

.pagetop a:link,
.pagetop a:visited {
  color: #8c6c15;
}

@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 20px;
    right: 5px;
  }
  .pagetop a:before {
    width: 30px;
    height: 30px;
    top: 10px;
  }
}

/*
 ページ下部固定部分
 ----------------------------------------------------------- */
.btm_fix {
  position: fixed;
  left: 0;
  bottom: 0;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 998;
}

.btm_fix a {
  width: 50%;
  min-width: 400px;
}

@media screen and (max-width: 767px) {
  .btm_fix a {
    width: 90%;
    min-width: inherit;
    font-size: 1.2em;
  }
}

/*
 white-box
 ----------------------------------------------------------- */
.white_box {
  padding: 45px;
  background-color: #fff;
  margin-bottom: 30px;
}

.white_box:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1229px) {
  .white_box {
    padding: 30px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .white_box {
    padding: 15px;
    margin-bottom: 15px;
  }
}

/*
 check_list
 ----------------------------------------------------------- */
.check_list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 3px;
}

.check_list li:last-child {
  margin-bottom: 0;
}

.check_list li:before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 0;
  left: 0;
  color: orange;
}

.list_border {
  border-bottom: 2px dashed #000;
}

.list_border_stop {
  border-bottom: 2px dashed #000;
  display: inline-block;
}

/*
 Container / Break
 ----------------------------------------------------------- */
@media (min-width: 1200px) {
  .container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .p_none {
    display: none;
  }
  .pt_none {
    display: none;
  }
  .ps_none {
    display: none;
  }
  .t_none {
    display: block;
  }
  .ts_none {
    display: block;
  }
  .s_none {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  body {
    overflow-x: hidden;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .p_none {
    display: block;
  }
  .pt_none {
    display: none;
  }
  .ps_none {
    display: block;
  }
  .t_none {
    display: none;
  }
  .ts_none {
    display: none;
  }
  .s_none {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
  .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .p_none {
    display: block;
  }
  .pt_none {
    display: block;
  }
  .ps_none {
    display: none;
  }
  .t_none {
    display: block;
  }
  .ts_none {
    display: none;
  }
  .s_none {
    display: none;
  }
}

/*==================================
フォント定義
==================================*/
/* 共通サイズ定義 */
.h2 {
  font-size: 20px;
  line-height: 1.6;
}

.h2_m {
  font-size: 28px;
  line-height: 1.6;
}

.h2_en {
  font-size: 44px;
  line-height: 1.6;
}

.h2_s {
  font-size: 24px;
  line-height: 1.6;
}

.h3 {
  font-size: 20px;
  line-height: 1.6;
}

.h2_line {
  padding-bottom: 30px;
}

.h2_line h2 {
  padding-bottom: 20px;
}

.h2_line p {
  width: 45px;
  height: 1px;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 959px) {
  .h2 {
    font-size: 20px;
    line-height: 1.6;
  }
  .h2_m {
    font-size: 28px;
    line-height: 1.6;
  }
  .h2_en {
    font-size: 44px;
    line-height: 1.6;
  }
  .h2_s {
    font-size: 24px;
    line-height: 1.6;
  }
  .h3 {
    font-size: 20px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  .h2 {
    font-size: 18px;
    line-height: 1.4;
  }
  .h2_m {
    font-size: 24px;
    line-height: 1.4;
  }
  .h2_en {
    font-size: 26px;
    line-height: 1.6;
  }
  .h2_s {
    font-size: 16px;
    line-height: 1.4;
  }
  .h3 {
    font-size: 18px;
    line-height: 1.4;
  }
  .h2_line {
    padding-bottom: 30px;
  }
  .h2_line h2 {
    padding-bottom: 0;
  }
}

.Sorts {
  font-family: 'Sorts Mill Goudy', serif;
  font-weight: normal;
}

.min {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", "游明朝", YuMincho;
  font-weight: normal;
}

/*==================================
カラー定義
==================================*/
/*
色関連
----------------------------------------------------------- */
.bg_cl1 {
  background-color: #f2f1f0;
}

.bg_cl2 {
  background-color: #22254f;
}

.bg_accent {
  background-color: #8c6c15;
}

.cl_main {
  color: #8c6c15;
}

.cl_accent {
  color: #4c4c4c;
}

.cl_other1 {
  color: #159868;
}

.cl_other2 {
  color: #eee35a;
}

.cl_white {
  color: #FFF;
}

.cl_red {
  color: #b20000;
}

/* CSS Document */
/*-----------
@mixin
------------*/
/*-----------
デバイス共通
------------*/
body {
  font-family: "游ゴシック体", YuGothic, "YuGothic M","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 2.5;
  color: #4c4c4c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: break-all;
  letter-spacing: 0.08em;
}

header h1,
header .h1 {
  color: #8c6c15;
  font-size: 14px;
}

h1, h2, h3 {
  letter-spacing: .05em;
  line-height: 1.4;
}

.u_line {
  position: relative;
  display: inline-block;
}

.u_line:after {
  background-color: #8c6c15;
  content: '';
  display: inline-block;
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.h2_sub {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding: 0;
}

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

mark {
  background: #eee35a;
  padding: 5px;
  color: inherit;
}

section {
  padding-top: 150px;
  padding-bottom: 150px;
}

a {
  color: #8c6c15;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  opacity: .8;
  cursor: pointer;
}

.fx-row-gutter-s {
  margin-left: -8px;
  margin-right: -8px;
}

.fx-row-gutter-s li,
.fx-row-gutter-s .f_item {
  padding-left: 7px;
  padding-right: 8px;
}

#main h1 {
  padding-top: 0;
  margin-top: 0;
}

#main h1 .sub {
  font-size: 20px;
  margin-left: 10px;
}

.mv .mv_txt {
  position: absolute;
  z-index: 10;
  color: #FFF;
  text-align: center;
  margin-top: 25vh;
  left: 0;
  right: 0;
}

@media (min-width: 960px) {
  .mv .mv_txt {
    margin-top: 20vh;
  }
}

.mv .mv_txt .txt01 {
  font-size: 100px;
  margin-bottom: 25px;
  line-height: 1;
}

.mv .mv_txt .txt02 {
  font-size: 28px;
  letter-spacing: 0.2em;
}

.topcontent .h2_left {
  text-align: left;
}

.topcontent .h2_left:before {
  left: 30px;
}

.topcontent .h2_right {
  text-align: right;
}

.topcontent .h2_right:before {
  right: -30px;
  left: auto;
}

h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  padding: 0;
}

h2:before {
  display: none;
}

h2 .sub {
  font-size: 12px;
  margin-left: 10px;
  color: #159868;
  font-weight: 300;
}

.clear {
  clear: both;
}

.highlight {
  background: linear-gradient(transparent 60%, #ffff90 60%);
}

/*cv_btn*/
.cv_btn {
  background: #159868;
  width: 550px;
  height: 70px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  padding: 15px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all .3s;
  border: solid 1px #159868;
}

.cv_btn:hover {
  background-color: #fff;
  border: solid 3px #159868;
  color: #159868;
  text-decoration: none;
  padding: 13px 0;
  border-radius: 35px;
}

.cv_btn02 {
  background: #159868;
  width: 190px;
  height: auto;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  display: inline;
  padding: 15px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all .3s;
  border: solid 1px #159868;
}

.cv_btn02:hover {
  background-color: #fff;
  border: solid 3px #159868;
  color: #159868;
  text-decoration: none;
  padding: 13px;
  border-radius: 35px;
}

.cv_btn02:link, .cv_btn02:visited, .cv_btn02:active {
  color: #8c6c15;
  text-decoration: none;
}

/*head*/
.scroll {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.g_btn_inner {
  text-align: center;
  border-radius: 50px;
  overflow: hidden;
  width: 480px;
  margin: 60px auto 0;
}

.g_btn_inner .g_btn {
  color: #8c6c15;
  font-size: 16px;
  font-weight: bold;
  background: transparent;
  padding: 10px 30px;
  border: 1px solid #8c6c15;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  transition: .3s;
  text-decoration: none;
  display: block;
}

.g_btn_inner .g_btn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #8c6c15;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.g_btn_inner .g_btn:hover {
  color: #fff;
}

.g_btn_inner .g_btn:hover .arrow:before {
  background: #fff;
}

.g_btn_inner .g_btn:hover .arrow:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.g_btn_inner .g_btn:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.g_btn_inner .g_btn .arrow {
  position: absolute;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
  right: 50px;
  top: -1px;
  bottom: 0;
}

.g_btn_inner .g_btn .arrow:before, .g_btn_inner .g_btn .arrow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.g_btn_inner .g_btn .arrow:before {
  left: 3px;
  width: 20px;
  height: 1px;
  background: #8c6c15;
}

.g_btn_inner .g_btn .arrow:after {
  left: 16px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #8c6c15;
  border-right: 1px solid #8c6c15;
  transform: rotate(45deg);
}

/*
Header
----------------------------------------------------------- */
header, nav {
  background-color: #f2f1f0;
}

header .logo,
footer .logo {
  display: flex;
  padding-right: 15px;
  flex-direction: column;
}

header .logo p:first-child,
footer .logo p:first-child {
  min-height: 0%;
}

header .h1_b,
footer .h1_b {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0;
  margin-top: 5px;
}

header .container,
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 15px;
}

header .contact,
footer .contact {
  display: flex;
  align-items: center;
  text-align: right;
}

header .contact i,
footer .contact i {
  font-size: 24px;
}

header .contact .calendar a, header .contact .mail a,
footer .contact .calendar a,
footer .contact .mail a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

header .contact .calendar a:link, header .contact .calendar a:visited, header .contact .mail a:link, header .contact .mail a:visited,
footer .contact .calendar a:link,
footer .contact .calendar a:visited,
footer .contact .mail a:link,
footer .contact .mail a:visited {
  color: #8c6c15;
  font-size: 16px;
}

header .contact .calendar a:link .sub, header .contact .calendar a:visited .sub, header .contact .mail a:link .sub, header .contact .mail a:visited .sub,
footer .contact .calendar a:link .sub,
footer .contact .calendar a:visited .sub,
footer .contact .mail a:link .sub,
footer .contact .mail a:visited .sub {
  font-size: 12px;
}

header .contact .calendar,
footer .contact .calendar {
  margin-right: 40px;
}

header .date,
footer .date {
  font-size: 11px;
  font-weight: bold;
  margin-top: 5px;
}

header .contact_form,
footer .contact_form {
  margin-right: 18px;
}

header .tel,
footer .tel {
  padding-right: 18px;
  line-height: 1.1;
}

header .contact_tel,
footer .contact_tel {
  font-size: 3.2rem;
}

header .h_tel {
  color: #8c6c15;
  line-height: 1;
}

header .h_tel .tel_no {
  font-size: 30px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 10px;
}

header .h_tel .tel_no i {
  margin-right: 5px;
  color: #159868;
}

header .h_tel .time {
  font-size: 14px;
  font-weight: bold;
}

header .hrr p a {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .hrr i {
  margin-left: 5px;
}

header .info_btn_inner .info_btn {
  color: #fff;
  background-color: #159868;
  font-size: 16px;
  width: 220px;
  height: 80px;
  line-height: 80px;
  color: #fff;
  display: block;
  position: relative;
  text-align: center;
  font-weight: 700;
  transition-property: background-color,color,text-indent;
  transition-duration: .4s;
  transition-timing-function: ease;
  z-index: 1;
  text-decoration: none;
}

header .info_btn_inner .info_btn:link, header .info_btn_inner .info_btn:visited {
  color: #FFF;
}

header .info_btn_inner .info_btn:hover {
  background-color: #fff;
  color: #4c4c4c;
}

header .info_btn_inner .info_btn .info_btn_item {
  background-color: #159868;
}

header .info_btn_inner .info_btn:before, header .info_btn_inner .info_btn:after {
  display: none;
}

header .info_btn_inner .info_btn:hover {
  color: #159868;
  text-indent: 0;
}

header .info_btn_inner .info_btn:hover:visited {
  color: #159868;
}

header .info_btn_inner .info_btn:hover .info_btn_item {
  background-color: #159868;
}

/*
Navi
----------------------------------------------------------- */
nav {
  padding-left: 0;
  padding-right: 0;
  position: static;
  top: -30px;
  transition: all 0.3s ease 0s;
}

nav.sp_menu {
  display: none;
}

nav .en {
  font-family: 'Sorts Mill Goudy', serif;
  font-size: 14px;
}

@media (min-width: 960px) {
  nav .container {
    width: 900px;
  }
}

nav ul {
  display: flex;
  justify-content: space-between;
}

nav li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1em;
}

nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #8c6c15;
  text-align: center;
  white-space: nowrap;
  line-height: 1.5;
  text-decoration: none;
}

nav li a:hover {
  color: #8c6c15;
  text-decoration: none;
  color: #8c6c15;
  text-decoration: none;
  background-color: #f3e6c5;
  opacity: 1;
}

nav li a p {
  -ms-word-break: break-all;
  word-break: break-all;
}

nav a:link, nav a:visited {
  color: #8c6c15;
  font-size: 12px;
  padding: 10px;
}

nav.m_fixed {
  left: 0;
  position: fixed;
  top: 0;
  z-index: 999;
  margin: 0 auto;
  right: 0;
  width: 100%;
}

nav.m_fixed .container {
  width: 1000px;
  display: flex;
  justify-content: space-between;
}

nav.m_fixed .contact {
  display: flex;
  align-items: center;
  text-align: center;
}

nav.m_fixed .contact i {
  font-size: 24px;
}

nav.m_fixed .contact a {
  display: block;
  height: 100%;
  text-decoration: none;
}

nav.m_fixed .contact a:hover {
  background-color: #f3e6c5;
  opacity: 1;
}

nav .contact {
  display: none;
}

/*-------top-------*/
.topcontent .mv {
  padding-top: 40px;
  padding-bottom: 0;
  background-color: #f2f1f0;
  height: 528px;
  position: relative;
}

.topcontent .mv .container.mv_conta {
  right: calc(50% + -425px);
  background-color: #f2ece6;
  width: 100%;
  padding-right: 150px;
  border-radius: 0 30px 30px 0;
}

.topcontent .mv .container.mv_conta .txt {
  position: absolute;
  z-index: 1;
  right: -170px;
  top: 130px;
}

.topcontent .mv .container.mv_conta .bg img {
  margin-left: auto;
}

.topcontent .mv .mv_b_txt {
  font-size: 12px;
  margin-top: 25px;
}

.topcontent .mv .scl {
  position: absolute;
  right: 0;
  bottom: 65px;
  font-size: 12px;
  transform: rotate(90deg);
}

.topcontent .mv .scl a {
  text-decoration: none;
  color: #8c6c15;
}

.topcontent .mv .arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
  right: 0;
  top: -1px;
  bottom: 0;
}

.topcontent .mv .arrow:before, .topcontent .mv .arrow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.topcontent .mv .arrow:before {
  left: 3px;
  width: 20px;
  height: 1px;
  background: #8c6c15;
}

.topcontent .mv .arrow:after {
  left: 16px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #8c6c15;
  border-right: 1px solid #8c6c15;
  transform: rotate(45deg);
}

.topcontent .top_txt {
  padding-top: 190px;
}

.topcontent .box .img_link {
  background-color: #fff;
  max-width: 380px;
}

.topcontent .box a {
  display: block;
  width: 100%;
  height: 100%;
}

.topcontent .box img {
  max-width: 100%;
}

.topcontent .box .w_label {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.topcontent .box .w_label p {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  background-color: #159868;
  color: #FFF;
  margin-right: 10px;
}

.topcontent .box .w_label p:last-child {
  background-color: #8c6c15;
}

.topcontent .box .txt {
  font-weight: bold;
  margin-top: 15px;
}

/*-------NEWS-------*/
.news {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (min-width: 990px) {
  .news .inner {
    width: 960px;
    margin: 0 auto;
  }
}

.news h2 {
  display: flex;
  align-items: baseline;
}

.news h2 .h2_sub {
  margin-left: 30px;
}

.news h2 .h2_en {
  font-size: 36px;
}

.news ul li {
  color: #4c4c4c;
  padding: 10px 0;
}

.news ul li a {
  color: #4c4c4c;
}

.news ul li .post_date {
  font-size: 16px;
  width: 120px;
}

.news ul li .tit {
  font-size: inherit;
  font-weight: normal;
  padding-top: 0;
  text-align: left;
  padding-bottom: 0;
  line-height: inherit;
  font-size: 16px;
  width: calc(100% - 140px);
}

.news ul li .tit a {
  color: #4c4c4c;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.news ul li .tit a:hover {
  opacity: .8;
}

.news .g_btn_inner {
  margin: 15px 0 0;
  width: 255px;
}

.news .g_btn_inner .g_btn {
  font-size: 14px;
  padding: 10px 30px;
}

.news .g_btn_inner .g_btn .arrow {
  right: 25px;
}

.news ul li .articles_index {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.topcontent .news .tit:before {
  display: none;
}

.news .tit a:hover::after {
  transform: scale(1, 1);
}

/*info_btn*/
.info_btn {
  color: #fff;
  background-color: #4c4c4c;
  font-size: 16px;
  width: 204px;
  height: 58px;
  line-height: 58px;
  color: #fff;
  display: block;
  position: relative;
  text-align: center;
  font-weight: 700;
  transition-property: background-color,color,text-indent;
  transition-duration: .4s;
  transition-timing-function: ease;
  z-index: 1;
  text-decoration: none;
}

.info_btn:link, .info_btn:visited {
  color: #FFF;
}

.info_btn:hover {
  background-color: #fff;
  color: #4c4c4c;
}

.info_btn:hover {
  background-color: transparent;
  color: #4c4c4c;
}

.info_btn:hover::before {
  background-color: #4c4c4c;
  right: 5px;
}

.info_btn:hover .info_btn_arrow {
  right: -30px;
}

.info_btn:hover::after {
  right: -29px;
}

.info_btn_item {
  display: block;
  background-color: #4c4c4c;
  position: absolute;
  transition-property: transform;
  transition-timing-function: linear;
  transition-duration: .1s;
  z-index: -1;
}

.info_btn_item.item01 {
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition-delay: .2s;
}

.info_btn_item.item02 {
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition-delay: .12s;
}

.info_btn_item.item03 {
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition-delay: .22s;
}

.info_btn_item.item04 {
  width: 2px;
  height: 100%;
  top: 0;
  right: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition-delay: .32s;
}

.info_btn:hover .info_btn_item.item01 {
  transform: scaleX(1);
}

.info_btn:hover .info_btn_item.item02 {
  transform: scaleY(1);
}

.info_btn:hover .info_btn_item.item03 {
  transform: scaleX(1);
}

.info_btn:hover .info_btn_item.item04 {
  transform: scaleY(1);
}

/*-------pagination-------*/
.pagination {
  text-align: center;
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  margin-top: 60px;
  margin-right: 12px;
  background-color: #f2f1f0;
  font-weight: bold;
  font-size: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #8c6c15;
}

.pagination a:hover, .pagination .page-numbers.current {
  background-color: #8c6c15;
  color: #FFF;
  text-decoration: none;
  opacity: 1;
}

/*-------about-------*/
.about {
  position: relative;
}

.about .container {
  position: relative;
}

.about .white_box {
  border-radius: 30px;
  width: 702px;
  line-height: 2.2;
  padding: 60px;
  margin-bottom: 0;
}

.about .white_box h2 {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.about .white_box h2 .h2_sub {
  margin-bottom: 0;
}

.about .white_box .h2_line {
  padding-bottom: 30px;
}

.about .white_box .h2_line p {
  margin: 0;
}

.about .about_img {
  position: absolute;
  top: -60px;
  left: calc(50% + 60px);
}

.about .about_img img {
  max-width: initial;
}

/*-------room-------*/
.room h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.room h2 .h2_sub {
  margin-bottom: 0;
}

.room .h2_line {
  padding-bottom: 70px;
}

.room .box_slider_inner {
  max-width: 3040px;
  position: relative;
  margin: 0 auto;
}

.room .box_slider_inner .slick-arrow {
  z-index: 20;
  position: absolute;
  top: calc(100% - 50% - 35px);
  width: 60px;
  height: 60px;
  display: block;
}

.room .box_slider_inner .prev-arrow {
  left: calc(50% - 540px);
  background: url(../../img/ar_prev.png);
  background-position: top center;
}

.room .box_slider_inner .prev-arrow:hover {
  cursor: pointer;
  background-position: bottom center;
}

.room .box_slider_inner .next-arrow {
  right: calc(50% - 540px);
  background: url(../../img/ar_next.png);
  background-position: top center;
}

.room .box_slider_inner .next-arrow:hover {
  cursor: pointer;
  background-position: bottom center;
}

.room .box_slider_inner .box_slider li {
  margin: 0 15px;
}

.room .slick-slider {
  margin-bottom: 0;
}

.room .slick-dots {
  position: relative;
  bottom: -20px;
}

.room .slick-dots li {
  width: 10px;
  margin: 0 10px !important;
}

.room .slick-dots li button {
  border: solid #8c6c15 1px;
  border-radius: 50px;
  width: 10px;
  height: 10px;
}

.room .slick-dots li button:before {
  color: transparent;
}

.room .slick-dots li.slick-active button {
  background-color: #8c6c15;
  border: solid #8c6c15 1px;
}

.room .slick-dots li button:before {
  font-family: slick;
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  content: '';
  text-align: center;
  opacity: 1;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.room .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #8c6c15;
}

.room .g_btn_inner {
  margin: 70px auto 0;
}

/*-------cta-------*/
.cta {
  background: url(../../img/top/cta_bg.jpg) no-repeat center;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 70px;
}

.cta .white_box {
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 75px;
}

@media (min-width: 1200px) {
  .cta .white_box {
    width: 960px;
    margin: 0 auto;
  }
}

.cta .white_box .h2_line {
  padding-bottom: 40px;
}

.cta .white_box h2 {
  padding-bottom: 20px;
}

.cta .white_box::before {
  content: "";
  border: solid 1px #8c6c15;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  position: absolute;
  left: 15px;
  top: 15px;
}

.cta .g_btn_inner02 {
  text-align: center;
  border-radius: 50px;
  overflow: hidden;
  width: 420px;
  margin: 40px auto 0;
  border: 1px solid #159868;
}

.cta .g_btn_inner02 .g_btn {
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  background: #159868;
  padding: 15px 30px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  transition: .3s;
  text-decoration: none;
  display: block;
}

.cta .g_btn_inner02 .g_btn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #FFF;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
  border-radius: 50px;
}

.cta .g_btn_inner02 .g_btn:hover {
  color: #159868;
}

.cta .g_btn_inner02 .g_btn:hover .arrow:before {
  background: #159868;
}

.cta .g_btn_inner02 .g_btn:hover .arrow:after {
  border-top: 1px solid #159868;
  border-right: 1px solid #159868;
}

.cta .g_btn_inner02 .g_btn:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
  background-color: #FFF;
  color: #159868;
}

.cta .g_btn_inner02 .g_btn .arrow {
  position: absolute;
  display: inline-block;
  padding: 0 0 0 16px;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
  right: 50px;
  top: -1px;
  bottom: 0;
}

.cta .g_btn_inner02 .g_btn .arrow:before, .cta .g_btn_inner02 .g_btn .arrow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.cta .g_btn_inner02 .g_btn .arrow:before {
  left: 3px;
  width: 20px;
  height: 1px;
  background: #FFF;
}

.cta .g_btn_inner02 .g_btn .arrow:after {
  left: 16px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
}

.g_btn_inner02 {
  text-align: center;
  border-radius: 50px;
  overflow: hidden;
  width: 420px;
  margin: 40px auto 0;
  border: 1px solid #159868;
}

.g_btn_inner02 .g_btn {
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  background: #159868;
  padding: 15px 30px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  transition: .3s;
  text-decoration: none;
  display: block;
}

.g_btn_inner02 .g_btn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #FFF;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
  border-radius: 50px;
}

.g_btn_inner02 .g_btn:hover {
  color: #159868;
}

.g_btn_inner02 .g_btn:hover .arrow:before {
  background: #159868;
}

.g_btn_inner02 .g_btn:hover .arrow:after {
  border-top: 1px solid #159868;
  border-right: 1px solid #159868;
}

.g_btn_inner02 .g_btn:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
  background-color: #FFF;
  color: #159868;
}

.g_btn_inner02 .g_btn .arrow {
  position: absolute;
  display: inline-block;
  padding: 0 0 0 16px;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
  right: 50px;
  top: -1px;
  bottom: 0;
}

.g_btn_inner02 .g_btn .arrow:before, .g_btn_inner02 .g_btn .arrow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.g_btn_inner02 .g_btn .arrow:before {
  left: 3px;
  width: 20px;
  height: 1px;
  background: #FFF;
}

.g_btn_inner02 .g_btn .arrow:after {
  left: 16px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
}

/*-------voice-------*/
.voice h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voice h2 .h2_sub {
  margin-bottom: 0;
}

.voice .h2_line {
  padding-bottom: 70px;
}

.voice .box {
  background-color: #f2f1f0;
  border-radius: 30px;
  padding: 40px;
  height: 100%;
  position: relative;
}

.voice .box .txt {
  font-size: 12px;
  position: absolute;
  transform: rotate(90deg);
  margin-top: 0;
  right: 0;
}

.voice .box .txt span {
  font-size: 20px;
}

.voice .box .tit {
  text-align: center;
  margin: 25px 0 20px;
}

.voice .box .tit .label {
  background-color: #8c6c15;
  color: #FFF;
  font-size: 12px;
  padding: 5px;
  margin-left: 10px;
}

/*-------plan-------*/
.plan h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan h2 .h2_sub {
  margin-bottom: 0;
}

.plan .h2_line {
  padding-bottom: 45px;
}

.plan .g_btn_inner {
  margin-bottom: 100px;
}

/*-------access-------*/
.access h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.access h2 .h2_sub {
  margin-bottom: 0;
}

.access .h2_line {
  padding-bottom: 70px;
}

.access .table ul {
  display: flex;
  flex-wrap: wrap;
}

.access .table ul:nth-child(odd) {
  background-color: #f2f1f0;
}

.access .table ul li {
  padding: 20px;
  display: flex;
}

.access .table ul .table_head {
  color: #8c6c15;
  font-weight: bold;
  width: 130px;
  align-items: baseline;
  padding: 20px 30px;
}

.access .table ul .table_body {
  width: calc(100% - 130px);
  border-top: 0;
  color: #4c4c4c;
}

.access .map iframe {
  height: 530px;
}

/*-------works-------*/
.works {
  position: relative;
}

.works .bg_wrap {
  padding: 50px 0 0 0;
}

.works .bg_wrap .bg_inner {
  background: url(../../img/top/pc_work_bg.jpg) repeat-y 50% 0;
  background-size: cover;
  width: 100%;
  animation: bgroop 30s linear infinite;
  height: 1000px;
}

.works .bg_wrap .bg_inner .bg_inner_over {
  height: 700px;
}

.works .bg_wrap .bg_inner .container {
  z-index: 100;
}

@keyframes bgroop {
  from {
    background-position: 0 540px;
  }
  to {
    background-position: 0 -540px;
  }
}

.works .box .img_link {
  background-color: #fff;
  max-width: 380px;
}

.works .box a {
  display: block;
  width: 100%;
  height: 100%;
}

.works .box img {
  max-width: 100%;
}

.works .box .w_label {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.works .box .w_label p {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  background-color: #159868;
  color: #FFF;
  margin-right: 10px;
}

.works .box .w_label p:last-child {
  background-color: #8c6c15;
}

.works .box .txt {
  font-weight: bold;
  margin-top: 15px;
}

.works .info_btn_inner {
  margin-top: 80px;
}

.works .info_btn_inner .info_btn {
  color: #fff;
  background-color: #4c4c4c;
  font-size: 20px;
  width: 360px;
  height: 80px;
  line-height: 80px;
  color: #fff;
  display: block;
  position: relative;
  text-align: center;
  font-weight: 700;
  transition-property: background-color,color,text-indent;
  transition-duration: .4s;
  transition-timing-function: ease;
  z-index: 1;
  text-decoration: none;
}

.works .info_btn_inner .info_btn:link, .works .info_btn_inner .info_btn:visited {
  color: #FFF;
}

.works .info_btn_inner .info_btn:hover {
  background-color: #fff;
  color: #4c4c4c;
}

/*-------contact_bottom-------*/
.contact_bottom .font_m, .contact_form .font_m {
  font-size: 24px;
  line-height: 1.8;
}

.contact_bottom .info_btn_inner .info_btn, .contact_form .info_btn_inner .info_btn {
  color: #fff;
  background-color: #159868;
  font-size: 24px;
  width: 100%;
  height: 100px;
  line-height: 100px;
  color: #fff;
  display: block;
  position: relative;
  text-align: center;
  font-weight: 700;
  transition-property: background-color,color,text-indent;
  transition-duration: .4s;
  transition-timing-function: ease;
  z-index: 1;
  text-decoration: none;
}

.contact_bottom .info_btn_inner .info_btn:link, .contact_bottom .info_btn_inner .info_btn:visited, .contact_form .info_btn_inner .info_btn:link, .contact_form .info_btn_inner .info_btn:visited {
  color: #FFF;
}

.contact_bottom .info_btn_inner .info_btn:hover, .contact_form .info_btn_inner .info_btn:hover {
  background-color: #fff;
  color: #4c4c4c;
}

.contact_bottom .info_btn_inner .info_btn .info_btn_item, .contact_form .info_btn_inner .info_btn .info_btn_item {
  background-color: #159868;
}

.contact_bottom .info_btn_inner .info_btn:before, .contact_bottom .info_btn_inner .info_btn:after, .contact_form .info_btn_inner .info_btn:before, .contact_form .info_btn_inner .info_btn:after {
  display: none;
}

.contact_bottom .info_btn_inner .info_btn:hover, .contact_form .info_btn_inner .info_btn:hover {
  color: #159868;
  text-indent: 0;
}

.contact_bottom .info_btn_inner .info_btn:hover .info_btn_item, .contact_form .info_btn_inner .info_btn:hover .info_btn_item {
  background-color: #159868;
}

@media (min-width: 1230px) {
  .contact_bottom .info_btn_inner, .contact_form .info_btn_inner {
    width: 600px;
    margin: 0 auto;
  }
}

.contact_bottom .tel_inner, .contact_form .tel_inner {
  background-color: #FFF;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
}

.contact_bottom .tel_inner .tel_no, .contact_form .tel_inner .tel_no {
  font-size: 40px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 10px;
}

.contact_bottom .tel_inner .tel_no i, .contact_form .tel_inner .tel_no i {
  color: #159868;
  margin-right: 5px;
}

.contact_bottom .tel_inner .time, .contact_form .tel_inner .time {
  font-size: 20px;
  font-weight: bold;
}

.contact_bottom {
  padding: 90px 0;
}

.contact_bottom .info_btn_inner {
  width: auto;
}

/*-------footer-------*/
footer {
  padding-top: 90px;
}

footer .add {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 2;
  width: 100%;
}

footer .add p {
  margin-right: 40px;
}

footer .add p:last-child {
  margin-right: 0;
}

footer .f_item .inner {
  display: flex;
  color: #4c4c4c;
  margin-bottom: 15px;
}

footer .f_item .inner span:first-child {
  margin-right: 15px;
}

footer .f_item .inner i {
  color: #8c6c15;
}

footer .f_item .sns {
  color: #8c6c15;
  margin-top: 40px;
  margin-bottom: 0;
}

footer .f_item .sns ul {
  display: flex;
}

footer .f_item .sns ul i {
  font-size: 30px;
}

footer .f_item .sns ul li {
  margin-right: 20px;
}

footer .f_item .sns ul .fa-facebook-square {
  color: #3c5998;
}

footer .f_item .sns ul .fa-instagram {
  color: #262626;
}

footer .f_item .sns ul .fa-twitter {
  color: #1ea1f2;
}

footer .l_item {
  line-height: 2.8;
}

footer .l_item p {
  color: #4c4c4c;
}

footer .l_item p a {
  font-weight: normal;
}

footer .l_item p:hover:before {
  position: relative;
  left: 3px;
  transition: all .3s;
}

footer .l_item p::before {
  position: relative;
  content: "\f054";
  color: #8c6c15;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin-right: 10px;
  left: 0;
  transition: all .3s;
}

footer .l_item .sub p {
  text-indent: .8em;
}

footer .l_item .sub p::before {
  content: "-";
}

footer .tb_menu {
  display: flex;
  flex-basis: 50%;
  max-width: 50%;
}

footer .tb_menu li {
  flex-basis: 100%;
  max-width: 100%;
}

footer a:link,
footer a:visited {
  color: inherit;
  transition: all .3s;
  text-decoration: none;
}

footer .footer_nav {
  margin-top: 10px;
  margin-bottom: 45px;
  width: 100%;
}

footer .copy {
  background-color: #f2f1f0;
  color: #8c6c15;
  text-align: center;
  font-size: 14px;
}

footer .copy .container {
  justify-content: center;
}

/*
contact_form
----------------------------------------------------------- */
.contact_form .tel_inner {
  margin-bottom: 30px;
}

form > ul > li {
  padding: 30px 0;
}

form > ul > li.bb_none {
  border-bottom: none;
}

form > ul > li:nth-child(odd) {
  background-color: #f2f1f0;
}

form > ul > li .fx-row > *:first-child {
  padding-top: 12px;
}

.form_head {
  text-align: right;
}

.form_head span {
  display: inline-block;
  font-weight: bold;
  margin-left: 10px;
}

.haveto {
  background-color: #b20000;
  color: #fff;
  padding: 5px 5px;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
}

.any {
  background-color: #4c4c4c;
  color: #fff;
  padding: 5px 8px;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
}

.input_adjust {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.input_2col {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
  width: 100%;
}

.input_2col input {
  width: calc(50% - 15px);
}

.input_1col {
  padding-right: 30px;
}

.input_1col input {
  width: 100%;
}

.input_zip_2col input {
  width: 30%;
}

.input_pref {
  width: 50%;
}

.input_select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  padding: 12px 16px;
}

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

.input_select {
  position: relative;
  border-radius: 2px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #ffffff;
}

.input_select::before {
  position: absolute;
  top: calc(50% - 3px);
  right: 1em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #8c6c15;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .fx-col-16-s {
    flex-basis: 16%;
    max-width: 16%;
    padding-top: 12px;
  }
  .fx-col-54-s {
    flex-basis: 54%;
    max-width: 54%;
  }
}

.input_tel_3col input {
  width: 30%;
}

.input_tel_3col input:first-child {
  width: 20%;
}

.radio_2col {
  display: flex;
}

.radio_2col label {
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.radio_2col label:first-child {
  padding-right: 30px;
}

.radio_2col span {
  padding-left: 10px;
}

.radio_1col > label {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.radio_1col span {
  padding-left: 10px;
}

.date_2col {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
}

.date_2col > * {
  display: block;
  width: calc(50% - 15px);
}

.input_date {
  position: relative;
}

.input_date:before {
  position: absolute;
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  right: 15px;
}

input[type="date"] {
  position: relative;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type="date"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button {
  -webkit-appearance: none;
}

.check_1col > label {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.check_1col span {
  padding-left: 10px;
}

.select_1col {
  padding-right: 30px;
}

.textarea {
  padding-right: 30px;
}

.textarea textarea {
  width: 100%;
  height: 250px;
  line-height: 1.5;
}

.check_agree input {
  height: 20px;
  width: 20px;
}

.check_agree span {
  padding-top: 5px;
}

.sbm_wrap {
  padding: 30px 15px 0;
}

.sbm {
  position: relative;
  width: 80%;
  margin: 0 auto;
  border-radius: 40px;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  padding: 15px;
  background: #45ba55;
  color: #ffffff;
  line-height: 1em;
  transition: .3s;
  border: 2px solid #45ba55;
}

.sbm:before {
  position: absolute;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 1.2em;
  top: calc(50% - 0.5em);
  right: 15px;
  color: #fff;
}

.sbm_btn {
  border: 0;
  background-color: transparent;
}

.sbm_btn:focus {
  outline: none;
}

.sbm:hover {
  color: #45ba55;
  background: #ffffff;
}

.sbm:hover:before {
  color: #45ba55;
}

/*パンくず*/
#breadcrumb {
  color: #8c6c15;
  font-weight: bold;
  padding: 70px 0 10px;
  background-color: #f2f1f0;
  font-size: 14px;
}

#breadcrumb .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#breadcrumb a {
  color: #8c6c15;
  text-decoration: none;
}

#breadcrumb i {
  font-size: 10px;
  margin: 0 8px;
}

body.page,
body.archive,
body.single,
body.error404 {
  /*Q&A*/
}

body.page h1, body.page h2, body.page h3,
body.archive h1,
body.archive h2,
body.archive h3,
body.single h1,
body.single h2,
body.single h3,
body.error404 h1,
body.error404 h2,
body.error404 h3 {
  letter-spacing: 0.08em;
  line-height: 1.68;
}

body.page section,
body.archive section,
body.single section,
body.error404 section {
  padding-top: 110px;
  padding-bottom: 150px;
}

body.page section.pt0,
body.archive section.pt0,
body.single section.pt0,
body.error404 section.pt0 {
  padding-top: 0;
}

body.page section.pb0,
body.archive section.pb0,
body.single section.pb0,
body.error404 section.pb0 {
  padding-bottom: 0;
}

body.page .mv,
body.archive .mv,
body.single .mv,
body.error404 .mv {
  height: auto;
  padding: 0;
  background-color: #f2f1f0;
}

body.page .mv .mv_txt,
body.archive .mv .mv_txt,
body.single .mv .mv_txt,
body.error404 .mv .mv_txt {
  margin-top: 0;
  text-align: left;
  top: 0;
  padding: 150px 0;
  position: relative;
}

body.page .mv .mv_txt .u_line:after,
body.archive .mv .mv_txt .u_line:after,
body.single .mv .mv_txt .u_line:after,
body.error404 .mv .mv_txt .u_line:after {
  background-color: #FFF;
}

body.page .mv .mv_txt .txt01,
body.archive .mv .mv_txt .txt01,
body.single .mv .mv_txt .txt01,
body.error404 .mv .mv_txt .txt01 {
  font-size: 64px;
  margin: 0;
  margin-bottom: 0;
}

body.page .mv .mv_txt .txt02,
body.archive .mv .mv_txt .txt02,
body.single .mv .mv_txt .txt02,
body.error404 .mv .mv_txt .txt02 {
  font-size: 28px;
}

body.page .mv .container.mv_conta,
body.archive .mv .container.mv_conta,
body.single .mv .container.mv_conta,
body.error404 .mv .container.mv_conta {
  right: calc(50% + -425px);
  background-color: #FFF;
  width: 100%;
  padding-right: 150px;
  border-radius: 0 30px 30px 0;
}

body.page main article h1,
body.archive main article h1,
body.single main article h1,
body.error404 main article h1 {
  margin-bottom: 30px;
}

body.page .h2_line,
body.archive .h2_line,
body.single .h2_line,
body.error404 .h2_line {
  padding-bottom: 60px;
}

body.page h2,
body.archive h2,
body.single h2,
body.error404 h2 {
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 44px;
}

body.page h2 .h2_sub,
body.archive h2 .h2_sub,
body.single h2 .h2_sub,
body.error404 h2 .h2_sub {
  margin-bottom: 0;
}

body.page h2 .font_s,
body.archive h2 .font_s,
body.single h2 .font_s,
body.error404 h2 .font_s {
  font-size: 32px;
}

body.page h2 .h2_bg,
body.archive h2 .h2_bg,
body.single h2 .h2_bg,
body.error404 h2 .h2_bg {
  background-color: #4c4c4c;
  color: #FFF;
  padding: 7px 10px;
}

body.page h2.h2_line .h2,
body.archive h2.h2_line .h2,
body.single h2.h2_line .h2,
body.error404 h2.h2_line .h2 {
  font-size: 44px;
  height: 2em;
}

body.page h2.h2_line .h2_sub,
body.archive h2.h2_line .h2_sub,
body.single h2.h2_line .h2_sub,
body.error404 h2.h2_line .h2_sub {
  margin-top: 15px;
  font-size: 32px;
}

body.page h2.cl_white .h2,
body.archive h2.cl_white .h2,
body.single h2.cl_white .h2,
body.error404 h2.cl_white .h2 {
  color: #FFF;
}

body.page h2.cl_white .h2.u_line:after,
body.archive h2.cl_white .h2.u_line:after,
body.single h2.cl_white .h2.u_line:after,
body.error404 h2.cl_white .h2.u_line:after {
  background-color: #FFF;
}

body.page .page-postlist .articles_index h2,
body.archive .page-postlist .articles_index h2,
body.single .page-postlist .articles_index h2,
body.error404 .page-postlist .articles_index h2 {
  text-align: left;
  border-bottom: none;
}

body.page .page-postlist .articles_index h2 a,
body.archive .page-postlist .articles_index h2 a,
body.single .page-postlist .articles_index h2 a,
body.error404 .page-postlist .articles_index h2 a {
  padding-bottom: 10px;
}

body.page .white_box,
body.archive .white_box,
body.single .white_box,
body.error404 .white_box {
  padding: 60px;
}

body.page .tit,
body.archive .tit,
body.single .tit,
body.error404 .tit {
  font-size: 32px;
  border-bottom: 4px solid #8c6c15;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-weight: bold;
  line-height: 1.5;
}

body.page .brett_wrap,
body.archive .brett_wrap,
body.single .brett_wrap,
body.error404 .brett_wrap {
  position: relative;
  padding: 60px;
}

body.page .brett_wrap h2,
body.archive .brett_wrap h2,
body.single .brett_wrap h2,
body.error404 .brett_wrap h2 {
  background-color: #22254f;
  color: #FFF;
  font-size: 44px;
  font-weight: bold;
  display: inline-block;
  padding: 10px;
  line-height: 1em;
}

body.page .brett_wrap .brett,
body.archive .brett_wrap .brett,
body.single .brett_wrap .brett,
body.error404 .brett_wrap .brett {
  margin-top: 50px;
}

body.page .brett_wrap ul li,
body.archive .brett_wrap ul li,
body.single .brett_wrap ul li,
body.error404 .brett_wrap ul li {
  padding-bottom: 30px;
  letter-spacing: -.04em;
  padding: 0;
  text-indent: 0;
  margin: 0;
  font-size: 24px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  border-bottom: solid 4px #eee;
  display: flex;
  align-items: center;
}

body.page .brett_wrap ul li i,
body.archive .brett_wrap ul li i,
body.single .brett_wrap ul li i,
body.error404 .brett_wrap ul li i {
  color: #8c6c15;
  margin-right: 10px;
}

body.page .brett_wrap .brett_img,
body.archive .brett_wrap .brett_img,
body.single .brett_wrap .brett_img,
body.error404 .brett_wrap .brett_img {
  position: absolute;
  right: 70px;
  bottom: 75px;
}

@media (max-width: 1080px) {
  body.page .brett_wrap .brett_img,
  body.archive .brett_wrap .brett_img,
  body.single .brett_wrap .brett_img,
  body.error404 .brett_wrap .brett_img {
    position: relative;
    right: auto;
    bottom: 0;
  }
  body.page .brett_wrap .brett_img img,
  body.archive .brett_wrap .brett_img img,
  body.single .brett_wrap .brett_img img,
  body.error404 .brett_wrap .brett_img img {
    margin: 0 auto;
  }
}

body.page .qa h2,
body.archive .qa h2,
body.single .qa h2,
body.error404 .qa h2 {
  margin-bottom: 60px;
  text-align: center;
}

body.page dl.accordion dt,
body.archive dl.accordion dt,
body.single dl.accordion dt,
body.error404 dl.accordion dt {
  cursor: pointer;
  position: relative;
}

body.page dl.accordion dt:after,
body.archive dl.accordion dt:after,
body.single dl.accordion dt:after,
body.error404 dl.accordion dt:after {
  content: "\f0e0";
  font-family: Font Awesome\ 5 Free;
  content: "\f054";
  position: absolute;
  display: block;
  transition: .25s all ease;
  right: 15px;
  top: 0;
  bottom: 0;
  background-color: #159868;
  color: #FFF;
  margin: auto;
  transform: rotate(90deg);
  height: 37px;
  text-align: center;
  line-height: 37px;
  width: 37px;
}

body.page dl.accordion dt.open:after,
body.archive dl.accordion dt.open:after,
body.single dl.accordion dt.open:after,
body.error404 dl.accordion dt.open:after {
  transform: rotate(-90deg);
}

body.page dl.accordion dd,
body.archive dl.accordion dd,
body.single dl.accordion dd,
body.error404 dl.accordion dd {
  background: #FFF;
  padding: 20px 10px 0 30px;
  display: none;
}

body.page .accordion,
body.archive .accordion,
body.single .accordion,
body.error404 .accordion {
  margin-bottom: 50px;
}

body.page .accordion dt,
body.archive .accordion dt,
body.single .accordion dt,
body.error404 .accordion dt {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 10px 10px 30px;
  border-bottom: 4px solid #8c6c15;
}

body.page .accordion dd,
body.archive .accordion dd,
body.single .accordion dd,
body.error404 .accordion dd {
  font-weight: normal !important;
  font-size: 16px;
  font-weight: bold;
  background: #fff;
  padding: 10px;
}

body.page .accordion dd .font_s,
body.archive .accordion dd .font_s,
body.single .accordion dd .font_s,
body.error404 .accordion dd .font_s {
  font-size: 14px;
}

body.page .payment,
body.archive .payment,
body.single .payment,
body.error404 .payment {
  padding-top: 80px;
  padding-bottom: 80px;
}

body.page .payment .white_box,
body.archive .payment .white_box,
body.single .payment .white_box,
body.error404 .payment .white_box {
  background-color: #f2f1f0;
  border-radius: 30px;
  padding: 60px;
}

@media (min-width: 1200px) {
  body.page .payment .white_box,
  body.archive .payment .white_box,
  body.single .payment .white_box,
  body.error404 .payment .white_box {
    width: 960px;
    margin: 0 auto;
  }
  body.page .payment .white_box .fx-col-70-s,
  body.archive .payment .white_box .fx-col-70-s,
  body.single .payment .white_box .fx-col-70-s,
  body.error404 .payment .white_box .fx-col-70-s {
    flex-basis: 66%;
    max-width: 66%;
  }
  body.page .payment .white_box .fx-col-30-s,
  body.archive .payment .white_box .fx-col-30-s,
  body.single .payment .white_box .fx-col-30-s,
  body.error404 .payment .white_box .fx-col-30-s {
    flex-basis: 34%;
    max-width: 34%;
  }
}

body.page .payment .white_box h2,
body.archive .payment .white_box h2,
body.single .payment .white_box h2,
body.error404 .payment .white_box h2 {
  text-align: left;
  align-items: flex-start;
  margin-bottom: 0;
}

body.page .payment .white_box .h2_line,
body.archive .payment .white_box .h2_line,
body.single .payment .white_box .h2_line,
body.error404 .payment .white_box .h2_line {
  padding-bottom: 30px;
}

body.page .payment .white_box .h2_line p,
body.archive .payment .white_box .h2_line p,
body.single .payment .white_box .h2_line p,
body.error404 .payment .white_box .h2_line p {
  margin: 0;
}

/*-------個別ページ記載順-------*/
/*-------
-プラン・料金
-ジュニアクラス
-シミュレーションルーム一覧
-Q＆A
-インストラクター紹介
-初めての方へ（ご利用方法）

-404
-サンクスページ
-サイトマップ
-プライバシーポリシー
-会社情報


-------*/
#post-plan .mv .bg, .plan_contents .mv .bg {
  background: url(../../img/plan_mv.jpg) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

#post-plan .mv .bg .container, .plan_contents .mv .bg .container {
  position: relative;
  margin-right: 0;
}

#post-plan main, .plan_contents main {
  font-size: 20px;
}

#post-plan main .fx-row, .plan_contents main .fx-row {
  align-items: flex-start;
}

#post-plan .sec01 .fx-row, #post-plan .sec02 .fx-row, .plan_contents .sec01 .fx-row, .plan_contents .sec02 .fx-row {
  margin-top: -30px;
}

#post-plan .sec01 .f_item, #post-plan .sec02 .f_item, .plan_contents .sec01 .f_item, .plan_contents .sec02 .f_item {
  margin-top: 30px;
}

#post-plan .table, .plan_contents .table {
  margin-bottom: 45px;
}

@media (min-width: 990px) {
  #post-plan .table, .plan_contents .table {
    width: 960px;
    margin: 0 auto 110px;
  }
}

#post-plan .table:last-child, .plan_contents .table:last-child {
  margin-bottom: 0;
}

#post-plan .table ul, .plan_contents .table ul {
  display: flex;
  flex-wrap: wrap;
}

#post-plan .table ul .th, .plan_contents .table ul .th {
  background-color: #8c6c15;
  color: #FFF;
  width: 100%;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 2px;
}

#post-plan .table ul li, .plan_contents .table ul li {
  padding: 20px 30px;
  display: flex;
}

#post-plan .table .table_head, .plan_contents .table .table_head {
  color: #8c6c15;
  background-color: #f1ecde;
  font-weight: bold;
  width: 235px;
  margin-bottom: 1px;
  align-items: center;
  align-items: baseline;
}

#post-plan .table .table_head.note_bg, .plan_contents .table .table_head.note_bg {
  background-color: #eeeeee;
  align-items: center;
}

#post-plan .table .table_body, .plan_contents .table .table_body {
  width: calc(100% - 237px);
  border-top: 0;
  background-color: #fff;
  margin-bottom: 2px;
  margin-right: 2px;
  padding: 20px 40px;
}

#post-plan .table .table_body.td_col, .plan_contents .table .table_body.td_col {
  width: 50%;
}

#post-plan .table th, #post-plan .table td, .plan_contents .table th, .plan_contents .table td {
  padding: 20px 30px;
  text-align: left;
  vertical-align: middle;
}

#post-plan .table table, .plan_contents .table table {
  table-layout: fixed;
  width: 100%;
}

#post-plan .table table tr, .plan_contents .table table tr {
  border-bottom: 2px solid #f2f1f0;
}

#post-plan .table table .table_body, .plan_contents .table table .table_body {
  border-left: 2px solid #f2f1f0;
}

#post-plan .table .th_c, .plan_contents .table .th_c {
  background-color: #e4eaf1;
}

#post-junior .mv .bg {
  background: url(../../img/junior_mv.jpg) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

#post-junior .mv .bg .container {
  position: relative;
  margin-right: 0;
}

#post-junior .about {
  padding-top: 175px;
}

#post-room .mv .bg {
  background: url(../../img/room/room_mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

#post-room .mv .bg .container {
  position: relative;
  margin-right: 0;
}

#post-room .about {
  padding-top: 175px;
}

#post-room .about h2 {
  align-items: flex-start;
}

#post-room .sec01 .h2_m span {
  font-size: 33px;
}

#post-room .sec01 .icon {
  width: 147px;
  height: 147px;
  background-color: #f2f1f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

#post-room .sec01 p {
  color: #8c6c15;
  line-height: 2.5;
}

#post-room .sec02 .white_box {
  background-color: #FFF;
  background-position: center;
  border-radius: 30px 0 0 30px;
  left: calc(50% + -480px);
  position: relative;
}

#post-room .sec02 .white_box .box {
  width: 940px;
}

#post-room .sec02 .white_box h3 {
  font-size: 65px;
  line-height: 1;
  position: relative;
  margin-top: -100px;
}

#post-room .sec02 .white_box h3 span {
  position: relative;
  top: -15px;
  font-size: 75px;
  left: -15px;
}

#post-room .sec02 .white_box h3 span .txt_sub {
  top: 13px;
  position: relative;
  left: -2px;
  font-size: 65px;
}

#post-room .sec02 .white_box h4 {
  font-size: 28px;
  margin-bottom: 15px;
}

#post-room .sec02 .white_box h4 span {
  font-size: 20px;
}

#post-room .sec02 .white_box ul li {
  border-bottom: dotted 2px #e7e0cd;
}

#post-room .sec02 .white_box ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  text-decoration: none;
}

#post-room .sec02 .white_box ul li a:hover img {
  opacity: 1;
}

#post-room .sec02 .white_box ul li .txt {
  line-height: 1.5;
}

#post-room .sec02 .white_box ul li .txt .Sorts {
  font-size: 30px;
}

#post-room .sec02 .white_box ul li .txt .txtsub {
  font-size: 20px;
}

#post-room .sec02 .white_box ul li .txt .txtsub i {
  margin-left: 20px;
}

#post-room .sec02 .white_box ul li .txt .txtsub span {
  font-size: 20px;
}

#post-room .sec03 .white_box {
  background-color: #FFF;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -480px);
  position: relative;
}

#post-room .sec03 .white_box .box {
  width: 840px;
  margin-left: auto;
}

#post-room .sec03 .white_box h3 {
  font-size: 65px;
  line-height: 1;
  position: relative;
  margin-top: -100px;
}

#post-room .sec03 .white_box h3 span {
  position: relative;
  top: -15px;
  font-size: 75px;
  left: -15px;
}

#post-room .sec03 .white_box h3 span .txt_sub {
  top: 13px;
  position: relative;
  left: -2px;
  font-size: 65px;
}

#post-room .sec03 .white_box h4 {
  font-size: 28px;
  margin-bottom: 15px;
}

#post-room .sec03 .white_box h4 span {
  font-size: 20px;
}

#post-room .sec03 .white_box ul li {
  border-bottom: dotted 2px #e7e0cd;
}

#post-room .sec03 .white_box ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  text-decoration: none;
}

#post-room .sec03 .white_box ul li a:hover img {
  opacity: 1;
}

#post-room .sec03 .white_box ul li .txt {
  line-height: 1.5;
}

#post-room .sec03 .white_box ul li .txt .Sorts {
  font-size: 30px;
}

#post-room .sec03 .white_box ul li .txt .txtsub {
  font-size: 20px;
}

#post-room .sec03 .white_box ul li .txt .txtsub i {
  margin-left: 20px;
}

#post-room .sec03 .white_box ul li .txt .txtsub span {
  font-size: 20px;
}

#post-room .sec04 .white_box {
  background-color: #FFF;
  background-position: center;
  border-radius: 30px 0 0 30px;
  left: calc(50% + -480px);
  position: relative;
}

#post-room .sec04 .white_box .box {
  width: 940px;
}

#post-room .sec04 .white_box h3 {
  font-size: 65px;
  line-height: 1;
  position: relative;
  margin-top: -100px;
}

#post-room .sec04 .white_box h3 span {
  position: relative;
  top: -15px;
  font-size: 75px;
  left: -15px;
}

#post-room .sec04 .white_box h3 span .txt_sub {
  top: 13px;
  position: relative;
  left: -2px;
  font-size: 65px;
}

#post-room .sec04 .white_box h4 {
  font-size: 28px;
  margin-bottom: 15px;
}

#post-room .sec04 .white_box h4 span {
  font-size: 20px;
}

#post-room .sec04 .white_box ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 0;
  text-decoration: none;
}

#post-room .sec04 .white_box ul li a:hover img {
  opacity: 1;
}

#post-room .sec04 .white_box ul li .txt {
  line-height: 1.5;
}

#post-room .sec04 .white_box ul li .txt .Sorts {
  font-size: 30px;
}

#post-room .sec04 .white_box ul li .txt .txtsub {
  font-size: 20px;
}

#post-room .sec04 .white_box ul li .txt .txtsub i {
  margin-left: 20px;
}

#post-room .sec04 .white_box ul li .txt .txtsub span {
  font-size: 20px;
}

.parent-pageid-206.room1 .mv .bg, .parent-pageid-206.room2 .mv .bg, .parent-pageid-206.room3 .mv .bg, .parent-pageid-206.vip .mv .bg, .parent-pageid-206.vip2 .mv .bg, .parent-pageid-206.lounge .mv .bg {
  background: url(../../img/room/room1_mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

.parent-pageid-206.room1 .mv .bg .container, .parent-pageid-206.room2 .mv .bg .container, .parent-pageid-206.room3 .mv .bg .container, .parent-pageid-206.vip .mv .bg .container, .parent-pageid-206.vip2 .mv .bg .container, .parent-pageid-206.lounge .mv .bg .container {
  position: relative;
  margin-right: 0;
}

.parent-pageid-206.room2 .mv .bg {
  background: url(../../img/room/room2_mv.png) no-repeat center;
  background-size: cover;
}

.parent-pageid-206.room3 .mv .bg {
  background: url(../../img/room/room3_mv.png) no-repeat center;
  background-size: cover;
}

.parent-pageid-206.vip .mv .bg {
  background: url(../../img/room/vip_mv.png) no-repeat center;
  background-size: cover;
}

.parent-pageid-206.vip2 .mv .bg {
  background: url(../../img/room/vip2_mv.png) no-repeat center;
  background-size: cover;
}

.parent-pageid-206.lounge .mv .bg {
  background: url(../../img/room/lounge_mv.png) no-repeat center;
  background-size: cover;
}

.parent-pageid-206.lounge .sec01 ul {
  margin-top: 10px;
}

.parent-pageid-206 .sec01 ul {
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.parent-pageid-206 .sec01 ul li:first-child {
  margin-bottom: 60px;
}

.parent-pageid-206 .sec01 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  font-size: 16px;
}

.parent-pageid-206 .sec01 table th {
  background-color: #f1ecde;
  width: 235px;
  padding: 30px;
  color: #8c6c15;
  font-weight: bold;
  text-align: left;
}

.parent-pageid-206 .sec01 table td {
  background-color: #fff;
  padding: 30px;
}

#post-lounge .about {
  padding-top: 175px;
}

#post-qa .mv .bg {
  background: url(../../img/qa_mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

#post-qa .mv .bg .container {
  position: relative;
  margin-right: 0;
}

#post-qa .qa .accordion {
  margin-bottom: 45px;
}

#post-qa .qa .accordion:last-child {
  margin-bottom: 0;
}

#post-qa .qa dt, #post-qa .qa dd .box {
  display: flex;
}

#post-qa .qa dt {
  border-bottom: 0;
}

#post-qa .qa .q {
  background-color: #f1ecde;
  padding: 8px 40px;
  font-size: 20px;
  position: relative;
  align-items: center;
}

#post-qa .qa .q::after {
  right: 50px;
  background-color: #8c6c15;
}

#post-qa .qa .a {
  padding-left: 40px;
  padding-top: 20px;
  padding-bottom: 30px;
  display: none;
}

#post-qa .qa .a .box {
  align-items: baseline;
}

#post-qa .qa .tit {
  margin-top: 80px;
}

#post-qa .qa .tit:first-child {
  margin-top: 0;
}

#post-qa .qa .icon {
  width: 60px;
  flex-shrink: 0;
  font-size: 40px;
}

#post-qa .qa .icon + p {
  width: calc(100% - 60px);
}

#post-instructor .mv .bg {
  background: url(../../img/instructor_mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

#post-instructor .mv .bg .container {
  position: relative;
  margin-right: 0;
}

#post-instructor .font_l {
  font-size: 44px;
  line-height: 44px;
}

#post-instructor .sec01 .white_box {
  background-color: #FFF;
  background-position: center;
  border-radius: 30px 0 0 30px;
  left: calc(50% + -600px);
  position: relative;
  margin-bottom: 60px;
}

@media (min-width: 960px) {
  #post-instructor .sec01 .white_box .fx-col-70-s {
    padding-right: 0;
  }
}

#post-instructor .sec01 .white_box .box {
  width: 1050px;
}

#post-instructor .sec01 .white_box table {
  border-collapse: separate;
  border-spacing: 10px 0;
  width: 100%;
}

#post-instructor .sec01 .white_box table th, #post-instructor .sec01 .white_box table td {
  border-bottom: solid 1px #8c6c15;
  padding: 30px 20px;
  text-align: left;
}

#post-instructor .sec01 .white_box table th {
  color: #8c6c15;
  width: 127px;
  font-weight: bold;
}

#post-instructor .sec01 .white_box table td {
  color: #4c4c4c;
}

#post-instructor .sec01 .white_box:last-child {
  margin-bottom: 0;
}

#post-instructor .sec01 .white_box .g_btn_inner02 {
  width: auto;
  margin: 0;
}

#post-instructor .sec01 .white_box .g_btn_inner02 .g_btn_tel {
  color: #159868;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 30px;
}

#post-instructor .sec01 .white_box .g_btn_inner02 .g_btn .arrow {
  right: 35px;
}

#post-instructor .sec01 .white_box:nth-child(odd) {
  background-color: #FFF;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  position: relative;
  left: auto;
}

#post-instructor .sec01 .white_box:nth-child(odd) .box {
  margin-left: auto;
}

#post-guide .mv .bg {
  background: url(../../img/guide_mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

#post-guide .mv .bg .container {
  position: relative;
  margin-right: 0;
}

#post-guide .sec01 .h2_line {
  padding-bottom: 30px;
}

#post-guide .sec01 .white_box {
  width: 990px;
  margin-left: auto;
  border-radius: 30px;
  margin-top: 60px;
  position: relative;
}

#post-guide .sec01 .white_box::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #8c6c15;
  left: -120px;
  top: 110px;
}

#post-guide .sec01 .white_box:last-child::after {
  display: none;
}

#post-guide .sec01 .white_box .step {
  background-color: #8c6c15;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
  left: -180px;
  top: 15px;
  z-index: 1;
}

#post-guide .sec01 .white_box h3 {
  font-size: 28px;
  margin-bottom: 30px;
}

body.error404 .mv .bg {
  background: url(../../img/mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

body.error404 .mv .bg .container {
  position: relative;
  margin-right: 0;
}

body.error404 h2.tit {
  font-size: 44px;
  text-align: left;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 60px;
}

body.error404 main .fx-row {
  align-items: flex-start;
}

#post-thanks h2.tit,
#post-waitingthanks h2.tit {
  font-size: 44px;
  text-align: left;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 60px;
}

#post-thanks main .info_btn_inner .info_btn,
#post-waitingthanks main .info_btn_inner .info_btn {
  color: #fff;
  background-color: #4c4c4c;
  font-size: 20px;
  width: 360px;
  height: 80px;
  line-height: 80px;
  color: #fff;
  display: block;
  position: relative;
  text-align: center;
  font-weight: 700;
  transition-property: background-color,color,text-indent;
  transition-duration: .4s;
  transition-timing-function: ease;
  z-index: 1;
  text-decoration: none;
}

#post-thanks main .info_btn_inner .info_btn:link, #post-thanks main .info_btn_inner .info_btn:visited,
#post-waitingthanks main .info_btn_inner .info_btn:link,
#post-waitingthanks main .info_btn_inner .info_btn:visited {
  color: #FFF;
}

#post-thanks main .info_btn_inner .info_btn:hover,
#post-waitingthanks main .info_btn_inner .info_btn:hover {
  background-color: #fff;
  color: #4c4c4c;
}

#post-thanks .mv .bg {
  background: url(../../img/contact_mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

#post-thanks .mv .bg .container {
  position: relative;
  margin-right: 0;
}

#post-waitingthanks .mv .bg {
  background: url(../../img/waiting_mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

#post-waitingthanks .mv .bg .container {
  position: relative;
  margin-right: 0;
}

#post-sitemap .mv .bg {
  background: url(../../img/mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

#post-sitemap .mv .bg .container {
  position: relative;
  margin-right: 0;
}

#post-sitemap main .list_tit {
  font-size: 30px;
}

#post-sitemap main ul li {
  margin-bottom: 25px;
}

#post-sitemap main ul li a {
  text-decoration: none;
  color: #8c6c15;
  font-weight: bold;
}

#post-sitemap main ul li:before {
  font-family: Font Awesome\ 5 Free;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
  content: "\f105";
  color: #8c6c15;
  margin-right: 15px;
  font-size: 18px;
}

#post-sitemap main ul li:last-child {
  margin-bottom: 0;
}

#post-sitemap main ul:last-child {
  margin-bottom: 0;
}

#post-sitemap main .children {
  text-indent: 1em;
  margin-top: 15px;
}

#post-privacy .mv .bg {
  background: url(../../img/privacy_mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

#post-privacy .mv .bg .container {
  position: relative;
  margin-right: 0;
}

#post-privacy main h3 {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: solid 1px #4c4c4c;
  font-size: 20px;
}

#post-privacy main ul {
  font-weight: bold;
  counter-reset: number 0;
  line-height: 2.5;
}

#post-privacy main ul li {
  text-indent: -2em;
  padding-left: 2em;
}

#post-privacy main ul li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  margin-right: 15px;
}

#post-privacy main .sub_list {
  font-weight: normal;
}

#post-privacy main .sub_list li {
  text-indent: 0;
  padding-left: 0;
  display: flex;
}

#post-privacy main .sub_list li p:first-child {
  width: 3em;
}

#post-privacy main .sub_list li p:last-child {
  width: calc(100% - 3em);
}

#post-privacy main .sub_list li:before {
  display: none;
}

/*-------CONTACT-------*/
body.contact .mv .bg,
body.waiting .mv .bg {
  background: url(../../img/contact_mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

body.contact .mv .bg .container,
body.waiting .mv .bg .container {
  position: relative;
  margin-right: 0;
}

body.contact .h2_line,
body.waiting .h2_line {
  padding-bottom: 20px;
}

body.contact h2 i,
body.waiting h2 i {
  font-size: 30px;
}

body.contact .contact_form .white_box,
body.waiting .contact_form .white_box {
  border-radius: 30px;
}

body.contact form .wpcf7 .ajax-loader,
body.waiting form .wpcf7 .ajax-loader {
  position: absolute;
}

body.contact form .g_btn_inner02,
body.waiting form .g_btn_inner02 {
  width: 600px;
  height: 80px;
  margin-top: 0;
}

body.contact form .g_btn_inner02 .g_btn,
body.waiting form .g_btn_inner02 .g_btn {
  height: 80px;
  font-size: 20px;
}

body.contact form .cl_red,
body.waiting form .cl_red {
  font-size: 14px;
  margin-top: 10px;
}

body.contact form .wpcf7-response-output,
body.waiting form .wpcf7-response-output {
  margin-top: 0;
}

body.contact .checkagree_inner,
body.waiting .checkagree_inner {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

body.waiting .mv .bg {
  background: url(../../img/waiting_mv.png) no-repeat center;
  background-position: center;
  border-radius: 0 30px 30px 0;
  width: calc(50% - -600px);
  background-size: cover;
  position: relative;
}

body.waiting .mv .bg .container {
  position: relative;
  margin-right: 0;
}

.contact table {
  width: 650px;
}

.contact table th {
  width: 140px;
  background-color: #f5f5f5;
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  border-left: none;
  border-right: none;
}

.contact table td {
  background-color: #fff;
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  border-left: none;
  border-right: none;
  vertical-align: middle;
  padding: 20px 15px;
}

/*page共通*/
.container_outer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.white-box {
  background: #fff;
  padding: 50px;
}

#main {
  box-sizing: border-box;
  padding: 0;
  border: none;
  margin-bottom: 30px;
  position: relative;
}

#sidebar {
  margin-bottom: 30px;
}

#sidebar h2 {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 5px;
  margin-bottom: 0;
  font-size: 24px;
  text-align: left;
  flex-direction: row;
  align-items: baseline;
}

#sidebar h2 .sub {
  color: #8c6c15;
}

#sidebar ul li {
  border-bottom: 1px solid #e6e6e6;
}

#sidebar ul li a {
  color: #8c6c15;
  padding: 20px 0;
  font-weight: bold;
  display: block;
  text-decoration: none;
}

#sidebar ul li a:before {
  font-family: Font Awesome\ 5 Free;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
  content: "\f105";
  color: #8c6c15;
  margin-right: 8px;
}

/*記事*/
.single-post #the-content p {
  margin-bottom: 30px;
}

.single-post .post_thumbnail {
  margin-bottom: 30px;
}

.single-post #main h1 {
  font-size: 18px;
  margin-bottom: 30px;
}

.post_title {
  font-size: 28px;
  border-bottom: 1px solid #8c6c15;
  padding-bottom: 8px;
  margin-top: 0;
  font-weight: bold;
  color: #8c6c15;
}

#the-content .font-acce01 {
  background: linear-gradient(transparent 50%, #fefb13 50%);
  font-weight: bold;
}

#the-content .font-acce02 {
  font-weight: bold;
  color: #ff0000;
}

#the-content .font-acce03 {
  color: #159868;
  font-weight: bold;
}

/*アーカイブ・記事一覧*/
#list {
  width: 100%;
}

#list .articles_index .img {
  overflow: hidden;
  height: 169px;
  max-height: 169px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

#list .tit {
  margin-top: 10px;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.68;
  margin-bottom: 0;
}

#list .tit a {
  color: #8c6c15;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

#list .tit a:hover {
  opacity: .8;
}

#list .tit a:hover:after {
  transform: scale(1, 1);
}

#list .tit a:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #8c6c15;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

/*お問い合わせ*/
#entry .container_outer,
#thanks .container_outer {
  background: #fafafa;
  padding-top: 80px;
  padding-bottom: 80px;
}

#entry .border_box {
  border: 1px solid #ccc;
  height: 200px;
  margin-bottom: 30px;
  overflow: scroll;
  padding: 30px;
  font-size: 12px;
}

#entry .privacy_h3,
#privacy .privacy_h3 {
  border-left: 3px solid #159868;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 15px;
}

#entry .privacy_dl dt,
#privacy .privacy_dl dt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

#entry .privacy_dl,
#privacy .privacy_dl {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px dotted #eee;
}

#entry .form_h2,
#thanks .form_h2 {
  font-size: 26px;
  margin-bottom: 40px;
  padding: 0;
  text-align: center;
}

#entry .form_h2:before,
#thanks .form_h2:before {
  display: none;
}

#thanks .white-box .cv_btn {
  width: 110px;
  height: 40px;
  font-size: 13px;
  padding: 10px 0;
}

#thanks .cv_btn:hover {
  font-size: 13px;
  padding: 7px 0;
}

#entry .cv_btn:hover {
  border: solid 3px #159868;
}

#entry input {
  width: 100%;
  height: 50px;
  font-size: 16px;
}

#entry .form-check input {
  width: auto;
  height: auto;
}

#entry .form-check {
  margin-bottom: 30px;
  text-align: center;
}

#entry .form-check span.wpcf7-list-item {
  margin: 0;
}

#entry textarea {
  width: 100%;
  height: 120px;
  font-size: 16px;
}

#entry select {
  width: 70%;
  height: 50px;
  font-size: 16px;
}

.required {
  background: #f10909;
  color: #fff;
  font-size: 12px;
  padding: 2px 5px;
  margin-left: 5px;
}

/*PC用スタイル*/
/*タブレット用スタイル*/
@media (min-width: 768px) and (max-width: 1250px) {
  .cta .white_box {
    padding: 45px;
  }
  .cta .white_box .h2_line {
    padding-bottom: 30px;
  }
  #post-room .mv .bg,
  #post-guide .mv .bg,
  #post-plan .mv .bg,
  #post-junior .mv .bg,
  #post-instructor .mv .bg,
  #post-qa .mv .bg,
  #post-contact
#post-thanks .mv .bg,
  #post-waitingthanks .mv .bg,
  #post-sitemap .mv .bg,
  #post-privacy .mv .bg,
  body.error404 .mv .bg,
  #post-contact .mv .bg,
  #post-waiting .mv .bg,
  .page.parent-pageid-206 .mv .bg {
    left: 0;
    width: calc(100% - 15px);
    margin-right: 15px;
  }
  #post-room .about .about_img,
  #post-guide .about .about_img,
  #post-plan .about .about_img,
  #post-junior .about .about_img,
  #post-instructor .about .about_img,
  #post-qa .about .about_img,
  #post-contact
#post-thanks .about .about_img,
  #post-waitingthanks .about .about_img,
  #post-sitemap .about .about_img,
  #post-privacy .about .about_img,
  body.error404 .about .about_img,
  #post-contact .about .about_img,
  #post-waiting .about .about_img,
  .page.parent-pageid-206 .about .about_img {
    top: -210px;
  }
  #post-room .sec02 .white_box {
    padding-top: 70px;
    left: 15px;
    width: calc(100% - 15px);
  }
  #post-room .sec02 .white_box h3 {
    font-size: 55px;
  }
  #post-room .sec02 .white_box .box {
    width: 100%;
  }
  #post-room .sec02 .white_box .box .img {
    width: 50%;
  }
  #post-room .sec03 .white_box {
    padding-top: 70px;
    width: calc(100% - 15px);
  }
  #post-room .sec03 .white_box h3 {
    font-size: 55px;
  }
  #post-room .sec03 .white_box .box {
    width: calc(100% - 15px);
  }
  #post-room .sec03 .white_box .box .img {
    width: 50%;
  }
  #post-room .sec04 .white_box {
    padding-top: 70px;
    left: 15px;
    width: calc(100% - 15px);
  }
  #post-room .sec04 .white_box h3 {
    font-size: 55px;
  }
  #post-room .sec04 .white_box .box {
    width: 100%;
  }
  #post-room .sec04 .white_box .box .img {
    width: 50%;
  }
  #post-guide .sec01 .white_box {
    width: 70%;
    margin-top: 40px;
  }
  #post-instructor .sec01 .white_box {
    left: 15px;
    width: calc(100% - 15px);
  }
  #post-instructor .sec01 .white_box:nth-child(odd) {
    width: calc(100% - 15px);
  }
  #post-instructor .sec01 .white_box .box {
    width: 100%;
  }
  #post-instructor .sec01 .white_box table th, #post-instructor .sec01 .white_box table td {
    padding: 15px;
  }
  body.error404 .mv .mv_txt {
    padding: 70px 0;
  }
  .parent-pageid-206 .sec01 ul li:not(:first-child) {
    width: calc((100% - 15px) / 2);
  }
  .parent-pageid-206.lounge .sec01 ul li:last-child {
    width: 100%;
  }
}

/*-------LP-------------------*/
body.lp header {
  background-color: #fff;
  position: relative;
}

body.lp header .container {
  padding: 20px 15px;
}

body.lp header .g_btn_inner02 {
  margin-top: 0;
  width: 350px;
}

body.lp header .g_btn_inner02 .g_btn {
  font-size: 18px;
  padding: 10px;
  line-height: 1em;
}

body.lp header .g_btn_inner02 .g_btn .arrow {
  right: 25px;
}

body.lp.page-template-page-lp_lesson header .g_btn_inner02 {
  width: 280px;
}

body.lp.page-template-page-lp_golf .btn_inner {
  width: 100%;
}

body.lp.page-template-page-lp_golf .btn_inner .g_btn_inner02 {
  margin-top: 0;
  width: auto;
}

body.lp.page-template-page-lp_golf .btn_inner .g_btn_inner02 .g_btn {
  font-size: 20px;
  padding: 10px 30px;
}

body.lp.page-template-page-lp_golf .btn_inner .g_btn_inner02 .g_btn_tel {
  color: #159868;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 30px;
  background-color: #fff;
}

body.lp .font_l {
  font-size: 30px;
  line-height: 30px;
}

body.lp .font_l span {
  position: relative;
}

body.lp .font_l span::before {
  content: "";
  margin-right: 5px;
  width: 30px;
  height: 2px;
  background-color: #4c4c4c;
  position: absolute;
  left: -40px;
  top: calc(50% - 5px);
}

body.lp .font_l span::after {
  content: "";
  margin-left: 5px;
  width: 30px;
  height: 2px;
  background-color: #4c4c4c;
  position: absolute;
  right: -40px;
  top: calc(50% - 2px);
}

body.lp .mv .container {
  padding: 0;
}

body.lp .mv .mv_txt {
  padding: 40px 0 0;
}

@media (min-width: 960px) {
  body.lp main {
    font-size: 18px;
  }
  body.lp main .h2_line {
    padding-bottom: 20px;
  }
}

body.lp main section {
  padding-top: 100px;
  padding-bottom: 100px;
}

body.lp main .g_btn_inner02 {
  margin-top: 60px;
  width: 600px;
}

body.lp main .g_btn_inner02 .g_btn {
  font-size: 30px;
  padding: 0;
}

body.lp main .g_btn_inner02 .g_btn .arrow {
  right: 35px;
}

body.lp .sec01 {
  background-color: #d9d2bf;
}

body.lp .sec01 .box {
  background: url(../../img/lp/golf/bg01.png) center;
  border-radius: 50%;
  width: 370px;
  height: 370px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

body.lp .sec01 .box .txt {
  margin-top: 15px;
  line-height: 1.5;
  letter-spacing: -.01em;
  text-align: center;
}

body.lp .sec02 .bg {
  background: url(../../img/lp/golf/bg02.png) no-repeat center;
  background-size: cover;
  padding-bottom: 100px;
  padding-top: 100px;
}

@media (min-width: 960px) {
  body.lp .sec02 .h2_line .h2_en {
    font-size: 50px;
  }
}

body.lp .sec02 .box_slider_inner {
  max-width: 3040px;
  position: relative;
  margin: 0 auto;
}

body.lp .sec02 .box_slider_inner .slick-arrow {
  z-index: 20;
  position: absolute;
  top: calc(100% - 50% - 35px);
  width: 60px;
  height: 60px;
  display: block;
}

body.lp .sec02 .box_slider_inner .prev-arrow {
  left: calc(50% - 540px);
  background: url(../../img/ar_prev.png);
  background-position: top center;
}

body.lp .sec02 .box_slider_inner .prev-arrow:hover {
  cursor: pointer;
  background-position: bottom center;
}

body.lp .sec02 .box_slider_inner .next-arrow {
  right: calc(50% - 540px);
  background: url(../../img/ar_next.png);
  background-position: top center;
}

body.lp .sec02 .box_slider_inner .next-arrow:hover {
  cursor: pointer;
  background-position: bottom center;
}

body.lp .sec02 .box_slider_inner .box_slider {
  margin-bottom: 75px;
}

body.lp .sec02 .box_slider_inner .box_slider li {
  margin: 0 15px;
}

body.lp .sec02 .slick-slider {
  margin-bottom: 0;
}

body.lp .sec02 .slick-dots {
  position: relative;
  bottom: -20px;
}

body.lp .sec02 .slick-dots li {
  width: 10px;
  margin: 0 10px !important;
}

body.lp .sec02 .slick-dots li button {
  border: solid #8c6c15 1px;
  border-radius: 50px;
  width: 10px;
  height: 10px;
}

body.lp .sec02 .slick-dots li button:before {
  color: transparent;
}

body.lp .sec02 .slick-dots li.slick-active button {
  background-color: #8c6c15;
  border: solid #8c6c15 1px;
}

body.lp .sec02 .slick-dots li button:before {
  font-family: slick;
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  content: '';
  text-align: center;
  opacity: 1;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.lp .sec02 .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #8c6c15;
}

body.lp .sec02 .inner {
  border: solid #8c6c15 1px;
  padding: 40px 40px 50px;
}

body.lp .sec02 .inner h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

body.lp .sec02 .inner .txt {
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
  margin-top: 15px;
}

body.lp .sec02 .inner .box {
  padding: 100px 0 60px;
}

body.lp .sec02 .inner .f_item.border {
  border-right: solid #8c6c15 1px;
}

body.lp .sec02 .inner02 {
  margin-top: 50px;
  padding: 50px;
}

body.lp .sec02 .inner02 h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}

body.lp .sec02 .inner02 .white_box {
  padding: 50px;
}

body.lp .sec02 .inner02 .white_box .title {
  border-left: solid #8c6c15 5px;
  padding-left: 15px;
  font-size: 30px;
  line-height: 1.5;
}

body.lp .sec02 .inner02 .white_box .txt {
  text-align: center;
  line-height: 1.2;
  margin-top: 15px;
  font-size: 14px;
}

body.lp .sec02 .inner02 .white_box .txt span {
  font-size: 24px;
}

body.lp .sec02 .inner02 .white_box .gray_box {
  margin-top: 30px;
  background-color: #fafafa;
  padding: 20px 35px;
  line-height: 1.5;
  font-size: 18px;
}

body.lp .sec03 {
  background: url(../../img/lp/golf/bg03.png) no-repeat center;
  background-size: cover;
}

body.lp .sec03 h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

body.lp .sec03 .white_box {
  margin-top: 70px;
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.8);
}

body.lp .sec03 .white_box .gray_box {
  padding: 50px;
  background-color: #f2f1f0;
}

body.lp .sec03 .white_box .title {
  border-left: solid #8c6c15 5px;
  padding-left: 15px;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 30px;
}

body.lp .sec03 .white_box .title span {
  font-size: 30px;
  margin-right: 10px;
}

body.lp .sec03 .white_box .txt {
  text-align: center;
  line-height: 1.2;
  margin-top: 15px;
}

body.lp .sec03 .white_box .txt span {
  font-size: 24px;
}

body.lp .sec03 .white_box .dot {
  border-bottom: dashed #8c6c15 1px;
  margin: 50px 0;
}

body.lp .plan .table {
  margin-bottom: 30px;
}

body.lp .plan .table:last-child {
  margin-bottom: 0;
}

body.lp .plan .table ul {
  display: flex;
  flex-wrap: wrap;
}

body.lp .plan .table ul .th {
  background-color: #8c6c15;
  color: #FFF;
  width: 100%;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 2px;
}

body.lp .plan .table ul li {
  padding: 20px 30px;
  display: flex;
}

body.lp .plan .table .table_head {
  color: #8c6c15;
  background-color: #f1ecde;
  font-weight: bold;
  width: 235px;
  margin-bottom: 1px;
  align-items: baseline;
  justify-content: center;
}

body.lp .plan .table .table_head.note_bg {
  background-color: #eeeeee;
  align-items: center;
}

body.lp .plan .table .table_body {
  width: calc(100% - 237px);
  border-top: 0;
  background-color: #fff;
  margin-bottom: 2px;
  margin-right: 2px;
  padding: 20px 40px;
}

body.lp .plan .table .table_body.td_col {
  width: 50%;
  justify-content: center;
}

body.lp .plan .table th, body.lp .plan .table td {
  padding: 20px 30px;
  text-align: left;
  vertical-align: middle;
}

body.lp .plan .table table {
  table-layout: fixed;
  width: 100%;
}

body.lp .plan .table table tr {
  border-bottom: 2px solid #f2f1f0;
}

body.lp .plan .table table .table_body {
  border-left: 2px solid #f2f1f0;
}

body.lp .plan .table .th_c {
  background-color: #e4eaf1;
}

body.lp .sec04 .white_box {
  background-color: #f2f1f0;
  background-position: center;
  width: calc(50% - -600px);
  position: relative;
  left: auto;
  margin-bottom: 60px;
}

@media (min-width: 960px) {
  body.lp .sec04 .white_box .fx-col-70-s {
    padding-right: 0;
  }
}

body.lp .sec04 .white_box .box {
  width: 1070px;
  margin-left: auto;
}

body.lp .sec04 .white_box .name {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 25px;
}

body.lp .sec04 .white_box .name .Sorts {
  margin-left: 10px;
  font-size: 20px;
}

body.lp .sec04 .white_box table {
  border-collapse: separate;
  border-spacing: 0 10px;
}

body.lp .sec04 .white_box table th, body.lp .sec04 .white_box table td {
  border-bottom: solid 1px #8c6c15;
  padding: 0 15px;
  text-align: center;
  vertical-align: middle;
}

body.lp .sec04 .white_box table th {
  background-color: #8c6c15;
  color: #FFF;
  width: 185px;
  font-weight: bold;
  align-items: center;
  line-height: 1.5;
}

body.lp .sec04 .white_box table td {
  color: #4c4c4c;
  line-height: 1.5;
  text-align: left;
  border-bottom: none;
}

@media (min-width: 960px) {
  body.lp .sec04 .white_box .fx-col-70-s {
    flex-basis: 64%;
    max-width: 64%;
  }
  body.lp .sec04 .white_box .fx-col-30-s {
    flex-basis: 36%;
    max-width: 36%;
  }
}

body.lp .sec04 .white_box:nth-child(odd) {
  background-color: #f2f1f0;
  background-position: center;
  left: calc(50% + -600px);
  position: relative;
}

body.lp .sec04 .white_box:nth-child(odd) .box {
  width: 1050px;
  margin-left: 0;
}

body.lp .sec04 .white_box:last-child {
  margin-bottom: 0;
}

body.lp .sec05 {
  background-color: #d9d2bf;
}

body.lp .sec05 h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.lp .sec05 h2 .h2_sub {
  margin-bottom: 0;
}

body.lp .sec05 .h2_line {
  padding-bottom: 70px;
}

body.lp .sec05 .box {
  background: url(../../img/lp/golf/bg01.png) center;
  border-radius: 30px;
  padding: 40px;
  height: 100%;
  position: relative;
  font-size: 16px;
}

body.lp .sec05 .box .txt {
  font-size: 12px;
  position: absolute;
  transform: rotate(90deg);
  margin-top: 0;
  right: 0;
}

body.lp .sec05 .box .txt span {
  font-size: 20px;
}

body.lp .sec05 .box h3 {
  text-align: center;
  margin: 25px 0 0;
  font-size: 24px;
  line-height: 1.5;
}

body.lp .sec05 .box .title {
  text-align: center;
  margin: 0 0 10px;
}

body.lp .sec05 .box .title .label {
  background-color: #8c6c15;
  color: #FFF;
  font-size: 12px;
  padding: 5px;
  margin-left: 10px;
}

body.lp .sec05 .box .txt_box {
  line-height: 1.5;
  color: #4c4c4c;
}

body.lp .sec06 .h2_line {
  padding-bottom: 0;
}

body.lp .sec06 .white_box {
  margin-left: auto;
  margin-top: 30px;
  position: relative;
  line-height: 1.5;
}

body.lp .sec06 .white_box h3 {
  font-size: 30px;
  margin-bottom: 25px;
  display: flex;
  align-items: baseline;
  border-bottom: #8c6c15 1px solid;
  padding-bottom: 3px;
}

body.lp .sec06 .white_box h3 .Sorts {
  border-right: #8c6c15 1px solid;
  font-size: 20px;
  width: 100px;
  margin-right: 30px;
}

body.lp .sec06 .white_box h3 .font_m {
  font-size: 30px;
  position: relative;
  top: 1px;
}

body.lp .sec06 .white_box .arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 57px 88.5px 0 88.5px;
  border-color: #8c6c15 transparent transparent transparent;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -27px;
}

body.lp .sec07 h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.lp .sec07 h2 .h2_sub {
  margin-bottom: 0;
}

body.lp .sec07 .h2_line {
  padding-bottom: 30px;
}

body.lp .sec07 .table ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
}

body.lp .sec07 .table ul:nth-child(odd) {
  background-color: #f2f1f0;
}

body.lp .sec07 .table ul li {
  padding: 20px;
  display: flex;
}

body.lp .sec07 .table ul .table_head {
  color: #8c6c15;
  font-weight: bold;
  width: 140px;
  align-items: baseline;
  padding: 20px 30px;
}

body.lp .sec07 .table ul .table_body {
  width: calc(100% - 140px);
  border-top: 0;
  color: #4c4c4c;
}

body.lp .sec07 .map {
  margin-bottom: 80px;
}

body.lp .sec07 .map iframe {
  width: 100%;
  height: 600px;
}

body.lp .sec08 dl dt {
  background-color: #8c6c15;
  color: #FFF;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 30px;
}

body.lp .sec08 dl dt .icon {
  width: 50px;
  height: 50px;
  background-color: #FFF;
  color: #8c6c15;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-right: 15px;
}

body.lp .sec08 dl dt .txt {
  width: calc(100% - 65px);
}

body.lp .sec08 dl dd .box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px;
  background-color: #fafafa;
  line-height: 1.5;
  font-size: 18px;
}

body.lp .sec08 dl dd .box .icon {
  width: 50px;
  height: 50px;
  background-color: #8c6c15;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-right: 15px;
}

body.lp .sec08 dl dd .box p:last-child {
  width: calc(100% - 65px);
}

body.lp .sec09 {
  background-color: #d9d2bf;
}

body.lp .sec09 .white_box {
  font-size: 16px;
}

body.lp .sec09 form .wpcf7 .ajax-loader {
  position: absolute;
}

body.lp .sec09 form .g_btn_inner02 {
  width: 600px;
  height: 80px;
  margin-top: 0;
}

body.lp .sec09 form .g_btn_inner02 .g_btn {
  height: 80px;
  font-size: 30px;
}

body.lp .sec09 form .cl_red {
  font-size: 14px;
  margin-top: 10px;
}

body.lp .sec09 form .wpcf7-response-output {
  margin-top: 0;
}

body.lp .sec09 form > ul > li {
  border-top: solid 1px #CCC;
}

body.lp .sec09 form > ul > li:nth-child(odd) {
  background-color: #fafafa;
}

body.lp .sec09 form > ul > li.b_none {
  background: none;
}

body.lp .sec09 .checkagree_inner {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

body.lp.page-template-page-lp_lesson .mv .bg {
  background: url(../../img/lp/lesson/pc_mv_bg.png) center;
  background-size: cover;
}

body.lp.page-template-page-lp_lesson .mv .mv_txt {
  padding: 150px 0;
}

body.lp.page-template-page-lp_lesson .cta_l {
  background: url(../../img/lp/lesson/cta_bg.png) center;
  background-size: cover;
}

body.lp.page-template-page-lp_lesson .cta_l .inner {
  background: #9b7e2e;
  background: linear-gradient(45deg, #9b7e2e 0%, #dfb74c 49%, #9b7e2e 100%);
  padding: 4px;
}

body.lp.page-template-page-lp_lesson .cta_l .box {
  position: relative;
  padding: 45px;
  background: url(../../img/lp/lesson/cta_img.png) no-repeat right center #FFF;
  line-height: 1.5;
}

body.lp.page-template-page-lp_lesson .cta_l .box .rbn {
  position: relative;
  left: -64px;
  top: -30px;
}

body.lp.page-template-page-lp_lesson .cta_l .g_btn_inner02 {
  margin: 30px 0 0;
  width: 450px;
}

body.lp.page-template-page-lp_lesson .cta_l .g_btn_inner02 .g_btn {
  padding: 15px;
}

body.lp.page-template-page-lp_lesson .lp_about {
  background-color: #FFF;
}

@media (min-width: 960px) {
  body.lp.page-template-page-lp_lesson .lp_about .h2_line .h2_en {
    font-size: 50px;
  }
}

body.lp.page-template-page-lp_lesson .lp_about .inner {
  border: solid #8c6c15 1px;
  padding: 40px 40px 50px;
}

body.lp.page-template-page-lp_lesson .lp_about .inner h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

body.lp.page-template-page-lp_lesson .lp_about .inner .txt {
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
  margin-top: 15px;
}

body.lp.page-template-page-lp_lesson .lp_about .inner .box {
  padding: 100px 0 60px;
}

body.lp.page-template-page-lp_lesson .lp_about .inner .f_item.border {
  border-right: solid #8c6c15 1px;
}

body.lp.page-template-page-lp_lesson .lp_about .inner02 {
  margin-top: 50px;
  padding: 50px;
}

body.lp.page-template-page-lp_lesson .lp_about .inner02 h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}

body.lp.page-template-page-lp_lesson .lp_about .inner02 .white_box {
  padding: 50px;
}

body.lp.page-template-page-lp_lesson .lp_about .inner02 .white_box .title {
  border-left: solid #8c6c15 5px;
  padding-left: 15px;
  font-size: 30px;
  line-height: 1.5;
}

body.lp.page-template-page-lp_lesson .lp_about .inner02 .white_box .txt {
  text-align: center;
  line-height: 1.2;
  margin-top: 15px;
  font-size: 14px;
}

body.lp.page-template-page-lp_lesson .lp_about .inner02 .white_box .txt span {
  font-size: 24px;
}

body.lp.page-template-page-lp_lesson .lp_about .inner02 .white_box .gray_box {
  margin-top: 30px;
  background-color: #fafafa;
  padding: 20px 35px;
  line-height: 1.5;
  font-size: 18px;
}

body.lp.page-template-page-lp_lesson .lp_features {
  background-color: #d9d2bf;
}

@media (min-width: 960px) {
  body.lp.page-template-page-lp_lesson .lp_features .h2_line .h2_en {
    font-size: 50px;
  }
}

body.lp.page-template-page-lp_lesson .lp_features .box {
  background-color: #fff;
  position: relative;
  padding: 30px;
  left: 0;
  top: 0;
  height: 100%;
}

body.lp.page-template-page-lp_lesson .lp_features .box .label {
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  color: #FFF;
  left: 0;
  top: 0;
}

body.lp.page-template-page-lp_lesson .lp_features .box .label:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 85px 85px 0 0;
  border-color: #8c6c15 transparent transparent transparent;
  position: absolute;
  left: 0;
  z-index: 1;
}

body.lp.page-template-page-lp_lesson .lp_features .box .label span {
  position: relative;
  z-index: 2;
  letter-spacing: -0.4em;
}

body.lp.page-template-page-lp_lesson .lp_features .box .txt {
  margin-top: 30px;
  line-height: 1.5;
  letter-spacing: -.01em;
}

body.lp.page-template-page-lp_lesson .lp_personal {
  background: none;
}

@media (min-width: 960px) {
  body.lp.page-template-page-lp_lesson .lp_personal .h2_line .h2_en {
    font-size: 50px;
  }
}

body.lp.page-template-page-lp_lesson .lp_personal .bg {
  background: url(../../img/lp/lesson/sec03_img01.png) no-repeat #baa773;
  background-position: calc(50% + 500px);
  padding: 1px;
}

body.lp.page-template-page-lp_lesson .lp_personal .bg .inner {
  position: relative;
  width: 490px;
  margin: 110px 30px;
}

body.lp.page-template-page-lp_lesson .lp_personal .bg .inner::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  position: absolute;
}

body.lp.page-template-page-lp_lesson .lp_personal .bg .inner::after {
  content: "";
  width: 2px;
  height: 100px;
  background-color: #fff;
  position: absolute;
  top: 0;
}

body.lp.page-template-page-lp_lesson .lp_personal .bg .txt {
  color: #FFF;
  padding: 45px;
  font-size: 22px;
  line-height: 2;
}

body.lp.page-template-page-lp_lesson .lp_personal .bg .txt::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}

body.lp.page-template-page-lp_lesson .lp_personal .bg .txt::after {
  content: "";
  width: 2px;
  height: 100px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}

body.lp.page-template-page-lp_lesson .lp_merit h2 .font_m {
  font-size: 60px;
}

body.lp.page-template-page-lp_lesson .lp_merit .white_box {
  background-color: #fff;
  background-position: center;
  width: 100%;
  font-size: 24px;
  position: relative;
  line-height: 1.5;
  left: auto;
}

body.lp.page-template-page-lp_lesson .lp_merit .white_box .icon {
  background-color: #8c6c15;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.lp.page-template-page-lp_lesson .lp_merit .white_box .Sorts {
  font-size: 24px;
  line-height: 1.5;
}

body.lp.page-template-page-lp_lesson .lp_merit .white_box .Sorts span {
  font-size: 34px;
}

@media (min-width: 960px) {
  body.lp.page-template-page-lp_lesson .lp_merit .white_box .fx-col-20-s {
    flex-basis: 17%;
    max-width: 17%;
  }
  body.lp.page-template-page-lp_lesson .lp_merit .white_box .fx-col-80-s {
    flex-basis: 83%;
    max-width: 83%;
  }
}

body.lp.page-template-page-lp_lesson .lp_merit .white_box:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 150px 150px;
  border-color: transparent transparent #d9d2bf transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

body.lp.page-template-page-lp_lesson .lp_room {
  background: none;
}

body.lp.page-template-page-lp_lesson .lp_room .white_box {
  background-color: #ece8df;
  background-position: center;
  width: calc(50% - -600px);
  position: relative;
  left: auto;
  margin-bottom: 60px;
  padding: 100px 45px;
}

body.lp.page-template-page-lp_lesson .lp_room .white_box .box {
  width: 1070px;
  margin-left: auto;
  margin-left: auto;
  background: none;
  padding: 0;
  height: auto;
  font-size: inherit;
}

body.lp.page-template-page-lp_lesson .lp_room .white_box .title {
  border-left: solid #8c6c15 5px;
  padding-left: 15px;
  font-size: 30px;
  line-height: 1.5;
}

body.lp.page-template-page-lp_lesson .lp_room .white_box .txt {
  text-align: center;
  line-height: 1.2;
  margin-top: 30px;
  font-size: 14px;
}

body.lp.page-template-page-lp_lesson .lp_room .white_box .txt span {
  font-size: 24px;
}

body.lp.page-template-page-lp_lesson .lp_room .white_box .gray_box {
  margin-top: 30px;
  background-color: #fff;
  padding: 20px 35px;
  line-height: 1.5;
  font-size: 18px;
}

body.lp.page-template-page-lp_lesson .lp_room .white_box:nth-child(odd) {
  background-color: #ece8df;
  background-position: center;
  left: calc(50% + -600px);
  position: relative;
}

body.lp.page-template-page-lp_lesson .lp_room .white_box:nth-child(odd) .box {
  width: 1070px;
  margin-left: 0;
}

body.lp.page-template-page-lp_lesson .lp_room .white_box:last-child {
  margin-bottom: 0;
}

body.lp.page-template-page-lp_lesson .lp_step .h2_line {
  padding-bottom: 0;
}

body.lp.page-template-page-lp_lesson .lp_step h2 .h2_m {
  font-size: 30px;
}

body.lp.page-template-page-lp_lesson .lp_step h2 .h2_m span {
  font-size: 40px;
}

body.lp.page-template-page-lp_lesson .lp_step .white_box {
  margin-left: auto;
  margin-top: 30px;
  position: relative;
  line-height: 1.5;
}

body.lp.page-template-page-lp_lesson .lp_step .white_box h3 {
  font-size: 30px;
  margin-bottom: 25px;
  display: flex;
  align-items: baseline;
  border-bottom: #8c6c15 1px solid;
  padding-bottom: 3px;
}

body.lp.page-template-page-lp_lesson .lp_step .white_box h3 .Sorts {
  border-right: #8c6c15 1px solid;
  font-size: 20px;
  width: 100px;
  margin-right: 30px;
}

body.lp.page-template-page-lp_lesson .lp_step .white_box h3 .font_m {
  font-size: 30px;
  position: relative;
  top: 1px;
}

body.lp.page-template-page-lp_lesson .lp_step .white_box .arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 57px 88.5px 0 88.5px;
  border-color: #8c6c15 transparent transparent transparent;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -27px;
}

@media (min-width: 960px) {
  body.lp.page-template-page-lp_lesson .lp_voice .h2_line .h2_en {
    font-size: 50px;
  }
}

body.lp.page-template-page-lp_lesson .lp_voice .box {
  background: url(../../img/lp/lesson/voice_img.png) no-repeat right center #8c6c15;
  padding: 45px;
  color: #FFF;
  line-height: 1.5;
  border: solid 1px #8c6c15;
}

body.lp.page-template-page-lp_lesson .lp_voice .box .txt_box {
  width: 670px;
}

body.lp.page-template-page-lp_lesson .lp_voice .box .txt_box .tit {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
  font-size: 30px;
  font-weight: normal;
}

body.lp.page-template-page-lp_lesson .lp_voice .box .txt_box .tit_sub {
  font-size: 18px;
  border-bottom: dashed 1px #FFF;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

body.lp.page-template-page-lp_lesson .lp_instructor .fx-row .f_item {
  margin-top: 30px;
}

body.lp.page-template-page-lp_lesson .lp_instructor .box {
  background-color: #fff;
}

body.lp.page-template-page-lp_lesson .lp_instructor .inner {
  padding: 30px;
}

body.lp.page-template-page-lp_lesson .lp_instructor .inner .name {
  font-size: 30px;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}

body.lp.page-template-page-lp_lesson .lp_instructor .inner .name .Sorts {
  font-size: 18px;
}

body.lp.page-template-page-lp_lesson .lp_instructor table {
  border-collapse: separate;
  border-spacing: 1px 1px;
  line-height: 1.5;
  width: 100%;
}

body.lp.page-template-page-lp_lesson .lp_instructor table tr th {
  width: 155px;
  background-color: #8c6c15;
  color: #FFF;
  vertical-align: middle;
}

body.lp.page-template-page-lp_lesson .lp_instructor table tr td {
  background-color: #fafafa;
  padding: 2px 10px;
}

body.lp.page-template-page-lp_lesson .lp_instructor table tr:nth-child(even) th {
  background-color: #bb9631;
}

body.lp.page-template-page-lp_lesson .lp_instructor table tr:nth-child(even) td {
  background-color: #efefef;
}

body.lp.page-template-page-lp_lesson .lp_instructor .g_btn_inner02 {
  width: auto;
  margin: 10px 0;
}

body.lp.page-template-page-lp_lesson .lp_instructor .g_btn_inner02 .g_btn {
  font-size: 20px;
  padding: 5px 30px;
}

body.lp.page-template-page-lp_lesson .lp_instructor .g_btn_inner02 .g_btn_tel {
  color: #159868;
  font-size: 20px;
  font-weight: bold;
  padding: 5px 30px;
}

body.lp.page-template-page-lp_lesson .lp_plan {
  background: url(../../img/lp/lesson/plan_bg.png) no-repeat center top;
  background-size: 100% auto;
}

body.lp.page-template-page-lp_lesson .lp_plan h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

body.lp.page-template-page-lp_lesson .lp_plan .white_box {
  margin-top: 70px;
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.8);
}

body.lp.page-template-page-lp_lesson .lp_plan .white_box .gray_box {
  padding: 50px;
  background-color: #f2f1f0;
}

body.lp.page-template-page-lp_lesson .lp_plan .white_box .title {
  border-left: solid #8c6c15 5px;
  padding-left: 15px;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 30px;
}

body.lp.page-template-page-lp_lesson .lp_plan .white_box .title span {
  font-size: 30px;
  margin-right: 10px;
}

body.lp.page-template-page-lp_lesson .lp_plan .white_box .txt {
  text-align: center;
  line-height: 1.2;
  margin-top: 15px;
}

body.lp.page-template-page-lp_lesson .lp_plan .white_box .txt span {
  font-size: 24px;
}

body.lp.page-template-page-lp_lesson .lp_plan .white_box .dot {
  border-bottom: dashed #8c6c15 1px;
  margin: 50px 0;
}

body.lp.page-template-page-lp_lesson .plan .table {
  margin-bottom: 30px;
}

body.lp.page-template-page-lp_lesson .plan .table:last-child {
  margin-bottom: 0;
}

body.lp.page-template-page-lp_lesson .plan .table ul {
  display: flex;
  flex-wrap: wrap;
}

body.lp.page-template-page-lp_lesson .plan .table ul .th {
  background-color: #8c6c15;
  color: #FFF;
  width: 100%;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 2px;
}

body.lp.page-template-page-lp_lesson .plan .table ul li {
  padding: 20px 30px;
  display: flex;
}

body.lp.page-template-page-lp_lesson .plan .table ul .table_head {
  color: #8c6c15;
  background-color: #f1ecde;
  font-weight: bold;
  width: 235px;
  margin-bottom: 1px;
  align-items: baseline;
  justify-content: center;
}

body.lp.page-template-page-lp_lesson .plan .table ul .table_head.note_bg {
  background-color: #eeeeee;
  align-items: center;
}

body.lp.page-template-page-lp_lesson .plan .table ul .table_body {
  width: calc(100% - 237px);
  border-top: 0;
  background-color: #fff;
  margin-bottom: 2px;
  margin-right: 2px;
  padding: 20px 40px;
}

body.lp.page-template-page-lp_lesson .plan .table ul .table_body.td_col {
  width: 50%;
  justify-content: center;
}

body.lp.page-template-page-lp_lesson .lp_recommend {
  background-color: #d9d2bf;
}

body.lp.page-template-page-lp_lesson .lp_recommend h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.lp.page-template-page-lp_lesson .lp_recommend h2 .h2_sub {
  margin-bottom: 0;
}

body.lp.page-template-page-lp_lesson .lp_recommend .h2_line {
  padding-bottom: 70px;
}

body.lp.page-template-page-lp_lesson .lp_recommend .box {
  background: url(../../img/lp/golf/bg01.png) center;
  border-radius: 10px;
  padding: 40px;
  height: 100%;
  position: relative;
  font-size: 16px;
}

body.lp.page-template-page-lp_lesson .lp_recommend .box .txt {
  font-size: 12px;
  position: absolute;
  transform: rotate(90deg);
  margin-top: 0;
  right: 0;
}

body.lp.page-template-page-lp_lesson .lp_recommend .box .txt span {
  font-size: 20px;
}

body.lp.page-template-page-lp_lesson .lp_recommend .box h3 {
  text-align: center;
  margin: 25px 0;
  font-size: 24px;
  line-height: 1.5;
}

body.lp.page-template-page-lp_lesson .lp_recommend .box .title {
  text-align: center;
  margin: 0 0 10px;
}

body.lp.page-template-page-lp_lesson .lp_recommend .box .title .label {
  background-color: #8c6c15;
  color: #FFF;
  font-size: 12px;
  padding: 5px;
  margin-left: 10px;
}

body.lp.page-template-page-lp_lesson .lp_recommend .box .txt_box {
  line-height: 1.5;
  color: #4c4c4c;
}

body.lp.page-template-page-lp_lesson .lp_flow .h2_line {
  padding-bottom: 0;
}

body.lp.page-template-page-lp_lesson .lp_flow h2 .font_m {
  font-size: 30px;
}

body.lp.page-template-page-lp_lesson .lp_flow .white_box {
  margin-left: auto;
  margin-top: 30px;
  position: relative;
  line-height: 1.5;
}

body.lp.page-template-page-lp_lesson .lp_flow .white_box h3 {
  font-size: 30px;
  margin-bottom: 25px;
  display: flex;
  align-items: baseline;
  border-bottom: #8c6c15 1px solid;
  padding-bottom: 3px;
}

body.lp.page-template-page-lp_lesson .lp_flow .white_box h3 .Sorts {
  border-right: #8c6c15 1px solid;
  font-size: 20px;
  width: 100px;
  margin-right: 30px;
}

body.lp.page-template-page-lp_lesson .lp_flow .white_box h3 .font_m {
  font-size: 30px;
  position: relative;
  top: 1px;
}

body.lp.page-template-page-lp_lesson .lp_flow .white_box .arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 57px 88.5px 0 88.5px;
  border-color: #8c6c15 transparent transparent transparent;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -27px;
}

body.lp.page-template-page-lp_lesson .lp_access h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.lp.page-template-page-lp_lesson .lp_access h2 .h2_sub {
  margin-bottom: 0;
}

body.lp.page-template-page-lp_lesson .lp_access .h2_line {
  padding-bottom: 30px;
}

body.lp.page-template-page-lp_lesson .lp_access .inner {
  display: flex;
  justify-content: center;
}

body.lp.page-template-page-lp_lesson .lp_access .inner .map {
  width: 50%;
  margin-bottom: 0;
}

body.lp.page-template-page-lp_lesson .lp_access .inner .box {
  width: 50%;
  background-color: #fafafa;
  padding: 50px;
  margin-bottom: 15px;
}

body.lp.page-template-page-lp_lesson .lp_access .table {
  width: 500px;
}

body.lp.page-template-page-lp_lesson .lp_access .table ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  background-color: #ffffff;
}

body.lp.page-template-page-lp_lesson .lp_access .table ul:nth-child(even) {
  background-color: #fafafa;
}

body.lp.page-template-page-lp_lesson .lp_access .table ul li {
  padding: 20px;
  display: flex;
}

body.lp.page-template-page-lp_lesson .lp_access .table ul .table_head {
  color: #8c6c15;
  font-weight: bold;
  width: 140px;
  align-items: baseline;
  padding: 20px 30px;
}

body.lp.page-template-page-lp_lesson .lp_access .table ul .table_body {
  width: calc(100% - 140px);
  border-top: 0;
  color: #4c4c4c;
  padding-left: 0;
  line-height: 1.5;
  align-items: center;
}

body.lp.page-template-page-lp_lesson .lp_access .map {
  margin-bottom: 80px;
}

body.lp.page-template-page-lp_lesson .lp_access .map iframe {
  width: 100%;
  height: 675px;
}

body.lp.page-template-page-lp_lesson .lp_qa dl dt {
  background-color: #8c6c15;
  color: #FFF;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 30px;
}

body.lp.page-template-page-lp_lesson .lp_qa dl dt .icon {
  width: 50px;
  height: 50px;
  background-color: #FFF;
  color: #8c6c15;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-right: 15px;
}

body.lp.page-template-page-lp_lesson .lp_qa dl dt .txt {
  width: calc(100% - 65px);
}

body.lp.page-template-page-lp_lesson .lp_qa dl dd .box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px;
  background-color: #fafafa;
  line-height: 1.5;
  font-size: 18px;
}

body.lp.page-template-page-lp_lesson .lp_qa dl dd .box .icon {
  width: 50px;
  height: 50px;
  background-color: #8c6c15;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-right: 15px;
}

body.lp.page-template-page-lp_lesson .lp_qa dl dd .box p:last-child {
  width: calc(100% - 65px);
}

/*----------------------------*/
/*PC用スタイルend*/
/* CSS Document */
/*タブレット用スタイル*/
/*-------header-------*/
@media (min-width: 768px) and (max-width: 1240px) {
  .topcontent .mv {
    overflow: hidden;
    height: auto;
    padding-top: 75px;
  }
  .topcontent .mv .container.mv_conta .txt {
    position: absolute;
    z-index: 1;
    right: -5vw;
    top: 130px;
  }
  .topcontent .mv .container.mv_conta .txt img {
    width: 30vw;
  }
  footer .tb_menu {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    max-width: 50%;
    padding-left: 5%;
  }
  footer .tb_menu li {
    flex-basis: 100%;
    max-width: 100%;
  }
  /*-------about-------*/
  .about .white_box {
    width: 100%;
    padding: 60px 45px 45px;
    margin-top: 180px;
  }
  .about .about_img {
    left: auto;
    right: 0;
    width: 60%;
    top: -240px;
  }
  .about .about_img img {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .open .nav_head {
    display: block;
  }
  nav.m_fixed {
    z-index: 99;
    top: 75px;
  }
  nav.m_fixed .container {
    width: 100%;
  }
  nav.m_fixed .contact {
    display: none;
  }
  /*
Header
----------------------------------------------------------- */
  header {
    position: fixed;
    display: flex;
    padding: 10px;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  header .container {
    align-items: center;
    margin-left: 0;
    padding: 0;
  }
  header h1, header .h1 {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0;
    margin-top: 5px;
    line-height: 1.2;
    margin-right: auto;
  }
  header .logo {
    max-width: 45vw;
    padding-right: 5px;
  }
  header .tel {
    padding-right: 0;
  }
  header .contact_form {
    margin-left: 8px;
    margin-right: 8px;
  }
  header .contact {
    display: none;
  }
  header .contact i {
    font-size: 18px;
  }
  header .sp_manu {
    display: flex;
    justify-content: space-between;
    color: #8c6c15;
    font-size: 10px;
    text-align: center;
    letter-spacing: -.05em;
    align-items: flex-end;
  }
  header .sp_manu div {
    margin-left: 3px;
  }
  header .sp_manu div:first-child {
    margin-left: 0;
  }
  header .sp_manu .tel_btn,
  header .sp_manu .contact_btn {
    width: 80px;
  }
  header .sp_manu a {
    color: #8c6c15;
    text-decoration: none;
    display: block;
  }
  header .sp_manu i {
    font-size: 16px;
    padding: 5px;
  }
  header .sp_manu .tel_btn .tel {
    line-height: 1.8;
  }
  header .sp_manu .tel_btn p,
  header .sp_manu .contact_btn p {
    display: flex;
    flex-direction: column;
  }
  header .sp_manu #nav_toggle {
    display: block;
    top: 8px;
    right: 8px;
    width: 80px;
    z-index: 30;
  }
  header .sp_manu #nav_toggle div {
    position: relative;
    width: 30px;
    margin: 0 auto;
  }
  header .sp_manu #nav_toggle span {
    display: block;
    height: 1px;
    background: #8c6c15;
    position: absolute;
    width: 100%;
    left: 0;
    transition: 0.5s ease-in-out;
    border-radius: 3px;
  }
  header .sp_manu #nav_toggle span:nth-child(1) {
    top: 7px;
  }
  header .sp_manu #nav_toggle span:nth-child(2) {
    top: 15px;
  }
  header .sp_manu #nav_toggle span:nth-child(3) {
    top: 23px;
  }
  header.open #nav_toggle span:nth-child(1) {
    top: 12px;
    transform: rotate(135deg);
  }
  header.open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  header.open #nav_toggle span:nth-child(3) {
    top: 12px;
    transform: rotate(-135deg);
  }
  header div#nav_toggle:after {
    content: "メニュー";
    color: #8c6c15;
    display: block;
    padding-top: 30px;
    font-size: 10px;
    letter-spacing: -.06em;
    text-align: center;
  }
  header.open div#nav_toggle:after {
    content: "メニュー";
  }
  /*
Nav
----------------------------------------------------------- */
  nav {
    position: fixed;
    margin-top: 105px;
    z-index: 11;
    width: 100%;
    background-color: transparent;
    transition: none;
  }
  nav .container {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
  nav .contact {
    display: none;
  }
  nav ul {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    background-color: rgba(140, 108, 21, 0.85);
    top: 75px;
    z-index: 99;
    width: 100%;
  }
  nav li {
    width: 100%;
    border-left: 0;
    border-right: 0;
    height: 50px;
    position: relative;
  }
  nav li::after {
    position: absolute;
    right: 15px;
    content: "\f054";
    color: #FFF;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }
  nav li:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  nav li a {
    flex-direction: row;
    color: #fff;
    justify-content: flex-start;
  }
  nav li a:link, nav li a:visited {
    color: #fff;
    font-size: 13px;
  }
  nav .en {
    font-size: 12px;
    margin-right: 15px;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  body {
    font-size: 16px;
  }
  section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .h2 {
    font-size: 50px;
  }
  /*-------topcontent-------*/
  .topcontent .mv .mv_txt .txt01 {
    line-height: 0.5;
  }
  .topcontent .mv .container.mv_conta {
    right: 160px;
    padding-right: 0;
  }
  .topcontent .mv .container.mv_conta .txt {
    position: absolute;
    z-index: 1;
    right: -210px;
    top: 80px;
  }
  .topcontent .mv .container.mv_conta .txt img {
    width: 80%;
  }
  .topcontent .mv .scl {
    bottom: 45px;
  }
  /*-------about-------*/
  .about .white_box {
    width: 100%;
    padding: 60px 45px 45px;
    margin-top: 80px;
  }
  .about .about_img {
    left: auto;
    right: 0;
    width: 60%;
    top: -90px;
  }
  .about .about_img img {
    width: 100%;
  }
  /*-------room-------*/
  .room .box_slider_inner .box_slider li {
    margin: 0 10px;
  }
  .room .box_slider_inner .prev-arrow {
    left: 40px;
  }
  .room .box_slider_inner .next-arrow {
    right: 40px;
  }
  /*-------voice-------*/
  .voice .fx-col-33-s {
    flex-basis: 100%;
    max-width: 100%;
  }
  .voice .box {
    display: flex;
    padding: 30px;
  }
  .voice .box .tit {
    margin: 10px 0;
  }
  .voice .box .tit .label {
    margin-left: 5px;
  }
  .voice .tit_box {
    width: 22%;
    margin-right: 30px;
  }
  .voice .txt_box {
    width: calc(100% - 25% - 30px);
  }
  /*-------plan-------*/
  .plan .fx-row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .plan .fx-row li {
    padding-left: 8px;
    padding-right: 8px;
  }
  /*-------下層ページ共通-------*/
  nav a:link, nav a:visited.head_container {
    padding: 7px;
  }
  #breadcrumb #breadcrumb-in {
    width: 100%;
    padding: 0 10px;
  }
  .contents {
    margin-top: 0;
  }
  .container_outer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #main h1 {
    margin-left: 0;
    font-size: 20px;
  }
  #homeheader h1 {
    margin-left: 60px;
  }
  body.single #list .tit {
    font-size: 15px;
  }
  body.single #list .img {
    margin-bottom: 10px;
    width: 100%;
  }
  body.page .mv .mv_txt {
    padding: 70px 0;
  }
  body.page .mv .mv_txt .txt01 {
    font-size: 50px;
    margin-bottom: 0;
  }
  body.page .white_box {
    padding: 30px;
  }
  body.page .cta .white_box {
    padding: 45px;
  }
  body.page .payment {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  body.page .payment .white_box {
    padding: 45px;
  }
  body.page .payment .white_box h2 {
    margin-bottom: 15px;
  }
  body.page .payment .white_box .fx-row {
    align-items: center;
  }
  #sidebar h2 {
    font-size: 22px;
  }
  /*-------個別ページ記載順-------*/
  /*-------
// プラン・料金
// ジュニアクラス
// インストラクター

-------*/
  #post-plan .mv {
    padding-top: 0;
    padding-bottom: 0;
  }
  #post-plan .mv .bg {
    background: url(../../img/plan_mv.jpg) no-repeat center;
    background-size: cover;
  }
  #post-plan .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-plan .table ul li {
    padding: 15px;
  }
  #post-plan .table ul .table_body {
    padding: 15px;
  }
  #post-plan .table th, #post-plan .table td, #post-plan .table .table_body {
    padding: 15px;
  }
  #post-junior .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-junior .mv .bg {
    background: url(../../img/junior_mv.jpg) no-repeat center;
    width: 100%;
    background-size: cover;
  }
  #post-junior .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-junior .table ul li {
    padding: 15px;
  }
  #post-junior .table ul .table_body {
    padding: 15px;
  }
  #post-instructor .sec01 .white_box .g_btn_inner02 {
    line-height: 1.6;
  }
  #post-instructor .sec01 .white_box .g_btn_inner02 .g_btn .arrow {
    right: 25px;
  }
  /*-------LP-------------------*/
  body.lp header .contact {
    display: block;
  }
  body.lp .mv {
    padding-bottom: 0;
  }
  body.lp .mv .mv_txt {
    padding-bottom: 0;
    padding-top: 40px;
  }
  body.lp main section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  body.lp main .g_btn_inner02 {
    margin-top: 30px;
  }
  body.lp main .g_btn_inner02 .g_btn {
    font-size: 24px;
    padding: 15px;
  }
  body.lp main .g_btn_inner02 .g_btn .arrow {
    right: 35px;
  }
  body.lp .sec01 .fx-row {
    margin-left: -8px;
    margin-right: -8px;
  }
  body.lp .sec01 .fx-row .f_item {
    padding-left: 8px;
    padding-right: 8px;
  }
  body.lp .sec01 .box {
    width: 225px;
    height: 225px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
  }
  body.lp .sec01 .box .txt {
    font-size: 14px;
    padding-bottom: 40px;
  }
  body.lp .sec01 .box .img_box {
    width: 140px;
  }
  body.lp .sec02 .bg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  body.lp .sec02 .h2_line {
    padding-bottom: 15px;
  }
  body.lp .sec02 .box_slider_inner {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
  }
  body.lp .sec02 .box_slider_inner .prev-arrow {
    left: 5px;
    top: auto;
    bottom: 5px;
    background-size: 100%;
    width: 45px;
    height: 45px;
  }
  body.lp .sec02 .box_slider_inner .next-arrow {
    right: 5px;
    top: auto;
    bottom: 5px;
    background-size: 100%;
    width: 45px;
    height: 45px;
  }
  body.lp .sec02 .slick-dots {
    bottom: -10px;
    position: relative;
  }
  body.lp .sec02 .slick-arrow {
    display: none !important;
  }
  body.lp .sec02 .inner {
    padding: 15px;
  }
  body.lp .sec02 .inner h3 {
    font-size: 24px;
    margin-bottom: 0;
  }
  body.lp .sec02 .inner .box {
    padding: 20px 0;
  }
  body.lp .sec02 .inner .txt {
    font-size: 16px;
  }
  body.lp .sec02 .inner02 {
    margin-top: 30px;
    padding: 30px;
  }
  body.lp .sec02 .inner02 h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  body.lp .sec02 .inner02 .white_box {
    padding: 30px;
  }
  body.lp .sec02 .inner02 .white_box .title {
    border-left: solid #8c6c15 3px;
    font-size: 20px;
    line-height: 1.5;
  }
  body.lp .sec02 .inner02 .white_box .gray_box {
    font-size: 16px;
    padding: 30px;
  }
  body.lp .sec02 .inner02 .white_box .txt {
    font-size: 13px;
  }
  body.lp .sec03 .h2_line {
    padding-bottom: 15px;
  }
  body.lp .sec03 .white_box {
    margin-top: 30px;
    padding: 30px;
  }
  body.lp .sec03 .white_box .gray_box {
    padding: 30px;
  }
  body.lp .sec03 .white_box .title {
    line-height: 1.2;
  }
  body.lp .sec03 .white_box .dot {
    margin: 30px 0;
  }
  body.lp .plan .table ul .th {
    font-size: 16px;
  }
  body.lp .plan .table ul li {
    padding: 15px;
  }
  body.lp .plan .table .table_head {
    color: #8c6c15;
    font-weight: bold;
    width: 170px;
    margin-bottom: 1px;
    align-items: center;
    align-items: baseline;
  }
  body.lp .plan .table .table_body {
    width: calc(100% - 172px);
    border-top: 0;
    background-color: #fff;
    margin-bottom: 1px;
    padding: 15px;
  }
  body.lp .plan .table .table_body.td_col {
    width: calc((100% - 174px) / 2);
  }
  body.lp .sec04 .white_box {
    width: calc(100% - 30px);
    margin-left: auto;
    margin-bottom: 30px;
  }
  body.lp .sec04 .white_box .box {
    width: 100%;
  }
  body.lp .sec04 .white_box:nth-child(odd) {
    left: auto;
    margin-left: 0;
  }
  body.lp .sec04 .white_box:nth-child(odd) .box {
    width: 100%;
  }
  body.lp .sec04 .white_box:last-child {
    margin-bottom: 0;
  }
  body.lp .sec05 .h2_line {
    padding-bottom: 30px;
  }
  body.lp .sec05 .fx-row {
    margin-left: -8px;
    margin-right: -8px;
  }
  body.lp .sec05 .fx-row .f_item {
    padding-left: 8px;
    padding-right: 8px;
  }
  body.lp .sec05 .box {
    padding: 30px 15px;
  }
  body.lp .sec05 .box h3 {
    font-size: 20px;
  }
  body.lp .sec05 .spwd50 {
    width: 40% !important;
  }
  body.lp .sec06 .h2_line {
    padding-bottom: 0;
  }
  body.lp .sec06 .white_box h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  body.lp .sec06 .white_box h3 .Sorts {
    font-size: 16px;
    width: 80px;
    margin-right: 15px;
  }
  body.lp .sec06 .white_box h3 .font_m {
    font-size: 24px;
  }
  body.lp .sec06 .white_box .arrow {
    border-width: 35px 60px 0 60px;
    bottom: -30px;
  }
  body.lp .sec07 .h2_line {
    padding-bottom: 30px;
  }
  body.lp .sec07 .map {
    margin-bottom: 30px;
  }
  body.lp .sec07 .map iframe {
    height: 500px;
  }
  body.lp .sec08 .h2_line {
    padding-bottom: 30px;
  }
  body.lp .sec08 dl dt {
    font-size: 20px;
    padding: 10px 15px;
    align-items: baseline;
  }
  body.lp .sec08 dl dt .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 15px;
  }
  body.lp .sec08 dl dt .txt {
    width: calc(100% - 55px);
    line-height: 1.2;
  }
  body.lp .sec08 dl dd .box {
    padding: 15px;
    font-size: 16px;
  }
  body.lp .sec08 dl dd .box .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 15px;
  }
  body.lp .sec08 dl dd .box p:last-child {
    width: calc(100% - 55px);
  }
  body.lp .sec09 .h2_line {
    padding-bottom: 30px;
  }
  body.lp .sec09 form .g_btn_inner02 .g_btn {
    font-size: 24px;
    padding: 0;
  }
  body.lp .sec09 form .fx-col-70-s {
    flex-basis: 68%;
    max-width: 68%;
  }
  body.lp .sec09 form .fx-col-30-s {
    flex-basis: 32%;
    max-width: 32%;
  }
  body.lp.page-template-page-lp_lesson .h2_line {
    padding-bottom: 30px;
  }
  body.lp.page-template-page-lp_lesson .mv .bg {
    background-position: left -270px center;
  }
  body.lp.page-template-page-lp_lesson .mv .mv_txt {
    padding: 70px 15px;
  }
  body.lp.page-template-page-lp_lesson .cta_l .box {
    background-position: left -320px center;
  }
  body.lp.page-template-page-lp_lesson .tab_shadow {
    text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  }
  body.lp.page-template-page-lp_lesson .lp_features .fx-row {
    margin-left: -8px;
    margin-right: -8px;
  }
  body.lp.page-template-page-lp_lesson .lp_features .fx-row .f_item {
    padding-left: 8px;
    padding-right: 8px;
  }
  body.lp.page-template-page-lp_lesson .lp_features .box {
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_personal .bg {
    background: url(../../img/lp/lesson/sec03_img01.png) no-repeat #baa773;
    background-position: calc(50% + 260px);
    padding: 1px;
    background-size: auto 100%;
  }
  body.lp.page-template-page-lp_lesson .lp_personal .bg .inner {
    position: relative;
    width: 44%;
    margin: 40px 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_personal .bg .txt {
    color: #FFF;
    padding: 15px;
    font-size: 16px;
    line-height: 2;
  }
  body.lp.page-template-page-lp_lesson .lp_merit .white_box {
    width: 100%;
    font-size: 22px;
  }
  body.lp.page-template-page-lp_lesson .lp_merit .white_box:after {
    border-width: 0 0 50px 50px;
  }
  body.lp.page-template-page-lp_lesson .lp_merit .white_box .icon {
    background-color: #8c6c15;
    width: 120px;
    height: 120px;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box {
    width: 100%;
    left: auto;
    margin-bottom: 30px;
    padding: 30px;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box .box {
    width: auto;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box:nth-child(odd) {
    left: 0;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box:nth-child(odd) .box {
    width: auto;
    margin-left: 0;
  }
  body.lp.page-template-page-lp_lesson .lp_step .white_box .arrow {
    border-width: 40px 88.5px 0 88.5px;
  }
  body.lp.page-template-page-lp_lesson .lp_voice .box {
    background: url(../../img/lp/lesson/voice_img.png) no-repeat right -85px center #8c6c15;
    padding: 30px 15px;
    color: #FFF;
    line-height: 1.5;
    border: solid 1px #8c6c15;
  }
  body.lp.page-template-page-lp_lesson .lp_voice .box .txt_box {
    width: 60%;
  }
  body.lp.page-template-page-lp_lesson .lp_voice .box .txt_box .tit {
    font-size: 24px;
  }
  body.lp.page-template-page-lp_lesson .lp_voice .box .txt_box .tit_sub {
    font-size: 18px;
    border-bottom: dashed 1px #FFF;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_instructor .fx-row {
    margin-left: -8px;
    margin-right: -8px;
  }
  body.lp.page-template-page-lp_lesson .lp_instructor .fx-row .f_item {
    padding-left: 8px;
    padding-right: 8px;
  }
  body.lp.page-template-page-lp_lesson .lp_instructor .inner {
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_instructor table tr th {
    width: 130px;
  }
  body.lp.page-template-page-lp_lesson .lp_instructor .g_btn_inner02 .g_btn {
    padding: 10px;
    line-height: 1.6;
  }
  body.lp.page-template-page-lp_lesson .lp_plan .h2_line {
    padding-bottom: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_plan .white_box {
    margin-top: 30px;
    padding: 30px;
  }
  body.lp.page-template-page-lp_lesson .lp_plan .white_box .gray_box {
    padding: 30px;
  }
  body.lp.page-template-page-lp_lesson .lp_plan .white_box .title {
    line-height: 1.2;
  }
  body.lp.page-template-page-lp_lesson .lp_plan .white_box .dot {
    margin: 30px 0;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul .th {
    font-size: 16px;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul li {
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul .table_head {
    color: #8c6c15;
    font-weight: bold;
    width: 170px;
    margin-bottom: 1px;
    align-items: center;
    align-items: baseline;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul .table_body {
    width: calc(100% - 172px);
    border-top: 0;
    background-color: #fff;
    margin-bottom: 1px;
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul .table_body.td_col {
    width: calc((100% - 174px) / 2);
  }
  body.lp.page-template-page-lp_lesson .lp_recommend .h2_line {
    padding-bottom: 30px;
  }
  body.lp.page-template-page-lp_lesson .lp_recommend .fx-row {
    margin-left: -8px;
    margin-right: -8px;
  }
  body.lp.page-template-page-lp_lesson .lp_recommend .fx-row .f_item {
    padding-left: 8px;
    padding-right: 8px;
  }
  body.lp.page-template-page-lp_lesson .lp_recommend .box {
    padding: 30px 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_recommend .box h3 {
    font-size: 20px;
  }
  body.lp.page-template-page-lp_lesson .lp_recommend .spwd50 {
    width: 40% !important;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .h2_line {
    padding-bottom: 0;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .white_box h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .white_box h3 .Sorts {
    font-size: 16px;
    width: 80px;
    margin-right: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .white_box h3 .font_m {
    font-size: 24px;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .white_box .arrow {
    border-width: 35px 60px 0 60px;
    bottom: -30px;
  }
  body.lp.page-template-page-lp_lesson .lp_access .inner {
    display: flex;
    flex-direction: column;
  }
  body.lp.page-template-page-lp_lesson .lp_access .inner .map {
    width: 100%;
  }
  body.lp.page-template-page-lp_lesson .lp_access .inner .map iframe {
    height: 300px;
  }
  body.lp.page-template-page-lp_lesson .lp_access .inner .box {
    width: 100%;
    background-color: #fafafa;
    padding: 15px;
    margin-bottom: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_access .table {
    width: auto;
  }
  body.lp.page-template-page-lp_lesson .lp_qa .h2_line {
    padding-bottom: 30px;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dt {
    font-size: 20px;
    padding: 10px 15px;
    align-items: baseline;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dt .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dt .txt {
    width: calc(100% - 55px);
    line-height: 1.2;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dd .box {
    padding: 15px;
    font-size: 16px;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dd .box .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dd .box p:last-child {
    width: calc(100% - 55px);
  }
  body.lp.page-template-page-lp_golf .btn_inner .g_btn_inner02 .g_btn {
    font-size: 16px;
    padding: 10px 30px;
    line-height: 1.6;
  }
  body.lp.page-template-page-lp_golf .btn_inner .g_btn_inner02 .g_btn_tel {
    line-height: 1.6;
  }
  /*----------------------------*/
}

/*タブレット用スタイルend*/
/* CSS Document */
/*スマホ用スタイル*/
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.8;
  }
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .h2 {
    font-size: 30px;
    line-height: 1.68;
  }
  .h2_sub {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    padding: 0;
  }
  .h2_line h2 {
    margin-bottom: 15px;
  }
  .g_btn_inner {
    width: calc(100% - 30px);
    margin: 25px auto 0;
  }
  .g_btn_inner .g_btn {
    color: #8c6c15;
    font-size: 14px;
    font-weight: bold;
    background: transparent;
    padding: 15px 30px;
    border: 1px solid #8c6c15;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    transition: .3s;
    text-decoration: none;
    display: block;
  }
  .g_btn_inner .g_btn:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #8c6c15;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
  }
  .g_btn_inner .g_btn .arrow:after {
    left: 32px;
  }
  .g_btn_inner .g_btn .arrow:before {
    left: 20px;
  }
  /*
Header
----------------------------------------------------------- */
  header {
    position: fixed;
    display: flex;
    padding: 10px;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  header .container {
    align-items: center;
    margin-left: 0;
    padding: 0;
  }
  header h1, header .h1 {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0;
    margin-top: 5px;
    line-height: 1.2;
    margin-right: auto;
  }
  header .logo {
    max-width: 45vw;
    padding-right: 5px;
  }
  header .tel {
    padding-right: 0;
  }
  header .contact_form {
    margin-left: 8px;
    margin-right: 8px;
  }
  header .contact {
    display: none;
  }
  header .contact i {
    font-size: 18px;
  }
  header .sp_manu {
    display: flex;
    justify-content: space-between;
    color: #8c6c15;
    font-size: 10px;
    text-align: center;
    letter-spacing: -.05em;
    align-items: flex-end;
  }
  header .sp_manu div {
    margin-left: 3px;
  }
  header .sp_manu div:first-child {
    margin-left: 0;
  }
  header .sp_manu a {
    color: #8c6c15;
    text-decoration: none;
    display: block;
  }
  header .sp_manu i {
    font-size: 16px;
    padding: 5px;
  }
  header .sp_manu .tel_btn .tel {
    line-height: 1.8;
  }
  header .sp_manu .tel_btn p,
  header .sp_manu .contact_btn p {
    display: flex;
    flex-direction: column;
  }
  header .sp_manu #nav_toggle {
    display: block;
    top: 8px;
    right: 8px;
    width: 40px;
    z-index: 30;
  }
  header .sp_manu #nav_toggle div {
    position: relative;
    width: 30px;
    margin: 0 auto;
  }
  header .sp_manu #nav_toggle span {
    display: block;
    height: 1px;
    background: #8c6c15;
    position: absolute;
    width: 100%;
    left: 0;
    transition: 0.5s ease-in-out;
    border-radius: 3px;
  }
  header .sp_manu #nav_toggle span:nth-child(1) {
    top: 7px;
  }
  header .sp_manu #nav_toggle span:nth-child(2) {
    top: 15px;
  }
  header .sp_manu #nav_toggle span:nth-child(3) {
    top: 23px;
  }
  header.open #nav_toggle span:nth-child(1) {
    top: 12px;
    transform: rotate(135deg);
  }
  header.open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  header.open #nav_toggle span:nth-child(3) {
    top: 12px;
    transform: rotate(-135deg);
  }
  header div#nav_toggle:after {
    content: "メニュー";
    color: #8c6c15;
    display: block;
    padding-top: 30px;
    font-size: 10px;
    letter-spacing: -.06em;
    text-align: center;
  }
  header.open div#nav_toggle:after {
    content: "メニュー";
  }
  /*
Nav
----------------------------------------------------------- */
  nav {
    position: fixed;
    margin-top: 96px;
    z-index: 11;
    width: 100%;
    background-color: transparent;
    transition: none;
  }
  nav .container {
    padding-right: 0;
    padding-left: 0;
  }
  nav ul {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    background-color: rgba(140, 108, 21, 0.85);
  }
  nav li {
    width: 100%;
    border-left: 0;
    border-right: 0;
    height: 50px;
    position: relative;
  }
  nav li::after {
    position: absolute;
    right: 15px;
    content: "\f054";
    color: #FFF;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }
  nav li:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  nav li a {
    flex-direction: row;
    color: #fff;
    justify-content: flex-start;
  }
  nav li a:link, nav li a:visited {
    color: #fff;
    font-size: 13px;
  }
  nav .en {
    font-size: 12px;
    margin-right: 15px;
  }
  footer .foot_area {
    flex-direction: column;
  }
  footer .foot_area .map, footer .foot_area .area_item {
    width: auto;
    margin: 0;
  }
  footer .foot_area .map .map, footer .foot_area .area_item .map {
    width: 60%;
    margin: 0 auto;
  }
  .cv_btn {
    width: 90%;
    font-size: 16px;
    height: auto;
  }
  .cv_btn02 {
    display: block;
    font-size: 11px;
    padding: 5px;
  }
  /*-------下層ページ共通-------*/
  .scroll img {
    width: 13vw;
  }
  #breadcrumb {
    font-size: 9px;
  }
  #breadcrumb #breadcrumb-in {
    width: 100%;
    padding: 0 10px;
  }
  #main {
    float: none;
    width: 100%;
  }
  #main h1 {
    font-size: 6.5vw;
  }
  #main h1 .sub {
    font-size: 4.5vw;
  }
  #list {
    margin-right: 0;
  }
  #list .articles_index {
    margin-bottom: 30px;
  }
  #list .articles_index .img {
    height: 30vw;
    max-height: 30vw;
    margin-bottom: 10px;
  }
  #list .tit {
    font-size: 14px;
  }
  #list .fx-row {
    margin-left: -8px;
    margin-right: -8px;
  }
  #list .fx-row .f_item {
    padding-left: 8px;
    padding-right: 8px;
  }
  #sidebar {
    width: 100%;
    float: none;
    margin-bottom: 0;
  }
  .container_outer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .white-box {
    background: #fff;
    padding: 15px;
  }
  #thanks .white-box .cv_btn {
    width: 100%;
    height: auto;
    font-size: 13px;
    padding: 10px 0;
  }
  .topcontent h2,
  h2 {
    font-size: 20px;
  }
  .topcontent h2 span,
  h2 span {
    margin-bottom: 0;
  }
  .topcontent .h2_left {
    margin-left: 0;
  }
  .topcontent .h2_left:before {
    left: 30px;
  }
  .topcontent .h2_right {
    margin-right: 0;
  }
  .head_container {
    width: 100%;
    height: 60px;
  }
  #home .info_btn_inner .info_btn,
  .page .info_btn_inner .info_btn {
    width: 100%;
    margin-bottom: 0;
  }
  /*-------TOP-------*/
  .topcontent .mv {
    padding-top: 70px;
    height: auto;
  }
  .topcontent .mv .mv_img {
    margin-right: 15px;
  }
  .topcontent .mv .mv_b_txt {
    font-size: 10px;
    letter-spacing: -.005em;
  }
  .topcontent .mv .scl {
    font-size: 10px;
    bottom: 35px;
    letter-spacing: -.005em;
  }
  .topcontent .mv .scl:after {
    left: 10px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #8c6c15;
    border-right: 1px solid #8c6c15;
    transform: rotate(45deg);
  }
  .topcontent #nav_toggle span {
    background-color: #8c6c15;
  }
  .topcontent .top_txt {
    padding-top: 60px;
  }
  .topcontent .slick-dots li button:before {
    width: 10px;
    height: 10px;
  }
  .mv .mv_txt {
    margin-top: 15vh;
  }
  .mv .mv_txt .p_none {
    display: inline;
  }
  .mv .mv_txt .txt01 {
    font-size: 17vw;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .mv .mv_txt .txt01 .pt_none {
    height: 0;
  }
  .mv .mv_txt .txt02 {
    font-size: 14px;
    line-height: 1.5;
  }
  /*-------NEWS-------*/
  .news {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .news h2 {
    text-align: center;
    font-size: 20px;
  }
  .news h2 .h2_sub {
    margin-bottom: 0;
  }
  .news h2 .h2_en {
    font-size: 26px;
  }
  .news .cat a {
    font-size: 12px;
  }
  .news .date {
    font-size: 14px;
  }
  .news ul li {
    padding: 15px 0;
    margin-bottom: 0;
    border-bottom: solid 1px #8c6c15;
  }
  .news ul li .articles_index {
    width: auto;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .news ul li .tit {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    font-size: 14px;
  }
  .news ul li .new {
    font-size: 14px;
    margin-left: 15px;
  }
  .news ul li .post_date {
    font-size: 14px;
    width: 100%;
  }
  .news .img {
    margin-bottom: 10px;
    width: 100%;
    height: 150px;
  }
  .news .post_cat {
    font-size: 12px;
    font-weight: bold;
    padding: 0px 4px;
    line-height: 2;
    min-width: 7em;
    flex-wrap: wrap;
  }
  .news .post_date, .news .news .post_date {
    height: 1.3em;
    width: 100px;
  }
  .news .g_btn_inner {
    width: calc(100% - 100px);
    margin: 30px auto 0;
  }
  .news .g_btn_inner .g_btn .arrow:after {
    left: 21px;
  }
  .news .g_btn_inner .g_btn .arrow:before {
    left: 10px;
  }
  /*-------about-------*/
  .about .about_img {
    left: auto;
    right: 0;
    top: -37vw;
    margin-left: 80px;
  }
  .about .about_img img {
    max-width: 100%;
    width: 90%;
    margin-left: auto;
  }
  .about .white_box {
    margin-top: 37vw;
    position: relative;
    border-radius: 15px;
    width: 100%;
    padding: 50px 15px 30px;
    margin-bottom: 0;
  }
  /*-------room-------*/
  .room .h2_line {
    padding-bottom: 30px;
  }
  .room .box_slider_inner {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
  }
  .room .box_slider_inner .prev-arrow {
    left: 5px;
    top: auto;
    bottom: 5px;
    background-size: 100%;
    width: 45px;
    height: 45px;
  }
  .room .box_slider_inner .next-arrow {
    right: 5px;
    top: auto;
    bottom: 5px;
    background-size: 100%;
    width: 45px;
    height: 45px;
  }
  .room .slick-dots {
    bottom: -10px;
    position: relative;
  }
  .room .slick-arrow {
    display: none !important;
  }
  .room .g_btn_inner {
    margin: 30px auto 0;
    width: 100%;
  }
  /*-------voice-------*/
  .voice .h2_line {
    padding-bottom: 30px;
  }
  .voice .box {
    background-color: #f2f1f0;
    border-radius: 15px;
    padding: 30px 15px;
  }
  .voice .box .txt {
    font-size: 10px;
  }
  /*-------plan-------*/
  .plan .h2_line {
    padding-bottom: 30px;
  }
  .plan .g_btn_inner {
    margin-bottom: 30px;
  }
  .plan .fx-row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .plan .fx-row li {
    padding-left: 8px;
    padding-right: 8px;
  }
  /*-------access-------*/
  .access .h2_line {
    padding-bottom: 30px;
  }
  .access .table ul {
    flex-direction: column;
  }
  .access .table ul .table_head {
    width: 100%;
    background-color: #f2f1f0;
    padding: 15px;
  }
  .access .table ul .table_body {
    width: 100%;
    padding: 15px;
  }
  .access .table ul:nth-child(odd) {
    background-color: transparent;
  }
  .access .map iframe {
    height: 300px;
  }
  /*-------cta-------*/
  .cta {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .cta .white_box {
    position: relative;
    padding: 40px 30px;
  }
  .cta .white_box h2 {
    padding-bottom: 0;
  }
  .cta .white_box .h2_line {
    padding-bottom: 20px;
  }
  .cta .white_box:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    position: absolute;
    left: 10px;
    top: 10px;
  }
  .cta .g_btn_inner02 {
    width: calc(100% - 30px);
    margin: 25px auto 0;
  }
  .cta .g_btn_inner02 .g_btn {
    line-height: 1.5;
    font-size: 14px;
  }
  .cta .g_btn_inner02 .g_btn .arrow {
    right: 20px;
  }
  .g_btn_inner02 {
    width: calc(100% - 30px);
    margin: 25px auto 0;
  }
  .g_btn_inner02 .g_btn {
    line-height: 1.5;
    font-size: 14px;
  }
  .g_btn_inner02 .g_btn .arrow {
    right: 20px;
  }
  /*-------footer-------*/
  footer {
    padding-top: 0;
  }
  footer .logo {
    width: 50%;
  }
  footer .add {
    display: flex;
    letter-spacing: .05em;
  }
  footer .add p {
    margin: auto;
  }
  footer .add p:last-child {
    margin: auto;
  }
  footer .contact .calendar {
    margin-right: 10px;
  }
  footer .contact .calendar a:link .sub, footer .contact .mail a:link .sub {
    font-size: 10px;
    font-weight: normal;
  }
  footer .footer_nav {
    margin-top: 0;
    margin-bottom: 15px;
  }
  footer .footer_nav.nav_sp .f_item {
    margin: 0;
  }
  footer .footer_nav.nav_sp .l_item p {
    color: #FFF;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  footer .footer_nav.nav_sp .l_item p a {
    font-size: 14px;
    background-color: #8c6c15;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0 15px;
    z-index: 11;
  }
  footer .footer_nav.nav_sp .l_item p:before {
    color: #FFF;
    position: absolute;
    right: 15px;
    left: auto;
    top: calc(50% - 0.55em);
    z-index: 10;
    transition: .25s all ease;
  }
  footer .footer_nav.nav_sp .l_item p.active:before {
    transform: rotate(90deg);
  }
  footer .footer_nav.nav_sp .l_item .sub {
    display: none;
  }
  footer .footer_nav.nav_sp .l_item .sub p {
    border-bottom: 1px solid #CCC;
    border-top: none;
    text-indent: 1.2em;
  }
  footer .footer_nav.nav_sp .l_item .sub p:before {
    color: #8c6c15;
    position: absolute;
    left: 3px;
    top: calc(50% - 0.6em);
    margin: auto;
    transform: none;
    right: auto;
  }
  footer .footer_nav.nav_sp .l_item .sub p:after {
    content: "\f054";
    color: #8c6c15;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: #8c6c15;
    right: 15px;
    position: absolute;
    left: auto;
    top: calc(50% - 0.55em);
    margin: auto;
    z-index: 10;
    transition: .25s all ease;
    font-size: 12px;
  }
  footer .footer_nav.nav_sp .l_item .sub p a {
    background-color: #fff;
    color: #8c6c15;
    padding: 0 15px;
  }
  footer .footer_nav .fx-row {
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
  }
  footer .footer_nav .f_item {
    padding-left: 0;
    padding-right: 0;
    margin-top: 1px;
  }
  footer .footer_nav .f_item .sns {
    margin-top: 25px;
  }
  footer .foot_area .tit {
    text-align: center;
    font-size: 14px;
    border-bottom: 2px solid #8c6c15;
  }
  footer .foot_area ul {
    margin-top: 15px;
  }
  footer .foot_area ul li {
    min-width: calc((100% - 30px)/4);
    margin-right: 0;
    font-size: 14px;
    text-align: center;
  }
  /*-------pagination-------*/
  .pagination .page-numbers {
    margin-top: 0;
    margin-right: 10px;
  }
  body.page section,
  body.archive section,
  body.single section,
  body.error404 section,
  body.contact section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  body.page h2,
  body.archive h2,
  body.single h2,
  body.error404 h2,
  body.contact h2 {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  body.page h2 .font_s,
  body.archive h2 .font_s,
  body.single h2 .font_s,
  body.error404 h2 .font_s,
  body.contact h2 .font_s {
    font-size: .88rem;
    display: inline-block;
  }
  body.page h2.h2_line .h2,
  body.archive h2.h2_line .h2,
  body.single h2.h2_line .h2,
  body.error404 h2.h2_line .h2,
  body.contact h2.h2_line .h2 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  body.page h2.h2_line .h2_sub,
  body.archive h2.h2_line .h2_sub,
  body.single h2.h2_line .h2_sub,
  body.error404 h2.h2_line .h2_sub,
  body.contact h2.h2_line .h2_sub {
    margin-top: 10px;
    font-size: 1rem;
  }
  body.page .h2_line,
  body.archive .h2_line,
  body.single .h2_line,
  body.error404 .h2_line,
  body.contact .h2_line {
    padding-bottom: 30px;
  }
  body.page .h2_line h2,
  body.archive .h2_line h2,
  body.single .h2_line h2,
  body.error404 .h2_line h2,
  body.contact .h2_line h2 {
    margin-bottom: 15px;
  }
  body.page .u_line:after,
  body.archive .u_line:after,
  body.single .u_line:after,
  body.error404 .u_line:after,
  body.contact .u_line:after {
    height: 5px;
  }
  body.page #breadcrumb i,
  body.archive #breadcrumb i,
  body.single #breadcrumb i,
  body.error404 #breadcrumb i,
  body.contact #breadcrumb i {
    margin: 0 3px;
  }
  body.page #breadcrumb i:first-child,
  body.archive #breadcrumb i:first-child,
  body.single #breadcrumb i:first-child,
  body.error404 #breadcrumb i:first-child,
  body.contact #breadcrumb i:first-child {
    margin-left: 0;
  }
  body.page header,
  body.archive header,
  body.single header,
  body.error404 header,
  body.contact header {
    z-index: 11;
  }
  body.page header .sp_manu,
  body.archive header .sp_manu,
  body.single header .sp_manu,
  body.error404 header .sp_manu,
  body.contact header .sp_manu {
    color: #8c6c15;
  }
  body.page header .sp_manu a,
  body.archive header .sp_manu a,
  body.single header .sp_manu a,
  body.error404 header .sp_manu a,
  body.contact header .sp_manu a {
    color: #8c6c15;
  }
  body.page header .sp_manu #nav_toggle span,
  body.archive header .sp_manu #nav_toggle span,
  body.single header .sp_manu #nav_toggle span,
  body.error404 header .sp_manu #nav_toggle span,
  body.contact header .sp_manu #nav_toggle span {
    background: #8c6c15;
  }
  body.page header .sp_manu #nav_toggle:after,
  body.archive header .sp_manu #nav_toggle:after,
  body.single header .sp_manu #nav_toggle:after,
  body.error404 header .sp_manu #nav_toggle:after,
  body.contact header .sp_manu #nav_toggle:after {
    color: #8c6c15;
  }
  body.page .mv,
  body.archive .mv,
  body.single .mv,
  body.error404 .mv,
  body.contact .mv {
    padding: 30px 0;
  }
  body.page .mv .mv_txt .txt01,
  body.archive .mv .mv_txt .txt01,
  body.single .mv .mv_txt .txt01,
  body.error404 .mv .mv_txt .txt01,
  body.contact .mv .mv_txt .txt01 {
    font-size: 30px;
    margin: 0;
    margin-bottom: 10px;
  }
  body.page .mv .mv_txt .txt02,
  body.archive .mv .mv_txt .txt02,
  body.single .mv .mv_txt .txt02,
  body.error404 .mv .mv_txt .txt02,
  body.contact .mv .mv_txt .txt02 {
    font-size: 14px;
  }
  body.page .tit,
  body.archive .tit,
  body.single .tit,
  body.error404 .tit,
  body.contact .tit {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  body.page .white_box,
  body.archive .white_box,
  body.single .white_box,
  body.error404 .white_box,
  body.contact .white_box {
    padding: 15px;
    border-radius: 15px;
  }
  body.page .cta,
  body.archive .cta,
  body.single .cta,
  body.error404 .cta,
  body.contact .cta {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  body.page .cta .white_box,
  body.archive .cta .white_box,
  body.single .cta .white_box,
  body.error404 .cta .white_box,
  body.contact .cta .white_box {
    padding: 30px;
    border-radius: 0;
  }
  body.page .qa h2,
  body.archive .qa h2,
  body.single .qa h2,
  body.error404 .qa h2,
  body.contact .qa h2 {
    margin-bottom: 0;
  }
  body.page .qa dl.accordion,
  body.archive .qa dl.accordion,
  body.single .qa dl.accordion,
  body.error404 .qa dl.accordion,
  body.contact .qa dl.accordion {
    margin-bottom: 10px;
  }
  body.page .qa dl.accordion dt,
  body.archive .qa dl.accordion dt,
  body.single .qa dl.accordion dt,
  body.error404 .qa dl.accordion dt,
  body.contact .qa dl.accordion dt {
    font-size: 16px;
    padding: 0;
    border-bottom: 3px solid #8c6c15;
  }
  body.page .qa dl.accordion dt:after,
  body.archive .qa dl.accordion dt:after,
  body.single .qa dl.accordion dt:after,
  body.error404 .qa dl.accordion dt:after,
  body.contact .qa dl.accordion dt:after {
    height: 30px;
    line-height: 30px;
    width: 30px;
    right: 3px;
  }
  body.page .qa dl.accordion dd,
  body.archive .qa dl.accordion dd,
  body.single .qa dl.accordion dd,
  body.error404 .qa dl.accordion dd,
  body.contact .qa dl.accordion dd {
    padding: 10px 0 10px;
    font-size: 14px;
  }
  body.page .payment,
  body.archive .payment,
  body.single .payment,
  body.error404 .payment,
  body.contact .payment {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  body.page .payment .white_box,
  body.archive .payment .white_box,
  body.single .payment .white_box,
  body.error404 .payment .white_box,
  body.contact .payment .white_box {
    padding: 30px 15px;
    border-radius: 15px;
  }
  body.page .payment .white_box h2,
  body.archive .payment .white_box h2,
  body.single .payment .white_box h2,
  body.error404 .payment .white_box h2,
  body.contact .payment .white_box h2 {
    margin-bottom: 15px;
  }
  body.page .payment .white_box .h2_line,
  body.archive .payment .white_box .h2_line,
  body.single .payment .white_box .h2_line,
  body.error404 .payment .white_box .h2_line,
  body.contact .payment .white_box .h2_line {
    margin-top: 15px;
    padding-bottom: 20px;
  }
  /*-------個別ページ記載順-------*/
  /*-------
-プラン・料金
-ジュニアクラス
-シミュレーションルーム一覧
-プライバシーポリシー
-インストラクター紹介

-------*/
  #post-plan .mv, .plan_contents .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-plan .mv .bg, .plan_contents .mv .bg {
    background: url(../../img/plan_mv.jpg) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  #post-plan .mv .bg .container, .plan_contents .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-plan .mv_txt, .plan_contents .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  #post-plan .sec01 .fx-row, #post-plan .sec02 .fx-row, .plan_contents .sec01 .fx-row, .plan_contents .sec02 .fx-row {
    margin-top: -15px;
  }
  #post-plan .sec01 .f_item, #post-plan .sec02 .f_item, .plan_contents .sec01 .f_item, .plan_contents .sec02 .f_item {
    margin-top: 15px;
  }
  #post-plan .table ul .th, .plan_contents .table ul .th {
    font-size: 16px;
  }
  #post-plan .table ul li, .plan_contents .table ul li {
    padding: 15px;
  }
  #post-plan .table .table_head, .plan_contents .table .table_head {
    color: #8c6c15;
    font-weight: bold;
    width: 110px;
    margin-bottom: 1px;
    align-items: center;
    align-items: baseline;
  }
  #post-plan .table .table_head.sp_full, .plan_contents .table .table_head.sp_full {
    width: 100%;
  }
  #post-plan .table .table_body, .plan_contents .table .table_body {
    width: calc(100% - 112px);
    border-top: 0;
    background-color: #fff;
    margin-bottom: 1px;
    padding: 15px;
  }
  #post-plan .table .table_body.sp_full, .plan_contents .table .table_body.sp_full {
    width: 100%;
  }
  #post-plan .table .table_body.td_col, .plan_contents .table .table_body.td_col {
    margin-right: 1px;
    width: calc((100% - 2px) / 2);
  }
  #post-plan .table .table_body:last-child, .plan_contents .table .table_body:last-child {
    margin-right: 0;
  }
  #post-plan .table table th.s_of, .plan_contents .table table th.s_of {
    display: none;
  }
  #post-plan .table table tr, .plan_contents .table table tr {
    border-bottom: 1px solid #f2f1f0;
  }
  #post-plan .table table .table_body, .plan_contents .table table .table_body {
    border-left: 1px solid #f2f1f0;
  }
  #post-junior .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-junior .mv .bg {
    background: url(../../img/junior_mv.jpg) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  #post-junior .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-junior .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  #post-junior .about {
    padding-top: 50px;
  }
  #post-junior .about .white_box {
    padding: 30px 15px;
  }
  #post-room .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-room .mv .bg {
    background: url(../../img//room/room_mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  #post-room .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-room .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  #post-room .about {
    padding-top: 50px;
  }
  #post-room .about .white_box {
    padding: 30px 15px;
  }
  #post-room .sec01 .icon {
    margin-bottom: 15px;
  }
  #post-room .sec01 p {
    line-height: 2;
  }
  #post-room .sec01 .f_item:nth-child(1),
  #post-room .sec01 .f_item:nth-child(2) {
    margin-bottom: 15px;
  }
  #post-room .sec02 .h2_line {
    padding-bottom: 50px;
  }
  #post-room .sec02 .white_box {
    left: 0;
    margin-left: 15px;
    padding-right: 15px;
    width: auto;
    border-radius: 15px 0 0 15px;
  }
  #post-room .sec02 .white_box .box {
    width: auto;
  }
  #post-room .sec02 .white_box h3 {
    font-size: 35px;
    margin-top: -40px;
  }
  #post-room .sec02 .white_box h3 span {
    position: relative;
    top: -9px;
    font-size: 40px;
    left: -7px;
  }
  #post-room .sec02 .white_box h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #post-room .sec02 .white_box ul li .txt .Sorts {
    font-size: 24px;
  }
  #post-room .sec02 .white_box ul li a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    text-decoration: none;
    flex-direction: column;
  }
  #post-room .sec02 .white_box ul li .txt {
    line-height: 1;
    margin-bottom: 25px;
  }
  #post-room .sec02 .white_box ul li .txt .txtsub {
    font-size: 18px;
  }
  #post-room .sec03 .white_box {
    margin-right: 15px;
    padding-left: 15px;
    width: auto;
    border-radius: 0 15px 15px 0;
  }
  #post-room .sec03 .white_box .box {
    width: auto;
  }
  #post-room .sec03 .white_box h3 {
    font-size: 35px;
    margin-top: -20px;
  }
  #post-room .sec03 .white_box h3 span {
    position: relative;
    top: -9px;
    font-size: 40px;
    left: -7px;
  }
  #post-room .sec03 .white_box h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #post-room .sec03 .white_box ul li .txt .Sorts {
    font-size: 24px;
  }
  #post-room .sec03 .white_box ul li a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    text-decoration: none;
    flex-direction: column;
  }
  #post-room .sec03 .white_box ul li .txt {
    line-height: 1;
    margin-bottom: 25px;
  }
  #post-room .sec03 .white_box ul li .txt .txtsub {
    font-size: 18px;
  }
  #post-room .sec04 .white_box {
    left: 0;
    margin-left: 15px;
    padding-right: 15px;
    width: auto;
    border-radius: 15px 0 0 15px;
  }
  #post-room .sec04 .white_box .box {
    width: auto;
  }
  #post-room .sec04 .white_box h3 {
    font-size: 35px;
    margin-top: -20px;
  }
  #post-room .sec04 .white_box h3 span {
    position: relative;
    top: -9px;
    font-size: 40px;
    left: -7px;
  }
  #post-room .sec04 .white_box h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #post-room .sec04 .white_box ul li .txt .Sorts {
    font-size: 24px;
  }
  #post-room .sec04 .white_box ul li a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    text-decoration: none;
    flex-direction: column;
  }
  #post-room .sec04 .white_box ul li .txt {
    line-height: 1;
    margin-bottom: 25px;
  }
  #post-room .sec04 .white_box ul li .txt .txtsub {
    font-size: 18px;
  }
  body.parent-pageid-206.room1 .mv, body.parent-pageid-206.room2 .mv, body.parent-pageid-206.room3 .mv, body.parent-pageid-206.vip .mv, body.parent-pageid-206.vip2 .mv, body.parent-pageid-206.lounge .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  body.parent-pageid-206.room1 .mv .bg, body.parent-pageid-206.room2 .mv .bg, body.parent-pageid-206.room3 .mv .bg, body.parent-pageid-206.vip .mv .bg, body.parent-pageid-206.vip2 .mv .bg, body.parent-pageid-206.lounge .mv .bg {
    background: url(../../img//room/room1_mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  body.parent-pageid-206.room1 .mv .bg .container, body.parent-pageid-206.room2 .mv .bg .container, body.parent-pageid-206.room3 .mv .bg .container, body.parent-pageid-206.vip .mv .bg .container, body.parent-pageid-206.vip2 .mv .bg .container, body.parent-pageid-206.lounge .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  body.parent-pageid-206.room1 .mv_txt, body.parent-pageid-206.room2 .mv_txt, body.parent-pageid-206.room3 .mv_txt, body.parent-pageid-206.vip .mv_txt, body.parent-pageid-206.vip2 .mv_txt, body.parent-pageid-206.lounge .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  body.parent-pageid-206.room2 .mv .bg {
    background: url(../../img/room/room2_mv.png) no-repeat center;
  }
  body.parent-pageid-206.room3 .mv .bg {
    background: url(../../img/room/room3_mv.png) no-repeat center;
  }
  body.parent-pageid-206.vip .mv .bg {
    background: url(../../img/room/vip_mv.png) no-repeat center;
  }
  body.parent-pageid-206.vip2 .mv .bg {
    background: url(../../img/room/vip2_mv.png) no-repeat center;
  }
  body.parent-pageid-206.lounge .mv .bg {
    background: url(../../img/room/lounge_mv.png) no-repeat center;
  }
  body.parent-pageid-206.lounge .sec01 {
    padding-top: 30px;
  }
  body.parent-pageid-206.lounge .sec01 ul {
    margin-top: 0;
  }
  body.parent-pageid-206.lounge .sec01 ul li {
    margin-bottom: 15px;
  }
  body.parent-pageid-206.lounge .sec01 ul li:last-child {
    margin-bottom: 0;
    margin-top: 0;
  }
  body.parent-pageid-206 .sec01 {
    padding-bottom: 50px;
  }
  body.parent-pageid-206 .sec01 ul {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  body.parent-pageid-206 .sec01 ul li:first-child {
    margin-bottom: 15px;
  }
  body.parent-pageid-206 .sec01 ul li:last-child {
    margin-top: 15px;
  }
  body.parent-pageid-206 .sec01 table {
    border-spacing: 1px;
    font-size: 14px;
  }
  body.parent-pageid-206 .sec01 table th {
    background-color: #f1ecde;
    width: 80px;
    padding: 15px;
  }
  body.parent-pageid-206 .sec01 table td {
    padding: 15px;
  }
  #post-lounge .about {
    padding-top: 50px;
  }
  #post-lounge .about .white_box {
    padding: 30px 15px;
  }
  #post-qa .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-qa .mv .bg {
    background: url(../../img/qa_mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  #post-qa .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-qa .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  #post-qa .qa .accordion {
    margin-bottom: 15px;
  }
  #post-qa .qa .accordion:last-child {
    margin-bottom: 0;
  }
  #post-qa .qa .q {
    padding: 8px 15px;
    font-size: 16px;
    align-items: baseline;
  }
  #post-qa .qa .q:after {
    right: 10px;
  }
  #post-qa .qa .a {
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  #post-qa .qa .icon {
    width: 30px;
    flex-shrink: 0;
    font-size: 20px;
  }
  #post-instructor .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-instructor .mv .bg {
    background: url(../../img/instructor_mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  #post-instructor .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-instructor .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  #post-instructor .font_l {
    font-size: 28px;
    line-height: 28px;
  }
  #post-instructor .sec01 .white_box {
    left: 0;
    margin-left: 15px;
    padding-right: 15px;
    width: auto;
    padding: 15px 15px 30px;
    margin-bottom: 30px;
  }
  #post-instructor .sec01 .white_box .box {
    width: auto;
  }
  #post-instructor .sec01 .white_box table {
    margin-left: 0;
    margin-right: 0;
    max-width: calc(100% + 30px);
  }
  #post-instructor .sec01 .white_box table th, #post-instructor .sec01 .white_box table td {
    padding: 15px;
  }
  #post-instructor .sec01 .white_box:nth-child(odd) {
    margin-right: 15px;
    padding-left: 15px;
    width: auto;
    margin-left: 0;
  }
  #post-guide .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-guide .mv .bg {
    background: url(../../img/guide_mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  #post-guide .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-guide .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  #post-guide .sec01 .white_box {
    width: 80%;
    margin-top: 30px;
  }
  #post-guide .sec01 .white_box:after {
    left: -40px;
    top: 70px;
  }
  #post-guide .sec01 .white_box .step {
    width: 60px;
    height: 60px;
    font-size: 12px;
    left: -70px;
    top: 15px;
    z-index: 1;
  }
  #post-guide .sec01 .white_box h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  #post-qa .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-qa .mv .bg {
    background: url(../../img/qa_mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  #post-qa .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-qa .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  #post-qa .qa .accordion {
    margin-bottom: 15px;
  }
  #post-qa .qa .accordion:last-child {
    margin-bottom: 0;
  }
  #post-qa .qa .q {
    padding: 8px 15px;
    font-size: 16px;
    align-items: baseline;
  }
  #post-qa .qa .q:after {
    right: 10px;
  }
  #post-qa .qa .a {
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  #post-qa .qa .icon {
    width: 30px;
    flex-shrink: 0;
    font-size: 20px;
  }
  #post-privacy .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-privacy .mv .bg {
    background: url(../../img/privacy_mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  #post-privacy .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-privacy .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  #post-privacy main h3 {
    font-size: 16px;
  }
  #post-privacy main ul {
    line-height: 1.5;
    line-height: 2;
  }
  #post-privacy main ul li {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  body.contact .mv,
  body.waiting .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  body.contact .mv .bg,
  body.waiting .mv .bg {
    background: url(../../img/contact_mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  body.contact .mv .bg .container,
  body.waiting .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  body.contact .mv .mv_txt,
  body.waiting .mv .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  body.contact .form_head,
  body.waiting .form_head {
    text-align: left;
  }
  body.contact .contact_form .white_box,
  body.waiting .contact_form .white_box {
    border-radius: 15px;
  }
  body.contact form .g_btn_inner02,
  body.waiting form .g_btn_inner02 {
    width: auto;
    height: 80px;
    margin-top: 0;
  }
  body.contact form .g_btn_inner02 .g_btn,
  body.waiting form .g_btn_inner02 .g_btn {
    font-size: 18px;
  }
  body.contact form .cl_red,
  body.waiting form .cl_red {
    font-size: 12px;
    margin-top: 5px;
  }
  body.contact form > ul > li,
  body.waiting form > ul > li {
    padding: 15px;
  }
  body.contact .input_1col,
  body.waiting .input_1col {
    padding-right: 0;
  }
  body.contact .textarea,
  body.waiting .textarea {
    padding-right: 0;
  }
  body.contact .textarea textarea,
  body.waiting .textarea textarea {
    height: 200px;
  }
  body.contact form > ul > li .fx-row > *:first-child,
  body.waiting form > ul > li .fx-row > *:first-child {
    padding-top: 0;
  }
  body.contact .checkagree_inner,
  body.waiting .checkagree_inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  body.contact .checkagree_inner span.wpcf7-list-item,
  body.waiting .checkagree_inner span.wpcf7-list-item {
    margin: 0;
  }
  body.waiting .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  body.waiting .mv .bg {
    background: url(../../img/waiting_mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  body.waiting .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-thanks .mv_txt,
  #post-waitingthanks .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  #post-thanks .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-thanks .mv .bg {
    background: url(../../img/contact_mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  #post-thanks .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-waitingthanks .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-waitingthanks .mv .bg {
    background: url(../../img/waiting_mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  #post-waitingthanks .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-sitemap .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  #post-sitemap .mv .bg {
    background: url(../../img/mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  #post-sitemap .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  #post-sitemap .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  #post-sitemap main ul li {
    margin-bottom: 15px;
  }
  body.error404 .mv {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
  body.error404 .mv .bg {
    background: url(../../img/mv.png) no-repeat center;
    width: 100%;
    background-size: cover;
    border-radius: 0 15px 15px 0;
  }
  body.error404 .mv .bg .container {
    position: relative;
    margin-right: 0;
  }
  body.error404 .mv .mv_txt {
    position: relative;
    padding: 50px 0;
  }
  /*-------LP-------------------*/
  body.lp header .container {
    width: 100%;
    padding: 0;
  }
  body.lp header .contact {
    display: block;
  }
  body.lp header .g_btn_inner02 {
    width: 150px;
    margin: 0;
  }
  body.lp header .g_btn_inner02 .g_btn {
    font-size: 12px;
    padding: 7px 10px;
  }
  body.lp header .g_btn_inner02 .g_btn .arrow {
    right: 12px;
  }
  body.lp header .g_btn_inner02 .g_btn .arrow:before {
    left: 13px;
    width: 10px;
    height: 1px;
    background: #FFF;
  }
  body.lp .font_l {
    font-size: 24px;
    line-height: 24px;
  }
  body.lp .font_l span {
    position: relative;
  }
  body.lp .font_l span::before {
    content: "";
    width: 15px;
    height: 2px;
    left: -20px;
  }
  body.lp .font_l span::after {
    content: "";
    width: 15px;
    height: 2px;
    right: -20px;
  }
  body.lp .mv {
    padding-bottom: 0;
    padding-top: 0;
  }
  body.lp .mv .mv_txt {
    padding: 0;
  }
  body.lp main section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  body.lp main .g_btn_inner02 {
    margin-top: 15px;
    width: 100%;
  }
  body.lp main .g_btn_inner02 .g_btn {
    font-size: 18px;
    padding: 15px;
  }
  body.lp main .g_btn_inner02 .g_btn .arrow {
    right: 25px;
  }
  body.lp .sec01 .box {
    width: 75vw;
    height: 75vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
  }
  body.lp .sec02 .bg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  body.lp .sec02 .box_slider_inner {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
  }
  body.lp .sec02 .box_slider_inner .prev-arrow {
    left: 5px;
    top: auto;
    bottom: 5px;
    background-size: 100%;
    width: 45px;
    height: 45px;
  }
  body.lp .sec02 .box_slider_inner .next-arrow {
    right: 5px;
    top: auto;
    bottom: 5px;
    background-size: 100%;
    width: 45px;
    height: 45px;
  }
  body.lp .sec02 .slick-dots {
    bottom: -10px;
    position: relative;
  }
  body.lp .sec02 .slick-arrow {
    display: none !important;
  }
  body.lp .sec02 .inner {
    padding: 15px;
  }
  body.lp .sec02 .inner h3 {
    font-size: 18px;
    margin-bottom: 0;
  }
  body.lp .sec02 .inner .box {
    padding: 20px 0;
  }
  body.lp .sec02 .inner .f_item.border {
    border-right: none;
    border-bottom: solid #8c6c15 1px;
    margin-left: 15px;
    margin-right: 15px;
  }
  body.lp .sec02 .inner .txt {
    font-size: 16px;
  }
  body.lp .sec02 .inner02 {
    margin-top: 30px;
    padding: 15px;
  }
  body.lp .sec02 .inner02 h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  body.lp .sec02 .inner02 .white_box {
    padding: 15px;
    border-radius: 10px;
  }
  body.lp .sec02 .inner02 .white_box .title {
    border-left: solid #8c6c15 3px;
    padding-left: 10px;
    font-size: 18px;
    line-height: 1.5;
  }
  body.lp .sec02 .inner02 .white_box .gray_box {
    margin-top: 15px;
    padding: 15px;
    font-size: 14px;
  }
  body.lp .sec02 .inner02 .white_box .txt span {
    font-size: 18px;
  }
  body.lp .sec03 .white_box {
    margin-top: 30px;
    padding: 15px;
  }
  body.lp .sec03 .white_box .gray_box {
    padding: 15px;
  }
  body.lp .sec03 .white_box .title {
    border-left: solid #8c6c15 3px;
    padding-left: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  body.lp .sec03 .white_box .dot {
    margin: 15px 0;
  }
  body.lp .plan .table ul .th {
    font-size: 16px;
  }
  body.lp .plan .table ul li {
    padding: 15px;
  }
  body.lp .plan .table .table_head {
    color: #8c6c15;
    font-weight: bold;
    width: 110px;
    margin-bottom: 1px;
    align-items: baseline;
  }
  body.lp .plan .table .table_head.sp_full {
    width: 100%;
  }
  body.lp .plan .table .table_body {
    width: calc(100% - 112px);
    border-top: 0;
    background-color: #fff;
    margin-bottom: 1px;
    padding: 15px;
  }
  body.lp .plan .table .table_body.sp_full {
    width: 100%;
    justify-content: flex-start;
  }
  body.lp .plan .table .table_body.td_col {
    margin-right: 0;
    width: 100%;
    justify-content: flex-start;
  }
  body.lp .plan .table .table_body:last-child {
    margin-right: 0;
  }
  body.lp .plan .table table th.s_of {
    display: none;
  }
  body.lp .plan .table table tr {
    border-bottom: 1px solid #f2f1f0;
  }
  body.lp .plan .table table .table_body {
    border-left: 1px solid #f2f1f0;
  }
  body.lp .sec04 .white_box, body.lp .sec04 .white_box:nth-child(odd) {
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 0;
    left: auto;
    margin-bottom: 15px;
  }
  body.lp .sec04 .white_box .name, body.lp .sec04 .white_box:nth-child(odd) .name {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 5px;
  }
  body.lp .sec04 .white_box .name .min, body.lp .sec04 .white_box:nth-child(odd) .name .min {
    margin-top: 15px;
  }
  body.lp .sec04 .white_box .name .Sorts, body.lp .sec04 .white_box:nth-child(odd) .name .Sorts {
    margin-left: 0;
    font-size: 16px;
  }
  body.lp .sec04 .white_box .box, body.lp .sec04 .white_box:nth-child(odd) .box {
    width: 100%;
    margin-left: auto;
  }
  body.lp .sec04 .white_box table th, body.lp .sec04 .white_box:nth-child(odd) table th {
    width: 115px;
  }
  body.lp .sec04 .white_box:last-child, body.lp .sec04 .white_box:nth-child(odd):last-child {
    margin-bottom: 0;
  }
  body.lp .sec05 .h2_line {
    padding-bottom: 15px;
  }
  body.lp .sec05 .box {
    border-radius: 15px;
    padding: 30px 15px;
  }
  body.lp .sec05 .box h3 {
    margin: 15px 0;
    font-size: 22px;
    line-height: 1.2;
  }
  body.lp .sec05 .spwd50 {
    width: 40% !important;
  }
  body.lp .sec06 .h2_line {
    padding-bottom: 0;
  }
  body.lp .sec06 .white_box h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  body.lp .sec06 .white_box h3 .Sorts {
    font-size: 16px;
    width: 80px;
    margin-right: 15px;
  }
  body.lp .sec06 .white_box h3 .font_m {
    font-size: 22px;
  }
  body.lp .sec06 .white_box .arrow {
    border-width: 35px 60px 0 60px;
    bottom: -30px;
  }
  body.lp .sec07 .h2_line {
    padding-bottom: 30px;
  }
  body.lp .sec07 .map {
    margin-bottom: 30px;
  }
  body.lp .sec07 .map iframe {
    height: 300px;
  }
  body.lp .sec07 .table ul:nth-child(odd) {
    background-color: transparent;
  }
  body.lp .sec07 .table ul .table_head {
    width: 100%;
    background-color: #f2f1f0;
    padding: 15px;
  }
  body.lp .sec07 .table ul .table_head {
    width: 100%;
    padding: 15px;
  }
  body.lp .sec07 .table ul .table_body {
    width: 100%;
    padding: 15px;
  }
  body.lp .sec08 dl dt {
    font-size: 18px;
    padding: 10px 15px;
    align-items: baseline;
  }
  body.lp .sec08 dl dt .icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 10px;
  }
  body.lp .sec08 dl dt .txt {
    width: calc(100% - 40px);
    line-height: 1.2;
  }
  body.lp .sec08 dl dd .box {
    padding: 15px;
    font-size: 14px;
  }
  body.lp .sec08 dl dd .box .icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 10px;
  }
  body.lp .sec08 dl dd .box p:last-child {
    width: calc(100% - 40px);
  }
  body.lp .sec09 form .g_btn_inner02 {
    width: 100%;
    height: 80px;
    margin-top: 0;
  }
  body.lp .sec09 form .g_btn_inner02 .g_btn {
    height: 80px;
    font-size: 18px;
  }
  body.lp .sec09 .form_head {
    text-align: left;
  }
  body.lp .sec09 form > ul > li {
    padding: 15px;
  }
  body.lp .sec09 .input_1col {
    padding-right: 0;
  }
  body.lp .sec09 .textarea {
    padding-right: 0;
  }
  body.lp .sec09 .textarea textarea {
    height: 200px;
  }
  body.lp .sec09 form > ul > li .fx-row > *:first-child {
    padding-top: 0;
  }
  body.lp .sec09 .checkagree_inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  body.lp .sec09 .checkagree_inner span.wpcf7-list-item {
    margin: 0;
  }
  body.lp.page-template-page-lp_lesson header .g_btn_inner02 {
    width: 150px;
  }
  body.lp.page-template-page-lp_lesson .mv .bg {
    background: url(../../img/lp/lesson/pc_mv_bg.png) center;
    background-size: cover;
  }
  body.lp.page-template-page-lp_lesson .mv .mv_txt {
    padding: 40px 15px;
  }
  body.lp.page-template-page-lp_lesson .cta_l .box {
    position: relative;
    padding: 15px;
    background: #FFF;
    line-height: 1.5;
  }
  body.lp.page-template-page-lp_lesson .cta_l .box .rbn {
    position: relative;
    left: -30px;
    top: -10px;
    width: 250px;
  }
  body.lp.page-template-page-lp_lesson .cta_l .g_btn_inner02 {
    margin: 15px 0 0;
    width: 100%;
  }
  body.lp.page-template-page-lp_lesson .lp_personal .bg {
    background: #baa773;
    padding: 1px;
  }
  body.lp.page-template-page-lp_lesson .lp_personal .bg .inner {
    position: relative;
    width: auto;
    margin: 30px 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_personal .bg .inner:before {
    content: "";
    width: 25px;
    height: 1px;
  }
  body.lp.page-template-page-lp_lesson .lp_personal .bg .inner:after {
    content: "";
    width: 1px;
    height: 50px;
  }
  body.lp.page-template-page-lp_lesson .lp_personal .bg .txt {
    color: #FFF;
    padding: 15px 30px;
    font-size: 16px;
    line-height: 2;
  }
  body.lp.page-template-page-lp_lesson .lp_personal .bg .txt:before {
    content: "";
    width: 25px;
    height: 1px;
  }
  body.lp.page-template-page-lp_lesson .lp_personal .bg .txt:after {
    content: "";
    width: 1px;
    height: 50px;
  }
  body.lp.page-template-page-lp_lesson .lp_merit h2 .font_m {
    font-size: 40px;
  }
  body.lp.page-template-page-lp_lesson .lp_merit .white_box {
    font-size: 16px;
    border-radius: 0;
  }
  body.lp.page-template-page-lp_lesson .lp_merit .white_box .icon {
    background-color: #8c6c15;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
  }
  body.lp.page-template-page-lp_lesson .lp_merit .white_box .Sorts {
    font-size: 22px;
    text-align: center;
  }
  body.lp.page-template-page-lp_lesson .lp_merit .white_box .Sorts span {
    font-size: 28px;
  }
  body.lp.page-template-page-lp_lesson .lp_merit .white_box:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent #d9d2bf transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box {
    width: auto;
    position: relative;
    left: auto;
    padding: 15px;
    margin: 0 15px 15px;
    border-radius: 0;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box:last-child {
    left: auto;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box:nth-child(odd) {
    left: auto;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box:nth-child(odd) .box {
    width: auto;
    margin-left: 0;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box .box {
    width: auto;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box .title {
    border-left: solid #8c6c15 3px;
    padding-left: 10px;
    font-size: 18px;
    line-height: 1.5;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box .txt {
    text-align: center;
    line-height: 1.2;
    margin-top: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_room .white_box .gray_box {
    margin-top: 15px;
    padding: 15px;
    font-size: 14px;
  }
  body.lp.page-template-page-lp_lesson .lp_step h2 .h2_m {
    margin-top: 15px;
    font-size: 25px;
    line-height: 1.2;
  }
  body.lp.page-template-page-lp_lesson .lp_step .white_box h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_step .white_box h3 .Sorts {
    font-size: 16px;
    width: 80px;
    margin-right: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_step .white_box h3 .font_m {
    font-size: 22px;
  }
  body.lp.page-template-page-lp_lesson .lp_step .white_box .arrow {
    border-width: 35px 60px 0 60px;
    bottom: -30px;
  }
  body.lp.page-template-page-lp_lesson .lp_voice .box {
    background: #8c6c15;
    padding: 15px;
    color: #FFF;
    line-height: 1.5;
    border: solid 1px #8c6c15;
  }
  body.lp.page-template-page-lp_lesson .lp_voice .box .txt_box {
    width: 100%;
  }
  body.lp.page-template-page-lp_lesson .lp_voice .box .txt_box .tit {
    font-size: 22px;
    line-height: 1.3;
  }
  body.lp.page-template-page-lp_lesson .lp_voice .box .txt_box .tit_sub {
    font-size: 16px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    margin-top: 10px;
  }
  body.lp.page-template-page-lp_lesson .lp_instructor .fx-row .f_item {
    margin-top: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_instructor .inner {
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_instructor .inner .name {
    font-size: 24px;
    margin-bottom: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_instructor .inner .name .Sorts {
    font-size: 16px;
  }
  body.lp.page-template-page-lp_lesson .lp_instructor table tr th {
    width: 100px;
  }
  body.lp.page-template-page-lp_lesson .lp_instructor .g_btn_inner02 .g_btn {
    font-size: 14px;
    padding: 10px 5px;
  }
  body.lp.page-template-page-lp_lesson .lp_plan {
    background-size: auto;
  }
  body.lp.page-template-page-lp_lesson .lp_plan .white_box {
    margin-top: 30px;
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_plan .white_box .gray_box {
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_plan .white_box .title {
    border-left: solid #8c6c15 3px;
    padding-left: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  body.lp.page-template-page-lp_lesson .lp_plan .white_box .dot {
    margin: 15px 0;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul .th {
    font-size: 16px;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul li {
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul .table_head {
    color: #8c6c15;
    font-weight: bold;
    width: 110px;
    margin-bottom: 1px;
    align-items: center;
    align-items: baseline;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul .table_head.sp_full {
    width: 100%;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul .table_body {
    width: calc(100% - 112px);
    border-top: 0;
    background-color: #fff;
    margin-bottom: 1px;
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul .table_body.sp_full {
    width: 100%;
    justify-content: flex-start;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul .table_body.td_col {
    margin-right: 0;
    width: 100%;
    justify-content: flex-start;
  }
  body.lp.page-template-page-lp_lesson .plan .table ul .table_body:last-child {
    margin-right: 0;
  }
  body.lp.page-template-page-lp_lesson .lp_recommend .h2_line {
    padding-bottom: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_recommend .box {
    border-radius: 15px;
    padding: 30px 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_recommend .box h3 {
    margin: 15px 0;
    font-size: 22px;
    line-height: 1.2;
  }
  body.lp.page-template-page-lp_lesson .lp_recommend .spwd50 {
    width: 40% !important;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .h2_line {
    padding-bottom: 0;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .white_box h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .white_box h3 .Sorts {
    font-size: 16px;
    width: 80px;
    margin-right: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .white_box h3 .font_m {
    font-size: 22px;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .white_box h3.h3_height {
    line-height: 1.4;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .white_box h3.h3_height .Sorts {
    height: 3.5em;
  }
  body.lp.page-template-page-lp_lesson .lp_flow .white_box .arrow {
    border-width: 35px 60px 0 60px;
    bottom: -30px;
  }
  body.lp.page-template-page-lp_lesson .lp_access .inner {
    display: flex;
    flex-direction: column;
  }
  body.lp.page-template-page-lp_lesson .lp_access .inner .map {
    width: 100%;
  }
  body.lp.page-template-page-lp_lesson .lp_access .inner .map iframe {
    height: 300px;
  }
  body.lp.page-template-page-lp_lesson .lp_access .inner .box {
    width: 100%;
    background-color: #fafafa;
    padding: 15px;
    margin-bottom: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_access .table {
    width: auto;
  }
  body.lp.page-template-page-lp_lesson .lp_access .table ul {
    background-color: transparent;
  }
  body.lp.page-template-page-lp_lesson .lp_access .table ul .table_head {
    width: 100%;
    background-color: #f2f1f0;
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_access .table ul .table_head {
    width: 100%;
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_access .table ul .table_body {
    width: 100%;
    padding: 15px;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dt {
    font-size: 18px;
    padding: 10px 15px;
    align-items: baseline;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dt .icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 10px;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dt .txt {
    width: calc(100% - 40px);
    line-height: 1.2;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dd .box {
    padding: 15px;
    font-size: 14px;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dd .box .icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 10px;
  }
  body.lp.page-template-page-lp_lesson .lp_qa dl dd .box p:last-child {
    width: calc(100% - 40px);
  }
  body.lp.page-template-page-lp_golf .btn_inner {
    margin: 0 auto;
  }
  body.lp.page-template-page-lp_golf .btn_inner .g_btn_inner02 .g_btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  body.lp.page-template-page-lp_golf .btn_inner .g_btn_inner02 .g_btn_tel {
    font-size: 14px;
    padding: 10px 20px;
  }
  /*----------------------------*/
}

/*スマホ用スタイルend*/
