@charset "UTF-8";
/* default settings */
/* reset browser (chrome, safari, firefox, ie, edge)
/* only for new website (remove if you are updating for other website)
@import "reset";
/* =================================================================== */
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/*/
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme*/
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.*/
/* ==========================================================================
 * Base styles: opinionated defaults
 * ==========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;700;800&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  color: #027749;
  line-height: 1.5;
  font-size: 16px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
}
@media (max-width: 768px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media (min-width: 769px) and (max-width: 769px) {
  html {
    font-size: 1.25vw;
  }
}

/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* Vendor-prefixed and regular ::selection selectors cannot be combined:
* https://stackoverflow.com/a/16982510/7133471
*
* Customize the background color to match your design.*/
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
\::-moz-selection,
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440*/
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.*/
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.*/
textarea {
  resize: vertical;
}

/* ==========================================================================
 * Author's custom styles
 * ==========================================================================*/
/* ==========================================================================
 * Helper classes
 * ==========================================================================*/
/*
 * Hide visually and from screen readers*/
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe*/
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1*/
}
.sr-only.focusable:active, .sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638*/
/*
 * Hide visually and from screen readers, but maintain layout*/
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.*/
.clearfix::before {
  content: " ";
  display: table;
}
.clearfix::after {
  content: " ";
  display: table;
  clear: both;
}

/* ==========================================================================
* EXAMPLE Media Queries for Responsive Design.
* These examples override the primary ('mobile first') styles.
* Modify as content requires.
* ==========================================================================*/
@media only screen and (min-width: 35em) { /* Style adjustments for viewports that meet the condition*/ }
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { /* Style adjustments for high resolution devices*/ }
/* ==========================================================================
 * Print styles.
 * Inlined to avoid the additional HTTP request:
 * https://www.phpied.com/delay-loading-your-print-css/
 * ==========================================================================*/
