@charset "UTF-8";
/*------------------------------------------------------------
  reset
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;700&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;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/*------------------------------------------------------------
  form parts reset
------------------------------------------------------------*/
input,
button,
select,
optgroup,
option,
textarea {
  font-family: "游明朝体", YuMincho, "YuMincho M", "游明朝", "Yu Mincho", "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: 8px 10px;
  border: 1px solid #A2B6B9;
  border-radius: 0;
  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: 8px 15px;
  }
}

textarea {
  height: 150px;
  line-height: 1.5;
}

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

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-list, .wpcf7-radio {
  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;
}

.radio-list li, .radio-list .wpcf7-list-item, .wpcf7-radio li, .wpcf7-radio .wpcf7-list-item {
  width: 50%;
  margin: 0;
}

.radio-label, .mwform-radio-field {
  display: inline-block;
}

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: 10px;
  height: 10px;
  margin-top: -5px;
  border: 1px solid #707070;
  background: #fff;
}

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

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

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

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 #c8c8c8;
  background: #FFF;
}

input[type="checkbox"] + span::after {
  opacity: 0;
  top: 50%;
  left: 2px;
  width: 11px;
  height: 6px;
  margin-top: -5px;
  border-left: 2px solid #707070;
  border-bottom: 2px solid #707070;
  -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: 10px;
  height: 10px;
  margin-top: -7px;
  border-top: 2px solid #0068b3;
  border-right: 2px solid #0068b3;
  content: '';
  pointer-events: none;
  transform: rotate(135deg);
}

.select-label select {
  position: relative;
  width: 100%;
  padding-top: 13px;
  padding-bottom: 13px;
  border: none;
  border-radius: 0;
  background: #FFF;
  cursor: pointer;
}

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

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

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

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

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

/*------------------------------------------------------------
  setting
------------------------------------------------------------*/
body {
  background: #FFF;
  color: #000000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  font-family: "游明朝体", YuMincho, "YuMincho M", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.5625;
}

body.is-fixed {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2;
  }
  body.is-fixed {
    overflow: visible;
  }
}

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

a:hover {
  opacity: 0.7;
}

main a {
  color: #A2B6B9;
  text-decoration: underline;
}

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) {
  .pc {
    display: none !important;
  }
}

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

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

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

/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/**
 * Swiper 6.3.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 30, 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-button-prev,
.swiper-button-next {
  top: calc(50% + 55px);
  color: #FFF;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
  font-size: 1.25rem;
}

@media (orientation: landscape) {
  .swiper-button-prev,
  .swiper-button-next {
    top: calc(50% + 35px);
  }
}

@media screen and (min-width: 1024px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1280px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: calc(50% + 87px);
  }
}

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

@media (orientation: landscape) {
  .l-container {
    padding-top: 70px;
  }
}

@media screen and (min-width: 1024px) {
  .l-container {
    padding-top: 110px;
  }
}

@media screen and (min-width: 1280px) {
  .l-container {
    padding-top: 175px;
  }
}

.page-index .l-container {
  padding-top: 0;
}

.l-section, .l-section--pt-none, .l-section--pb-none, .l-section--small, .l-section--large {
  padding-top: 70px;
  padding-bottom: 70px;
}

.l-section p + p, .l-section--pt-none p + p, .l-section--pb-none p + p, .l-section--small p + p, .l-section--large p + p {
  margin-top: 1.2em;
}

@media screen and (min-width: 1024px) {
  .l-section, .l-section--pt-none, .l-section--pb-none, .l-section--small, .l-section--large {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.l-section--pt-none {
  padding-top: 0;
}

.l-section--pb-none {
  padding-bottom: 0;
}

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

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

.l-section--large {
  padding-top: 130px;
  padding-bottom: 130px;
}

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

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

@media screen and (min-width: 1024px) {
  .l-center, .l-center--small, .l-center--wide, .l-center--pc-no-pad {
    width: 100%;
    max-width: 1040px;
    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--wide {
    max-width: 1230px;
  }
}

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

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

@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: 1040px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.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-blur {
  opacity: 0;
  filter: blur(20px);
  transition: opacity .8s ease, filter .8s ease;
}

.l-blur.is-blur {
  opacity: 1;
  filter: blur(0px);
}

@media all and (-ms-high-contrast: none) {
  .l-blur {
    opacity: 1;
  }
}

/* ---------------------------
  ヘッダー用
--------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 110px;
  background: rgba(255, 255, 255, 0.85);
}

.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 {
  position: relative;
  z-index: 300;
  line-height: 1;
}

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

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

@media (orientation: landscape) {
  .l-header {
    height: 70px;
  }
  .l-header .logo img {
    height: 50px;
  }
}

@media screen and (min-width: 1024px) {
  .l-header {
    height: 110px;
  }
  .l-header > .inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
  }
  .l-header .logo {
    margin-left: 1%;
  }
  .l-header .logo img {
    height: 52px;
  }
  .l-header .btn {
    margin-right: 2%;
  }
}

@media screen and (min-width: 1280px) {
  .l-header {
    height: 175px;
  }
  .l-header .logo {
    margin-left: 1.5%;
  }
  .l-header .logo img {
    height: 70px;
  }
  .l-header .btn {
    margin-right: 3%;
  }
}

@media screen and (-ms-high-contrast: none) and (min-width: 1024px), screen and (-ms-high-contrast: active) and (min-width: 1024px) {
  .l-header .logo img {
    width: 256px;
  }
}

@media screen and (-ms-high-contrast: none) and (min-width: 1280px), screen and (-ms-high-contrast: active) and (min-width: 1280px) {
  .l-header .logo img {
    width: 344px;
  }
}

@supports (-ms-ime-align: auto) {
  @media screen and (min-width: 1024px) {
    .l-header .logo img {
      width: 256px;
    }
  }
  @media screen and (min-width: 1280px) {
    .l-header .logo img {
      width: 344px;
    }
  }
}

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

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

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

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

.l-menu-btn {
  position: fixed;
  top: 30px;
  right: 5px;
  z-index: 300;
  width: 50px;
  height: 50px;
}

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

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

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

.l-menu-btn span.middle {
  opacity: 1;
  margin-top: -1px;
  transition: opacity .2s ease;
}

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

.l-menu-btn.is-open span {
  background: #FFF;
}

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

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

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

@media (orientation: landscape) {
  .l-menu-btn {
    top: 10px;
  }
}

@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(-11px) rotate(0deg);
  }
}

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

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

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

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

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

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

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

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

.l-gnav .list > li > a, .l-gnav .list > li > span {
  display: inline-block;
  opacity: 1 !important;
  padding: 10px;
  color: #FFF;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Crimson Text", "游明朝体", YuMincho, "YuMincho M", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: background .2s ease, color .2s ease;
}

.l-gnav .list ul {
  display: block;
  position: absolute;
  content: '';
  display: none;
  top: 55px;
  left: 10%;
  z-index: 1;
  width: 80%;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.85);
}

.l-gnav .list ul li + li {
  margin-top: 5px;
}

.l-gnav .list ul a {
  display: inline-block;
  padding: 5px 10px;
}

@media screen and (min-width: 1024px) {
  .l-gnav {
    display: block !important;
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    overflow: visible;
    background: none;
  }
  .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;
  }
  .l-gnav .list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
  }
  .l-gnav .list > li + li {
    margin-top: 0;
    margin-left: 25px;
  }
  .l-gnav .list > li.is-active ul {
    display: block;
    opacity: 1;
  }
  .l-gnav .list > li > a, .l-gnav .list > li > span {
    position: relative;
    padding: 10px 0;
    color: #000000;
    font-size: 16px;
    font-size: 1rem;
  }
  .l-gnav .list > li > a:after, .l-gnav .list > li > span:after {
    opacity: 0;
    display: block;
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #A2B6B9;
    transition: opacity .2s ease;
  }
  .l-gnav .list > li > a:hover:after, .l-gnav .list > li > span:hover:after {
    opacity: 1;
  }
  .l-gnav .list ul {
    opacity: 0;
    top: 44px;
    left: 50%;
    width: 260px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    transition: opacity .2s ease;
  }
  .l-gnav .list ul li + li {
    margin-top: 10px;
  }
  .l-gnav .list ul a {
    position: relative;
    padding: 10px 0;
    line-height: 1;
  }
  .l-gnav .list ul a:after {
    opacity: 0;
    display: block;
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #A2B6B9;
    transition: opacity .2s ease;
  }
  .l-gnav .list ul a:hover {
    opacity: 1;
  }
  .l-gnav .list ul a:hover:after {
    opacity: 1;
  }
}

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

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

.l-mv {
  position: relative;
  z-index: 1;
  padding-top: 15px;
}

.l-mv h2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: "Crimson Text", "游明朝体", YuMincho, "YuMincho M", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 8dvb;
}

.l-mv h2:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/circle_logo2_blue.svg) no-repeat center;
  background-size: 100%;
}

.l-mv h2 span {
  /* position: relative; */
  position: absolute;
  z-index: 1;
  /* bottom: -40px; */
  bottom: -20%;
}

