@charset "UTF-8";
/*------------------------------------------------------------
  reset
------------------------------------------------------------*/
@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: 'Hannari';
  font-weight: 400;
  src: url("../fonts/hannari/Hannari.otf") format("opentype");
}

@font-face {
  font-family: 'Notera';
  font-weight: 400;
  src: url("../fonts/Notera/Notera_PersonalUseOnly.ttf") format("truetype");
}

/*------------------------------------------------------------
  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 #c1c1c1;
  border-radius: 4px;
  box-sizing: border-box;
  background: #FFF;
  outline: none;
  cursor: auto;
}

input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="submit"]):focus, textarea:focus, select:focus {
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
}

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

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

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

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 .2s;
  transition: all .2s;
}

input[type="radio"] + span::before {
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 1px solid #000000;
  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: #000000;
  -webkit-transform: scale(2);
  transform: scale(2);
}

input[type="radio"]:checked + span::before {
  border: 1px solid #000000;
}

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 .2s;
  transition: all .2s;
}

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

input[type="checkbox"] + span::before {
  top: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  border: 1px solid #c1c1c1;
  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 #000000;
  background: #fff;
}

input[type="checkbox"]:checked + span::after {
  opacity: 1;
  border-left: 2px solid #000000;
  border-bottom: 2px solid #000000;
  -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 {
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 2;
  letter-spacing: 0.1em;
}

body.is-fixed {
  overflow: hidden;
}

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

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

a:hover {
  opacity: 0.7;
}

a figure {
  transition: opacity 0.2s ease;
}

a figure:hover {
  opacity: 0.7;
}

button {
  transition: opacity 0.2s 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: normal;
}

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

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

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

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

/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/**
 * Swiper 6.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 31, 2020
 */
@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;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.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-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  width: auto;
  max-width: 234px;
}

@media screen and (min-width: 1024px) {
  .swiper-slide {
    max-width: 468px;
  }
}

/*!
  Modaal - accessible modals - v0.4.4
  by Humaan, for all humans.
  http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
  outline: none;
  background: #fff;
}

.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
  background: #b93d0c;
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:before,
.modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
  -ms-transform: scale(0.25);
  transform: scale(0.25);
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .12s;
  animation-delay: .12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .37s;
  animation-delay: .37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .62s;
  animation-delay: .62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .75s;
  animation-delay: .75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .87s;
  animation-delay: .87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}

@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before,
  .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}

@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}

@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}

@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}

@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}

@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}

@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* customize */
.modaal-overlay {
  opacity: 0.6 !important;
}

.modaal-inner-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}

.modaal-close {
  border-radius: 0;
}

.modaal-close:hover {
  opacity: 1;
}

.modaal-close:before,
.modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 10px;
  left: 25px;
  width: 1px;
  height: 30px;
  border-radius: 0;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
  width: 1px;
  border-radius: 0;
}

.modaal-gallery-control:before {
  margin: -6px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 6px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-prev:before {
  margin: 6px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -6px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-item img {
  width: auto !important;
  max-height: calc(100vh - 160px);
}

.modaal-gallery-label {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .modaal-video-wrap {
    margin: 0;
  }
}

/*------------------------------------------------------------
  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.2em;
}

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

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

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

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

.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: 1140px;
  }
}

@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 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.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 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.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 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .l-tb-flex-ali-cen, .l-tb-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-tb-flex-ali-cen > *, .l-tb-flex-ali-cen--reverse > * {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .l-tb-flex-ali-cen--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

/* ---------------------------
  ヘッダー用
--------------------------- */
.l-header {
  width: 100%;
  height: 50px;
  background: #FFF;
}

.l-header > .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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 100%;
}

.l-header .logo {
  margin-left: 15px;
  line-height: 1;
}

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

.l-header .logo img {
  height: 35px;
}

@media screen and (min-width: 1024px) {
  .l-header {
    height: 100px;
    box-shadow: none;
  }
  .l-header > .inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
  }
  .l-header .logo {
    margin-left: 40px;
  }
  .l-header .logo img {
    height: 60px;
  }
}

@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: relative;
  width: 50px;
  height: 50px;
  background: #FFF;
}

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

.l-menu-btn span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 1px;
  margin-left: -10px;
  background: #c9171e;
  transition: 0.3s opacity ease;
}

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

.l-menu-btn span.middle {
  transition: .3s opacity ease;
  transform: translateY(-1px);
  opacity: 1;
}

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

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

.l-menu-btn.is-open span.middle {
  opacity: 0;
  transition: .3s opacity ease;
}

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

@media screen and (min-width: 1024px) {
  .l-menu-btn {
    display: none;
  }
}

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

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

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

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

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

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

.l-gnav .list {
  width: 100%;
}

.l-gnav .list > li {
  text-align: center;
}

.l-gnav .list > li + li {
  margin-top: 10px;
}

.l-gnav .list > li > a {
  padding: 10px;
  color: #c9171e;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.l-gnav .list > li > a span {
  transition: opacity 0.3s ease;
}

.l-gnav .list > li > a:hover {
  opacity: 1;
}

.l-gnav .list > li > a:hover span {
  opacity: 0.7;
}

.l-gnav .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;
  width: 290px;
  max-width: 100%;
  margin: 30px auto 0;
  padding: 15px 10px 10px;
  background: #c9171e;
  color: #FFF;
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  line-height: 1;
}

.l-gnav .btn img {
  width: 30px;
}

.l-gnav .btn .text {
  display: block;
  margin-top: 5px;
}

