@charset "UTF-8";
:root {
  --winH: 100vh;
  --max-width: 1240px;
  --header-height: 110px;
  --clip: 10rem;
  --color-bg: var(--color-white-pearl);
  --color-text: var(--color-black);
  --color-text-white: var(--color-white-pearl);
  --color-text-gray: rgba(0, 0, 0, .6);
  --color-black: #000;
  --color-white: #fff;
  --color-white-pearl: #ebebeb;
  --color-gray-paerl: #c8c8c8;
  --color-orange-pearl: #e8dbda;
  --color-orange: #d23c28;
  --color-orange-dark: #c7311f;
}
@media screen and (max-width: 960px) {
  :root {
    --header-height: 7rem;
  }
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  width: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}
@media screen and (max-width: 960px) and (max-width: 374px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 960px) and (min-width: 560px) {
  html {
    font-size: 75%;
  }
}
@media screen and (max-width: 960px) and (min-width: 750px) {
  html {
    font-size: 81.25%;
  }
}

body {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: 0.15rem;
  color: var(--color-text);
  background: var(--color-bg);
  overflow: hidden;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
}

a {
  color: var(--color-text);
  position: relative;
  text-decoration: none;
}

.clearfix:after {
  content: " . ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*::before, *::after {
  box-sizing: border-box;
}
*:focus-visible {
  outline: 1px solid var(--color-black) !important;
}

