@charset "UTF-8";
/* /////////////////////////////////

  _reset.scss

///////////////////////////////// */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1.5;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* /////////////////////////////////

  _base.scss

///////////////////////////////// */
/*---------------------------------

  #Base Modules

---------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  min-height: 100vh;
  scroll-behavior: smooth;
}

main {
  display: block;
}

p {
  text-align: justify;
  text-justify: inter-ideograph;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

hr {
  border-top-width: 1px;
}

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

code, kbd, pre, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

/* for IE7 */
* + html code, kbd, pre, samp, tt {
  font-size: 108%;
}

article > * + * {
  margin-top: 1.5em;
}

.content a:not([class]) {
  color: #333;
  text-decoration: underline;
}

a {
  color: #333;
  font-size: 1.6rem;
}

a[href*="tel:"] {
  display: inline-block;
  text-decoration: none !important;
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  .content a:not([class]):hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }

  a[href*="tel:"]:not([class]) {
    text-decoration: underline !important;
  }
}
/* ------ form --------------------------------- */
button, fieldset, form, input,
label, legend, select, textarea {
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

input, textarea {
  vertical-align: middle;
  padding: 1px;
}

textarea {
  max-width: 98%;
}

input[type=radio],
input[type=checkbox] {
  vertical-align: baseline;
  margin-right: 3px;
}

figcaption {
  margin: 5px 0 0;
  text-align: center;
}

/* ------ clearfix scheme ---------------------- */
.clearfix::after {
  content: " ";
  display: block;
  visibility: hidden;
  height: 0;
  font-size: 0;
  clear: both;
}

* html div {
  zoom: 1;
}

/* IE6 */
*:first-child + html div {
  zoom: 1;
}

/* IE7 */
/*---------------------------------
  ACMS
---------------------------------*/
#adminBox {
  width: 100%;
  margin-bottom: 0 !important;
  z-index: 99999;
}

/* /////////////////////////////////

  _parts.scss

///////////////////////////////// */
/*---------------------------------

  #Layout Modules

---------------------------------*/
.content p,
.content ul,
.content dl,
.content ol,
.content table,
.content blockquote {
  margin: 20px 0 0;
  line-height: 1.7;
}
.content ul ul,
.content ul ol,
.content ol ul,
.content dl ul,
.content dl ol,
.content table p,
.content table ul,
.content table dl,
.content table ol {
  margin: 0;
}
.content .column-image-left,
.content .column-image-center,
.content .column-image-right {
  margin-top: 20px !important;
}
.content a:not[class] {
  color: #333;
}

/*---------------------------------

  #Helper Modules

---------------------------------*/
._small {
  font-size: 87%;
}

._x-small {
  font-size: 78%;
}

._large {
  font-size: 107%;
}

._x-large {
  font-size: 120%;
}

._attention {
  color: #FF3366;
}

._bold {
  font-weight: bold;
}

._center {
  text-align: center !important;
}

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

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

._pos-center {
  margin-left: auto;
  margin-right: auto;
}

._pos-right {
  margin-left: auto;
  margin-right: 0;
}

._pos-left {
  margin-left: 0;
  margin-right: auto;
}

._float-l {
  float: left;
}

._float-r {
  float: right;
}

._clear {
  clear: both;
}

._img-l {
  float: left;
  margin: 0 25px 10px 0 !important;
}

._img-r {
  float: right;
  margin: 0 0 10px 25px !important;
}

._nocss {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

._anchorPoint {
  margin-top: -60px;
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  ._anchorPoint {
    margin-top: -60px;
    padding-top: 60px;
  }
}
._extend-anchor::before {
  content: "";
  pointer-events: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
}

._clearfix::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background: transparent;
  clear: both;
  float: none;
}

._mincho {
  font-family: ten-mincho, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  font-style: normal;
}

._pc {
  display: block !important;
}

._sp {
  display: none !important;
}

span._pc {
  display: inline !important;
}

br._pc {
  display: block;
}

br._sp {
  display: none;
}

@media screen and (max-width: 768px) {
  ._pc {
    display: none !important;
  }

  ._sp {
    display: block !important;
  }

  span._pc {
    display: none !important;
  }

  span._sp {
    display: inline-block !important;
  }

  br._pc {
    display: none;
  }

  br._sp {
    display: block;
  }

  ._img-l,
._img-r {
    width: 100%;
    float: none;
    clear: both;
    margin: 20px 0 0 !important;
  }
}
._m0 {
  margin: 0 !important;
}

._mt0 {
  margin-top: 0 !important;
}

._mb0 {
  margin-bottom: 0 !important;
}

._mr0 {
  margin-right: 0 !important;
}

._ml0 {
  margin-left: 0 !important;
}

._mx0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

._my0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

._mt5 {
  margin-top: 5px !important;
}

._mb5 {
  margin-bottom: 5px !important;
}

._mr5 {
  margin-right: 5px !important;
}

._ml5 {
  margin-left: 5px !important;
}

._mx5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

._my5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

._mt10 {
  margin-top: 10px !important;
}

._mb10 {
  margin-bottom: 10px !important;
}

._mr10 {
  margin-right: 10px !important;
}

._ml10 {
  margin-left: 10px !important;
}

._mx10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

._my10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

._mt15 {
  margin-top: 15px !important;
}

._mb15 {
  margin-bottom: 15px !important;
}

._mr15 {
  margin-right: 15px !important;
}