@media screen and (min-width: 1024px) {
  .l-gnav {
    display: block !important;
    position: relative;
    top: 0;
    left: 0;
    width: 75%;
    height: auto;
  }
  .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: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0;
  }
  .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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: calc(100% - 135px);
    padding-right: 4%;
  }
  .l-gnav .list > li {
    position: relative;
  }
  .l-gnav .list > li + li {
    margin-top: 0;
  }
  .l-gnav .list > li > a {
    padding: 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .l-gnav .btn {
    width: 135px;
    height: 100px;
    margin: 0;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .l-gnav .btn img {
    width: 43px;
  }
  .l-gnav .btn .text {
    margin-top: 8px;
  }
}

@media screen and (min-width: 1280px) {
  .l-gnav .list > li > a {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .l-gnav .btn {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

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

.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;
  height: 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-concept .l-mv {
  background-image: url(../images/concept/mv.jpg);
}

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

.page-plan .l-mv,
.page-plan-detail .l-mv {
  background-image: url(../images/plan/mv.jpg);
}

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

.page-location .l-mv {
  background-image: url(../images/location/mv.jpg);
}

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

.page-studio .l-mv {
  background-image: url(../images/studio/mv.jpg);
}

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

.page-gallery .l-mv {
  background-image: url(../images/gallery/mv.jpg);
}

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

.page-movie .l-mv {
  background-image: url(../images/movie/mv.jpg);
}

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

.page-online .l-mv {
  background-image: url(../images/online/mv.jpg);
}

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

.page-topics .l-mv,
.page-topics-detail .l-mv {
  background-image: url(../images/topics/mv.jpg);
}

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

.page-access .l-mv {
  background-image: url(../images/access/mv.jpg);
}

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

.page-contact .l-mv {
  background-image: url(../images/contact/mv.jpg);
}

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

.l-mv h2 {
  margin-top: -5px;
  color: #FFF;
  font-size: 54px;
  font-size: 3.375rem;
  font-family: "Notera", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: italic;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .l-mv {
    height: 200px;
    font-size: 72px;
    font-size: 4.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv {
    height: 427px;
  }
  .l-mv h2 {
    margin-top: -10px;
    font-size: 108px;
    font-size: 6.75rem;
  }
}

.l-pc-two-columns .sub-column {
  margin-top: 30px;
}

@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% - 300px);
  }
  .l-pc-two-columns .sub-column {
    margin-top: -15px;
    width: 220px;
  }
}

/* ---------------------------
  フッター用
--------------------------- */
.l-footer {
  position: relative;
  background: #876a2b;
  color: #FFF;
}

.l-footer a {
  color: #FFF;
}

.l-footer .inner {
  padding-top: 50px;
  padding-bottom: 50px;
}

.l-footer .logo-wrap {
  text-align: center;
}

.l-footer .logo img {
  width: 200px;
}

.l-footer .logo:hover {
  opacity: 1;
}

.l-footer p {
  font-size: 12px;
  font-size: 0.75rem;
}

.l-footer .name {
  margin-top: 30px;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.5;
}

.l-footer .sub {
  margin-top: 10px;
}

.l-footer .tel {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
}

.l-footer .tel img {
  margin-top: -5px;
  width: 16px;
}

.l-footer .tel .text {
  display: inline-block;
  margin-left: 5px;
}

.l-footer .privacy {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
}

.l-footer .sns {
  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: end;
  -ms-flex-pack: end;
  -webkit-justify-content: end;
  justify-content: end;
  width: 100%;
  margin-top: 10px;
}

.l-footer .sns li + li {
  margin-left: 15px;
}

.l-footer .copyright {
  padding: 10px 15px;
  background: #FFF;
  color: #876a2b;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-footer .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: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .l-footer p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .l-footer .name {
    margin-top: 0;
    font-size: 22px;
    font-size: 1.375rem;
  }
  .l-footer .sub {
    margin-top: 0;
  }
  .l-footer .tel {
    font-size: 27px;
    font-size: 1.6875rem;
  }
  .l-footer .tel img {
    width: auto;
  }
  .l-footer .tel .text {
    margin-left: 8px;
  }
  .l-footer .privacy {
    margin-top: 15px;
  }
  .l-footer .sns {
    margin-top: 5px;
  }
  .l-footer .copyright {
    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: 40px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.l-pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: -1;
  width: 40px;
  height: 40px;
  opacity: 0;
  transition: all 0.4s ease;
}

.l-pagetop.is-show {
  z-index: 100;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.l-pagetop.is-show:hover {
  opacity: 0.7;
}

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

/*------------------------------------------------------------
  compornent  [0] 共通パーツ用
------------------------------------------------------------*/
/*
  見出し
*/
.c-musubi-ttl, .c-musubi-ttl--sp-small {
  position: relative;
  margin-bottom: 20px;
  padding-top: 25px;
  color: #876a2b;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Cormorant Garamond", "Hannari", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  text-align: center;
}

.c-musubi-ttl:before, .c-musubi-ttl--sp-small:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  width: 16px;
  height: 16px;
  background: url(../images/common/icon_musubi.svg) 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-musubi-ttl:before, .c-musubi-ttl--sp-small:before {
    background-image: url(../images/common/icon_musubi@2x.svg);
  }
}

@media screen and (min-width: 1024px) {
  .c-musubi-ttl, .c-musubi-ttl--sp-small {
    margin-bottom: 40px;
    padding-top: 35px;
    font-size: 38px;
    font-size: 2.375rem;
  }
  .c-musubi-ttl:before, .c-musubi-ttl--sp-small:before {
    width: 25px;
    height: 24px;
  }
}

.c-musubi-ttl--sp-small {
  font-size: 26px;
  font-size: 1.625rem;
}

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

.c-musubi-small-ttl {
  position: relative;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "Cormorant Garamond", "Hannari", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.3;
}

.c-musubi-small-ttl:before {
  display: block;
  position: absolute;
  content: '';
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_musubi.svg) no-repeat center;
  background-size: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .c-musubi-small-ttl:before {
    background-image: url(../images/common/icon_musubi@2x.svg);
  }
}

@media screen and (min-width: 1024px) {
  .c-musubi-small-ttl {
    margin-bottom: 40px;
    padding-left: 45px;
    font-size: 25px;
    font-size: 1.5625rem;
  }
  .c-musubi-small-ttl:before {
    width: 25px;
    height: 24px;
  }
}

.c-cursive-ttl {
  margin-bottom: 10px;
  color: #c9171e;
  font-size: 40px;
  font-size: 2.5rem;
  font-family: "Notera", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: italic;
  line-height: 1;
}

.c-cursive-ttl .ja {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-style: normal;
}

@media screen and (min-width: 1024px) {
  .c-cursive-ttl {
    margin-top: -15px;
    margin-bottom: 20px;
    font-size: 60px;
    font-size: 3.75rem;
  }
  .c-cursive-ttl .ja {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.c-red-copy {
  color: #c9171e;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Hannari", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.7;
}

@media screen and (min-width: 375px) {
  .c-red-copy {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-red-copy {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

.c-gold-ttl, .c-gold-ttl--small {
  margin-bottom: 10px;
  color: #876a2b;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: center;
}

.c-gold-ttl span, .c-gold-ttl--small span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media screen and (min-width: 1024px) {
  .c-gold-ttl, .c-gold-ttl--small {
    margin-bottom: 20px;
    font-size: 35px;
    font-size: 2.1875rem;
  }
  .c-gold-ttl span, .c-gold-ttl--small span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.c-gold-ttl--small {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1024px) {
  .c-gold-ttl--small {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*
  ボタン
*/
.c-border-btn, .c-border-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: 290px;
  min-height: 50px;
  margin: 0 auto;
  padding: 5px 35px;
  overflow: hidden;
  border: 1px solid #c9171e;
  line-height: 1;
  text-align: center;
  color: #c9171e;
  transition: 0.4s color ease;
}

.c-border-btn:before, .c-border-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 #c9171e;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  transition: 0.4s all ease;
}

.c-border-btn:after, .c-border-btn--left:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  right: 20px;
  width: 20px;
  height: 1px;
  background: #c9171e;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  transition: 0.4s all ease;
}

.c-border-btn:active, .c-border-btn--left:active, .c-border-btn:hover, .c-border-btn--left:hover {
  opacity: 1;
  color: #FFF;
}

.c-border-btn:active:before, .c-border-btn--left:active:before, .c-border-btn:hover:before, .c-border-btn--left:hover:before {
  right: 5px;
  border-left-color: #FFF;
}

.c-border-btn:active:after, .c-border-btn--left:active:after, .c-border-btn:hover:after, .c-border-btn--left:hover:after {
  right: 15px;
  width: 10px;
  background-color: #FFF;
}

.c-border-btn:active span:before, .c-border-btn--left:active span:before, .c-border-btn:hover span:before, .c-border-btn--left:hover span:before {
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}

.c-border-btn span:before, .c-border-btn--left span:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #c9171e;
  -webkit-transform: translate(-100%, 0%);
  transform: translate(-100%, 0%);
  transition: 0.4s all ease;
}

@media screen and (min-width: 1024px) {
  .c-border-btn, .c-border-btn--left {
    width: 100%;
    min-width: 350px;
    max-width: 450px;
    min-height: 70px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .c-border-btn:before, .c-border-btn--left:before {
    right: 25px;
    border-width: 4px;
    border-right-width: 8px;
    border-left-width: 8px;
  }
  .c-border-btn:after, .c-border-btn--left:after {
    display: block;
    position: absolute;
    content: '';
    right: 35px;
    width: 45px;
  }
  .c-border-btn:hover:before, .c-border-btn--left:hover:before {
    right: 15px;
  }
  .c-border-btn:hover:after, .c-border-btn--left:hover:after {
    right: 25px;
    width: 35px;
  }
}

.c-border-btn--left:before {
  right: initial;
  left: 10px;
  -webkit-transform: translate(0%, -50%) rotate(180deg);
  transform: translate(0%, -50%) rotate(180deg);
}

.c-border-btn--left:after {
  right: initial;
  left: 20px;
}

.c-border-btn--left:hover:before {
  right: initial;
  left: 5px;
}

.c-border-btn--left:hover:after {
  right: initial;
  left: 15px;
}

.c-border-btn--left:hover span:before {
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}

@media screen and (min-width: 1024px) {
  .c-border-btn--left:before {
    right: initial;
    left: 25px;
  }
  .c-border-btn--left:after {
    right: initial;
    left: 35px;
  }
  .c-border-btn--left:hover:before {
    right: initial;
    left: 15px;
  }
  .c-border-btn--left:hover:after {
    right: initial;
    left: 25px;
  }
}

@media all and (-ms-high-contrast: none) {
  .c-border-btn, .c-border-btn--left {
    max-width: 450px;
    height: 70px;
    min-height: none;
  }
}

@supports (-ms-ime-align: auto) {
  .c-border-btn, .c-border-btn--left {
    max-width: 450px;
  }
}

.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;
}

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

@media screen and (min-width: 1024px) {
  .c-btns > * {
    margin: 0 10px;
  }
}

/*
  リスト
*/
.c-topics-list, .c-topics-list--three-columns, .c-topics-list--top {
  padding: 0 15px;
}

.c-topics-list li + li, .c-topics-list--three-columns li + li, .c-topics-list--top li + li {
  margin-top: 15px;
}

.c-topics-list a:hover figure, .c-topics-list--three-columns a:hover figure, .c-topics-list--top a:hover figure {
  opacity: 1;
}

.c-topics-list a:hover img, .c-topics-list--three-columns a:hover img, .c-topics-list--top a:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.c-topics-list figure, .c-topics-list--three-columns figure, .c-topics-list--top figure {
  overflow: hidden;
  background: #ffaea1;
}

.c-topics-list img, .c-topics-list--three-columns img, .c-topics-list--top img {
  width: 100%;
  transition: 0.4s all ease;
}

.c-topics-list p, .c-topics-list--three-columns p, .c-topics-list--top p {
  padding: 15px;
  line-height: 1.875;
}

.c-topics-list .date, .c-topics-list--three-columns .date, .c-topics-list--top .date {
  color: #876a2b;
  font-size: 14px;
  font-size: 0.875rem;
}

.c-topics-list .cat, .c-topics-list--three-columns .cat, .c-topics-list--top .cat {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 6px;
  border: 1px solid #876a2b;
  color: #876a2b;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  vertical-align: 1px;
}

.c-topics-list .ttl, .c-topics-list--three-columns .ttl, .c-topics-list--top .ttl {
  display: block;
}

@media screen and (min-width: 768px) {
  .c-topics-list, .c-topics-list--three-columns, .c-topics-list--top {
    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-topics-list li, .c-topics-list--three-columns li, .c-topics-list--top li {
    width: 48.5%;
  }
  .c-topics-list li + li, .c-topics-list--three-columns li + li, .c-topics-list--top li + li {
    margin-top: 25px;
  }
  .c-topics-list li:nth-child(2), .c-topics-list--three-columns li:nth-child(2), .c-topics-list--top li:nth-child(2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .c-topics-list, .c-topics-list--three-columns, .c-topics-list--top {
    padding: 0;
  }
  .c-topics-list li, .c-topics-list--three-columns li, .c-topics-list--top li {
    width: 24.2%;
  }
  .c-topics-list li + li, .c-topics-list--three-columns li + li, .c-topics-list--top li + li {
    margin-top: 60px;
  }
  .c-topics-list li:nth-child(3), .c-topics-list--three-columns li:nth-child(3), .c-topics-list--top li:nth-child(3), .c-topics-list li:nth-child(4), .c-topics-list--three-columns li:nth-child(4), .c-topics-list--top li:nth-child(4) {
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .c-topics-list--three-columns li {
    width: 32.2%;
  }
  .c-topics-list--three-columns li:nth-child(4) {
    margin-top: 60px;
  }
}

.c-topics-list--top {
  padding: 0;
}

.c-topics-list--top 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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.c-topics-list--top figure {
  position: relative;
  width: 30%;
  padding-top: 30%;
}

.c-topics-list--top figure img{
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.c-topics-list--top p {
  width: 70%;
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .c-topics-list--top a {
    display: block;
  }
  .c-topics-list--top figure {
    width: 100%;
    padding-top: 100%;
  }
  .c-topics-list--top p {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.c-top-plan-list {
  text-align: center;
}

.c-top-plan-list li {
  margin-top: 20px;
}

.c-top-plan-list a:hover figure {
  opacity: 1;
}

.c-top-plan-list a:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.c-top-plan-list figure {
  overflow: hidden;
  background: #ffaea1;
}

.c-top-plan-list img {
  width: 100%;
  transition: 0.4s all ease;
}

.c-top-plan-list p {
  line-height: 1.5;
}

.c-top-plan-list .name {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1rem;
}

.c-top-plan-list .price {
  font-size: 24px;
  font-size: 1.5rem;
}

.c-top-plan-list .small {
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .c-top-plan-list {
    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;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .c-top-plan-list li {
    width: 46%;
  }
  .c-top-plan-list li + li {
    margin-left: 8%;
  }
  .c-top-plan-list .name {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-top-plan-list .price {
    font-size: 35px;
    font-size: 2.1875rem;
  }
  .c-top-plan-list .small {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.c-tabs, .c-tabs--two-colmuns {
  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: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0 auto;
}

.c-tabs li, .c-tabs--two-colmuns li {
  width: 32%;
}

.c-tabs li:nth-child(3n+2), .c-tabs--two-colmuns li:nth-child(3n+2), .c-tabs li:nth-child(3n+3), .c-tabs--two-colmuns li:nth-child(3n+3) {
  margin-left: 2%;
}

.c-tabs a, .c-tabs--two-colmuns 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;
  position: relative;
  padding: 5px 5px;
  border-bottom: 1px solid #876a2b;
  color: #876a2b;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-align: center;
}

.c-tabs a:after, .c-tabs--two-colmuns a:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0%, -50%) rotate(45deg);
  transform: translate(0%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 1px solid #876a2b;
  border-bottom: 1px solid #876a2b;
}

@media screen and (min-width: 768px) {
  .c-tabs a, .c-tabs--two-colmuns a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-tabs li, .c-tabs--two-colmuns li {
    width: 30%;
  }
  .c-tabs li:nth-child(3n+2), .c-tabs--two-colmuns li:nth-child(3n+2), .c-tabs li:nth-child(3n+3), .c-tabs--two-colmuns li:nth-child(3n+3) {
    margin-left: 5%;
  }
  .c-tabs a, .c-tabs--two-colmuns a {
    padding: 15px;
    font-size: 19px;
    font-size: 1.1875rem;
  }
  .c-tabs a:after, .c-tabs--two-colmuns a:after {
    right: 15px;
  }
}

.c-tabs--two-colmuns li {
  width: 47%;
}

.c-tabs--two-colmuns li:nth-child(3n+2) {
  margin-left: 6%;
}

.c-item-list, .c-item-list--movie {
  margin-top: 20px;
}

.c-item-list li + li, .c-item-list--movie li + li {
  margin-top: 20px;
}

.c-item-list a, .c-item-list--movie a {
  text-align: center;
}

.c-item-list a:hover figure, .c-item-list--movie a:hover figure {
  opacity: 1;
}

.c-item-list a:hover img, .c-item-list--movie a:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.c-item-list figure, .c-item-list--movie figure {
  overflow: hidden;
  background: #ffaea1;
}

.c-item-list img, .c-item-list--movie img {
  width: 100%;
  transition: 0.4s all ease;
}

.c-item-list p, .c-item-list--movie p {
  margin-top: 5px;
  line-height: 1.7;
}

.c-item-list .date, .c-item-list--movie .date {
  display: inline-block;
  margin-right: 1em;
  font-size: 16px;
  font-size: 1rem;
}

.c-item-list .date + .ttl, .c-item-list--movie .date + .ttl {
  display: inline;
}

.c-item-list .ttl, .c-item-list--movie .ttl {
  display: block;
  font-size: 16px;
  font-size: 1rem;
}

.c-item-list .price, .c-item-list--movie .price {
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .c-item-list, .c-item-list--movie {
    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: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .c-item-list li, .c-item-list--movie li {
    width: 48%;
  }
  .c-item-list li + li, .c-item-list--movie li + li {
    margin-left: 4%;
  }
  .c-item-list li:nth-child(2), .c-item-list--movie li:nth-child(2) {
    margin-top: 0;
  }
  .c-item-list li:nth-child(2n+1), .c-item-list--movie li:nth-child(2n+1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .c-item-list, .c-item-list--movie {
    margin-top: 30px;
  }
  .c-item-list li, .c-item-list--movie li {
    width: 24%;
  }
  .c-item-list li + li, .c-item-list--movie li + li {
    margin-top: 100px;
    margin-left: 1.333%;
  }
  .c-item-list li:nth-child(3), .c-item-list--movie li:nth-child(3), .c-item-list li:nth-child(4), .c-item-list--movie li:nth-child(4) {
    margin-top: 0;
  }
  .c-item-list li:nth-child(2n+1), .c-item-list--movie li:nth-child(2n+1) {
    margin-left: 1.333%;
  }
  .c-item-list li:nth-child(4n+1), .c-item-list--movie li:nth-child(4n+1) {
    margin-left: 0;
  }
  .c-item-list p, .c-item-list--movie p {
    margin-top: 8px;
  }
  .c-item-list .ttl, .c-item-list--movie .ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .c-item-list .price, .c-item-list--movie .price {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-item-list--movie a:hover figure:before, .c-item-list--movie a:active figure:before {
  opacity: 1;
}

.c-item-list--movie figure {
  position: relative;
}

.c-item-list--movie figure:before {
  opacity: 0;
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  background: url(../images/movie/icon_play_white.svg) no-repeat center;
  background-size: 100%;
  transition: 0.4s all ease;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .c-item-list--movie figure:before {
    background-image: url(../images/movie/icon_play_white@2x.svg);
  }
}

.c-pagination {
  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: 40px;
  padding-top: 15px;
  border-top: 1px solid #876a2b;
}

.c-pagination li {
  margin: 5px;
}

.c-pagination li.current a, .c-pagination li.current span {
  border: 1px solid #876a2b;
  background: #FFF;
}

.c-pagination li.prev a {
  background: #FFF;
  color: #876a2b;
}

.c-pagination li.next a {
  background: #FFF;
  color: #876a2b;
}

.c-pagination li.dots span {
  background: #FFF;
}

.c-pagination a, .c-pagination span {
  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;
  width: 30px;
  height: 30px;
  background: #eee7dc;
  color: #876a2b;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-pagination {
    margin-top: 90px;
    padding-top: 30px;
  }
}

.c-detail-pagination {
  position: relative;
  max-width: 320px;
  height: 35px;
  margin: 40px auto 0;
}

.c-detail-pagination .back {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  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: 90px;
  height: 35px;
  border: 1px solid #876a2b;
  color: #876a2b;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.2em;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.c-detail-pagination .prev {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  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: 90px;
  height: 35px;
  color: #876a2b;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  letter-spacing: 0.2em;
}

.c-detail-pagination .prev:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 4px;
  -webkit-transform: translate(0%, -50%) rotate(-45deg);
  transform: translate(0%, -50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-left: 1px solid #876a2b;
  border-top: 1px solid #876a2b;
}

.c-detail-pagination .next {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  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: 90px;
  height: 35px;
  color: #876a2b;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  letter-spacing: 0.2em;
}

.c-detail-pagination .next:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  right: 4px;
  -webkit-transform: translate(0%, -50%) rotate(45deg);
  transform: translate(0%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 1px solid #876a2b;
  border-top: 1px solid #876a2b;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination {
    margin-top: 90px;
    max-width: 370px;
  }
  .c-detail-pagination .back {
    width: 105px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .c-detail-pagination .prev {
    width: 105px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .c-detail-pagination .next {
    width: 105px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.c-topics-nav section + section {
  margin-top: 10px;
}

.c-topics-nav section.is-open .ttl:after {
  -webkit-transform: translate(0%, -50%) rotate(225deg);
  transform: translate(0%, -50%) rotate(225deg);
}

.c-topics-nav .ttl {
  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;
  height: 40px;
  border-bottom: 1px solid #684a45;
  color: #876a2b;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
  cursor: pointer;
}

.c-topics-nav .ttl:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0%, -50%) rotate(45deg);
  transform: translate(0%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 1px solid #876a2b;
  border-bottom: 1px solid #876a2b;
  transition: 0.4s all ease;
}

.c-topics-nav .list {
  display: none;
}

.c-topics-nav li:first-child a {
  border-top: none;
}

.c-topics-nav 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;
  height: 40px;
  border-top: 1px solid #FFF;
  background: #eee7dc;
  color: #876a2b;
  line-height: 1;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 1024px) {
  .c-topics-nav section + section {
    margin-top: 150px;
  }
  .c-topics-nav section .ttl {
    height: 50px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-topics-nav section a {
    height: 50px;
  }
}

/*
  テーブル
*/
/*
  背景
*/
/*
  フォーム
*/
.c-form {
  width: 100%;
  max-width: 1000px;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}

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

.c-form > dl > dt, .c-form > dl > dd {
  padding: 5px 0;
  font-size: 14px;
  font-size: 0.875rem;
  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;
    margin-top: 30px;
  }
  .c-form > dl {
    display: table-row;
  }
  .c-form > dl > dt, .c-form > dl > dd {
    padding: 17px 0;
    display: table-cell;
    font-size: 16px;
    font-size: 1rem;
  }
  .c-form > dl > dt {
    width: 22%;
    padding-right: 1%;
  }
  .c-form > dl > dd {
    width: 78%;
    padding-left: 1%;
  }
  .c-form input[name="zip1"], .c-form input[name="zip2"] {
    width: 140px !important;
  }
}

.c-required {
  display: inline-block;
  margin-left: 3px;
  color: #e50012;
}

/*
  バナー
*/
/*
  その他
*/
.c-plan-info .img {
  max-width: 640px;
  margin: 0 auto;
  padding-right: 15px;
}

.c-plan-info figure {
  display: block;
  position: relative;
}

.c-plan-info figure:before {
  display: block;
  position: absolute;
  content: '';
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background: #da4f54;
}

.c-plan-info img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.c-plan-info .text {
  margin-top: 15px;
  padding-top: 15px;
  text-align: center;
  line-height: 1.5;
}

.c-plan-info p + p {
  margin-top: 10px;
}

.c-plan-info .name {
  margin-top: 15px;
  font-size: 20px;
  font-size: 1.25rem;
}

.c-plan-info .sub {
  color: #876a2b;
}

.c-plan-info .cat {
  display: inline-block;
  margin-right: 10px;
  padding: 3px 3px;
  border: 1px solid #876a2b;
  color: #876a2b;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.2;
}

.c-plan-info .price {
  font-size: 28px;
  font-size: 1.75rem;
}

.c-plan-info .small {
  font-size: 14px;
  font-size: 0.875rem;
}

.c-plan-info .contents {
  margin-top: 15px;
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (min-width: 1024px) {
  .c-plan-info .img {
    width: 53%;
  }
  .c-plan-info figure:before {
    top: 7%;
    left: 5%;
  }
  .c-plan-info .text {
    width: 47%;
    margin-top: 0;
    padding-left: 5%;
  }
  .c-plan-info .name {
    margin-top: 30px;
    font-size: 24px;
    font-size: 1.5rem;
  }
  .c-plan-info .cat {
    margin-right: 15px;
    padding: 3px 10px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .c-plan-info .price {
    font-size: 53px;
    font-size: 3.3125rem;
    line-height: 1;
  }
  .c-plan-info .small {
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 1;
  }
  .c-plan-info .contents {
    margin-top: 30px;
    font-size: 16px;
    font-size: 1rem;
  }
}

.c-access-info iframe {
  width: 100%;
  height: 300px;
}

.c-access-info .name {
  margin-top: 7px;
  font-size: 18px;
  font-size: 1.125rem;
}

.c-access-info .info {
  margin-top: 5px;
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (min-width: 1024px) {
  .c-access-info iframe {
    width: 1200px;
    max-width: 100%;
    height: 460px;
  }
  .c-access-info .name {
    margin-top: 12px;
    font-size: 25px;
    font-size: 1.5625rem;
  }
  .c-access-info .info {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/*------------------------------------------------------------
  index  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;
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: calc(100vh - 50px);
  text-align: center;
}

.page-index .p-mv .img {
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

@media (orientation: portrait) {
  .page-index .p-mv {
    height: calc(100vh - 50px);
  }
  .page-index .p-mv .img {
    width: auto;
    height: 100%;
  }
}

@media (min-aspect-ratio: 3 / 4) {
  .page-index .p-mv {
    height: calc(100vh - 50px);
  }
  .page-index .p-mv .img {
    width: 100%;
    height: auto;
  }
}

@media (orientation: landscape) {
  .page-index .p-mv {
    height: auto;
  }
  .page-index .p-mv .img {
    width: 100%;
    height: auto;
  }
}

.page-index .p-mv .copy {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-index .p-mv button {
  display: block;
  position: absolute;
  content: '';
  display: none;
  bottom: 100px;
  left: 50%;
  color: #FFF;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  -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: -60px;
  left: 50%;
  width: 28px;
  height: 48px;
  border: 1px solid #FFF;
  border-radius: 30px;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.page-index .p-mv button:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -60px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #FFF;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  -webkit-animation: point-move 2s infinite ease-out;
  animation: point-move 2s infinite ease-out;
}

@media screen and (min-width: 1024px) {
  .page-index .p-mv video {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 1024px) and (max-aspect-ratio: 16 / 9) {
  .page-index .p-mv {
    height: calc(100vh - 100px);
  }
  .page-index .p-mv video {
    width: auto;
    height: 100%;
  }
}

@media screen and (min-width: 1024px) and (min-aspect-ratio: 16 / 9) {
  .page-index .p-mv {
    height: calc(100vh - 100px);
  }
  .page-index .p-mv video {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) and (max-width: 767px) {
  .page-index .p-mv {
    height: calc(100vh - 100px);
  }
  .page-index .p-mv video {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
  .page-index .p-mv {
    height: auto;
  }
  .page-index .p-mv video {
    position: initial;
    width: 100%;
    height: auto;
    -webkit-transform: none;
    transform: none;
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-mv .copy {
    width: auto;
  }
  .page-index .p-mv button {
    display: block;
  }
}

@-webkit-keyframes point-move {
  from {
    opacity: 0;
    bottom: -20px;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  to {
    opacity: 0;
    bottom: -55px;
  }
}

@keyframes point-move {
  from {
    opacity: 0;
    bottom: -20px;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  to {
    opacity: 0;
    bottom: -55px;
  }
}

.page-index .p-concept .ttl {
  text-align: center;
}

.page-index .p-concept .img {
  margin-left: -15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.page-index .p-concept .text {
  padding: 0 15px;
}

.page-index .p-concept .copy {
  color: #876a2b;
  font-size: 26px;
  font-size: 1.625rem;
  font-family: "Hannari", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media screen and (min-width: 1024px) {
  .page-index .p-concept .ttl {
    text-align: left;
  }
  .page-index .p-concept .img {
    margin-left: 0;
    padding-top: 0;
    padding-right: 15px;
    padding-bottom: 0;
    width: 56%;
  }
  .page-index .p-concept .text {
    width: 44%;
    padding-left: 2%;
  }
  .page-index .p-concept .copy {
    font-size: 45px;
    font-size: 2.8125rem;
  }
  .page-index .p-concept p {
    max-width: 470px;
  }
  .page-index .p-concept .btn {
    margin-left: 0;
  }
}

.page-index .p-plan section + section {
  margin-top: 50px;
}

.page-index .p-plan h3 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c9171e;
  color: #876a2b;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
}

.page-index .p-plan h3 span {
  display: inline-block;
  margin-left: 5px;
  font-size: 12px;
  font-size: 0.75rem;
}

.page-index .p-plan p {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .page-index .p-plan section + section {
    margin-top: 80px;
  }
  .page-index .p-plan h3 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 28px;
    font-size: 1.75rem;
  }
  .page-index .p-plan h3 span {
    font-size: 16px;
    font-size: 1rem;
  }
}

.page-index .p-gallery .swiper a {
  display: block;
  position: relative;
}

.page-index .p-gallery .swiper a:hover figure, .page-index .p-gallery .swiper a:active figure {
  opacity: 1;
}

.page-index .p-gallery .swiper a:hover img, .page-index .p-gallery .swiper a:active img {
  opacity: 0.4;
  transform: scale(1.1);
}

.page-index .p-gallery .swiper a:hover .name, .page-index .p-gallery .swiper a:active .name {
  opacity: 1;
}

.page-index .p-gallery .swiper figure {
  overflow: hidden;
  background: #ffaea1;
}

.page-index .p-gallery .swiper img {
  width: auto;
  max-height: 144px;
  transition: 0.4s all ease;
}

.page-index .p-gallery .swiper .name {
  opacity: 0;
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  min-width: 80px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #FFF;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  transition: 0.4s all ease;
}

.page-index .p-gallery .swiper .name span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (min-width: 1024px) {
  .page-index .p-gallery .swiper img {
    max-height: 288px;
  }
  .page-index .p-gallery .swiper .name {
    min-width: 190px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .page-index .p-gallery .swiper .name span {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.page-index .p-location .img {
  padding-left: 35%;
}

.page-index .p-location .text {
  margin-top: -60px;
  padding: 0 15px;
}

.page-index .p-location .text figure {
  padding-right: 50%;
}

.page-index .p-location .copy {
  margin-top: 15px;
  color: #876a2b;
  font-size: 26px;
  font-size: 1.625rem;
  font-family: "Hannari", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .page-index .p-location .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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-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: end;
    -ms-flex-pack: end;
    -webkit-justify-content: end;
    justify-content: end;
  }
  .page-index .p-location .img {
    width: 56%;
    padding-top: 30px;
    padding-left: 0;
  }
  .page-index .p-location .img img {
    width: 100%;
  }
  .page-index .p-location .text {
    width: 40%;
    max-width: 554px;
    margin-top: 0;
    padding: 0;
    -webkit-transform: translate(40px, 0%);
    transform: translate(40px, 0%);
  }
  .page-index .p-location .text figure {
    padding-right: 0;
  }
  .page-index .p-location .copy-wrap {
    margin-top: -160px;
    padding: 0 60px 0 20px;
  }
  .page-index .p-location .copy {
    font-size: 45px;
    font-size: 2.8125rem;
  }
  .page-index .p-location .copy span {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: -200px;
    padding: 0 0 0 20px;
    background: #FFF;
  }
}

@media screen and (min-width: 1280px) {
  .page-index .p-location .text {
    width: 29%;
  }
}

.page-index .p-instagram 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-instagram li {
  width: 48%;
}

.page-index .p-instagram li + li {
  margin-top: 15px;
}

.page-index .p-instagram li:nth-child(2) {
  margin-top: 0;
}

.page-index .p-instagram li a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%;
  background: #ffaea1;
}

.page-index .p-instagram li a:hover figure {
  opacity: 1;
}

.page-index .p-instagram li a:hover img {
  opacity: 0.4;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.page-index .p-instagram img {
  width: 100%;
  transition: 0.4s all ease;
}

@media screen and (min-width: 1024px) {
  .page-index .p-instagram li {
    width: 19%;
  }
  .page-index .p-instagram li:nth-child(3), .page-index .p-instagram li:nth-child(4), .page-index .p-instagram li:nth-child(5) {
    margin-top: 0;
  }
}

/*------------------------------------------------------------
  concept  コンセプトページ用
------------------------------------------------------------*/
.page-concept .p-concept .copy {
  color: #c9171e;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Hannari", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.page-concept .p-concept .sentence {
  font-size: 16px;
  font-size: 1rem;
}

.page-concept .p-concept .position {
  margin-top: 30px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: right;
}

.page-concept .p-concept .name {
  margin-top: 0;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: right;
}

.page-concept .p-concept .img {
  padding-top: 10px;
  text-align: center;
}

.page-concept .p-concept img {
  width: 70%;
  max-width: 300px;
}

@media screen and (min-width: 1024px) {
  .page-concept .p-concept .text {
    width: 70%;
    padding-right: 5%;
  }
  .page-concept .p-concept .copy {
    font-size: 50px;
    font-size: 3.125rem;
  }
  .page-concept .p-concept .sentence {
    margin-top: 10px;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0em;
  }
  .page-concept .p-concept .position {
    margin-top: 30px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .page-concept .p-concept .name {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .page-concept .p-concept .img {
    width: 30%;
    padding-top: 20px;
  }
  .page-concept .p-concept img {
    max-width: none;
  }
}

.page-concept .p-style > ul > li {
  max-width: 500px;
  border: 1px solid #c9171e;
  margin: 35px auto 0;
  padding: 0 15px 15px;
}

.page-concept .p-style p {
  font-size: 12px;
  font-size: 0.75rem;
}

.page-concept .p-style .num {
  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: 30px;
  height: 30px;
  margin: -15px auto 0;
  padding-bottom: 5px;
  color: #FFF;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  text-align: center;
}

.page-concept .p-style .num:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  z-index: -1;
  width: 30px;
  height: 30px;
  background: #c9171e;
  transform: rotate(45deg);
}

.page-concept .p-style .ttl {
  color: #c9171e;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

.page-concept .p-style .tags {
  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: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 10px;
  margin-left: -5px;
}

.page-concept .p-style .tags li {
  background: #da4f54;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0 3px;
  color: #FFF;
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (min-width: 1024px) {
  .page-concept .p-style > 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-concept .p-style > ul > li {
    width: 31%;
    padding: 0 25px 25px;
  }
  .page-concept .p-style p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .page-concept .p-style .num {
    width: 46px;
    height: 46px;
    margin-top: -23px;
    font-size: 30px;
    font-size: 1.875rem;
  }
  .page-concept .p-style .num:before {
    width: 46px;
    height: 46px;
  }
  .page-concept .p-style .ttl {
    font-size: 23px;
    font-size: 1.4375rem;
  }
  .page-concept .p-style .tags li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-romanya .text,
.p-vegetables .text,
.p-guinomi .text,
.p-ring .text {
  margin-top: 15px;
  padding: 0 15px;
}

.p-romanya .img img,
.p-vegetables .img img,
.p-guinomi .img img,
.p-ring .img img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .p-romanya .text,
  .p-vegetables .text,
  .p-guinomi .text,
  .p-ring .text {
    margin-top: 0;
    padding: 50px 5% 0 5%;
  }
}

@media screen and (min-width: 1024px) {
  .p-vegetables .text,
  .p-ring .text {
    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: end;
    -ms-flex-pack: end;
    -webkit-justify-content: end;
    justify-content: end;
  }
}

/*------------------------------------------------------------
  plan  プラン一覧ページ用
------------------------------------------------------------*/
/*------------------------------------------------------------
  plan-detail  プラン詳細ページ用
------------------------------------------------------------*/
.page-plan-detail .p-plan h4 {
  margin-bottom: 20px;
  border-bottom: 1px solid #c9171e;
  color: #876a2b;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.page-plan-detail .p-plan .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: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: -15px;
}

.page-plan-detail .p-plan .icons li {
  width: 23.5%;
  margin-top: 15px;
  text-align: center;
}

.page-plan-detail .p-plan .icons li + li {
  margin-left: 2%;
}

.page-plan-detail .p-plan .icons li:nth-child(4n+1) {
  margin-left: 0;
}

.page-plan-detail .p-plan .icons img {
  width: 100%;
}

.page-plan-detail .p-plan .icons p {
  color: #876a2b;
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .page-plan-detail .p-plan .icons li {
    width: 11%;
  }
  .page-plan-detail .p-plan .icons li + li {
    margin-left: 1.714%;
  }
  .page-plan-detail .p-plan .icons li:nth-child(4n+1) {
    margin-left: 1.714%;
  }
  .page-plan-detail .p-plan .icons li:nth-child(8n+1) {
    margin-left: 0;
  }
  .page-plan-detail .p-plan .icons p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 1024px) {
  .page-plan-detail .p-plan h4 {
    margin-bottom: 40px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .page-plan-detail .p-plan .icons {
    margin-top: -20px;
  }
  .page-plan-detail .p-plan .icons li {
    width: 8.5%;
    margin-top: 20px;
  }
  .page-plan-detail .p-plan .icons li + li {
    margin-left: 1.666%;
  }
  .page-plan-detail .p-plan .icons li:nth-child(4n+1) {
    margin-left: 1.666%;
  }
  .page-plan-detail .p-plan .icons li:nth-child(8n+1) {
    margin-left: 1.666%;
  }
  .page-plan-detail .p-plan .icons li:nth-child(10n+1) {
    margin-left: 0;
  }
  .page-plan-detail .p-plan .icons p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/*------------------------------------------------------------
  location  ロケーションページ用
------------------------------------------------------------*/
.page-location .p-location .tabs {
  max-width: 916px;
}

.page-location .p-location .location-list li {
  margin-top: 30px;
  text-align: center;
}

.page-location .p-location .location-list img {
  width: 100%;
  max-width: 500px;
}

.page-location .p-location .location-list .ttl {
  margin-top: 5px;
  color: #876a2b;
  font-size: 18px;
  font-size: 1.125rem;
}

.page-location .p-location .location-list .text {
  margin-top: 0;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .page-location .p-location .location-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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .page-location .p-location .location-list li {
    width: 48%;
  }
  .page-location .p-location .location-list img {
    max-width: none;
  }
}

@media screen and (min-width: 1024px) {
  .page-location .p-location .location-list li {
    margin-top: 100px;
    width: 45.5%;
  }
  .page-location .p-location .location-list li:nth-child(1), .page-location .p-location .location-list li:nth-child(2) {
    margin-top: 50px;
  }
  .page-location .p-location .location-list .ttl {
    margin-top: 10px;
    font-size: 23px;
    font-size: 1.4375rem;
  }
  .page-location .p-location .location-list .text {
    margin-top: 5px;
  }
}

/*------------------------------------------------------------
  studio  スタジオページ用
------------------------------------------------------------*/
.page-studio .p-studio .img {
  text-align: center;
}

.page-studio .p-studio img {
  width: 100%;
  max-width: 500px;
}

.page-studio .p-studio .text {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .page-studio .p-studio img {
    max-width: none;
  }
  .page-studio .p-studio .reverse {
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .page-studio .p-studio .reverse .text {
    max-width: 552px;
    padding-right: 5%;
    padding-left: 0;
  }
  .page-studio .p-studio .text {
    margin-top: 0;
    padding-left: 5%;
  }
}

.page-studio .p-schedule iframe {
  width: 100%;
  max-width: 950px;
  height: 500px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .page-studio .p-schedule iframe {
    height: 550px;
  }
}

/*------------------------------------------------------------
  gallery  ギャラリーページ用
------------------------------------------------------------*/
.page-gallery .p-gallery .tabs li {
  margin-top: 5px;
}

.page-gallery .p-gallery .tabs a {
  min-height: 37px;
}

.page-gallery .p-gallery .grid {
  position: relative;
  margin: -1%;
}

.page-gallery .p-gallery .item {
  opacity: 0;
  display: block;
  position: absolute;
  width: 48%;
  margin: 1%;
  z-index: 1;
  background: #000;
  color: #fff;
  -webkit-animation-name: loaded;
  animation-name: loaded;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.page-gallery .p-gallery .item a {
  display: block;
  overflow: hidden;
  background: #ffaea1;
}

.page-gallery .p-gallery .item a:hover {
  opacity: 1;
}

.page-gallery .p-gallery .item a:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.page-gallery .p-gallery .item img {
  width: 100%;
  transition: 0.4s all ease;
}

.page-gallery .p-gallery .item.muuri-item-dragging {
  z-index: 3;
}

.page-gallery .p-gallery .item.muuri-item-releasing {
  z-index: 2;
}

.page-gallery .p-gallery .item.muuri-item-hidden {
  z-index: 0;
}

.page-gallery .p-gallery .item-content {
  position: relative;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .page-gallery .p-gallery .grid {
    margin: -0.5%;
  }
  .page-gallery .p-gallery .item {
    width: 32.333%;
    margin: 0.5%;
  }
}

@media screen and (min-width: 1024px) {
  .page-gallery .p-gallery .tabs li {
    margin-top: 10px;
  }
  .page-gallery .p-gallery .tabs a {
    min-height: 50px;
  }
}

@-webkit-keyframes loaded {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes loaded {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*------------------------------------------------------------
  movie  ムービーページ用
------------------------------------------------------------*/
/*------------------------------------------------------------
  online  オンラインページ用
------------------------------------------------------------*/
.page-online .p-teleconference .text {
  margin-top: 15px;
}

.page-online .p-teleconference .img img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .page-online .p-teleconference .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-online .p-teleconference .img {
    width: 50%;
  }
  .page-online .p-teleconference .text {
    width: 50%;
    margin-top: 0;
    padding: 0 0 0 5%;
  }
  .page-online .p-teleconference .tabs {
    max-width: 920px;
  }
}

.page-online .p-flow-list li {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
}

.page-online .p-flow-list li + li {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #c9171e;
}

.page-online .p-flow-list li + li:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 0;
  height: 0;
  border-top: 20px solid #c9171e;
  border-right: 30px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid transparent;
}

.page-online .p-flow-list .text {
  padding-top: 15px;
}

.page-online .p-flow-list .num {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 30px;
  margin-right: 10px;
  margin-left: -15px;
  padding-bottom: 2px;
  color: #FFF;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
}

.page-online .p-flow-list .num:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  background: #c9171e;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-online .p-flow-list .ttl {
  display: inline-block;
  margin-right: -15px;
  color: #c9171e;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

.page-online .p-flow-list .desc {
  font-size: 12px;
  font-size: 0.75rem;
}

.page-online .p-flow-list .btn {
  min-width: 100%;
}

@media screen and (min-width: 768px) {
  .page-online .p-flow-list 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;
    padding-right: 20px;
    padding-left: 20px;
  }
  .page-online .p-flow-list li + li {
    margin-top: 40px;
    padding-top: 40px;
  }
  .page-online .p-flow-list li + li:before {
    border-top: 30px solid #c9171e;
    border-right: 45px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 45px solid transparent;
  }
  .page-online .p-flow-list .img {
    width: 30%;
  }
  .page-online .p-flow-list .text {
    width: 70%;
    padding-left: 5%;
  }
  .page-online .p-flow-list .num {
    width: 46px;
    margin-right: 20px;
    margin-left: 0;
    font-size: 30px;
    font-size: 1.875rem;
  }
  .page-online .p-flow-list .num:before {
    width: 46px;
    height: 46px;
  }
  .page-online .p-flow-list .ttl {
    margin-right: 0;
    font-size: 23px;
    font-size: 1.4375rem;
  }
  .page-online .p-flow-list .desc {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .page-online .p-flow-list .btn {
    min-width: 350px;
    margin-left: 0;
  }
}

.page-online .p-tool li {
  padding: 30px 15px 30px;
  border: 1px solid #c9171e;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}

.page-online .p-tool li + li {
  margin-top: 15px;
}

.page-online .p-tool .ttl {
  margin-bottom: 20px;
  padding-top: 25px;
  color: #876a2b;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Cormorant Garamond", "Hannari", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  text-align: center;
}

.page-online .p-tool iframe {
  margin: 25px auto 20px;
}

@media screen and (min-width: 768px) {
  .page-online .p-tool {
    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-online .p-tool li {
    width: 48.5%;
    padding: 30px 25px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .page-online .p-tool li + li {
    margin-top: 0;
  }
  .page-online .p-tool .ttl {
    margin-bottom: 40px;
    padding-top: 35px;
    font-size: 38px;
    font-size: 2.375rem;
  }
  .page-online .p-tool iframe {
    margin-bottom: 30px;
  }
  .page-online .p-tool .zoom {
    padding-top: 45px;
  }
  .page-online .p-tool .zoom .ttl {
    padding-top: 40px;
  }
}

.page-online .p-wedding {
  padding-right: 15px;
  padding-left: 15px;
}

.page-online .p-wedding .img {
  margin-right: -15px;
  margin-left: -15px;
}

.page-online .p-wedding .img img {
  width: 100%;
}

.page-online .p-wedding .text {
  padding-top: 15px;
}

@media screen and (min-width: 1024px) {
  .page-online .p-wedding {
    padding-right: 0;
    padding-left: 0;
  }
  .page-online .p-wedding .img {
    width: 58%;
    margin-right: 0;
    margin-left: 0;
  }
  .page-online .p-wedding .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: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 42%;
    padding-top: 0;
  }
  .page-online .p-wedding .text-inner {
    max-width: 700px;
    margin-left: -20%;
    padding: 8%;
    background: #FFF;
    line-height: 1.875;
  }
}

/*------------------------------------------------------------
  topics  トピックス一覧ページ用
------------------------------------------------------------*/
/*------------------------------------------------------------
  topics-detail  トピックス詳細ページ用
------------------------------------------------------------*/
.page-topics-detail .p-topics .cat {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid #876a2b;
  color: #876a2b;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  vertical-align: 1px;
}

.page-topics-detail .p-topics .date {
  display: block;
  color: #876a2b;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (min-width: 1024px) {
  .page-topics-detail .p-topics .cat {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .page-topics-detail .p-topics .date {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*------------------------------------------------------------
  access  アクセスページ用
------------------------------------------------------------*/
/*------------------------------------------------------------
  privacy  プライバシーポリシーページ用
------------------------------------------------------------*/
.page-privacy .p-privacy li {
  padding-left: 3em;
  text-indent: -3em;
}

/*------------------------------------------------------------
  contact  コンタクトページ用
------------------------------------------------------------*/
.page-contact .p-contact .tel {
  display: inline-block;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
}

.page-contact .p-contact .tel img {
  margin-top: -5px;
  width: 25px;
}

.page-contact .p-contact .tel .text {
  display: inline-block;
  margin-left: 7px;
}

.page-contact .p-contact .line {
  margin: 24px auto;
  text-align: center;
  display: block;

}

.page-contact .p-contact .progress {
  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;
  max-width: 980px;
  margin: 30px auto 60px;
  padding: 0 15px;
}

.page-contact .p-contact .progress:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 60px);
  height: 2px;
  background: #dadada;
}

.page-contact .p-contact .progress li {
  position: relative;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  color: #dadada;
}

.page-contact .p-contact .progress li:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 40px;
  background: #c9171e;
}

.page-contact .p-contact .progress li.is-current {
  color: #000000;
}

.page-contact .p-contact .progress li.is-current:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  border: 1px solid #c9171e;
  border-radius: 40px;
}

.page-contact .p-contact .progress span {
  display: block;
  position: absolute;
  content: '';
  top: 35px;
  left: 50%;
  width: 100px;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

@media all and (-ms-high-contrast: none) {
  .page-contact .p-contact .progress {
    width: 980px;
    margin-left: -30px;
  }
  .page-contact .p-contact .progress:before {
    width: 630px;
    left: 65%;
  }
}

.page-contact .p-contact .privacy {
  text-align: center;
}

.page-contact .p-contact .privacy a {
  color: #e50012;
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .page-contact .p-contact .tel {
    font-size: 50px;
    font-size: 3.125rem;
  }
  .page-contact .p-contact .tel img {
    width: auto;
  }
  .page-contact .p-contact .tel .text {
    margin-left: 10px;
  }
  .page-contact .p-contact .progress {
    margin-top: 50px;
    margin-bottom: 90px;
  }
  .page-contact .p-contact .progress li {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.page-contact .contact_sns {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content:center; 
  margin-top: 20px;
  column-gap: 10px;
  opacity: 0.8;
}

.page-contact .contact_sns a{
  display: block;
  height: 30px;
  width: 30px;
}


.page-contact .contact_sns  img{
  height: 100%;
  width: auto;
  object-fit: contain;
}


.mw_wp_form_input .progress li:nth-child(1),
.mw_wp_form_confirm .progress li:nth-child(2),
.mw_wp_form_complete .progress li:nth-child(3) {
  color: #000000;
}

.mw_wp_form_input .progress li:nth-child(1):after,
.mw_wp_form_confirm .progress li:nth-child(2):after,
.mw_wp_form_complete .progress li:nth-child(3):after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  border: 1px solid #c9171e;
  border-radius: 40px;
}

.mw_wp_form_confirm .tel-wrap,
.mw_wp_form_confirm .lead,
.mw_wp_form_confirm .note,
.mw_wp_form_confirm dt span,
.mw_wp_form_confirm .privacy span {
  display: none;
}

.mw_wp_form .error {
  color: #e50012 !important;
}

/*------------------------------------------------------------
  utility  [0] 共通調整用
------------------------------------------------------------*/
.u-dis-none {
  display: none !important;
}

.u-z-index-1 {
  position: relative;
  z-index: 1;
}

.u-opa {
  opacity: 0.7;
}

.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: 20px !important;
}

.u-mt-medium {
  margin-top: 30px !important;
}

.u-mt-large {
  margin-top: 50px !important;
}

.u-mb-small {
  margin-bottom: 20px !important;
}

.u-mb-medium {
  margin-bottom: 30px !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: #c9171e;
}

.u-col-vivid-red {
  color: #e50012;
}

.u-fs-0 {
  font-size: 0;
}

.u-fs-medium {
  font-size: 14px;
  font-size: 0.875rem;
}

.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;
}
