@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  scroll-behavior: smooth;
  font-size: 10px;
}
@media (max-width: 1060px) {
  html {
    font-size: 0.9433962264vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #282828;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    -webkit-transition: none;
    transition: none;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
}

.wp-block-image img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-header {
  z-index: 500;
  position: fixed;
  top: 0;
  left: 0;
  padding-bottom: 2rem;
  width: 100%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  height: 9rem;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 5.2rem;
    background-color: #282828;
  }
}

.l-header.change-color {
  background-color: #282828;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-header.--bg {
  background-color: #282828;
}

.l-header__inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1200px;
  padding-inline: 1.4rem;
  height: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding-left: 0.6rem;
    padding-right: 1.5rem;
    height: inherit;
  }
}

.l-header__name {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__name-link {
  height: inherit;
}

.l-header__contents {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 2.8rem;
     -moz-column-gap: 2.8rem;
          column-gap: 2.8rem;
}
@media screen and (max-width: 767px) {
  .l-header__contents {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-header__menu-container {
  height: 100%;
  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;
  row-gap: 0.3rem;
}

.l-header__nav {
  height: 100%;
}

.l-header__lists {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}

.l-header__list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-header__link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  color: #fff;
}

.l-header__app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}

.l-header__app-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.l-header__app-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.l-header__app-modalOpen {
  width: 9.2rem;
}

.l-header__app-link {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__app-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 9.2rem;
  }
}

.l-header__sns {
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header__sns {
    padding-top: initial;
    margin-right: 4.5rem;
  }
}

.l-header__sns-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-header__sns-lists {
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
  }
}

.l-header__sns-link {
  width: 4.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-header__sns-link {
    width: 2.2rem;
  }
}

.l-header__sns-list:nth-child(1) .l-header__sns-link {
  width: 4.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__sns-list:nth-child(1) .l-header__sns-link {
    width: 2.2rem;
  }
}

/* ------------------------------------------------
hamburger
--------------------------------------------------- */
.l-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    display: block;
    position: fixed;
    z-index: 1000;
    top: 1.6rem;
    right: 2rem;
    width: 2rem;
    height: 1.8rem;
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) {
  .l-hamburger__icon {
    width: 2rem;
  }
}

/* ------------------------------------------------
drawer
--------------------------------------------------- */
.l-drawer {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  padding-top: 7.3rem;
  padding-bottom: 3rem;
  width: 100%;
  height: 100%;
  background-color: #282828;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  overflow-y: auto;
}

.l-drawer.is-open {
  display: block;
  opacity: 1;
}

.l-drawer__logo {
  position: absolute;
  top: 0.5rem;
  left: 0.9rem;
  width: 4.2rem;
}

.l-drawer__icon {
  z-index: 9999;
  position: absolute;
  top: 1.6rem;
  right: 1.4rem;
  width: 3.1rem;
  height: 3.1rem;
  cursor: pointer;
}

.l-drawer__icon::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "×";
  font-size: 3.1rem;
  font-weight: 100;
  line-height: 1;
  color: #fff;
}

.l-drawer__inner {
  padding-inline: 2.8rem;
}

.l-drawer__menu {
  padding-bottom: 3.8rem;
  border-bottom: 1px solid #fff;
}

.l-drawer__nav {
  margin-inline: auto;
  width: 19rem;
}

.l-drawer__lists {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 7rem;
     -moz-column-gap: 7rem;
          column-gap: 7rem;
  row-gap: 0.2rem;
}

.l-drawer__link {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.667;
  color: #fff;
}

.l-drawer__sns {
  margin-top: 5.2rem;
}

.l-drawer__sns-lists {
  margin-inline: auto;
  width: 17.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.8rem;
     -moz-column-gap: 1.8rem;
          column-gap: 1.8rem;
}

.l-drawer__sns-link {
  width: 4.6rem;
}

.l-drawer__sns-list:nth-child(2) .l-drawer__sns-link {
  width: 4.5rem;
}

.l-drawer__content {
  padding-top: 3.6rem;
}

.l-drawer__app-text {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
}

.l-drawer__app-lists {
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
}

.l-drawer__app-link {
  width: 12.9rem;
}

.l-drawer__contact {
  margin-top: 3.1rem;
}

.l-drawer__tel {
  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;
  -webkit-column-gap: 1.4rem;
     -moz-column-gap: 1.4rem;
          column-gap: 1.4rem;
}

.l-drawer__tel-icon {
  width: 3.2rem;
}