._ml15 {
  margin-left: 15px !important;
}

._mx15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

._my15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

._mt20 {
  margin-top: 20px !important;
}

._mb20 {
  margin-bottom: 20px !important;
}

._mr20 {
  margin-right: 20px !important;
}

._ml20 {
  margin-left: 20px !important;
}

._mx20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

._my20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

._mt25 {
  margin-top: 25px !important;
}

._mb25 {
  margin-bottom: 25px !important;
}

._mr25 {
  margin-right: 25px !important;
}

._ml25 {
  margin-left: 25px !important;
}

._mx25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

._my25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

._mt30 {
  margin-top: 30px !important;
}

._mb30 {
  margin-bottom: 30px !important;
}

._mr30 {
  margin-right: 30px !important;
}

._ml30 {
  margin-left: 30px !important;
}

._mx30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

._my30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

._mt35 {
  margin-top: 35px !important;
}

._mb35 {
  margin-bottom: 35px !important;
}

._mr35 {
  margin-right: 35px !important;
}

._ml35 {
  margin-left: 35px !important;
}

._mx35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}

._my35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

._mt40 {
  margin-top: 40px !important;
}

._mb40 {
  margin-bottom: 40px !important;
}

._mr40 {
  margin-right: 40px !important;
}

._ml40 {
  margin-left: 40px !important;
}

._mx40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

._my40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

._mt45 {
  margin-top: 45px !important;
}

._mb45 {
  margin-bottom: 45px !important;
}

._mr45 {
  margin-right: 45px !important;
}

._ml45 {
  margin-left: 45px !important;
}

._mx45 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}

._my45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

._mt50 {
  margin-top: 50px !important;
}

._mb50 {
  margin-bottom: 50px !important;
}

._mr50 {
  margin-right: 50px !important;
}

._ml50 {
  margin-left: 50px !important;
}

._mx50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

._my50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

._mt55 {
  margin-top: 55px !important;
}

._mb55 {
  margin-bottom: 55px !important;
}

._mr55 {
  margin-right: 55px !important;
}

._ml55 {
  margin-left: 55px !important;
}

._mx55 {
  margin-left: 55px !important;
  margin-right: 55px !important;
}

._my55 {
  margin-top: 55px !important;
  margin-bottom: 55px !important;
}

._mt60 {
  margin-top: 60px !important;
}

._mb60 {
  margin-bottom: 60px !important;
}

._mr60 {
  margin-right: 60px !important;
}

._ml60 {
  margin-left: 60px !important;
}

._mx60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

._my60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

._mt65 {
  margin-top: 65px !important;
}

._mb65 {
  margin-bottom: 65px !important;
}

._mr65 {
  margin-right: 65px !important;
}

._ml65 {
  margin-left: 65px !important;
}

._mx65 {
  margin-left: 65px !important;
  margin-right: 65px !important;
}

._my65 {
  margin-top: 65px !important;
  margin-bottom: 65px !important;
}

._mt70 {
  margin-top: 70px !important;
}

._mb70 {
  margin-bottom: 70px !important;
}

._mr70 {
  margin-right: 70px !important;
}

._ml70 {
  margin-left: 70px !important;
}

._mx70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}

._my70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

._mt75 {
  margin-top: 75px !important;
}

._mb75 {
  margin-bottom: 75px !important;
}

._mr75 {
  margin-right: 75px !important;
}

._ml75 {
  margin-left: 75px !important;
}

._mx75 {
  margin-left: 75px !important;
  margin-right: 75px !important;
}

._my75 {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}

._mt80 {
  margin-top: 80px !important;
}

._mb80 {
  margin-bottom: 80px !important;
}

._mr80 {
  margin-right: 80px !important;
}

._ml80 {
  margin-left: 80px !important;
}

._mx80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

._my80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

._mt85 {
  margin-top: 85px !important;
}

._mb85 {
  margin-bottom: 85px !important;
}

._mr85 {
  margin-right: 85px !important;
}

._ml85 {
  margin-left: 85px !important;
}

._mx85 {
  margin-left: 85px !important;
  margin-right: 85px !important;
}

._my85 {
  margin-top: 85px !important;
  margin-bottom: 85px !important;
}

._mt90 {
  margin-top: 90px !important;
}

._mb90 {
  margin-bottom: 90px !important;
}

._mr90 {
  margin-right: 90px !important;
}

._ml90 {
  margin-left: 90px !important;
}

._mx90 {
  margin-left: 90px !important;
  margin-right: 90px !important;
}

._my90 {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}

._mt95 {
  margin-top: 95px !important;
}

._mb95 {
  margin-bottom: 95px !important;
}

._mr95 {
  margin-right: 95px !important;
}

._ml95 {
  margin-left: 95px !important;
}

._mx95 {
  margin-left: 95px !important;
  margin-right: 95px !important;
}

._my95 {
  margin-top: 95px !important;
  margin-bottom: 95px !important;
}

._mt100 {
  margin-top: 100px !important;
}

._mb100 {
  margin-bottom: 100px !important;
}

._mr100 {
  margin-right: 100px !important;
}

._ml100 {
  margin-left: 100px !important;
}

