@charset "UTF-8";
/* ===================================================================================
======================================================================================

global > variable

======================================================================================
=================================================================================== */
/* color
---------------------------------------- */
/* font
---------------------------------------- */
/* font-size
---------------------------------------- */
/* device
---------------------------------------- */
/* content
---------------------------------------- */
/* inner
---------------------------------------- */
/* margin
---------------------------------------- */
/* ===================================================================================
======================================================================================

global > mixin

======================================================================================
=================================================================================== */
/* media query
---------------------------------------- */
/* clearfix
---------------------------------------- */
/* hover
---------------------------------------- */
/* link
---------------------------------------- */
/* z-index
---------------------------------------- */
/* rem変換
---------------------------------------- */
/* %変換
---------------------------------------- */
/* vh変換(SP用)
---------------------------------------- */
/* vw変換(SP用)
---------------------------------------- */
/* vw変換(PC用) minとmax
---------------------------------------- */
/* spサイズをpcサイズへ引き伸ばし(px)
---------------------------------------- */
/* spサイズをpcサイズへ引き伸ばし(vw)
---------------------------------------- */
/* line-height計算
---------------------------------------- */
/* line-heightの上下余白を削除
---------------------------------------- */
/* letter-spacing計算
---------------------------------------- */
/* letter-spacingの文末を削除
---------------------------------------- */
/* 右三角
---------------------------------------- */
/* aspectArea(padding-top)
---------------------------------------- */
/* aspectArea-h(height)
---------------------------------------- */
/* youtube
---------------------------------------- */
/* margin: 0 auto
---------------------------------------- */
/* flex 上下左右センター
---------------------------------------- */
/* position 上下左右センター
---------------------------------------- */
/* ===================================================================================
======================================================================================

global > anime

======================================================================================
=================================================================================== */
/* speed
---------------------------------------- */
/* fadeIn
---------------------------------------- */
.fadeIn {
  opacity: 0;
  transition: opacity 1s;
}
.fadeIn.on {
  opacity: 1;
}

.anime .anime__item--fadeIn {
  opacity: 0;
  transition: opacity 1s;
}
.anime.on .anime__item--fadeIn {
  opacity: 1;
}

/* fadeUp
---------------------------------------- */
.fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}
.fadeUp.on {
  opacity: 1;
  transform: translateY(0);
}

.anime .anime__item--fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}
.anime.on .anime__item--fadeUp {
  opacity: 1;
  transform: translateY(0);
}

/* fadeDown
---------------------------------------- */
.fadeDown {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s, transform 1s;
}
.fadeDown.on {
  opacity: 1;
  transform: translateY(0);
}

.anime .anime__item--fadeDown {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s, transform 1s;
}
.anime.on .anime__item--fadeDown {
  opacity: 1;
  transform: translateY(0);
}

/* fadeLeft
---------------------------------------- */
.fadeLeft {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1s, transform 1s;
}
.fadeLeft.on {
  opacity: 1;
  transform: translateX(0);
}

.anime .anime__item--fadeLeft {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1s, transform 1s;
}
.anime.on .anime__item--fadeLeft {
  opacity: 1;
  transform: translateX(0);
}

/* fadeRight
---------------------------------------- */
.fadeRight {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s, transform 1s;
}
.fadeRight.on {
  opacity: 1;
  transform: translateX(0);
}

.anime .anime__item--fadeRight {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s, transform 1s;
}
.anime.on .anime__item--fadeRight {
  opacity: 1;
  transform: translateX(0);
}

/* 
=========---------------------------------------- */
.fadeInZoomOut {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s, transform 1s;
}
.fadeInZoomOut.on {
  opacity: 1;
  transform: scale(1);
}

.anime .anime__item--fadeInZoomOut {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s, transform 1s;
}
.anime.on .anime__item--fadeInZoomOut {
  opacity: 1;
  transform: scale(1);
}

/* colorBeta
---------------------------------------- */
.colorBeta {
  opacity: 0;
  position: relative;
  transition: opacity 1s;
}
.colorBeta::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 1s;
  transition-delay: 0.5s;
  opacity: 1;
}
.colorBeta.on {
  opacity: 1;
}
.colorBeta.on::before {
  opacity: 0;
}