.l-drawer__tel-link {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.l-drawer__working {
  margin-top: 0.1rem;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

.l-drawer__company {
  margin-top: 4.5rem;
}

.l-drawer__name-link.c-logo-link {
  -webkit-column-gap: 0.9rem;
     -moz-column-gap: 0.9rem;
          column-gap: 0.9rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-drawer__name-link .c-logo-img {
  width: 4.2rem;
}

.l-drawer__address {
  margin-top: 1.9rem;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

.l-drawer__copyright {
  margin-top: 2.4rem;
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  color: #686868;
  text-align: center;
}

.footer {
  padding-top: 3.6rem;
  padding-bottom: 1.1rem;
  background-color: #282828;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 3.1rem;
    padding-bottom: 2rem;
  }
}

.footer__name-link.c-logo-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .footer__name-link.c-logo-link {
    display: none;
  }
}

.footer__name-link .c-logo-img {
  width: 4.2rem;
}

.footer__contents {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__contents {
    margin-top: initial;
  }
}

.footer__company {
  padding-right: 2rem;
  width: 32%;
}
@media screen and (max-width: 767px) {
  .footer__company {
    padding-right: initial;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .footer__info {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 4.5rem;
  }
}

.footer__info-text {
  font-size: 1.2rem;
  line-height: 1.67;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__info-text {
    margin-top: 1.9rem;
    text-align: center;
  }
}

.footer__app {
  margin-top: 3.9rem;
}
@media screen and (max-width: 767px) {
  .footer__app {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: initial;
  }
}

.footer__app-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__app-text {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.footer__icon-download {
  width: 2.2rem;
}

.footer__app-lists {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer__app-lists {
    margin-top: 1.2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__app-list {
  width: 12.9rem;
}
@media screen and (max-width: 767px) {
  .footer__app-list {
    width: auto;
  }
}

.footer__app-link {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__app-link {
    display: block;
    width: 12.9rem;
  }
}

.footer__menu-area {
  padding-left: 5.2rem;
  width: 68%;
  border-left: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__nav {
  width: 38.2%;
}

.footer__lists {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.2rem;
}

.footer__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  line-height: 2.08;
  color: #fff;
}

.footer__working {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.footer__time,
.footer__closed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.3rem;
     -moz-column-gap: 1.3rem;
          column-gap: 1.3rem;
}

.footer__time-icon,
.footer__closed-icon {
  width: 2.1rem;
}

.footer__closed {
  margin-top: 1.2rem;
}

.footer__time dl,
.footer__closed dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}

.footer__time dt,
.footer__closed dt {
  width: 5rem;
  font-size: 1.2rem;
  color: #fff;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}

.footer__time dd,
.footer__closed dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.2rem;
  color: #fff;
}

.footer__copyright {
  padding-right: 0.7rem;
  margin-top: 0.6rem;
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  color: #686868;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 2.4rem;
    padding-right: initial;
    text-align: center;
  }
}

.footer__name-link--second.c-logo-link {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__name-link--second.c-logo-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .footer-contact {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 3.1rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-contact__tel {
    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;
    -webkit-column-gap: 1.4rem;
       -moz-column-gap: 1.4rem;
            column-gap: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__tel-icon {
    width: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-contact__tel-link {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .footer-contact__working {
    margin-top: 0.1rem;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
  }
}

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

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

.l-inner {
  width: 100%;
  max-width: 1060px;
  margin-inline: auto;
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 1.5rem;
  }
}

.l-small-inner {
  margin-inline: auto;
  padding-inline: 3rem;
  width: 910rem;
}
@media screen and (max-width: 767px) {
  .l-small-inner {
    padding-inline: 1.5rem;
  }
}

.l-xs-body {
  margin-inline: auto;
  width: 80rem;
}
@media screen and (max-width: 767px) {
  .l-xs-body {
    width: 100%;
  }
}

.l-sm-body {
  margin-inline: auto;
  width: 85rem;
}
@media screen and (max-width: 767px) {
  .l-sm-body {
    width: 100%;
  }
}

.l-page-top {
  z-index: 100;
  position: fixed;
  right: 2rem;
  bottom: 2.4rem;
  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;
  width: 2.8rem;
  height: auto;
  aspect-ratio: 1;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
  pointer-events: none;
}
@media (min-width: 1200px) {
  .l-page-top {
    right: 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-page-top {
    right: 1.5rem;
    bottom: 2rem;
    width: 3rem;
  }
}

.l-page-top::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background-image: url(../images/icon/icon-top-button.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.l-page-top.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.l-page-top.is-show:hover {
  opacity: 0.8;
}

.c-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.9rem;
     -moz-column-gap: 0.9rem;
          column-gap: 0.9rem;
}
@media screen and (max-width: 767px) {
  .c-logo-link {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}

.c-logo-img {
  width: 5.4rem;
  height: auto;
  aspect-ratio: 54/52;
}
@media screen and (max-width: 767px) {
  .c-logo-img {
    width: 3.2rem;
  }
}

.c-logo-name {
  font-size: 3.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-logo-name {
    font-size: 2rem;
  }
}

.c-logo-name.--jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.c-button {
  position: relative;
  width: 22rem;
  height: 4.5rem;
  background-color: #fff;
  border: 1px solid #282828;
  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;
  -webkit-column-gap: 1.4rem;
     -moz-column-gap: 1.4rem;
          column-gap: 1.4rem;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.c-button.--reverse {
  background-color: #282828;
  border: 1px solid #fff;
  color: #fff;
}

.c-button:hover {
  opacity: 1;
  background-color: #282828;
  color: #fff;
}

.c-button.--reverse:hover {
  background-color: #fff;
  color: #282828;
}

.c-button .icon-arrow {
  width: 0.7rem;
}

.c-button .icon-arrow svg {
  width: 100%;
  height: auto;
  aspect-ratio: 13/22.06;
}

.c-button .cls-1 {
  fill: #282828;
  -webkit-transition: 0.3s fill;
  transition: 0.3s fill;
}

.c-button.--reverse .cls-1 {
  fill: #fff;
}

.c-button:hover .cls-1 {
  fill: #fff;
}

.c-button.--reverse:hover .cls-1 {
  fill: #282828;
}

.section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .section-heading {
    -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;
    text-align: center;
  }
}

.section-heading.--reverse {
  color: #fff;
}

.section-heading .--en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18rem;
  font-weight: 800;
  line-height: 0.78;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .section-heading .--en {
    font-size: 8rem;
  }
}

.section-heading .--jp {
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .section-heading .--jp {
    margin-top: 0.6rem;
    padding-bottom: initial;
    font-size: 1.5rem;
  }
}

.lower-heading {
  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;
  row-gap: 0.4rem;
}

.lower-heading .--en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lower-heading .--en {
    font-size: 3rem;
  }
}

.lower-heading .--jp {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lower-heading .--jp {
    font-size: 1.2rem;
  }
}

.common-text {
  font-size: 1.5rem;
  font-weight: 500;
}

.c-tab-new {
  margin-right: 0.7rem;
  padding-top: 0.2rem;
  width: 4.5rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-tab-new {
    margin-right: 0.5rem;
    width: 3.4rem;
  }
}

.c-tab-new__text {
  width: 100%;
  height: 2rem;
  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;
  background-color: #e04c4c;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-tab-new__text {
    height: 1.5rem;
    font-size: 1.1rem;
  }
}

.c-marker {
  z-index: 1;
  position: relative;
  padding-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.c-marker::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  background-color: #ededed;
}

.no-text__container {
  padding-bottom: 27rem;
}

.no-text {
  font-size: 1.8rem;
  font-weight: 500;
}

/* フェードアニメーション */
/* ------------------------------------------------
FV
--------------------------------------------------- */
.fade-fv {
  opacity: 0;
  -webkit-animation: fvFade 1s ease-out 0.2s forwards;
          animation: fvFade 1s ease-out 0.2s forwards;
}

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

@keyframes fvFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ----------下からふわっと---------- */
.js-fadeUp {
  opacity: 0;
}

.js-fadeUp.is-animated {
  opacity: 0;
  -webkit-animation: FadeUp 0.5s ease-out 0s forwards;
          animation: FadeUp 0.5s ease-out 0s forwards;
}

@-webkit-keyframes FadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes FadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUp {
  opacity: 0;
  -webkit-animation: FadeUp 0.5s ease-out 0s forwards;
          animation: FadeUp 0.5s ease-out 0s forwards;
}

@keyframes FadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ------------------------------------------------
動画
--------------------------------------------------- */
.video-container {
  padding: 1.1rem 0.2rem;
  width: 100%;
  background-color: #000000;
  border-radius: 0.5rem;
  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;
}

#page-movie .video-container,
#page-framed .video-container {
  padding: 1.5rem 0.2rem;
  aspect-ratio: 400/280;
}
@media screen and (max-width: 767px) {
  #page-movie .video-container,
  #page-framed .video-container {
    aspect-ratio: 360/280;
  }
}

.video {
  position: relative;
  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: 100%;
  height: auto;
  aspect-ratio: 240/128;
}

#page-movie .video,
#page-framed .video {
  aspect-ratio: 400/250;
}
@media screen and (max-width: 767px) {
  #page-movie .video,
  #page-framed .video {
    aspect-ratio: 360/250;
  }
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video .thumbnail {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  cursor: pointer;
}

.video .video-player {
  z-index: 1;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}

.video .video-player:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.video .video-player::before {
  z-index: 2;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 4.7rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../images/icon/icon-player.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* ------------------------------------------------
動画一覧ページ動画ファイル
--------------------------------------------------- */
.video .wp-video {
  width: 100% !important;
}

.video .mejs-container {
  width: 100% !important;
}

.pagination-body {
  margin-top: 16rem;
}

.pagination .screen-reader-text {
  display: none;
}

.pagination .nav-links {
  padding-top: 2rem;
  background-image: repeating-linear-gradient(90deg, #282828, #282828 1px, transparent 1px, transparent 2px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  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;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .pagination .nav-links {
    padding-top: 1.3rem;
    padding-inline: 2rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-column-gap: 1.2rem;
       -moz-column-gap: 1.2rem;
            column-gap: 1.2rem;
  }
}

.pagination .page-numbers {
  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: 3rem;
  height: 3rem;
  background-color: #dddddd;
  border-radius: 0.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers {
    width: 3rem;
    height: 3rem;
  }
}

.pagination .page-numbers.current {
  background-color: #282828;
  color: #fff;
}

.pagination .page-numbers.prev img,
.pagination .page-numbers.next img {
  display: block;
  width: 0.8rem;
  height: auto;
}

.pagination .page-numbers.prev img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.modal-container {
  position: relative;
}

.modal-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .modal-open {
    display: none;
  }
}

.modal-open:hover {
  opacity: 0.8;
}

.modal {
  position: absolute;
  z-index: 9999;
  top: 2.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
}

.footer .modal {
  top: initial;
  bottom: 3.8rem;
}

#page-company .modal {
  top: 3.2rem;
}

.modal::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  clip-path: polygon(50% 0, 61% 6%, 100% 6%, 100% 100%, 0 100%, 0 6%, 39% 6%);
}

.modal::after {
  z-index: -2;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 101%;
  height: 101%;
  background-color: rgba(40, 40, 40, 0.5);
  clip-path: polygon(50% 0, 61% 6%, 100% 6%, 100% 100%, 0 100%, 0 6%, 39% 6%);
}

.footer .modal::before {
  clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 61% 94%, 50% 100%, 39% 94%, 0 94%);
}