input, select, textarea {
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=" tel "] {
  display: inline-block;
  color: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ol, ul {
  list-style: none;
}

@media screen and (min-width: 961px) {
  .is-sp {
    display: none !important;
  }
  .is-sp-inline {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .sp-inline {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .is-pc {
    display: none !important;
  }
  .is-pc-inline {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .pc-inline {
    display: none !important;
  }
}
@media screen and (orientation: landscape) {
  .is-port {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .is-land {
    display: none !important;
  }
}
img {
  max-width: 100%;
  height: auto !important;
  display: block;
  vertical-align: middle;
}
img::-moz-selection {
  background: none;
}
img::selection {
  background: none;
}

[data-prefix]::before {
  content: attr(data-prefix);
}

[data-suffix]::after {
  content: attr(data-suffix);
}

.l-wrap {
  width: 100%;
  position: relative;
}
.l-wrap__loader {
  height: 6rem;
  width: 6rem;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 25;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.is-load .l-wrap__loader, .is-op .l-wrap__loader {
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.is-load-active .l-wrap__loader {
  display: none;
}
.l-wrap__loader::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top: 2px solid var(--color-orange);
  animation: rotate 0.6s linear infinite;
  z-index: 20;
  pointer-events: none;
}
.l-wrap__container {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.l-header {
  width: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: var(--color-white-pearl);
}
.l-header__container {
  width: 96%;
  max-width: 1340px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .l-header__container {
    width: 90%;
    height: 7rem;
  }
}
.l-header__brand {
  width: 21rem;
  display: block;
  position: absolute;
  margin-right: 4rem;
  z-index: 1;
}
@media screen and (min-width: 961px) {
  .l-header__brand {
    top: 50%;
    left: 0;
    opacity: 0;
    transform: translate(-2rem, -50%);
  }
}
@media screen and (min-width: 961px) and (max-width: 1080px) {
  .l-header__brand {
    width: 18rem;
  }
}
@media screen and (min-width: 961px) {
  .is-load .l-header__brand {
    opacity: 1;
    transform: translate(0, -50%);
    transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1), transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  }
}
@media screen and (max-width: 960px) {
  .l-header__brand {
    width: 13rem;
    opacity: 0;
    transform: translate(-2rem, 0);
  }
  .is-load .l-header__brand {
    opacity: 1;
    transform: translate(0, 0);
    transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1), transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  }
}
.l-header__brand-link {
  display: block;
  position: relative;
  font-size: 0;
}
.l-header__brand-svg {
  fill: var(--color-orange);
  fill-rule: evenodd;
}
@media screen and (min-width: 961px) {
  .l-header__nav {
    width: 100%;
    display: block;
    position: relative;
    opacity: 0;
    transform: translateX(-2rem);
  }
  .is-load .l-header__nav {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.1s, transform 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  }
}

.l-header_menu {
  content: "";
  width: 6rem;
  height: 3rem;
  display: none;
  position: fixed;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 15;
  opacity: 0;
  transform: translate(-2rem, 0);
}
@media screen and (max-width: 960px) {
  .l-header_menu {
    display: block;
  }
}
.is-load .l-header_menu {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.1s, transform 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}
.l-header_menu__inner {
  width: 2rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.l-header_menu__open {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: auto;
}
.is-menu-open .l-header_menu__open {
  pointer-events: none;
}
.l-header_menu__open::after {
  content: "";
  width: 200%;
  height: 300%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-header_menu__open-item {
  width: 100%;
  height: 0.2rem;
  display: block;
  position: absolute;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.l-header_menu__open-item.-item1 {
  top: 0;
}
.l-header_menu__open-item.-item2 {
  bottom: 0;
}
.l-header_menu__open-deco {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
}
.-item1 .l-header_menu__open-deco {
  transition-delay: 0.1s;
}
.-item2 .l-header_menu__open-deco {
  transition-delay: 0.15s;
}
.l-header_menu__open-deco::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  background-color: var(--color-orange);
}
.-item1 .l-header_menu__open-deco::before {
  transition-delay: 0s;
}
.-item2 .l-header_menu__open-deco::before {
  transition-delay: 0.05s;
}
.l-header_menu__open-deco::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-orange);
  transition: width 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0.1s, background-color 0.25s cubic-bezier(0.5, 1, 0.89, 1);
}
.-item1 .l-header_menu__open-deco::after {
  transition-delay: 0.3s, 0s;
}
.-item2 .l-header_menu__open-deco::after {
  transition-delay: 0.35s, 0s;
}
.is-menu-open .-item1 .l-header_menu__open-deco {
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0s;
}
.is-menu-open .-item1 .l-header_menu__open-deco::before {
  width: 0;
  transition: width 0.5s cubic-bezier(0.87, 0, 0.13, 1);
}
.is-menu-open .-item1 .l-header_menu__open-deco::after {
  width: 0;
  transition: width 0.1s cubic-bezier(0.87, 0, 0.13, 1);
}
.is-menu-open .-item2 .l-header_menu__open-deco {
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.05s;
}
.is-menu-open .-item2 .l-header_menu__open-deco::before {
  width: 0;
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.05s;
}
.is-menu-open .-item2 .l-header_menu__open-deco::after {
  width: 0;
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.05s;
}
.l-header_menu__close {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.is-menu-open .l-header_menu__close {
  pointer-events: auto;
}
.l-header_menu__close::after {
  content: "";
  width: 200%;
  height: 300%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-header_menu__close-item {
  width: 100%;
  height: 0.2rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.l-header_menu__close-item.-item1 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header_menu__close-item.-item2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header_menu__close-deco {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.l-header_menu__close-deco::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transition: width 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  background: var(--color-white);
}
.l-header_menu__close-deco::after {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-white);
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}
.is-menu-open .-item1 .l-header_menu__close-deco {
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}
.is-menu-open .-item1 .l-header_menu__close-deco::before {
  width: 100%;
  transition: width 0.8s cubic-bezier(0.87, 0, 0.13, 1);
}
.is-menu-open .-item1 .l-header_menu__close-deco::after {
  width: 100%;
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
}
.is-menu-open .-item2 .l-header_menu__close-deco {
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}
.is-menu-open .-item2 .l-header_menu__close-deco::before {
  width: 100%;
  transition: width 0.8s cubic-bezier(0.87, 0, 0.13, 1);
}
.is-menu-open .-item2 .l-header_menu__close-deco::after {
  width: 100%;
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.3s;
}
.l-header_menu__cap {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.l-header_menu__cap-text {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.26rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.l-header_menu__cap-text:first-child {
  position: relative;
}
.l-header_menu__cap-text.-open {
  opacity: 1;
}
.is-menu-open .l-header_menu__cap-text.-open {
  opacity: 0;
}
.l-header_menu__cap-text.-close {
  opacity: 0;
  color: var(--color-text-white);
}
.is-menu-open .l-header_menu__cap-text.-close {
  opacity: 1;
}

.l-nav {
  display: block;
}
@media screen and (max-width: 960px) {
  .l-nav {
    --clip: 50rem;
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    overflow-y: scroll;
    overscroll-behavior-y: none;
    background: var(--color-orange);
    opacity: 0;
    transition: opacity 0s linear 0.4s;
    animation: clip-out 0.4s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
  .is-menu-show .l-nav {
    display: block;
  }
  .is-menu-open .l-nav {
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0s linear;
    animation: clip-in 0.4s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
}
.l-nav__container {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-nav__container {
    width: 85%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding: 15% 0 2%;
  }
}
.l-nav__inner {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 960px) {
  .l-nav__inner {
    width: 100%;
  }
}
.l-nav__brand {
  width: 13rem;
  display: block;
  position: fixed;
  left: 1.8rem;
  top: 2rem;
  z-index: 1;
}
@media screen and (min-width: 961px) {
  .l-nav__brand {
    display: none;
  }
}
.l-nav__brand-link {
  display: block;
  position: relative;
  font-size: 0;
}
.l-nav__brand-svg {
  fill: var(--color-white);
  fill-rule: evenodd;
}
.l-nav__global {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-nav__global {
    flex: 1 1 0;
    min-width: 0;
  }
}
.l-nav__sns {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-nav__sns {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translate(0, -50%);
    margin-left: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .l-nav__sns {
    width: 100%;
    position: relative;
    margin: 7rem auto 0;
    opacity: 0;
    transform: translateX(-2rem);
    transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.5s, transform 0s linear 0.4s;
  }
  .is-menu-open .l-nav__sns {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.5s, transform 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.5s;
  }
}

.l-nav_global {
  display: block;
  position: relative;
}
.l-nav_global__list {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-nav_global__list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.l-nav_global__list-item {
  display: block;
  position: relative;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 960px) {
  .l-nav_global__list-item {
    opacity: 0;
    transform: translateX(-2rem);
    transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.5s, transform 0s linear 0.4s;
  }
  .is-menu-open .l-nav_global__list-item {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
  }
  .is-menu-open .l-nav_global__list-item:nth-child(1) {
    transition-delay: 0.2s;
  }
  .is-menu-open .l-nav_global__list-item:nth-child(2) {
    transition-delay: 0.25s;
  }
  .is-menu-open .l-nav_global__list-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  .is-menu-open .l-nav_global__list-item:nth-child(4) {
    transition-delay: 0.35s;
  }
  .is-menu-open .l-nav_global__list-item:nth-child(5) {
    transition-delay: 0.4s;
  }
  .is-menu-open .l-nav_global__list-item:nth-child(6) {
    transition-delay: 0.45s;
  }
  .is-menu-open .l-nav_global__list-item:nth-child(7) {
    transition-delay: 0.5s;
  }
  .is-menu-open .l-nav_global__list-item:nth-child(8) {
    transition-delay: 0.55s;
  }
  .is-menu-open .l-nav_global__list-item:nth-child(9) {
    transition-delay: 0.6s;
  }
  .is-menu-open .l-nav_global__list-item:nth-child(10) {
    transition-delay: 0.65s;
  }
}
@media screen and (min-width: 961px) {
  .l-nav_global__list-item + .l-nav_global__list-item {
    margin-left: 3.1rem;
  }
}
@media screen and (max-width: 960px) {
  .l-nav_global__list-item + .l-nav_global__list-item {
    margin-top: 0;
  }
}
.l-nav_global__link {
  display: block;
  position: relative;
}
.l-nav_global__link-text {
  display: block;
  position: relative;
  padding: 1rem 0;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (min-width: 961px) {
  .l-nav_global__link-text {
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 960px) {
  .l-nav_global__link-text {
    padding: 0.6rem 0;
    font-size: 4rem;
    color: var(--color-text-white);
  }
}
.l-nav_global__link-text::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-orange);
  border-radius: 200px;
}
@media (hover: hover) {
  .l-nav_global__link-text::before {
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
    animation: clip-out-circle 0.3s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
  .l-nav_global__link:hover .l-nav_global__link-text::before {
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1);
    animation: clip-in-circle 0.3s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
}

.l-nav_sns {
  display: block;
  position: relative;
}
.l-nav_sns__list {
  display: flex;
  align-items: center;
}
.l-nav_sns__list-item {
  display: block;
  position: relative;
}
.l-nav_sns__link {
  width: 2.7rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-nav_sns__link {
    width: 3.2rem;
    fill: var(--color-white);
  }
}
.l-nav_sns__link::before {
  content: "";
  width: 5rem;
  height: 5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-orange);
  border-radius: 50%;
  opacity: 0;
}
@media (hover: hover) {
  .l-nav_sns__link::before {
    transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
}
@media (hover: hover) and (hover: hover) {
  .l-nav_sns__link:hover::before {
    opacity: 1;
  }
}
.l-nav_sns__link-img {
  display: block;
  position: relative;
}
.l-nav_sns__link-svg {
  display: block;
  position: relative;
  fill: var(--color-black);
}
@media screen and (max-width: 960px) {
  .l-nav_sns__link-svg {
    fill: var(--color-white-pearl);
  }
}
@media (hover: hover) {
  .l-nav_sns__link-svg {
    transition: fill 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .l-nav_sns__link:hover .l-nav_sns__link-svg {
    fill: var(--color-white-pearl);
  }
}

.l-footer {
  width: 100%;
  position: relative;
  margin: 0 auto;
  color: var(--color-text-white);
  background: var(--color-orange);
  padding: 4.5rem 0 8rem 0;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding: 5.2rem 0;
  }
}
.is-load .l-footer {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
.l-footer__container {
  width: 96%;
  max-width: var(--max-width);
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .l-footer__container {
    width: 90%;
  }
}
.l-footer__breadcrumb {
  margin-bottom: 8rem;
}
@media screen and (max-width: 960px) {
  .l-footer__breadcrumb {
    margin-bottom: 6rem;
  }
}
.l-footer__breadcrumb-list {
  display: flex;
}
@media screen and (max-width: 960px) {
  .l-footer__breadcrumb-list {
    flex-wrap: wrap;
  }
}
.l-footer__breadcrumb-list-link {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .l-footer__breadcrumb-list-link {
    line-height: 1.7;
  }
}
.l-footer__breadcrumb-list-link::after {
  content: ">";
  margin-left: 0.6rem;
  margin-right: 0.6rem;
}
.l-footer__breadcrumb-list-link:last-of-type::after {
  content: none;
}
.l-footer__breadcrumb-list-link a {
  display: block;
  font-size: 1.3rem;
  color: var(--color-text-white);
  padding: 0.2rem;
}
@media screen and (max-width: 960px) {
  .l-footer__breadcrumb-list-link a {
    font-size: 1rem;
  }
}
.l-footer__breadcrumb-list-link a::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-text-white);
  border-radius: 200px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
  animation: clip-out-circle 0.3s cubic-bezier(0.5, 1, 0.89, 1) forwards;
}
@media screen and (min-width: 961px) {
  .l-footer__breadcrumb-list-link a:hover::before {
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1);
    animation: clip-in-circle 0.3s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
}
.l-footer__contact {
  width: 100%;
  position: relative;
  margin: 0 auto 6.8rem;
}
@media screen and (max-width: 960px) {
  .l-footer__contact {
    margin-bottom: 5rem;
  }
}
.l-footer__link {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .l-footer__link {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 960px) {
  .l-footer__link {
    width: 100%;
    position: relative;
    margin: 0 auto 2.5rem;
  }
}
.l-footer__link-item {
  margin-right: 3.6rem;
}
@media screen and (max-width: 960px) {
  .l-footer__link-item {
    margin-right: 2rem;
  }
}
.l-footer__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  line-height: 1;
  padding-right: 2.5rem;
}
@media screen and (max-width: 960px) {
  .l-footer__btn {
    padding-right: 1.8rem;
  }
}
.l-footer__btn-text {
  display: block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.15rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: var(--color-text-white);
}
@media screen and (max-width: 960px) {
  .l-footer__btn-text {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .l-footer__btn-text {
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .l-footer__btn:hover .l-footer__btn-text {
    transform: translateX(1rem);
  }
}
.l-footer__btn-text a {
  color: var(--color-text-white);
}
.l-footer__btn-arrow {
  width: 1.5rem;
  position: absolute;
  top: 50%;
  right: 0;
  fill: var(--color-white-pearl);
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .l-footer__btn-arrow {
    width: 1.2rem;
  }
}
@media (hover: hover) {
  .l-footer__btn-arrow {
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .l-footer__btn:hover .l-footer__btn-arrow {
    transform: translate(1rem, -50%);
  }
}
.l-footer__btn-svg {
  display: block;
  position: relative;
}
@media (hover: hover) {
  .l-footer__btn:hover .l-footer__btn-svg {
    animation: arrow2 1s linear;
  }
}
.l-footer__copy {
  display: block;
  position: relative;
}
.l-footer__copy-text {
  display: block;
  position: relative;
  font-size: 1rem;
  line-height: 1;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .l-footer__copy-text {
    text-align: left;
  }
}

.l-footer_contact {
  display: block;
  position: relative;
}
.l-footer_contact__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 5rem 10rem 5rem 0;
}
@media screen and (max-width: 960px) {
  .l-footer_contact__inner {
    padding: 3rem 7rem 3rem 0;
  }
}
@media (hover: hover) {
  .l-footer_contact__inner {
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .l-footer_contact:hover .l-footer_contact__inner {
    transform: translateX(1rem);
  }
}
.l-footer_contact__text {
  display: block;
  position: relative;
  font-size: 5.2rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.3rem;
  color: var(--color-text-white);
}
@media screen and (max-width: 960px) {
  .l-footer_contact__text {
    font-size: 3rem;
    letter-spacing: -0.2rem;
  }
}
.l-footer_contact__arrow {
  width: 6rem;
  height: 6rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .l-footer_contact__arrow {
    width: 5.4rem;
    height: 5.4rem;
  }
}
.l-footer_contact__arrow::before {
  content: "";
  width: 6rem;
  height: 6rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--color-white-pearl);
}
@media screen and (max-width: 960px) {
  .l-footer_contact__arrow::before {
    width: 4rem;
    height: 4rem;
  }
}
@media (hover: hover) {
  .l-footer_contact__arrow::before {
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .l-footer_contact:hover .l-footer_contact__arrow::before {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.l-footer_contact__arrow-img {
  width: 3rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: var(--color-orange);
}
@media screen and (max-width: 960px) {
  .l-footer_contact__arrow-img {
    width: 1.5rem;
  }
}
.l-footer_contact__arrow-svg {
  display: block;
  position: relative;
}
@media (hover: hover) {
  .l-footer_contact:hover .l-footer_contact__arrow-svg {
    animation: arrow2 1s linear;
  }
}

.l-main {
  width: 100%;
  min-height: var(--winH);
  position: relative;
  margin: 0 auto;
}
.l-main__container {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding-top: var(--header-height);
}

.c-btn_round {
  width: 100%;
  display: block;
  position: relative;
  padding: 1.5rem 4rem 1.5rem 2rem;
  overflow: hidden;
  border-radius: 200px;
  background: var(--color-orange);
}
@media screen and (max-width: 960px) {
  .c-btn_round {
    padding: 1rem 3rem 1rem 0;
  }
}
.c-btn_round.-L {
  padding: 2.6rem 8rem 2.6rem 4rem;
}
@media screen and (max-width: 960px) {
  .c-btn_round.-L {
    padding: 2.2rem 6rem 2.2rem 4rem;
  }
}
.c-btn_round::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  background: var(--color-white-pearl);
  left: 0;
  border-radius: 200px;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
@media (hover: hover) {
  .c-btn_round:hover::before {
    transform: translateX(0);
  }
}
.c-btn_round::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-orange);
  border-radius: 200px;
}
.c-btn_round__text {
  display: block;
  position: relative;
  font-size: 1.4rem;
  color: var(--color-white-pearl);
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 960px) {
  .c-btn_round__text {
    font-size: 1.3rem;
  }
}
.c-btn_round.-L .c-btn_round__text {
  font-size: 2rem;
}
@media screen and (max-width: 960px) {
  .c-btn_round.-L .c-btn_round__text {
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .c-btn_round__text {
    transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .c-btn_round:hover .c-btn_round__text {
    color: var(--color-orange);
  }
}
.c-btn_round__deco {
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translate(0, -50%);
  background-color: var(--color-white-pearl);
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .c-btn_round__deco {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.c-btn_round__deco::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0.2rem solid var(--color-orange);
  border-radius: 50%;
  box-sizing: content-box;
}
.c-btn_round.-L .c-btn_round__deco {
  width: 5rem;
  height: 5rem;
}
@media screen and (max-width: 960px) {
  .c-btn_round.-L .c-btn_round__deco {
    width: 3.8rem;
    height: 3.8rem;
  }
}
.c-btn_round__deco-img {
  width: 1.4rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: var(--color-orange);
}
@media screen and (max-width: 960px) {
  .c-btn_round__deco-img {
    width: 1rem;
  }
}
[target=_blank] .c-btn_round__deco-img {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-btn_round__deco-svg {
  display: block;
  position: relative;
}
@media (hover: hover) {
  .c-btn_round:hover .c-btn_round__deco-svg {
    animation: arrow2 1s linear 0.2s;
  }
}
.c-btn_round input {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  border: none;
  font-size: 0;
  z-index: 1;
}

.c-btn_arrow {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 1rem 4rem 1rem 0;
}
@media screen and (max-width: 960px) {
  .c-btn_arrow {
    padding: 1rem 3rem 1rem 0;
  }
}
.c-btn_arrow__text {
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02rem;
}
.c-btn_arrow.-white .c-btn_arrow__text {
  color: var(--color-text-white);
}
@media screen and (max-width: 960px) {
  .c-btn_arrow__text {
    font-size: 1.3rem;
    letter-spacing: 0.02rem;
  }
}
.c-btn_arrow__deco {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background-color: var(--color-orange);
  border-radius: 50%;
}
.c-btn_arrow.-white .c-btn_arrow__deco {
  background-color: var(--color-white-pearl);
}
@media screen and (max-width: 960px) {
  .c-btn_arrow__deco {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.c-btn_arrow__deco-img {
  width: 1.4rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: var(--color-white-pearl);
}
.c-btn_arrow.-white .c-btn_arrow__deco-img {
  fill: var(--color-orange);
}
@media screen and (max-width: 960px) {
  .c-btn_arrow__deco-img {
    width: 1rem;
  }
}
.c-btn_arrow__deco-svg {
  display: block;
  position: relative;
}
@media (hover: hover) {
  .c-btn_arrow:hover .c-btn_arrow__deco-svg {
    animation: arrow2 1s linear;
  }
}

.c-btn_radio {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
}
.c-btn_radio__deco {
  width: 2rem;
  height: 2rem;
  display: block;
  position: relative;
  margin-right: 1rem;
}
@media screen and (max-width: 960px) {
  .c-btn_radio__deco {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.5rem;
  }
}
.c-btn_radio__deco::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-orange);
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .c-btn_radio__deco::before {
    border-width: 0.1rem;
  }
}
.c-btn_radio__deco::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .c-btn_radio__deco::after {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.is-current .c-btn_radio__deco::after {
  opacity: 1;
}
.c-btn_radio__text {
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .c-btn_radio__text {
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
  }
}
@media (hover: hover) {
  .c-btn_radio__text {
    transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .c-btn_radio:hover .c-btn_radio__text {
    color: var(--color-orange);
  }
}

.c-btn_switch {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
}
.c-btn_switch__deco {
  width: 2rem;
  height: 2rem;
  display: block;
  position: relative;
  margin-right: 1rem;
}
.c-btn_switch__deco::before {
  content: "";
  width: 1.5rem;
  height: 0.2rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-orange);
}
.c-btn_switch__deco::after {
  content: "";
  width: 0.2rem;
  height: 1.5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-orange);
}
.c-btn_switch__text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .c-btn_switch__text {
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
  }
}

.c-category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .c-category {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
}
.c-category__container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .c-category__container {
    min-width: 15rem;
  }
}
@media screen and (max-width: 960px) {
  .c-category__container.-radio {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }
}
@media screen and (min-width: 961px) {
  .c-category__container + .c-category__container {
    margin-top: 2.8rem;
    padding-top: 2.8rem;
  }
}
@media screen and (max-width: 960px) {
  .c-category__container + .c-category__container {
    margin-left: 0.8rem;
    padding-left: 1.8rem;
  }
}
.c-category__container + .c-category__container::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 961px) {
  .c-category__container + .c-category__container::before {
    border-top: 0.1rem solid var(--color-gray-paerl);
  }
}
@media screen and (max-width: 960px) {
  .c-category__container + .c-category__container::before {
    border-left: 0.1rem solid var(--color-gray-paerl);
  }
}
.c-category__header {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 961px) {
  .c-category__header {
    margin: 0 auto 2rem;
  }
}
.c-category__switch {
  display: none;
}
.c-category__inner {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 1;
}
.c-category__switch + .c-category__header + .c-category__inner {
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .c-category__switch + .c-category__header + .c-category__inner {
    display: none;
  }
}
.c-category__switch:checked + .c-category__header + .c-category__inner {
  opacity: 1;
}
.c-category__list {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .c-category__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -0.8rem;
  }
}
.c-category__list-item {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .c-category__list-item {
    margin: 0 0.8rem 0.8rem 0;
  }
}
@media screen and (min-width: 961px) {
  .c-category__list-item + .c-category__list-item {
    margin-top: 1.5rem;
  }
}
.c-category__select {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.c-category__select select {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  padding: 1.8rem 2rem;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  border: none;
  background: var(--color-white);
  border-radius: 0.5rem;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .c-category__select select {
    min-width: 8rem;
  }
}
.c-category__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
}
.c-category__btn-deco {
  width: 2rem;
  height: 2rem;
  display: block;
  position: relative;
  margin-right: 1rem;
}
@media screen and (max-width: 960px) {
  .c-category__btn-deco {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
  }
}
.c-category__btn-deco::before {
  content: "";
  width: 1.5rem;
  height: 0.2rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-orange);
}
@media screen and (max-width: 960px) {
  .c-category__btn-deco::before {
    width: 1rem;
    height: 0.15rem;
  }
}
.c-category__btn-deco::after {
  content: "";
  width: 0.2rem;
  height: 1.5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-orange);
}
@media screen and (max-width: 960px) {
  .c-category__btn-deco::after {
    width: 0.15rem;
    height: 1rem;
  }
}
.c-category__btn-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .c-category__btn-text {
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
  }
}

.c-pagination {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.c-pagination__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .c-pagination__list {
    justify-content: center;
  }
}
.c-pagination__list-item {
  display: block;
  position: relative;
}
.c-pagination__list-item + .c-pagination__list-item {
  margin-left: 2.4rem;
}
@media screen and (max-width: 960px) {
  .c-pagination__list-item + .c-pagination__list-item {
    margin-left: 0.6rem;
  }
}
.c-pagination__link {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  .c-pagination__link {
    width: 3rem;
    height: 3rem;
  }
}
.c-pagination__link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-orange);
  opacity: 0;
  border-radius: 50%;
}
.c-pagination__link.is-current::before {
  opacity: 1;
}

.c-pagination__link-text {
  display: block;
  position: relative;
  color: var(--color-black);
  font-size: 2rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 960px) {
  .c-pagination__link-text {
    font-size: 1.2rem;
  }
}
.c-pagination__link.is-current .c-pagination__link-text {
  color: var(--color-text-white);
}

.c-pager {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  padding: 0 17.5rem;
}
@media screen and (max-width: 960px) {
  .c-pager {
    padding: 0 9.2rem;
  }
}
.c-pager__nav {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.c-pager__nav.-prev {
  left: 0;
}
.c-pager__nav.-next {
  right: 0;
}
.c-pager__nav-link {
  display: block;
  position: relative;
  padding: 1rem 2.7rem;
  font-size: 1.7rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 960px) {
  .c-pager__nav-link {
    padding: 1rem 1.7rem;
    font-size: 1.3rem;
  }
}
@media (hover: hover) {
  .c-pager__nav-link {
    transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .c-pager__nav-link:hover {
    color: var(--color-orange);
  }
}
.c-pager__nav-link::before {
  content: "";
  width: 1.7rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  background: url("../img/arrow.svg") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .c-pager__nav-link::before {
    width: 1.2rem;
  }
}
.-prev .c-pager__nav-link::before {
  left: 0;
  transform: scale(-1, 1);
}
.-next .c-pager__nav-link::before {
  right: 0;
}
@media (hover: hover) {
  .-next .c-pager__nav-link:hover::before {
    animation: arrow2 1s linear;
  }
  .-prev .c-pager__nav-link:hover::before {
    animation: arrow2_prev 1s linear;
  }
}
.c-pager__back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
}
.c-pager__back-text {
  display: block;
  position: relative;
  font-size: 1.7rem;
  padding: 1rem 0.5rem 1rem 4rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 960px) {
  .c-pager__back-text {
    font-size: 1.3rem;
    padding: 1rem 0.5rem 1rem 3rem;
  }
}
@media (hover: hover) {
  .c-pager__back-text {
    transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .c-pager__back-text:hover {
    color: var(--color-orange);
  }
}
.c-pager__back-text::before {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translate(0, -50%);
  background: url("../img/icon_list.svg") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .c-pager__back-text::before {
    width: 1.7rem;
    height: 1.7rem;
  }
}

.c-article {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4.1rem 0 3.6rem;
  color: var(--color-text);
}
.c-article.-orange {
  color: var(--color-text-white);
}
@media screen and (max-width: 960px) {
  .c-article {
    padding: 1.6rem 0;
  }
}
.c-article__inner {
  display: grid;
  grid-template-columns: minmax(auto, 10rem) 1fr;
  grid-template-rows: auto auto;
  gap: 0.7rem 3.6rem;
  position: relative;
  padding-right: 1rem;
}
@media screen and (min-width: 961px) {
  .c-article__inner {
    min-width: 10rem;
  }
}
@media (hover: hover) {
  .c-article__inner {
    transform: translate(0, 0);
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .c-article:hover .c-article__inner {
    transform: translate(1rem, 0);
  }
}
@media screen and (max-width: 960px) {
  .c-article__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem 0.2rem;
  }
}
.c-article__date {
  grid-column: 1/2;
  grid-row: 1/3;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
@media screen and (max-width: 960px) {
  .c-article__date {
    grid-column: 1/2;
    grid-row: 1/2;
    flex-direction: row;
  }
}
.c-article__date-year {
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 961px) {
  .c-article__date-year {
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 960px) {
  .c-article__date-year {
    font-size: 1rem;
  }
}
@media screen and (max-width: 960px) {
  .c-article__date-year:after {
    content: ".";
  }
}
.c-article__date-day {
  display: block;
  position: relative;
  letter-spacing: 0;
  font-size: 3.1rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .c-article__date-day {
    font-size: 1rem;
  }
}
.c-article__category {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 960px) {
  .c-article__category {
    grid-column: 2/3;
    grid-row: 1/2;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 960px) {
  .c-article__category::before {
    content: "・";
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 1rem;
    transform: translate(0, -50%);
  }
}
.c-article__category-text {
  font-size: 1.3rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .c-article__category-text {
    font-size: 1rem;
  }
}
.c-article__title {
  grid-column: 2/3;
  grid-row: 2/3;
  display: block;
  position: relative;
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 960px) {
  .c-article__title {
    grid-column: 1/3;
    grid-row: 2/3;
    font-size: 1.4rem;
  }
}

.c-card {
  display: block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .c-card {
    border-radius: 0.8rem;
  }
}
.c-card__thumb {
  width: 100%;
  display: block;
  position: relative;
}
.c-card__thumb-img {
  width: 100%;
  padding-top: 140%;
  display: block;
  position: relative;
  background: var(--color-orange);
  margin: 0 !important;
}
@media screen and (max-width: 960px) {
  .c-card__thumb-img {
    padding-top: 138%;
  }
}
@media (hover: hover) {
  .c-card__thumb-img {
    transform: scale(1.001);
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .c-card:hover .c-card__thumb-img {
    transform: scale(1.05);
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
}
.c-card__thumb-img img {
  width: 100%;
  height: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-hov {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.c-hov__circle {
  width: 350%;
  padding-top: 350%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: var(--color-orange);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s linear, opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
[data-ua=pc] .c-hov:hover .c-hov__circle {
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 1.25s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-archive {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.p-archive__container {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-archive__container {
    display: grid;
    grid-template-columns: 31rem auto;
    grid-template-rows: repeat(auto-fit, auto);
  }
}
.p-archive__header {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(-2rem);
}
@media screen and (max-width: 960px) {
  .p-archive__header {
    margin-bottom: 4.5rem;
  }
}
.is-load .p-archive__header {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-archive__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(-2rem);
}
.is-load .p-archive__inner {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}

.u-text-indent {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.u-ta-center {
  text-align: center !important;
}

.u-display-block {
  display: block !important;
}

.u-display-inline-block {
  display: inline-block !important;
}

.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-fw-lighter {
  font-weight: lighter !important;
}

.u-fw-normal {
  font-weight: normal !important;
}

.u-fw-bold {
  font-weight: bold !important;
}

.u-lazy {
  min-height: 10rem;
  opacity: 0;
}
.u-lazy.is-lazy-loaded {
  opacity: 1;
  min-height: auto;
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
}
.u-lazy__loader {
  height: 4rem;
  width: 4rem;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 25;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  pointer-events: none;
}
.is-lazy-loading + .u-lazy__loader {
  display: block;
}
.u-lazy__loader::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top: 2px solid var(--color-white-pearl);
  pointer-events: none;
}
.is-lazy-loading + .u-lazy__loader::before {
  content: "";
  animation: rotate 0.6s linear infinite;
}

[data-modal] {
  cursor: pointer;
}

template {
  display: none;
}

.m-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100vw;
  height: 100%;
  overflow: auto;
  visibility: hidden;
  touch-action: none;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-modal-open .m-modal {
  opacity: 1;
}
.m-modal.is-open {
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}
.m-modal.is-load-start {
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}
.m-modal.is-close {
  visibility: hidden;
  touch-action: none;
  pointer-events: none;
}
.m-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: var(--color-text);
  opacity: 0.85;
}
.m-modal__content {
  width: 80%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  font-size: 0;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .m-modal__content {
    width: 100%;
  }
}
[data-modal-type=img] .m-modal__content {
  max-width: 140rem;
}
[data-modal-type=youtube] .m-modal__content {
  max-width: 170vh;
}
.is-modal-overflow-prep .m-modal__content {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin: 6rem auto;
}
@media screen and (max-width: 960px) {
  .is-modal-overflow-prep .m-modal__content {
    margin-top: 16%;
  }
}
.m-modal__content > * {
  width: 100%;
  height: auto;
}
.m-modal__content > * img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: 0 auto;
}
.m-modal__content-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .m-modal__content-btn {
    position: relative;
    top: auto;
    right: auto;
    width: 84%;
    height: auto;
    margin: 2rem auto 0;
  }
}
.m-modal__close {
  width: 5rem;
  height: 5rem;
  display: block;
  position: fixed;
  top: 1.8rem;
  right: 4.5rem;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .m-modal__close {
    width: 1.6rem;
    height: 1.6rem;
    top: 2rem;
    right: 2rem;
  }
}
.m-modal__close-in {
  width: 5rem;
  height: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.m-modal__close-bar {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 960px) {
  .m-modal__close-bar {
    height: 0.2rem;
  }
}
.m-modal__close-bar.-bar1 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.m-modal__close-bar.-bar2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.m-modal__close-bar::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-white-pearl);
  transition: width 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  border-radius: 200px;
}
.is-modal-open .m-modal__close-bar::before {
  width: 100%;
  left: auto;
  right: 0;
  transition: width 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}

@keyframes clip-out {
  0% {
    -webkit-clip-path: polygon(calc(var(--clip) * -1) 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(calc(var(--clip) * -1) 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, calc(100% + var(--clip)) 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, calc(100% + var(--clip)) 100%);
  }
}
@keyframes clip-in {
  0% {
    -webkit-clip-path: polygon(0 0, calc(var(--clip) * -1) 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, calc(var(--clip) * -1) 0, 0 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% + var(--clip)) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% + var(--clip)) 100%, 0% 100%);
  }
}
@keyframes clip-in-circle {
  0% {
    -webkit-clip-path: circle(0 at 0% 50%);
    clip-path: circle(0 at 0% 50%);
  }
  100% {
    -webkit-clip-path: circle(150% at 0% 50%);
    clip-path: circle(150% at 0% 50%);
  }
}
@keyframes clip-out-circle {
  0% {
    -webkit-clip-path: circle(150% at 100% 50%);
    clip-path: circle(150% at 100% 50%);
  }
  100% {
    -webkit-clip-path: circle(0 at 100% 50%);
    clip-path: circle(0 at 100% 50%);
  }
}
@keyframes clip-out-nav {
  0% {
    -webkit-clip-path: polygon(-100% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(-100% 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 200% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 200% 100%);
  }
}
@keyframes clip-in-nav {
  0% {
    -webkit-clip-path: polygon(0 0, -100% 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, -100% 0, 0 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 200% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 200% 100%, 0% 100%);
  }
}
@keyframes clip-out-top {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 200% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 200% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, -100% 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, -100% 0, 0 100%, 0% 100%);
  }
}
@keyframes clip-in-top {
  0% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 130% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 130% 100%);
  }
  100% {
    -webkit-clip-path: polygon(-30% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(-30% 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: calc(var(--marquee-text-width) * 1) 50%;
  }
}
@keyframes arrow {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(1rem, -50%);
  }
  26% {
    opacity: 0;
    transform: translate(-1rem, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(-1rem, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes arrow_prev {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(-1rem, -50%);
  }
  26% {
    opacity: 0;
    transform: translate(1rem, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(1rem, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes arrow2 {
  0% {
    opacity: 1;
    transform: translate(0, 0);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(1rem, 0);
  }
  26% {
    opacity: 0;
    transform: translate(-1rem, 0);
  }
  50% {
    opacity: 0;
    transform: translate(-1rem, 0);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes arrow2_prev {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(-1rem, 0) scale(-1, 1);
  }
  26% {
    opacity: 0;
    transform: translate(1rem, 0) scale(-1, 1);
  }
  50% {
    opacity: 0;
    transform: translate(1rem, 0) scale(-1, 1);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
  }
}
/* ===============
Foundation
=============== */
/* ===============
Layout .l-XXX
=============== */
/* ===============
Object
=============== */
/* ----------
Component .c-XXX
---------- */
/* ----------
Project .p-XXX
---------- */
/* ----------
Utility .u-XXX .m-XXX
---------- */
/* ===============
Animation @keyframe
=============== */