@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a {
    text-decoration: underline;
  }
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol*/
  a[href^="#"]::after, a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables*/
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
ul, li, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
            transform: scale3d(1.3, 1.3, 1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
            transform: scale3d(1.3, 1.3, 1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  html.is-disabled {
    overflow: hidden;
  }
}

body.is-loading {
  overflow: hidden;
}

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

@media (min-width: 769px) {
  .trans {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .trans:hover {
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

.fade-slidein {
  position: relative;
  -webkit-transform: translateY(3.75rem);
          transform: translateY(3.75rem);
  opacity: 0;
}
.fade-slidein.animated {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-18%);
          transform: translateX(-18%);
}
.fadeInLeft.animated {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(18%);
          transform: translateX(18%);
}
.fadeInRight.animated {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.main {
  margin: 0 auto;
  position: relative;
  max-width: 24.375rem;
}
@media (min-width: 769px) {
  .main {
    padding-top: 3.25rem;
  }
}
@media (max-width: 768px) {
  .main {
    padding-top: 3.125rem;
  }
}
.main__sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .main__sticky {
    display: none;
  }
}
.main__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #FFDFDF;
}
@media (min-width: 769px) {
  .main__bg {
    background: #FFDFDF url("../images/bgd_page_pc.png") no-repeat center center/100% auto;
  }
}
@media (max-width: 768px) {
  .main__bg {
    display: none;
  }
}
.main__bg:before {
  content: "";
  background: url("../images/bg_pattern.png") repeat center top/auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.2;
}
.main__inner {
  position: relative;
  background-color: #FFB0B0;
  z-index: 1;
}
.main__inner::before {
  content: "";
  background: url("../images/bg_pattern.png") repeat-y center top/100% auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.2;
}
@media (min-width: 769px) {
  .main__inner {
    left: 50%;
    -webkit-transform: translateX(-1.375rem);
            transform: translateX(-1.375rem);
    width: 25rem;
    -webkit-box-shadow: 0 0 0.625rem rgba(236, 18, 52, 0.2);
            box-shadow: 0 0 0.625rem rgba(236, 18, 52, 0.2);
  }
}
@media (min-width: 769px) {
  .main__pagi {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    pointer-events: auto;
    width: calc(50% + -3.5rem);
    z-index: 2;
  }
}
@media (min-width: 769px) {
  .main__pagi .navi-left {
    height: 100%;
  }
}
@media (min-width: 769px) {
  .main__pagi .navi-left__wrap {
    height: 100%;
    width: 19.3125rem;
    margin-inline: auto;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    pointer-events: auto;
    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;
  }
}
@media (min-width: 769px) {
  .main__pagi .navi-left__menu {
    margin-top: 1.25rem;
    width: 100%;
  }
}
.main__pagi .navi-left__menu a {
  text-decoration: none;
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  letter-spacing: 0;
  position: relative;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .main__pagi .navi-left__menu a {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
}
.main__pagi .navi-left__menu a:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0.5rem;
  height: 0.8125rem;
  background: url("../images/navi_arr.png") no-repeat center/contain;
  right: 1.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 1025px) {
  .main__pagi .navi-left__menu a:after {
    -webkit-transition: right 0.3s ease-in-out;
    transition: right 0.3s ease-in-out;
  }
}
.main__pagi .navi-left__menu .navi-left__menu__logo img {
  margin-left: 1rem;
}
.main__pagi .navi-left__img {
  width: 7rem;
  height: 6.9375rem;
  margin-inline: auto;
  position: relative;
}
.main__pagi .navi-left__img .txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 7.125rem;
}
.main__pagi .navi-left__img .txt img {
  width: 100%;
}
.main__pagi .navi-left__img .img {
  position: relative;
  z-index: 1;
  padding-top: 1.375rem;
}
.main__pagi .navi-left__img .img img {
  width: 100%;
}
.main__pagi .navi-left__anchor {
  margin-top: 0.4375rem;
  padding-left: 1.0625rem;
}
.main__pagi .navi-left__anchor a {
  padding-block: 1.0625rem;
  padding-inline: 4.5rem 0.9375rem;
  text-align: left;
  position: relative;
  font-weight: 600;
}
.main__pagi .navi-left__anchor a:not(:last-child) {
  border-bottom: 2px solid #FCF2E3;
}
@media (min-width: 769px) {
  .main__pagi .navi-left__anchor a:hover:after {
    right: 0;
  }
}
.main__pagi .navi-left__anchor a:after {
  right: 0.625rem;
}
.main__pagi .navi-left__anchor a.item--01 {
  padding-bottom: 0.9375rem;
  background: url("../images/navi_icon01.png") no-repeat left top -2px/4.3125rem;
}
.main__pagi .navi-left__anchor a.item--02 {
  letter-spacing: -0.05em;
  background: url("../images/navi_icon02.png") no-repeat left 2px top -0.375rem/4.3125rem;
}
.main__pagi .navi-left__anchor a.item--03 {
  background: url("../images/navi_icon03.png") no-repeat left top 1px/4rem;
  position: relative;
}
.main__pagi .navi-left__anchor a.item--04 {
  padding-block: 0.5rem;
  background: url("../images/navi_icon04.png") no-repeat left top/4rem;
}
.main__pagi .navi-left__anchor a.item--04 .small {
  display: block;
  letter-spacing: 0.03em;
  font-size: 0.75rem;
  margin-top: 1px;
  margin-left: -0.25rem;
}
.main__pagi .navi-left__anchor a.item--05 {
  background: url("../images/navi_icon05.png") no-repeat left 0.9375rem top -2px/2.5rem;
}
.main__pagi .navi-left__link {
  margin-top: 0.9375rem;
  text-align: center;
}
.main__pagi .navi-left__link .item {
  padding-block: 0;
  padding-right: 1rem;
  position: relative;
  height: 2.1875rem;
  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;
  letter-spacing: 0.06em;
}
.main__pagi .navi-left__link .item:not(:last-child) {
  margin-bottom: 0.4375rem;
}
.main__pagi .navi-left__link .item:after {
  right: 0.875rem;
}
@media (min-width: 769px) {
  .main__pagi .navi-left__link .item:hover:after {
    right: 0.625rem;
  }
}
.main__pagi .navi-left__link .item--01 {
  font-family: "游ゴシック", "YuGothic", "Yu Gothic", sans-serif;
  border: 0.125rem solid #027749;
  text-indent: 0.875rem;
}
.main__pagi .navi-left__link .item--02 {
  color: #fff;
  background: url("../img/nav_bg.png") no-repeat center/100% 100%;
}
.main__pagi .navi-left__link .item--02:after {
  background-image: url("../img/navi_arr-white.png");
}
.main__pagi .navi-left__fix {
  pointer-events: auto;
  width: 16.0625rem;
  margin-top: 1.125rem;
  margin-inline: auto;
  text-indent: 0.625rem;
}
.main__pagi .navi-left__fix a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  border-radius: 62.4375rem;
  -webkit-box-shadow: 0.375rem 0.3125rem 0 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0.375rem 0.3125rem 0 0 rgba(0, 0, 0, 0.3);
  height: 3rem;
  padding: 1.3125rem 1.75rem 1.3125rem 0.625rem;
  background-color: #ec1234;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.9375rem;
}
.main__pagi .navi-left__fix a:after {
  right: 1.5rem;
  width: 0.625rem;
  height: 1.0625rem;
  background-image: url("../img/navi_arr-white.png");
}
.main__pagi .navi-left__fix a:hover:after {
  right: 1.25rem;
}
.main__pagi .navi-left__logo {
  position: absolute;
  bottom: 1.5rem;
  left: 2.25rem;
}
.main__wrapper {
  position: relative;
  z-index: 2;
}