.footer .modal::after {
  clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 61% 94%, 50% 100%, 39% 94%, 0 94%);
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  position: relative;
  padding: 1.6rem 0.8rem 1rem;
  width: 100%;
  height: auto;
}

.footer .modal__content {
  padding: 0.8rem 0.8rem 2.2rem;
}

.modal__img {
  display: block;
  width: 12rem;
}

.modal__text {
  margin-top: 0.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}

/* ------------------------------------------------
トップページ
--------------------------------------------------- */
/* ------------------------------------------------
fv
--------------------------------------------------- */
.fv {
  padding-top: 11rem;
  width: 100%;
  height: auto;
  aspect-ratio: 120/75;
  background-image: url(../images/top/fv-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .fv {
    padding-top: 1.1rem;
    margin-top: 5.1rem;
    aspect-ratio: 39/30;
    background-image: url(../images/top/fv-img-sp.jpg);
  }
}

.fv__inner {
  height: 100%;
}

.fv__contents {
  height: 100%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fv__title-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .fv__title-container {
    row-gap: initial;
  }
}

.fv__title-sub {
  padding-left: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fv__title-sub {
    padding-left: 0.6rem;
    font-size: 1.2rem;
  }
}

.fv__title {
  font-size: 18rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 7rem;
  }
}