._mx100 {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

._my100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

._p0 {
  padding: 0 !important;
}

._pt0 {
  padding-top: 0 !important;
}

._pb0 {
  padding-bottom: 0 !important;
}

._pr0 {
  padding-right: 0 !important;
}

._pl0 {
  padding-left: 0 !important;
}

._px0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

._py0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

._pt5 {
  padding-top: 5px !important;
}

._pb5 {
  padding-bottom: 5px !important;
}

._pr5 {
  padding-right: 5px !important;
}

._pl5 {
  padding-left: 5px !important;
}

._px5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

._py5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

._pt10 {
  padding-top: 10px !important;
}

._pb10 {
  padding-bottom: 10px !important;
}

._pr10 {
  padding-right: 10px !important;
}

._pl10 {
  padding-left: 10px !important;
}

._px10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

._py10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

._pt15 {
  padding-top: 15px !important;
}

._pb15 {
  padding-bottom: 15px !important;
}

._pr15 {
  padding-right: 15px !important;
}

._pl15 {
  padding-left: 15px !important;
}

._px15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

._py15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

._pt20 {
  padding-top: 20px !important;
}

._pb20 {
  padding-bottom: 20px !important;
}

._pr20 {
  padding-right: 20px !important;
}

._pl20 {
  padding-left: 20px !important;
}

._px20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

._py20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

._pt25 {
  padding-top: 25px !important;
}

._pb25 {
  padding-bottom: 25px !important;
}

._pr25 {
  padding-right: 25px !important;
}

._pl25 {
  padding-left: 25px !important;
}

._px25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

._py25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

._pt30 {
  padding-top: 30px !important;
}

._pb30 {
  padding-bottom: 30px !important;
}

._pr30 {
  padding-right: 30px !important;
}

._pl30 {
  padding-left: 30px !important;
}

._px30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

._py30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

._pt35 {
  padding-top: 35px !important;
}

._pb35 {
  padding-bottom: 35px !important;
}

._pr35 {
  padding-right: 35px !important;
}

._pl35 {
  padding-left: 35px !important;
}

._px35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

._py35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

._pt40 {
  padding-top: 40px !important;
}

._pb40 {
  padding-bottom: 40px !important;
}

._pr40 {
  padding-right: 40px !important;
}

._pl40 {
  padding-left: 40px !important;
}

._px40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

._py40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

._pt45 {
  padding-top: 45px !important;
}

._pb45 {
  padding-bottom: 45px !important;
}

._pr45 {
  padding-right: 45px !important;
}

._pl45 {
  padding-left: 45px !important;
}

._px45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

._py45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

._pt50 {
  padding-top: 50px !important;
}

._pb50 {
  padding-bottom: 50px !important;
}

._pr50 {
  padding-right: 50px !important;
}

._pl50 {
  padding-left: 50px !important;
}

._px50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

._py50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

._pt55 {
  padding-top: 55px !important;
}

._pb55 {
  padding-bottom: 55px !important;
}

._pr55 {
  padding-right: 55px !important;
}

._pl55 {
  padding-left: 55px !important;
}

._px55 {
  padding-left: 55px !important;
  padding-right: 55px !important;
}

._py55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

._pt60 {
  padding-top: 60px !important;
}

._pb60 {
  padding-bottom: 60px !important;
}

._pr60 {
  padding-right: 60px !important;
}

._pl60 {
  padding-left: 60px !important;
}

._px60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

._py60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

._pt65 {
  padding-top: 65px !important;
}

._pb65 {
  padding-bottom: 65px !important;
}

._pr65 {
  padding-right: 65px !important;
}

._pl65 {
  padding-left: 65px !important;
}

._px65 {
  padding-left: 65px !important;
  padding-right: 65px !important;
}

._py65 {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}

._pt70 {
  padding-top: 70px !important;
}

._pb70 {
  padding-bottom: 70px !important;
}

._pr70 {
  padding-right: 70px !important;
}

._pl70 {
  padding-left: 70px !important;
}

._px70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}

._py70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

._pt75 {
  padding-top: 75px !important;
}

._pb75 {
  padding-bottom: 75px !important;
}

._pr75 {
  padding-right: 75px !important;
}

._pl75 {
  padding-left: 75px !important;
}

._px75 {
  padding-left: 75px !important;
  padding-right: 75px !important;
}

._py75 {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}

._pt80 {
  padding-top: 80px !important;
}

._pb80 {
  padding-bottom: 80px !important;
}

._pr80 {
  padding-right: 80px !important;
}

._pl80 {
  padding-left: 80px !important;
}

._px80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

._py80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

._pt85 {
  padding-top: 85px !important;
}

._pb85 {
  padding-bottom: 85px !important;
}

._pr85 {
  padding-right: 85px !important;
}

._pl85 {
  padding-left: 85px !important;
}

._px85 {
  padding-left: 85px !important;
  padding-right: 85px !important;
}

._py85 {
  padding-top: 85px !important;
  padding-bottom: 85px !important;
}

._pt90 {
  padding-top: 90px !important;
}

._pb90 {
  padding-bottom: 90px !important;
}

._pr90 {
  padding-right: 90px !important;
}

._pl90 {
  padding-left: 90px !important;
}

._px90 {
  padding-left: 90px !important;
  padding-right: 90px !important;
}

._py90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

._pt95 {
  padding-top: 95px !important;
}

._pb95 {
  padding-bottom: 95px !important;
}

._pr95 {
  padding-right: 95px !important;
}

._pl95 {
  padding-left: 95px !important;
}

._px95 {
  padding-left: 95px !important;
  padding-right: 95px !important;
}

._py95 {
  padding-top: 95px !important;
  padding-bottom: 95px !important;
}

._pt100 {
  padding-top: 100px !important;
}