.colorBeta .colorBeta__item {
  opacity: 0;
  position: relative;
  transition: opacity 1s;
}
.colorBeta .colorBeta__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 1s;
  transition-delay: 0.5s;
  opacity: 1;
}
.colorBeta.on .colorBeta__item {
  opacity: 1;
}
.colorBeta.on .colorBeta__item::before {
  opacity: 0;
}

/* blur
=========---------------------------------------- */
.blur {
  opacity: 0;
  filter: blur(5px);
  transform: scale(1.02);
}
.blur.on {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.anime .anime__item--blur {
  opacity: 0;
  filter: blur(5px);
  transform: scale(1.02);
}
.anime.on .anime__item--blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes blurAnime {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
/* slide
---------------------------------------- */
.slide {
  transform: translateX(-105%);
  transition: transform 1s ease;
  overflow: hidden;
}
.slide .slide__img {
  transform: translateX(105%);
  transition: transform 1s ease;
}
.slide.on {
  transform: translateX(0);
}
.slide.on .slide__img {
  transform: translateX(0);
}

.anime .anime__item--slide {
  overflow: hidden;
  transform: translateX(-105%);
  transition: transform 1s ease;
}
.anime .anime__item--slide .anime__item--slideImg {
  transform: translateX(105%);
  transition: transform 1s ease;
}
.anime.on .anime__item--slide,
.anime.on .anime__item--slideImg {
  transform: translateX(0);
}

/* slideBlur
---------------------------------------- */
.anime .anime__item--slideBlur {
  overflow: hidden;
  transform: translateX(-105%);
  transition: transform 1s ease;
  filter: blur(15px);
}
.anime .anime__item--slideBlur .anime__item--slideBlurImg {
  transform: translateX(105%);
  transition: transform 1s ease;
}
.anime.on .anime__item--slideBlur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.anime.on .anime__item--slideBlur,
.anime.on .anime__item--slideBlurImg {
  transform: translateX(0);
}

/* loop
---------------------------------------- */
/* loop__y
---------------------------------------- */
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* ===================================================================================
======================================================================================

base > reset

======================================================================================
=================================================================================== */
/* Reset box-model and set borders */
/* -------------------------------------------- */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* -------------------------------------------- */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* -------------------------------------------- */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* -------------------------------------------- */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* -------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* -------------------------------------------- */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* -------------------------------------------- */
dd {
  margin-left: 0;
}

/* Grouping content */
/* -------------------------------------------- */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* -------------------------------------------- */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* -------------------------------------------- */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* -------------------------------------------- */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* -------------------------------------------- */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* -------------------------------------------- */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* ===================================================================================
======================================================================================

base > base

======================================================================================
=================================================================================== */
/* common
---------------------------------------- */
html,
body {
  overflow: hidden;
  pointer-events: none;
  letter-spacing: 0;
  line-height: 1.6;
  background-color: #fff;
  color: #000;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-feature-settings: "palt";
}
@media screen and (min-width: 769px) {
  html,
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 16px;
  }
}

.wrapper {
  overflow-x: hidden;
  width: 100%;
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}
a[href=""] {
  pointer-events: none;
}

img {
  width: 100%;
  display: block;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
  position: relative;
}

video {
  width: 100%;
  display: block;
}

@media print {
  img,
  video,
  svg {
    display: none !important;
  }
}
/* vue
---------------------------------------- */
[v-cloak] {
  opacity: 0;
}

/* ===================================================================================
======================================================================================

layout > layout

======================================================================================
=================================================================================== */
/* .l-content
---------------------------------------- */
.l-content {
  position: relative;
  z-index: 2;
}

/* .l-header
---------------------------------------- */
.l-header {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
}

/* .l-main
---------------------------------------- */
.l-main {
  width: 100%;
}

/* .l-footer
---------------------------------------- */
.l-footer {
  width: 100%;
}

/* .l-inner
---------------------------------------- */
.l-inner, .l-inner--s, .l-inner--l {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .l-inner--l {
    width: 92.8571428571vw;
  }
}

@media screen and (min-width: 769px) {
  .l-inner--s {
    max-width: 930px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-inner--s {
    width: 82.8571428571vw;
  }
}

@media screen and (min-width: 769px) {
  .l-inner--nav {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .l-inner--nav {
    width: 82.8571428571vw;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===================================================================================
======================================================================================

module > loading

======================================================================================
=================================================================================== */
.loading {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  transition: opacity 1s;
}
.loading.is-hide {
  opacity: 0;
}

/* ===================================================================================
======================================================================================

module > bg

======================================================================================
=================================================================================== */
.bg {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 101%;
  height: 101vh;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  background-position: center bottom;
}
@media screen and (min-width: 769px) {
  .bg {
    background-image: url(../images/bg/bg_pc.jpg);
  }
}
@media screen and (max-width: 768px) {
  .bg {
    background-image: url(../images/bg/bg_sp.jpg);
  }
}

/* ===================================================================================
======================================================================================

module > header

======================================================================================
=================================================================================== */
/* .header
---------------------------------------- */
.header {
  display: flex;
}
@media screen and (min-width: 769px) {
  .header {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 20px 20px 20px 30px;
  }
}

/* .header__x
---------------------------------------- */
@media screen and (min-width: 769px) {
  .header__x {
    width: 44px;
    height: 44px;
    top: 28px;
    left: 31px;
    background-color: #000;
    border-radius: 50%;
  }
}
@media screen and (max-width: 768px) {
  .header__x {
    position: fixed;
    z-index: 2;
    width: 28px;
    top: 28px;
    left: 31px;
  }
}

.header__xLink {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .header__xLink img {
    width: 17px;
  }
}

/* 
---------------------------------------- */
.header__hamburger {
  background-color: #fa7800;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  position: fixed;
  z-index: 4;
  border: 1px solid #fa7800;
  border-bottom: 50%;
  transition: border-color 0.3s;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
  }
}

.header__hamburgerLine, .header__hamburgerLine--bottom, .header__hamburgerLine--middle, .header__hamburgerLine--top {
  display: block;
  background-color: #000;
  position: absolute;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header__hamburgerLine, .header__hamburgerLine--bottom, .header__hamburgerLine--middle, .header__hamburgerLine--top {
    width: 22px;
    height: 2px;
  }
}

.header__hamburgerLine--top {
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header__hamburgerLine--middle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header__hamburgerLine--bottom {
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===================================================================================
======================================================================================

module > nav

======================================================================================
=================================================================================== */
.nav {
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 769px) {
  .nav {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    z-index: 2;
    height: 100vh;
    background-color: #fa7800;
    top: 0;
    right: 0;
    left: 105%;
    transition: left 0.5s ease;
  }
}
@media screen and (max-width: 768px) {
  .nav.is-show {
    left: 0;
  }
}
@media screen and (min-width: 769px) {
  .nav .nav__scroll {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .nav .nav__scroll {
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: auto;
    padding-top: 80px;
  }
}
.nav .nav__list {
  display: flex;
}
@media screen and (min-width: 769px) {
  .nav .nav__list {
    gap: 0 25px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .nav .nav__list {
    gap: 23px;
    margin-bottom: 70px;
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .nav .nav__list .nav__item.is-active {
    color: #fa7800;
  }
}
.nav .nav__list .kara {
  display: none !important;
}
.nav .nav__list .nav__link {
  display: block;
}
.nav .nav__list .nav__listEn {
  display: block;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "DIN Condensed", "urw-din-condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-feature-settings: "palt";
}
@media screen and (min-width: 769px) {
  .nav .nav__list .nav__listEn {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .nav .nav__list .nav__listEn {
    font-size: 2rem;
  }
}
.nav .nav__list .nav__listJa {
  display: block;
  font-feature-settings: "palt";
}
@media screen and (min-width: 769px) {
  .nav .nav__list .nav__listJa {
    font-size: 0.625rem;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 768px) {
  .nav .nav__list .nav__listJa {
    letter-spacing: 0.14em;
    font-size: 0.9rem;
    margin-top: 1px;
  }
}
.nav .nav__linkList .nav__linkListLink {
  display: block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "DIN Condensed", "urw-din-condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .nav .nav__linkList .nav__linkListLink {
    font-size: 0.875rem;
  }
}

/* ===================================================================================
======================================================================================

module > sectitle

======================================================================================
=================================================================================== */
.sec__title {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .sec__title {
    height: 64px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec__title {
    height: 52px;
  }
}
.sec__title img {
  height: 100%;
  width: auto;
}

/* ===================================================================================
======================================================================================

module > footer

======================================================================================
=================================================================================== */
.footer {
  background-color: #fff;
  color: #000;
  border-top: 1px solid #000;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 60px 0 45px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
}

.footer__list {
  display: flex;
  justify-content: center;
  margin-top: -4px;
}
@media screen and (min-width: 769px) {
  .footer__list {
    gap: 2px 20px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .footer__list {
    gap: 2px 18px;
    margin-bottom: 17px;
    flex-wrap: wrap;
  }
}
.footer__list .footer__item {
  font-family: "DIN Condensed", "urw-din-condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.425rem;
  letter-spacing: 0.02em;
  margin-top: -4px;
}
@media screen and (min-width: 769px) {
  .footer__list .footer__item.kara {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer__list .footer__item.kara {
    width: 100%;
    margin-top: 3px;
  }
}
.footer__list .footer__link {
  display: block;
}

.footer__text {
  text-align: center;
  line-height: 1.8;
  font-size: 0.625rem;
}
@media screen and (min-width: 769px) {
  .footer__text {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 768px) {
  .footer__text {
    margin-bottom: 68px;
  }
}

.footer__logo {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .footer__logo {
    width: 90px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 135px;
    margin-bottom: 30px;
  }
}
.footer__logo .footer__logoLink {
  display: block;
}

.footer__copy small {
  text-align: center;
  display: block;
  line-height: 1.8;
  font-size: 0.625rem;
}

/* ===================================================================================
======================================================================================

module > btn

======================================================================================
=================================================================================== */
.btn {
  border: 2px solid #fa7800;
  border-radius: 999px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .btn {
    width: 250px;
    height: 82px;
  }
}
@media screen and (max-width: 768px) {
  .btn {
    width: 227px;
    height: 73px;
  }
}
.btn .btn__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .btn .btn__link {
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .btn .btn__link {
    padding: 0 25px 0 30px;
  }
}
.btn .btn__text {
  display: block;
  text-transform: uppercase;
  color: #fa7800;
  letter-spacing: 0.02em;
  font-family: "DIN Condensed", "urw-din-condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1;
  transform: translateY(2px);
}

/* ===================================================================================
======================================================================================

module > arrow

======================================================================================
=================================================================================== */
.arrow, .arrow--nomal, .arrow--goods, .arrow--inline, .arrow--block {
  width: 0;
  height: 0;
}
@media screen and (min-width: 769px) {
  .arrow, .arrow--nomal, .arrow--goods, .arrow--inline, .arrow--block {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}
@media screen and (max-width: 768px) {
  .arrow, .arrow--nomal, .arrow--goods, .arrow--inline, .arrow--block {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }
}

.arrow--block {
  display: block;
}

.arrow--inline {
  display: inline-block;
}

.arrow--goods {
  border-left: 7px solid #000;
}
@media screen and (min-width: 769px) {
  .arrow--goods {
    margin-right: 3px;
  }
}
@media screen and (max-width: 768px) {
  .arrow--goods {
    margin-right: 2px;
  }
}

@media screen and (min-width: 769px) {
  .arrow--nomal {
    border-left: 9px solid #fa7800;
  }
}
@media screen and (max-width: 768px) {
  .arrow--nomal {
    border-left: 7px solid #fa7800;
  }
}

/* ===================================================================================
======================================================================================

state > state

======================================================================================
=================================================================================== */
/* responsive
---------------------------------------- */
@media screen and (min-width: 769px) {
  .is-pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .is-pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .is-spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .is-spNone {
    display: none !important;
  }
}

/* a
---------------------------------------- */
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 1;
    animation-duration: 0.5s;
    animation-name: flash;
  }
}
@keyframes flash {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* html,body
---------------------------------------- */
html.is-scroll,
body.is-scroll {
  overflow: visible;
  pointer-events: auto;
}

/* .header__hamburger
---------------------------------------- */
.header__hamburger.is-close {
  border: 1px solid #000;
}
.header__hamburger.is-close .header__hamburgerLine, .header__hamburger.is-close .header__hamburgerLine--bottom, .header__hamburger.is-close .header__hamburgerLine--top {
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .header__hamburger.is-close .header__hamburgerLine, .header__hamburger.is-close .header__hamburgerLine--bottom, .header__hamburger.is-close .header__hamburgerLine--top {
    width: 24px;
  }
}
.header__hamburger.is-close .header__hamburgerLine--top {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__hamburger.is-close .header__hamburgerLine--middle {
  display: none;
}
.header__hamburger.is-close .header__hamburgerLine--bottom {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}/*# sourceMappingURL=common.css.map */