.fv__text {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.2em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fv__text {
    font-size: 1.2rem;
    text-align: center;
  }
}

.fv__scrolldown {
  z-index: 1;
  position: relative;
  margin-top: 5rem;
  height: 12rem;
}
@media screen and (max-width: 767px) {
  .fv__scrolldown {
    margin-top: 1.5rem;
    height: 5rem;
  }
}

.fv__scrolldown-text {
  z-index: 1;
  position: absolute;
  top: 1.6rem;
  right: -3.4rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  rotate: 90deg;
}
@media screen and (max-width: 767px) {
  .fv__scrolldown-text {
    top: 1.2rem;
    right: -2.4rem;
    font-size: 1rem;
  }
}

.fv__scrolldown-bar {
  position: relative;
  height: 100%;
}

.fv__scrolldown-bar span {
  display: inline-block;
}

.fv__scrolldown-bar .bar {
  width: 1px;
  height: 100%;
  background: #fff;
}

.fv__scrolldown-bar .circle {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 6px;
  height: auto;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: 2s ease-in-out backwards infinite scrollDown;
          animation: 2s ease-in-out backwards infinite scrollDown;
}
@-webkit-keyframes scrollDown {
  0% {
    top: 0;
  }
  80% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
@keyframes scrollDown {
  0% {
    top: 0;
  }
  80% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
@media screen and (max-width: 767px) {
  .fv__scrolldown-bar .circle {
    width: 5px;
  }
}

/* ------------------------------------------------
top-news
--------------------------------------------------- */
.top-news {
  padding-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-top: 1.5rem;
  }
}

.top-news__body {
  margin-inline: auto;
  width: 78rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-news__body {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-news__heading {
  padding-top: 0.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .top-news__heading {
    padding-top: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 0.9rem;
    text-align: center;
  }
}

.top-news__heading .--en {
  font-size: 4.5rem;
}
@media screen and (max-width: 767px) {
  .top-news__heading .--en {
    font-size: 3rem;
  }
}

.top-news__heading .--jp {
  padding-left: 0.2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top-news__heading .--jp {
    font-size: 1.2rem;
  }
}

.top-news__contents {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top-news__contents {
    margin-top: 1.3rem;
    width: 100%;
  }
}

.top-news__content {
  width: 65rem;
  background-color: #ededed;
  border-radius: 3.5rem;
}
@media screen and (max-width: 767px) {
  .top-news__content {
    width: 100%;
    border-radius: 2.7rem;
  }
}

.top-news__items {
  width: 100%;
}

.top-news__link {
  padding: 2.4rem 3rem 2.4rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.7rem;
     -moz-column-gap: 0.7rem;
          column-gap: 0.7rem;
}
@media screen and (max-width: 767px) {
  .top-news__link {
    padding: 2.1rem 2.2rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}

.top-news__time {
  width: 8.6rem;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-news__time {
    width: 6.5rem;
    font-size: 1.2rem;
  }
}

.top-news__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.5rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .top-news__title {
    font-size: 1.2rem;
    -webkit-line-clamp: 2;
  }
}

.top-news__none {
  font-size: 1.5rem;
  font-size: 500;
}
@media screen and (max-width: 767px) {
  .top-news__none {
    font-size: 1.2rem;
  }
}

.top-news__button {
  margin-top: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #282828;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-news__button {
    margin-top: 1.6rem;
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------
top-product
--------------------------------------------------- */
.top-product {
  padding-top: 5.4rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-product {
    padding-top: 3.5rem;
  }
}

.top-product__heading .--jp {
  margin-left: -1.8rem;
}
@media screen and (max-width: 767px) {
  .top-product__heading .--jp {
    margin-left: initial;
  }
}

.top-product__content {
  z-index: 1;
  position: relative;
  margin-top: -0.5rem;
  margin-inline: auto;
  padding-top: 4.4rem;
  padding-bottom: 7.8rem;
  width: 100%;
  max-width: 1920px;
  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 screen and (max-width: 767px) {
  .top-product__content {
    margin-top: 1.5rem;
    padding-top: 2.6rem;
    padding-bottom: 8.4rem;
  }
}

.top-product__bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-product__bg::before,
.top-product__bg::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 120%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top-product__bg::before,
  .top-product__bg::after {
    width: 100%;
  }
}

.top-product__bg::before {
  top: 0;
  aspect-ratio: 1438/200;
  background-image: url(../images/top/bg-product-top.png);
}
@media screen and (max-width: 767px) {
  .top-product__bg::before {
    aspect-ratio: 390/69;
    background-image: url(../images/top/bg-product-top-sp.png);
  }
}

.top-product__bg::after {
  bottom: 0;
  aspect-ratio: 1438/230;
  background-image: url(../images/top/bg-product-bottom.png);
}
@media screen and (max-width: 767px) {
  .top-product__bg::after {
    aspect-ratio: 390/71;
    background-image: url(../images/top/bg-product-bottom-sp.png);
  }
}

.top-product__lists {
  z-index: 1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 3.8rem;
}
@media screen and (max-width: 767px) {
  .top-product__lists {
    margin-inline: auto;
    width: 32rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 5rem;
  }
}

.top-product__img-container {
  z-index: 1;
  position: relative;
}

.top-product__img img {
  border-radius: 1rem;
}

.top-product__title {
  z-index: 2;
  position: absolute;
  bottom: 1.2rem;
  left: 1rem;
}

.top-product__title--en {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 7rem;
  font-weight: 800;
  line-height: 0.786;
  color: #fff;
  opacity: 0.2;
  text-transform: uppercase;
}

.top-product__title--jp {
  position: absolute;
  display: block;
  bottom: 5.2rem;
  left: 0.5rem;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
}

.top-product__link {
  margin-top: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .top-product__link {
    margin-top: 0.7rem;
  }
}

/* ------------------------------------------------
top-movie
--------------------------------------------------- */
.top-movie {
  padding-top: 4rem;
  padding-bottom: 6.5rem;
  background-color: #282828;
}
@media screen and (max-width: 767px) {
  .top-movie {
    padding-top: 3.2rem;
    padding-bottom: 2.3rem;
  }
}

.top-movie__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-movie__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-movie__text-area {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-movie__text-area {
    width: 100%;
    display: contents;
  }
}

.top-movie__heading {
  margin-left: -0.6rem;
}
@media screen and (max-width: 767px) {
  .top-movie__heading {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: initial;
  }
}

.top-movie__heading .--en {
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767px) {
  .top-movie__heading .--en {
    letter-spacing: initial;
  }
}

.top-movie__heading .--jp {
  margin-left: 0.8rem;
}
@media screen and (max-width: 767px) {
  .top-movie__heading .--jp {
    margin-left: initial;
  }
}

.top-movie__link {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-movie__link {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-inline: auto;
  }
}

.top-movie__movie-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .top-movie__movie-area {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 2.5rem;
  }
}

.top-movie__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .top-movie__lists {
    margin-inline: auto;
    -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;
    row-gap: 2.1rem;
  }
}

.top-movie__movie {
  width: 24rem;
}

.top-movie__movie-title {
  margin-top: 0.6rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-movie__movie-title {
    margin-top: 1.1rem;
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------
top-map
--------------------------------------------------- */
.top-map {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-map {
    padding-top: 6rem;
    padding-bottom: 2.2rem;
  }
}

.top-map__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-map__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-map__map-area {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-map__map-area {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0.4rem;
    width: 100%;
    aspect-ratio: 360/232;
  }
}

.top-map__map {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  max-width: 1152px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top-map__map {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 100vw;
    aspect-ratio: 395/232;
  }
}

.top-map__map iframe {
  width: 100%;
  height: 100%;
}

.top-map__text-area {
  padding-top: 2.6rem;
  padding-bottom: 3.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 3.6rem;
}
@media screen and (max-width: 767px) {
  .top-map__text-area {
    padding-top: initial;
    padding-bottom: initial;
    padding-left: initial;
    display: contents;
  }
}

.top-map__heading {
  margin-left: -1.4rem;
}
@media screen and (max-width: 767px) {
  .top-map__heading {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: initial;
  }
}

.top-map__heading .--jp {
  margin-left: -5rem;
}
@media screen and (max-width: 767px) {
  .top-map__heading .--jp {
    margin-left: initial;
  }
}

.top-map__access {
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top-map__access {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 1.3rem;
  }
}

.top-map__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.top-map__address-icon {
  display: block;
  width: 3.3rem;
}
@media screen and (max-width: 767px) {
  .top-map__address-icon {
    width: 3.9rem;
  }
}

.top-map__address-text {
  padding-top: 0.4rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.top-map__address-text .address-detail {
  margin-left: 1.2rem;
}

.top-map__tel {
  margin-top: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.top-map__tel-icon {
  display: block;
  width: 3.5rem;
}

.top-map__tel-link {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
}

.top-map__parking {
  margin-top: 2.2rem;
  padding: 1.7rem 1.5rem 1.5rem;
  border: 1px solid #b0b0b0;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-map__parking {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    -webkit-column-gap: 1.2rem;
       -moz-column-gap: 1.2rem;
            column-gap: 1.2rem;
    padding: 1.6rem 1.2rem;
  }
}

.top-map__parking-icon {
  width: 5.7rem;
}
@media screen and (max-width: 767px) {
  .top-map__parking-icon {
    width: 5rem;
  }
}

.top-map__parking-textArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.top-map__parking-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.top-map__parking-text {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .top-map__parking-text {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------
products（取扱商品）
--------------------------------------------------- */
.products {
  padding-bottom: 8rem;
}

.products__head-title {
  text-align: center;
}

.products__head-text {
  margin-top: 2.4rem;
  padding-inline: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .products__head-text {
    margin-top: 2rem;
    padding-inline: initial;
    font-size: 1.3rem;
  }
}

.products__items {
  margin-top: 4.2rem;
}

.products__item:not(:first-child) {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .products__item:not(:first-child) {
    margin-top: 7rem;
  }
}

.products__item-heading {
  position: relative;
  margin-bottom: 2.4rem;
  padding-bottom: 1.6rem;
  padding-left: 3.6rem;
  background-image: repeating-linear-gradient(90deg, #b5b5b5, #b5b5b5 1px, transparent 1px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .products__item-heading {
    padding-bottom: 0.8rem;
    font-size: 1.5rem;
    padding-left: 3rem;
  }
}

.products__item-heading::before {
  position: absolute;
  content: "●";
  top: 0;
  left: 0;
}

.products__lists {
  margin-top: 2.4rem;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  row-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .products__lists {
    margin-top: 1.6rem;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
    row-gap: 2.5rem;
  }
}

.products__item-link {
  width: 25rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .products__item-link {
    width: 100%;
  }
}

.products__item-link:hover {
  opacity: 1;
}

.products__img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  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;
}

.products__img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #d1d1d1;
  -webkit-transition: border 0.1s;
  transition: border 0.1s;
}

.products__item-link:hover .products__img::after {
  border: 5px solid #d1d1d1;
}

.products__contents img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.products__title {
  padding-bottom: 1rem;
  margin-top: 1.2rem;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .products__title {
    font-size: 1.3rem;
  }
}

.products__item-link:hover .products__title {
  opacity: 0.8;
}

/* ------------------------------------------------
japanese-paper（和紙）
--------------------------------------------------- */
.japanese-paper {
  padding-bottom: 7.5rem;
}

.japanese-paper__head-title {
  text-align: center;
}

.japanese-paper__head-text {
  padding: 3.5rem 2.8rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.japanese-paper__contents > h3 {
  margin-top: 5rem;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.japanese-paper__contents th {
  font-size: 1.3rem;
  font-weight: 500;
}

.japanese-paper__contents tr {
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .japanese-paper__contents .table-title-sp th:first-child {
    width: 13.3rem !important;
  }
}

@media screen and (max-width: 767px) {
  .japanese-paper__contents .table-title-sp td[colspan="2"] {
    text-align: left !important;
  }
}

/* ------------------------------------------------
会社案内
--------------------------------------------------- */
/* ------------------------------------------------
冒頭
--------------------------------------------------- */
.company__text {
  margin-top: 4.6rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.767;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__text {
    margin-top: 4rem;
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: left;
  }
}

/* ------------------------------------------------
共通
--------------------------------------------------- */
#page-company .c-marker {
  text-align: center;
}

#page-company dl {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #b5b5b5;
}

#page-company dt {
  padding-right: 0.8rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.31;
}
@media screen and (max-width: 767px) {
  #page-company dt {
    padding-right: initial;
    width: 31.8%;
  }
}

#page-company dd {
  width: 47rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.31;
}
@media screen and (max-width: 767px) {
  #page-company dd {
    width: 68.2%;
  }
}

.profile-table,
.history-table {
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .profile-table,
  .history-table {
    margin-top: initial;
  }
}

/* ------------------------------------------------
会社概要
--------------------------------------------------- */
.profile {
  padding-top: 5.8rem;
}
@media screen and (max-width: 767px) {
  .profile {
    padding-top: 5rem;
  }
}

.profile dl {
  padding-left: 16.8rem;
  padding-right: 6.4rem;
}
@media screen and (max-width: 767px) {
  .profile dl {
    padding-left: initial;
    padding-right: initial;
  }
}

@media screen and (max-width: 767px) {
  #page-company .profile dd {
    width: 26.5rem;
  }
}

