@charset "UTF-8";
/**
 * Custom media queries
 * @example
 * @media (--mobile) {
 *    styles for mobile viewport
 * }
 */
/**
 * for mobile viewoport
 */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root{--swiper-theme-color:#007aff}
:host{display:block;margin-left:auto;margin-right:auto;position:relative;z-index:1}
.swiper{display:block;list-style:none;margin-left:auto;margin-right:auto;overflow:hidden;padding:0;position:relative;z-index:1}
.swiper-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.swiper-wrapper{-webkit-box-sizing:initial;box-sizing:initial;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;position:relative;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform;-webkit-transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);width:100%;z-index:1}
.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{-webkit-transform:translateZ(0);transform:translateZ(0)}
.swiper-horizontal{-ms-touch-action:pan-y;touch-action:pan-y}
.swiper-vertical{-ms-touch-action:pan-x;touch-action:pan-x}
.swiper-slide{display:block;-ms-flex-negative:0;flex-shrink:0;height:100%;position:relative;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform;width:100%}
.swiper-slide-invisible-blank{visibility:hidden}
.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}
.swiper-autoheight .swiper-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;transition-property:transform,height;transition-property:transform,height,-webkit-transform}
.swiper-backface-hidden .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}
.swiper-3d.swiper-css-mode .swiper-wrapper{-webkit-perspective:1200px;perspective:1200px}
.swiper-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}
.swiper-3d{-webkit-perspective:1200px;perspective:1200px;.swiper-cube-shadow,.swiper-slide{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}}
.swiper-css-mode{>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none;&::-webkit-scrollbar{display:none}}>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}&.swiper-horizontal{>.swiper-wrapper{scroll-snap-type:x mandatory}}&.swiper-vertical{>.swiper-wrapper{scroll-snap-type:y mandatory}}&.swiper-free-mode{>.swiper-wrapper{scroll-snap-type:none}>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}}&.swiper-centered{>.swiper-wrapper:before{content:"";-ms-flex-negative:0;flex-shrink:0;-webkit-box-ordinal-group:10000;-ms-flex-order:9999;order:9999}>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}}&.swiper-centered.swiper-horizontal{>.swiper-wrapper>.swiper-slide:first-child{-webkit-margin-start:var(--swiper-centered-offset-before);margin-inline-start:var(--swiper-centered-offset-before)}>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}}&.swiper-centered.swiper-vertical{>.swiper-wrapper>.swiper-slide:first-child{-webkit-margin-before:var(--swiper-centered-offset-before);margin-block-start:var(--swiper-centered-offset-before)}>.swiper-wrapper:before{height:var(--swiper-centered-offset-after);min-width:1px;width:100%}}}
.swiper-3d{.swiper-slide-shadow,.swiper-slide-shadow-bottom,.swiper-slide-shadow-left,.swiper-slide-shadow-right,.swiper-slide-shadow-top{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:10}.swiper-slide-shadow{background:#00000026}.swiper-slide-shadow-left{background-image:-webkit-gradient(linear,right top, left top,from(#00000080),to(#0000));background-image:linear-gradient(270deg,#00000080,#0000)}.swiper-slide-shadow-right{background-image:-webkit-gradient(linear,left top, right top,from(#00000080),to(#0000));background-image:linear-gradient(90deg,#00000080,#0000)}.swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left bottom, left top,from(#00000080),to(#0000));background-image:linear-gradient(0deg,#00000080,#0000)}.swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left top, left bottom,from(#00000080),to(#0000));background-image:linear-gradient(180deg,#00000080,#0000)}}
.swiper-lazy-preloader{border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top:4px solid #0000;-webkit-box-sizing:border-box;box-sizing:border-box;height:42px;left:50%;margin-left:-21px;margin-top:-21px;position:absolute;top:50%;-webkit-transform-origin:50%;transform-origin:50%;width:42px;z-index:10}
.swiper-watch-progress .swiper-slide-visible,.swiper:not(.swiper-watch-progress){.swiper-lazy-preloader{-webkit-animation:swiper-preloader-spin 1s linear infinite;animation:swiper-preloader-spin 1s linear infinite}}
.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}
.swiper-lazy-preloader-black{--swiper-preloader-color:#000}
@-webkit-keyframes swiper-preloader-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
@keyframes swiper-preloader-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}
.swiper-virtual.swiper-css-mode{.swiper-wrapper:after{content:"";left:0;pointer-events:none;position:absolute;top:0}}
.swiper-virtual.swiper-css-mode.swiper-horizontal{.swiper-wrapper:after{height:1px;width:var(--swiper-virtual-size)}}
.swiper-virtual.swiper-css-mode.swiper-vertical{.swiper-wrapper:after{height:var(--swiper-virtual-size);width:1px}}
:root{--swiper-navigation-size:44px}
.swiper-button-next,.swiper-button-prev{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:var(--swiper-navigation-color,var(--swiper-theme-color));cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;height:var(--swiper-navigation-size);-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;width:var(--swiper-navigation-size);z-index:10;&.swiper-button-disabled{cursor:auto;opacity:.35;pointer-events:none}&.swiper-button-hidden{cursor:auto;opacity:0;pointer-events:none}.swiper-navigation-disabled &{display:none!important}svg{height:100%;-o-object-fit:contain;object-fit:contain;-webkit-transform-origin:center;transform-origin:center;width:100%;fill:currentColor;pointer-events:none}}
.swiper-button-lock{display:none}
.swiper-button-next,.swiper-button-prev{margin-top:calc(0px - var(--swiper-navigation-size)/2);top:var(--swiper-navigation-top-offset,50%)}
.swiper-button-prev{left:var(--swiper-navigation-sides-offset,4px);right:auto;.swiper-navigation-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}}
.swiper-button-next{left:auto;right:var(--swiper-navigation-sides-offset,4px)}
.swiper-horizontal{.swiper-button-next,.swiper-button-prev,~.swiper-button-next,~.swiper-button-prev{margin-left:0;margin-top:calc(0px - var(--swiper-navigation-size)/2);top:var(--swiper-navigation-top-offset,50%)}&.swiper-rtl .swiper-button-next,&.swiper-rtl~.swiper-button-next,&~.swiper-button-prev,.swiper-button-prev{left:var(--swiper-navigation-sides-offset,4px);right:auto}&.swiper-rtl .swiper-button-prev,&.swiper-rtl~.swiper-button-prev,&~.swiper-button-next,.swiper-button-next{left:auto;right:var(--swiper-navigation-sides-offset,4px)}&.swiper-rtl .swiper-button-next,&.swiper-rtl~.swiper-button-next,&~.swiper-button-prev,.swiper-button-prev{.swiper-navigation-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}}&.swiper-rtl .swiper-button-prev,&.swiper-rtl~.swiper-button-prev{.swiper-navigation-icon{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}}
.swiper-vertical{.swiper-button-next,.swiper-button-prev,~.swiper-button-next,~.swiper-button-prev{left:var(--swiper-navigation-top-offset,50%);margin-left:calc(0px - var(--swiper-navigation-size)/2);margin-top:0;right:auto}.swiper-button-prev,~.swiper-button-prev{bottom:auto;top:var(--swiper-navigation-sides-offset,4px);.swiper-navigation-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}}.swiper-button-next,~.swiper-button-next{bottom:var(--swiper-navigation-sides-offset,4px);top:auto;.swiper-navigation-icon{-webkit-transform:rotate(90deg);transform:rotate(90deg)}}}
.swiper-pagination{position:absolute;text-align:center;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:opacity .3s;transition:opacity .3s;z-index:10;&.swiper-pagination-hidden{opacity:0}&.swiper-pagination-disabled,.swiper-pagination-disabled>&{display:none!important}}
.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);left:0;top:var(--swiper-pagination-top,auto);width:100%}
.swiper-pagination-bullets-dynamic{font-size:0;overflow:hidden;.swiper-pagination-bullet{position:relative;-webkit-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullet-active,.swiper-pagination-bullet-active-main{-webkit-transform:scale(1);transform:scale(1)}.swiper-pagination-bullet-active-prev{-webkit-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullet-active-next{-webkit-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullet-active-next-next{-webkit-transform:scale(.33);transform:scale(.33)}}
.swiper-pagination-bullet{background:var(--swiper-pagination-bullet-inactive-color,#000);border-radius:var(--swiper-pagination-bullet-border-radius,50%);display:inline-block;height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));opacity:var(--swiper-pagination-bullet-inactive-opacity,.2);width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));button&{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;-webkit-box-shadow:none;box-shadow:none;margin:0;padding:0}.swiper-pagination-clickable &{cursor:pointer}&:only-child{display:none!important}}
.swiper-pagination-bullet-active{background:var(--swiper-pagination-color,var(--swiper-theme-color));opacity:var(--swiper-pagination-bullet-opacity,1)}
.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{left:var(--swiper-pagination-left,auto);right:var(--swiper-pagination-right,8px);top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0);.swiper-pagination-bullet{display:block;margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0}&.swiper-pagination-bullets-dynamic{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:8px;.swiper-pagination-bullet{display:inline-block;-webkit-transition:top .2s,-webkit-transform .2s;transition:top .2s,-webkit-transform .2s;transition:transform .2s,top .2s;transition:transform .2s,top .2s,-webkit-transform .2s}}}
.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-horizontal.swiper-pagination-bullets{.swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}&.swiper-pagination-bullets-dynamic{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap;.swiper-pagination-bullet{-webkit-transition:left .2s,-webkit-transform .2s;transition:left .2s,-webkit-transform .2s;transition:transform .2s,left .2s;transition:transform .2s,left .2s,-webkit-transform .2s}}}
.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:right .2s,-webkit-transform .2s;transition:right .2s,-webkit-transform .2s;transition:transform .2s,right .2s;transition:transform .2s,right .2s,-webkit-transform .2s}
.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}
.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,#00000040);position:absolute;.swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));height:100%;left:0;position:absolute;top:0;-webkit-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;transform-origin:left top;width:100%}.swiper-rtl & .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;transform-origin:right top}&.swiper-pagination-horizontal,&.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-horizontal>&,.swiper-vertical>&.swiper-pagination-progressbar-opposite{height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0;width:100%}&.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,&.swiper-pagination-vertical,.swiper-horizontal>&.swiper-pagination-progressbar-opposite,.swiper-vertical>&{height:100%;left:0;top:0;width:var(--swiper-pagination-progressbar-size,4px)}}
.swiper-pagination-lock{display:none}
.swiper-scrollbar{background:var(--swiper-scrollbar-bg-color,#0000001a);border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;-ms-touch-action:none;touch-action:none;&.swiper-scrollbar-disabled,.swiper-scrollbar-disabled>&{display:none!important}&.swiper-scrollbar-horizontal,.swiper-horizontal>&{bottom:var(--swiper-scrollbar-bottom,4px);height:var(--swiper-scrollbar-size,4px);left:var(--swiper-scrollbar-sides-offset,1%);position:absolute;top:var(--swiper-scrollbar-top,auto);width:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);z-index:50}&.swiper-scrollbar-vertical,.swiper-vertical>&{height:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);left:var(--swiper-scrollbar-left,auto);position:absolute;right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);width:var(--swiper-scrollbar-size,4px);z-index:50}}
.swiper-scrollbar-drag{background:var(--swiper-scrollbar-drag-bg-color,#00000080);border-radius:var(--swiper-scrollbar-border-radius,10px);height:100%;left:0;position:relative;top:0;width:100%}
.swiper-scrollbar-cursor-drag{cursor:move}
.swiper-scrollbar-lock{display:none}
.swiper-zoom-container{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;width:100%;>canvas,>img,>svg{max-height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain}}
.swiper-slide-zoomed{cursor:move;-ms-touch-action:none;touch-action:none}
.swiper .swiper-notification{left:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}
.swiper-free-mode>.swiper-wrapper{margin:0 auto;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}
.swiper-grid>.swiper-wrapper{-ms-flex-wrap:wrap;flex-wrap:wrap}
.swiper-grid-column>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap}
.swiper-fade{&.swiper-free-mode{.swiper-slide{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}}.swiper-slide{pointer-events:none;-webkit-transition-property:opacity;transition-property:opacity;.swiper-slide{pointer-events:none}}.swiper-slide-active{pointer-events:auto;& .swiper-slide-active{pointer-events:auto}}}
.swiper.swiper-cube{overflow:visible}
.swiper-cube{.swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;height:100%;pointer-events:none;-webkit-transform-origin:0 0;transform-origin:0 0;visibility:hidden;width:100%;z-index:1;.swiper-slide{pointer-events:none}}&.swiper-rtl .swiper-slide{-webkit-transform-origin:100% 0;transform-origin:100% 0}.swiper-slide-active{&,& .swiper-slide-active{pointer-events:auto}}.swiper-slide-active,.swiper-slide-next,.swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube-shadow{bottom:0;height:100%;left:0;opacity:.6;position:absolute;width:100%;z-index:0;&:before{background:#000;bottom:0;content:"";-webkit-filter:blur(50px);filter:blur(50px);left:0;position:absolute;right:0;top:0}}}
.swiper-cube{.swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}}
.swiper-cube{.swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-slide-shadow-cube.swiper-slide-shadow-top{-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:0}}
.swiper.swiper-flip{overflow:visible}
.swiper-flip{.swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;pointer-events:none;z-index:1;.swiper-slide{pointer-events:none}}.swiper-slide-active{&,& .swiper-slide-active{pointer-events:auto}}}
.swiper-flip{.swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-slide-shadow-flip.swiper-slide-shadow-top{-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:0}}
.swiper-creative{.swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;-webkit-transition-property:opacity,height,-webkit-transform;transition-property:opacity,height,-webkit-transform;transition-property:transform,opacity,height;transition-property:transform,opacity,height,-webkit-transform}}
.swiper.swiper-cards{overflow:visible}
.swiper-cards{.swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;-webkit-transform-origin:center bottom;transform-origin:center bottom}}
/**
 * for tablet and Pc. large viewport
 */
@custom-media --desktop(min-width: 1280px);
/** http://bourbon.io/docs/#timing-functions */
/** example @include transition(all 5s $ease-in-circ);*/
/**
transition timing-function:
ease - cubic-bezier(0.25, 0.1, 0.25, 1.0) を指定したのと同じ（開始と完了を滑らかにする）（初期値）
linear - cubic-bezier(0.0, 0.0, 1.0, 1.0) を指定したのと同じ（一定）
ease-in - cubic-bezier(0.42, 0, 1.0, 1.0) を指定したのと同じ（ゆっくり始まる）
ease-out - cubic-bezier(0, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり終わる）
ease-in-out - cubic-bezier(0.42, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり始まってゆっくり終わる）
*/
/**
 * text ellipsis for block multiline
 */
/*
 unsupport IE, Edge, Fx

@mixin text-ellipsis-block($rows) {
  display: box;
  box-orient: vertical;
  line-clamp: $rows;
  overflow: hidden;
}
*/
/**
 * element size
 */
/**
 * position layout
 */
/**
 * images
 */
/**
* Variables
*/
:root {
  --color-bg: #E9EDF0;
  --color-bg-multiply: #D5DCE1;
  --rgb-bg: 233, 237, 240;
  --color-red: #AD1F4E;
  --color-red-multiply: #8F1B46;
  --rgb-red: 173, 31, 78;
  --color-blue: #2B3F52;
  --color-blue-multiply: #21303D;
  --rgb-blue: 43, 63, 82;
  --color-gray: #C3CAD0;
  --color-darkgray: #818181;
  --color-green: #4CA380;
  --color-green-multiply: #439071;
  --rgb-green: 76, 163, 128;
  --color-yellow: #DDC72A;
  --font: sofia-pro, ryo-gothic-plusn, sans-serif;
  --font-en: sofia-pro, sans-serif;
  --font-ja: ryo-gothic-plusn, sans-serif;
}
/** extend */
.js-inview[data-inview=blur] {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: -webkit-filter 1s;
  transition: -webkit-filter 1s;
  transition: filter 1s;
  transition: filter 1s, -webkit-filter 1s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: filter;
}
.js-inview[data-inview=blur].is-inview {
  -webkit-filter: blur(0);
          filter: blur(0);
}
.js-inview[data-inview=blur-low] {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-filter 1s;
  transition: opacity 1s, -webkit-filter 1s;
  transition: filter 1s, opacity 1s;
  transition: filter 1s, opacity 1s, -webkit-filter 1s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: filter;
}
.js-inview[data-inview=blur-low].is-inview {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}
.js-inview[data-inview=fade] {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.js-inview[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview[data-inview=fade-top] {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.js-inview[data-inview=fade-top].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-inview[data-inview=fade-left] {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.js-inview[data-inview=fade-left].is-inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.js-inview[data-inview=fade-right] {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.js-inview[data-inview=fade-right].is-inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.js-inview[data-inview=fade-bottom] {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.js-inview[data-inview=fade-bottom].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-inview[data-inview=clip-photo] {
  clip-path: inset(0 7.3206442167% round 2.5em);
  -webkit-transition: clip-path 0.8s;
  transition: clip-path 0.8s;
}
.js-inview[data-inview=clip-photo].is-inview {
  clip-path: inset(0 0% round 2.5em);
}
.js-inview[data-inview=clip-photo-small] {
  clip-path: inset(0 7.3206442167% round 6.25em);
  -webkit-transition: clip-path 0.8s;
  transition: clip-path 0.8s;
}
.js-inview[data-inview=clip-photo-small].is-inview {
  clip-path: inset(0 0% round 6.25em);
}
.js-inview[data-inview=blackout-curtain] {
  position: relative;
}
.js-inview[data-inview=blackout-curtain]::before {
  background-color: var(--color-bk);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  z-index: 1000;
}
.js-inview[data-inview=blackout-curtain].is-inview::before {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.js-inview[data-inview=circle-scale] {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
}
.js-inview[data-inview=circle-scale].is-inview {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.js-inview-eachItem[data-inview=fade] {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}
.js-inview-eachItem[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview-eachItem[data-inview=fade-top] {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.js-inview-eachItem[data-inview=fade-top].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-bottom] {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.js-inview-eachItem[data-inview=fade-bottom].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-right] {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.js-inview-eachItem[data-inview=fade-right].is-inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.js-inview[data-inview=circle-scale-01] {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 1s 0.5s;
  transition: -webkit-transform 1s 0.5s;
  transition: transform 1s 0.5s;
  transition: transform 1s 0.5s, -webkit-transform 1s 0.5s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.js-inview[data-inview=circle-scale-01].is-inview {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.js-inview[data-inview=circle-scale-02] {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.js-inview[data-inview=circle-scale-02].is-inview {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.js-inview-all[data-inview=blur] {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: -webkit-filter 1s;
  transition: -webkit-filter 1s;
  transition: filter 1s;
  transition: filter 1s, -webkit-filter 1s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: filter;
}
.js-inview-all[data-inview=blur].is-inview {
  -webkit-filter: blur(0);
          filter: blur(0);
}
.js-header-inview-eachItem[data-inview=fade-top] {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.js-header-inview-eachItem[data-inview=fade-top].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-loading-inview[data-inview=blur] {
  -webkit-filter: blur(100px);
          filter: blur(100px);
  -webkit-transition: -webkit-filter 1s;
  transition: -webkit-filter 1s;
  transition: filter 1s;
  transition: filter 1s, -webkit-filter 1s;
}
.js-loading-inview[data-inview=blur].is-inview {
  -webkit-filter: blur(0);
          filter: blur(0);
}
.js-loading-inview[data-inview=fade-top] {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.js-loading-inview[data-inview=fade-top].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-loading-inview[data-inview=fade-bottom] {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.js-loading-inview[data-inview=fade-bottom].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-loading-inview[data-inview=circle-scale-01] {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 1s 0.5s;
  transition: -webkit-transform 1s 0.5s;
  transition: transform 1s 0.5s;
  transition: transform 1s 0.5s, -webkit-transform 1s 0.5s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.js-loading-inview[data-inview=circle-scale-01].is-inview {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.js-loading-inview[data-inview=circle-scale-02] {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.js-loading-inview[data-inview=circle-scale-02].is-inview {
  -webkit-transform: scale(1);
          transform: scale(1);
}
_:-ms-lang(x)::-ms-backdrop, .js-inview-photo[data-inview=scale-small] {
  transform: scale(1);
}
_:-ms-lang(x)::-ms-backdrop, .js-inview-photo-img[data-inview=scale-small] {
  transform: translateX(-50%) scale(1);
}
@-webkit-keyframes border {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  1% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  50% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  51% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
@keyframes border {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  1% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  50% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  51% {
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
/* == @import "../node_modules/normalize.css/normalize.css"; */
[v-cloak] {
  display: none;
}
html {
  font-size: 62.5%;
}
body {
  background-color: var(--color-bg);
  color: var(--color-blue);
  font-family: var(--font);
  font-size: 1rem;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
a {
  color: var(--color-blue);
  text-decoration: none;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, div, dl, dt, dd, p {
  margin: 0;
  padding: 0;
}
ul, ol, li {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
img {
  vertical-align: bottom;
}
figure {
  margin: 0;
  padding: 0;
}
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;
}
.l-main {
  line-height: 1.2;
}
/**
 * footer.scss
 */
.l-footer {
  background-color: var(--color-bg);
  border-radius: 40px 40px 0 0;
  -webkit-box-shadow: -10px -10px 20px #fff;
          box-shadow: -10px -10px 20px #fff;
  font-weight: 500;
  padding: 120px 0 0;
  position: relative;
  z-index: 2000;
}
.l-footer__name {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}
.l-footer__nav {
  font-size: 1.6rem;
  margin-top: 40px;
}
.l-footer__nav ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-footer__sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.l-footer__sns li + li {
  margin-left: 40px;
}
.l-footer__foot {
  border-top: var(--color-gray) 1px solid;
  font-size: 1.6rem;
  margin-top: 80px;
  padding: 40px 80px;
}
.l-footer__sub {
  margin-left: auto;
}
.l-footer__link a {
  background: url(../images/icon_blank.svg) no-repeat right center;
  background-size: 11px auto;
  padding-right: 19px;
}
/**
 * header.scss
 */
.l-header img {
  height: auto;
  max-width: 100%;
}
.l-header__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 40px;
  left: 20px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  width: calc(100% - 40px);
  z-index: 3001;
}
.is-inview .l-header__head {
  pointer-events: auto;
  opacity: 1;
}
.l-header__nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
.l-header__nav-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
}
.l-header__nav-list li {
  margin-right: 40px;
}
.l-header__logout a, .l-header__mypage a, .l-header__contact a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-red);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
}
.l-header__logout a {
  padding-left: 5px;
  width: 60px;
}
.l-header__mypage {
  margin-left: 8px;
}
.l-header__mypage a {
  color: #fff;
  font-size: 1.6rem;
  width: 144px;
}
.l-header__contact {
  margin-left: 8px;
}
.l-header__contact a {
  text-align: center;
  width: 60px;
}
.l-header__contact svg {
  fill: #fff;
}
.l-header__contact figure {
  font-size: 0;
  line-height: 1;
  margin: 3px auto 0;
  width: 22px;
}
.l-header__contact p {
  font-size: 0;
  line-height: 1;
  margin-top: 6px;
  width: 34px;
}
.l-header__btn {
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 66px;
  right: 60px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  z-index: 3001;
}
.is-inview .l-header__btn {
  pointer-events: auto;
  opacity: 1;
}
.l-header__btn-border span {
  background-color: currentColor;
  display: block;
  height: 2px;
  margin: auto;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, transform 0.3s;
  transition: width 0.3s, transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
}
.l-header__btn-border span:nth-of-type(2) {
  margin-top: 6px;
}
.l-header__btn-border span:nth-of-type(3) {
  margin-top: 6px;
}
.is-active .l-header__btn-border span:nth-of-type(1) {
  -webkit-transform: rotate(27deg) translate(2px, 5px);
          transform: rotate(27deg) translate(2px, 5px);
}
.is-active .l-header__btn-border span:nth-of-type(2) {
  opacity: 0;
}
.is-active .l-header__btn-border span:nth-of-type(3) {
  -webkit-transform: rotate(-27deg) translate(4px, -9px);
          transform: rotate(-27deg) translate(4px, -9px);
}
.l-header__btn-text {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 500;
  height: 10px;
  margin-top: 4px;
  position: relative;
  width: 50px;
}
.l-header__btn-text::before, .l-header__btn-text::after {
  margin: auto;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;
}
.l-header__btn-text::before {
  content: "MENU";
}
.l-header__btn-text::after {
  content: "CLOSE";
  opacity: 0;
}
.is-active .l-header__btn-text::before {
  opacity: 0;
}
.is-active .l-header__btn-text::after {
  opacity: 1;
}
.l-header__menu {
  background-color: var(--color-bg);
  display: none;
  opacity: 0;
  font-size: 1.6rem;
  font-weight: 500;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-header__menu::-webkit-scrollbar {
  display: none;
}
.l-header__menu-wrapper {
  height: 100vh;
  overflow-y: scroll;
  padding-bottom: 40px;
  width: 100%;
}
.l-header__menu-inner {
  padding-top: 140px;
}
.l-header__menu-list {
  text-align: center;
}
.l-header__menu-list li + li {
  margin-top: 40px;
}
.l-header__menu-tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.l-header__menu-tool .l-header__logout {
  margin-left: 0;
}
.l-header__menu-sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  margin-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-header__menu-sns li + li {
  margin-left: 24px;
}
.l-loading {
  background-color: var(--color-bg);
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5000;
}
/**
 * main.scss
 */
.l-main {
  position: relative;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  padding: 200px 0;
}
.l-main img {
  height: auto;
  max-width: 100%;
}
.l-main-top {
  position: relative;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  width: 100%;
}
.l-main-top img {
  height: auto;
  max-width: 100%;
}
.l-main-top main {
  padding: 0 0 40px;
  position: relative;
  z-index: 1001;
}
.l-inner {
  margin: 0 auto;
  max-width: 1100px;
  width: 90%;
}
.p-404__text {
  margin-top: 120px;
  text-align: center;
}
.p-404__btn {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
}
.p-contact-guide {
  margin-top: 200px;
}
.p-contact-guide__ttl {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.p-contact-guide__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 64px;
}
.p-contact__lede {
  margin-top: 40px;
  max-width: 740px;
}
.p-contact__lede p + p {
  margin-top: 2em;
}
.p-contact__form {
  margin: 120px auto 0;
  max-width: 600px;
}
.p-contact-thanks {
  text-align: center;
}
.p-contact-thanks__lede {
  margin-top: 40px;
}
.p-login__box {
  background-color: var(--color-bg);
  border-radius: 45px;
  margin: 0 auto;
  padding: 72px 0;
  width: 440px;
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.09);
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.09);
}
.p-login__ttl {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
}
.p-login__text {
  text-align: center;
}
.p-login__form {
  margin: 32px auto 0;
  width: 336px;
}
.p-login__form-text + .p-login__form-text {
  margin-top: 16px;
}
.p-login__link {
  margin-top: 40px;
  text-align: center;
}
.p-login__link li + li {
  margin-top: 16px;
}
.p-login__link li a {
  position: relative;
}
.p-login__link li a::before {
  background-color: currentColor;
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  width: 100%;
}
.p-member-steps {
  text-align: center;
  margin-top: 120px;
}
.p-member-steps__h2 {
  text-align: center;
  line-height: 1.4;
}
.p-member-steps__h2 em {
  display: block;
  font-style: normal;
  margin-top: 8px;
}
.p-member-steps__lede {
  margin-top: 24px;
}
.p-member-steps__slide {
  margin-top: 64px;
}
.p-member-steps__slide .swiper {
  overflow: visible;
}
.p-member-steps__slide .swiper-slide {
  width: 378px;
  height: 378px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-slide-steps-item {
  width: 330px;
  aspect-ratio: 1/1;
  position: relative;
}
.c-slide-steps-item:before {
  content: attr(data-number);
  line-height: 1.1;
  position: absolute;
  left: -24px;
  top: 0;
  font-size: 24.5rem;
  color: #D9E0E5;
  z-index: 2;
  font-weight: bold;
}
.c-slide-steps-item[data-number="2"]:before, .c-slide-steps-item[data-number="3"]:before {
  left: -39px;
}
.c-slide-steps-item[data-number="4"]:before {
  left: -47px;
}
.c-slide-steps-item__inner {
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
  width: 100%;
  height: 100%;
  padding: 70px 45px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
}
.c-slide-steps-item__number {
  line-height: 1.1;
  position: absolute;
  left: -24px;
  top: 0;
  font-size: 24.5rem;
  color: var(--color-yellow);
  z-index: 2;
  font-weight: bold;
}
[data-number="2"] .c-slide-steps-item__number, [data-number="3"] .c-slide-steps-item__number {
  left: -39px;
}
[data-number="4"] .c-slide-steps-item__number {
  left: -47px;
}
.c-slide-steps-item__icon {
  position: absolute;
  left: 50%;
  top: 45px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-slide-steps-item__text {
  width: 200px;
  margin: auto;
  position: relative;
  z-index: 3;
}
.p-member-form {
  margin-top: 180px;
}
.p-member-form__h2 {
  line-height: 1.4;
  text-align: left;
}
.p-member-form__lede {
  margin-top: 64px;
}
.p-member-form__lede p + p {
  margin-top: 2em;
}
.p-member-form__lede .c-row {
  margin: 40px 0;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-member-form__lede .c-btn__bg a {
  width: 224px;
}
.p-member-form__form {
  max-width: 800px;
  margin: 120px auto 0;
}
.p-member-confirm__lede {
  text-align: center;
  margin-top: 120px;
}
.p-member-confirm__lede p + p {
  margin-top: 2em;
}
.p-member-download {
  text-align: center;
  margin-top: 200px;
}
.p-member-download__h2 {
  font-size: 4.8rem;
  margin-bottom: 64px;
  line-height: 1.2;
}
.p-member-download .c-row {
  margin-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-membership-guide {
  margin-top: 200px;
}
.p-membership-guide__ttl {
  font-size: 5.6rem;
  line-height: 1.4;
  text-align: center;
}
.p-membership-guide__text {
  margin: 40px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-membership-guide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.p-mypage-favorite .c-search-list {
  border-top: solid 1px var(--color-gray);
}
.c-message-list {
  border-top: solid 1px var(--color-gray);
}
.c-message-list__item {
  border-bottom: solid 1px var(--color-gray);
}
.c-message-list__item a {
  padding: 32px 128px 32px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  position: relative;
}
.c-message-list__item a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-message-list__item a::before {
  width: 22px;
  height: 18px;
  background: url("../images/icon_link_arrow.svg") center center no-repeat;
  background-size: contain;
}
.c-message-list__figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.c-message-list__img {
  aspect-ratio: 1/1;
  width: 64px;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-message-list__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-message-list__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.c-message-list__title {
  font-size: 2.4rem;
  line-height: 1.4;
}
.c-message-list .c-tags-status {
  min-width: 64px;
}
.p-mypage-message .c-message-list {
  margin-top: 120px;
}
.p-mypage-message-detail-head {
  text-align: center;
  margin-top: 120px;
}
.p-mypage-message-detail-head__img {
  width: 80px;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 auto 24px;
}
.p-mypage-message-detail-head__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mypage-message-detail-head__name {
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 40px;
}
.p-mypage-message-detail-content {
  margin-top: 120px;
  position: relative;
  overflow: auto;
  scrollbar-width: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  scrollbar-color: var(--color-gray) var(--color-bg-multiply);
  background-color: rgba(255, 255, 255, 0.4);
}
.p-mypage-message-detail-content::-webkit-scrollbar-track {
  background-color: var(--color-bg-multiply);
}
.p-mypage-message-detail-content::-webkit-scrollbar-thumb {
  background-color: var(--color-gray);
  border-radius: 100px;
  border: solid transparent;
  background-clip: content-box;
  border-width: 1px 2px;
}
.p-mypage-message-detail-content__outer {
  position: relative;
}
.p-mypage-message-detail-content__outer:before {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-bg)), to(transparent));
  background: linear-gradient(var(--color-bg) 0%, transparent 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
.p-mypage-message-detail-content__outer.-none:before {
  display: none;
}
.p-mypage-message-detail-content__inner {
  margin-top: auto;
}
.c-message-preview-adds {
  margin-top: 40px;
}
.c-message-preview-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-message-preview-item:nth-of-type(n + 2) {
  margin-top: 40px;
}
.c-message-preview-item.-me {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-message-preview-item__img {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-message-preview-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-message-preview-item__text {
  max-width: 500px;
}
.c-message-preview-item__bubble {
  background-color: #fff;
  border-radius: 40px 40px 40px 0;
}
.-me .c-message-preview-item__bubble {
  background-color: var(--color-green);
  color: #fff;
  border-radius: 40px 40px 0 40px;
}
.c-message-preview-item__date {
  line-height: 1.1;
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.-me .c-message-preview-item__date {
  text-align: right;
}
.c-message-preview-item__new {
  display: inline-block;
  background-color: var(--color-green);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 12px;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-mypage-message-detail-form {
  background-color: rgba(255, 255, 255, 0.4);
  border-top: solid 1px var(--color-gray);
}
.p-mypage-message-detail-form .c-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-mypage-message-detail-form .c-form textarea {
  field-sizing: content;
}
.p-mypage-message-detail-form .c-system-message {
  text-align: center;
}
.p-mypage-profile__img {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.p-mypage-profile__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mypage-profile__complete {
  text-align: center;
  margin-top: 40px;
}
.p-mypage-profile .c-search-detail-outline {
  margin-top: 80px;
}
.p-mypage-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-mypage__lede {
  margin-top: 120px;
  text-align: center;
}
.p-mypage__h2 {
  line-height: 1.25;
  margin-bottom: 40px;
}
.p-mypage-top__btn {
  margin: 80px auto 0;
}
.p-mypage-top .p-news-other {
  margin-top: 120px;
}
.p-mypage-top-message .c-message-list {
  margin-top: 24px;
  border-top: none;
}
.p-mypage-top-favorite .c-search-list {
  margin-top: 24px;
}
.p-mypage-top-profile-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-news__lead {
  margin-top: 40px;
}
.p-news__category {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 120px;
}
.p-news__category li {
  margin-right: 16px;
}
.p-news__category a {
  border-radius: 20px;
  display: block;
  line-height: 1;
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
}
.p-news__category a {
  padding: 12px 20px;
}
.p-news__category a.is-current {
  background-color: var(--color-bg-multiply);
  -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
          box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.p-news__category a.is-all {
  color: #fff;
  background-color: var(--color-green);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-green), 0.2), inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-green), 0.2), inset 3px 3px 5px transparent;
}
.p-news__list {
  border-bottom: 1px solid var(--color-gray);
  margin-top: 80px;
}
.p-news__list li {
  border-top: 1px solid var(--color-gray);
}
.p-news__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  position: relative;
}
.p-news__list a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-news__list a::before {
  width: 22px;
  height: 18px;
  background: url("../images/icon_link_arrow.svg") center center no-repeat;
  background-size: contain;
}
.p-news__list-photo {
  border-radius: 45px;
  height: 120px;
  overflow: hidden;
  width: 184px;
}
.p-news__list-photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.p-news__list-text {
  max-width: 680px;
}
.p-news__list-date {
  margin-top: 8px;
}
.p-news__list-ttl {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-top: 8px;
}
.p-news-detail__ttl-date {
  font-family: var(--font-en);
}
.p-news-detail__ttl-tag {
  margin-top: 24px;
}
.p-news-detail__ttl {
  font-size: 3.2rem;
  line-height: 1.4;
  margin-top: 40px;
}
.p-news-detail__text {
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 80px;
  margin-top: 80px;
}
.p-news-other {
  margin-top: 200px;
}
.p-news-other__list {
  margin-top: 24px;
}
.p-news-other__list li {
  border-bottom: 1px solid var(--color-gray);
}
.p-news-other__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.p-news-other__list a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-news-other__list a::before {
  width: 22px;
  height: 18px;
  background: url("../images/icon_link_arrow.svg") center center no-repeat;
  background-size: contain;
}
.p-news-other__list-photo {
  border-radius: 45px;
  height: 120px;
  overflow: hidden;
  width: 184px;
}
.p-news-other__list-photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.p-news-other__list-text {
  max-width: 680px;
}
.p-news-other__list-date {
  margin-top: 8px;
}
.p-news-other__list-ttl {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-top: 8px;
}
.c-search__lede {
  text-align: center;
  margin-top: 120px;
}
.c-search__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 16px;
  line-height: 1;
  margin-top: 120px;
}
.c-search__h2 {
  line-height: 1.4;
  margin-bottom: 40px;
}
.c-search__box {
  border: solid 1px var(--color-gray);
}
.c-search__box .c-form-dl__label {
  margin-bottom: 16px;
}
.c-search__box .c-form-buttons {
  gap: 24px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-search__box .c-form__search,
.c-search__box .c-form__reset {
  width: 184px;
  margin: 0;
}
.c-tag-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.c-tag-buttons input[type=checkbox]:checked + .church-tag-checkbox-label {
  background-color: var(--color-bg-multiply);
  -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
          box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.church-tag-checkbox-label {
  border-radius: 20px;
  display: block;
  line-height: 1;
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
}
.church-tag-checkbox-label {
  padding: 12px 20px;
}
.c-tags,
.c-tags-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.c-tag {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #fff;
  display: block;
  line-height: 1;
  padding: 8px 16px;
}
.c-search-result {
  margin-top: 64px;
}
.c-search-result__text {
  margin-bottom: 40px;
}
.c-search-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--color-gray);
}
.c-search-list__link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.c-search-list__img {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.c-search-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-search-list .c-tags-status {
  margin-bottom: 24px;
}
.c-search-list__title {
  line-height: 1.4;
  margin-bottom: 24px;
}
.c-search-list__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-search-list .c-btn__message--small,
.c-search-list .c-btn__favorite--small {
  position: relative;
  z-index: 3;
}
.c-search-detail__h2, .c-search-detail__h3 {
  line-height: 1.4;
  margin-bottom: 40px;
}
.c-search-detail-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-search-detail-head .c-tags-status {
  margin-bottom: 16px;
}
.c-search-detail-head__title {
  line-height: 1.4;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: solid 1px var(--color-gray);
}
.c-search-detail-head__title-s {
  font-size: 1.6rem;
  font-weight: normal;
  display: block;
  margin-top: 8px;
}
.c-search-detail-head__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-search-detail-outline {
  margin-top: 200px;
}
.c-search-detail-outline__dl {
  padding: 32px 24px;
  border-bottom: solid 1px var(--color-gray);
}
.c-search-detail-outline__dl:nth-of-type(1) {
  border-top: solid 1px var(--color-gray);
}
.c-search-detail-recommendation {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-search-detail-recommendation__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.c-search-detail-recommendation__buttons .c-btn__bg a {
  width: 200px;
}
.c-search-detail-footer__buttons {
  margin-top: 200px;
  border-top: solid 1px var(--color-gray);
  border-bottom: solid 1px var(--color-gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
.c-search-detail-footer__buttons-item {
  position: relative;
}
.c-search-detail-footer__buttons-item:nth-of-type(n + 2):before {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--color-gray);
}
.c-search-detail-footer__buttons [class^=c-btn] {
  margin: 0 auto;
}
.c-search-detail-footer__register {
  padding-bottom: 80px;
}
.c-search-detail-footer__prev {
  margin: 120px auto 0;
}
.c-term-content {
  margin-top: 120px;
  word-break: break-all;
}
.c-term-content__block {
  margin-top: 80px;
}
.c-term-content__block ol {
  margin-top: 8px;
}
.c-term-content__block a {
  text-decoration: underline;
}
.p-top-line {
  overflow: hidden;
  position: absolute;
  height: calc(100% + 300px);
  width: 100vw;
}
.p-top-line svg {
  height: 100%;
  width: 100%;
}
.p-top-line__red {
  height: 100%;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
.p-top-line__yellow {
  height: 100%;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
.p-top-line__green {
  height: 100%;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
.p-top-mv {
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100vw;
}
.p-top-mv__img {
  height: 100%;
}
.p-top-mv__img figure {
  height: 100%;
}
.p-top-mv__img figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.p-top-mv__ttlarea {
  position: absolute;
  top: 72px;
  left: 5%;
  width: 90%;
  z-index: 1002;
}
.p-top-mv__ttl {
  line-height: 1;
}
.p-top-mv__ttl-sub {
  font-size: 2.4rem;
  margin-top: 24px;
}
.p-top-mv__nav {
  position: absolute;
  bottom: 16px;
}
.p-top-mv__nav-list {
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  margin-bottom: 8px;
  padding: 40px 32px;
  width: 144px;
}
.p-top-mv__nav-sub a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-red);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
}
.p-top-mv__nav-mypage {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
}
.p-top-mv__nav-mypage a {
  color: #fff;
  font-size: 1.6rem;
  width: 144px;
}
.p-top-mv__nav-contact {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
}
.p-top-mv__nav-contact a {
  text-align: center;
  width: 60px;
}
.p-top-mv__nav-contact figure {
  font-size: 0;
  line-height: 1;
  margin: 3px auto 0;
  width: 22px;
}
.p-top-mv__nav-contact svg {
  fill: #fff;
}
.p-top-mv__nav-contact p {
  font-size: 0;
  line-height: 1;
  margin-top: 6px;
  width: 34px;
}
.p-top-mv__sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  padding: 8px 24px;
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.p-top-mv__sns li + li {
  margin-left: 16px;
}
.p-top-situation {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 80px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  margin: 200px auto 0;
  padding: 200px 143px;
  width: 96%;
}
.p-top-situation__ttl {
  font-size: 6.4rem;
}
.p-top-situation__ttl-sub {
  font-size: 4rem;
  margin-top: 80px;
}
.p-top-situation__text {
  font-size: 2.4rem;
  line-height: 2.2;
  margin-top: 80px;
}
.p-top-situation__text p ~ * {
  margin-top: 64px;
}
.p-top-situation__text strong {
  display: block;
}
.p-top-situation__list {
  margin-top: 80px;
}
.p-top-glass__top {
  backdrop-filter: blur(30px);
  border-radius: 80px 80px 0 0;
  margin: 0 auto;
  width: 96%;
}
.p-top-glass__bottom {
  backdrop-filter: blur(30px);
  border-radius: 0 0 80px 80px;
  margin: 0 auto;
  width: 100%;
}
.p-top-about {
  margin: 200px auto 0;
  padding-bottom: 200px;
  position: relative;
}
.p-top-about::after {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#e9edf0), to(transparent));
  background-image: linear-gradient(0deg, #e9edf0, transparent);
  content: "";
  height: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.p-top-about__bg {
  background-color: var(--color-bg);
  border-radius: 80px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  padding: 200px 120px 300px;
}
.p-top-about__ttl {
  font-size: 4rem;
}
.p-top-about__lead {
  font-size: 2.4rem;
  margin-top: 80px;
}
.p-top-about__list {
  margin: -220px auto 0;
  max-width: 1100px;
}
.p-top-about__list li {
  background-color: var(--color-bg);
  border-radius: 40px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
}
.p-top-about__list figure {
  height: 120px;
  margin: 0 auto;
  width: 150px;
}
.p-top-about__list figure img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.p-top-about__text {
  text-align: center;
  margin-top: 80px;
}
.p-top-about__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.p-top-record {
  background-color: var(--color-bg);
}
.p-top-record__ttl {
  font-size: 4rem;
  text-align: center;
}
.p-top-record__lead {
  text-align: center;
}
.p-top-record__lead p {
  margin-top: 80px;
}
.p-top-record__lead p + p {
  margin-top: 40px;
}
.p-top-record__history {
  margin: 120px auto 0;
  max-width: 1100px;
}
.p-top-record__history-year {
  font-size: 8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.p-top-record__history-year::after {
  background-color: var(--color-blue);
  border-radius: 50%;
  content: "";
  height: 9px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 9px;
}
.p-top-record__history-box {
  padding: 40px 0;
  position: relative;
}
.p-top-record__history-box::before {
  border-left: var(--color-blue) 1px dashed;
  content: "";
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1px;
}
.p-top-record__history-box::after {
  background-color: var(--color-blue);
  border-radius: 50%;
  content: "";
  height: 9px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 9px;
}
.p-top-record__history-box dl {
  position: relative;
}
.p-top-record__history-box dl dt {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}
.p-top-record__history-box dl dd {
  overflow-wrap: break-word;
}
.p-top-record__history-box dl dd + * {
  margin-top: 20px;
}
.p-top-record__history-box a {
  text-decoration: underline;
}
.p-top-record__history-box figure {
  position: relative;
}
.p-top-record__history-box-inner + .p-top-record__history-box-inner {
  margin-top: 48px;
}
.p-top-record__history-box-inner--single dl {
  margin-left: auto;
}
.p-top-record__history-text {
  font-size: 8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.p-top-record__text {
  margin-top: 80px;
  text-align: center;
}
.p-top-record__text dl dt {
  font-size: 3.2rem;
  font-weight: bold;
}
.p-top-record__text dl dd {
  margin-top: 32px;
}
.p-top-message {
  background-color: var(--color-bg);
  padding: 200px 0 30px;
  overflow: hidden;
  width: 100%;
}
.p-top-message__inner {
  margin: 0 auto;
  position: relative;
  width: 1100px;
}
.p-top-message__line {
  height: 1580px;
  top: -118px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-51.7%);
          transform: translateX(-51.7%);
  width: 1798px;
  z-index: 1001;
}
.p-top-message__line svg path {
  stroke-dashoffset: 6000;
  stroke-dasharray: 6000;
}
.p-top-message__ttl {
  font-size: 4rem;
  text-align: center;
}
.p-top-message__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 80px auto 0;
  width: 920px;
}
.p-top-message__list li {
  position: relative;
  width: 420px;
}
.p-top-message__list li::before {
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 0 45px 0 0;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  width: 100%;
}
.p-top-message__list-bg {
  background-color: #fff;
  border-radius: 0 45px 0 0;
  height: 100%;
  padding: 70px 40px;
  position: relative;
  width: 100%;
}
.p-top-message__list-bg::before {
  background-color: #fff;
  border-radius: 0 45px 0 0;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 28px);
  z-index: 1001;
}
.p-top-message__list-bg::after {
  background-color: var(--color-bg);
  border-radius: 50%;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.09);
          box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.09);
  content: "";
  height: 12px;
  position: absolute;
  top: 16px;
  left: 16px;
  width: 12px;
}
.p-top-message__list-inner {
  position: relative;
  z-index: 1001;
}
.p-top-message__list-ttl {
  width: 194px;
}
.p-top-message__list-text {
  line-height: 2;
  min-height: 340px;
  margin-top: 24px;
}
.p-top-message__list-prof {
  margin-top: 40px;
}
.p-top-message__list-prof figcaption {
  line-height: 1.7;
  margin-top: 24px;
}
.p-top-message__list-prof p + * {
  margin-top: 8px;
}
.p-top-message__list-photo {
  margin: 0 auto;
  max-width: 240px;
}
.p-top-profile {
  padding-top: 200px;
  position: relative;
}
.p-top-profile::after {
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(#e9edf0));
  background-image: linear-gradient(0deg, transparent, #e9edf0);
  content: "";
  height: 200px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.p-top-profile__bg {
  background-color: var(--color-bg);
  border-radius: 80px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  margin: 0 auto;
  width: 96%;
}
.p-top-profile__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 100px;
}
.p-top-profile__ttl {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.6;
}
.p-top-profile__text {
  margin-top: 40px;
}
.p-top-profile__photo {
  width: 500px;
}
.p-top-news {
  margin: 120px auto 0;
  max-width: 1100px;
}
.p-top-news__ttl {
  font-size: 8rem;
  line-height: 1.1;
}
.p-top-news__btn {
  margin-top: 24px;
}
.p-top-news__list li + * {
  margin-top: 8px;
}
.p-top-news__list a {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 32px 40px;
  position: relative;
}
.p-top-news__list a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-top-news__list a::before {
  width: 22px;
  height: 18px;
  background: url("../images/icon_link_arrow.svg") center center no-repeat;
  background-size: contain;
}
.p-top-news__photo {
  border-radius: 45px;
  height: 172px;
  overflow: hidden;
  width: 262px;
}
.p-top-news__photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.p-top-news__text {
  width: 296px;
}
.p-top-news__text-date {
  margin-top: 8px;
}
.p-top-news__text-ttl {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-top: 8px;
}
.p-top-member {
  backdrop-filter: blur(30px);
  border: #fff 1px solid;
  border-radius: 80px;
  margin: 120px auto 0;
  padding-bottom: 200px;
  width: 96%;
}
.p-top-member .p-membership-guide {
  margin: 120px auto 0;
}
.c-btn, .c-btn__favorite--small, .c-btn__favorite, .c-btn__message--small, .c-btn__icon, .c-btn__red, .c-btn__green, .c-btn__blue, .c-btn__bg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn button, .c-btn__favorite--small button, .c-btn__favorite button, .c-btn__message--small button, .c-btn__icon button, .c-btn__red button, .c-btn__green button, .c-btn__blue button, .c-btn__bg button,
.c-btn input,
.c-btn__favorite--small input,
.c-btn__favorite input,
.c-btn__message--small input,
.c-btn__icon input,
.c-btn__red input,
.c-btn__green input,
.c-btn__blue input,
.c-btn__bg input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  color: var(--color-blue);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.c-btn button, .c-btn__favorite--small button, .c-btn__favorite button, .c-btn__message--small button, .c-btn__icon button, .c-btn__red button, .c-btn__green button, .c-btn__blue button, .c-btn__bg button,
.c-btn a,
.c-btn__favorite--small a,
.c-btn__favorite a,
.c-btn__message--small a,
.c-btn__icon a,
.c-btn__red a,
.c-btn__green a,
.c-btn__blue a,
.c-btn__bg a,
.c-btn input[type=submit],
.c-btn__favorite--small input[type=submit],
.c-btn__favorite input[type=submit],
.c-btn__message--small input[type=submit],
.c-btn__icon input[type=submit],
.c-btn__red input[type=submit],
.c-btn__green input[type=submit],
.c-btn__blue input[type=submit],
.c-btn__bg input[type=submit] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 45px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 64px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 256px;
}
.c-btn__bg button,
.c-btn__bg a {
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
}
.c-btn__blue button,
.c-btn__blue a {
  color: #fff;
  background-color: var(--color-blue);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-blue), 0.2), inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-blue), 0.2), inset 3px 3px 5px transparent;
}
.c-btn__green button,
.c-btn__green a {
  color: #fff;
  background-color: var(--color-green);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-green), 0.2), inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-green), 0.2), inset 3px 3px 5px transparent;
}
.c-btn__green.-disable a {
  color: var(--color-blue);
  pointer-events: none;
  background-color: var(--color-bg-multiply);
  -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
          box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.c-btn__red button,
.c-btn__red a,
.c-btn__red input[type=submit] {
  color: #fff;
  background-color: var(--color-red);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-red), 0.2), inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-red), 0.2), inset 3px 3px 5px transparent;
}
.c-btn__icon a,
.c-btn__icon button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
}
.c-btn__icon i {
  height: 16px;
  line-height: 1;
  margin-right: 8px;
  width: 21px;
}
.c-btn__icon i svg path {
  fill: var(--color-gray);
}
.c-btn__message--small a,
.c-btn__message--small button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 197px;
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
}
.c-btn__message--small i {
  height: 16px;
  line-height: 1;
  margin-right: 8px;
  width: 21px;
}
.c-btn__message--small i svg path {
  fill: var(--color-gray);
}
.c-btn__message--small.is-current a,
.c-btn__message--small.is-current button {
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
          box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.c-btn__message--small.is-current i svg path {
  fill: var(--color-red);
}
.c-btn__favorite a,
.c-btn__favorite button {
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
}
.c-btn__favorite i {
  height: 16px;
  line-height: 1;
  margin-right: 8px;
  width: 21px;
}
.c-btn__favorite i svg path {
  fill: var(--color-gray);
}
.c-btn__favorite.is-current a {
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
          box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.c-btn__favorite.is-current i svg path {
  fill: var(--color-red);
}
.c-btn__favorite--small a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 136px;
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
}
.c-btn__favorite--small i {
  height: 16px;
  line-height: 1;
  margin-right: 8px;
  width: 21px;
}
.c-btn__favorite--small i svg path {
  fill: var(--color-gray);
}
.c-btn__favorite--small.is-current a {
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
          box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.c-btn__favorite--small.is-current i svg path {
  fill: var(--color-red);
}
.c-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-form input,
.c-form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  margin: 0;
  outline: none;
  width: 100%;
  font-weight: 500;
  vertical-align: top;
}
.c-form input::-webkit-input-placeholder, .c-form textarea::-webkit-input-placeholder {
  color: var(--color-darkgray);
}
.c-form input::-moz-placeholder, .c-form textarea::-moz-placeholder {
  color: var(--color-darkgray);
}
.c-form input::-ms-input-placeholder, .c-form textarea::-ms-input-placeholder {
  color: var(--color-darkgray);
}
.c-form input::placeholder,
.c-form textarea::placeholder {
  color: var(--color-darkgray);
}
.c-form textarea {
  resize: vertical;
  font-weight: 500;
}
.c-form select {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  margin: 0;
  outline: none;
  width: 100%;
  color: inherit;
}
.c-form input[type=file] {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
}
.c-form input[type=checkbox],
.c-form input[type=radio] {
  pointer-events: none;
  position: absolute;
  opacity: 0;
}
.c-form input[type=checkbox]:checked + .c-form-checkbox:before, .c-form input[type=checkbox]:checked + .wpcf7-list-item-label:before {
  background-color: var(--color-green);
}
.c-form input[type=checkbox]:checked + .c-form-checkbox:after, .c-form input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.c-form input[type=radio]:checked + .c-form-radio:after {
  opacity: 1;
}
.c-form .c-error-text {
  margin-top: 16px;
}
.c-form__text {
  border-radius: 10px;
  padding: 0 24px;
  height: 40px;
  -webkit-box-shadow: inset -3px -3px 3px #fff, inset 3px 3px 3px rgba(0, 0, 0, 0.09);
          box-shadow: inset -3px -3px 3px #fff, inset 3px 3px 3px rgba(0, 0, 0, 0.09);
}
.is-error .c-form__text {
  -webkit-box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
          box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
  border: solid 1px var(--color-red);
  background-color: rgba(var(--rgb-red), 0.2);
}
.c-form__text.wpcf7-not-valid {
  -webkit-box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
          box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
  border: solid 1px var(--color-red);
  background-color: rgba(var(--rgb-red), 0.2);
}
.c-form__text-s {
  width: 84px !important;
}
.c-form__textarea {
  line-height: 1.6;
  border-radius: 10px;
  padding: 16px 24px;
  -webkit-box-shadow: inset -3px -3px 3px #fff, inset 3px 3px 3px rgba(0, 0, 0, 0.09);
          box-shadow: inset -3px -3px 3px #fff, inset 3px 3px 3px rgba(0, 0, 0, 0.09);
}
.is-error .c-form__textarea {
  -webkit-box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
          box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
  border: solid 1px var(--color-red);
  background-color: rgba(var(--rgb-red), 0.2);
}
.c-form__textarea.wpcf7-not-valid {
  -webkit-box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
          box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
  border: solid 1px var(--color-red);
  background-color: rgba(var(--rgb-red), 0.2);
}
.c-form__select {
  width: 100%;
  border: solid 1px var(--color-gray);
  position: relative;
}
.c-form__select select {
  padding: 8px 24px;
}
.c-form__select:before {
  content: "";
  width: 16px;
  height: 8px;
  background: url("../images/icon_select_arrow.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.is-error .c-form__select select {
  -webkit-box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
          box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.09);
  border: solid 1px var(--color-red);
  background-color: rgba(var(--rgb-red), 0.2);
}
.c-form__file {
  cursor: pointer;
}
.c-form__file::file-selector-button {
  cursor: pointer;
  background-color: var(--color-bg);
  border: solid 1px var(--color-blue);
  width: 160px;
  height: 40px;
  color: inherit;
  border-radius: 2em;
  margin-right: 16px;
}
.c-form__post, .c-form__pref {
  max-width: 400px;
}
.c-form__year {
  max-width: 238px;
}
.c-form__month, .c-form__day {
  max-width: 100px;
}
.c-form__btn {
  margin: 24px 0 0;
}
.c-form__btn button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--color-red);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-red), 0.2), inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-red), 0.2), inset 3px 3px 5px transparent;
}
.c-form__btn button {
  border-radius: 20px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  height: 60px;
  outline: none;
  padding: 0;
  width: 100%;
}
.c-form__reset {
  margin: 24px 0 0;
}
.c-form__reset button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--color-bg);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(0, 0, 0, 0.2), inset -3px -3px 3px transparent, inset 3px 3px 5px transparent;
}
.c-form__reset button {
  border-radius: 16px;
  border: none;
  cursor: pointer;
  color: var(--color-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  padding: 0;
  width: 100%;
}
.c-form__search {
  margin: 24px 0 0;
}
.c-form__search button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--color-red);
  -webkit-box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-red), 0.2), inset 3px 3px 5px transparent;
          box-shadow: -10px -10px 20px #fff, 10px 10px 20px rgba(var(--rgb-red), 0.2), inset 3px 3px 5px transparent;
}
.c-form__search button {
  border-radius: 16px;
  border: none;
  cursor: pointer;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  padding: 0;
  width: 100%;
}
.c-form__search button i {
  height: 18px;
  line-height: 1;
  margin-right: 8px;
  width: 18px;
}
.c-form-dl-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
.c-form-dl {
  line-height: 1.6;
}
.c-form-dl:nth-of-type(n + 2) {
  margin-top: 40px;
}
.c-form-dl__label {
  margin-bottom: 24px;
}
.p-member-confirm .c-form-dl__content {
  border-radius: 10px;
  padding: 12px 24px;
  -webkit-box-shadow: inset -3px -3px 3px #fff, inset 3px 3px 3px rgba(0, 0, 0, 0.09);
          box-shadow: inset -3px -3px 3px #fff, inset 3px 3px 3px rgba(0, 0, 0, 0.09);
}
.c-form-dl-row .c-form-dl {
  width: calc((100% - 24px) / 2);
  margin-top: 0;
}
.c-form-dl .c-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.c-form-dl .c-row.-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0 24px;
}
.c-form-dl .c-row.-nowrap + .-nowrap {
  margin-top: 24px;
}
.c-form-dl .c-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  grid-gap: 24px;
  gap: 24px;
}
.c-form-checkbox,
.wpcf7-list-item-label {
  position: relative;
  padding-left: 30px;
  line-height: 1;
  word-break: keep-all;
}
.c-form-checkbox:before, .c-form-checkbox:after,
.wpcf7-list-item-label:before,
.wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
}
.c-form-checkbox:before,
.wpcf7-list-item-label:before {
  width: 20px;
  aspect-ratio: 1/1;
  left: 0;
  border: solid 1px var(--color-blue);
  top: -2px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.c-form-checkbox:after,
.wpcf7-list-item-label:after {
  width: 15px;
  aspect-ratio: 1/0.5;
  border-left: solid 3px #fff;
  border-bottom: solid 3px #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 2px;
  top: 3px;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.is-error .c-form-checkbox:before,
.is-error .wpcf7-list-item-label:before {
  border: solid 1px var(--color-red);
  background-color: rgba(var(--rgb-red), 0.2);
}
.wpcf7-list-item-label:before {
  top: 0px;
}
.wpcf7-list-item-label:after {
  top: 4px;
}
.c-form-radio {
  position: relative;
  padding-left: 30px;
  line-height: 1;
  word-break: keep-all;
}
.c-form-radio:before, .c-form-radio:after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1/1;
  width: 20px;
  left: 0;
  top: -0.1em;
  border-radius: 100%;
}
.c-form-radio:before {
  border: solid 1px var(--color-blue);
}
.c-form-radio:after {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  background-color: var(--color-green);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-form-policy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  line-height: 1;
}
.c-form-policy a {
  text-decoration: underline;
}
.c-form-policy .c-form-checkbox:before {
  top: 1px;
}
.c-form-policy .c-form-checkbox:after {
  top: 5px;
}
.c-form-buttons {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
}
.c-error-text {
  color: var(--color-red);
}
.c-form-thanks {
  text-align: center;
}
.c-form-thanks__lede {
  margin-top: 40px;
}
.wpcf7-not-valid-tip {
  color: var(--color-red);
  margin-top: 16px;
}
.c-google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}
.c-google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.c-list-number > li {
  counter-increment: number;
  padding-left: 1.5em;
  position: relative;
}
.c-list-number > li:before {
  content: counter(number) "）";
  position: absolute;
  left: 0;
  top: 0;
}
.c-list-number-dots > li {
  counter-increment: number;
  padding-left: 1.5em;
  position: relative;
}
.c-list-number-dots > li:before {
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.c-list-number-dots > li:nth-of-type(n + 2) {
  margin-top: 8px;
}
.c-pager {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.c-pager__prev a, .c-pager__next a {
  display: block;
  position: relative;
}
.c-pager__prev a::before, .c-pager__next a::before {
  content: "";
  height: 13px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 13px;
}
.c-pager__prev a {
  padding-left: 20px;
}
.c-pager__prev a::before {
  border-top: var(--color-blue) 3px solid;
  border-left: var(--color-blue) 3px solid;
  left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-pager__next a {
  padding-right: 20px;
}
.c-pager__next a::before {
  border-right: var(--color-blue) 3px solid;
  border-bottom: var(--color-blue) 3px solid;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-pager__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
.c-pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 120px;
}
.c-pagination__prev, .c-pagination__next, .c-pagination__prev-all, .c-pagination__next-all {
  height: 14px;
  width: 20px;
}
.c-pagination__prev a, .c-pagination__next a, .c-pagination__prev-all a, .c-pagination__next-all a {
  height: 100%;
  display: block;
  opacity: 1;
}
.c-pagination__prev a[href="#"], .c-pagination__next a[href="#"], .c-pagination__prev-all a[href="#"], .c-pagination__next-all a[href="#"] {
  opacity: 0.5;
  pointer-events: none;
}
.c-pagination__prev i, .c-pagination__next i, .c-pagination__prev-all i, .c-pagination__next-all i {
  display: block;
  height: 100%;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 10px;
}
.c-pagination__prev i::before, .c-pagination__next i::before, .c-pagination__prev-all i::before, .c-pagination__next-all i::before {
  content: "";
  height: 13px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 13px;
}
.c-pagination__prev-all i::after, .c-pagination__next-all i::after {
  content: "";
  height: 13px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 13px;
}
.c-pagination__prev, .c-pagination__prev-all {
  margin-right: 32px;
}
.c-pagination__prev i::before, .c-pagination__prev-all i::before {
  border-top: var(--color-blue) 3px solid;
  border-left: var(--color-blue) 3px solid;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-pagination__prev-all i::after {
  border-top: var(--color-blue) 3px solid;
  border-left: var(--color-blue) 3px solid;
  -webkit-transform: rotate(-45deg) translate(-5px, -5px);
          transform: rotate(-45deg) translate(-5px, -5px);
}
.c-pagination__next, .c-pagination__next-all {
  margin-left: 32px;
}
.c-pagination__next a[href] i::before, .c-pagination__next-all a[href] i::before {
  border-top: var(--color-blue) 3px solid;
  border-right: var(--color-blue) 3px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-pagination__next-all i::after {
  border-top: var(--color-blue) 3px solid;
  border-right: var(--color-blue) 3px solid;
  -webkit-transform: rotate(45deg) translate(5px, -5px);
          transform: rotate(45deg) translate(5px, -5px);
}
.c-pagination span {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1;
}
.c-pagination span + span {
  margin-left: 32px;
}
.c-pagination span a {
  display: block;
  opacity: 0.5;
  padding-bottom: 2px;
}
.c-pagination span a[href] {
  opacity: 1;
  position: relative;
}
.c-pagination span a[href]::before {
  background-color: var(--color-blue);
  height: 2px;
  content: "";
  margin: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  width: 100%;
}
.c-ttl-section {
  text-align: left;
}
.c-ttl-section__ruby {
  font-size: 2.4rem;
  font-weight: bold;
}
.c-ttl-section__main {
  font-size: 8rem;
  line-height: 1;
  word-break: break-word;
}
.c-ttl-section__second {
  font-size: 4rem;
  line-height: 1.4;
}
.c-title-h2 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 16px;
}
.c-red {
  color: var(--color-red);
}
/**
* wordpress
* WYSIWYG compatchble style
*/
.c-wp-post__article p + p {
  margin-top: 64px;
}
.c-wp-post__article a {
  text-decoration: underline;
}
.c-wp-post__article strong {
  font-weight: bold;
}
.c-wp-post__article em {
  font-style: italic;
}
.c-wp-post__article ul {
  margin-left: 1em;
  display: block;
  list-style-type: disc !important;
  margin-before: 1em;
  margin-after: 1em;
  margin-start: 0px;
  margin-end: 0px;
  padding-start: 40px;
}
.c-wp-post__article ul li {
  list-style-type: disc !important;
}
.c-wp-post__article ol {
  margin-left: 1em;
  display: block;
  list-style-type: decimal !important;
  margin-before: 1em;
  margin-after: 1em;
  margin-start: 0px;
  margin-end: 0px;
  padding-start: 40px;
}
.c-wp-post__article ol li {
  list-style-type: decimal !important;
}
.c-wp-post__article li {
  display: list-item;
  text-align: match-parent;
}
.c-wp-post__article img {
  width: auto;
}
.c-wp-post__article .alignleft {
  display: inline;
  float: left;
}
.c-wp-post__article .alignright {
  display: inline;
  float: right;
}
.c-wp-post__article .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.c-wp-post__article blockquote {
  background-color: var(--color-bg-multiply);
  padding: 1em;
}
.c-wp-post__article blockquote.alignleft,
.c-wp-post__article .wp-caption.alignleft,
.c-wp-post__article img.alignleft {
  margin: 0.4em 1.6em 1.6em 0;
}
.c-wp-post__article blockquote.alignright,
.c-wp-post__article .wp-caption.alignright,
.c-wp-post__article img.alignright {
  margin: 0.4em 0 1.6em 1.6em;
}
.c-wp-post__article blockquote.aligncenter,
.c-wp-post__article .wp-caption.aligncenter,
.c-wp-post__article img.aligncenter {
  clear: both;
  margin-top: 0.4em;
  margin-bottom: 1.6em;
}
.c-wp-post__article .wp-caption.alignleft,
.c-wp-post__article .wp-caption.alignright,
.c-wp-post__article .wp-caption.aligncenter {
  margin-bottom: 1.2em;
}
.grecaptcha-badge {
  display: none;
}
/**
 * clearfix micro
 */
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
/**
 * text ellipsis., text...
 */
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.u-hide {
  display: none;
}
.u-click {
  cursor: pointer;
}
.u-tac {
  text-align: center;
}
.u-mt-1em {
  margin-top: 1em;
}
.u-mt-2em {
  margin-top: 2em;
}
.u-mt-8 {
  margin-top: 8px;
}
.u-mt-16 {
  margin-top: 16px;
}
.u-mt-24 {
  margin-top: 24px;
}
.u-mt-32 {
  margin-top: 32px;
}
/**
 * BrowserSync
 */
#__bs_notify__ {
  display: none !important;
  font-size: 8px !important;
  opacity: 0.25;
  max-height: 50px;
}
.__debug_mihon__ {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto 0 auto;
  z-index: 100000;
  pointer-events: none;
  cursor: none;
  width: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-animation: __debug_mihon__ 1s infinite;
          animation: __debug_mihon__ 1s infinite;
}
.__debug_mihon__ {
  padding-top: 0px;
  margin-top: 0px;
}
@-webkit-keyframes __debug_mihon__ {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.5;
  }
}
/*
@example
 <div class="mihon">
  <img src="./images/sample1.png" alt="" class="type_pc">
  <img src="./images/sample2.png" alt="" class="type_sp">
</div>
*/
@media (min-width: 960px) {
  .ex-link {
    opacity: 1;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
  .ex-link:hover {
    opacity: 0.5;
  }
  .sp {
    display: none !important;
  }
  .l-footer {
    min-width: 1100px;
  }
  .l-footer__nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-footer__nav ul li + li {
    margin-left: 40px;
  }
  .l-footer__foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-footer__sub ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-footer__sub ul li + li {
    margin-left: 40px;
  }
  .l-footer__link {
    margin-left: 40px;
  }
  .l-header__head {
    backdrop-filter: blur(30px);
    padding: 20px 40px;
  }
  .l-header__nav-list a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .l-header__nav-list a:hover {
    opacity: 0.5;
  }
  .l-header__logout a, .l-header__mypage a, .l-header__contact a {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .l-header__logout a:hover, .l-header__mypage a:hover, .l-header__contact a:hover {
    background-color: var(--color-red-multiply);
  }
  .l-header__btn {
    display: none;
  }
  .l-header__menu-list a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .l-header__menu-list a:hover {
    opacity: 0.5;
  }
  .l-header__menu-sns a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .l-header__menu-sns a:hover {
    opacity: 0.5;
  }
  .l-main {
    min-width: 1100px;
  }
  .l-main-top {
    min-width: 1100px;
  }
  .l-main-top main {
    min-width: 1100px;
  }
  .p-login__link li a:hover::before {
    -webkit-animation: 0.5s border linear;
            animation: 0.5s border linear;
  }
  .p-member-steps__h2 {
    font-size: 2.4rem;
  }
  .p-member-steps__h2 em {
    font-size: 6.4rem;
  }
  .p-member-form__h2 {
    font-size: 7.2rem;
  }
  .p-membership-guide__text {
    text-align: center;
  }
  .p-membership-guide__list {
    margin-top: 40px;
  }
  .p-mypage-favorite .c-search-list {
    margin-top: 120px;
  }
  .c-message-list__item a:hover::before {
    -webkit-transform: translate(10px, -50%);
            transform: translate(10px, -50%);
  }
  .c-message-list__item a::before {
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    right: 40px;
  }
  .c-message-list__item a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-mypage-message-detail__prev {
    margin: 200px auto 0;
  }
  .p-mypage-message-detail-head__name {
    font-size: 4.8rem;
  }
  .p-mypage-message-detail-content {
    height: 500px;
    overflow-y: scroll;
  }
  .p-mypage-message-detail-content__inner {
    padding: 24px 24px 24px 40px;
  }
  .c-message-preview-item {
    gap: 24px;
  }
  .c-message-preview-item__bubble {
    padding: 40px;
  }
  .c-message-preview-item__img {
    width: 80px;
  }
  .p-mypage-message-detail-form {
    padding: 20px;
  }
  .p-mypage-message-detail-form .c-form {
    gap: 60px;
  }
  .p-mypage-message-detail-form .c-form-dl {
    width: calc(100% - 60px - 254px);
  }
  .p-mypage-message-detail-form .c-system-message {
    padding: 20px;
  }
  .p-mypage-profile__img {
    width: 400px;
    margin: 120px auto 0;
  }
  .p-mypage-profile .c-form-buttons {
    margin-top: 120px;
  }
  .p-mypage__h2 {
    font-size: 6.4rem;
  }
  .p-mypage-top-message {
    margin-top: 200px;
  }
  .p-mypage-top-favorite {
    margin-top: 200px;
  }
  .p-mypage-top-profile {
    margin-top: 200px;
  }
  .p-mypage-top-profile-card {
    margin-top: 64px;
    gap: 64px;
  }
  .p-mypage-top-profile-card__img {
    width: 300px;
  }
  .p-mypage-top-profile-card__text {
    width: calc(100% - 300px - 64px);
  }
  .p-news__category a {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .p-news__category a:hover {
    background-color: var(--color-bg);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .p-news__category a.is-all {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .p-news__category a.is-all:hover {
    background-color: var(--color-green-multiply);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .p-news__list a:hover::before {
    -webkit-transform: translate(10px, -50%);
            transform: translate(10px, -50%);
  }
  .p-news__list a::before {
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    right: 40px;
  }
  .p-news__list a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .p-news-other__list a:hover::before {
    -webkit-transform: translate(10px, -50%);
            transform: translate(10px, -50%);
  }
  .p-news-other__list a::before {
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    right: 40px;
  }
  .p-news-other__list a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px;
    gap: 40px;
  }
  .c-search__h2 {
    font-size: 6.4rem;
  }
  .c-search__box {
    padding: 60px;
  }
  .church-tag-checkbox-label {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .church-tag-checkbox-label:hover {
    background-color: var(--color-bg);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-search-list__item {
    padding: 56px 40px;
    gap: 40px;
  }
  .c-search-list__img {
    max-width: 424px;
  }
  .-mypage .c-search-list__img {
    max-width: 300px;
  }
  .c-search-list__text {
    padding-bottom: 80px;
    width: calc(100% - 424px - 40px);
  }
  .-mypage .c-search-list__text {
    width: calc(100% - 300px - 40px);
  }
  .c-search-list__title {
    font-size: 4rem;
  }
  .-pastor .c-search-list__title {
    min-height: 2.8em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .c-search-list__outline {
    margin-top: 48px;
  }
  .c-search-list__buttons {
    position: absolute;
    bottom: 56px;
    gap: 16px;
  }
  .c-search-detail__h2 {
    font-size: 4rem;
  }
  .c-search-detail__h3 {
    font-size: 3.2rem;
  }
  .c-search-detail-head {
    gap: 56px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-search-detail-head__img {
    width: 400px;
  }
  .c-search-detail-head__text {
    width: calc(100% - 400px - 56px);
  }
  .c-search-detail-head__title {
    font-size: 4.8rem;
  }
  .c-search-detail-head__buttons {
    gap: 24px;
    margin-top: 64px;
  }
  .c-search-detail-outline__dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-search-detail-outline__dl dt {
    width: 240px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .c-search-detail-recommendation .c-search-detail__h2 {
    margin-bottom: 0;
  }
  .c-search-detail-footer__buttons-item {
    padding: 80px 0;
    width: 50%;
  }
  .c-search-detail-footer__buttons-item:nth-of-type(n + 2):before {
    width: 1px;
    height: 67.7%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-top-line {
    min-width: 1100px;
  }
  .p-top-mv {
    min-width: 1100px;
  }
  .p-top-mv__bg {
    background: url(../images/top/mask.png) no-repeat left bottom;
    background-size: 100% auto;
    height: 100%;
    position: absolute;
    left: 10%;
    top: -5%;
    width: 100%;
  }
  .p-top-mv__img {
    -webkit-mask-image: url("../images/top/mask.png");
            mask-image: url("../images/top/mask.png");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: 120% 110%;
            mask-position: 120% 110%;
    -webkit-mask-size: 95%;
            mask-size: 95%;
  }
  .p-top-mv__nav {
    left: 16px;
  }
  .p-top-mv__nav-list a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .p-top-mv__nav-list a:hover {
    opacity: 0.5;
  }
  .p-top-mv__nav-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-top-mv__nav-sub a {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .p-top-mv__nav-sub a:hover {
    background-color: var(--color-red-multiply);
  }
  .p-top-mv__nav-contact {
    margin-left: 8px;
  }
  .p-top-mv__sns a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .p-top-mv__sns a:hover {
    opacity: 0.5;
  }
  .p-top-situation__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-top-situation__list li + li {
    margin-left: 40px;
  }
  .p-top-about__list {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-top-about__list li {
    padding: 60px 32px;
    width: 340px;
  }
  .p-top-about__list li + li {
    margin-left: 40px;
  }
  .p-top-about__list p {
    margin-top: 60px;
  }
  .p-top-record__history-box dl {
    width: 446px;
  }
  .p-top-record__history-box a:hover {
    text-decoration: none;
  }
  .p-top-record__history-box figure {
    width: 584px;
  }
  .p-top-record__history-box-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-top-message__list li:nth-of-type(2n) {
    margin-left: auto;
  }
  .p-top-message__list li:nth-of-type(n + 3) {
    margin-top: 80px;
  }
  .p-top-profile__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-top-news__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-top-news__ttlarea {
    width: 300px;
  }
  .p-top-news__content {
    width: 744px;
  }
  .p-top-news__list a:hover::before {
    -webkit-transform: translate(10px, -50%);
            transform: translate(10px, -50%);
  }
  .p-top-news__list a::before {
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    right: 40px;
  }
  .p-top-news__list a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-top-news__text {
    margin-left: 40px;
  }
  .c-btn__bg button,
  .c-btn__bg a {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .c-btn__bg button:hover,
  .c-btn__bg a:hover {
    background-color: var(--color-bg);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-btn__blue button,
  .c-btn__blue a {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .c-btn__blue button:hover,
  .c-btn__blue a:hover {
    background-color: var(--color-blue-multiply);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-btn__green button,
  .c-btn__green a {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .c-btn__green button:hover,
  .c-btn__green a:hover {
    background-color: var(--color-green-multiply);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-btn__red button,
  .c-btn__red a,
  .c-btn__red input[type=submit] {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .c-btn__red button:hover,
  .c-btn__red a:hover,
  .c-btn__red input[type=submit]:hover {
    background-color: var(--color-red-multiply);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-btn__icon a,
  .c-btn__icon button {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .c-btn__icon a:hover,
  .c-btn__icon button:hover {
    background-color: var(--color-bg);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-btn__message--small a,
  .c-btn__message--small button {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .c-btn__message--small a:hover,
  .c-btn__message--small button:hover {
    background-color: var(--color-bg);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-btn__favorite a,
  .c-btn__favorite button {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .c-btn__favorite a:hover,
  .c-btn__favorite button:hover {
    background-color: var(--color-bg);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-btn__favorite--small a {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .c-btn__favorite--small a:hover {
    background-color: var(--color-bg);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-form__btn button {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .c-form__btn button:hover {
    background-color: var(--color-red-multiply);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-form__reset button {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .c-form__reset button:hover {
    background-color: var(--color-bg);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset -3px -3px 3px #fff, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-form__search button {
    -webkit-transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: background-color 0.2s, -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s;
    transition: box-shadow 0.2s, background-color 0.2s, -webkit-box-shadow 0.2s;
  }
  .c-form__search button:hover {
    background-color: var(--color-red-multiply);
    -webkit-box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -10px -10px 20px transparent, 0 10px 20px transparent, inset 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  .c-pager__prev a[href]:hover::before {
    -webkit-transform: translateX(-10px) rotate(-45deg);
            transform: translateX(-10px) rotate(-45deg);
  }
  .c-pager__next a[href]:hover::before {
    -webkit-transform: translateX(10px) rotate(-45deg);
            transform: translateX(10px) rotate(-45deg);
  }
  .c-pagination__prev a[href]:hover i, .c-pagination__prev-all a[href]:hover i {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  .c-pagination__next a[href]:hover i, .c-pagination__next-all a[href]:hover i {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  .c-pagination span a[href]:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  .c-wp-post__article a:hover {
    text-decoration: none;
  }
  .for-mobile {
    display: none;
  }
}
@media (max-width: 959px) {
  .pc {
    display: none !important;
  }
  .js-inview[data-inview=clip-photo] {
    clip-path: inset(0 25.641025641% round 2.5em);
  }
  .js-inview[data-inview=clip-photo].is-inview {
    clip-path: inset(0 0% round 2.5em);
  }
  .js-inview[data-inview=clip-photo-small] {
    clip-path: inset(0 25.641025641% round 4.375em);
  }
  .js-inview[data-inview=clip-photo-small].is-inview {
    clip-path: inset(0 0% round 4.375em);
  }
  html, body {
    width: 100%;
    height: 100%;
  }
  h1, h2, h3, h4, h5, h6, div, dl, dt, dd, p {
    margin: 0;
    padding: 0;
  }
  img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
  }
  .l-footer__name {
    font-size: 3.2rem;
  }
  .l-footer__nav ul {
    gap: 24px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    width: 280px;
  }
  .l-footer__nav ul li {
    width: 100px;
  }
  .l-footer__foot {
    margin-top: 40px;
    padding: 40px 20px;
  }
  .l-footer__copy {
    margin-top: 40px;
    text-align: center;
  }
  .l-footer__sub ul li {
    text-align: right;
  }
  .l-footer__sub ul li + li {
    margin-top: 24px;
  }
  .l-footer__link {
    margin-top: 24px;
    text-align: right;
  }
  .l-header__head {
    top: 20px;
  }
  .l-header__logo {
    background-color: var(--color-bg);
    border-radius: 50%;
  }
  .l-header__btn {
    top: 20px;
    right: 20px;
  }
  .l-main {
    padding: 120px 0 200px;
  }
  .p-404__btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .p-contact-guide {
    margin: 200px auto 0;
    width: 90%;
  }
  .p-contact-guide__ttl {
    font-size: 3.2rem;
  }
  .p-login__box {
    width: 90%;
  }
  .p-login__form {
    width: 90%;
  }
  .p-member-steps__h2 {
    font-size: 2.4rem;
  }
  .p-member-steps__h2 em {
    font-size: 4rem;
  }
  .p-member-form__h2 {
    font-size: 5.2rem;
  }
  .p-member-form__lede .c-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-member-download .c-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-membership-guide {
    margin: 200px auto 0;
    width: 90%;
  }
  .p-membership-guide__ttl {
    font-size: 4rem;
  }
  .p-membership-guide__list {
    margin-top: 56px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-mypage-favorite .c-search-list {
    margin-top: 80px;
  }
  .c-message-list__item a::before {
    top: 241px;
    right: 24px;
  }
  .c-message-list__item a {
    padding: 32px 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .c-message-list__item a:before {
    top: 36px;
  }
  .p-mypage-message-detail__prev {
    margin: 120px auto 0;
  }
  .p-mypage-message-detail-head__name {
    font-size: 4rem;
  }
  .p-mypage-message-detail-content {
    height: 300px;
  }
  .p-mypage-message-detail-content__outer {
    margin-left: -5%;
    margin-right: -5%;
  }
  .p-mypage-message-detail-content__inner {
    padding: 24px 16px;
  }
  .c-message-preview-item {
    gap: 12px;
  }
  .c-message-preview-item__text {
    max-width: 76%;
  }
  .c-message-preview-item__bubble {
    padding: 24px;
  }
  .c-message-preview-item__img {
    width: 40px;
  }
  .p-mypage-message-detail-form {
    margin-left: -5%;
    margin-right: -5%;
    padding: 20px 16px;
  }
  .p-mypage-message-detail-form .c-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .p-mypage-message-detail-form .c-form-dl {
    width: 100%;
  }
  .p-mypage-message-detail-form__btn {
    margin: 0 auto;
  }
  .p-mypage-message-detail-form .c-system-message {
    padding: 20px 16px;
  }
  .p-mypage-profile__img {
    width: 200px;
    margin: 80px auto 0;
  }
  .p-mypage-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-mypage-header .c-btn__icon {
    margin-left: auto;
    margin-top: 32px;
  }
  .p-mypage-header .c-btn__icon a {
    width: 150px;
  }
  .p-mypage__h2 {
    font-size: 4rem;
  }
  .p-mypage-top-message {
    margin-top: 120px;
  }
  .p-mypage-top-favorite {
    margin-top: 120px;
  }
  .p-mypage-top-profile {
    margin-top: 120px;
  }
  .p-mypage-top-profile-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 42px;
  }
  .p-mypage-top-profile-card__img {
    width: 200px;
    margin: 0 auto;
  }
  .p-mypage-top-profile-card__text {
    width: 100%;
    margin-top: 42px;
  }
  .p-news__category li {
    margin: 0 16px 16px 0;
  }
  .p-news__list a::before {
    top: 241px;
    right: 24px;
  }
  .p-news__list a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 16px;
    gap: 24px;
  }
  .p-news__list-photo {
    height: 172px;
    width: 100%;
  }
  .p-news__list-text {
    width: 90%;
  }
  .p-news-other__list.-noimage a:before {
    top: 40px;
  }
  .p-news-other__list a::before {
    top: 241px;
    right: 24px;
  }
  .p-news-other__list a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 16px;
    gap: 24px;
  }
  .p-news-other__list-photo {
    height: 172px;
    width: 100%;
  }
  .p-news-other__list-text {
    width: 90%;
  }
  .c-search__h2 {
    font-size: 4rem;
  }
  .c-search__box {
    padding: 16px;
  }
  .c-search .c-form-dl-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-search .c-form-dl-row .c-form-dl {
    width: 100%;
  }
  .c-search-list__item {
    padding: 56px 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .c-search-list__img {
    max-width: 200px;
  }
  .c-search-list__text {
    margin-top: 32px;
    width: 100%;
  }
  .c-search-list__title {
    font-size: 3.2rem;
  }
  .c-search-list__outline {
    margin-top: 32px;
  }
  .c-search-list__buttons {
    margin-top: 32px;
    gap: 24px;
  }
  .-mypage .c-search-list__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-search-detail__h2 {
    font-size: 3.2rem;
  }
  .c-search-detail__h3 {
    font-size: 2.4rem;
  }
  .c-search-detail-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .c-search-detail-head__img {
    width: 200px;
    margin: 0 auto;
  }
  .c-search-detail-head__text {
    margin-top: 40px;
  }
  .c-search-detail-head__buttons {
    margin-top: 48px;
    gap: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-search-detail-head .c-btn__icon a,
  .c-search-detail-head .c-btn__icon button {
    height: 40px;
    width: 197px;
  }
  .c-search-detail-head .c-btn__favorite a,
  .c-search-detail-head .c-btn__favorite button {
    height: 40px;
    width: 136px;
  }
  .c-search-detail-outline__dl dt {
    margin-bottom: 24px;
  }
  .c-search-detail-recommendation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-search-detail-recommendation__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-search-detail-footer__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-search-detail-footer__buttons-item {
    padding: 64px 0;
  }
  .c-search-detail-footer__buttons-item:nth-of-type(n + 2):before {
    width: 86.2%;
    height: 1px;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-top-mv__img {
    overflow: hidden;
    position: relative;
  }
  .p-top-mv__ttlarea {
    top: 40px;
  }
  .p-top-mv__ttl {
    width: 80%;
  }
  .p-top-mv__ttl-sub {
    font-size: 1.6rem;
    margin-top: 16px;
  }
  .p-top-mv__nav {
    right: 16px;
    bottom: 66px;
  }
  .p-top-mv__nav-list {
    margin-left: auto;
  }
  .p-top-mv__nav-contact {
    margin-top: 8px;
  }
  .p-top-mv__nav-contact a {
    width: 144px;
  }
  .p-top-situation {
    padding: 120px 20px;
  }
  .p-top-situation__ttl {
    font-size: 4rem;
    line-height: 1.6;
  }
  .p-top-situation__ttl-sub {
    font-size: 2.4rem;
    margin-top: 40px;
  }
  .p-top-situation__text {
    font-size: 1.6rem;
    margin-top: 40px;
  }
  .p-top-situation__text p ~ * {
    margin-top: 32px;
  }
  .p-top-situation__list {
    margin-top: 56px;
  }
  .p-top-situation__list li + li {
    margin-top: 40px;
  }
  .p-top-situation__list li a {
    margin: 0 auto;
  }
  .p-top-about__bg {
    padding: 120px 20px 390px;
  }
  .p-top-about__ttl {
    line-height: 1.6;
  }
  .p-top-about__lead {
    margin-top: 40px;
  }
  .p-top-about__list {
    margin: -340px auto 0;
    width: 90%;
  }
  .p-top-about__list li {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px;
    width: 100%;
  }
  .p-top-about__list li + li {
    margin-top: 16px;
  }
  .p-top-about__list figure {
    height: 60px;
    width: 60px;
  }
  .p-top-about__list p {
    margin-left: 24px;
    width: calc(100% - 60px - 24px);
  }
  .p-top-record__lead {
    margin: 0 auto;
    width: 90%;
  }
  .p-top-record__history {
    width: 90%;
  }
  .p-top-record__history-box dl + * {
    margin-top: 40px;
  }
  .p-top-record__history-box figure + * {
    margin-top: 40px;
  }
  .p-top-record__history-box-inner {
    backdrop-filter: blur(30px);
  }
  .p-top-record__history-box-inner--single {
    backdrop-filter: blur(30px);
  }
  .p-top-record__history-text {
    font-size: 4rem;
    line-height: 1.2;
  }
  .p-top-record__text dl dt {
    font-size: 2.4rem;
  }
  .p-top-message__inner {
    width: 90%;
  }
  .p-top-message__line {
    top: -142px;
    width: 2359px;
  }
  .p-top-message__list {
    width: 90%;
  }
  .p-top-message__list li {
    width: 100%;
  }
  .p-top-message__list li + li {
    margin-top: 40px;
  }
  .p-top-message__list li:nth-of-type(1)::after {
    height: 400px;
    top: -89px;
  }
  .p-top-message__list li:nth-of-type(2)::after {
    background: url(../images/top/message_line.svg) no-repeat -500px -160px;
    height: 200px;
    top: -145px;
  }
  .p-top-message__list li:nth-of-type(3)::after {
    background: url(../images/top/message_line.svg) no-repeat -830px -145px;
    height: 200px;
    top: -145px;
  }
  .p-top-message__list li:nth-of-type(4)::after {
    background: url(../images/top/message_line.svg) no-repeat -400px -1110px;
    height: 400px;
    top: -145px;
  }
  .p-top-message__list li::after {
    background: url(../images/top/message_line.svg) no-repeat left top;
    content: "";
    height: 200px;
    position: absolute;
    top: -50px;
    left: -100px;
    width: calc(100vw + 100px);
  }
  .p-top-profile__inner {
    padding: 120px 20px;
  }
  .p-top-profile__photo {
    margin-top: 40px;
    width: 100%;
  }
  .p-top-news {
    width: 90%;
  }
  .p-top-news__ttl {
    font-size: 5.6rem;
  }
  .p-top-news__content {
    margin-top: 40px;
  }
  .p-top-news__list a::before {
    top: 241px;
    right: 24px;
  }
  .p-top-news__list a {
    padding: 32px 24px;
    display: block;
  }
  .p-top-news__photo {
    width: 100%;
  }
  .p-top-news__text {
    margin-top: 24px;
    width: 90%;
  }
  .p-top-member {
    padding-bottom: 120px;
  }
  .c-form-dl .c-row.-nowrap {
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-form-dl .c-grid.-nowrap {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
  .c-form-buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .c-pagination__prev, .c-pagination__prev-all {
    margin-right: 24px;
  }
  .c-pagination__prev-all {
    margin-right: 16px;
  }
  .c-pagination__next, .c-pagination__next-all {
    margin-left: 24px;
  }
  .c-pagination__next-all {
    margin-left: 16px;
  }
  .c-ttl-section__ruby {
    font-size: 1.6rem;
  }
  .c-ttl-section__main {
    font-size: 6.4rem;
  }
  .for-large {
    display: none;
  }
}
@media (min-width: 520px) and (max-width: 1050px) {
  .l-header__nav {
    display: none;
  }
  .l-header__btn {
    margin-left: auto;
    display: block;
  }
}
@media (hover: hover) {
  .c-search-list__link:hover ~ .c-search-list__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .c-term-content__block a:hover {
    text-decoration: none;
  }
  .c-form-policy a:hover {
    text-decoration: none;
  }
}/*# sourceMappingURL=../../_cache/_maps/styles.css.map */
