@charset "UTF-8";
/*------------------------------------------------------------
  reset
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Cormorant+Garamond&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

input,
button,
select,
optgroup,
option,
textarea {
  margin: 0;
  font-family: initial;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

button, input, select {
  overflow: visible;
}

button, select {
  text-transform: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  background-color: transparent;
}

a:active,
a:hover {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

@font-face {
  font-family: 'Arno Pro';
  font-weight: 300;
  src: url("../fonts/ArnoPro/ArnoPro-LightDisplay.otf") format("opentype");
}

@font-face {
  font-family: 'Arno Pro';
  font-weight: 400;
  src: url("../fonts/ArnoPro/ArnoPro-Regular.otf") format("opentype");
}

/*------------------------------------------------------------
  form parts reset
------------------------------------------------------------*/
input,
button,
select,
optgroup,
option,
textarea {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*
  input（ラジオボタン、チェックボックス以外）、textareaの設定
*/
input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="submit"]), textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
  box-sizing: border-box;
  background: #FFF;
  outline: none;
  cursor: auto;
}

@media screen and (min-width: 768px) {
  input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="submit"]), textarea, select {
    height: 50px;
  }
}

_::-webkit-full-page-media, _:future, :root input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="submit"]) {
  line-height: 1.5;
}

textarea {
  min-height: 240px;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  textarea {
    min-height: 270px;
  }
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}

input::-placeholder, textarea::-placeholder {
  color: #999;
}

input[type="email"] {
  ime-mode: inactive;
}

input[name="address"] {
  ime-mode: active;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/*
  ラジオボタンの設定
*/
.radio-label, .mwform-radio-field {
  margin-right: 10px;
}

@media screen and (min-width: 1024px) {
  .radio-label + .radio-label, .radio-label + .mwform-radio-field, .mwform-radio-field + .radio-label, .mwform-radio-field + .mwform-radio-field {
    margin-left: 25px;
  }
}

input[type="radio"] {
  visibility: hidden;
  position: absolute;
}

input[type="radio"] + span {
  display: inline-block;
  position: relative;
  padding: 3px 3px 3px 25px;
  cursor: pointer;
}

input[type="radio"] + span::before,
input[type="radio"] + span::after {
  position: absolute;
  top: 50%;
  border-radius: 100%;
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
}

input[type="radio"] + span::before {
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: none;
  background: #fff;
}

input[type="radio"] + span:hover::before {
  background: #fff;
}

input[type="radio"] + span::after {
  opacity: 0;
  left: 4px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #86868a;
  -webkit-transform: scale(2);
  transform: scale(2);
}

input[type="radio"]:checked + span::before {
  border: none;
  background: #fff;
}

input[type="radio"]:checked + span::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*
  チェックボックスの設定
*/
input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
}

input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  padding: 3px 3px 3px 22px;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

input[type="checkbox"] + span::before,
input[type="checkbox"] + span::after {
  position: absolute;
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
}

input[type="checkbox"] + span::before {
  top: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  border: 1px solid #959494;
  background: #FFF;
}

input[type="checkbox"] + span::after {
  opacity: 0;
  top: 50%;
  left: 2px;
  width: 11px;
  height: 6px;
  margin-top: -5px;
  border-left: 2px solid #86868a;
  border-bottom: 2px solid #86868a;
  -webkit-transform: rotate(-45deg) scale(0.5);
  transform: rotate(-45deg) scale(0.5);
}

input[type="checkbox"] + span:hover::before {
  background: #f4f4f4;
}

input[type="checkbox"]:checked + span::before {
  border: 1px solid #0335aa;
  background: #fff;
}

input[type="checkbox"]:checked + span::after {
  opacity: 1;
  border-left: 2px solid #0335aa;
  border-bottom: 2px solid #0335aa;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}

/*
  セレクトボックスの設定
*/
.select-label {
  display: block;
  position: relative;
}

.select-label:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  content: '';
  pointer-events: none;
  transform: rotate(135deg);
}

.select-label select {
  position: relative;
  width: 100%;
  padding-top: 7px;
  padding-bottom: 7px;
  border: 1px solid #0335aa;
  border-radius: 0;
  background: #FFF;
  color: #0335aa;
  cursor: pointer;
}

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

/*
  ボタンの設定
*/
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  background: transparent;
  outline: none;
}

.input-file-label {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #A1A1A1;
  background: linear-gradient(to bottom, #F6F6F6, #DEDEDE);
}

.input-file-label :hover {
  cursor: pointer;
}

.input-file-label input {
  display: none;
}

/*------------------------------------------------------------
  setting
------------------------------------------------------------*/
body {
  background: #000000;
  color: #000000;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.5;
  letter-spacing: 0em;
}

body.is-fixed {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    font-size: 1rem;
    line-height: 3;
  }
}