.profile__app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .profile__app {
    -webkit-column-gap: 0.7rem;
       -moz-column-gap: 0.7rem;
            column-gap: 0.7rem;
  }
}

.profile__app-modalOpen {
  display: block;
  width: 12.9rem;
}
@media screen and (max-width: 767px) {
  .profile__app-modalOpen {
    display: none;
  }
}

.profile__app-link {
  display: none;
}
@media screen and (max-width: 767px) {
  .profile__app-link {
    display: block;
    width: 12.9rem;
  }
}

.profile__app-title {
  margin-top: 1.8rem;
  font-weight: 500;
}

.profile__app-text {
  margin-top: 0.8rem;
}

.profile__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.2rem;
     -moz-column-gap: 2.2rem;
          column-gap: 2.2rem;
}
@media screen and (max-width: 767px) {
  .profile__sns {
    -webkit-column-gap: 1.3rem;
       -moz-column-gap: 1.3rem;
            column-gap: 1.3rem;
  }
}

.profile__sns-link {
  display: block;
  width: 3.6rem;
}

.profile__sns li:nth-child(1) .profile__sns-link {
  width: 3.5rem;
}

.profile__sns-text {
  margin-top: 1.2rem;
}

/* ------------------------------------------------
沿革
--------------------------------------------------- */
.history {
  padding-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .history {
    padding-top: 6.3rem;
  }
}