.page-menu-wedding .l-mv h2:before {
  background: url(../images/common/circle_logo2_pink.svg) no-repeat center;
  background-size: 100%;
}

.l-mv p {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.l-mv p span {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.l-mv p span:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #A2B6B9;
}

.l-mv 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;
  width: 300px;
  margin: 15px auto 20px;
}

.l-mv li {
  width: auto;
}

.l-mv li a, .l-mv li span {
  display: inline-block;
  position: relative;
  margin: 0 10px;
  padding: 8px 0;
  color: #000000;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.l-mv li a:after, .l-mv li span:after {
  display: block;
  position: absolute;
  content: '';
  content: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #A2B6B9;
}

.page-menu-general .l-mv li.menu-general a {
  pointer-events: none;
}

.page-menu-general .l-mv li.menu-general a:after {
  content: '';
}

.page-menu-shichigosan .l-mv li.menu-shichigosan a {
  pointer-events: none;
}

.page-menu-shichigosan .l-mv li.menu-shichigosan a:after {
  content: '';
}

.page-menu-entrance .l-mv li.menu-entrance a {
  pointer-events: none;
}

.page-menu-entrance .l-mv li.menu-entrance a:after {
  content: '';
}

.page-menu-coming .l-mv li.menu-coming a {
  pointer-events: none;
}

.page-menu-coming .l-mv li.menu-coming a:after {
  content: '';
}

.page-menu-wedding .l-mv li.menu-wedding a {
  pointer-events: none;
}

.page-menu-wedding .l-mv li.menu-wedding a:after {
  content: '';
  background: #EA8080;
}

.page-menu-id .l-mv li.menu-id a {
  pointer-events: none;
}

.page-menu-id .l-mv li.menu-id a:after {
  content: '';
}

.l-mv figure {
  will-change: transform;
  position: static;
  left: 0;
  width: 100%;
}

.l-mv figure img {
  width: 100%;
}

.l-mv.is-fixed figure {
  position: fixed;
}