._pb100 {
  padding-bottom: 100px !important;
}

._pr100 {
  padding-right: 100px !important;
}

._pl100 {
  padding-left: 100px !important;
}

._px100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

._py100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

._w1p {
  width: 1%;
}

._w2p {
  width: 2%;
}

._w3p {
  width: 3%;
}

._w4p {
  width: 4%;
}

._w5p {
  width: 5%;
}

._w6p {
  width: 6%;
}

._w7p {
  width: 7%;
}

._w8p {
  width: 8%;
}

._w9p {
  width: 9%;
}

._w10p {
  width: 10%;
}

._w11p {
  width: 11%;
}

._w12p {
  width: 12%;
}

._w13p {
  width: 13%;
}

._w14p {
  width: 14%;
}

._w15p {
  width: 15%;
}

._w16p {
  width: 16%;
}

._w17p {
  width: 17%;
}

._w18p {
  width: 18%;
}

._w19p {
  width: 19%;
}

._w20p {
  width: 20%;
}

._w21p {
  width: 21%;
}

._w22p {
  width: 22%;
}

._w23p {
  width: 23%;
}

._w24p {
  width: 24%;
}

._w25p {
  width: 25%;
}

._w26p {
  width: 26%;
}

._w27p {
  width: 27%;
}

._w28p {
  width: 28%;
}

._w29p {
  width: 29%;
}

._w30p {
  width: 30%;
}

._w31p {
  width: 31%;
}

._w32p {
  width: 32%;
}

._w33p {
  width: 33%;
}

._w34p {
  width: 34%;
}

._w35p {
  width: 35%;
}

._w36p {
  width: 36%;
}

._w37p {
  width: 37%;
}

._w38p {
  width: 38%;
}

._w39p {
  width: 39%;
}

._w40p {
  width: 40%;
}

._w41p {
  width: 41%;
}

._w42p {
  width: 42%;
}

._w43p {
  width: 43%;
}

._w44p {
  width: 44%;
}

._w45p {
  width: 45%;
}

._w46p {
  width: 46%;
}

._w47p {
  width: 47%;
}

._w48p {
  width: 48%;
}

._w49p {
  width: 49%;
}

._w50p {
  width: 50%;
}

._w51p {
  width: 51%;
}

._w52p {
  width: 52%;
}

._w53p {
  width: 53%;
}

._w54p {
  width: 54%;
}

._w55p {
  width: 55%;
}

._w56p {
  width: 56%;
}

._w57p {
  width: 57%;
}

._w58p {
  width: 58%;
}

._w59p {
  width: 59%;
}

._w60p {
  width: 60%;
}

._w61p {
  width: 61%;
}

._w62p {
  width: 62%;
}

._w63p {
  width: 63%;
}

._w64p {
  width: 64%;
}

._w65p {
  width: 65%;
}

._w66p {
  width: 66%;
}

._w67p {
  width: 67%;
}

._w68p {
  width: 68%;
}

._w69p {
  width: 69%;
}

._w70p {
  width: 70%;
}

._w71p {
  width: 71%;
}

._w72p {
  width: 72%;
}

._w73p {
  width: 73%;
}

._w74p {
  width: 74%;
}

._w75p {
  width: 75%;
}

._w76p {
  width: 76%;
}

._w77p {
  width: 77%;
}

._w78p {
  width: 78%;
}

._w79p {
  width: 79%;
}

._w80p {
  width: 80%;
}

._w81p {
  width: 81%;
}

._w82p {
  width: 82%;
}

._w83p {
  width: 83%;
}

._w84p {
  width: 84%;
}

._w85p {
  width: 85%;
}

._w86p {
  width: 86%;
}

._w87p {
  width: 87%;
}

._w88p {
  width: 88%;
}

._w89p {
  width: 89%;
}

._w90p {
  width: 90%;
}

._w91p {
  width: 91%;
}

._w92p {
  width: 92%;
}

._w93p {
  width: 93%;
}

._w94p {
  width: 94%;
}

._w95p {
  width: 95%;
}

._w96p {
  width: 96%;
}

._w97p {
  width: 97%;
}

._w98p {
  width: 98%;
}

._w99p {
  width: 99%;
}

._w100p {
  width: 100%;
}

@media screen and (max-width: 768px) {
  [class*=_w] {
    width: 100% !important;
  }
  [class*=_w] .link {
    margin: 0;
  }
}
/* --- blockquote --- */
blockquote,
.acms-entry blockquote {
  background: #fff;
  border: 0;
  margin-top: 40px;
  padding: 30px 20px;
}

/*---------------------------------

  #Heading

---------------------------------*/
._ttl-h2,
._ttl-h3,
._ttl-h4,
._ttl-h5,
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4 {
  font-weight: bold;
}

._ttl-h2-design {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  min-height: 165px;
  padding: 15px 0;
  background: url(/wp-content/themes/main/images/common/bg_heading.png) no-repeat center center;
  letter-spacing: 2px;
  font-family: ten-mincho, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 4rem;
}
._ttl-h2-design span {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
}

@media all and (-ms-high-contrast: none) {
  ._ttl-h2-design {
    display: table-cell;
    width: 1000px;
    padding: 10px 0 0;
    vertical-align: middle;
    text-align: center;
  }
  ._ttl-h2-design span {
    margin-right: 0.45em;
  }
}
._ttl-h2,
.wysiwyg h1 {
  font-family: ten-mincho, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 60px 0 0;
  font-size: 3rem;
  position: relative;
}
._ttl-h2 span,
.wysiwyg h1 span {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.6rem;
}