.history dl {
  padding-left: 6.4rem;
  padding-right: 6.4rem;
}
@media screen and (max-width: 767px) {
  .history dl {
    padding-left: initial;
    padding-right: initial;
  }
}

@media screen and (max-width: 767px) {
  #page-company .history dd {
    width: 24.6rem;
  }
}

/* ------------------------------------------------
アクセスマップ
--------------------------------------------------- */
.access {
  padding-top: 11rem;
  padding-bottom: 12.4rem;
}
@media screen and (max-width: 767px) {
  .access {
    padding-top: 5.8rem;
    padding-bottom: 2rem;
  }
}

.access__contents {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .access__contents {
    margin-top: 1.7rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.access__info-area {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .access__info-area {
    width: 100%;
  }
}

.access__map {
  width: 100%;
}

.access__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 390/261;
}
@media screen and (max-width: 767px) {
  .access__map iframe {
    aspect-ratio: 360/261;
  }
}

.access__address {
  margin-top: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.access__address-icon {
  display: block;
  width: 3.3rem;
}

.access__address-text {
  padding-top: 0.4rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.access__address-text .address-detail {
  margin-left: 1.2rem;
}

.access__tel {
  margin-top: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.access__tel-icon {
  display: block;
  width: 3.5rem;
}

.access__tel-link {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
}

.access__parking {
  margin-top: 2.2rem;
  padding: 1.6rem 1rem 1.5rem;
  border: 1px solid #b0b0b0;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .access__parking {
    -webkit-column-gap: 1.2rem;
       -moz-column-gap: 1.2rem;
            column-gap: 1.2rem;
    padding: 1.6rem 1.2rem;
  }
}

.access__parking-icon {
  width: 5.5rem;
}
@media screen and (max-width: 767px) {
  .access__parking-icon {
    width: 3.6rem;
  }
}

.access__parking-textArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.access__parking-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.access__parking-text {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .access__parking-text {
    font-size: 1.3rem;
  }
}

.access__illust-area {
  padding-top: 1.4rem;
  padding-left: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .access__illust-area {
    margin-top: 6.3rem;
    padding-top: initial;
    padding-left: initial;
  }
}

.access__illust {
  width: 100%;
}

/* ------------------------------------------------
SALE商品
--------------------------------------------------- */
.sale-bargain__lists img,
.sale-last__lists img {
  width: 100%;
  height: auto;
}

.sale {
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .sale {
    padding-bottom: 3.8rem;
  }
}

.sale-second-heading {
  padding-left: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #898989;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sale-second-heading {
    margin-top: 6rem;
    padding-left: 1.6rem;
    font-size: 1.5rem;
  }
}

/* ------------------------------------------------
お買い得商品
--------------------------------------------------- */
.sale__bargain {
  margin-top: 6.9rem;
}
@media screen and (max-width: 767px) {
  .sale__bargain {
    margin-top: 7.5rem;
  }
}

.sale-bargain__lists {
  margin-top: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
  row-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .sale-bargain__lists {
    margin-inline: auto;
    -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;
  }
}

.sale-bargain__list {
  width: 28.3rem;
}
@media screen and (max-width: 767px) {
  .sale-bargain__list {
    width: 100%;
  }
}

.sale-bargain__img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .sale-bargain__img {
    margin-inline: auto;
    width: 28.3rem;
  }
}

.sale-bargain__img img {
  width: 100%;
  height: auto;
}

.sale-bargain__title {
  margin-top: 1.2rem;
  font-size: 1.3rem;
  text-align: center;
}

.sale-bargain__discount {
  font-size: 1.5rem;
  font-weight: 500;
  color: #c61717;
  text-align: center;
}

/* ------------------------------------------------
ラスト1点お買い得商品
--------------------------------------------------- */
.sale-last {
  margin-top: 4.6rem;
}
@media screen and (max-width: 767px) {
  .sale-last {
    margin-top: 6.9rem;
  }
}

.sale-last__text {
  margin-top: 1.5rem;
  padding-inline: 1.8rem;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .sale-last__text {
    margin-top: 2.5rem;
    padding-inline: initial;
    padding-left: 0.6rem;
  }
}

.sale-last__lists {
  margin-top: 3.2rem;
  padding-inline: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .sale-last__lists {
    margin-top: 1.8rem;
    margin-inline: auto;
    padding-inline: initial;
    width: 33rem;
  }
}

.sale-last__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .sale-last__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 6.4rem;
  }
}