a {
  color: #000000;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

a figure {
  transition: opacity 0.3s ease;
}

a figure:hover {
  opacity: 0.7;
}

button {
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.7;
}

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

video, iframe {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

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

@media screen and (min-width: 1024px) {
  .sp {
    display: none !important;
  }
}

/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/*------------------------------------------------------------
  AOS
------------------------------------------------------------*/
body[data-aos-duration='50'] [data-aos], [data-aos][data-aos][data-aos-duration='50'] {
  transition-duration: 50ms;
}

body[data-aos-delay='50'] [data-aos], [data-aos][data-aos][data-aos-delay='50'] {
  transition-delay: 0;
}

body[data-aos-delay='50'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='50'].aos-animate {
  transition-delay: 50ms;
}

body[data-aos-duration='100'] [data-aos], [data-aos][data-aos][data-aos-duration='100'] {
  transition-duration: 100ms;
}

body[data-aos-delay='100'] [data-aos], [data-aos][data-aos][data-aos-delay='100'] {
  transition-delay: 0;
}

body[data-aos-delay='100'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='100'].aos-animate {
  transition-delay: 100ms;
}

body[data-aos-duration='150'] [data-aos], [data-aos][data-aos][data-aos-duration='150'] {
  transition-duration: 150ms;
}

body[data-aos-delay='150'] [data-aos], [data-aos][data-aos][data-aos-delay='150'] {
  transition-delay: 0;
}

body[data-aos-delay='150'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='150'].aos-animate {
  transition-delay: 150ms;
}

body[data-aos-duration='200'] [data-aos], [data-aos][data-aos][data-aos-duration='200'] {
  transition-duration: 200ms;
}

body[data-aos-delay='200'] [data-aos], [data-aos][data-aos][data-aos-delay='200'] {
  transition-delay: 0;
}

body[data-aos-delay='200'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='200'].aos-animate {
  transition-delay: 200ms;
}

body[data-aos-duration='250'] [data-aos], [data-aos][data-aos][data-aos-duration='250'] {
  transition-duration: 250ms;
}

body[data-aos-delay='250'] [data-aos], [data-aos][data-aos][data-aos-delay='250'] {
  transition-delay: 0;
}

body[data-aos-delay='250'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='250'].aos-animate {
  transition-delay: 250ms;
}

body[data-aos-duration='300'] [data-aos], [data-aos][data-aos][data-aos-duration='300'] {
  transition-duration: 300ms;
}

body[data-aos-delay='300'] [data-aos], [data-aos][data-aos][data-aos-delay='300'] {
  transition-delay: 0;
}

body[data-aos-delay='300'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='300'].aos-animate {
  transition-delay: 300ms;
}

body[data-aos-duration='350'] [data-aos], [data-aos][data-aos][data-aos-duration='350'] {
  transition-duration: 350ms;
}

body[data-aos-delay='350'] [data-aos], [data-aos][data-aos][data-aos-delay='350'] {
  transition-delay: 0;
}

body[data-aos-delay='350'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='350'].aos-animate {
  transition-delay: 350ms;
}

body[data-aos-duration='400'] [data-aos], [data-aos][data-aos][data-aos-duration='400'] {
  transition-duration: 400ms;
}

body[data-aos-delay='400'] [data-aos], [data-aos][data-aos][data-aos-delay='400'] {
  transition-delay: 0;
}

body[data-aos-delay='400'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='400'].aos-animate {
  transition-delay: 400ms;
}

body[data-aos-duration='450'] [data-aos], [data-aos][data-aos][data-aos-duration='450'] {
  transition-duration: 450ms;
}

body[data-aos-delay='450'] [data-aos], [data-aos][data-aos][data-aos-delay='450'] {
  transition-delay: 0;
}

body[data-aos-delay='450'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='450'].aos-animate {
  transition-delay: 450ms;
}

body[data-aos-duration='500'] [data-aos], [data-aos][data-aos][data-aos-duration='500'] {
  transition-duration: 500ms;
}

body[data-aos-delay='500'] [data-aos], [data-aos][data-aos][data-aos-delay='500'] {
  transition-delay: 0;
}

body[data-aos-delay='500'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='500'].aos-animate {
  transition-delay: 500ms;
}

body[data-aos-duration='550'] [data-aos], [data-aos][data-aos][data-aos-duration='550'] {
  transition-duration: 550ms;
}

body[data-aos-delay='550'] [data-aos], [data-aos][data-aos][data-aos-delay='550'] {
  transition-delay: 0;
}

body[data-aos-delay='550'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='550'].aos-animate {
  transition-delay: 550ms;
}

body[data-aos-duration='600'] [data-aos], [data-aos][data-aos][data-aos-duration='600'] {
  transition-duration: 600ms;
}

body[data-aos-delay='600'] [data-aos], [data-aos][data-aos][data-aos-delay='600'] {
  transition-delay: 0;
}

body[data-aos-delay='600'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='600'].aos-animate {
  transition-delay: 600ms;
}

body[data-aos-duration='650'] [data-aos], [data-aos][data-aos][data-aos-duration='650'] {
  transition-duration: 650ms;
}

body[data-aos-delay='650'] [data-aos], [data-aos][data-aos][data-aos-delay='650'] {
  transition-delay: 0;
}

body[data-aos-delay='650'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='650'].aos-animate {
  transition-delay: 650ms;
}

body[data-aos-duration='700'] [data-aos], [data-aos][data-aos][data-aos-duration='700'] {
  transition-duration: 700ms;
}

body[data-aos-delay='700'] [data-aos], [data-aos][data-aos][data-aos-delay='700'] {
  transition-delay: 0;
}

body[data-aos-delay='700'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='700'].aos-animate {
  transition-delay: 700ms;
}

body[data-aos-duration='750'] [data-aos], [data-aos][data-aos][data-aos-duration='750'] {
  transition-duration: 750ms;
}

body[data-aos-delay='750'] [data-aos], [data-aos][data-aos][data-aos-delay='750'] {
  transition-delay: 0;
}

body[data-aos-delay='750'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='750'].aos-animate {
  transition-delay: 750ms;
}

body[data-aos-duration='800'] [data-aos], [data-aos][data-aos][data-aos-duration='800'] {
  transition-duration: 800ms;
}

body[data-aos-delay='800'] [data-aos], [data-aos][data-aos][data-aos-delay='800'] {
  transition-delay: 0;
}

body[data-aos-delay='800'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='800'].aos-animate {
  transition-delay: 800ms;
}

body[data-aos-duration='850'] [data-aos], [data-aos][data-aos][data-aos-duration='850'] {
  transition-duration: 850ms;
}

body[data-aos-delay='850'] [data-aos], [data-aos][data-aos][data-aos-delay='850'] {
  transition-delay: 0;
}

body[data-aos-delay='850'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='850'].aos-animate {
  transition-delay: 850ms;
}

body[data-aos-duration='900'] [data-aos], [data-aos][data-aos][data-aos-duration='900'] {
  transition-duration: 900ms;
}

body[data-aos-delay='900'] [data-aos], [data-aos][data-aos][data-aos-delay='900'] {
  transition-delay: 0;
}

body[data-aos-delay='900'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='900'].aos-animate {
  transition-delay: 900ms;
}

body[data-aos-duration='950'] [data-aos], [data-aos][data-aos][data-aos-duration='950'] {
  transition-duration: 950ms;
}

body[data-aos-delay='950'] [data-aos], [data-aos][data-aos][data-aos-delay='950'] {
  transition-delay: 0;
}

body[data-aos-delay='950'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='950'].aos-animate {
  transition-delay: 950ms;
}

body[data-aos-duration='1000'] [data-aos], [data-aos][data-aos][data-aos-duration='1000'] {
  transition-duration: 1000ms;
}

body[data-aos-delay='1000'] [data-aos], [data-aos][data-aos][data-aos-delay='1000'] {
  transition-delay: 0;
}

body[data-aos-delay='1000'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1000'].aos-animate {
  transition-delay: 1000ms;
}

body[data-aos-duration='1050'] [data-aos], [data-aos][data-aos][data-aos-duration='1050'] {
  transition-duration: 1050ms;
}

body[data-aos-delay='1050'] [data-aos], [data-aos][data-aos][data-aos-delay='1050'] {
  transition-delay: 0;
}

body[data-aos-delay='1050'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1050'].aos-animate {
  transition-delay: 1050ms;
}

body[data-aos-duration='1100'] [data-aos], [data-aos][data-aos][data-aos-duration='1100'] {
  transition-duration: 1100ms;
}

body[data-aos-delay='1100'] [data-aos], [data-aos][data-aos][data-aos-delay='1100'] {
  transition-delay: 0;
}

body[data-aos-delay='1100'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1100'].aos-animate {
  transition-delay: 1100ms;
}

body[data-aos-duration='1150'] [data-aos], [data-aos][data-aos][data-aos-duration='1150'] {
  transition-duration: 1150ms;
}

body[data-aos-delay='1150'] [data-aos], [data-aos][data-aos][data-aos-delay='1150'] {
  transition-delay: 0;
}

body[data-aos-delay='1150'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1150'].aos-animate {
  transition-delay: 1150ms;
}

body[data-aos-duration='1200'] [data-aos], [data-aos][data-aos][data-aos-duration='1200'] {
  transition-duration: 1200ms;
}

body[data-aos-delay='1200'] [data-aos], [data-aos][data-aos][data-aos-delay='1200'] {
  transition-delay: 0;
}

body[data-aos-delay='1200'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1200'].aos-animate {
  transition-delay: 1200ms;
}

body[data-aos-duration='1250'] [data-aos], [data-aos][data-aos][data-aos-duration='1250'] {
  transition-duration: 1250ms;
}

body[data-aos-delay='1250'] [data-aos], [data-aos][data-aos][data-aos-delay='1250'] {
  transition-delay: 0;
}

body[data-aos-delay='1250'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1250'].aos-animate {
  transition-delay: 1250ms;
}

body[data-aos-duration='1300'] [data-aos], [data-aos][data-aos][data-aos-duration='1300'] {
  transition-duration: 1300ms;
}

body[data-aos-delay='1300'] [data-aos], [data-aos][data-aos][data-aos-delay='1300'] {
  transition-delay: 0;
}

body[data-aos-delay='1300'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1300'].aos-animate {
  transition-delay: 1300ms;
}

body[data-aos-duration='1350'] [data-aos], [data-aos][data-aos][data-aos-duration='1350'] {
  transition-duration: 1350ms;
}

body[data-aos-delay='1350'] [data-aos], [data-aos][data-aos][data-aos-delay='1350'] {
  transition-delay: 0;
}

body[data-aos-delay='1350'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1350'].aos-animate {
  transition-delay: 1350ms;
}

body[data-aos-duration='1400'] [data-aos], [data-aos][data-aos][data-aos-duration='1400'] {
  transition-duration: 1400ms;
}

body[data-aos-delay='1400'] [data-aos], [data-aos][data-aos][data-aos-delay='1400'] {
  transition-delay: 0;
}

body[data-aos-delay='1400'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1400'].aos-animate {
  transition-delay: 1400ms;
}

body[data-aos-duration='1450'] [data-aos], [data-aos][data-aos][data-aos-duration='1450'] {
  transition-duration: 1450ms;
}

body[data-aos-delay='1450'] [data-aos], [data-aos][data-aos][data-aos-delay='1450'] {
  transition-delay: 0;
}

body[data-aos-delay='1450'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1450'].aos-animate {
  transition-delay: 1450ms;
}

body[data-aos-duration='1500'] [data-aos], [data-aos][data-aos][data-aos-duration='1500'] {
  transition-duration: 1500ms;
}

body[data-aos-delay='1500'] [data-aos], [data-aos][data-aos][data-aos-delay='1500'] {
  transition-delay: 0;
}

body[data-aos-delay='1500'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1500'].aos-animate {
  transition-delay: 1500ms;
}

body[data-aos-duration='1550'] [data-aos], [data-aos][data-aos][data-aos-duration='1550'] {
  transition-duration: 1550ms;
}

body[data-aos-delay='1550'] [data-aos], [data-aos][data-aos][data-aos-delay='1550'] {
  transition-delay: 0;
}

body[data-aos-delay='1550'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1550'].aos-animate {
  transition-delay: 1550ms;
}

body[data-aos-duration='1600'] [data-aos], [data-aos][data-aos][data-aos-duration='1600'] {
  transition-duration: 1600ms;
}

body[data-aos-delay='1600'] [data-aos], [data-aos][data-aos][data-aos-delay='1600'] {
  transition-delay: 0;
}

body[data-aos-delay='1600'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1600'].aos-animate {
  transition-delay: 1600ms;
}

body[data-aos-duration='1650'] [data-aos], [data-aos][data-aos][data-aos-duration='1650'] {
  transition-duration: 1650ms;
}

body[data-aos-delay='1650'] [data-aos], [data-aos][data-aos][data-aos-delay='1650'] {
  transition-delay: 0;
}

body[data-aos-delay='1650'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1650'].aos-animate {
  transition-delay: 1650ms;
}

body[data-aos-duration='1700'] [data-aos], [data-aos][data-aos][data-aos-duration='1700'] {
  transition-duration: 1700ms;
}

body[data-aos-delay='1700'] [data-aos], [data-aos][data-aos][data-aos-delay='1700'] {
  transition-delay: 0;
}

body[data-aos-delay='1700'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1700'].aos-animate {
  transition-delay: 1700ms;
}

body[data-aos-duration='1750'] [data-aos], [data-aos][data-aos][data-aos-duration='1750'] {
  transition-duration: 1750ms;
}

body[data-aos-delay='1750'] [data-aos], [data-aos][data-aos][data-aos-delay='1750'] {
  transition-delay: 0;
}

body[data-aos-delay='1750'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1750'].aos-animate {
  transition-delay: 1750ms;
}

body[data-aos-duration='1800'] [data-aos], [data-aos][data-aos][data-aos-duration='1800'] {
  transition-duration: 1800ms;
}

body[data-aos-delay='1800'] [data-aos], [data-aos][data-aos][data-aos-delay='1800'] {
  transition-delay: 0;
}

body[data-aos-delay='1800'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1800'].aos-animate {
  transition-delay: 1800ms;
}

body[data-aos-duration='1850'] [data-aos], [data-aos][data-aos][data-aos-duration='1850'] {
  transition-duration: 1850ms;
}

body[data-aos-delay='1850'] [data-aos], [data-aos][data-aos][data-aos-delay='1850'] {
  transition-delay: 0;
}

body[data-aos-delay='1850'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1850'].aos-animate {
  transition-delay: 1850ms;
}

body[data-aos-duration='1900'] [data-aos], [data-aos][data-aos][data-aos-duration='1900'] {
  transition-duration: 1900ms;
}

body[data-aos-delay='1900'] [data-aos], [data-aos][data-aos][data-aos-delay='1900'] {
  transition-delay: 0;
}

body[data-aos-delay='1900'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1900'].aos-animate {
  transition-delay: 1900ms;
}

body[data-aos-duration='1950'] [data-aos], [data-aos][data-aos][data-aos-duration='1950'] {
  transition-duration: 1950ms;
}

body[data-aos-delay='1950'] [data-aos], [data-aos][data-aos][data-aos-delay='1950'] {
  transition-delay: 0;
}

body[data-aos-delay='1950'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1950'].aos-animate {
  transition-delay: 1950ms;
}

body[data-aos-duration='2000'] [data-aos], [data-aos][data-aos][data-aos-duration='2000'] {
  transition-duration: 2000ms;
}

body[data-aos-delay='2000'] [data-aos], [data-aos][data-aos][data-aos-delay='2000'] {
  transition-delay: 0;
}

body[data-aos-delay='2000'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2000'].aos-animate {
  transition-delay: 2000ms;
}

body[data-aos-duration='2050'] [data-aos], [data-aos][data-aos][data-aos-duration='2050'] {
  transition-duration: 2050ms;
}

body[data-aos-delay='2050'] [data-aos], [data-aos][data-aos][data-aos-delay='2050'] {
  transition-delay: 0;
}

body[data-aos-delay='2050'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2050'].aos-animate {
  transition-delay: 2050ms;
}

body[data-aos-duration='2100'] [data-aos], [data-aos][data-aos][data-aos-duration='2100'] {
  transition-duration: 2100ms;
}

body[data-aos-delay='2100'] [data-aos], [data-aos][data-aos][data-aos-delay='2100'] {
  transition-delay: 0;
}

body[data-aos-delay='2100'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2100'].aos-animate {
  transition-delay: 2100ms;
}

body[data-aos-duration='2150'] [data-aos], [data-aos][data-aos][data-aos-duration='2150'] {
  transition-duration: 2150ms;
}

body[data-aos-delay='2150'] [data-aos], [data-aos][data-aos][data-aos-delay='2150'] {
  transition-delay: 0;
}

body[data-aos-delay='2150'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2150'].aos-animate {
  transition-delay: 2150ms;
}

body[data-aos-duration='2200'] [data-aos], [data-aos][data-aos][data-aos-duration='2200'] {
  transition-duration: 2200ms;
}

body[data-aos-delay='2200'] [data-aos], [data-aos][data-aos][data-aos-delay='2200'] {
  transition-delay: 0;
}

body[data-aos-delay='2200'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2200'].aos-animate {
  transition-delay: 2200ms;
}

body[data-aos-duration='2250'] [data-aos], [data-aos][data-aos][data-aos-duration='2250'] {
  transition-duration: 2250ms;
}

body[data-aos-delay='2250'] [data-aos], [data-aos][data-aos][data-aos-delay='2250'] {
  transition-delay: 0;
}

body[data-aos-delay='2250'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2250'].aos-animate {
  transition-delay: 2250ms;
}

body[data-aos-duration='2300'] [data-aos], [data-aos][data-aos][data-aos-duration='2300'] {
  transition-duration: 2300ms;
}

body[data-aos-delay='2300'] [data-aos], [data-aos][data-aos][data-aos-delay='2300'] {
  transition-delay: 0;
}

body[data-aos-delay='2300'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2300'].aos-animate {
  transition-delay: 2300ms;
}

body[data-aos-duration='2350'] [data-aos], [data-aos][data-aos][data-aos-duration='2350'] {
  transition-duration: 2350ms;
}

body[data-aos-delay='2350'] [data-aos], [data-aos][data-aos][data-aos-delay='2350'] {
  transition-delay: 0;
}

body[data-aos-delay='2350'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2350'].aos-animate {
  transition-delay: 2350ms;
}

body[data-aos-duration='2400'] [data-aos], [data-aos][data-aos][data-aos-duration='2400'] {
  transition-duration: 2400ms;
}

body[data-aos-delay='2400'] [data-aos], [data-aos][data-aos][data-aos-delay='2400'] {
  transition-delay: 0;
}

body[data-aos-delay='2400'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2400'].aos-animate {
  transition-delay: 2400ms;
}

body[data-aos-duration='2450'] [data-aos], [data-aos][data-aos][data-aos-duration='2450'] {
  transition-duration: 2450ms;
}

body[data-aos-delay='2450'] [data-aos], [data-aos][data-aos][data-aos-delay='2450'] {
  transition-delay: 0;
}

body[data-aos-delay='2450'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2450'].aos-animate {
  transition-delay: 2450ms;
}

body[data-aos-duration='2500'] [data-aos], [data-aos][data-aos][data-aos-duration='2500'] {
  transition-duration: 2500ms;
}

body[data-aos-delay='2500'] [data-aos], [data-aos][data-aos][data-aos-delay='2500'] {
  transition-delay: 0;
}

body[data-aos-delay='2500'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2500'].aos-animate {
  transition-delay: 2500ms;
}

body[data-aos-duration='2550'] [data-aos], [data-aos][data-aos][data-aos-duration='2550'] {
  transition-duration: 2550ms;
}

body[data-aos-delay='2550'] [data-aos], [data-aos][data-aos][data-aos-delay='2550'] {
  transition-delay: 0;
}

body[data-aos-delay='2550'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2550'].aos-animate {
  transition-delay: 2550ms;
}

body[data-aos-duration='2600'] [data-aos], [data-aos][data-aos][data-aos-duration='2600'] {
  transition-duration: 2600ms;
}

body[data-aos-delay='2600'] [data-aos], [data-aos][data-aos][data-aos-delay='2600'] {
  transition-delay: 0;
}

body[data-aos-delay='2600'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2600'].aos-animate {
  transition-delay: 2600ms;
}

body[data-aos-duration='2650'] [data-aos], [data-aos][data-aos][data-aos-duration='2650'] {
  transition-duration: 2650ms;
}

body[data-aos-delay='2650'] [data-aos], [data-aos][data-aos][data-aos-delay='2650'] {
  transition-delay: 0;
}

body[data-aos-delay='2650'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2650'].aos-animate {
  transition-delay: 2650ms;
}

body[data-aos-duration='2700'] [data-aos], [data-aos][data-aos][data-aos-duration='2700'] {
  transition-duration: 2700ms;
}

body[data-aos-delay='2700'] [data-aos], [data-aos][data-aos][data-aos-delay='2700'] {
  transition-delay: 0;
}

body[data-aos-delay='2700'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2700'].aos-animate {
  transition-delay: 2700ms;
}

body[data-aos-duration='2750'] [data-aos], [data-aos][data-aos][data-aos-duration='2750'] {
  transition-duration: 2750ms;
}

body[data-aos-delay='2750'] [data-aos], [data-aos][data-aos][data-aos-delay='2750'] {
  transition-delay: 0;
}

body[data-aos-delay='2750'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2750'].aos-animate {
  transition-delay: 2750ms;
}

body[data-aos-duration='2800'] [data-aos], [data-aos][data-aos][data-aos-duration='2800'] {
  transition-duration: 2800ms;
}

body[data-aos-delay='2800'] [data-aos], [data-aos][data-aos][data-aos-delay='2800'] {
  transition-delay: 0;
}

body[data-aos-delay='2800'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2800'].aos-animate {
  transition-delay: 2800ms;
}

body[data-aos-duration='2850'] [data-aos], [data-aos][data-aos][data-aos-duration='2850'] {
  transition-duration: 2850ms;
}

body[data-aos-delay='2850'] [data-aos], [data-aos][data-aos][data-aos-delay='2850'] {
  transition-delay: 0;
}

body[data-aos-delay='2850'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2850'].aos-animate {
  transition-delay: 2850ms;
}

body[data-aos-duration='2900'] [data-aos], [data-aos][data-aos][data-aos-duration='2900'] {
  transition-duration: 2900ms;
}

body[data-aos-delay='2900'] [data-aos], [data-aos][data-aos][data-aos-delay='2900'] {
  transition-delay: 0;
}

body[data-aos-delay='2900'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2900'].aos-animate {
  transition-delay: 2900ms;
}

body[data-aos-duration='2950'] [data-aos], [data-aos][data-aos][data-aos-duration='2950'] {
  transition-duration: 2950ms;
}

body[data-aos-delay='2950'] [data-aos], [data-aos][data-aos][data-aos-delay='2950'] {
  transition-delay: 0;
}

body[data-aos-delay='2950'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2950'].aos-animate {
  transition-delay: 2950ms;
}

body[data-aos-duration='3000'] [data-aos], [data-aos][data-aos][data-aos-duration='3000'] {
  transition-duration: 3000ms;
}

body[data-aos-delay='3000'] [data-aos], [data-aos][data-aos][data-aos-delay='3000'] {
  transition-delay: 0;
}

body[data-aos-delay='3000'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='3000'].aos-animate {
  transition-delay: 3000ms;
}

body[data-aos-easing="linear"] [data-aos], [data-aos][data-aos][data-aos-easing="linear"] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

body[data-aos-easing="ease"] [data-aos], [data-aos][data-aos][data-aos-easing="ease"] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

body[data-aos-easing="ease-in"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in"] {
  transition-timing-function: cubic-bezier(0.42, 0, 1, 1);
}

body[data-aos-easing="ease-out"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out"] {
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
}

body[data-aos-easing="ease-in-out"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out"] {
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

body[data-aos-easing="ease-in-back"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-back"] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

body[data-aos-easing="ease-out-back"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-back"] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body[data-aos-easing="ease-in-out-back"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-back"] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body[data-aos-easing="ease-in-sine"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-sine"] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

body[data-aos-easing="ease-out-sine"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-sine"] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

body[data-aos-easing="ease-in-out-sine"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-sine"] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

body[data-aos-easing="ease-in-quad"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-quad"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing="ease-out-quad"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-quad"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing="ease-in-out-quad"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-quad"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

body[data-aos-easing="ease-in-cubic"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-cubic"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing="ease-out-cubic"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-cubic"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing="ease-in-out-cubic"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-cubic"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

body[data-aos-easing="ease-in-quart"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-quart"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing="ease-out-quart"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-quart"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing="ease-in-out-quart"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-quart"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/**
 * Fade animations:
 * fade
 * fade-up, fade-down, fade-left, fade-right
 * fade-up-right, fade-up-left, fade-down-right, fade-down-left
 */
[data-aos^='fade'][data-aos^='fade'] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^='fade'][data-aos^='fade'].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-aos='fade-up'] {
  transform: translate3d(0, 30px, 0);
}

[data-aos='fade-down'] {
  transform: translate3d(0, -30px, 0);
}

[data-aos='fade-right'] {
  transform: translate3d(-30px, 0, 0);
}

[data-aos='fade-left'] {
  transform: translate3d(30px, 0, 0);
}

[data-aos='fade-up-right'] {
  transform: translate3d(-30px, 30px, 0);
}

[data-aos='fade-up-left'] {
  transform: translate3d(30px, 30px, 0);
}

[data-aos='fade-down-right'] {
  transform: translate3d(-30px, -30px, 0);
}

[data-aos='fade-down-left'] {
  transform: translate3d(30px, -30px, 0);
}

/**
 * Zoom animations:
 * zoom-in, zoom-in-up, zoom-in-down, zoom-in-left, zoom-in-right
 * zoom-out, zoom-out-up, zoom-out-down, zoom-out-left, zoom-out-right
 */
[data-aos^='zoom'][data-aos^='zoom'] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^='zoom'][data-aos^='zoom'].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-aos='zoom-in'] {
  transform: scale(0.6);
}

[data-aos='zoom-in-up'] {
  transform: translate3d(0, 30px, 0) scale(0.6);
}

[data-aos='zoom-in-down'] {
  transform: translate3d(0, -30px, 0) scale(0.6);
}

[data-aos='zoom-in-right'] {
  transform: translate3d(-30px, 0, 0) scale(0.6);
}

[data-aos='zoom-in-left'] {
  transform: translate3d(30px, 0, 0) scale(0.6);
}

[data-aos='zoom-out'] {
  transform: scale(1.2);
}

[data-aos='zoom-out-up'] {
  transform: translate3d(0, 30px, 0) scale(1.2);
}

[data-aos='zoom-out-down'] {
  transform: translate3d(0, -30px, 0) scale(1.2);
}

[data-aos='zoom-out-right'] {
  transform: translate3d(-30px, 0, 0) scale(1.2);
}

[data-aos='zoom-out-left'] {
  transform: translate3d(30px, 0, 0) scale(1.2);
}

/**
 * Slide animations
 */
[data-aos^='slide'][data-aos^='slide'] {
  transition-property: transform;
}

[data-aos^='slide'][data-aos^='slide'].aos-animate {
  transform: translate3d(0, 0, 0);
}

[data-aos='slide-up'] {
  transform: translate3d(0, 100%, 0);
}

[data-aos='slide-down'] {
  transform: translate3d(0, -100%, 0);
}

[data-aos='slide-right'] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos='slide-left'] {
  transform: translate3d(100%, 0, 0);
}

/**
 * Flip animations:
 * flip-left, flip-right, flip-up, flip-down
 */
[data-aos^='flip'][data-aos^='flip'] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos='flip-left'] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos='flip-left'].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos='flip-right'] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos='flip-right'].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos='flip-up'] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos='flip-up'].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos='flip-down'] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos='flip-down'].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