._ttl-h2 a:link {
  text-decoration: underline;
}
._ttl-h2 a:visited {
  text-decoration: underline;
}
._ttl-h2 a:hover,
._ttl-h2 a:active {
  text-decoration: none;
}

._ttl-h3,
.wysiwyg h2 {
  margin: 40px 0 0;
  font-family: ten-mincho, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.6rem;
}
._ttl-h3 span,
.wysiwyg h2 span {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.6rem;
}

._ttl-h4,
.wysiwyg h3 {
  margin: 20px 0 0;
  font-family: ten-mincho, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2rem;
}

._ttl-h5,
.wysiwyg h4 {
  margin: 20px 0 0;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  ._ttl-h2,
.wysiwyg h1 {
    font-size: 1.8rem;
  }
  ._ttl-h2--en,
.wysiwyg h1--en {
    font-size: 1.3rem;
  }
}
/*---------------------------------

  #Catchcopy

---------------------------------*/
.catchCopy {
  font-weight: bold;
  font-size: 2.6rem;
  color: #c9b05d;
}

/*---------------------------------

  #List

---------------------------------*/
.list li {
  padding-left: 15px;
  margin-bottom: 5px;
  position: relative;
}

.list li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #c9b05d;
  /*border-radius: 4px;*/
  position: absolute;
  top: 1.1rem;
  left: 0;
  transform: translateY(-50%);
}

.link li {
  padding-left: 15px;
  margin-bottom: 5px;
  position: relative;
}

.link li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-top: solid 1px #c9b05d;
  border-right: solid 1px #c9b05d;
  position: absolute;
  top: 1rem;
  left: 2px;
  transform: rotate(45deg) translateY(-50%);
}

.flow {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.flow li {
  display: block;
  width: 50%;
  padding-left: 15px;
  position: relative;
}

.flow li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #c9b05d;
  /*border-radius: 4px;*/
  position: absolute;
  top: 1.1rem;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .flow {
    display: block;
  }

  .flow li {
    width: 100%;
  }
}
ol {
  counter-reset: number;
  padding: 0;
  /* paddingキャンセル */
  list-style: none;
  /* olがはき出す数字を消す */
}

ol li {
  text-indent: -30px;
  padding-left: 30px;
  margin-bottom: 5px;
}

ol li:before {
  counter-increment: number;
  content: counter(number) ". ";
  font-weight: bold;
  text-align: right;
  display: inline-block;
  width: 25px;
  margin-right: 5px;
}

ol ol {
  margin: 5px 0 0 !important;
}

.rice li {
  margin: 0 0 5px 1em;
  text-indent: -1em;
}

dl.list dt {
  margin: 5px 0 0;
  padding-left: 1em;
  font-weight: bold;
  position: relative;
}
dl.list dt::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #c9b05d;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
dl.list dd {
  padding-left: 1em;
}

/*---------------------------------

  #flex

---------------------------------*/
._flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
._flex._aligncenter {
  align-content: center;
  align-items: center;
}

._flexBw {
  display: flex;
  justify-content: space-between;
}

._flexcenter {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  ._flex,
._flexBw,
._flexcenter {
    display: block;
  }
}
/*---------------------------------

  #Img List

---------------------------------*/
.imgList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  margin: 20px 0;
}
.imgList.col3 .imgList--item {
  width: 32%;
  margin-left: 0;
  margin-right: 2%;
}
.imgList.col3 .imgList--item:nth-child(3n) {
  margin-right: 0;
}
.imgList--item {
  width: 48%;
}
.imgList--item:nth-child(2n) {
  margin-left: 4%;
}

/*---------------------------------

  #SNS Share Button

---------------------------------*/
.social-icon ul {
  margin: 20px auto;
  text-align: center;
}

.social-icon ul li {
  display: inline-block;
}

.social-icon ul li a {
  display: block;
  width: 60px;
  height: 60px;
  text-indent: -99999px;
  font-size: 50%;
  border-radius: 50%;
}

/*---------------------------------

  #Table

---------------------------------*/
table {
  border-collapse: collapse;
  width: 100%;
  box-sizing: border-box;
}

table th,
table td {
  padding: 15px;
  vertical-align: top;
  border-top: 1px solid #ccc;
  background: transparent;
}

table tr:last-of-type th,
table tr:last-of-type td {
  border-bottom: 1px solid #ccc;
}

table th._middle,
table td._middle {
  vertical-align: middle;
}

table th {
  border-right: 1px solid #ccc;
  text-align: center;
}

table td {
  text-align: left;
}

table thead th,
th.head {
  background: #f1ecdf;
  text-align: center;
  font-weight: bold;
  color: #000;
}

table.noBorder,
table.noBorder * {
  border: none;
  margin: 0;
  padding: 0;
  background: none;
}

table.noBorder th,
table.noBorder td {
  text-align: left;
}