.sale-last__img {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .sale-last__img {
    width: 100%;
  }
}

.sale-last__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .sale-last__text-area {
    width: 100%;
  }
}

.sale-last__table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sale-last__table dt {
  width: 14.7%;
  font-size: 1.5rem;
  font-weight: 500;
}

.sale-last__table dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.5rem;
}

.sale-last__before {
  margin-top: 1.6rem;
  padding-left: 0.8rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.sale-last__before .strikethrough {
  text-decoration: line-through;
}

.sale-last__after {
  margin-top: 1.2rem;
  font-size: 2.5rem;
  font-weight: 500;
  color: #c61717;
}

.sale-last__remarks {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

/* ------------------------------------------------
動画一覧
--------------------------------------------------- */
.movie-list__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 4.8rem;
     -moz-column-gap: 4.8rem;
          column-gap: 4.8rem;
  row-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .movie-list__lists {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 5rem;
  }
}

.movie-list__title {
  margin-top: 1.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}

.movie-list__text {
  margin-top: 1.2rem;
  padding-inline: 2.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .movie-list__text {
    margin-top: 1.5rem;
    padding-inline: initial;
  }
}

/* ------------------------------------------------
額装動画一覧
--------------------------------------------------- */
.framed {
  padding-bottom: 6.7rem;
}
@media screen and (max-width: 767px) {
  .framed {
    padding-bottom: 1rem;
  }
}

.framed-list__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .framed-list__lists {
    row-gap: 6.7rem;
  }
}

.framed-list__list {
  padding-bottom: 6.4rem;
  background-image: repeating-linear-gradient(90deg, #b5b5b5, #b5b5b5 1px, transparent 1px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .framed-list__list {
    background-image: none;
    padding-bottom: initial;
  }
}

.framed-list__list:not(:first-child) {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .framed-list__list:not(:first-child) {
    padding-top: initial;
  }
}

.framed-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .framed-list__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3rem;
  }
}

.framed-list__item {
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .framed-list__item {
    width: 100%;
  }
}

.framed-list__img {
  width: 100%;
  height: auto;
  aspect-ratio: 40/28;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .framed-list__img {
    aspect-ratio: 36/28;
  }
}