.navi-fix {
  z-index: 50;
  position: fixed;
  bottom: 9.375rem;
  right: 0;
  width: 18.75rem;
}
@media screen and (min-width: 1350px) {
  .navi-fix {
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .navi-fix:hover {
    width: 21.875rem;
  }
}
@media (max-width: 768px) {
  .navi-fix {
    width: 12.3125rem;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
    bottom: 1.25rem;
  }
}
.navi-fix a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 62.4375rem 0 0 62.4375rem;
  letter-spacing: 0.06em;
  height: 3.9375rem;
  color: #FCF2E3;
  background-color: #007749;
  font-size: 1.25rem;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0.3125rem 0.3125rem 0 0 rgba(0, 0, 0, 0.3);
  padding: 0.3125rem 0.625rem 0.5rem 2.6875rem;
}
@media (max-width: 768px) {
  .navi-fix a {
    background-color: #fff;
    color: #E84217;
    padding: 0.3125rem 0.625rem 0.3125rem 1.125rem;
    height: 2.5625rem;
    font-size: 1rem;
    line-height: 1.4;
  }
  .navi-fix a:after {
    content: "";
    position: absolute;
    background: url("../images/navi_arr-orange.png") no-repeat center/contain;
    right: 2.1875rem;
    height: 1.375rem;
    width: 0.6875rem;
  }
}
.navi-fix.is-show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.page-top {
  width: 5.625rem;
  position: fixed;
  bottom: 1.875rem;
  z-index: 100;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  cursor: pointer;
}
.page-top.is-show {
  opacity: 1;
}
@media (min-width: 769px) {
  .page-top {
    right: 1.875rem;
  }
}
@media (max-width: 768px) {
  .page-top {
    width: 4.6875rem;
    left: 0.625rem;
  }
}