@media screen and (max-width: 768px) {
  table:not(.non-vertival) th,
table:not(.non-vertival) td {
    display: block;
    width: 100%;
  }

  table:not(.non-vertival) th {
    background: #eee;
    text-align: left;
    border: none;
  }

  table:not(.non-vertival) tr:first-of-type th {
    border-top: 1px solid #ccc;
  }

  table:not(.non-vertival) tr:last-of-type th {
    border-bottom: none;
  }

  .scroll-table {
    width: 100%;
    overflow: scroll;
  }
  .scroll-table table {
    width: 980px;
  }
  .scroll-table table th, .scroll-table table td, .scroll-table table caption {
    -webkit-text-size-adjust: 100%;
  }
  .scroll-table::before {
    content: "横にスクロールしてご覧ください";
    display: block;
    width: calc(100vw - 30px);
    margin: 10px auto 0;
    padding: 3px 15px;
    background: #000000;
    text-align: center;
    color: #ffffff;
  }
}
/*---------------------------------
  Blockquote
---------------------------------*/
blockquote {
  padding-left: 125px;
  position: relative;
}
blockquote::before {
  content: "";
  width: 94px;
  height: 70px;
  background: url(/images/common/icon_blockquote.png) no-repeat center center/cover;
  position: absolute;
  top: 30px;
  left: 10px;
}

@media screen and (max-width: 768px) {
  blockquote {
    padding-top: 55px;
    padding-left: 20px;
  }
  blockquote::before {
    top: 85px;
  }
}
/*---------------------------------
  button
---------------------------------*/
._btn a {
  display: inline-block;
  min-width: 0px;/*280px*/
  padding: 15px 30px;
  background: #d14c2b;
  border: 1px solid #d14c2b;
  border-radius: 30px;
  letter-spacing: 1px;
  text-decoration: none !important;
  text-align: center;
  color: #fff !important;
  position: relative;
  transition: all 0.3s ease;
}
._btn a:hover, ._btn a:active {
  background: #ffffff;
  color: #d14c2b !important;
}
._btn a._btn-02 a {
  background: #000;
  border-color: #000;
  color: #333333 !important;
}
._btn a._btn-02 a:hover, ._btn a._btn-02 a:active {
  background: #ffffff;
  color: #333 !important;
}

._btn02 a {
  display: inline-block;
  min-width: 280px;
  padding: 5px 20px;
  border-bottom: 3px solid #000;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none !important;
  position: relative;
  transition: all 0.3s ease;
}
._btn02 a:hover {
  opacity: 0.5;
}
._btn02 a::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  position: absolute;
  top: 47%;
  right: 5px;
  transform: rotate(45deg) translateY(-50%);
}

