/* 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=Zen+Kaku+Gothic+New:wght@700;900&display=swap");
html {
  color: #41210f;
  line-height: 1.4;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 768px) {
  html {
    font-size: 2.1333333333vw;
  }
}
@media (min-width: 769px) and (max-width: 1366px) {
  html {
    // font-size: 1.1713030747vw;
  }
}

/*
* 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*/
    box-shadow: none !important;
    text-shadow: none !important;
  }
  *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    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;
  }
}
* {
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: transparent;
}

body.is-hidden {
  overflow: hidden;
}

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

.inner {
  padding: 0 2.5rem;
}
@media (min-width: 769px) {
  .inner {
    width: 100%;
    max-width: 68.75rem;
    margin-inline: auto;
  }
}

@media (min-width: 769px) {
  .trans {
    transition: 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;
  }
}

.btn-red {
  display: inline-block;
  font-size: 1.375rem;
  text-decoration: none;
  color: #fff;
  background-color: #e91233;
  border-radius: 62.4375rem;
  padding: 0.4375rem 1.6875rem;
  position: relative;
}
@media (min-width: 769px) {
  .btn-red {
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .btn-red:hover {
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  .btn-red {
    font-size: 2.1875rem;
    display: block;
    text-align: center;
    padding: 1.375rem 1.25rem;
  }
}
.btn-red:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0.75rem;
  height: 1.25rem;
  background: url(../img/ico_arr.svg) no-repeat center/contain;
  margin-left: 0.375rem;
  transform: translateY(-0.25rem);
}
@media (max-width: 768px) {
  .btn-red:after {
    width: 1.1875rem;
    height: 1.9375rem;
    margin-left: 1.25rem;
  }
}

.fade-slidein {
  position: relative;
  transform: translateY(3.75rem);
  opacity: 0;
}

.fade-slidein.animate__animated {
  transform: translateY(0px);
  opacity: 1;
  transition: all ease 0.8s;
}

.nav-fix {
  position: fixed;
  bottom: 3.125rem;
  right: 0;
  width: 17.5rem;
  z-index: 50;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (max-width: 768px) {
  .nav-fix {
    width: 20rem;
    bottom: 3.75rem;
  }
}
.nav-fix a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.6875rem;
  background-color: #ec1234;
  border-radius: 62.4375rem 0 0 62.4375rem;
  padding: 1.3125rem 1.75rem;
}
@media (max-width: 768px) {
  .nav-fix a {
    font-size: 2rem;
    padding: 1.5625rem 0.625rem 1.5625rem 2.375rem;
  }
}
.nav-fix a:after {
  content: "";
  display: inline-block;
  width: 1.0625rem;
  height: 1.8125rem;
  background: url(../img/ico_arr.svg) no-repeat center/contain;
  margin-left: 1rem;
  transform: translateY(0.25rem);
}
@media (max-width: 768px) {
  .nav-fix a:after {
    width: 1.25rem;
    height: 2.1875rem;
  }
}
.nav-fix.is-show {
  opacity: 1;
  transform: translateX(0);
}

.tlr-modal {
  opacity: 0;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  transition: opacity 0.4s ease;
}
.tlr-modal.active {
  opacity: 1;
  visibility: visible;
}
.tlr-modal__bg {
  position: absolute;
  background: #fff57f;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.tlr-modal__bg:after {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 2.125rem;
  right: 2.125rem;
  bottom: 1.5rem;
  border-radius: 2.5rem;
  background-color: #fffbcc;
}
@media (max-width: 768px) {
  .tlr-modal__bg:after {
    top: 1.6875rem;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.6875rem;
  }
}
.tlr-modal__video {
  display: none;
  z-index: 5;
  width: 54.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .tlr-modal__video {
    width: 40.8125rem;
  }
}
.tlr-modal__video.current {
  display: block;
}
.tlr-modal__video iframe {
  width: 100%;
  height: 100%;
}
.tlr-modal__video .js-movieArea {
  height: 30.8125rem;
}
@media (max-width: 768px) {
  .tlr-modal__video .js-movieArea {
    height: 23.125rem;
  }
}
.tlr-modal__video--ttl {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 0.9375rem;
  letter-spacing: 0.09em;
  display: none;
  line-height: 1.2;
  height: 3.125rem;
}
@media (max-width: 768px) {
  .tlr-modal__video--ttl {
    font-size: 1.4375rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    height: 4rem;
  }
}
@media (min-width: 769px) {
  .tlr-modal__video--ttl span {
    font-size: 1.0625rem;
  }
}
.tlr-modal__video--ttl.is-show {
  display: block;
}
.tlr-modal__video--btn {
  position: absolute;
  right: -0.3125rem;
  top: 3.75rem;
  transform: translate(0, -100%);
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
}
@media (max-width: 768px) {
  .tlr-modal__video--btn {
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    top: 4.375rem;
    right: 0.375rem;
  }
}
.tlr-modal__video--btn:before, .tlr-modal__video--btn:after {
  content: "";
  position: absolute;
  border-bottom: 2px solid #40220f;
  width: 100%;
  height: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .tlr-modal__video--btn:before, .tlr-modal__video--btn:after {
    border-block-width: 0.25rem;
  }
}
.tlr-modal__video--btn:before {
  transform: rotateZ(45deg);
}
.tlr-modal__video--btn:after {
  transform: rotateZ(-45deg);
}

@media (min-width: 769px) {
  .js-section {
    height: 100vh;
  }
}

.header {
  position: relative;
  padding: 0.875rem 0 1rem;
  z-index: 2;
  background-color: #fff;
}
@media (min-width: 769px) {
  .header {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.875rem 1.75rem 1.625rem 2.25rem;
  }
}
.header__logo {
  display: inline-block;
  margin: 0;
  width: 4.375rem;
}
@media (max-width: 768px) {
  .header__logo {
    width: 6rem;
  }
}
.header__logo a {
  display: block;
}
.header__sns {
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .header__sns {
    position: absolute;
    top: 1.1875rem;
    right: 1.875rem;
  }
}
.header .item {
  width: 2.5rem;
}
@media (max-width: 768px) {
  .header .item {
    width: 3.4375rem;
  }
}
.header .item:not(:last-child) {
  margin-right: 0.625rem;
}

.footer {
  padding-block: 1.9375rem;
  position: relative;
  background-color: #fff;
  z-index: 10;
}
@media (min-width: 769px) {
  .footer {
    border-top: 1px solid #f6f6f6;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-block: 0.625rem 2rem;
  }
}
.footer .copy-right {
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .footer .copy-right {
    font-size: 1.25rem;
  }
}

.page-top {
  position: absolute;
  top: -10.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media (max-width: 768px) {
  .page-top {
    width: 10rem;
    cursor: pointer;
  }
}
.page-top span {
  cursor: pointer;
  display: block;
  width: 7.6875rem;
}
@media (max-width: 768px) {
  .page-top span {
    width: 8.8125rem;
    margin-inline: auto;
  }
}/*# sourceMappingURL=common.css.map */