.framed-list__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 40/28;
}
@media screen and (max-width: 767px) {
  .framed-list__img img {
    aspect-ratio: 36/28;
  }
}

.framed-list__title-area {
  margin-top: 2.4rem;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .framed-list__title-area {
    padding-inline: initial;
  }
}

.framed-list__title {
  font-size: 1.8rem;
  font-weight: 500;
  overflow-wrap: break-word;
}

.framed-list__term {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  overflow-wrap: break-word;
}

.framed-list__text {
  width: 100%;
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 1.3;
  overflow-wrap: break-word;
}

/* ------------------------------------------------
新製品
--------------------------------------------------- */
.new {
  padding-bottom: 6.7rem;
}
@media screen and (max-width: 767px) {
  .new {
    padding-bottom: 1rem;
  }
}

.new-list__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  row-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .new-list__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 6.7rem;
  }
}

.new-list__list {
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .new-list__list {
    width: 100%;
  }
}

.new-list__img {
  width: 100%;
  height: auto;
  aspect-ratio: 40/28;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .new-list__img {
    aspect-ratio: 36/28;
  }
}

.new-list__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 40/28;
}
@media screen and (max-width: 767px) {
  .new-list__img img {
    aspect-ratio: 36/28;
  }
}

.new-list__text-area {
  margin-top: 2.4rem;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .new-list__text-area {
    padding-inline: initial;
  }
}

.new-list__title {
  font-size: 1.8rem;
  font-weight: 500;
  overflow-wrap: break-word;
}

.new-list__price {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  overflow-wrap: break-word;
}

.new-list__text {
  margin-top: 1.2rem;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.3;
  overflow-wrap: break-word;
}

/* ------------------------------------------------
新着情報
--------------------------------------------------- */
/* ------------------------------------------------
共通
--------------------------------------------------- */
.article-date {
  z-index: 1;
  position: relative;
  padding-inline: 1rem;
  padding-bottom: 0.8rem;
  width: 100%;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .article-date {
    padding-inline: initial;
    letter-spacing: initial;
  }
}

.article-date::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  background-color: #ededed;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.news__list-link:hover .article-date::before {
  background-color: #CACACA;
}

.article-title {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.92;
}

.article-text {
  font-size: 1.3rem;
  line-height: 1.92;
}

.article-text > *:not(:first-child) {
  margin-top: 1rem;
}

.article-text h2,
.article-text h3,
.article-text h4,
.article-text h5 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.92;
}

.article-text a {
  text-decoration: underline;
}

/* ------------------------------------------------
新着情報一覧
--------------------------------------------------- */
.news {
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .news {
    padding-bottom: 11rem;
  }
}

.news__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5rem;
}

.news__list {
  background-image: repeating-linear-gradient(90deg, #b5b5b5, #b5b5b5 1px, transparent 1px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

.news__list-link {
  padding-bottom: 3.5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .news__list-link {
    padding-bottom: 1.1rem;
  }
}

.news__text-area {
  margin-top: 3.5rem;
  padding-inline: 2.4rem;
}
@media screen and (max-width: 767px) {
  .news__text-area {
    margin-top: 2.5rem;
    padding-inline: initial;
  }
}

.news__title {
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .news__title {
    padding-left: initial;
  }
}

.news__text {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .news__text {
    margin-top: 1.8rem;
  }
}

/* ------------------------------------------------
新着情報の詳細
--------------------------------------------------- */
.detail {
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .detail {
    padding-bottom: 11rem;
  }
}

.detail__body {
  margin-top: 3.5rem;
  padding-inline: 2.4rem;
}
@media screen and (max-width: 767px) {
  .detail__body {
    margin-top: 2.5rem;
    padding-inline: initial;
  }
}

.detail__content {
  margin-top: 2rem;
  padding-bottom: 16rem;
  background-image: repeating-linear-gradient(90deg, #b5b5b5, #b5b5b5 1px, transparent 1px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .detail__content {
    margin-top: 1.8rem;
    padding-bottom: 10rem;
  }
}

.detail__other {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .detail__other .c-button {
    width: 12rem;
  }
}

.detail__next {
  margin-left: auto;
}

.detail__link.c-button.--reverse {
  margin-top: 8rem;
  margin-inline: auto;
  border: 1px solid #282828;
}
@media screen and (max-width: 767px) {
  .detail__link.c-button.--reverse {
    margin-top: 6rem;
  }
}

/* ------------------------------------------------
thanks（問い合わせフォーム）
--------------------------------------------------- */
.thanks {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .thanks {
    padding-top: 10rem;
  }
}

.thanks__heading {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__heading {
    font-size: 3.2rem;
  }
}

.thanks__text {
  margin-top: 5rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    font-size: 1.6rem;
  }
}

.thanks__button {
  margin-top: 8rem;
  margin-inline: auto;
  border-radius: 5rem;
  width: 46.8rem;
  height: 10rem;
  padding: 1.2rem 4rem 1.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__button {
    margin-top: 6rem;
    width: 100%;
    height: 8rem;
  }
}

.u-mt-66 {
  margin-top: 6.6rem;
}
@media screen and (max-width: 767px) {
  .u-mt-66 {
    margin-top: 3rem;
  }
}

.u-mt-70 {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .u-mt-70 {
    margin-top: 3rem;
  }
}

.u-pt-lower {
  padding-top: 14rem;
}
@media screen and (max-width: 767px) {
  .u-pt-lower {
    padding-top: 8rem;
  }
}/*# sourceMappingURL=style.css.map */