.btn.external a::before {
  content: "";
  display: block;
  width: 11px;
  height: 10px;
  background: url(/themes/main/images/common/icon_external-link.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

.btn02.external a::before {
  content: "";
  display: block;
  width: 11px;
  height: 10px;
  background: url(/themes/main/images/common/icon_external-link.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .btn a {
    min-width: 280px;
    min-width: 290px;
    max-width: 100%;
  }
}
/*---------------------------------
  faq
---------------------------------*/
.faq {
  margin: 30px 0 0;
  padding: 30px;
  border: 1px solid #eee;
}
.faq .question {
  padding-left: 45px;
  font-size: 1.6rem;
  position: relative;
}
.faq .question::before {
  content: "Q";
  font-family: ten-mincho, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
  font-size: 3rem;
  color: #c9b05d;
  position: absolute;
  top: -15px;
  left: 0;
}
.faq .answer {
  margin: 15px 0 0;
  padding-left: 45px;
  color: #666666;
}

@media screen and (max-width: 768px) {
  .faq .answer {
    padding-left: 0;
  }
}
/*---------------------------------
  Box
---------------------------------*/
._box {
  display: inline-block;
  border: 5px solid #ddd;
  margin: 30px 0 0;
  padding: 40px 50px;
}

/*---------------------------------
  Application Flow
---------------------------------*/
.applicationFlow {
  margin: 40px 0 0;
}
.applicationFlow--item {
  display: flex;
  justify-content: flex-start;
  border-top: 1px solid #ddd;
}
.applicationFlow--item:last-of-type {
  border-bottom: 1px solid #ddd;
}
.applicationFlow--item:last-of-type .applicationFlow--number::after {
  content: none;
}
.applicationFlow--number {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  font-family: ten-mincho, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  position: relative;
}
.applicationFlow--number::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #000;
  position: absolute;
  bottom: -25px;
  right: 0;
}
.applicationFlow--desc {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  min-height: 120px;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .applicationFlow--number {
    width: 20%;
    height: auto;
  }
  .applicationFlow--desc {
    width: 80%;
    height: auto;
    padding-left: 20px;
  }
}
/* /////////////////////////////////

  _common.scss

///////////////////////////////// */
/*---------------------------------
  Base
---------------------------------*/
body {
  min-width: 1200px;
  background: url(/wp-content/themes/main/images/common/bg_body.png) repeat;
  position: relative;
  transition: all 0.3s ease;
}

._inner {
  width: 1200px;
  margin: 0 auto;
}

._innerMini {
  width: 1000px !important;
  margin: 0 auto;
}

.container {
  padding: 120px 0 80px;
}

.content {
  width: 1200px;
  margin: 0 auto;
}

._column2 {
  display: flex;
  justify-content: space-between;
}
._column2 .content {
  width: 840px;
  margin: 0 auto 0 0;
}
._column2 .sidebar {
  width: 280px;
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  body {
    width: 100%;
    min-width: auto;
    position: relative;
  }

  body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }

  ._inner,
._innerMini {
    width: 100% !important;
    padding: 0 15px;
  }

  .container {
    padding: 60px 0 80px;
  }

  .content {
    width: 100%;
  }

  ._column2 {
    display: block;
    width: 100%;
  }
  ._column2 .content {
    width: 100%;
  }
  ._column2 .sidebar {
    width: 100%;
    margin-left: 0;
  }
}
/*---------------------------------
  header
---------------------------------*/
.header {
  min-width: 1200px;
  width: 100%;
  height: 120px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  position: fixed;
}
.header--wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.header--wrap::after {
  content: none;
}

.globalNav--list {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.globalNav--item {
  margin-right: 25px;
}
.globalNav--item a {
  color: #333;
  text-decoration: none;
}

.hambergerBtn,
.hambergerMenu {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    min-width: auto;
    height: 60px;
  }
  .header--wrap {
    padding: 0 70px 0 15px;
    background: #fff;
    position: relative;
    z-index: 10010;
  }
  .header--logo {
    height: 32px;
    position: relative;
    z-index: 10011;
  }
  .header--logo img {
    width: auto;
    height: 100%;
  }

  .globalNav,
.contactBtn {
    display: none;
  }

  .hambergerBtn {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background: #fff;
    position: fixed;
    top: 7px;
    right: 10px;
    z-index: 20000;
    transition: all 0.3s ease;
  }
  .hambergerBtn.scroll {
    background: #c9b05d;
  }
  .hambergerBtn.scroll .hambergerBtn--icon span {
    background: #fff;
  }
  .hambergerBtn--icon {
    display: block;
    width: 22px;
    height: 15px;
    position: relative;
  }
  .hambergerBtn--icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    top: 0;
    left: 0;
  }
  .hambergerBtn--icon span:nth-of-type(2) {
    top: 50%;
  }
  .hambergerBtn--icon span:nth-of-type(3) {
    top: 100%;
  }
  .hambergerBtn.on {
    background: #ffffff;
  }
  .hambergerBtn.on .hambergerBtn--icon span {
    background: #000000;
  }
  .hambergerBtn.on .hambergerBtn--icon span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .hambergerBtn.on .hambergerBtn--icon span:nth-of-type(2) {
    display: none;
  }
  .hambergerBtn.on .hambergerBtn--icon span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .hambergerMenu {
    display: none;
    width: 100%;
    height: 100%;
    padding: 60px 0;
    background: #ffffff;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10008;
    transition: all 0.3s ease;
  }
  .hambergerMenu.on {
    display: block;
  }
  .hambergerMenu--wrap {
    height: auto;
  }
  .hambergerMenu--item {
    border-top: 1px solid #eee;
  }
  .hambergerMenu--item:last-of-type {
    border-bottom: 1px solid #eee;
  }
  .hambergerMenu--item a {
    display: block;
    padding: 15px 60px 15px 15px;
    text-decoration: none;
    position: relative;
  }
  .hambergerMenu--item a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: rotate(45deg) translateY(-50%);
  }
  .hambergerMenu--item.nest > a::after {
    content: "+";
    display: block;
    width: auto;
    height: auto;
    line-height: 1;
    border: none;
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: 19px;
    transform: translateY(-50%);
  }
  .hambergerMenu--item.nest.on > a::after {
    content: "-";
    right: 19px;
  }
  .hambergerMenu--item.nest.on .hambergurMenu--nestList {
    max-height: 400px;
  }
  .hambergerMenu--nestList {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .hambergerMenu--nestItem a {
    background: #eeeeee;
    margin-bottom: 2px;
    padding: 10px;
  }
  .hambergerMenu--nestItem a::after {
    content: none;
  }
  .hambergerMenu .langSwitch {
    margin: 35px 0 0;
  }

  .spGlobalNav--list {
    margin: 35px 0 0;
    padding: 0 30px;
  }
  .spGlobalNav--item {
    margin: 10px 0 0;
  }
  .spGlobalNav--item a {
    text-decoration: none;
  }

  .spContactArea--btn {
    margin: 35px 0 0;
    text-align: center;
  }
  .spContactArea--info {
    margin: 10px auto 0;
    text-align: center;
    font-size: 1.4rem;
  }
  .spContactArea--info a {
    font-size: 1.4rem;
  }
}
.langSwitch--list {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.langSwitch--item {
  position: relative;
}
.langSwitch--item:first-child {
  margin-right: 15px;
  padding-right: 15px;
}
.langSwitch--item:first-child::after {
  content: "|";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
.langSwitch--item a {
  text-decoration: none;
  color: #d9d9d9;
  transition: all 0.3s ease;
}
.langSwitch--item.on a,
.langSwitch--item a:hover {
  color: #000;
}

/*---------------------------------
  Page Title
---------------------------------*/
.pageTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  padding: 0 100px;
  background: url(/wp-content/themes/main/images/common/bg_pagetitle.jpg) no-repeat center center/cover;
  background-color: #aaa;
  letter-spacing: 3px;
  font-weight: normal;
  font-size: 1.6rem;
  color: #fff;
  position: relative;
}
.pageTitle--en {
  font-family: ten-mincho, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 5rem;
}

@media screen and (max-width: 768px) {
  .pageTitle {
    height: 250px;
    margin: 0;
    padding: 0 20px;
    letter-spacing: 2px;
  }
  .pageTitle--en {
    line-height: 1.4;
    font-size: 2.8rem;
  }
  .pageTitle--heading {
    margin: 10px 0 0;
    font-size: 1.4rem;
  }
}
/*---------------------------------
  Breadcrumb List
---------------------------------*/
.breadCrumb {
  margin: 10px auto 0;
  text-align: right;
}
.breadCrumb--item {
  display: inline-block;
  list-style: none;
  font-size: 1.2rem;
  position: relative;
}
.breadCrumb--item a {
  font-size: 1.2rem;
  text-decoration: underline;
}
.breadCrumb--item::before {
  content: none;
}
.breadCrumb--item::after {
  content: "/";
  display: inline-block;
  margin: 0 5px;
}
.breadCrumb--item:last-child::after {
  content: none;
}

/*---------------------------------
  navgation area
---------------------------------*/
.navigationArea {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}
.navigationArea::after {
  content: none;
}

/*---------------------------------
  Local Nav
---------------------------------*/
/*---------------------------------
  Banner Area
---------------------------------*/
/*---------------------------------
  Pagetop Button
---------------------------------*/
/*---------------------------------
  footer
---------------------------------*/
.footer {
  width: 100%;
  background: #282828;
}
.footer div, .footer a {
  color: #cccccc;
  text-decoration: none;
}
.footer--wrap {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
  position: relative;
}

.infoArea--address {
  margin: 15px 0 0;
  font-style: normal;
}
.infoArea--address a[href*="tel:"] {
  text-decoration: none;
  font-size: 1.6rem;
}
.infoArea--button {
  margin: 15px 0 0 !important;
}
.infoArea--button a {
  min-width: 180px;
}

.megaMenu {
  display: flex;
  justify-content: flex-end;
  width: 480px;
}
.megaMenu--column:nth-child(1) {
  width: 43%;
}
.megaMenu--column:nth-child(2) {
  width: 25%;
}
.megaMenu--column:nth-child(3) {
  width: 32%;
}
.megaMenu--item {
  margin: 0 0 10px;
  padding-left: 17px;
  position: relative;
}
.megaMenu--item::before {
  content: "";
  width: 7px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footerLink--wrap {
  padding: 0;
  list-style: none;
}
.footerLink--wrap.col2 .footerLink--item {
  display: inline-block;
  min-width: 49%;
}
.footerLink--item {
  padding-left: 1.5rem;
  position: relative;
}
.footerLink--item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 1px #ccc;
  border-right: solid 1px #ccc;
  position: absolute;
  top: 1rem;
  left: 0px;
  transform: rotate(45deg) translateY(-50%);
}
.footerLink--item .footerLink--item::before {
  content: none;
}

.bannerArea--wrap {
  text-align: center;
}
.bannerArea--item {
  display: inline-block;
  margin: 30px 5px 20px;
}

.copyright {
  padding: 0 0 40px;
  text-align: center;
  font-size: 1.2rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .footer .infoArea {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .footer .infoArea--address {
    text-align: center !important;
  }
  .footer .infoArea--button {
    margin: 20px 0 0;
  }

  .footer--wrap {
    display: block;
    padding: 40px 0;
  }

  .megaMenu {
    display: none;
  }

  .copyright {
    margin: 20px 0 0;
    padding: 0;
    position: relative;
    bottom: auto;
    right: auto;
  }
}
@charset "UTF-8";
/* /////////////////////////////////

  _cms.scss

///////////////////////////////// */
.access-table {
  width: 100%;
  border: none !important;
  border-collapse: collapse;
}

.access-table + .access-table {
  margin-top: 20px;
}

.access-table th,
.access-table td {
  border: none !important;
}

.access-table .place {
  padding: 20px 5px;
  border: 1px solid #000 !important;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
}

.access-table .route {
  vertical-align: middle;
  text-align: center;
  position: relative;
}

.access-table .route span {
  display: block;
  font-size: 14px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.access-table .route::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #ddd;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.access-table .route::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/wp-content/themes/main/images/access/icon_plane.png") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media all and (-ms-high-contrast: none) {
  .access-table .route::before {
    top: auto;
  }

  .access-table .route::after {
    top: auto;
  }
}
.access-table .route.bus::after {
  background-image: url("/wp-content/themes/main/images/access/icon_bus.png");
}

.access-table .route.train::after {
  background-image: url("/wp-content/themes/main/images/access/icon_train.png");
}

.list {
  padding-left: 1.2em;
}

@media screen and (max-width: 768px) {
  .scroll-table {
    width: 100%;
    padding-top: 40px;
    overflow: auto;
    position: relative;
  }

  .scroll-table .basic-table {
    width: 500px !important;
  }

  .scroll-table .basic-table caption {
    text-align: left;
  }

  .scroll-table .basic-table th,
.scroll-table .basic-table td {
    display: table-cell;
  }

  .scroll-table .basic-table td {
    padding: 10px;
  }

  .scroll-table::before {
    content: "スクロールしてご覧ください";
    display: block;
    width: calc(100vw - 40px);
    padding: 5px;
    background: #000000;
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
  }

  .scroll-table.en::before {
    content: "Please scroll to see.";
  }

  .transparent-table th,
.transparent-table td {
    display: block;
    width: 100%;
  }

  .transparent-table th {
    border-right: none;
    border-bottom: 1px solid #999;
  }

  .transparent-table td {
    padding-top: 10px;
  }

  .access-table th,
.access-table td {
    display: block;
    width: 100%;
  }

  .access-table .route {
    height: 80px;
  }

  .access-table .route span {
    bottom: 15px;
  }

  .access-table .route::before {
    width: 4px;
    height: 100%;
  }

  .access-table .route::after {
    top: 40%;
  }
}