@media screen and (min-width: 1024px) {
  .l-mv {
    padding-top: 10px;
  }
  .l-mv h2 {
    width: 269px;
    height: 269px;
    font-size: 32px;
    font-size: 2rem;
    margin-bottom: 100px;
  }

  .l-mv h2 span{
    /* bottom: -50px; */
  }

  .l-mv p {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .l-mv ul {
    width: 750px;
    margin-top: 30px;
    margin-bottom: 25px;
  }
  .l-mv li a, .l-mv li span {
    padding-bottom: 10px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.l-conts {
  position: relative;
  z-index: 1;
  background: #FFF;
}

.l-pc-two-columns .main-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: 85%;
    margin-top: 0;
  }
  .l-pc-two-columns .sub-column {
    width: 15%;
  }
}

.l-map {
  position: relative;
  z-index: 1;
}

.l-map iframe {
  width: 100%;
  height: 215px;
}

@media screen and (min-width: 1024px) {
  .l-map iframe {
    height: 650px;
  }
}

/* ---------------------------
  フッター用
--------------------------- */
.l-footer {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #E2EDEF;
}

.l-footer .inner > div {
  width: 100%;
}

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

.l-footer .logo {
  margin-left: -6px;
}

.l-footer .logo img {
  height: 54px;
}

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

.l-footer .address {
  margin-top: 15px;
  line-height: 1.6785;
  letter-spacing: 0.03em;
}

.l-footer nav {
  margin-top: 40px;
}

.l-footer .list > li {
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.l-footer .list > li + li {
  margin-top: 25px;
}

.l-footer .list > li > a, .l-footer .list > li > span {
  font-family: "Crimson Text", "游明朝体", YuMincho, "YuMincho M", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.l-footer .list > li ul {
  margin-top: 20px;
}

.l-footer .list > li li a {
  display: inline-block;
  position: relative;
  padding-left: 60px;
}

.l-footer .list > li li a:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 30px;
  width: 0px;
  height: 0px;
  border-top: 2px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 2px solid #000000;
  border-left: 5px solid #000000;
  -webkit-transform: translate(0%, -3.5px);
  transform: translate(0%, -3.5px);
  transition: all .2s ease;
}

.l-footer .list > li li a:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 30px;
  height: 1px;
  background: #000000;
  background-size: 100%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  transition: all .2s ease;
}

.l-footer .btn {
  margin-top: 35px;
}

.l-footer .copyright {
  margin-top: 100px;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro';
  letter-spacing: 0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-footer {
    padding-top: 310px;
    padding-bottom: 150px;
  }
  .l-footer .inner {
    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-footer .inner > div {
    width: 50%;
  }
  .l-footer .inner > div:nth-child(2) {
    padding-left: 120px;
  }
  .l-footer .logo {
    margin-left: -5px;
  }
  .l-footer .logo img {
    height: 70px;
  }
  .l-footer .address {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .l-footer .btn {
    margin-top: 80px;
  }
  .l-footer nav {
    margin-top: 25px;
  }
  .l-footer .list > li {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .l-footer .list > li + li {
    margin-top: 30px;
  }
  .l-footer .list > li ul {
    margin-top: 25px;
    padding-left: 10px;
  }
  .l-footer .list > li li a {
    padding-left: 65px;
  }
  .l-footer .list > li li a:before {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    left: 40px;
    width: 0px;
    height: 0px;
    border-top: 2px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 2px solid #000000;
    border-left: 5px solid #000000;
    -webkit-transform: translate(0%, -3.5px);
    transform: translate(0%, -3.5px);
    transition: all .2s ease;
  }
  .l-footer .list > li li a:after {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 40px;
    height: 1px;
    background: #000000;
    background-size: 100%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    transition: all .2s ease;
  }
  .l-footer .copyright {
    margin-top: 380px;
    font-size: 16px;
    font-size: 1rem;
  }
}

/*------------------------------------------------------------
  compornent  [0] 共通パーツ用
------------------------------------------------------------*/
/*
  見出し
*/
.c-camera-ttl, .c-camera-ttl--thankyou {
  position: relative;
  margin-bottom: 55px;
  padding-top: 35px;
  padding-bottom: 90px;
  line-height: 1;
  text-align: center;
}

.l-main--costume .c-camera-ttl {
  display: none;
}

.c-camera-ttl:before, .c-camera-ttl--thankyou:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 47px;
  height: 27px;
  background: url(../images/common/icon_camera.svg) no-repeat center;
  background-size: 100%;
}

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

.c-camera-ttl .en, .c-camera-ttl--thankyou .en {
  display: block;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  font-family: "Crimson Text", "游明朝体", YuMincho, "YuMincho M", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.05em;
}

.c-camera-ttl .ja, .c-camera-ttl--thankyou .ja {
  display: block;
  margin-top: -2px;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 1024px) {
  .c-camera-ttl, .c-camera-ttl--thankyou {
    margin-bottom: 55px;
    padding-top: 35px;
    padding-bottom: 130px;
  }
  .c-camera-ttl:before, .c-camera-ttl--thankyou:before {
    width: 46px;
    height: 26px;
  }
  .c-camera-ttl:after, .c-camera-ttl--thankyou:after {
    height: 75px;
  }
  .c-camera-ttl .en, .c-camera-ttl--thankyou .en {
    margin-top: 3px;
    font-size: 32px;
    font-size: 2rem;
  }
  .c-camera-ttl .ja, .c-camera-ttl--thankyou .ja {
    margin-top: 4px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.c-camera-ttl--thankyou {
  margin-top: 45px;
  margin-bottom: 0;
  padding-top: 70px;
  padding-bottom: 60px;
}

.c-camera-ttl--thankyou:before {
  top: 5px;
}

.c-camera-ttl--thankyou:after {
  content: none;
}

.c-camera-ttl--thankyou .en {
  display: block;
  position: absolute;
  content: '';
  top: -50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.c-camera-ttl--thankyou .ja {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0;
}

.c-camera-ttl--thankyou .ja span {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.c-camera-ttl--thankyou .ja span:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #A2B6B9;
}

@media screen and (min-width: 1024px) {
  .c-camera-ttl--thankyou {
    padding-top: 65px;
    padding-bottom: 100px;
  }
  .c-camera-ttl--thankyou:before {
    top: 15px;
  }
  .c-camera-ttl--thankyou .ja {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-camera-ttl--thankyou .ja span {
    padding-bottom: 15px;
  }
}

.c-copy, .c-copy--blue {
  margin-bottom: 10px;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.75;
}

.c-copy .blue, .c-copy--blue .blue {
  color: #0068b3;
}

@media screen and (min-width: 1024px) {
  .c-copy, .c-copy--blue {
    margin-bottom: 20px;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.c-copy--blue {
  color: #0068b3;
}

.c-bold-ttl {
  margin-bottom: 40px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

@media screen and (min-width: 1024px) {
  .c-bold-ttl {
    margin-bottom: 50px;
  }
}

.c-lead {
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-lead {
    line-height: 2.777;
  }
}

/*
  ボタン
*/
.c-border-btn, .c-border-btn--wide, .c-border-btn--white, .c-border-btn--contact {
  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: 100%;
  max-width: 374px;
  min-height: 75px;
  margin: 0 auto;
  padding: 5px 15px;
  overflow: hidden;
  border: 1px solid #000000;
  color: #000000;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Crimson Text", "游明朝体", YuMincho, "YuMincho M", "游明朝", "Yu Mincho", "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
  text-decoration: none;
  transition: border .2s ease, background .2s ease, color .2s ease;
}

.c-border-btn:active, .c-border-btn--wide:active, .c-border-btn--white:active, .c-border-btn--contact:active, .c-border-btn:hover, .c-border-btn--wide:hover, .c-border-btn--white:hover, .c-border-btn--contact:hover {
  opacity: 1;
}

.c-border-btn:active:not(:disabled), .c-border-btn--wide:active:not(:disabled), .c-border-btn--white:active:not(:disabled), .c-border-btn--contact:active:not(:disabled), .c-border-btn:hover:not(:disabled), .c-border-btn--wide:hover:not(:disabled), .c-border-btn--white:hover:not(:disabled), .c-border-btn--contact:hover:not(:disabled) {
  opacity: 1;
  border-color: #FFF;
  background: #A2B6B9;
  color: #FFF;
}

.c-border-btn:active:not(:disabled):before, .c-border-btn--wide:active:not(:disabled):before, .c-border-btn--white:active:not(:disabled):before, .c-border-btn--contact:active:not(:disabled):before, .c-border-btn:hover:not(:disabled):before, .c-border-btn--wide:hover:not(:disabled):before, .c-border-btn--white:hover:not(:disabled):before, .c-border-btn--contact:hover:not(:disabled):before {
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}

.c-border-btn:active:not(:disabled) span:before, .c-border-btn--wide:active:not(:disabled) span:before, .c-border-btn--white:active:not(:disabled) span:before, .c-border-btn--contact:active:not(:disabled) span:before, .c-border-btn:hover:not(:disabled) span:before, .c-border-btn--wide:hover:not(:disabled) span:before, .c-border-btn--white:hover:not(:disabled) span:before, .c-border-btn--contact:hover:not(:disabled) span:before {
  border-bottom-color: #FFF;
  border-left-color: #FFF;
}

.c-border-btn:active:not(:disabled) span:after, .c-border-btn--wide:active:not(:disabled) span:after, .c-border-btn--white:active:not(:disabled) span:after, .c-border-btn--contact:active:not(:disabled) span:after, .c-border-btn:hover:not(:disabled) span:after, .c-border-btn--wide:hover:not(:disabled) span:after, .c-border-btn--white:hover:not(:disabled) span:after, .c-border-btn--contact:hover:not(:disabled) span:after {
  background: #FFF;
}

.c-border-btn span, .c-border-btn--wide span, .c-border-btn--white span, .c-border-btn--contact span {
  display: inline-block;
  position: relative;
  padding-right: 120px;
}

.c-border-btn span:before, .c-border-btn--wide span:before, .c-border-btn--white span:before, .c-border-btn--contact span:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  right: -2px;
  width: 0px;
  height: 0px;
  border-top: 2px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 2px solid #000000;
  border-left: 5px solid #000000;
  -webkit-transform: translate(0%, -3.5px);
  transform: translate(0%, -3.5px);
  transition: all .2s ease;
}

.c-border-btn span:after, .c-border-btn--wide span:after, .c-border-btn--white span:after, .c-border-btn--contact span:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  width: 70px;
  height: 1px;
  background: #000000;
  background-size: 100%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  transition: all .2s ease;
}

@media screen and (min-width: 1024px) {
  .c-border-btn, .c-border-btn--wide, .c-border-btn--white, .c-border-btn--contact {
    min-width: 390px;
    max-width: 500px;
    min-height: 90px;
    padding: 10px 20px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-border-btn span, .c-border-btn--wide span, .c-border-btn--white span, .c-border-btn--contact span {
    padding-right: 160px;
  }
  .c-border-btn span:after, .c-border-btn--wide span:after, .c-border-btn--white span:after, .c-border-btn--contact span:after {
    width: 120px;
  }
}

.c-border-btn--wide {
  width: 515px;
  max-width: 90%;
}

.c-border-btn--white {
  background: #FFF;
}

.c-border-btn--contact {
  margin-right: 0;
  margin-left: 0;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .c-border-btn--contact {
    min-width: 240px;
    min-height: 70px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
  }
  .c-border-btn--contact span {
    padding-right: 105px;
  }
  .c-border-btn--contact span:after {
    width: 90px;
  }
}

@media screen and (min-width: 1280px) {
  .c-border-btn--contact {
    min-width: 290px;
    min-height: 90px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-border-btn--contact span {
    padding-right: 125px;
  }
  .c-border-btn--contact span:after {
    width: 110px;
  }
}

@media screen and (min-width: 1500px) {
  .c-border-btn--contact {
    min-width: 360px;
  }
  .c-border-btn--contact span {
    padding-right: 145px;
  }
  .c-border-btn--contact span:after {
    width: 130px;
  }
}

@media all and (-ms-high-contrast: none) {
  .c-border-btn, .c-border-btn--wide, .c-border-btn--white, .c-border-btn--contact {
    max-width: 400px;
    height: 75px;
    min-height: none;
  }
}

@supports (-ms-ime-align: auto) {
  .c-border-btn, .c-border-btn--wide, .c-border-btn--white, .c-border-btn--contact {
    max-width: 400px;
  }
}

.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-blue-table {
  width: 100%;
}

.c-blue-table thead th {
  height: 32px;
  background: #A2B6B9;
  color: #FFF;
  font-size: 16px;
  font-size: 1rem;
}

.c-blue-table thead th + th:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 1px;
  height: 96%;
  background: #FFF;
}

.c-blue-table tbody th:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 96%;
  height: 1px;
  background: #A2B6B9;
}

.c-blue-table tr:last-child th:after, .c-blue-table tr:last-child td:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 100%;
  height: 1px;
  background: #A2B6B9;
}

.c-blue-table th, .c-blue-table td {
  position: relative;
  padding: 9px 1px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
}

.c-blue-table th span, .c-blue-table td span {
  font-size: 12px;
  font-size: 0.75rem;
}

.c-blue-table td:last-child:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 1px;
  height: 90%;
  background: #D7D9D9;
}

.c-blue-table .bg-blue {
  background: #F1F4F4;
}

.c-blue-table .bg-blue:last-child:before {
  background: #FFF;
}

@media screen and (min-width: 1024px) {
  .c-blue-table thead th {
    height: 100px;
    font-size: 30px;
    font-size: 1.875rem;
  }
  .c-blue-table thead th + th:before {
    height: 90%;
  }
  .c-blue-table th, .c-blue-table td {
    width: 25%;
    padding: 34px 5px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-blue-table th span, .c-blue-table td span {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-blue-table .pc-wid-50pct {
    width: 50%;
  }
}

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

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

.c-form > dl > dt, .c-form > dl > dd {
  padding: 5px 0;
  letter-spacing: 0;
  vertical-align: middle;
}

.c-form > dl > dt {
  position: relative;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

.c-form > dl > dd {
  font-weight: normal;
}

.c-form .note {
  margin-top: 15px;
  line-height: 1.5;
}

.c-form select[name="date1_month"],
.c-form select[name="date1_day"],
.c-form select[name="date2_month"],
.c-form select[name="date2_day"],
.c-form select[name="date3_month"],
.c-form select[name="date3_day"] {
  display: inline-block;
  width: 45px;
  margin: 0 10px;
}

.c-form select[name="date1_month"],
.c-form select[name="date2_month"],
.c-form select[name="date3_month"] {
  margin-left: 46px;
}

.c-form select[name="date1_time"],
.c-form select[name="date2_time"],
.c-form select[name="date3_time"] {
  display: inline-block;
  width: 70px;
  margin-left: 30px;
}

.c-form .wpcf7-not-valid-tip {
  margin-top: 10px;
}

@media screen and (min-width: 1024px) {
  .c-form {
    display: table;
    table-layout: fixed;
    margin-top: 30px;
  }
  .c-form > dl {
    display: table-row;
    padding: 5px 0;
  }
  .c-form > dl.email_confirm > dt, .c-form > dl.menu > dt {
    vertical-align: top;
  }
  .c-form > dl > dt, .c-form > dl > dd {
    padding: 25px 0;
    display: table-cell;
  }
  .c-form > dl > dt {
    width: 40%;
    padding-top: 27px;
    padding-right: 1%;
  }
  .c-form > dl > dd {
    width: 60%;
    padding-left: 1%;
  }
  .c-form .note {
    margin-top: 20px;
  }
  .c-form select[name="date1_month"],
  .c-form select[name="date1_day"],
  .c-form select[name="date2_month"],
  .c-form select[name="date2_day"],
  .c-form select[name="date3_month"],
  .c-form select[name="date3_day"] {
    width: 60px;
    margin: 0 15px;
  }
  .c-form select[name="date1_month"],
  .c-form select[name="date2_month"],
  .c-form select[name="date3_month"] {
    margin-left: 48px;
  }
  .c-form select[name="date1_time"],
  .c-form select[name="date2_time"],
  .c-form select[name="date3_time"] {
    width: 90px;
  }
}

@media screen and (min-width: 1024px) {
  .mw_wp_form_confirm .c-form > dl > dt {
    padding-top: 14px;
  }
}

.c-required {
  display: inline-block;
  margin-left: 18px;
  padding: 4px 6px;
  background: #EA8080;
  color: #FFF;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  vertical-align: 1px;
}

@media screen and (min-width: 1024px) {
  .c-required {
    padding: 5px 10px;
    vertical-align: 2px;
  }
}

/*
  バナー
*/
/*
  その他
*/
.c-red-border-notes {
  position: relative;
  padding: 25px 0;
  border-top: 1px solid #EA8080;
  border-bottom: 1px solid #EA8080;
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-red-border-notes {
    padding: 40px 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.c-services, .c-services--blue, .c-services--red {
  margin-top: 70px;
  text-align: center;
}

.c-services .ttl, .c-services--blue .ttl, .c-services--red .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;
  width: 250px;
  height: 24px;
  margin: 0 auto 25px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  line-height: 1;
}

.c-services .ttl:before, .c-services--blue .ttl:before, .c-services--red .ttl:before {
  display: block;
  position: absolute;
  content: '';
  top: -5%;
  left: -5px;
  width: 0;
  height: 110%;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 5px solid #000000;
}

.c-services .ttl:after, .c-services--blue .ttl:after, .c-services--red .ttl:after {
  display: block;
  position: absolute;
  content: '';
  top: -5%;
  right: -5px;
  width: 0;
  height: 110%;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #000000;
}

.c-services .ttl span:before, .c-services--blue .ttl span:before, .c-services--red .ttl span:before {
  display: block;
  position: absolute;
  content: '';
  top: -1.5%;
  left: -4px;
  width: 0;
  height: 103%;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 5px solid #FFF;
}

.c-services .ttl span:after, .c-services--blue .ttl span:after, .c-services--red .ttl span:after {
  display: block;
  position: absolute;
  content: '';
  top: -1.5%;
  right: -4px;
  z-index: 1;
  width: 0;
  height: 103%;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #FFF;
}

.c-services ul, .c-services--blue ul, .c-services--red 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;
  max-width: 335px;
  margin: 0 auto;
}

.c-services li, .c-services--blue li, .c-services--red li {
  width: 50px;
}

.c-services div, .c-services--blue div, .c-services--red div {
  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: 51px;
}

.c-services img, .c-services--blue img, .c-services--red img {
  max-width: 47px;
  max-height: 51px;
}

.c-services figcaption, .c-services--blue figcaption, .c-services--red figcaption {
  display: block;
  margin-top: 5px;
  margin-right: -20px;
  margin-left: -20px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 1024px) {
  .c-services .ttl, .c-services--blue .ttl, .c-services--red .ttl {
    width: 484px;
    height: 50px;
    margin-bottom: 40px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-services .ttl:before, .c-services--blue .ttl:before, .c-services--red .ttl:before {
    top: -2%;
    left: -10px;
    width: 0;
    height: 104%;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid #000000;
  }
  .c-services .ttl:after, .c-services--blue .ttl:after, .c-services--red .ttl:after {
    display: block;
    position: absolute;
    content: '';
    top: -2%;
    right: -10px;
    width: 0;
    height: 104%;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #000000;
  }
  .c-services .ttl span:before, .c-services--blue .ttl span:before, .c-services--red .ttl span:before {
    display: block;
    position: absolute;
    content: '';
    top: -1%;
    left: -9px;
    width: 0;
    height: 102%;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid #FFF;
  }
  .c-services .ttl span:after, .c-services--blue .ttl span:after, .c-services--red .ttl span:after {
    display: block;
    position: absolute;
    content: '';
    top: -1%;
    right: -9px;
    z-index: 1;
    width: 0;
    height: 102%;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #FFF;
  }
  .c-services ul, .c-services--blue ul, .c-services--red ul {
    max-width: 724px;
  }
  .c-services li, .c-services--blue li, .c-services--red li {
    width: 103px;
  }
  .c-services div, .c-services--blue div, .c-services--red div {
    height: 110px;
  }
  .c-services img, .c-services--blue img, .c-services--red img {
    max-width: 103px;
    max-height: 110px;
  }
  .c-services figcaption, .c-services--blue figcaption, .c-services--red figcaption {
    margin-top: 10px;
    margin-right: -20px;
    margin-left: -20px;
    font-size: 16px;
    font-size: 1rem;
  }
}

.c-services--blue .ttl {
  border-color: #8B9C9F;
  color: #8B9C9F;
}

.c-services--blue .ttl:before {
  border-right-color: #8B9C9F;
}

.c-services--blue .ttl:after {
  border-left-color: #8B9C9F;
}

.c-services--red .ttl {
  border-color: #EA8080;
  color: #EA8080;
}

.c-services--red .ttl:before {
  border-right-color: #EA8080;
}

.c-services--red .ttl:after {
  border-left-color: #EA8080;
}

.c-price, .c-price--blue, .c-price--red {
  background: #e6e6e6;
}

.c-price .formula, .c-price--blue .formula, .c-price--red .formula {
  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-price .formula div, .c-price--blue .formula div, .c-price--red .formula div {
  position: relative;
  width: 31%;
  padding: 10px 0px;
  border: 1px solid #707070;
  border-radius: 10px;
  background: #FFF;
  text-align: center;
}

.c-price .formula div:nth-child(1) .ttl + p, .c-price--blue .formula div:nth-child(1) .ttl + p, .c-price--red .formula div:nth-child(1) .ttl + p {
  margin-top: 10px;
}

.c-price .formula div:nth-child(2), .c-price--blue .formula div:nth-child(2), .c-price--red .formula div:nth-child(2) {
  width: 35%;
}

.c-price .formula div:nth-child(2):before, .c-price--blue .formula div:nth-child(2):before, .c-price--red .formula div:nth-child(2):before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: -11%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 1px;
  background: #707070;
}

.c-price .formula div:nth-child(2):after, .c-price--blue .formula div:nth-child(2):after, .c-price--red .formula div:nth-child(2):after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: -11%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1px;
  height: 12px;
  background: #707070;
}

.c-price .formula div:last-child, .c-price--blue .formula div:last-child, .c-price--red .formula div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
  width: 20%;
  border-color: #EA8080;
  color: #EA8080;
}

.c-price .formula div:last-child:before, .c-price--blue .formula div:last-child:before, .c-price--red .formula div:last-child:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: -18%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 1px;
  margin-top: -4px;
  background: #707070;
}

.c-price .formula div:last-child:after, .c-price--blue .formula div:last-child:after, .c-price--red .formula div:last-child:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: -18%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 1px;
  margin-top: 4px;
  background: #707070;
}

.c-price .formula p, .c-price--blue .formula p, .c-price--red .formula p {
  margin-top: 5px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25;
}

.c-price .formula .ttl, .c-price--blue .formula .ttl, .c-price--red .formula .ttl {
  margin-top: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.c-price .print, .c-price--blue .print, .c-price--red .print {
  margin-top: 55px;
  padding-bottom: 55px;
  border-top: 1px solid #555555;
  border-bottom: 1px solid #555555;
}

.c-price h4, .c-price--blue h4, .c-price--red h4 {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 80px;
  margin: 0 auto 40px;
  padding-top: 41px;
  color: #FFF;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}

.c-price h4:before, .c-price--blue h4:before, .c-price--red h4:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 0;
  height: 0;
  border-top: 67px solid #555555;
  border-right: 70px solid #555555;
  border-left: 70px solid #555555;
  border-bottom: 13px solid transparent;
}

.c-price h4:after, .c-price--blue h4:after, .c-price--red h4:after {
  display: block;
  position: absolute;
  content: '';
  top: 10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 24px;
  height: 24px;
  background: url(../images/common/icon_printer_white.svg) no-repeat center;
  background-size: 100%;
}

.c-price .list li, .c-price--blue .list li, .c-price--red .list li {
  position: relative;
  border-radius: 10px;
  background: #FFF;
}

.c-price .list li + li, .c-price--blue .list li + li, .c-price--red .list li + li {
  margin-top: 20px;
}

.c-price .list div, .c-price--blue .list div, .c-price--red .list div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  max-width: 400px;
  height: 76px;
  margin: 0 auto;
}

.c-price .list p, .c-price--blue .list p, .c-price--red .list p {
  margin-top: 0;
}

.c-price .list .ttl, .c-price--blue .list .ttl, .c-price--red .list .ttl {
  position: relative;
  width: 80px;
  margin-left: 40px;
  text-align: center;
}

.c-price .list .ttl.paper:before, .c-price--blue .list .ttl.paper:before, .c-price--red .list .ttl.paper:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: -25px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 21px;
  height: 27px;
  background: url(../images/common/icon_paper_blue.svg) no-repeat center;
  background-size: 100%;
}

.c-price .list .ttl.data:before, .c-price--blue .list .ttl.data:before, .c-price--red .list .ttl.data:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: -27px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 25px;
  height: 25px;
  background: url(../images/common/icon_data_blue.svg) no-repeat center;
  background-size: 100%;
}

.c-price .list .price:before, .c-price--blue .list .price:before, .c-price--red .list .price:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 36%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 7%;
  height: 1px;
  background: #707070;
}

.c-price .list .price span, .c-price--blue .list .price span, .c-price--red .list .price span {
  display: inline-block;
  margin-right: 5px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  font-family: 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN';
  letter-spacing: 0.03em;
}

.c-price .notes, .c-price--blue .notes, .c-price--red .notes {
  position: relative;
  margin-top: 40px;
  padding: 13px 20px;
  border: 6px double #FFF;
}

@media screen and (max-width: 374px) {
  .c-price .list li, .c-price--blue .list li, .c-price--red .list li {
    margin-right: -15px;
    margin-left: -15px;
  }
  .c-price .list .ttl, .c-price--blue .list .ttl, .c-price--red .list .ttl {
    margin-left: 35px;
  }
  .c-price .list .price span, .c-price--blue .list .price span, .c-price--red .list .price span {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-price .formula, .c-price--blue .formula, .c-price--red .formula {
    max-width: 922px;
    margin: 0 auto;
  }
  .c-price .formula div, .c-price--blue .formula div, .c-price--red .formula div {
    width: 348px;
    height: 114px;
    padding: 17px 10px;
  }
  .c-price .formula div:nth-child(1) .ttl + p, .c-price--blue .formula div:nth-child(1) .ttl + p, .c-price--red .formula div:nth-child(1) .ttl + p {
    margin-top: 16px;
  }
  .c-price .formula div:nth-child(2):before, .c-price--blue .formula div:nth-child(2):before, .c-price--red .formula div:nth-child(2):before {
    left: -11%;
    width: 28px;
  }
  .c-price .formula div:nth-child(2):after, .c-price--blue .formula div:nth-child(2):after, .c-price--red .formula div:nth-child(2):after {
    left: -11%;
    height: 28px;
  }
  .c-price .formula div:last-child, .c-price--blue .formula div:last-child, .c-price--red .formula div:last-child {
    width: 114px;
  }
  .c-price .formula div:last-child:before, .c-price--blue .formula div:last-child:before, .c-price--red .formula div:last-child:before {
    left: -30%;
    width: 28px;
    margin-top: -4px;
  }
  .c-price .formula div:last-child:after, .c-price--blue .formula div:last-child:after, .c-price--red .formula div:last-child:after {
    left: -30%;
    width: 28px;
    margin-top: 4px;
  }
  .c-price .formula p, .c-price--blue .formula p, .c-price--red .formula p {
    margin-top: 8px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.375;
  }
  .c-price .formula .ttl, .c-price--blue .formula .ttl, .c-price--red .formula .ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-price .print, .c-price--blue .print, .c-price--red .print {
    margin-top: 80px;
    padding-bottom: 80px;
  }
  .c-price h4, .c-price--blue h4, .c-price--red h4 {
    width: 230px;
    height: 130px;
    margin-bottom: 65px;
    padding-top: 67px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-price h4:before, .c-price--blue h4:before, .c-price--red h4:before {
    border-top: 110px solid #555555;
    border-right: 115px solid #555555;
    border-left: 115px solid #555555;
    border-bottom: 20px solid transparent;
  }
  .c-price h4:after, .c-price--blue h4:after, .c-price--red h4:after {
    top: 17px;
    width: 38px;
    height: 38px;
  }
  .c-price .list div, .c-price--blue .list div, .c-price--red .list div {
    max-width: 100%;
    height: 110px;
    padding: 0 120px 0 90px;
  }
  .c-price .list .ttl, .c-price--blue .list .ttl, .c-price--red .list .ttl {
    width: 188px;
    margin-left: 60px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-price .list .ttl.paper:before, .c-price--blue .list .ttl.paper:before, .c-price--red .list .ttl.paper:before {
    left: -50px;
    width: 30px;
    height: 38px;
  }
  .c-price .list .ttl.data:before, .c-price--blue .list .ttl.data:before, .c-price--red .list .ttl.data:before {
    left: -54px;
    width: 38px;
    height: 38px;
  }
  .c-price .list .price, .c-price--blue .list .price, .c-price--red .list .price {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-price .list .price:before, .c-price--blue .list .price:before, .c-price--red .list .price:before {
    left: 36.5%;
    width: 20%;
  }
  .c-price .list .price span, .c-price--blue .list .price span, .c-price--red .list .price span {
    margin-right: 10px;
    font-size: 46px;
    font-size: 2.875rem;
    letter-spacing: 0.1em;
  }
  .c-price .notes, .c-price--blue .notes, .c-price--red .notes {
    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: 230px;
    margin-top: 70px;
  }
}

.c-price--blue {
  background: #E2EDEF;
}

.c-price--red {
  background: #EBDEDE;
}

.c-price--red .list .ttl.paper:before {
  background-image: url(../images/common/icon_paper_red.svg);
}

.c-price--red .list .ttl.data:before {
  background-image: url(../images/common/icon_data_red.svg);
}

/*------------------------------------------------------------
  index  TOP?ک`???
------------------------------------------------------------*/
.page-index .p-mv {
  position: relative;
  overflow: hidden;
  width: 100vw;
}

.page-index .p-mv .logo {
  display: block;
  position: absolute;
  content: '';
  display: none;
  top: calc(50% + 55px);
  left: 50%;
  z-index: 10;
  width: 200px;
  height: 200px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-index .p-mv .swiper-container {
  position: fixed;
  width: 100%;
  height: 100%;
}

.page-index .p-mv .swiper-slide {
  overflow: hidden;
}

.page-index .p-mv .swiper-slide img {
  display: block;
  position: absolute;
  content: '';
  content: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  max-width: none;
  height: 100%;
}

.page-index .p-mv .swiper-slide figure{
  overflow: hidden;
}
.page-index .p-mv .swiper-slide figure img.sp{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-index .p-mv .swiper-slide img.mv_02_sp {
  width: 100%;
  height: auto;
}

@media (orientation: landscape) {
  .page-index .p-mv .logo {
    top: calc(50% + 35px);
    width: 140px;
    height: 140px;
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-mv {
    height: 100vh !important;
  }
  .page-index .p-mv .logo {
    display: block;
    width: 268px;
    height: 268px;
  }
  .page-index .p-mv .swiper-container {
    height: 100vh;
  }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
  .page-index .p-mv {
    height: calc(55vh - 110px) !important;
  }
}

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

@media screen and (min-width: 1280px) {
  .page-index .p-mv .logo {
    top: calc(50% + 87px);
  }
}

@media screen and (min-width: 1280px) and (orientation: portrait) {
  .page-index .p-mv {
    height: calc(40vh - 175px) !important;
  }
}

.page-index .p-concept {
  padding-bottom: 250px;
  background: url(../images/index/concept_bg.jpg) no-repeat center bottom;
  background-size: 100%;
}

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

@media screen and (min-width: 1024px) {
  .page-index .p-concept {
    padding-bottom: 290px;
  }
}

.page-index .p-news {
  background: #E2EDEF;
}

.page-index .p-news .news-list > li {
  padding: 30px 0 40px;
  border-bottom: 1px solid #FFF;
  text-align: center;
}

.page-index .p-news .news-list > li:first-child {
  border-top: 1px solid #FFF;
}

.page-index .p-news .date {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  line-height: 1;
}

.page-index .p-news .date:after {
  display: block;
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000000;
}

.page-index .p-news .ttl {
  display: inline-block;
  margin-top: 11px;
}

.page-index .p-news a.ttl {
  color: #000000;
  font-weight: 800;
  text-decoration: none;
}

.page-index .p-news .text a {
  color: #000000;
}

@media screen and (min-width: 1024px) {
  .page-index .p-news .news-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: 55px 0;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .page-index .p-news .news-list > li > div:nth-child(1) {
    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: 24%;
  }
  .page-index .p-news .news-list > li > div:nth-child(2) {
    width: 76%;
    padding-right: 6%;
    text-align: left;
  }
  .page-index .p-news .date:after {
    content: none;
  }
  .page-index .p-news .ttl {
    margin-top: 0;
  }
}

.page-index .p-menu {
  position: relative;
}

.page-index .p-menu:before {
  display: block;
  position: absolute;
  content: '';
  top: 28px;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 262px;
  height: 107px;
  margin-left: -100px;
  background: url(../images/common/deco_tile.png) no-repeat center;
  background-size: 100%;
}

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

.page-index .p-menu ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(50% - 2.5px) calc(50% - 2.5px);
  grid-template-columns: calc(50% - 2.5px) calc(50% - 2.5px);
  -ms-grid-rows: auto auto;
  grid-gap: 5px 5px;
  position: relative;
}

.page-index .p-menu ul:before {
  display: block;
  position: absolute;
  content: '';
  top: -2px;
  left: 0%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 262px;
  height: 107px;
  margin-left: 10px;
  background: url(../images/common/deco_tile.png) no-repeat center;
  background-size: 100%;
}

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

.page-index .p-menu ul:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -183px;
  left: 100%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 262px;
  height: 107px;
  margin-left: -110px;
  background: url(../images/common/deco_tile.png) no-repeat center;
  background-size: 100%;
}

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

.page-index .p-menu .item1 {
  grid-row: 1 / 3;
  grid-column: 1;
}

.page-index .p-menu .item5 {
  grid-row: 3 / 5;
  grid-column: 2;
}

.page-index .p-menu .item1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
}

.page-index .p-menu .item2 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.page-index .p-menu .item3 {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

.page-index .p-menu .item4 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.page-index .p-menu .item5 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
}

.page-index .p-menu .item6 {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}

.page-index .p-menu a:hover, .page-index .p-menu a:active {
  opacity: 1;
}

.page-index .p-menu a:hover figure:before, .page-index .p-menu a:active figure:before {
  opacity: 0;
}

.page-index .p-menu a:hover figure > img, .page-index .p-menu a:active figure > img {
  transform: scale(1.2);
}

.page-index .p-menu a:hover span.ja, .page-index .p-menu a:active span.ja {
  opacity: 0;
}

.page-index .p-menu a:hover span.en, .page-index .p-menu a:active span.en {
  opacity: 1;
}

.page-index .p-menu figure {
  display: block;
  position: relative;
  overflow: hidden;
}

.page-index .p-menu figure:before {
  opacity: 1;
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(144, 144, 144, 0.5);
  transition: opacity .2s ease;
}

.page-index .p-menu figure > img {
  transition: transform .2s ease;
}

.page-index .p-menu figcaption {
  line-height: 1;
  text-align: center;
}

.page-index .p-menu figcaption span {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}

.page-index .p-menu figcaption .ja {
  opacity: 1;
  color: #FFF;
}

.page-index .p-menu figcaption .en {
  opacity: 0;
}

.page-index .p-menu figcaption .en img {
  height: 36px;
}

@media screen and (min-width: 768px) {
  .page-index .p-menu:before {
    width: 400px;
    height: 145px;
  }
  .page-index .p-menu ul:before {
    width: 400px;
    height: 145px;
  }
  .page-index .p-menu ul:after {
    width: 400px;
    height: 145px;
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-menu:before {
    top: 47px;
    width: 685px;
    height: 279px;
  }
  .page-index .p-menu ul {
    grid-template-columns: calc(50% - 5px) calc(50% - 5px);
    grid-gap: 10px 10px;
  }
  .page-index .p-menu ul:before {
    top: 355px;
    left: 50%;
    width: 620px;
    height: 253px;
    margin-left: -770px;
  }
  .page-index .p-menu ul:after {
    bottom: -530px;
    left: 50%;
    width: 620px;
    height: 253px;
    margin-left: 500px;
  }
  .page-index .p-menu figcaption .ja {
    font-size: 43px;
    font-size: 2.6875rem;
    letter-spacing: 0.03em;
  }
  .page-index .p-menu figcaption .en img {
    height: auto;
  }
}

@media screen and (min-width: 1920px) {
  .page-index .p-menu:before {
    left: 50%;
    margin-left: 750px;
  }
}

.page-index .p-instagram {
  position: relative;
  padding-bottom: 260px;
}

.page-index .p-instagram:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -5px;
  left: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 339px;
  height: 138px;
  margin-left: 65px;
  background: url(../images/common/deco_tile.png) no-repeat center;
  background-size: 100%;
}

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

.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: calc(33.333% - 5px);
}

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

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

.page-index .p-instagram li a {
  overflow: hidden;
  display: block;
  position: relative;
  padding-top: 100%;
}

.page-index .p-instagram li a img {
  position: absolute;
  top: 0;
}

.page-index .p-instagram .btn {
  margin-top: 35px;
}

@media screen and (min-width: 768px) {
  .page-index .p-instagram:after {
    width: 400px;
    height: 145px;
  }
}

@media screen and (min-width: 1024px) {
  .page-index .p-instagram {
    padding-bottom: 460px;
  }
  .page-index .p-instagram:after {
    bottom: 180px;
    width: 685px;
    height: 279px;
  }
  .page-index .p-instagram li {
    width: calc(33.333% - 14px);
  }
  .page-index .p-instagram li + li {
    margin-top: 21px;
  }
  .page-index .p-instagram .btn {
    margin-top: 90px;
  }
}

@media screen and (min-width: 1920px) {
  .page-index .p-instagram:after {
    left: 50%;
    margin-left: -700px;
  }
}

/*------------------------------------------------------------
  concept  コンセプトページ用
------------------------------------------------------------*/
.page-concept .p-intro {
  position: relative;
}

.page-concept .p-intro:before {
  display: block;
  position: absolute;
  content: '';
  top: 34px;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 262px;
  height: 107px;
  margin-left: -60px;
  background: url(../images/common/deco_tile.png) no-repeat center;
  background-size: 100%;
}

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

.page-concept .p-intro .img {
  display: block;
  position: relative;
  margin-top: 190px;
  margin-right: -20px;
  margin-left: -20px;
  text-align: center;
}

.page-concept .p-intro .img:before {
  display: block;
  position: absolute;
  content: '';
  top: -80px;
  left: 0%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 262px;
  height: 107px;
  margin-left: 50px;
  background: url(../images/common/deco_tile.png) no-repeat center;
  background-size: 100%;
}

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

.page-concept .p-intro .img:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -190px;
  left: 100%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 280px;
  height: 114px;
  margin-left: -115px;
  background: url(../images/common/deco_tile.png) no-repeat center;
  background-size: 100%;
}

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

@media screen and (min-width: 768px) {
  .page-concept .p-intro:before {
    width: 400px;
    height: 145px;
  }
  .page-concept .p-intro .img:before {
    width: 400px;
    height: 145px;
  }
  .page-concept .p-intro .img:after {
    width: 400px;
    height: 145px;
  }
}

@media screen and (min-width: 1024px) {
  .page-concept .p-intro {
    padding-top: 190px;
    padding-bottom: 0;
  }
  .page-concept .p-intro:before {
    top: 140px;
    width: 685px;
    height: 279px;
  }
  .page-concept .p-intro .img {
    margin-top: 120px;
    margin-right: 0;
    margin-left: 0;
  }
  .page-concept .p-intro .img:before {
    top: 230px;
    left: 50%;
    width: 620px;
    height: 253px;
    margin-left: -720px;
  }
  .page-concept .p-intro .img:after {
    bottom: -380px;
    left: 50%;
    width: 620px;
    height: 253px;
    margin-left: 540px;
  }
}

@media screen and (min-width: 1920px) {
  .page-concept .p-intro:before {
    left: 50%;
    margin-left: 795px;
  }
}

.page-concept .p-point .block {
  width: 335px;
  max-width: 100%;
  margin: 0 auto;
}

.page-concept .p-point .block + .block {
  margin-top: 50px;
}

.page-concept .p-point figure {
  width: 295px;
  position: relative;
}

.page-concept .p-point figure:after {
  display: block;
  position: absolute;
  content: '';
  top: 70px;
  left: 70px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #E2EDEF;
}

.page-concept .p-point .block2 {
  text-align: right;
}

.page-concept .p-point .block2 figure {
  display: inline-block;
}

.page-concept .p-point .block2 figure:after {
  left: -70px;
}

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

.page-concept .p-point .block2 p, .page-concept .p-point .block3 p {
  margin-top: 80px;
}

.page-concept .p-point .copy {
  margin-top: 20px;
  margin-bottom: 30px;
  color: #A2B6B9;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.166;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1024px) {
  .page-concept .p-point .block {
    position: relative;
    width: auto;
    height: 590px;
  }
  .page-concept .p-point .block + .block {
    margin-top: 160px;
  }
  .page-concept .p-point .block:after {
    display: block;
    position: absolute;
    content: '';
    top: 15%;
    left: 100%;
    width: 300%;
    height: 70%;
    background: #E2EDEF;
  }
  .page-concept .p-point .block1 {
    height: 557px;
    background: url(../images/concept/point_img_01_pc.jpg) no-repeat right center;
    background-size: auto 100%;
  }
}

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

@media screen and (min-width: 1024px) {
  .page-concept .p-point .block2 {
    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;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    background: url(../images/concept/point_img_02_pc.jpg) no-repeat left center;
    background-size: auto 100%;
  }
}

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

@media screen and (min-width: 1024px) {
  .page-concept .p-point .block2:after {
    right: 100%;
    left: auto;
  }
  .page-concept .p-point .block2 p {
    margin-top: 0;
  }
  .page-concept .p-point .block3 {
    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;
    background: url(../images/concept/point_img_03_pc.jpg) no-repeat right center;
    background-size: auto 100%;
  }
}

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

@media screen and (min-width: 1024px) {
  .page-concept .p-point .block3 p {
    max-width: 392px;
    margin-top: 0;
  }
  .page-concept .p-point p {
    max-width: 388px;
    margin-top: 0;
    letter-spacing: 0.2em;
    line-height: 1.722;
    text-align: left;
  }
  .page-concept .p-point .copy {
    margin-bottom: 40px;
    padding-top: 40px;
    font-size: 43px;
    font-size: 2.6875rem;
    line-height: 1.166;
  }
}

/*------------------------------------------------------------
  menu  フォトメニューページ用
------------------------------------------------------------*/
.page-menu-general .p-menu,
.page-menu-shichigosan .p-menu,
.page-menu-entrance .p-menu,
.page-menu-coming .p-menu,
.page-menu-id .p-menu {
  padding-top: 25px;
}

.page-menu-general .p-menu .banners,
.page-menu-shichigosan .p-menu .banners,
.page-menu-entrance .p-menu .banners,
.page-menu-coming .p-menu .banners,
.page-menu-id .p-menu .banners {
  margin-top: 50px;
}

.page-menu-general .p-menu .banners li + li,
.page-menu-shichigosan .p-menu .banners li + li,
.page-menu-entrance .p-menu .banners li + li,
.page-menu-coming .p-menu .banners li + li,
.page-menu-id .p-menu .banners li + li {
  margin-top: 20px;
}

.page-menu-general .p-menu .banners img,
.page-menu-shichigosan .p-menu .banners img,
.page-menu-entrance .p-menu .banners img,
.page-menu-coming .p-menu .banners img,
.page-menu-id .p-menu .banners img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .page-menu-general .p-menu,
  .page-menu-shichigosan .p-menu,
  .page-menu-entrance .p-menu,
  .page-menu-coming .p-menu,
  .page-menu-id .p-menu {
    padding-top: 50px;
  }
  .page-menu-general .p-menu .banners,
  .page-menu-shichigosan .p-menu .banners,
  .page-menu-entrance .p-menu .banners,
  .page-menu-coming .p-menu .banners,
  .page-menu-id .p-menu .banners {
    margin-top: 60px;
  }
  .page-menu-general .p-menu .banners li + li,
  .page-menu-shichigosan .p-menu .banners li + li,
  .page-menu-entrance .p-menu .banners li + li,
  .page-menu-coming .p-menu .banners li + li,
  .page-menu-id .p-menu .banners li + li {
    margin-top: 60px;
  }
}

.page-menu-id .p-id-photo h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.page-menu-id .p-id-photo h3 span {
  display: inline-block;
  margin-left: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
}

.page-menu-id .p-id-photo .sub-ttl {
  margin-top: -15px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  text-align: center;
}

.page-menu-id .p-id-photo .notes {
  margin-top: 20px;
  letter-spacing: 0.1em;
}

.page-menu-id .p-id-photo .notes .red-box {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #EA8080;
  color: #EA8080;
}

@media screen and (min-width: 1024px) {
  .page-menu-id .p-id-photo h3 {
    margin-bottom: 30px;
    font-size: 30px;
    font-size: 1.875rem;
  }
  .page-menu-id .p-id-photo h3 span {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .page-menu-id .p-id-photo .sub-ttl {
    margin-top: -20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .page-menu-id .p-id-photo .notes {
    margin-top: 40px;
    font-size: 20px;
    font-size: 1.25rem;
    text-align: center;
  }
  .page-menu-id .p-id-photo .notes .red-box {
    margin-top: 30px;
    padding: 20px;
  }
}

.page-menu-wedding .deco {
  display: block;
  position: absolute;
  content: '';
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.page-menu-wedding .deco9 {
  top: -8%;
  width: 76px;
  margin-left: 40%;
}

.page-menu-wedding .deco10 {
  top: 97%;
  width: 29px;
  margin-left: -35%;
}

.page-menu-wedding .deco11 {
  top: -20%;
  left: initial;
  right: -13px;
  width: 57px;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}

.page-menu-wedding .deco12 {
  top: 60%;
  left: -13px;
  width: 45px;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}

@media screen and (min-width: 1024px) {
  .page-menu-wedding .deco9 {
    top: -14%;
    width: 152px;
    margin-left: 47%;
  }
  .page-menu-wedding .deco10 {
    top: 91%;
    width: 58px;
    margin-left: -36%;
  }
  .page-menu-wedding .deco11 {
    top: -18%;
    right: -16px;
    width: 114px;
  }
  .page-menu-wedding .deco12 {
    top: 39%;
    left: -25px;
    width: 90px;
  }
}

.page-menu-wedding .p-plan {
  position: relative;
}

.page-menu-wedding .p-plan + .p-plan {
  padding-top: 70px;
}

.page-menu-wedding .p-plan .img-wrap {
  position: relative;
  margin-right: -20px;
  margin-left: -20px;
}

.page-menu-wedding .p-plan figure img {
  width: 100%;
}

.page-menu-wedding .p-plan .text-wrap {
  position: relative;
  margin-top: 45px;
  text-align: center;
}

.page-menu-wedding .p-plan .num img {
  height: 41px;
}

.page-menu-wedding .p-plan .ttl {
  display: block;
  margin: 20px -20px 10px;
  color: #EA8080;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.page-menu-wedding .p-plan .price span {
  color: #EA8080;
}

.page-menu-wedding .p-plan .price .num {
  font-size: 20px;
  font-size: 1.25rem;
}

.page-menu-wedding .p-plan .contents-ttl {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #EA8080;
  color: #EA8080;
}

.page-menu-wedding .p-plan .text {
  line-height: 1.125;
}

.page-menu-wedding .p-plan:nth-child(2n) .ttl {
  color: #A2B6B9;
}

.page-menu-wedding .p-plan:nth-child(2n) .price span {
  color: #A2B6B9;
}

.page-menu-wedding .p-plan:nth-child(2n) .contents-ttl {
  border-color: #A2B6B9;
  color: #A2B6B9;
}

.page-menu-wedding .p-plan.plan1 .img-wrap:before {
  display: block;
  position: absolute;
  content: '';
  top: -79px;
  left: 0;
  z-index: -1;
  width: 45%;
  height: 80px;
  background: #C7D3D5;
}

.page-menu-wedding .p-plan.plan1 .img-wrap:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -59px;
  right: 0;
  z-index: -1;
  width: 57%;
  height: 60px;
  background: #F2EBEB;
}

.page-menu-wedding .p-plan.plan2 .img-wrap:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -264px;
  left: 0;
  z-index: -1;
  width: 43%;
  height: 265px;
  background: #C7D3D5;
}

.page-menu-wedding .p-plan.plan3 .img-wrap:before {
  display: block;
  position: absolute;
  content: '';
  top: 55px;
  left: 0;
  z-index: -1;
  width: 68%;
  height: 330px;
  background: #F2EBEB;
}

.page-menu-wedding .p-plan.plan3 .img-wrap:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -144px;
  right: 0;
  z-index: -1;
  width: 23%;
  height: 145px;
  background: #C7D3D5;
}

.page-menu-wedding .p-plan .deco1 {
  top: 5%;
  width: 27px;
  margin-left: 35%;
}

.page-menu-wedding .p-plan .deco2 {
  top: 14%;
  width: 34px;
  margin-left: -20%;
}

.page-menu-wedding .p-plan .deco3 {
  top: 91%;
  width: 37px;
  margin-left: -42%;
}

.page-menu-wedding .p-plan .deco4 {
  top: 51%;
  width: 37px;
  margin-left: 32%;
}

.page-menu-wedding .p-plan .deco5 {
  top: 96%;
  width: 46px;
  margin-left: -30%;
}

.page-menu-wedding .p-plan .deco6 {
  top: 105%;
  width: 24px;
  margin-left: 42%;
}

.page-menu-wedding .p-plan .deco7 {
  top: 82%;
  width: 40px;
  margin-left: 38%;
}

.page-menu-wedding .p-plan .deco8 {
  top: 100%;
  width: 27px;
  margin-left: -37%;
}

@media screen and (min-width: 1024px) {
  .page-menu-wedding .p-plan + .p-plan {
    padding-top: 90px;
  }
  .page-menu-wedding .p-plan.plan2 .img-wrap {
    text-align: right;
  }
  .page-menu-wedding .p-plan.plan2 .text-wrap {
    margin-top: 110px;
  }
  .page-menu-wedding .p-plan.plan3 .text-wrap {
    margin-top: 20px;
  }
  .page-menu-wedding .p-plan .img-wrap {
    margin-right: 0;
    margin-left: 0;
  }
  .page-menu-wedding .p-plan figure img {
    width: auto;
  }
  .page-menu-wedding .p-plan .text-wrap {
    margin-top: 10px;
  }
  .page-menu-wedding .p-plan .num img {
    height: 75px;
  }
  .page-menu-wedding .p-plan .ttl {
    margin: 50px 0 20px;
    font-size: 43px;
    font-size: 2.6875rem;
    letter-spacing: 0.025em;
  }
  .page-menu-wedding .p-plan .price {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .page-menu-wedding .p-plan .price .num {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .page-menu-wedding .p-plan .contents-ttl {
    padding: 4px 26px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .page-menu-wedding .p-plan .text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.25;
  }
  .page-menu-wedding .p-plan.plan1 .img-wrap:before {
    display: block;
    position: absolute;
    content: '';
    top: -280px;
    left: -310px;
    z-index: -1;
    width: 490px;
    height: 470px;
    background: #F2EBEB;
  }
  .page-menu-wedding .p-plan.plan1 .img-wrap:after {
    content: none;
  }
  .page-menu-wedding .p-plan.plan2 .img-wrap:before {
    display: block;
    position: absolute;
    content: '';
    top: -150px;
    left: -170px;
    z-index: -1;
    width: 1130px;
    height: 320px;
    background: #A2B6B9;
  }
  .page-menu-wedding .p-plan.plan2 .img-wrap:after {
    content: none;
  }
  .page-menu-wedding .p-plan.plan3 .img-wrap:before {
    display: block;
    position: absolute;
    content: '';
    top: 65px;
    left: -460px;
    z-index: -1;
    width: 1015px;
    height: 815px;
    background: #F2EBEB;
  }
  .page-menu-wedding .p-plan.plan3 .img-wrap:after {
    content: none;
  }
  .page-menu-wedding .p-plan .deco1 {
    top: 7%;
    width: 54px;
    margin-left: 65%;
  }
  .page-menu-wedding .p-plan .deco2 {
    top: 28%;
    width: 68px;
    margin-left: -38%;
  }
  .page-menu-wedding .p-plan .deco3 {
    top: 86%;
    width: 74px;
    margin-left: 45%;
  }
  .page-menu-wedding .p-plan .deco4 {
    top: 36%;
    width: 74px;
    margin-left: -72%;
  }
  .page-menu-wedding .p-plan .deco5 {
    top: 88%;
    width: 92px;
    margin-left: -45%;
  }
  .page-menu-wedding .p-plan .deco6 {
    top: 103%;
    width: 48px;
    margin-left: 77%;
  }
  .page-menu-wedding .p-plan .deco7 {
    top: 84%;
    width: 80px;
    margin-left: 44%;
  }
  .page-menu-wedding .p-plan .deco8 {
    top: 140%;
    width: 54px;
    margin-left: -59%;
  }
}

.page-menu-wedding .img-04-wrap {
  margin-top: 40px;
  text-align: right;
}

.page-menu-wedding .img-04-wrap figure {
  display: inline-block;
  margin-left: 100px;
}

@media screen and (min-width: 1920px) {
  .page-menu-wedding .img-04-wrap {
    position: relative;
    height: 566px;
  }
  .page-menu-wedding .img-04-wrap figure {
    display: block;
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    width: 1085px;
    height: 566px;
    margin-left: 418px;
  }
}

/*------------------------------------------------------------
  contact  コンタクトページ用
------------------------------------------------------------*/
/*------------------------------------------------------------
  privacy  プライバシーポリシーページ用
------------------------------------------------------------*/
.page-privacy p + p {
  margin-top: 2em;
}

.page-privacy .p-privacy {
  padding-top: 70px !important;
}

@media screen and (min-width: 1024px) {
  .page-privacy .p-privacy {
    padding-top: 80px !important;
  }
}

.page-privacy .policy {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #707070;
}

@media screen and (min-width: 1024px) {
  .page-privacy .policy {
    margin-top: 40px;
    padding-top: 40px;
  }
}

/*------------------------------------------------------------
  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: 90px !important;
}

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

.u-mb-medium {
  margin-bottom: 30px !important;
}

.u-mb-large {
  margin-bottom: 90px !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: #EA8080;
}

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

.u-col-blue {
  color: #0068b3;
}

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

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

.u-fs-large {
  font-size: 20px;
  font-size: 1.25rem;
}

.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: 140px !important;
  }
  .u-mb-small {
    margin-bottom: 30px !important;
  }
  .u-mb-medium {
    margin-bottom: 50px !important;
  }
  .u-mb-large {
    margin-bottom: 140px !important;
  }
  .u-fs-large {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .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;
}


/*注意喚起お知らせセクション*/
.p-attention {
  padding-top: 132px;
}

.p-attentionInner {
  border-top: solid 1px #EA8080;
  border-bottom: solid 1px #EA8080;
  padding: 54px 26px 58px;
  box-sizing: border-box;
}

.attention-ttl {
  font-size: 30px;
  line-height: 1.5;
  color: #EA8080;
  font-weight: 500;
  margin-bottom: 58px;
  text-align: center;
}

.attention-txt {
  font-size: 14px;
  line-height: 1.64;
  margin-bottom: 28px;
}

.attention-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.attention-item {
  width: calc(50% - 17px);
}

.attentionItemHead {
  line-height: 1.4;
  font-size: 16px;
  color: #EA8080;
  border: solid 1px #EA8080;
  text-align: center;
  padding: 11px 12px 10px;
  box-sizing: border-box;
  margin-bottom: 14px;
}

.attentionList-item {
  font-size: 14px;
  line-height: 1.3;
  text-indent: -1.2em;
  margin-left: 1.2em;
}

.attentionList-item + .attentionList-item {
  margin-top: 4px;
}

.attentionListNum {
  color: #EA8080;
}

.attentionSubList {
  margin-top: 8px;
}

.attentionSubList-item {
  color: #6E6E6E;
  line-height: 1.1;
  text-indent: -1em;
  margin-left: 1em;
}

.attentionSubList-item + .attentionSubList-item {
  margin-top: 8px;
}

.attentionNote {
  font-size: 14px;
  line-height: 1.64;
}

@media screen and (max-width: 768px) {

.p-attention {
  padding-top: 64px;
}

.p-attentionInner {
  padding: 28px 0 28px;
}

.attention-ttl {
  font-size: 24px;
  margin-bottom: 20px;
}

.attention-txt {
  font-size: 13px;
  margin-bottom: 26px;
  line-height: 1.8;
}

.attention-box {
  display: block;
  margin-bottom: 14px;
}

.attention-item {
  width: 100%;
  line-height: 1.6;
}

.attention-item + .attention-item {
  margin-top: 28px;
}

.attentionItemHead {
  font-size: 15px;
  padding: 7px 10px 6px;
  margin-bottom: 14px;
}

.attentionList-item {
  font-size: 13px;
}

.attentionList-item + .attentionList-item {
  margin-top: 6px;
}


.attentionSubList {
  margin-top: 6px;
}

.attentionSubList-item + .attentionSubList-item {
  margin-top: 6px;
}

.attentionNote {
  font-size: 13px;
  line-height: 1.64;
}

}


/*衣装バナー一覧*/
.costumeList {
  padding-bottom: 580px;
}

.costumeList--pdgCut {
  padding-bottom: 220px;
}

.costumeList__item + .costumeList__item {
  margin-top: 24px;
}

@media screen and (max-width: 768px) {

.costumeList {
  padding-bottom: 75px;
}

.costumeList__item + .costumeList__item {
  margin-top: 12px;
}

}


/*成人式*/
.ttl--coming {
  margin-top: 25px !important;
}


/*ギャラリー*/
.p-gallery {
  padding-bottom: 432px;
}

.p-gallery--front {
  position: relative;
}

.p-gallery--front::before {
  content: "";
  position: absolute;
  display: block;
  top: -258px;
  left: -64px;
  width: 620px;
  height: 253px;
  background: url(../images/common/deco_tile@2x.png) 0 0 / contain no-repeat;
  z-index: -1;
}

.galleryList {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 110px;
}

.l-main--costume .galleryList {
  margin-top: 48px;
}

.galleryList__item {
  width: calc( (100% - 38px) / 3 );
  margin: 19px 0 0 19px;
  cursor: pointer;
}

.galleryList__item:nth-child(-n+3) {
  margin-top: 0;
}

.galleryList__item:nth-child(3n-2) {
  margin-left: 0;
}

.c-border-btn--noArrow {
  margin-top: 0 !important;
  cursor: pointer;
}

.c-border-btn--noArrow > span {
  padding-right: 0;
}

.c-border-btn--noArrow > span::after,
.c-border-btn--noArrow > span::before {
  content: none;
}

.galleryList__item {
  display: none;
}

@media screen and (max-width: 768px) {

.p-gallery {
  padding-bottom: 216px;
}

.galleryList {
  padding-bottom: 55px;
}

.galleryList__item {
  width: calc( (100% - 16px) / 3 );
  margin: 8px 0 0 8px;
}

}


/*ギャラリーモーダル*/
.galleryMoadl {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition-property: opacity;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.galleryMoadlClose {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  display: block;
  cursor: pointer;
}

.galleryMoadlClose::before,
.galleryMoadlClose::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.galleryMoadlClose::before {
  transform: rotate(-45deg);
}

.galleryMoadlClose::after {
  transform: rotate(45deg);
}

.galleryMoadl__list {
  width: calc(100% - 120px);
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.slick-track {
  display: flex;
  align-items: center;
}

.slick-slide .galleryMoadl__item {
  text-align: center;
  max-height: calc(100vh - 120px);
}

.slick-slide .galleryMoadl__item img {
  display: inline-block !important;
  max-height: calc(100vh - 120px);
}

.slick-arrow {
  font-size: 0;
  display: block;
  width: 30px;
  height: 30px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.slick-arrow.slick-prev {
  transform: rotate(45deg);
  left: -30px;
}

.slick-arrow.slick-next {
  transform: rotate(-135deg);
  right: -30px;
}