/**
 * Swiper 5.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 16, 2019
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

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

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

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

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

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

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* customize */
.swiper-button-prev {
  left: 0;
  width: 16px;
  height: 32px;
  margin-top: -16px;
  border-radius: 0 100px 100px 0;
  background: #FFF;
}

.swiper-button-prev:after {
  position: absolute;
  top: 50%;
  left: -7px;
  border: 5px solid transparent;
  border-left: 8px solid transparent;
  border-right: 8px solid #a6936a;
  content: '';
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (min-width: 1024px) {
  .swiper-button-prev {
    width: 23px;
    height: 46px;
    margin-top: -23px;
  }
  .swiper-button-prev:after {
    left: -9px;
    border: 7px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid #a6936a;
  }
}

.swiper-button-next {
  right: 0;
  width: 16px;
  height: 32px;
  margin-top: -16px;
  border-radius: 100px 0 0 100px;
  background: #FFF;
}

.swiper-button-next:after {
  position: absolute;
  top: 50%;
  right: -7px;
  border: 5px solid transparent;
  border-right: 8px solid transparent;
  border-left: 8px solid #a6936a;
  content: '';
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (min-width: 1024px) {
  .swiper-button-next {
    width: 23px;
    height: 46px;
    margin-top: -23px;
  }
  .swiper-button-next:after {
    right: -9px;
    border: 7px solid transparent;
    border-right: 10px solid transparent;
    border-left: 10px solid #a6936a;
  }
}

/*------------------------------------------------------------
  layout  [0] 共通パーツ用
------------------------------------------------------------*/
.l-container {
  overflow: hidden;
}

.l-section, .l-section--small {
  padding-top: 50px;
  padding-bottom: 50px;
}

.l-section p + p, .l-section--small p + p {
  margin-top: 1.4em;
}

@media screen and (min-width: 1024px) {
  .l-section, .l-section--small {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.l-section--small {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .l-section--small {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.l-center, .l-center--small, .l-center--pc-no-pad {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (min-width: 1024px) {
  .l-center, .l-center--small, .l-center--pc-no-pad {
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .l-center--small {
    max-width: 1050px;
  }
}

@media screen and (min-width: 1024px) {
  .l-center--pc-no-pad {
    max-width: 1200px;
    padding-right: 0;
    padding-left: 0;
  }
}

.l-sp-center {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (min-width: 1024px) {
  .l-sp-center {
    padding-right: 0;
    padding-left: 0;
  }
}

.l-pc-center {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .l-pc-center {
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (min-width: 1024px) {
  .l-pc-flex, .l-pc-flex--reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .l-pc-flex > *, .l-pc-flex--reverse > * {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .l-pc-flex--reverse {
    flex-flow: row-reverse nowrap;
  }
}

.l-flex-cen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media screen and (min-width: 1024px) {
  .l-pc-flex-cen, .l-pc-flex-cen--reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

@media screen and (min-width: 1024px) {
  .l-pc-flex-cen--reverse {
    flex-flow: row-reverse nowrap;
  }
}

.l-flex-ali-cen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (min-width: 1024px) {
  .l-pc-flex-ali-cen, .l-pc-flex-ali-cen--reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .l-pc-flex-ali-cen > *, .l-pc-flex-ali-cen--reverse > * {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .l-pc-flex-ali-cen--reverse {
    flex-flow: row-reverse nowrap;
  }
}

/* ---------------------------
  ヘッダー用
--------------------------- */
.l-header {
  position: fixed;
  top: 0;
  z-index: 300;
  width: 100%;
  height: 55px;
  background: transparent;
  transition: 0.3s background ease;
}

.l-header.is-scroll {
  background: rgba(0, 0, 0, 0.5);
}

.l-header .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 100%;
}

.l-header .logo {
  line-height: 1;
}

.l-header .logo a {
  opacity: 1 !important;
  color: #FFF;
}

@media screen and (min-width: 1024px) {
  .l-header {
    height: 70px;
  }
  .l-header .inner {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .l-header .logo {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    margin-top: 2px;
    color: #FFF;
    font-family: "Arno Pro", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: 0.3s opacity;
  }
  .is-fixed .l-header .logo {
    opacity: 0;
  }
  .l-header .reservation {
    display: inline-block;
    color: #FFF;
    font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1;
  }
  .l-header .reservation img {
    display: inline-block;
    margin-right: 8px;
    vertical-align: -1px;
  }
  .l-header .contact {
    display: inline-block;
    margin-left: 40px;
    color: #FFF;
    font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1;
  }
  .l-header .contact img {
    display: inline-block;
    width: 14px;
    margin-right: 8px;
    vertical-align: -1px;
  }
}

@keyframes menu-in {
  0% {
    transform: translate(-50%, 100%);
  }
  to {
    transform: translate(-50%);
  }
}

@keyframes menu-out {
  0% {
    transform: translate(-50%);
  }
  to {
    transform: translate(-50%, 100%);
  }
}

@keyframes menu-first-in {
  0% {
    transform: translateY(-100%);
    opacify: 0;
  }
  to {
    transform: translateY(0);
    opacify: 1;
  }
}

@keyframes menu-first-out {
  0% {
    transform: translateY(0);
    opacify: 1;
  }
  to {
    transform: translateY(-100%);
    opacify: 0;
  }
}

.l-menu-btn {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 60px;
  height: 55px;
  background: transparent;
}

.l-menu-btn:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: difference;
}

.l-menu-btn:hover {
  cursor: pointer;
  opacity: 1;
}

.l-menu-btn .bar {
  margin-left: -15px;
  width: 30px;
  height: 2px;
  display: block;
  background: #FFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: 0.3s opacity;
}

.l-menu-btn .bar.top {
  animation: menu-btn-top .3s;
  animation-fill-mode: both;
}

.l-menu-btn .bar.middle {
  transform: translateY(-1px);
  opacity: 1;
}

.l-menu-btn .bar.bottom {
  animation: menu-btn-bottom .3s;
  animation-fill-mode: both;
}

.l-menu-btn .menu, .l-menu-btn .close {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 90%;
  width: auto;
  height: auto;
  background: none;
  color: #FFF;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  transition: 0.3s opacity;
}

.l-menu-btn .menu {
  opacity: 1;
}

.l-menu-btn .close {
  opacity: 0;
}

.l-menu-btn.is-open .bar.top {
  animation: menu-btn-top-close .3s;
  animation-fill-mode: both;
}

.l-menu-btn.is-open .bar.middle {
  opacity: 0;
}

.l-menu-btn.is-open .bar.bottom {
  animation: menu-btn-bottom-close .3s;
  animation-fill-mode: both;
}

.l-menu-btn.is-open .menu {
  opacity: 0;
}

.l-menu-btn.is-open .close {
  opacity: 1;
}

@media screen and (min-width: 1024px) {
  .l-menu-btn {
    position: relative;
  }
  .l-menu-btn .menu, .l-menu-btn .close {
    font-size: 16px;
    font-size: 1rem;
  }
}

@keyframes menu-btn-top {
  0% {
    transform: translateY(-1px) rotate(-45deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-6px) rotate(0deg);
  }
}

@keyframes menu-btn-bottom {
  0% {
    transform: translateY(-1px) rotate(45deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

@keyframes menu-btn-top-close {
  0% {
    transform: translateY(-6px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-1px) rotate(-45deg);
  }
}

@keyframes menu-btn-bottom-close {
  0% {
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-1px) rotate(45deg);
  }
}

@keyframes menu-btn-top--pc {
  0% {
    transform: translateY(-1px) rotate(-40deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-17px) rotate(0deg);
  }
}

@keyframes menu-btn-bottom--pc {
  0% {
    transform: translateY(-1px) rotate(40deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(15px) rotate(0deg);
  }
}

@keyframes menu-btn-top-close--pc {
  0% {
    transform: translateY(-17px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-1px) rotate(-40deg);
  }
}

@keyframes menu-btn-bottom-close--pc {
  0% {
    transform: translateY(15px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-1px) rotate(40deg);
  }
}

/* ---------------------------
  共通メニュー用
--------------------------- */
.l-gnav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #000000;
  color: #FFF;
}

.l-gnav .inner {
  padding-top: 75px;
  padding-bottom: 100px;
}

.l-gnav .ttl {
  position: absolute;
  top: 19px;
  left: 50%;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.l-gnav .list {
  width: 220px;
  margin: 0 auto;
}

.l-gnav li + li {
  margin-top: 20px;
}

.l-gnav li a {
  display: inline-block;
  color: #FFF;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

.l-gnav li .ja {
  display: block;
  margin-bottom: 1px;
}

.l-gnav li .en {
  color: #a6936a;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Arno Pro", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.l-gnav .btns {
  max-width: 500px;
  margin: 35px auto 0;
  padding: 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.l-gnav .btns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border: 1px solid #FFF;
  color: #FFF;
  text-align: center;
  line-height: 1.2;
}

.l-gnav .btns img {
  margin-right: 5px;
}

.l-gnav .btns .reservation img {
  display: inline-block;
  width: 16px;
}

.l-gnav .btns .contact img {
  display: inline-block;
  width: 21px;
}

@media screen and (min-width: 1024px) {
  .l-gnav .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    padding: 0 15px;
  }
  .l-gnav .ttl {
    top: 27px;
    line-height: 1;
  }
  .l-gnav .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: start;
    justify-content: start;
    width: 900px;
    height: 410px;
  }
  .l-gnav li:nth-child(5) {
    margin-top: 0;
  }
  .l-gnav li a {
    font-size: 32px;
    font-size: 2rem;
  }
  .l-gnav li .ja {
    margin-bottom: 0;
  }
  .l-gnav li .en {
    color: #a6936a;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/* ---------------------------
  共通メニュー用ここまで
--------------------------- */
.l-main {
  display: block;
  position: relative;
}

.l-large-mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100vw;
  text-align: center;
}

.page-about .l-large-mv {
  height: 30vh;
  background: url(../images/about/mv.jpg) no-repeat center bottom;
  background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-about .l-large-mv {
    background-image: url(../images/about/mv@2x.jpg);
  }
}

@media (orientation: landscape) {
  .page-about .l-large-mv {
    height: 100vh;
  }
}

@media screen and (min-width: 768px) {
  .page-about .l-large-mv {
    height: 40vh;
  }
}

@media screen and (min-width: 768px) and (orientation: landscape) {
  .page-about .l-large-mv {
    height: 60vh;
  }
}

@media screen and (min-width: 1024px) {
  .page-about .l-large-mv {
    height: 80vh;
  }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
  .page-about .l-large-mv {
    height: 30vh;
  }
}

.page-world .l-large-mv {
  height: 40vh;
  background: url(../images/world/mv.jpg) no-repeat center bottom;
  background-size: auto 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-world .l-large-mv {
    background-image: url(../images/world/mv@2x.jpg);
  }
}

.page-world .l-large-mv .en {
  text-shadow: 0px 0px 20px black;
}

.page-world .l-large-mv .ja {
  text-shadow: 0px 0px 20px black;
}

@media (orientation: landscape) {
  .page-world .l-large-mv {
    height: 100vh;
  }
}

@media screen and (min-width: 768px) {
  .page-world .l-large-mv {
    height: 50vh;
  }
}

@media screen and (min-width: 768px) and (orientation: landscape) {
  .page-world .l-large-mv {
    height: 100vh;
  }
}

@media screen and (min-width: 1024px) {
  .page-world .l-large-mv {
    height: 100vh;
  }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
  .page-world .l-large-mv {
    height: 40vh;
  }
}

.l-large-mv .en {
  display: block;
  margin-top: 20px;
  color: #FFF;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Arno Pro", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
}

.l-large-mv .ja {
  display: block;
  margin-top: 5px;
  color: #FFF;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .l-large-mv .en {
    margin-top: 0;
    font-size: 60px;
    font-size: 3.75rem;
  }
  .l-large-mv .ja {
    margin-top: 20px;
    font-size: 32px;
    font-size: 2rem;
  }
}

.l-mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100vw;
  height: 30vh;
  text-align: center;
}

@media (orientation: landscape) {
  .l-mv {
    height: 100vh;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv {
    height: 525px;
  }
}

.page-touristspot .l-mv {
  background: url(../images/touristspot/mv.jpg) no-repeat center;
  background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-touristspot .l-mv {
    background-image: url(../images/touristspot/mv@2x.jpg);
  }
}

.page-touristspot .l-mv h2 {
  text-shadow: 0px 0px 20px black;
}

.page-modelcourses .l-mv {
  background: url(../images/modelcourses/mv.jpg) no-repeat center;
  background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-modelcourses .l-mv {
    background-image: url(../images/modelcourses/mv@2x.jpg);
  }
}

.page-modelcourses .l-mv h2 {
  text-shadow: 0px 0px 20px black, 0px 0px 20px black, 0px 0px 20px black;
}

.l-mv .en {
  display: block;
  margin-top: 20px;
  color: #FFF;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Arno Pro", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
}

.l-mv .ja {
  display: block;
  margin-top: 5px;
  color: #FFF;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .l-mv .en {
    margin-top: 0;
    font-size: 60px;
    font-size: 3.75rem;
  }
  .l-mv .ja {
    margin-top: 20px;
    font-size: 32px;
    font-size: 2rem;
  }
}

.l-icon-mv, .l-icon-mv--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 350px;
}

.l-icon-mv h2, .l-icon-mv--small h2 {
  color: #FFF;
  font-weight: normal;
  line-height: 1;
  text-align: center;
}

.l-icon-mv img, .l-icon-mv--small img {
  display: block;
  width: 160px;
  margin: 0 auto;
}

.l-icon-mv .en, .l-icon-mv--small .en {
  display: block;
  margin-top: 20px;
  font-size: 45px;
  font-size: 2.8125rem;
  font-family: "Arno Pro", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.l-icon-mv .ja, .l-icon-mv--small .ja {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  font-size: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .l-icon-mv, .l-icon-mv--small {
    height: 525px;
  }
  .l-icon-mv img, .l-icon-mv--small img {
    width: 213px;
  }
  .l-icon-mv .en, .l-icon-mv--small .en {
    margin-top: 35px;
    font-size: 60px;
    font-size: 3.75rem;
  }
  .l-icon-mv .ja, .l-icon-mv--small .ja {
    margin-top: 20px;
    font-size: 32px;
    font-size: 2rem;
  }
}

.l-icon-mv--small {
  height: 200px;
}

@media screen and (min-width: 1024px) {
  .l-icon-mv--small {
    height: 335px;
  }
}

.l-pc-two-columns .sub-column {
  padding-top: 0;
}

@media screen and (min-width: 1024px) {
  .l-pc-two-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .l-pc-two-columns .main-column {
    width: 75%;
    max-width: calc(100% - 270px);
  }
  .l-pc-two-columns .sub-column {
    padding-top: 90px;
    width: 220px;
  }
}

/* ---------------------------
  フッター用
--------------------------- */
.l-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100px;
  background: #000000;
  color: #FFF;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

.l-footer small {
  display: inline-block;
  margin-top: 15px;
  font-size: 11px;
  font-size: 0.6875rem;
}

@media screen and (min-width: 1024px) {
  .l-footer {
    height: 180px;
  }
  .l-footer p {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .l-footer small {
    margin-top: 30px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*------------------------------------------------------------
  compornent  [0] 共通パーツ用
------------------------------------------------------------*/
/*
  見出し
*/
.c-bonsai-ttl, .c-bonsai-ttl--white {
  position: relative;
  padding-top: 44px;
  color: #000000;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.c-bonsai-ttl .ja, .c-bonsai-ttl--white .ja {
  display: block;
}

.c-bonsai-ttl .en, .c-bonsai-ttl--white .en {
  color: #a6936a;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Arno Pro", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.c-bonsai-ttl:before, .c-bonsai-ttl--white:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  width: 48px;
  height: 34px;
  background: url(../images/common/icon_bonsai_dark.png) no-repeat center;
  background-size: 100%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .c-bonsai-ttl:before, .c-bonsai-ttl--white:before {
    background-image: url(../images/common/icon_bonsai_dark@2x.png);
  }
}

@media screen and (min-width: 1024px) {
  .c-bonsai-ttl, .c-bonsai-ttl--white {
    padding-top: 76px;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.6;
  }
  .c-bonsai-ttl .en, .c-bonsai-ttl--white .en {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .c-bonsai-ttl:before, .c-bonsai-ttl--white:before {
    width: 96px;
    height: 68px;
  }
}

.c-bonsai-ttl--white {
  color: #FFF;
}

.c-bonsai-ttl--white:before {
  background-image: url(../images/common/icon_bonsai.png);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .c-bonsai-ttl--white:before {
    background-image: url(../images/common/icon_bonsai@2x.png);
  }
}

.c-en-large-ttl {
  color: #a6936a;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 300;
  font-family: "Arno Pro", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-en-large-ttl {
    font-size: 80px;
    font-size: 5rem;
  }
}

.c-ja-large-ttl {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-ja-large-ttl {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.4;
  }
}

.c-sec-ttl {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  line-height: 1;
  text-align: center;
}

.c-sec-ttl > span {
  position: relative;
  text-align: center;
}

.c-sec-ttl .en {
  display: inline-block;
  color: #0335aa;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 300;
}

.c-sec-ttl .ja {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
}

.c-sec-ttl:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  width: 15px;
  height: 1px;
  background: #0335aa;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

@media screen and (min-width: 1024px) {
  .c-sec-ttl {
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
  .c-sec-ttl .en {
    font-size: 42px;
    font-size: 2.625rem;
  }
  .c-sec-ttl .ja {
    margin-top: 18px;
    font-size: 16px;
    font-size: 1rem;
  }
  .c-sec-ttl:after {
    width: 30px;
    height: 2px;
  }
}

.c-border-ttl, .c-border-ttl--small, .c-border-ttl--large, .c-border-ttl--blue, .c-border-ttl--center {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}

.c-border-ttl:before, .c-border-ttl--small:before, .c-border-ttl--large:before, .c-border-ttl--blue:before, .c-border-ttl--center:before {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: #0335aa;
}

@media screen and (min-width: 1024px) {
  .c-border-ttl, .c-border-ttl--small, .c-border-ttl--large, .c-border-ttl--blue, .c-border-ttl--center {
    margin-bottom: 30px;
    padding-bottom: 12px;
    font-size: 28px;
    font-size: 1.75rem;
  }
  .c-border-ttl:before, .c-border-ttl--small:before, .c-border-ttl--large:before, .c-border-ttl--blue:before, .c-border-ttl--center:before {
    width: 32px;
  }
}

.c-border-ttl--small {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (min-width: 1024px) {
  .c-border-ttl--small {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.c-border-ttl--large {
  font-size: 26px;
  font-size: 1.625rem;
}

@media screen and (min-width: 1024px) {
  .c-border-ttl--large {
    font-size: 38px;
    font-size: 2.375rem;
  }
}

.c-border-ttl--blue {
  color: #0335aa;
}

.c-border-ttl--center {
  text-align: center;
}

.c-border-ttl--center:before {
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

/*
  ボタン
*/
.c-more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: max-content;
  min-width: 200px;
  min-height: 40px;
  margin: 0 auto;
  padding: 5px 35px;
  border: 1px solid #FFF;
  border-radius: 100px;
  line-height: 1;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  transition: background 0.3s ease, color 0.3s ease;
}

.c-more-btn:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  right: -21px;
  border: 3px solid transparent;
  border-right: 5px solid transparent;
  border-left: 5px solid #a6936a;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.c-more-btn:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  right: -10px;
  width: 60px;
  height: 1px;
  background: #a6936a;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.c-more-btn:active {
  opacity: 1;
}

.c-more-btn:hover {
  opacity: 1;
  background: #FFF;
  color: #000000;
}

@media screen and (min-width: 1024px) {
  .c-more-btn {
    min-width: 250px;
    max-width: 420px;
    min-height: 60px;
  }
  .c-more-btn:before {
    right: -36px;
    border: 4px solid transparent;
    border-right: 8px solid transparent;
    border-left: 8px solid #a6936a;
  }
  .c-more-btn:after {
    display: block;
    position: absolute;
    content: '';
    right: -25px;
    width: 84px;
  }
}

@media all and (-ms-high-contrast: none) {
  .c-more-btn {
    max-width: 420px;
    height: 60px;
    min-height: none;
  }
}

@supports (-ms-ime-align: auto) {
  .c-more-btn {
    max-width: 420px;
  }
}

.c-gold-btn, .c-gold-btn--external-link, .c-gold-btn--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: max-content;
  min-width: 220px;
  max-width: 425px;
  min-height: 40px;
  margin: 0 auto;
  padding: 5px 35px;
  border: 1px solid #a6936a;
  border-radius: 100px;
  background: #a6936a;
  line-height: 1;
  text-align: center;
  color: #FFF;
  transition: background 0.3s ease, color 0.3s ease;
}

.c-gold-btn:before, .c-gold-btn--external-link:before, .c-gold-btn--left:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  border: 3px solid transparent;
  border-right: 5px solid transparent;
  border-left: 5px solid #FFF;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  transition: all 0.3s ease;
}

.c-gold-btn:active, .c-gold-btn--external-link:active, .c-gold-btn--left:active {
  opacity: 1;
}

.c-gold-btn:hover, .c-gold-btn--external-link:hover, .c-gold-btn--left:hover {
  opacity: 1;
  background: #FFF;
  color: #a6936a;
}

.c-gold-btn:hover:before, .c-gold-btn--external-link:hover:before, .c-gold-btn--left:hover:before {
  border-left-color: #a6936a;
}

@media screen and (min-width: 1024px) {
  .c-gold-btn, .c-gold-btn--external-link, .c-gold-btn--left {
    min-width: 425px;
    max-width: 425px;
    min-height: 60px;
  }
  .c-gold-btn:before, .c-gold-btn--external-link:before, .c-gold-btn--left:before {
    right: 15px;
    border: 4px solid transparent;
    border-right: 8px solid transparent;
    border-left: 8px solid #FFF;
  }
}

@media all and (-ms-high-contrast: none) {
  .c-gold-btn, .c-gold-btn--external-link, .c-gold-btn--left {
    max-width: 425px;
    height: 60px;
    min-height: none;
  }
}

@supports (-ms-ime-align: auto) {
  .c-gold-btn, .c-gold-btn--external-link, .c-gold-btn--left {
    max-width: 425px;
  }
}

.c-gold-btn--external-link:before {
  right: 15px;
  width: 14px;
  height: 14px;
  border: none;
  background: url(../images/touristspot/icon_external_link_white.svg) no-repeat center;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .c-gold-btn--external-link:before {
    background-image: url(../images/touristspot/icon_external_link_white@2x.svg);
  }
}

.c-gold-btn--external-link:hover:before {
  background-image: url(../images/touristspot/icon_external_link_gold.svg);
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .c-gold-btn--external-link:hover:before {
    background-image: url(../images/touristspot/icon_external_link_gold@2x.svg);
  }
}

@media screen and (min-width: 1024px) {
  .c-gold-btn--external-link:before {
    right: 25px;
    width: 18px;
    height: 18px;
  }
}

.c-gold-btn--left:before {
  display: block;
  position: absolute;
  content: '';
  right: auto;
  left: 10px;
  -webkit-transform: translate(0%, -50%) rotate(180deg);
  transform: translate(0%, -50%) rotate(180deg);
}

@media screen and (min-width: 1024px) {
  .c-gold-btn--left:before {
    left: 15px;
  }
}

.c-btns {
  margin-top: 20px;
}

.c-btns > * {
  width: 80%;
  min-width: auto;
  margin: 20px auto 0;
}

@media screen and (min-width: 1024px) {
  .c-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 50px;
  }
  .c-btns > * {
    margin: 0 10px;
  }
}

/*
  リスト
*/
.c-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #a6936a;
}

.c-icons li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 50%;
  line-height: 1.3;
}

.c-icons li + li {
  margin-top: 15px;
}

.c-icons li:nth-child(2) {
  margin-top: 0;
}

.c-icons span {
  display: inline-block;
  width: calc(100% - 38px);
  padding: 0 5px;
}

@media screen and (min-width: 768px) {
  .c-icons li {
    width: 33.3%;
  }
  .c-icons li:nth-child(3) {
    margin-top: 0;
  }
  .c-icons span {
    padding-right: 20px;
    padding-left: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .c-icons {
    padding: 40px 50px;
  }
  .c-icons li {
    width: 18%;
  }
  .c-icons li + li {
    margin-top: 20px;
  }
  .c-icons li:nth-child(4), .c-icons li:nth-child(5) {
    margin-top: 0;
  }
  .c-icons li:nth-child(1), .c-icons li:nth-child(6) {
    width: 28%;
  }
}

.c-items {
  margin-top: 30px;
}

.c-items > li {
  padding: 30px 15px;
  background: #FFF;
}

.c-items > li + li {
  margin-top: 50px;
}

.c-items .info {
  position: relative;
}

.c-items .reservation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 2px;
  right: 0;
  width: 60px;
  height: 25px;
  background: #a6936a;
  color: #FFF;
  line-height: 1;
  content: '';
}

.c-items .name {
  margin-top: 0;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.3;
}

.c-items .name span {
  font-size: 15px;
  font-size: 0.9375rem;
}

.c-items .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 20px 0 10px;
}

.c-items .icons li {
  width: 9%;
}

.c-items .text {
  line-height: 2.8;
}

.c-items table {
  width: 100%;
  margin-top: 20px;
}

.c-items th, .c-items td {
  padding: 10px 10px;
  border-top: 1px solid #FFF;
  vertical-align: middle;
}

.c-items th {
  min-width: 60px;
  background: #a6936a;
  color: #FFF;
  text-align: center;
}

.c-items td {
  border-left: 1px solid #FFF;
  background: #f5f2e8;
  text-align: left;
}

.c-items td a {
  text-decoration: underline;
}

.c-items .photo {
  margin-top: 20px;
}

.c-items .gallery-thumbs {
  overflow: visible;
  margin-top: 10px;
  margin-bottom: 5px;
}

.c-items .gallery-thumbs .swiper-slide {
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.c-items .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  -webkit-transform: translate(0, -5px);
  transform: translate(0, -5px);
}

.c-items iframe {
  width: 100%;
  margin-top: 20px;
}

.c-items dl {
  margin-top: 30px;
}

.c-items dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 130px;
  height: 25px;
  margin-bottom: -12px;
  background: #a6936a;
  color: #FFF;
  line-height: 1;
}

.c-items dd {
  border: 1px solid #a6936a;
  padding: 20px 15px;
  line-height: 2.25;
}

@media screen and (min-width: 768px) {
  .c-items {
    margin-top: 60px;
  }
  .c-items > li {
    padding: 40px;
  }
  .c-items > li + li {
    margin-top: 60px;
  }
  .c-items > li .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .c-items > li .info {
    width: 49%;
  }
  .c-items > li .photo {
    width: 46.6%;
    margin-top: 0;
  }
  .c-items .reservation {
    top: 3px;
    width: 80px;
    height: 30px;
  }
  .c-items .name {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .c-items .name span {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-items .icons {
    margin: 30px 0 15px;
  }
  .c-items .text {
    line-height: 3;
  }
  .c-items table {
    margin-top: 30px;
  }
  .c-items th, .c-items td {
    padding: 13px 20px;
    line-height: 1.5;
  }
  .c-items th {
    min-width: 100px;
  }
  .c-items .gallery-thumbs {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .c-items iframe {
    width: 100%;
    min-height: 248px;
    margin-top: 25px;
  }
  .c-items dl {
    margin-top: 50px;
  }
  .c-items dt {
    width: 170px;
    height: 35px;
    margin-bottom: -18px;
  }
  .c-items dd {
    padding: 30px 20px;
    line-height: 2.25;
  }
}

@media screen and (min-width: 1024px) {
  .c-items > li {
    padding: 85px;
  }
  .c-items > li + li {
    margin-top: 100px;
  }
}

/*
  テーブル
*/
/*
  背景
*/
.c-bg {
  background: url(../images/about/bg.jpg) repeat center top;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .c-bg {
    background-image: url(../images/about/bg@2x.jpg);
  }
}

/*
  フォーム
*/
.c-form {
  width: 100%;
}

.c-form > dl {
  width: 100%;
  padding: 5px 0;
}

.c-form > dl > dt, .c-form > dl > dd {
  padding: 5px 0;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  vertical-align: middle;
}

.c-form > dl > dt {
  position: relative;
  font-weight: bold;
}

.c-form input[name="zip1"], .c-form input[name="zip2"] {
  display: inline-block !important;
  width: 100px !important;
}

.c-form input[name="zip1"] + span {
  display: inline-block;
  margin: 0 13px;
}

@media screen and (min-width: 1024px) {
  .c-form {
    display: table;
    table-layout: fixed;
  }
  .c-form > dl {
    display: table-row;
  }
  .c-form > dl > dt, .c-form > dl > dd {
    padding: 19px 0;
    display: table-cell;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .c-form > dl > dt {
    width: 30%;
    padding-right: 3%;
    vertical-align: top;
  }
  .c-form > dl > dd {
    width: 70%;
    padding-left: 2%;
  }
}

.c-required {
  display: inline-block;
  width: 45px;
  height: 20px;
  margin-right: 15px;
  padding: 0px 5px;
  background: #cf0404;
  color: #FFF;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-required {
    width: 60px;
    height: 30px;
    padding: 7px 5px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }
}

.c-optional {
  display: inline-block;
  width: 45px;
  height: 20px;
  margin-right: 15px;
  padding: 0px 5px;
  background: #a3a3a3;
  color: #FFF;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-optional {
    width: 60px;
    height: 30px;
    padding: 7px 5px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    vertical-align: 1px;
  }
}

/*
  バナー
*/
/*
  リード文
*/
.c-lead, .c-lead--no-deco {
  position: relative;
}

.c-lead:before, .c-lead--no-deco:before {
  display: block;
  position: absolute;
  content: '';
  top: -30px;
  right: 0;
  width: 44px;
  height: 74px;
  background: url(../images/common/deco_ichimatsu_right_center.png) no-repeat center;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .c-lead:before, .c-lead--no-deco:before {
    background-image: url(../images/common/deco_ichimatsu_right_center@2x.png);
  }
}

.c-lead:after, .c-lead--no-deco:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -40px;
  left: 0;
  width: 59px;
  height: 59px;
  background: url(../images/common/deco_ichimatsu_left_bottom.png) no-repeat center;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .c-lead:after, .c-lead--no-deco:after {
    background-image: url(../images/common/deco_ichimatsu_left_bottom@2x.png);
  }
}

.c-lead p, .c-lead--no-deco p {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2.666;
}

@media screen and (min-width: 1024px) {
  .c-lead:before, .c-lead--no-deco:before {
    top: 20px;
    width: 87px;
    height: 147px;
  }
  .c-lead:after, .c-lead--no-deco:after {
    bottom: -20px;
    width: 118px;
    height: 118px;
  }
  .c-lead p, .c-lead--no-deco p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.c-lead--no-deco:before, .c-lead--no-deco:after {
  content: none;
}

/*------------------------------------------------------------
  index  [1] TOPページ用
------------------------------------------------------------*/
.page-index .p-mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100vw;
  height: calc(100vh + 150px);
  background: url(../images/index/mv.jpg) no-repeat center top;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-index .p-mv {
    background-image: url(../images/index/mv@2x.jpg);
  }
}

.page-index .p-mv h1 {
  color: #FFF;
  font-size: 60px;
  font-size: 3.75rem;
  font-family: "Arno Pro", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.099;
  text-align: center;
  text-shadow: 0px 0px 14.85px rgba(149, 81, 6, 0.8);
  -webkit-transform: translate(0%, 37%);
  transform: translate(0%, 37%);
}

.page-index .p-mv button {
  display: block;
  position: absolute;
  content: '';
  bottom: 130px;
  left: 50%;
  color: #FFF;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.page-index .p-mv button:hover {
  opacity: 1;
}

.page-index .p-mv button:before {
  display: block;
  position: absolute;
  content: '';
  bottom: -130px;
  left: 50%;
  width: 2px;
  height: 125px;
  background: #FFF;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.page-index .p-mv button:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -40px;
  left: 50%;
  width: 6px;
  height: 40px;
  background: #a6936a;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  animation: bar-move 2.2s infinite ease-out;
}

@media screen and (min-width: 768px) {
  .page-index .p-mv {
    height: calc(100vh + 300px);
    background-position: center top -100px;
  }
  .page-index .p-mv h1 {
    font-size: 120px;
    font-size: 7.5rem;
    -webkit-transform: translate(0%, 36%);
    transform: translate(0%, 36%);
  }
}

@media (orientation: landscape) {
  .page-index .p-mv {
    height: 100vh;
    min-height: 450px;
    background-image: url(../images/index/mv_pc.jpg);
    background-position: center;
    background-size: cover;
  }
}

@media (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2), (orientation: landscape) and (min-resolution: 2dppx) {
  .page-index .p-mv {
    background-image: url(../images/index/mv_pc@2x.jpg);
  }
}

@media (orientation: landscape) {
  .page-index .p-mv h1 {
    font-size: 50px;
    font-size: 3.125rem;
    -webkit-transform: translate(-36%, -6%);
    transform: translate(-36%, -6%);
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-mv {
    height: 100vh;
    background-image: url(../images/index/mv_pc.jpg);
    background-position: center;
    background-size: cover;
  }
}

@media screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .page-index .p-mv {
    background-image: url(../images/index/mv_pc@2x.jpg);
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-mv h1 {
    font-size: 100px;
    font-size: 6.25rem;
    -webkit-transform: translate(-36%, -6%);
    transform: translate(-36%, -6%);
  }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
  .page-index .p-mv {
    background-position: right 32% center;
  }
}

@media screen and (min-width: 1280px) {
  .page-index .p-mv {
    background-position: center;
    background-size: cover;
  }
  .page-index .p-mv h1 {
    font-size: 120px;
    font-size: 7.5rem;
  }
}

@keyframes bar-move {
  from {
    bottom: -40px;
  }
  to {
    bottom: -130px;
  }
}

.page-index .p-enjoy .about {
  margin-top: 30px;
}

.page-index .p-enjoy .about .text:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  width: 59px;
  height: 59px;
  background: url(../images/common/deco_ichimatsu_right_bottom.png) no-repeat center;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-index .p-enjoy .about .text:after {
    background-image: url(../images/common/deco_ichimatsu_right_bottom@2x.png);
  }
}

.page-index .p-enjoy .world {
  margin-top: 30px;
}

.page-index .p-enjoy .world .text:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 59px;
  height: 59px;
  background: url(../images/common/deco_ichimatsu_left_bottom.png) no-repeat center;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-index .p-enjoy .world .text:after {
    background-image: url(../images/common/deco_ichimatsu_left_bottom@2x.png);
  }
}

.page-index .p-enjoy img {
  width: 100%;
}

.page-index .p-enjoy .text {
  position: relative;
  padding: 40px 15px;
  color: #FFF;
  text-align: center;
}

.page-index .p-enjoy .text .en {
  color: #a6936a;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 300;
  font-family: "Arno Pro", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.1;
}

.page-index .p-enjoy .text .ja {
  margin-top: 8px;
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (min-width: 1024px) {
  .page-index .p-enjoy .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 70px;
  }
  .page-index .p-enjoy .about > * {
    width: 50%;
  }
  .page-index .p-enjoy .about .text:after {
    width: 207px;
    height: 177px;
    background: url(../images/common/deco_ichimatsu_right_bottom_pc.png) no-repeat center;
    background-size: 100%;
  }
}

@media screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .page-index .p-enjoy .about .text:after {
    background-image: url(../images/common/deco_ichimatsu_right_bottom_pc@2x.png);
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-enjoy .world {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .page-index .p-enjoy .world > * {
    width: 50%;
  }
  .page-index .p-enjoy .world .text:after {
    width: 177px;
    height: 207px;
    background: url(../images/common/deco_ichimatsu_left_bottom_pc.png) no-repeat center;
    background-size: 100%;
  }
}

@media screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .page-index .p-enjoy .world .text:after {
    background-image: url(../images/common/deco_ichimatsu_left_bottom_pc@2x.png);
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-enjoy .text {
    padding: 90px 15px;
  }
  .page-index .p-enjoy .text .en {
    font-size: 80px;
    font-size: 5rem;
  }
  .page-index .p-enjoy .text .ja {
    margin-top: 20px;
    margin-bottom: 35px;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.4;
  }
  .page-index .p-enjoy .text p {
    line-height: 2.25;
  }
}

.page-index .p-sightseeing {
  padding-bottom: 30px;
  background: url(../images/index/sightseeing_bg.jpg) no-repeat center top;
  background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-index .p-sightseeing {
    background-image: url(../images/index/sightseeing_bg@2x.jpg);
  }
}

.page-index .p-sightseeing .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  color: #FFF;
  text-align: center;
}

.page-index .p-sightseeing .block .ttl {
  margin-top: 20px;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Arno Pro", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0px 0px 20px black;
}

.page-index .p-sightseeing .block .text {
  margin-top: 10px;
  text-shadow: 0px 0px 20px black;
}

.page-index .p-sightseeing .block a {
  margin-top: 20px;
}

.page-index .p-sightseeing .block.tour div:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-index .p-sightseeing .block.tour div:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  z-index: 2;
  color: #FFF;
  font-size: 20px;
  font-size: 1.25rem;
  content: '準備中';
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-index .p-sightseeing a.block {
  position: relative;
}

.page-index .p-sightseeing a.block:before {
  display: block;
  position: absolute;
  content: '';
  bottom: 25px;
  right: 50%;
  border: 3px solid transparent;
  border-right: 5px solid transparent;
  border-left: 5px solid #FFF;
  -webkit-transform: translate(38px, 50%);
  transform: translate(38px, 50%);
}

.page-index .p-sightseeing a.block:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 25px;
  right: 50%;
  width: 60px;
  height: 1px;
  background: #FFF;
  -webkit-transform: translate(27px, 50%);
  transform: translate(27px, 50%);
}

.page-index .p-sightseeing .spot {
  height: 225px;
  margin-top: 50px;
  background: url(../images/index/sightseeing_img_01.jpg) no-repeat center;
  background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-index .p-sightseeing .spot {
    background-image: url(../images/index/sightseeing_img_01@2x.jpg);
  }
}

.page-index .p-sightseeing .courses {
  height: 225px;
  background: url(../images/index/sightseeing_img_02.jpg) no-repeat center;
  background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-index .p-sightseeing .courses {
    background-image: url(../images/index/sightseeing_img_02@2x.jpg);
  }
}

.page-index .p-sightseeing .tour {
  height: 225px;
  background: url(../images/index/sightseeing_img_03.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-index .p-sightseeing .tour {
    background-image: url(../images/index/sightseeing_img_03@2x.jpg);
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-sightseeing {
    padding-bottom: 160px;
    background: url(../images/index/sightseeing_bg_pc.jpg) no-repeat center bottom;
    background-size: cover;
  }
}

@media screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .page-index .p-sightseeing {
    background-image: url(../images/index/sightseeing_bg_pc@2x.jpg);
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-sightseeing .block .ttl {
    margin-top: 80px;
    margin-bottom: 0;
    font-size: 50px;
    font-size: 3.125rem;
  }
  .page-index .p-sightseeing .block .text {
    margin-top: 0;
  }
  .page-index .p-sightseeing .block a {
    margin-top: 25px;
  }
  .page-index .p-sightseeing a.block:before {
    bottom: 20px;
    right: 12px;
    border: 4px solid transparent;
    border-right: 8px solid transparent;
    border-left: 8px solid #FFF;
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
  }
  .page-index .p-sightseeing a.block:after {
    bottom: 20px;
    right: 20px;
    width: 84px;
    height: 1px;
    background: #FFF;
    -webkit-transform: translate(-9px, 50%);
    transform: translate(-9px, 50%);
  }
  .page-index .p-sightseeing .spot {
    height: 350px;
    background: url(../images/index/sightseeing_img_01_pc.jpg) no-repeat center;
    background-size: cover;
  }
}

@media screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .page-index .p-sightseeing .spot {
    background-image: url(../images/index/sightseeing_img_01_pc@2x.jpg);
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-sightseeing .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .page-index .p-sightseeing .flex > * {
    width: calc(50% - 1.5px);
  }
  .page-index .p-sightseeing .courses {
    height: 400px;
    background: url(../images/index/sightseeing_img_02_pc.jpg) no-repeat center;
    background-size: cover;
  }
}

@media screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .page-index .p-sightseeing .courses {
    background-image: url(../images/index/sightseeing_img_02_pc@2x.jpg);
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-sightseeing .courses .ttl {
    padding-top: 20px;
    margin-bottom: 80px;
  }
  .page-index .p-sightseeing .tour {
    height: 400px;
    background: url(../images/index/sightseeing_img_03_pc.jpg) no-repeat center;
    background-size: cover;
  }
}

@media screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .page-index .p-sightseeing .tour {
    background-image: url(../images/index/sightseeing_img_03_pc@2x.jpg);
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-sightseeing .tour .ttl {
    padding-top: 20px;
    margin-bottom: 80px;
  }
}

.page-index .p-sightseeing li + li {
  margin-top: 1px;
}

.page-index .p-sightseeing li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  height: 170px;
  background: #FFF;
}

.page-index .p-sightseeing li a:before {
  display: block;
  position: absolute;
  content: '';
  bottom: 20px;
  right: 12px;
  border: 3px solid transparent;
  border-right: 5px solid transparent;
  border-left: 5px solid #a6936a;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.page-index .p-sightseeing li a:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 20px;
  right: 14px;
  width: 60px;
  height: 1px;
  background: #a6936a;
  -webkit-transform: translate(-9px, 50%);
  transform: translate(-9px, 50%);
}

.page-index .p-sightseeing li a > * {
  width: 50%;
}

.page-index .p-sightseeing li .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.page-index .p-sightseeing li img {
  height: 100px;
}

.page-index .p-sightseeing li .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
}

.page-index .p-sightseeing li .ttl {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
}

.page-index .p-sightseeing li .ttl + p {
  margin-top: 10px;
}

@media screen and (min-width: 1024px) {
  .page-index .p-sightseeing ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .page-index .p-sightseeing li {
    width: calc(33.333% - 0.666px);
  }
  .page-index .p-sightseeing li + li {
    margin-top: 0;
  }
  .page-index .p-sightseeing li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -moz-flex-direction: column;
    flex-direction: column;
    height: 450px;
  }
  .page-index .p-sightseeing li a:before {
    bottom: 20px;
    right: 12px;
    border: 4px solid transparent;
    border-right: 8px solid transparent;
    border-left: 8px solid #a6936a;
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
  }
  .page-index .p-sightseeing li a:after {
    bottom: 20px;
    right: 20px;
    width: 84px;
    height: 1px;
    background: #a6936a;
    -webkit-transform: translate(-9px, 50%);
    transform: translate(-9px, 50%);
  }
  .page-index .p-sightseeing li a > * {
    width: 100%;
  }
  .page-index .p-sightseeing li img {
    height: 200px;
  }
  .page-index .p-sightseeing li .text {
    padding-top: 50px;
  }
  .page-index .p-sightseeing li .ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .page-index .p-sightseeing li .ttl + p {
    margin-top: 20px;
    line-height: 1.625;
  }
}

/*------------------------------------------------------------
  about  [1.2] 勧進帳とはページ用
------------------------------------------------------------*/
.page-about .p-lead {
  position: relative;
}

.page-about .p-lead:before {
  display: block;
  position: absolute;
  content: '';
  top: 20px;
  right: 0;
  width: 44px;
  height: 74px;
  background: url(../images/common/deco_ichimatsu_right_center.png) no-repeat center;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-about .p-lead:before {
    background-image: url(../images/common/deco_ichimatsu_right_center@2x.png);
  }
}

.page-about .p-lead:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 59px;
  height: 59px;
  background: url(../images/common/deco_ichimatsu_left_bottom.png) no-repeat center;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-about .p-lead:after {
    background-image: url(../images/common/deco_ichimatsu_left_bottom@2x.png);
  }
}

.page-about .p-lead p {
  position: relative;
  padding-top: 44px;
  color: #FFF;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.666;
  text-align: center;
}

.page-about .p-lead p:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  width: 48px;
  height: 34px;
  background: url(../images/common/icon_bonsai.png) no-repeat center;
  background-size: 100%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-about .p-lead p:before {
    background-image: url(../images/common/icon_bonsai@2x.png);
  }
}

@media screen and (min-width: 1024px) {
  .page-about .p-lead:before {
    width: 87px;
    height: 147px;
  }
  .page-about .p-lead:after {
    width: 118px;
    height: 118px;
  }
  .page-about .p-lead p {
    padding-top: 100px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .page-about .p-lead p:before {
    width: 96px;
    height: 68px;
  }
}

.page-about .bg {
  background: url(../images/about/bg.jpg) no-repeat center top;
  background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-about .bg {
    background-image: url(../images/about/bg@2x.jpg);
  }
}

.page-about .p-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 50px;
}

.page-about .p-index li {
  width: 33.333%;
}

.page-about .p-index li + li {
  border-left: 1px solid #a6936a;
}

.page-about .p-index a {
  display: block;
  position: relative;
  height: 100%;
  padding: 0 5px 12px;
  text-align: center;
}

.page-about .p-index a:before {
  display: block;
  position: absolute;
  content: '';
  bottom: -7px;
  left: 50%;
  border: 4px solid transparent;
  border-bottom: 7px solid transparent;
  border-top: 7px solid #a6936a;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  transition: bottom 0.3s ease;
}

.page-about .p-index a:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 6px;
  left: 50%;
  width: 1px;
  height: 0px;
  background: #a6936a;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  transition: bottom 0.3s ease, height 0.3s ease;
}

.page-about .p-index .ja {
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
}

.page-about .p-index .en {
  color: #a6936a;
  font-size: 10px;
  font-size: 0.625rem;
}

@media screen and (min-width: 1024px) {
  .page-about .p-index {
    padding-top: 90px;
  }
  .page-about .p-index li {
    width: auto;
  }
  .page-about .p-index a {
    display: inline-block;
    width: auto;
    padding: 0 50px 20px;
    line-height: 1;
  }
  .page-about .p-index a:hover {
    opacity: 1;
  }
  .page-about .p-index a:hover:before {
    bottom: -22px;
  }
  .page-about .p-index a:hover:after {
    bottom: -5px;
    height: 11px;
  }
  .page-about .p-index .ja {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .page-about .p-index .en {
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    font-size: 1rem;
  }
}

.page-about h3 {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: -10px;
  margin-left: -15px;
  padding: 15px;
  background: #FFF;
  line-height: 1;
}

.page-about h3 span {
  display: inline-block;
  vertical-align: middle;
}

.page-about h3 .ja {
  font-size: 24px;
  font-size: 1.5rem;
}

.page-about h3 .en {
  margin-left: 15px;
  color: #a6936a;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media screen and (min-width: 1024px) {
  .page-about h3 {
    margin-top: 0;
    margin-left: -40px;
    padding: 33px 40px;
  }
  .page-about h3 .ja {
    font-size: 32px;
    font-size: 2rem;
  }
  .page-about h3 .en {
    margin-left: 25px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 1024px) {
  .page-about .figure {
    margin-bottom: -65px;
  }
}

@media screen and (min-width: 1280px) {
  .page-about .figure img {
    max-width: none;
  }
}

.page-about p {
  margin-top: 10px;
  line-height: 3;
}

@media screen and (min-width: 1024px) {
  .page-about p {
    margin-top: 20px;
  }
}

.page-about .p-about .figure {
  position: relative;
  margin-right: -15px;
}

.page-about .p-about figcaption {
  position: absolute;
  bottom: -23px;
  left: 275px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 567px) {
  .page-about .p-about figcaption {
    top: -20px;
    right: 5px;
    bottom: auto;
    left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .page-about .p-about figcaption {
    bottom: -40px;
    left: 400px;
  }
}

.page-about .p-kodomokabuki .ttl-wrap {
  position: relative;
  margin-bottom: 54px;
}

.page-about .p-kodomokabuki .figure {
  margin-left: -15px;
}

.page-about .p-kodomokabuki h3 {
  display: block;
  position: absolute;
  content: '';
  display: inline-block;
  bottom: -44px;
  right: -15px;
}

@media screen and (max-width: 567px) {
  .page-about .p-kodomokabuki .ttl-wrap {
    margin-bottom: 77px;
  }
  .page-about .p-kodomokabuki h3 {
    bottom: -67px;
    width: 248px;
  }
  .page-about .p-kodomokabuki .en {
    margin-top: 10px;
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .page-about .p-kodomokabuki .figure {
    margin-bottom: 0;
    direction: rtl;
  }
  .page-about .p-kodomokabuki h3 {
    bottom: -30px;
    right: -40px;
  }
}

.page-about .p-kanjincho .figure {
  margin-right: -15px;
}

@media screen and (max-width: 567px) {
  .page-about .p-kanjincho h3 {
    width: 246px;
  }
  .page-about .p-kanjincho .ja {
    line-height: 1.2;
  }
  .page-about .p-kanjincho .en {
    margin-top: 10px;
    margin-left: 0;
  }
}

.page-about .p-kanjincho .img {
  width: max-content;
  max-width: 100%;
  margin: 20px auto 0;
}

.page-about .p-kanjincho .img figcaption {
  margin-top: 5px;
}

.page-about .p-kanjincho .text {
  margin-top: 20px;
}

.page-about .p-kanjincho h4 {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}

.page-about .p-kanjincho h4:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background: #a6936a;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .page-about .p-kanjincho .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 50px;
  }
  .page-about .p-kanjincho .flex_rev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-top: 50px;
  }
  .page-about .p-kanjincho .img {
    width: 42.884%;
    margin: 0;
  }
  .page-about .p-kanjincho .img figcaption {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .page-about .p-kanjincho .text {
    width: 53.508%;
    margin: 0;
  }
  .page-about .p-kanjincho h4 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1;
  }
  .page-about .p-kanjincho h4:before {
    height: 4px;
  }
  .page-about .p-kanjincho .mt-minus {
    margin-top: -15px;
  }
}

/*------------------------------------------------------------
  world  [1.3] 歌舞伎「勧進帳の世界」ページ用
------------------------------------------------------------*/
.page-world .p-roman {
  position: relative;
  color: #FFF;
  text-align: center;
}

.page-world .p-roman:before {
  display: block;
  position: absolute;
  content: '';
  top: 30px;
  right: 0;
  width: 44px;
  height: 74px;
  background: url(../images/common/deco_ichimatsu_right_center.png) no-repeat center;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-world .p-roman:before {
    background-image: url(../images/common/deco_ichimatsu_right_center@2x.png);
  }
}

.page-world .p-roman:after {
  display: block;
  position: absolute;
  content: '';
  top: 35%;
  left: 0;
  width: 59px;
  height: 59px;
  background: url(../images/common/deco_ichimatsu_left_bottom.png) no-repeat center;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-world .p-roman:after {
    background-image: url(../images/common/deco_ichimatsu_left_bottom@2x.png);
  }
}

.page-world .p-roman p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.666;
}

.page-world .p-roman figure {
  display: block;
  margin: 60px 0 0;
}

.page-world .p-roman img {
  width: 100%;
}

.page-world .p-roman .name {
  margin-top: 30px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
}

.page-world .p-roman .profile {
  margin-top: 20px;
  line-height: 1.3;
}

.page-world .p-roman .profile .ja {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}

.page-world .p-roman .profile .en {
  color: #a6936a;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.page-world .p-roman .profile + p {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .page-world .p-roman:after {
    top: 26%;
  }
}

@media screen and (min-width: 1024px) {
  .page-world .p-roman:before {
    top: 50px;
    width: 87px;
    height: 147px;
  }
  .page-world .p-roman:after {
    top: 450px;
    width: 118px;
    height: 118px;
  }
  .page-world .p-roman p {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .page-world .p-roman figure {
    margin: 180px 0 0;
  }
  .page-world .p-roman .name {
    margin-top: 70px;
    font-size: 28px;
    font-size: 1.75rem;
  }
  .page-world .p-roman .profile {
    margin-top: 40px;
  }
  .page-world .p-roman .profile .ja {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .page-world .p-roman .profile .en {
    font-size: 16px;
    font-size: 1rem;
  }
  .page-world .p-roman .profile + p {
    margin-top: 20px;
  }
}

.page-world .p-story-wrap {
  position: relative;
  background: url(../images/world/bg.jpg) no-repeat center top;
  background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-world .p-story-wrap {
    background-image: url(../images/world/bg@2x.jpg);
  }
}

.page-world .p-story-wrap:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 40%;
  height: 400px;
  background: url(../images/world/deco.png) no-repeat right top;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-world .p-story-wrap:before {
    background-image: url(../images/world/deco@2x.png);
  }
}

@media screen and (min-width: 1024px) {
  .page-world .p-story-wrap:before {
    width: 40.99%;
    height: 100%;
  }
}

.page-world .p-story .copy {
  margin-left: -15px;
  font-size: 24px;
  font-size: 1.5rem;
}

.page-world .p-story .copy > span {
  display: inline-block;
  padding: 10px 15px;
  background: #FFF;
}

.page-world .p-story .copy + .copy {
  margin-top: 5px;
}

.page-world .p-story [data-ruby] {
  position: relative;
}

.page-world .p-story [data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1em;
  left: -25%;
  right: 0;
  width: 150%;
  margin: auto;
  font-size: 0.5em;
}

.page-world .p-story .text {
  line-height: 3;
}

@media screen and (min-width: 1024px) {
  .page-world .p-story .copy {
    margin-left: -40px;
    font-size: 32px;
    font-size: 2rem;
  }
  .page-world .p-story .copy > span {
    padding: 2px 35px;
  }
  .page-world .p-story .copy + .copy {
    margin-top: 10px;
  }
  .page-world .p-story [data-ruby]::before {
    top: -1.7em;
  }
}

/*------------------------------------------------------------
  touristspot  [1.4] 周遊ルートページ用
------------------------------------------------------------*/
.page-touristspot iframe {
  width: 100%;
  height: 400px;
}

@media screen and (min-width: 1024px) {
  .page-touristspot iframe {
    height: 600px;
  }
}

/*------------------------------------------------------------
  hotels  [1.5] ホテルページ用
------------------------------------------------------------*/
/*------------------------------------------------------------
  gourmet  [1.6] グルメページ用
------------------------------------------------------------*/
/*------------------------------------------------------------
  sightseeing  [1.7] 観光ページ用
------------------------------------------------------------*/
.page-sightseeing .p-gallery {
  max-width: 590px;
  margin: 0 auto;
}

.page-sightseeing .p-gallery .ttl-wrap {
  margin-top: 35px;
}

.page-sightseeing .p-gallery .ttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.page-sightseeing .p-gallery .ttl span {
  padding: 2px;
  background: #FFF;
}

.page-sightseeing .p-gallery .sub {
  margin-top: 7px;
  color: #a6936a;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.page-sightseeing .p-gallery .sub span {
  padding: 2px;
  background: #FFF;
}

.page-sightseeing .p-gallery figcaption {
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
}

.page-sightseeing .p-gallery ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 15px;
}

.page-sightseeing .p-gallery ul.two-columns li {
  width: calc(50% - 5px);
}

.page-sightseeing .p-gallery ul.three-columns li {
  width: calc(33.333% - 6.666px);
}

@media screen and (min-width: 1024px) {
  .page-sightseeing .p-gallery {
    max-width: none;
    margin: 0;
  }
  .page-sightseeing .p-gallery > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 70px;
    margin-bottom: 25px;
  }
  .page-sightseeing .p-gallery > li:first-child {
    margin-top: 40px;
  }
  .page-sightseeing .p-gallery > li.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .page-sightseeing .p-gallery > li.reverse .ttl-wrap {
    text-align: right;
  }
  .page-sightseeing .p-gallery > li > div {
    width: calc(50% - 10px);
    line-height: 1;
  }
  .page-sightseeing .p-gallery .flex-vertical {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: start;
    justify-content: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .page-sightseeing .p-gallery .ttl-wrap {
    margin-top: 0;
  }
  .page-sightseeing .p-gallery .ttl {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .page-sightseeing .p-gallery .ttl span {
    padding: 1px 4px;
  }
  .page-sightseeing .p-gallery .sub {
    margin-top: 11px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .page-sightseeing .p-gallery .sub span {
    padding: 3px 7px;
  }
  .page-sightseeing .p-gallery figure {
    position: relative;
  }
  .page-sightseeing .p-gallery figure + figure {
    margin-top: 40px;
  }
  .page-sightseeing .p-gallery figcaption {
    display: block;
    position: absolute;
    content: '';
    bottom: -25px;
    left: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .page-sightseeing .p-gallery ul {
    margin-top: 0px;
  }
  .page-sightseeing .p-gallery ul li + li {
    margin-top: 40px;
  }
  .page-sightseeing .p-gallery ul.two-columns li {
    width: calc(50% - 10px);
  }
  .page-sightseeing .p-gallery ul.two-columns li + li {
    margin-top: 0;
  }
  .page-sightseeing .p-gallery ul.three-columns li {
    width: calc(33.333% - 6.666px);
  }
  .page-sightseeing .p-gallery ul.three-columns li + li {
    margin-top: 0;
  }
}

@media screen and (min-width: 1280px) {
  .page-sightseeing .p-gallery .ttl {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .page-sightseeing .p-gallery .sub {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .page-sightseeing .p-gallery ul img {
    height: 100%;
  }
  .page-sightseeing .p-gallery figcaption {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/*------------------------------------------------------------
  modelcourses  [1.8] モデルコースページ用
------------------------------------------------------------*/
.page-modelcourses .p-price {
  border: 1px solid #a6936a;
  padding: 15px;
}

.page-modelcourses .p-price dt {
  display: inline-block;
  margin-bottom: 5px;
  padding: 5px 15px;
  background: #FFF;
}

.page-modelcourses .p-price dd span {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}

.page-modelcourses .p-price > ul {
  margin-top: 15px;
}

.page-modelcourses .p-price > ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.page-modelcourses .p-price > ul li + li {
  margin-top: 5px;
}

@media screen and (min-width: 1024px) {
  .page-modelcourses .p-price {
    padding: 20px 35px;
  }
  .page-modelcourses .p-price dt {
    padding: 0 25px;
  }
  .page-modelcourses .p-price dd {
    display: inline-block;
    margin-left: 15px;
  }
  .page-modelcourses .p-price dd li {
    display: inline-block;
  }
  .page-modelcourses .p-price dd li + li {
    margin-left: 40px;
  }
  .page-modelcourses .p-price dd span {
    font-size: 24px;
    font-size: 1.5rem;
    vertical-align: -3px;
  }
  .page-modelcourses .p-price > ul {
    margin-top: 0;
  }
  .page-modelcourses .p-price > ul li {
    display: inline-block;
    font-size: 15px;
    font-size: 0.9375rem;
    letter-spacing: -0.02em;
  }
}

.page-modelcourses .p-course .visual-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 200px;
  padding: 0 15px;
}

.page-modelcourses .p-course .visual-btn:hover {
  opacity: 1;
}

.page-modelcourses .p-course .ttl-wrap {
  text-align: left;
}

.page-modelcourses .p-course h4 span {
  padding: 2px 5px;
  background: #FFF;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
}

.page-modelcourses .p-course .sub {
  display: block;
  margin-top: 5px;
}

.page-modelcourses .p-course .sub span {
  padding: 2px 5px;
  background: #FFF;
  font-weight: 500;
  letter-spacing: 0;
}

.page-modelcourses .p-course .price {
  display: block;
  margin-top: 5px;
}

.page-modelcourses .p-course .price span {
  position: relative;
  padding: 2px 5px 2px 20px;
  background: #a6936a;
  color: #FFF;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.page-modelcourses .p-course .price span:before {
  display: block;
  position: absolute;
  content: '';
  top: 6px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: url(../images/modelcourses/icon_price_white.svg) no-repeat center;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-modelcourses .p-course .price span:before {
    background-image: url(../images/modelcourses/icon_price_white@2x.svg);
  }
}

.page-modelcourses .p-course .more {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: block;
  position: absolute;
  content: '';
  bottom: 10px;
  right: 10px;
  padding: 2px 18px 2px 5px;
  background: #000000;
  color: #FFF;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}

.page-modelcourses .p-course .more:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  right: 3px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  border: 4px solid transparent;
  border-left: 6px solid #FFF;
}

.page-modelcourses .p-course.course-a .visual-btn {
  background: url(../images/modelcourses/a_mv.jpg) no-repeat center;
  background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-modelcourses .p-course.course-a .visual-btn {
    background-image: url(../images/modelcourses/a_mv@2x.jpg);
  }
}

.page-modelcourses .p-course.course-b .visual-btn {
  background: url(../images/modelcourses/b_mv.jpg) no-repeat center;
  background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-modelcourses .p-course.course-b .visual-btn {
    background-image: url(../images/modelcourses/b_mv@2x.jpg);
  }
}

.page-modelcourses .p-course.course-c .visual-btn {
  background: url(../images/modelcourses/c_mv.jpg) no-repeat center;
  background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .page-modelcourses .p-course.course-c .visual-btn {
    background-image: url(../images/modelcourses/c_mv@2x.jpg);
  }
}

.page-modelcourses .p-course .detail {
  display: none;
  padding: 15px 15px 30px;
  background: #FFF;
}

.page-modelcourses .p-course li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.page-modelcourses .p-course li + li {
  margin-top: 10px;
}

.page-modelcourses .p-course li:nth-child(1) .flow {
  padding-bottom: 50px;
}

.page-modelcourses .p-course li:last-child .flow:before {
  content: none;
}

.page-modelcourses .p-course li:last-child .flow:after {
  content: none;
}

.page-modelcourses .p-course .flow {
  position: relative;
  width: 20%;
}

.page-modelcourses .p-course .flow:before {
  display: block;
  position: absolute;
  content: '';
  top: 53px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 1px;
  height: calc(100% - 76px);
  background: #a6936a;
}

.page-modelcourses .p-course .flow:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 11px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  border: 4px solid transparent;
  border-top: 6px solid #a6936a;
}

.page-modelcourses .p-course .text-wrap {
  width: 77%;
}

.page-modelcourses .p-course .circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 1px solid #a6936a;
  border-radius: 100px;
  color: #a6936a;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 300;
  font-family: "Arno Pro", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
}

.page-modelcourses .p-course .circle span {
  display: inline-block;
  margin-top: 5px;
}

@media all and (-ms-high-contrast: none) {
  .page-modelcourses .p-course .circle span {
    margin-top: -4px !important;
  }
}

.page-modelcourses .p-course .circle.small {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
}

.page-modelcourses .p-course .circle.small span {
  margin-top: 5px;
}

.page-modelcourses .p-course .travel-time {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 100%;
  color: #a6936a;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.16em;
  text-align: center;
}

.page-modelcourses .p-course .time span {
  padding: 0 5px;
  background: #a6936a;
  color: #FFF;
  font-weight: bold;
  letter-spacing: 0.16em;
}

.page-modelcourses .p-course .ttl {
  margin-top: 5px;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.16em;
}

.page-modelcourses .p-course .ttl span {
  font-size: 12px;
  font-size: 0.75rem;
}

.page-modelcourses .p-course .ttl + p {
  margin-top: 10px;
}

.page-modelcourses .p-course .img {
  margin-top: 10px;
}

.page-modelcourses .p-course .img img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .page-modelcourses .p-course .visual-btn {
    width: 100%;
    height: 350px;
    padding: 0 90px;
    transition: opacity 0.3s ease;
  }
  .page-modelcourses .p-course .visual-btn:hover {
    opacity: 0.7;
  }
  .page-modelcourses .p-course h4 {
    line-height: 2.7;
  }
  .page-modelcourses .p-course h4 span {
    padding: 10px 20px;
    background: #FFF;
    font-size: 28px;
    font-size: 1.75rem;
  }
  .page-modelcourses .p-course .sub {
    margin-top: 0;
    line-height: 2.5;
  }
  .page-modelcourses .p-course .sub span {
    padding: 5px 20px;
    background: #FFF;
  }
  .page-modelcourses .p-course .price {
    margin-top: 0;
    line-height: 2.5;
  }
  .page-modelcourses .p-course .price span {
    padding: 5px 20px 5px 43px;
    background: #a6936a;
    color: #FFF;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .page-modelcourses .p-course .price span:before {
    left: 20px;
    width: 17px;
    height: 17px;
  }
  .page-modelcourses .p-course .more {
    padding: 0px 25px 0px 15px;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .page-modelcourses .p-course .more:after {
    right: 5px;
    border: 5px solid transparent;
    border-left: 7px solid #FFF;
  }
  .page-modelcourses .p-course .detail {
    padding: 80px;
  }
  .page-modelcourses .p-course li + li {
    margin-top: 10px;
  }
  .page-modelcourses .p-course li:nth-child(1) .flow {
    padding-bottom: 70px;
  }
  .page-modelcourses .p-course .flow {
    width: 103px;
  }
  .page-modelcourses .p-course .flow:before {
    top: 107px;
    height: calc(100% - 138px);
  }
  .page-modelcourses .p-course .flow:after {
    bottom: 15px;
    border: 5px solid transparent;
    border-top: 8px solid #a6936a;
  }
  .page-modelcourses .p-course .circle {
    width: 103px;
    height: 103px;
    font-size: 60px;
    font-size: 3.75rem;
  }
  .page-modelcourses .p-course .circle span {
    margin-top: 13px;
  }
  .page-modelcourses .p-course .circle.small {
    font-size: 26px;
    font-size: 1.625rem;
  }
  .page-modelcourses .p-course .circle.small span {
    margin-top: 8px;
  }
  .page-modelcourses .p-course .travel-time {
    line-height: 1.4;
  }
  .page-modelcourses .p-course .text-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: calc(100% - 133px);
  }
  .page-modelcourses .p-course .text {
    width: 43.146%;
  }
  .page-modelcourses .p-course .img {
    width: 53.932%;
    margin-top: 0;
  }
  .page-modelcourses .p-course .time {
    line-height: 1.5;
  }
  .page-modelcourses .p-course .ttl {
    margin-top: 15px;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1;
  }
  .page-modelcourses .p-course .ttl span {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .page-modelcourses .p-course .ttl + p {
    margin-top: 15px;
    line-height: 2.875;
  }
}

.page-modelcourses .p-close-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: max-content;
  min-width: 180px;
  min-height: 40px;
  margin: 15px auto 0;
  padding: 5px 35px;
  border: 1px solid #000000;
  border-radius: 100px;
  background: #FFF;
  line-height: 1;
  text-align: center;
  color: #000000;
  transition: background 0.3s ease, color 0.3s ease;
}

.page-modelcourses .p-close-btn span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.page-modelcourses .p-close-btn span:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 12px;
  height: 1px;
  background: #000000;
  transition: background 0.3s ease;
}

.page-modelcourses .p-close-btn:active {
  opacity: 1;
}

.page-modelcourses .p-close-btn:hover {
  opacity: 1;
  background: #000000;
  color: #FFF;
}

.page-modelcourses .p-close-btn:hover span:before {
  background: #FFF;
}

@media screen and (min-width: 1024px) {
  .page-modelcourses .p-close-btn {
    min-width: 285px;
    max-width: 285px;
    min-height: 60px;
    margin-top: 30px;
  }
}

@media all and (-ms-high-contrast: none) {
  .page-modelcourses .p-close-btn {
    max-width: 285px;
    height: 60px;
    min-height: none;
  }
}

@supports (-ms-ime-align: auto) {
  .page-modelcourses .p-close-btn {
    max-width: 285px;
  }
}

/*------------------------------------------------------------
  tour  [1.9] 小松市観光商品提案ページ用
------------------------------------------------------------*/
/*------------------------------------------------------------
  reservation  [1.11] ご予約ページ用
------------------------------------------------------------*/
/*------------------------------------------------------------
  contact  [1.10] お問い合わせページ用
------------------------------------------------------------*/
.page-contact #header {
  display: none;
}

.page-contact #header + hr {
  display: none;
}

.page-contact .box {
  padding: 20px 15px 40px;
  background: #FFF;
}

.page-contact h3 span {
  display: block;
}

.page-contact h3 span + span {
  margin-top: 10px;
}

@media screen and (min-width: 1024px) {
  .page-contact .box {
    padding: 75px 85px 95px;
  }
  .page-contact h3 {
    margin-top: 20px;
  }
  .page-contact h3 span + span {
    margin-top: 20px;
  }
  .page-contact .btn {
    width: 425px;
  }
}

.mw_wp_form_confirm .c-lead--no-deco,
.mw_wp_form_confirm dt span {
  display: none;
}

@media screen and (min-width: 1024px) {
  .mw_wp_form_confirm .message dd {
    padding-top: 27px;
    line-height: 2;
  }
}

/*------------------------------------------------------------
  utility  [0] 共通調整用
------------------------------------------------------------*/
.u-dis-none {
  display: none !important;
}

.u-z-index-1 {
  position: relative;
  z-index: 1;
}

.u-opa {
  opacity: 0.5;
}

.u-fl-left {
  display: block;
  float: left !important;
}

img.u-fl-left {
  margin: 0 12px 12px 0;
}

.u-fl-right {
  display: block;
  float: right !important;
}

img.u-fl-right {
  margin: 0 0 12px 12px;
}

.u-wid-100pct {
  width: 100% !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-mt-small {
  margin-top: 15px !important;
}

.u-mt-medium {
  margin-top: 25px !important;
}

.u-mt-large {
  margin-top: 50px !important;
}

.u-mb-small {
  margin-bottom: 15px !important;
}

.u-mb-medium {
  margin-bottom: 25px !important;
}

.u-mb-large {
  margin-bottom: 50px !important;
}

.u-border {
  border: 2px solid #000000;
}

@media screen and (min-width: 768px) {
  .u-border {
    border-width: 4px;
  }
}

.u-br-5 {
  border-radius: 5px;
}

.u-br-10 {
  border-radius: 10px;
}

.u-col-red {
  color: #cf0404;
}

.u-fs-0 {
  font-size: 0;
}

.u-fw-normal {
  font-weight: normal;
}

.u-fw-bold {
  font-weight: bold;
}

.u-ta-center {
  text-align: center !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-ta-left {
  text-align: left !important;
}

.u-td-ul {
  text-decoration: underline;
}

.u-va-top {
  vertical-align: top !important;
}

@media screen and (min-width: 1024px) {
  img.u-fl-left {
    margin: 0 25px 25px 0;
  }
  img.u-fl-right {
    margin: 0 0 25px 25px;
  }
  .u-mt-small {
    margin-top: 30px !important;
  }
  .u-mt-medium {
    margin-top: 50px !important;
  }
  .u-mt-large {
    margin-top: 80px !important;
  }
  .u-mb-small {
    margin-bottom: 30px !important;
  }
  .u-mb-medium {
    margin-bottom: 50px !important;
  }
  .u-mb-large {
    margin-bottom: 80px !important;
  }
  .u-pc-ta-center {
    text-align: center !important;
  }
}

.u-cf {
  *zoom: 1;
}

.u-cf:after {
  display: block;
  clear: both;
  content: "";
}

.u-pe-none {
  pointer-events: none;
}

.u-tracktags {
  display: none;
}

/*# sourceMappingURL=../../false/style.css.map */