.btn-fixed-right a {
  text-decoration: none;
  line-height: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: fixed;
}
.btn-fixed-right .btn01 {
  width: 17.5rem;
  height: 2.1875rem;
  position: fixed;
  right: 0;
  z-index: 99;
  bottom: 17.25rem;
  border: 1px solid #F7D01E;
  border-right: 0;
}
@media (min-width: 769px) {
  .btn-fixed-right .btn01 {
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .btn-fixed-right .btn01:hover {
    width: 20.625rem;
  }
}
.btn-fixed-right .btn01 a {
  margin-top: -0.125rem;
  padding-left: 1rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: #F7D01E;
  letter-spacing: 0;
  height: 2.1875rem;
}
.btn-fixed-right .btn02 {
  width: 17.5rem;
  height: 2.1875rem;
  background: url("../images/navi_bgd_white.png") no-repeat center/100% 100%;
  position: fixed;
  right: 0;
  bottom: 14.5625rem;
  z-index: 99;
}
@media (min-width: 769px) {
  .btn-fixed-right .btn02 {
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .btn-fixed-right .btn02:hover {
    width: 20rem;
  }
}
.btn-fixed-right .btn02 a {
  margin-top: -0.0625rem;
  padding-left: 1rem;
  font-size: 0.8125rem;
  font-weight: bold;
  color: #E84217;
  letter-spacing: 0.06em;
  height: 2.1875rem;
}

.id {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  top: -3.25rem;
  left: 0;
  z-index: -1;
  background-color: transparent;
}

.header {
  background-color: #fff;
  text-align: center;
  position: relative;
  z-index: 13;
  padding: 0.875rem 0 1rem;
  height: 3.25rem;
}
@media (min-width: 769px) {
  .header {
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(calc(-1.375rem));
            transform: translateX(calc(-1.375rem));
    width: 25rem;
    -webkit-box-shadow: 0 0 0.625rem rgba(236, 18, 52, 0.1);
            box-shadow: 0 0 0.625rem rgba(236, 18, 52, 0.1);
  }
}
@media (max-width: 768px) {
  .header {
    background: #fff;
    padding-inline: 0.8125rem 1.1875rem;
    height: 3.125rem;
    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;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .header:before {
    display: none;
  }
}
.header__logo {
  display: inline-block;
  margin: 0;
  line-height: 0;
}
@media (min-width: 769px) {
  .header__logo {
    margin-top: -0.3125rem;
  }
}
@media (max-width: 768px) {
  .header__logo {
    width: 2.875rem;
  }
}
.header__logo a {
  display: block;
}
.header__logo img {
  width: 2.875rem;
}
.header__icon {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  width: 2.5rem;
  z-index: 100;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__icon {
    right: 1rem;
  }
}
.header__icon i {
  width: 100%;
  height: 0.1875rem;
  background-color: #027749;
  display: block;
  margin-block: 0.375rem;
  border-radius: 0rem;
}

.menu-mobile {
  position: fixed;
  top: 3.125rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .menu-mobile {
    pointer-events: none;
    background-color: #FFDFDF;
  }
  .menu-mobile:after {
    content: "";
    background: url(../images/bg_pattern.png) repeat-y center top/100% auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.2;
  }
  .menu-mobile .header__logo {
    position: absolute;
    top: -2.5625rem;
    left: calc(50% - 0.1875rem);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 1;
  }
  .menu-mobile .header__logo img {
    margin-top: -1px;
  }
}
@media (min-width: 769px) {
  .menu-mobile {
    width: calc(50% + -1.375rem);
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
    opacity: 1;
  }
}
.menu-mobile__wrap {
  height: 100%;
  position: relative;
  z-index: 2;
}
@media (min-width: 769px) {
  .menu-mobile__wrap {
    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;
    height: 100vh;
  }
}
@media screen and (min-width: 769px) and (max-width: 993px) {
  .menu-mobile__wrap {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 769px) {
  .menu-mobile__inner {
    margin-top: 0.25rem;
    margin-right: -10rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 993px) {
  .menu-mobile__inner {
    margin-right: 1.75rem;
  }
}
@media (max-width: 768px) {
  .menu-mobile__inner {
    padding-block: 3.75rem 6.25rem;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
  }
}
.menu-mobile__close {
  position: absolute;
  top: -2.8125rem;
  right: calc(50% - 23.625rem / 2);
  width: 2.875rem;
  height: 2.5rem;
  z-index: 2;
  background-color: #fff;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-mobile__close {
    right: 0.75rem;
  }
}
@media (min-width: 769px) {
  .menu-mobile__close {
    display: none;
  }
}
.menu-mobile__close:before, .menu-mobile__close:after {
  position: absolute;
  left: 1.3125rem;
  content: " ";
  height: 100%;
  width: 0.25rem;
  background-color: #027749;
  border-radius: 0rem;
}
.menu-mobile__close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu-mobile__close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.menu-mobile__list {
  width: 16rem;
  margin-inline: auto;
}
.menu-mobile__list a {
  color: #027749;
  font-size: 1.125rem;
  font-weight: 800;
  display: block;
  text-decoration: none;
  position: relative;
  text-align: center;
  width: 15.625rem;
  height: 3rem;
  background-color: #fff !important;
  border-radius: 2.5rem;
  line-height: 3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(236, 18, 52, 0.1);
          box-shadow: 0 0.1875rem 0.375rem rgba(236, 18, 52, 0.1);
}
.menu-mobile__list .menu-anchor {
  margin-top: 0.6875rem;
}
.menu-mobile__list .menu-anchor__item {
  margin: 0 auto;
  margin-bottom: 0.625rem;
  text-align: center;
  background-image: none !important;
  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;
}
.menu-mobile__list .menu-anchor__item:after {
  content: "";
  position: absolute;
  display: inline-block;
  right: 1.1875rem;
  top: 48.7%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  width: 0.5rem;
  height: 0.75rem;
  background: url("../images/ico_arr_pink.svg") no-repeat center/100% auto;
}
@media (min-width: 769px) and (hover: hover) {
  .menu-mobile__list .menu-anchor__item:hover:after {
    right: 0.75rem;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }
}
.menu-mobile__list .menu-link {
  margin: 0 auto;
  margin-top: 1.0625rem;
}
.menu-mobile__list .menu-link__item {
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background-color: #027749 !important;
}
.menu-mobile__list .menu-link__item:after {
  content: "";
  position: absolute;
  display: inline-block;
  right: 1.125rem;
  top: 48%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  width: 0.5rem;
  height: 0.75rem;
  background: url("../images/ico_arr_white.svg") no-repeat center/100% auto;
}
@media (min-width: 769px) and (hover: hover) {
  .menu-mobile__list .menu-link__item:hover:after {
    right: 0.75rem;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }
}
.menu-mobile.is-show {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

.footer {
  padding-block: 2.6875rem 2.75rem;
  background-color: #007749;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer {
    padding-block: 1.0625rem;
  }
}
.footer .copy-right {
  margin: 0;
  text-align: center;
  font-size: 0.625rem;
  font-weight: bold;
  color: #fff;
  font-family: "游ゴシック", "YuGothic", "Yu Gothic", sans-serif;
}

.modal {
  display: none;
}
.modal__content > .f-button.is-close-btn {
  opacity: 1;
  background: transparent;
  width: 2rem;
  height: 2rem;
  border: none;
  right: 0 !important;
  top: 1.5625rem !important;
}
@media (min-width: 769px) {
  .modal__content > .f-button.is-close-btn {
    width: 3rem;
    height: 3rem;
    top: 0.5rem !important;
  }
}
.modal__content.--apply {
  background: transparent;
  width: 21.875rem;
  padding: 0;
}
@media (min-width: 769px) {
  .modal__content.--apply {
    width: 46.25rem;
  }
}
.modal__content.--apply .box {
  margin-inline: auto;
}
@media (min-width: 769px) {
  .modal__content.--apply .box {
    margin-inline: 0;
  }
}
.modal__content.--apply .box__title {
  margin-bottom: -2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .modal__content.--apply .box__title {
    margin-bottom: -1.875rem;
    text-align: center;
  }
}
.modal__content.--apply .box__title img {
  width: 100%;
}
@media (min-width: 769px) {
  .modal__content.--apply .box__title img {
    margin: 0 auto;
    width: 11.25rem;
  }
}
.modal__content.--apply .box__product {
  padding-inline: 0.75rem;
  background-color: #fff;
  border-radius: 0.5rem;
  padding-block: 2rem 1.5rem;
  position: relative;
}
.modal__content.--apply .box__product:before {
  content: "構成待ち";
  position: absolute;
  top: 1.5625rem;
  right: 1rem;
  background-color: #333333;
  color: #fff;
  opacity: 0.5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  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;
  width: 3.875rem;
  height: 1.3125rem;
}
.modal__content.--apply .box__product .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal__content.--apply .box__product .item:not(:last-child) {
  margin-bottom: 1px;
}
.modal__content.--apply .box__product .item__img {
  -webkit-box-flex: 7.5625rem;
      -ms-flex: 7.5625rem 0 0px;
          flex: 7.5625rem 0 0;
}
.modal__content.--apply .box__product .item__infor {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: -0.1875rem;
}
.modal__content.--apply .box__product .item__title {
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: #027749;
}
.modal__content.--apply .box__product .item__note {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
  line-height: 1.375;
  font-weight: 500;
  color: #626262;
}

.fancybox__container .fancybox__backdrop {
  background: rgba(255, 235, 235, 0.7);
}

.modal-recommend {
  position: fixed;
  display: none;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.modal-recommend__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(255, 235, 235, 0.7);
}
.modal-recommend__close {
  position: absolute;
  top: 0rem;
  right: 1.25rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 3;
}
@media (min-width: 769px) {
  .modal-recommend__close {
    top: -4.3125rem;
    left: 50%;
    -webkit-transform: translateX(calc(-50% + 28.5vw));
            transform: translateX(calc(-50% + 28.5vw));
    width: 3rem;
    height: 3rem;
  }
}
.modal-recommend__content {
  padding-top: 3.125rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  height: 19rem;
}
@media (min-width: 769px) {
  .modal-recommend__content {
    padding-top: 0;
    width: calc(100% + 3.125rem);
    height: auto;
    overflow: unset;
    left: -3.125rem;
  }
}
@media (max-width: 768px) {
  .modal-recommend__inner {
    overflow: hidden;
  }
}
.modal-recommend__inner .splide {
  width: 100%;
}
.modal-recommend__inner .splide__track {
  height: auto;
  padding-bottom: 1.875rem;
}
@media (min-width: 769px) {
  .modal-recommend__inner .splide__track {
    padding-bottom: 0;
  }
}
.modal-recommend__inner .splide__slide {
  margin-right: 0.625rem;
  background-color: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 0.5rem rgba(236, 18, 52, 0.1);
          box-shadow: 0 0 0.5rem rgba(236, 18, 52, 0.1);
  padding: 0.625rem;
  opacity: 0.6;
  width: 21.875rem !important;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 769px) {
  .modal-recommend__inner .splide__slide {
    margin: 0 1.6vw;
    width: 57.813vw !important;
    padding-bottom: 22.933%;
    height: auto;
    border-radius: 1rem;
    position: relative;
  }
  .modal-recommend__inner .splide__slide:first-child {
    margin-left: 0;
  }
  .modal-recommend__inner .splide__slide img {
    width: 39.6875vw;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .modal-recommend__inner .splide__slide.is-next {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .modal-recommend__inner .splide__slide.is-next img {
    left: 0.875rem;
  }
  .modal-recommend__inner .splide__slide.is-prev {
    text-align: right;
    right: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .modal-recommend__inner .splide__slide.is-prev img {
    right: 0.875rem;
  }
}
.modal-recommend__inner .splide__slide.is-active {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 769px) {
  .modal-recommend__inner .splide__slide.is-active {
    width: 57.813vw !important;
    padding-bottom: 31.655%;
  }
  .modal-recommend__inner .splide__slide.is-active img {
    width: 39.688vw;
  }
}
@media (min-width: 769px) {
  .modal-recommend__inner .splide__slide.is-active img {
    -webkit-transform: scale(1.37796);
            transform: scale(1.37796);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.37796);
            transform: translate(-50%, -50%) scale(1.37796);
  }
}
.modal-recommend__inner .splide__arrow {
  opacity: 1;
  background-color: #EC1234;
  width: 1.5rem;
  height: 1.5rem;
}
.modal-recommend__inner .splide__arrow:before {
  content: "";
  width: 0.5rem;
  height: 0.6875rem;
  background: url("../images/ico_arr.svg") no-repeat center/contain;
}
.modal-recommend__inner .splide__arrow svg {
  display: none;
}
.modal-recommend__inner .splide__arrow--prev {
  left: 0;
}
.modal-recommend__inner .splide__arrow--prev:before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.modal-recommend__inner .splide__arrow--next {
  right: 0;
}
.modal-recommend__pagi {
  position: relative;
  height: 1.5rem;
  width: 8.5rem;
  margin-inline: auto;
  margin-top: -0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .modal-recommend__pagi {
    margin-top: -0.5rem;
    height: 1.625rem;
  }
}
@media (min-width: 769px) {
  .modal-recommend__pagi {
    left: 1.125rem;
    position: absolute;
    left: calc(50% + 1.25rem);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -3.0625rem;
  }
}
.modal-recommend__pagi .count {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
.modal-recommend__pagi .count small {
  font-size: 0.875rem;
  letter-spacing: -0.15em;
}
.modal-recommend__pagi .count small:before {
  content: "/";
  letter-spacing: 0.04em;
  display: inline-block;
}
.modal-recommend .splide__slide img {
  border-radius: 0.25rem;
}
@media (min-width: 769px) {
  .modal-recommend .splide__slide img {
    border-radius: 0.5rem;
  }
}
.modal-recommend.is-prep {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .modal-recommend .splide__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#modal-apply {
  margin-top: -2.5rem;
  padding: 3.125rem 0 2rem;
  display: table;
  max-height: 100vh;
  max-height: 100dvh;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 769px) {
  #modal-apply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: unset;
    height: auto;
  }
}
#modal-apply .box {
  max-height: calc(100vh - 5.125rem);
  max-height: calc(100dvh - 5.125rem);
  height: 100%;
  overflow: hidden;
}
@media (min-width: 769px) {
  #modal-apply .box {
    max-height: unset;
    height: 100%;
  }
}
#modal-apply .box-product {
  padding: 3.25rem 0.75rem 1.5rem 1.75rem;
  background-color: #fff;
  border-radius: 0.5rem;
}
@media (min-width: 769px) {
  #modal-apply .box-product {
    padding: 2.4375rem 0.75rem 1.5rem 3.125rem;
    border-radius: 1rem;
  }
}
#modal-apply .box-product .product {
  height: calc(100vh - 13.75rem);
  height: calc(100dvh - 13.75rem);
  overflow: hidden;
}
@media (max-width: 768px) {
  #modal-apply .box-product .product {
    padding-bottom: 0;
  }
}
@media (min-width: 769px) {
  #modal-apply .box-product .product {
    height: auto;
    max-height: calc(100vh - 11.375rem);
  }
  #modal-apply .box-product .product .mCustomScrollBox {
    padding-left: 3.125rem;
    padding-right: 4.375rem;
  }
  #modal-apply .box-product .product .mCSB_container {
    height: 100%;
    padding-bottom: 0.9375rem;
  }
}
@media (min-width: 769px) {
  #modal-apply .box-product .product__title {
    font-size: 1.125rem;
    letter-spacing: 0.04em;
  }
}
#modal-apply .box-product .product__note {
  padding-right: 1.125rem;
}
@media (min-width: 769px) {
  #modal-apply .box-product .product__note {
    width: 100%;
  }
}
@media (min-width: 769px) {
  #modal-apply .box-product .product__infor {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    padding-left: 0;
  }
}
@media (min-width: 769px) {
  #modal-apply .box-product .product__item {
    padding-left: 6.6875rem;
    position: relative;
    display: block;
  }
  #modal-apply .box-product .product__item:nth-child(1) {
    padding-top: 1.0625rem;
    min-height: 4.625rem;
  }
  #modal-apply .box-product .product__item:nth-child(2) {
    padding-top: 1.0625rem;
    min-height: 5.25rem;
  }
  #modal-apply .box-product .product__item:nth-child(3) {
    padding-top: 0.625rem;
    min-height: 5.3125rem;
  }
  #modal-apply .box-product .product__item:nth-child(4) {
    padding-top: 0.3125rem;
    min-height: 4rem;
  }
  #modal-apply .box-product .product__item:nth-child(5) {
    margin-top: 1.5625rem;
    padding-top: 0.0625rem;
    min-height: 4.1875rem;
  }
  #modal-apply .box-product .product__item .product__img {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 6.25rem;
    height: 100%;
    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;
  }
  #modal-apply .box-product .product__item .product__note {
    padding-left: 0;
    font-size: 0.5rem;
  }
}

.fancybox__slide {
  overflow: hidden;
  padding: 0;
  margin: 0;
}
@media (min-width: 769px) {
  .fancybox__slide {
    width: calc(100% - 10.625rem);
  }
}

.video-fancybox .fancybox__slide {
  overflow: hidden;
  padding: 0;
}
@media (min-width: 769px) {
  .video-fancybox .fancybox__slide {
    width: auto;
  }
}
@media (min-width: 769px) {
  .video-fancybox .fancybox__track {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.video-fancybox .fancybox__content {
  position: relative;
  background-color: transparent;
}
@media (min-width: 769px) {
  .video-fancybox .fancybox__content {
    width: 57.813vw !important;
    max-width: 740px;
    padding-bottom: 59.1891%;
  }
}
@media (max-width: 768px) {
  .video-fancybox .fancybox__content {
    width: 21.875rem;
    padding-bottom: 11.5rem;
  }
}
.video-fancybox .fancybox__content .fancybox__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .video-fancybox .fancybox__content .fancybox__iframe {
    border-radius: 0.5rem;
  }
}
.video-fancybox .fancybox__content > .f-button.is-close-btn {
  opacity: 1;
  background: transparent;
  width: 3rem;
  height: 3rem;
  border: none;
  right: 0 !important;
  top: -3.9375rem !important;
  background: url("../images/ico_close.svg") no-repeat center/100% 100%;
}
.video-fancybox .fancybox__content > .f-button.is-close-btn svg {
  display: none;
}
@media (max-width: 768px) {
  .video-fancybox .fancybox__content > .f-button.is-close-btn {
    top: -3rem !important;
    right: 0.1875rem !important;
    width: 2rem;
    height: 2rem;
  }
}
.video-fancybox .fancybox__content > .f-button.is-close-btn svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: #333333;
}

.mCSB_container {
  margin-right: 0.5rem;
}

.mCSB_scrollTools {
  opacity: 1;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(51, 51, 51, 0.5);
  width: 0.25rem;
  border-radius: 0.5rem;
}
.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
  background-color: rgba(51, 51, 51, 0.5) !important;
}

.mCSB_inside > .mCSB_container {
  margin-right: 0;
}