@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
*/
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;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ol, ul {
  list-style: none;
}

:root {
  --color-default: #000;
  --color-gray: #ccc;
  --color-primary: #FF6900;
  --color-primary-2: #FF7E24;
  --color-primary-soft: #FFB480;
  --color-primary-tint: #FFE8D8;
  --color-dark: #333;
  --color-bg-primary: #f5f5f5;
  --color-border-primary: #000;
  --font-default: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-teko: "Teko", sans-serif;
  --transition: .25s ease;
  --transition-duration: .25s;
  --hover-opacity: .7;
}

body {
  width: 100%;
  background: #fff;
  color: var(--color-default);
  font-family: var(--font-default);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px), print {
  body {
    line-height: 1.9;
  }
}

.new-layout {
  font-size: 3.36323vw;
}
@media screen and (min-width: 768px), print {
  .new-layout {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px), print {
  .new-layout {
    font-size: 1.11112vw;
  }
}

a {
  color: var(--color-default);
  text-decoration: none;
  text-decoration-thickness: 0.22422vw;
  text-underline-offset: 0.1em;
}
@media (hover: hover) and (pointer: fine) {
  a img {
    transition: opacity var(--transition);
  }
  a:hover img {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px), print {
  a {
    text-decoration-thickness: 1px;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

::selection {
  background-color: var(--color-primary);
  color: #fff;
  text-shadow: none;
}

::placeholder {
  color: var(--color-gray);
  opacity: 1;
}

.u-visuallyHidden {
  position: absolute !important;
  z-index: -1 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

body.is-drawer-open {
  overflow: hidden;
}

.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.js-reveal--delay-1 {
  transition-delay: 0.07s;
}
.js-reveal--delay-2 {
  transition-delay: 0.15s;
}
.js-reveal--delay-3 {
  transition-delay: 0.23s;
}
.js-reveal--delay-4 {
  transition-delay: 0.31s;
}
.js-reveal--delay-5 {
  transition-delay: 0.39s;
}

.none {
  display: none;
}

.xl__block {
  display: none;
}
@media not screen and (min-width: 1280px), print {
  .xl__block {
    display: block;
  }
}

.lg__block {
  display: none;
}
@media not screen and (min-width: 1024px), print {
  .lg__block {
    display: block;
  }
}

.md__block {
  display: none;
}
@media not screen and (min-width: 768px), print {
  .md__block {
    display: block;
  }
}

@media not screen and (min-width: 600px), print {
  .sm__block {
    display: block;
  }
}

@media not screen and (min-width: 1280px), print {
  .xl__none {
    display: none;
  }
}

@media not screen and (min-width: 1024px), print {
  .lg__none {
    display: none;
  }
}

@media not screen and (min-width: 768px), print {
  .md__none {
    display: none;
  }
}

@media not screen and (min-width: 600px), print {
  .sm__none {
    display: none;
  }
}

/**************************\
  Basic Modal Styles
\**************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal__container {
  margin-top: 40px;
  background-color: #fff;
  padding: 30px;
  max-width: 960px;
  width: 100%;
  max-height: calc(100% - 40px);
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
@media not screen and (min-width: 600px), print {
  .modal__container {
    padding: 12px;
  }
}

.modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 47px;
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: var(--color-primary);
  box-sizing: border-box;
  text-align: center;
}
@media not screen and (min-width: 600px), print {
  .modal__title {
    font-size: fw(20);
  }
}

.modal__close {
  background: transparent;
  border: none;
}
.modal__close:focus {
  border: none;
  outline: none;
}

.modal__header .modal__close:before {
  content: "×";
  font-weight: 700;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #e2e2e2;
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1), mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.page-header {
  width: 100%;
  height: 100px;
  background: #fff;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 25px 0 50px;
  border-bottom: 1px solid var(--color-default);
}
@media not screen and (min-width: 1280px), print {
  .page-header {
    padding-left: 25px;
  }
}
@media not screen and (min-width: 1024px), print {
  .page-header {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media not screen and (min-width: 768px), print {
  .page-header {
    padding-right: 0;
    padding-left: 0;
    height: 60px;
    width: 100%;
  }
}
.page-header__logo {
  display: flex;
  align-items: center;
}
@media not screen and (min-width: 768px), print {
  .page-header__logo {
    border-right: 1px solid var(--color-default);
    width: calc(40% - 30px);
    height: 100%;
    justify-content: center;
  }
}
.page-header__logo a {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.page-header__logo a:hover {
  opacity: 0.8;
}
.page-header__logo .logo01 {
  width: auto;
  height: 16px;
}
@media screen and (min-width: 1550px), print {
  .page-header__logo .logo01 {
    height: 24px;
  }
}
@media not screen and (min-width: 1024px), print {
  .page-header__logo .logo01 {
    height: 13px;
  }
}
@media not screen and (min-width: 768px), print {
  .page-header__logo .logo01 {
    height: 14px;
  }
}
@media not screen and (min-width: 600px), print {
  .page-header__logo .logo01 {
    height: 3.13902vw;
  }
}
.page-header__nav {
  margin-left: auto;
  display: flex;
  height: 100%;
  white-space: nowrap;
}
@media not screen and (min-width: 768px), print {
  .page-header__nav {
    display: none;
  }
}
.page-header__nav a {
  width: 150px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-default);
  border-bottom: none;
  border-top: none;
  font-family: var(--font-teko);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--color-default);
  transition: color var(--transition);
}
@media not screen and (min-width: 1280px), print {
  .page-header__nav a {
    width: 120px;
  }
}
@media not screen and (min-width: 1024px), print {
  .page-header__nav a {
    width: 90px;
    font-size: 18px;
  }
}
.page-header__nav a:nth-child(n+2) {
  border-left: none;
}
.page-header__nav a:hover {
  color: var(--color-primary);
}
.page-header__cta {
  margin-left: 25px;
  padding-right: 65px;
  padding-left: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--color-primary);
  color: #fff;
  height: 60px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
@media not screen and (min-width: 1024px), print {
  .page-header__cta {
    margin-left: 20px;
    padding-right: 40px;
    padding-left: 40px;
    font-size: 13px;
  }
}
@media not screen and (min-width: 768px), print {
  .page-header__cta {
    display: none;
  }
}
.page-header__cta:hover {
  background: var(--color-primary-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -12px rgba(255, 105, 0, 0.55);
}
.page-header__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  width: 60%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.7s;
  pointer-events: none;
}
.page-header__cta:hover::before {
  left: 130%;
}
.page-header__cta-icon {
  position: absolute;
  right: 20px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.header__sp-cta {
  display: none;
  padding-left: 12px;
  padding-right: 12px;
  align-items: center;
  justify-content: center;
  width: calc(60% - 30px);
}
@media not screen and (min-width: 768px), print {
  .header__sp-cta {
    display: flex;
  }
}
@media not screen and (min-width: 600px), print {
  .header__sp-cta {
    padding-right: 3.36323vw;
    padding-left: 3.36323vw;
  }
}
.header__sp-cta__btn {
  position: relative;
  padding-right: 17px;
  padding-left: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 280px;
  height: 38px;
  background: #ff5a00;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
}
@media not screen and (min-width: 600px), print {
  .header__sp-cta__btn {
    padding-right: 8.96861vw;
    padding-left: 4.48431vw;
    font-size: 3.81166vw;
  }
}
.header__sp-cta__btn-icon {
  position: absolute;
  right: 8px;
  width: 12px;
  height: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.header__sp-menu {
  display: none;
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  outline: none;
  border-left: 1px solid var(--color-default);
  border-bottom: 1px solid var(--color-default);
  background: #fff;
}
@media not screen and (min-width: 768px), print {
  .header__sp-menu {
    display: block;
  }
}
.header__sp-menu span {
  position: absolute;
  left: 19px;
  width: 24px;
  height: 1px;
  background: #333;
  transition: transform 0.3s ease;
}
.header__sp-menu span:first-child {
  top: 21px;
}
.header__sp-menu span:nth-child(2) {
  top: 30px;
}
.header__sp-menu span:last-child {
  top: 39px;
}

.is-drawer-open .header__sp-menu span:first-child {
  transform: translateY(9.5px) rotate(45deg);
}
.is-drawer-open .header__sp-menu span:nth-child(2) {
  display: none;
}
.is-drawer-open .header__sp-menu span:last-child {
  transform: translateY(-9.5px) rotate(-45deg);
}

.header__drawer {
  position: fixed;
  inset: 60px 0 0;
  z-index: 900;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.is-drawer-open .header__drawer {
  transform: translateY(0);
}

.header__drawer__logo {
  padding-top: 35px;
  padding-bottom: 35px;
  display: flex;
  justify-content: center;
}
@media not screen and (min-width: 600px), print {
  .header__drawer__logo {
    padding-top: 9.19283vw;
    padding-bottom: 9.19283vw;
  }
}
.header__drawer__logo img {
  width: auto;
  height: 45px;
}
@media not screen and (min-width: 600px), print {
  .header__drawer__logo img {
    height: 11.21077vw;
  }
}

.header__drawer__nav li {
  border-top: 1px solid var(--color-dark);
}
.header__drawer__nav li:last-child {
  border-bottom: 1px solid var(--color-dark);
}
.header__drawer__nav a {
  display: block;
  padding: 26px 15px 26px 50px;
  font-size: 60px;
  font-weight: 600;
  font-family: var(--font-teko);
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-dark);
  text-align: left;
}
@media not screen and (min-width: 600px), print {
  .header__drawer__nav a {
    padding: 5.38117vw 6.27803vw 5.38117vw 11.21077vw;
    font-size: 10.76234vw;
  }
}

.header__drawer__copyright {
  margin-top: 55px;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-teko);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-primary);
}
@media not screen and (min-width: 600px), print {
  .header__drawer__copyright {
    margin-top: 17.93722vw;
    font-size: 5.15696vw;
  }
}

.marquee {
  padding-bottom: 65px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
}
@media not screen and (min-width: 600px), print {
  .marquee {
    padding-bottom: 8.96861vw;
  }
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 33px;
  animation: marquee-scroll 38s linear infinite;
  white-space: nowrap;
}
@media not screen and (min-width: 600px), print {
  .marquee__track {
    gap: 4.48431vw;
    animation: marquee-scroll 21s linear infinite;
  }
}
.marquee__text {
  max-width: initial;
  width: auto;
  height: 38px;
  display: block;
  object-fit: contain;
}
@media not screen and (min-width: 600px), print {
  .marquee__text {
    height: 6.50225vw;
  }
}
.marquee__logo {
  width: auto;
  height: 38px;
  display: block;
  object-fit: contain;
}
@media not screen and (min-width: 600px), print {
  .marquee__logo {
    height: 6.50225vw;
  }
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.footer-cta {
  position: relative;
  width: 100%;
  height: 305px;
  background-image: url(../../img/home/bg_noise.png);
  background-repeat: repeat;
  background-size: 160px 160px;
  background-position: 0 0;
  display: flex;
}
@media not screen and (min-width: 768px), print {
  .footer-cta {
    flex-direction: column;
    height: auto;
  }
}
.footer-cta__image {
  width: 50%;
  min-width: 50%;
  height: 100%;
}
@media not screen and (min-width: 768px), print {
  .footer-cta__image {
    width: 100%;
    height: 320px;
  }
}
@media not screen and (min-width: 600px), print {
  .footer-cta__image {
    height: 47.53364vw;
  }
}
.footer-cta__image .img01 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer-cta__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 30px 80px;
}
@media not screen and (min-width: 1280px), print {
  .footer-cta__body {
    padding: 30px 50px;
  }
}
@media not screen and (min-width: 768px), print {
  .footer-cta__body {
    padding: 50px;
    width: 100%;
  }
}
@media not screen and (min-width: 600px), print {
  .footer-cta__body {
    padding: 6.27803vw;
    padding-bottom: 15.69507vw;
  }
}
.footer-cta__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}
@media not screen and (min-width: 1280px), print {
  .footer-cta__title {
    font-size: 24px;
  }
}
@media not screen and (min-width: 600px), print {
  .footer-cta__title {
    font-size: 5.38117vw;
  }
}
.footer-cta__text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}
@media not screen and (min-width: 600px), print {
  .footer-cta__text {
    margin-top: 2.69059vw;
    font-size: 4.26009vw;
  }
}
.footer-cta__btn {
  position: relative;
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  max-width: 560px;
  height: 80px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
@media not screen and (min-width: 600px), print {
  .footer-cta__btn {
    margin-top: 6.72646vw;
    height: 20.85202vw;
    font-size: 4.26009vw;
  }
}
.footer-cta__btn:hover {
  background: var(--color-primary-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -12px rgba(255, 105, 0, 0.55);
}
.footer-cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  width: 60%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.7s;
  pointer-events: none;
}
.footer-cta__btn:hover::before {
  left: 130%;
}
.footer-cta__btn-icon {
  position: absolute;
  right: 32px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.page-footer {
  width: 100%;
  height: 60px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-footer__copy {
  font-family: var(--font-teko);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: 0;
}
@media not screen and (min-width: 600px), print {
  .page-footer__copy {
    position: relative;
    top: 0.67265vw;
    font-size: 4.48431vw;
  }
}

body.home {
  background-image: url(../../img/home/bg_noise.png);
  background-repeat: repeat;
  background-size: 160px 160px;
  background-position: 0 0;
}

.fv {
  position: relative;
  width: 100%;
  height: calc(100svh - 100px);
  min-height: 620px;
  max-height: 780px;
  overflow: hidden;
}
@media screen and (min-width: 1550px), print {
  .fv {
    margin-right: auto;
    margin-left: auto;
    max-width: 1990px;
    max-height: 870px;
  }
}
@media not screen and (min-width: 1280px), print {
  .fv {
    max-height: 600px;
  }
}
@media not screen and (min-width: 1024px), print {
  .fv {
    max-height: 550px;
    min-height: 480px;
  }
}
@media not screen and (min-width: 768px), print {
  .fv {
    height: 150vw;
    max-height: 100%;
    min-height: 0;
  }
}
@media not screen and (min-width: 600px), print {
  .fv {
    height: 152vw;
  }
}
.fv__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.fv__photo .img01 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  display: block;
}
@media (min-width: 1400px) {
  .fv__photo .img01 {
    height: 112%;
  }
}
@media screen and (min-width: 1550px), print {
  .fv__photo .img01 {
    height: 120%;
  }
}
@media not screen and (min-width: 768px), print {
  .fv__photo .img01 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media not screen and (min-width: 768px), print {
  .fv__photo .img01--lg {
    display: none;
  }
}
.fv__photo .img01--sp {
  display: none;
}
@media not screen and (min-width: 768px), print {
  .fv__photo .img01--sp {
    display: block;
  }
}
.fv__logo-badge {
  position: absolute;
  left: 55px;
  bottom: 240px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  z-index: 5;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.05);
  animation: fv-drift 0.9s ease 0.1s both;
}
@media not screen and (min-width: 1024px), print {
  .fv__logo-badge {
    width: 175px;
    height: 175px;
  }
}
@media not screen and (min-width: 768px), print {
  .fv__logo-badge {
    left: 24vw;
    top: 5%;
    bottom: auto;
  }
}
@media not screen and (min-width: 600px), print {
  .fv__logo-badge {
    top: 3%;
    width: 23.54261vw;
    height: 23.54261vw;
  }
}
.fv__logo-badge-mark {
  position: relative;
  left: 4px;
  display: block;
  width: auto;
  height: 50px;
  object-fit: contain;
}
@media not screen and (min-width: 1024px), print {
  .fv__logo-badge-mark {
    height: 39px;
  }
}
@media not screen and (min-width: 600px), print {
  .fv__logo-badge-mark {
    left: 0.44844vw;
    height: 5.8296vw;
  }
}
.fv__logo-badge-deco {
  position: absolute;
  top: 7px;
  left: 7px;
  width: calc(100% - 14px);
  animation: badge-spin 20s linear infinite;
  pointer-events: none;
}
@media not screen and (min-width: 600px), print {
  .fv__logo-badge-deco {
    top: 1.12108vw;
    left: 1.12108vw;
    width: calc(100% - 2.24216vw);
  }
}
.fv__copy-img {
  position: absolute;
  right: 45px;
  top: 55px;
  height: 78%;
  display: flex;
  gap: 24px;
  z-index: 6;
  pointer-events: none;
}
@media (min-width: 1400px) {
  .fv__copy-img {
    right: 7%;
    height: 81%;
  }
}
@media screen and (min-width: 1550px), print {
  .fv__copy-img {
    right: 12%;
    height: 83%;
  }
}
@media not screen and (min-width: 1280px), print {
  .fv__copy-img {
    height: 71%;
  }
}
@media not screen and (min-width: 1024px), print {
  .fv__copy-img {
    right: 20px;
    height: 55%;
  }
}
@media not screen and (min-width: 768px), print {
  .fv__copy-img {
    height: 47%;
  }
}
@media not screen and (min-width: 600px), print {
  .fv__copy-img {
    top: 3%;
    right: 3.36323vw;
    height: 47%;
  }
}
.fv__copy-img img {
  display: block;
  height: 100%;
  width: auto;
}
.fv .fv__txt01 {
  margin-top: 7px;
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.65em;
  line-height: 1;
  color: var(--color-dark);
  white-space: nowrap;
}
@media not screen and (min-width: 768px), print {
  .fv .fv__txt01 {
    position: absolute;
    right: 12%;
    top: 66%;
  }
}
@media not screen and (min-width: 600px), print {
  .fv .fv__txt01 {
    top: 65%;
    font-size: 4.26009vw;
  }
}
.fv__copy {
  position: absolute;
  left: 80px;
  bottom: 65px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-default);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  animation: fv-drift 1s ease 0.3s both;
}
@media screen and (min-width: 1550px), print {
  .fv__copy {
    font-size: 32px;
  }
}
@media not screen and (min-width: 1024px), print {
  .fv__copy {
    left: 20px;
  }
}
@media not screen and (min-width: 600px), print {
  .fv__copy {
    left: 6.27803vw;
    bottom: 7.62332vw;
    font-size: 4.48431vw;
  }
}
.fv__copy span {
  background: var(--color-dark);
  padding: 6px 6px;
  width: fit-content;
}
@media not screen and (min-width: 600px), print {
  .fv__copy span {
    padding: 1.79373vw;
  }
}
.fv__scroll {
  position: absolute;
  right: 80px;
  bottom: 70px;
  width: 30px;
  height: 36px;
  z-index: 6;
}
@media not screen and (min-width: 768px), print {
  .fv__scroll {
    right: 7vw;
    bottom: 22%;
  }
}
@media not screen and (min-width: 600px), print {
  .fv__scroll {
    right: 3.58745vw;
  }
}
.fv__scroll::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 36px;
  background: var(--color-default);
  transform: translateX(-50%);
}
@media not screen and (min-width: 600px), print {
  .fv__scroll::before {
    border-color: var(--color-dark);
  }
}
.fv__scroll::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-default);
  border-bottom: 2px solid var(--color-default);
  transform: translateX(-50%) rotate(45deg);
}
@media not screen and (min-width: 600px), print {
  .fv__scroll::after {
    border-color: var(--color-dark);
  }
}

@keyframes badge-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fv-drift {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.section-tag {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 553px;
}
@media not screen and (min-width: 600px), print {
  .section-tag {
    margin-left: 8.07175vw;
    width: 72.86996vw;
  }
}
.section-tag__bar {
  display: flex;
  align-items: center;
  font-family: var(--font-teko);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.85;
}
.section-tag__bar--top {
  padding: 23px 105px 20px;
  background: var(--color-primary);
  clip-path: polygon(43.2px 0, 100% 0, calc(100% - 43.2px) 100%, 0 100%);
  font-size: 40px;
  color: var(--color-dark);
  line-height: 1;
  justify-content: center;
}
@media not screen and (min-width: 600px), print {
  .section-tag__bar--top {
    padding: 3.13902vw 14.79821vw 2.24216vw;
    font-size: 5.38117vw;
    clip-path: polygon(6.27803vw 0, 100% 0, calc(100% - 6.27803vw) 100%, 0 100%);
  }
}
.section-tag__bar--bot {
  margin-left: auto;
  padding: 26px 73px;
  background: var(--color-dark);
  clip-path: polygon(43.2px 0, 100% 0, calc(100% - 43.2px) 100%, 0 100%);
  font-family: var(--font-default);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.06em;
  justify-content: center;
}
@media not screen and (min-width: 600px), print {
  .section-tag__bar--bot {
    padding: 3.58745vw 9.19283vw 3.58745vw;
    font-size: 4.26009vw;
    clip-path: polygon(7.62332vw 0, 100% 0, calc(100% - 7.62332vw) 100%, 0 100%);
  }
}
.section-tag--right {
  margin-left: auto;
  width: 565px;
}
@media not screen and (min-width: 600px), print {
  .section-tag--right {
    margin-right: auto;
    width: 73.99104vw;
  }
}
.section-tag--right .section-tag__bar--top {
  padding: 26px 45px;
  font-size: 30px;
  font-family: var(--font-default);
  color: #fff;
}
@media not screen and (min-width: 600px), print {
  .section-tag--right .section-tag__bar--top {
    padding: 3.58745vw 7.62332vw 3.58745vw;
    font-size: 4.26009vw;
    clip-path: polygon(7.62332vw 0, 100% 0, calc(100% - 7.62332vw) 100%, 0 100%);
  }
}
.section-tag--right .section-tag__bar--bot {
  padding: 26px 73px;
  font-size: 30px;
}
@media not screen and (min-width: 600px), print {
  .section-tag--right .section-tag__bar--bot {
    padding: 3.58745vw 9.19283vw 3.58745vw;
    font-size: 4.26009vw;
    clip-path: polygon(7.62332vw 0, 100% 0, calc(100% - 7.62332vw) 100%, 0 100%);
  }
}

.inline-tag {
  display: inline-flex;
  align-items: center;
  height: 58px;
  padding: 0 40px 0 52px;
  background: var(--color-dark);
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  font-family: var(--font-default);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  line-height: 1;
}

.about {
  position: relative;
  overflow: hidden;
  padding-bottom: 300px;
}
@media not screen and (min-width: 1024px), print {
  .about {
    padding-bottom: 150px;
  }
}
.about::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  height: 100%;
  background-image: url(../../img/home/about_bg_triangle.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top left;
  z-index: 0;
}
@media not screen and (min-width: 600px), print {
  .about::before {
    width: 100%;
  }
}
.about__deco-mark {
  position: absolute;
  right: 10px;
  top: 209px;
  width: 618px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
@media not screen and (min-width: 1280px), print {
  .about__deco-mark {
    width: 345px;
  }
}
@media not screen and (min-width: 1024px), print {
  .about__deco-mark {
    width: 195px;
  }
}
@media not screen and (min-width: 768px), print {
  .about__deco-mark {
    top: 390px;
  }
}
@media not screen and (min-width: 600px), print {
  .about__deco-mark {
    top: 59.19283vw;
    right: -2.46636vw;
    width: 41.70404vw;
  }
}
.about__deco-mark img {
  display: flex;
  width: 100%;
}
.about__deco-text {
  position: absolute;
  left: -6px;
  top: 260px;
  width: 101px;
  height: 100%;
  background-image: url(../../img/home/about_deco_txt.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
  pointer-events: none;
  z-index: 10;
}
@media not screen and (min-width: 1280px), print {
  .about__deco-text {
    width: 63px;
  }
}
@media not screen and (min-width: 768px), print {
  .about__deco-text {
    top: 63px;
  }
}
@media not screen and (min-width: 600px), print {
  .about__deco-text {
    left: 0;
    width: 7.62332vw;
  }
}
.about__inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-top: 185px;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1175px;
  z-index: 10;
}
@media screen and (min-width: 1550px), print {
  .about__inner {
    max-width: 1300px;
  }
}
@media not screen and (min-width: 600px), print {
  .about__inner {
    padding-top: 31.39014vw;
    padding-right: 6.27803vw;
    padding-left: 6.27803vw;
  }
}

.why-cards {
  margin-top: 115px;
  display: flex;
  gap: 50px;
}
@media not screen and (min-width: 1280px), print {
  .why-cards {
    gap: 25px;
  }
}
@media not screen and (min-width: 768px), print {
  .why-cards {
    margin-top: 125px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    max-width: 550px;
  }
}
@media not screen and (min-width: 600px), print {
  .why-cards {
    margin-top: 24.21525vw;
    gap: 6.27803vw;
  }
}

.why-card {
  width: 100%;
  min-height: 385px;
  background: #fff;
  padding: 45px 30px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s;
}
@media not screen and (min-width: 1024px), print {
  .why-card {
    padding: 32px 20px;
  }
}
@media not screen and (min-width: 768px), print {
  .why-card {
    width: 100%;
    min-height: 0;
  }
}
@media not screen and (min-width: 600px), print {
  .why-card {
    position: relative;
    padding-top: 5.8296vw;
    padding-bottom: 5.8296vw;
    padding-left: 25.78476vw;
    padding-right: 6.27803vw;
    text-align: left;
  }
}
.why-card:hover {
  transform: translateY(-6px);
}
.why-card__icon {
  width: 144px;
  height: 144px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  transition: transform 0.5s;
}
@media not screen and (min-width: 1280px), print {
  .why-card__icon {
    width: 120px;
    height: 120px;
  }
}
@media not screen and (min-width: 600px), print {
  .why-card__icon {
    position: absolute;
    left: 6.27803vw;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 19.0583vw;
    height: 19.0583vw;
  }
}
.why-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.why-card:hover .why-card__icon {
  transform: scale(1.045) rotate(-4deg);
}
.why-card__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media not screen and (min-width: 1024px), print {
  .why-card__title {
    font-size: 19px;
  }
}
@media not screen and (min-width: 600px), print {
  .why-card__title {
    margin-left: 5.8296vw;
    min-width: calc(100% - 5.8296vw);
    font-size: 4.70853vw;
    text-align: left;
    line-height: 1.4;
  }
}
.why-card__body {
  margin-top: 17px;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}
@media not screen and (min-width: 600px), print {
  .why-card__body {
    margin-top: 3.58745vw;
    margin-left: 5.8296vw;
    min-width: calc(100% - 5.8296vw);
    font-size: 3.58745vw;
    font-weight: 400;
  }
}

.compare {
  position: relative;
  margin-top: 180px;
}
@media not screen and (min-width: 600px), print {
  .compare {
    margin-top: 26.00897vw;
  }
}
.compare__lead {
  margin-top: 90px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
}
@media not screen and (min-width: 600px), print {
  .compare__lead {
    margin-top: 8.07175vw;
    font-size: 3.58745vw;
    text-align: left;
  }
}
.compare__table {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.04);
}
@media not screen and (min-width: 600px), print {
  .compare__table {
    margin-top: 8.07175vw;
  }
}
.compare__col {
  width: 50%;
  padding: 26px 80px 47px;
}
@media not screen and (min-width: 1024px), print {
  .compare__col {
    padding: 25px 35px 35px;
  }
}
@media not screen and (min-width: 600px), print {
  .compare__col {
    padding: 3.58745vw 0 5.8296vw;
  }
}
.compare__col--light {
  background: #fff;
}
.compare__col--light .compare__col-title {
  color: var(--color-primary);
}
.compare__col--light .compare__col-sub {
  color: var(--color-primary);
}
.compare__col--dark {
  background: var(--color-dark);
}
.compare__col--dark .compare__col-title {
  color: var(--color-primary);
}
.compare__col--dark .compare__col-sub {
  color: var(--color-primary);
}
.compare__col--dark .compare__row {
  color: #fff;
  border-color: #fff;
}
.compare__col--dark .compare__row:last-child {
  border-bottom: 1px solid #fff;
}
.compare__col-title, .compare__col-title span {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media not screen and (min-width: 600px), print {
  .compare__col-title, .compare__col-title span {
    font-size: 4.26009vw;
  }
}
.compare__col-title span, .compare__col-title span span {
  margin-left: 9px;
  display: inline-block;
  white-space: nowrap;
}
@media not screen and (min-width: 768px), print {
  .compare__col-title span, .compare__col-title span span {
    margin-left: 0;
    display: block;
  }
}
.compare__col-sub {
  margin-bottom: 23px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.compare__col-sub--none {
  visibility: hidden;
}
@media not screen and (min-width: 768px), print {
  .compare__col-sub {
    margin-top: 6px;
  }
}
@media not screen and (min-width: 600px), print {
  .compare__col-sub {
    margin-top: 0.89687vw;
    margin-bottom: 3.36323vw;
    font-size: 3.13902vw;
    font-weight: 400;
  }
}
.compare__row {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 13px 10px;
  height: 58px;
  border-top: 1px solid var(--color-default);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
@media not screen and (min-width: 768px), print {
  .compare__row {
    line-height: 1.4;
  }
}
@media not screen and (min-width: 600px), print {
  .compare__row {
    padding: 3.36323vw 2.69059vw;
    gap: 2.24216vw;
    height: auto;
    min-height: 11.43498vw;
    font-size: 3.58745vw;
  }
}
.compare__row:last-child {
  border-bottom: 1px solid var(--color-default);
}
.compare__check {
  width: 35px;
  height: auto;
  display: grid;
  place-items: center;
}
@media not screen and (min-width: 600px), print {
  .compare__check {
    width: 6.27803vw;
  }
}
.compare__check img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.compare__cross {
  position: relative;
  display: block;
  width: 35px;
  height: 2px;
}
@media not screen and (min-width: 600px), print {
  .compare__cross {
    width: 6.27803vw;
    height: 0.44844vw;
  }
}
.compare__cross::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 25px;
  height: 2px;
  background-color: var(--color-primary-soft);
}
@media not screen and (min-width: 600px), print {
  .compare__cross::before {
    width: 4.70853vw;
    height: 0.44844vw;
  }
}

.support-cards {
  margin-top: 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}
@media not screen and (min-width: 1280px), print {
  .support-cards {
    gap: 40px;
  }
}
@media not screen and (min-width: 1024px), print {
  .support-cards {
    margin-top: 100px;
    gap: 22px;
  }
}
@media not screen and (min-width: 768px), print {
  .support-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
@media not screen and (min-width: 600px), print {
  .support-cards {
    margin-top: 15.69507vw;
    flex-direction: column;
    gap: 12.33184vw;
  }
}

.support-card {
  position: relative;
  padding: 27px 23px 19px;
  background-color: #fff;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.03);
}
@media not screen and (min-width: 768px), print {
  .support-card {
    width: calc(50% - 15px);
  }
}
@media not screen and (min-width: 600px), print {
  .support-card {
    width: 100%;
    padding: 7.17489vw 5.8296vw 5.38117vw;
  }
}
.support-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.support-card__icon {
  position: absolute;
  top: 19px;
  left: 13px;
  width: 33px;
  height: auto;
}
.support-card__icon--02 {
  width: 35px;
}
.support-card__icon--03 {
  width: 25px;
}
.support-card__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.support-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
}
@media not screen and (min-width: 1024px), print {
  .support-card__label {
    font-size: 14px;
  }
}
@media not screen and (min-width: 768px), print {
  .support-card__label {
    font-size: 16px;
  }
}
@media not screen and (min-width: 600px), print {
  .support-card__label {
    font-size: 4.26009vw;
  }
}
.support-card__label b {
  color: var(--color-primary);
  font-weight: 700;
}
.support-card__title {
  margin-top: 33px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
@media not screen and (min-width: 1280px), print {
  .support-card__title {
    font-size: 18px;
  }
}
@media not screen and (min-width: 1024px), print {
  .support-card__title {
    font-size: 16px;
  }
}
@media not screen and (min-width: 600px), print {
  .support-card__title {
    margin-top: 5.38117vw;
    font-size: 4.93274vw;
  }
}
.support-card__body {
  margin-top: 23px;
  font-size: 14px;
  line-height: 1.6;
  min-height: 44px;
  letter-spacing: 0;
}
@media screen and (min-width: 1550px), print {
  .support-card__body {
    font-size: 17px;
  }
}
@media not screen and (min-width: 600px), print {
  .support-card__body {
    margin-top: 4.48431vw;
    min-height: 0;
    font-size: 4.26009vw;
    font-weight: 400;
  }
}
.support-card__list-box {
  margin-top: 25px;
  padding: 16px 15px;
  background: #eee;
}
@media not screen and (min-width: 1024px), print {
  .support-card__list-box {
    margin-top: 18px;
    padding: 12px;
  }
}
@media not screen and (min-width: 600px), print {
  .support-card__list-box {
    margin-top: 4.03588vw;
    padding: 2.24216vw 2.69059vw;
  }
}
.support-card__list {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  white-space: pre-line;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 1024px), print {
  .support-card__list {
    font-size: 12px;
  }
}
@media not screen and (min-width: 600px), print {
  .support-card__list {
    font-size: 4.26009vw;
    font-weight: 400;
  }
}

.operations {
  position: relative;
  padding-bottom: 145px;
  overflow: hidden;
}
@media not screen and (min-width: 768px), print {
  .operations {
    overflow: visible;
  }
}
@media not screen and (min-width: 600px), print {
  .operations {
    padding-bottom: 41.0314vw;
  }
}
.operations::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65%;
  height: 100%;
  background-image: url(../../img/home/operations_bg_triangle.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom left;
  z-index: 0;
}
@media not screen and (min-width: 600px), print {
  .operations::before {
    width: 100%;
  }
}
.operations__deco-text {
  position: absolute;
  right: -2px;
  top: 265px;
  width: 101px;
  height: 100%;
  background-image: url(../../img/home/operations_deco_txt.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
  pointer-events: none;
  z-index: 15;
}
@media not screen and (min-width: 1280px), print {
  .operations__deco-text {
    top: -320px;
    width: 63px;
  }
}
@media not screen and (min-width: 768px), print {
  .operations__deco-text {
    right: 0;
    top: -290px;
    z-index: 30;
  }
}
@media not screen and (min-width: 600px), print {
  .operations__deco-text {
    top: -15.91928vw;
    width: 7.62332vw;
    z-index: 10;
  }
}
.operations__body {
  position: relative;
  z-index: 30;
}
.operations__headline {
  position: relative;
  padding-top: 118px;
}
@media not screen and (min-width: 768px), print {
  .operations__headline {
    padding-top: 90px;
  }
}
@media not screen and (min-width: 600px), print {
  .operations__headline {
    padding-top: 11.88341vw;
  }
}
.operations__headline::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 562px;
  background-image: url(../../img/home/operations_bg_image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 0;
}
@media not screen and (min-width: 768px), print {
  .operations__headline::before {
    height: 490px;
  }
}
@media not screen and (min-width: 600px), print {
  .operations__headline::before {
    height: 73.99104vw;
    background-image: url(../../img/home/operations_bg_image_sp.jpg);
  }
}
.operations__headline__ttl {
  padding-top: 26px;
  padding-bottom: 26px;
  padding-left: calc(50vw - 587.5px + 10px);
  padding-right: 226px;
  display: inline-flex;
  align-items: center;
  background-color: var(--color-dark);
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
}
@media screen and (min-width: 1550px), print {
  .operations__headline__ttl {
    padding-left: calc(50vw - 650px + 10px);
  }
}
@media not screen and (min-width: 1280px), print {
  .operations__headline__ttl {
    padding-left: 20px;
  }
}
@media not screen and (min-width: 600px), print {
  .operations__headline__ttl {
    padding-top: 3.13902vw;
    padding-bottom: 3.13902vw;
    padding-right: 26.68162vw;
    padding-left: 28px;
  }
}
.operations__headline__ttl span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
}
@media not screen and (min-width: 600px), print {
  .operations__headline__ttl span {
    font-size: 4.26009vw;
  }
}
.operations__headline__inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1175px;
}
@media screen and (min-width: 1550px), print {
  .operations__headline__inner {
    max-width: 1300px;
  }
}
@media not screen and (min-width: 600px), print {
  .operations__headline__inner {
    padding-right: 6.27803vw;
    padding-left: 6.27803vw;
  }
}
.operations__headline__txt {
  position: relative;
  margin-top: 38px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  color: #fff;
  z-index: 10;
}
@media not screen and (min-width: 600px), print {
  .operations__headline__txt {
    margin-top: 8.07175vw;
    font-size: 4.26009vw;
  }
}

.timeline {
  position: relative;
  margin-top: 110px;
  z-index: 20;
}
@media not screen and (min-width: 600px), print {
  .timeline {
    margin-top: 21.52467vw;
  }
}
.timeline__inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1175px;
  z-index: 2;
}
@media screen and (min-width: 1550px), print {
  .timeline__inner {
    max-width: 1300px;
  }
}
.timeline__list {
  background-color: #fff;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.03);
}
.timeline__row {
  position: relative;
  padding-left: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 168px;
  border-bottom: 1px solid var(--color-default);
}
@media not screen and (min-width: 768px), print {
  .timeline__row {
    height: 230px;
  }
}
@media not screen and (min-width: 600px), print {
  .timeline__row {
    padding-top: 11.21077vw;
    padding-left: 6.27803vw;
    padding-bottom: 11.21077vw;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}
.timeline__row:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -12.5px;
  left: 82px;
  width: 24px;
  height: 24px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
  z-index: 20;
}
@media not screen and (min-width: 600px), print {
  .timeline__row:not(:last-child)::after {
    left: 15.47086vw;
    bottom: -4.26008vw;
    width: 7.84754vw;
    height: 7.84754vw;
  }
}
.timeline__row:last-child {
  border-bottom: none;
}
.timeline__time {
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-teko);
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-primary);
  flex-shrink: 0;
}
@media not screen and (min-width: 600px), print {
  .timeline__time {
    font-size: 10.31391vw;
  }
}
.timeline__content {
  margin-left: 46px;
  margin-right: 73px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media not screen and (min-width: 1024px), print {
  .timeline__content {
    margin-left: 38px;
    margin-right: 38px;
  }
}
@media not screen and (min-width: 768px), print {
  .timeline__content {
    margin-right: 27px;
    margin-left: 27px;
  }
}
@media not screen and (min-width: 600px), print {
  .timeline__content {
    margin-left: 0;
    margin-right: 0;
  }
}
.timeline__row-header {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
@media not screen and (min-width: 1024px), print {
  .timeline__row-header {
    gap: 16px;
  }
}
@media not screen and (min-width: 768px), print {
  .timeline__row-header {
    margin-top: 6.95068vw;
    gap: 2.24216vw;
    justify-content: space-between;
  }
}
.timeline__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media not screen and (min-width: 1024px), print {
  .timeline__title {
    font-size: 18px;
  }
}
@media not screen and (min-width: 600px), print {
  .timeline__title {
    font-size: 4.70853vw;
    line-height: 1.4;
  }
}
.timeline__chip {
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 105, 0, 0.3);
  color: var(--color-primary);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}
@media not screen and (min-width: 600px), print {
  .timeline__chip {
    padding: 1.56951vw 2.01794vw;
    font-size: 3.36323vw;
    min-width: 28.02691vw;
    text-align: center;
  }
}
.timeline__desc {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
}
@media not screen and (min-width: 1024px), print {
  .timeline__desc {
    font-size: 13px;
  }
}
@media not screen and (min-width: 600px), print {
  .timeline__desc {
    padding-right: 6.27803vw;
    font-size: 4.14799vw;
  }
}
.timeline__photo {
  margin-left: auto;
  display: block;
  width: 300px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
@media not screen and (min-width: 768px), print {
  .timeline__photo {
    width: 160px;
    object-position: right 36% top 0;
  }
}
@media not screen and (min-width: 600px), print {
  .timeline__photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 39.91032vw;
    height: 21.74888vw;
    object-position: center;
  }
}

.stats {
  position: relative;
  margin-top: 250px;
}
@media not screen and (min-width: 600px), print {
  .stats {
    margin-top: 26.90583vw;
  }
}
.stats__headline {
  position: relative;
}
.stats__headline__ttl {
  padding-top: 26px;
  padding-bottom: 26px;
  padding-left: calc(50vw - 587.5px + 10px);
  padding-right: 196px;
  display: inline-flex;
  align-items: center;
  background-color: var(--color-dark);
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
}
@media screen and (min-width: 1550px), print {
  .stats__headline__ttl {
    padding-left: calc(50vw - 650px + 10px);
  }
}
@media not screen and (min-width: 1280px), print {
  .stats__headline__ttl {
    padding-left: 20px;
  }
}
@media not screen and (min-width: 600px), print {
  .stats__headline__ttl {
    padding-top: 3.13902vw;
    padding-bottom: 3.13902vw;
    padding-right: 26.68162vw;
    padding-left: 28px;
  }
}
.stats__headline__ttl span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
}
@media not screen and (min-width: 600px), print {
  .stats__headline__ttl span {
    font-size: 4.26009vw;
  }
}
.stats__headline__inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1175px;
}
@media screen and (min-width: 1550px), print {
  .stats__headline__inner {
    max-width: 1300px;
  }
}
@media not screen and (min-width: 600px), print {
  .stats__headline__inner {
    padding-right: 6.27803vw;
    padding-left: 6.27803vw;
  }
}
.stats__headline__txt {
  position: relative;
  margin-top: 48px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  z-index: 10;
}
@media not screen and (min-width: 600px), print {
  .stats__headline__txt {
    margin-top: 8.07175vw;
    font-size: 4.26009vw;
  }
}
.stats__inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1175px;
  z-index: 2;
}
@media screen and (min-width: 1550px), print {
  .stats__inner {
    max-width: 1300px;
  }
}
@media not screen and (min-width: 600px), print {
  .stats__inner {
    padding-right: 6.27803vw;
    padding-left: 6.27803vw;
  }
}
.stats__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 53px;
}
@media not screen and (min-width: 1280px), print {
  .stats__grid {
    gap: 30px;
  }
}
@media not screen and (min-width: 1024px), print {
  .stats__grid {
    gap: 22px;
  }
}
@media not screen and (min-width: 768px), print {
  .stats__grid {
    display: flex;
    flex-wrap: wrap;
  }
}
@media not screen and (min-width: 600px), print {
  .stats__grid {
    gap: 7.84754vw 1.3453vw;
  }
}

.stat-card {
  padding-bottom: 25px;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.03);
}
@media not screen and (min-width: 768px), print {
  .stat-card {
    width: calc(50% - 11px);
  }
}
@media not screen and (min-width: 600px), print {
  .stat-card {
    padding-bottom: 4.03588vw;
    width: calc(50% - 0.67265vw);
  }
}
.stat-card__label {
  padding: 18px 0;
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  letter-spacing: 0;
  line-height: 1;
}
@media not screen and (min-width: 1024px), print {
  .stat-card__label {
    font-size: 18px;
  }
}
@media not screen and (min-width: 600px), print {
  .stat-card__label {
    padding: 2.9148vw 0;
    font-size: 4.26009vw;
  }
}
.stat-card__number {
  margin-top: 18px;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 90px;
  font-weight: 400;
  font-family: var(--font-teko);
  color: var(--color-primary);
  line-height: 1;
}
@media not screen and (min-width: 1024px), print {
  .stat-card__number {
    font-size: 60px;
  }
}
@media not screen and (min-width: 600px), print {
  .stat-card__number {
    margin-top: 3.13902vw;
    font-size: 15.69507vw;
  }
}
.stat-card__tilde {
  position: relative;
  top: -29px;
  margin-right: 2px;
  margin-left: 2px;
  font-size: 36px;
  font-weight: 400;
  color: var(--color-primary);
}
@media not screen and (min-width: 1024px), print {
  .stat-card__tilde {
    top: -14px;
  }
}
@media not screen and (min-width: 600px), print {
  .stat-card__tilde {
    font-size: 7.62332vw;
  }
}
.stat-card__unit {
  position: relative;
  top: -21px;
  margin-left: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
@media not screen and (min-width: 1024px), print {
  .stat-card__unit {
    top: -15px;
    font-size: 12px;
  }
}
@media not screen and (min-width: 600px), print {
  .stat-card__unit {
    margin-left: 0.44844vw;
    font-size: 3.13902vw;
  }
}
.stat-card__unit--profit, .stat-card__unit--month {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--color-primary);
}
@media not screen and (min-width: 1024px), print {
  .stat-card__unit--profit, .stat-card__unit--month {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
}
@media not screen and (min-width: 600px), print {
  .stat-card__unit--profit, .stat-card__unit--month {
    font-size: 3.13902vw;
  }
}
@media not screen and (min-width: 600px), print {
  .stat-card__unit--profit {
    font-size: 2.46637vw;
  }
}
.stat-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark);
  text-align: center;
}
@media not screen and (min-width: 1024px), print {
  .stat-card__desc {
    font-size: 12px;
  }
}
@media not screen and (min-width: 600px), print {
  .stat-card__desc {
    padding-right: 0.89687vw;
    padding-left: 0.89687vw;
    font-size: 3.58745vw;
  }
}

.who {
  position: relative;
  margin-top: 250px;
}
@media not screen and (min-width: 600px), print {
  .who {
    margin-top: 26.90583vw;
  }
}
.who__headline {
  position: relative;
}
.who__headline__ttl {
  padding-top: 26px;
  padding-bottom: 26px;
  padding-left: calc(50vw - 587.5px + 10px);
  padding-right: 226px;
  display: inline-flex;
  align-items: center;
  background-color: var(--color-dark);
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
}
@media screen and (min-width: 1550px), print {
  .who__headline__ttl {
    padding-left: calc(50vw - 650px + 10px);
  }
}
@media not screen and (min-width: 1280px), print {
  .who__headline__ttl {
    padding-left: 20px;
  }
}
@media not screen and (min-width: 600px), print {
  .who__headline__ttl {
    padding-top: 3.13902vw;
    padding-bottom: 3.13902vw;
    padding-right: 26.68162vw;
    padding-left: 28px;
  }
}
.who__headline__ttl span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
}
@media not screen and (min-width: 600px), print {
  .who__headline__ttl span {
    font-size: 4.26009vw;
  }
}
.who__headline__inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1175px;
}
@media screen and (min-width: 1550px), print {
  .who__headline__inner {
    max-width: 1300px;
  }
}
@media not screen and (min-width: 600px), print {
  .who__headline__inner {
    padding-right: 6.27803vw;
    padding-left: 6.27803vw;
  }
}
.who__body {
  position: relative;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1175px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 25;
}
@media screen and (min-width: 1550px), print {
  .who__body {
    max-width: 1300px;
  }
}
@media not screen and (min-width: 1024px), print {
  .who__body {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media not screen and (min-width: 600px), print {
  .who__body {
    margin-top: 8.07175vw;
    padding-right: 6.27803vw;
    padding-left: 6.27803vw;
  }
}
.who__copy__txt {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  z-index: 10;
}
@media not screen and (min-width: 600px), print {
  .who__copy__txt {
    font-size: 4.26009vw;
  }
}
.who__list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  list-style: none;
}
@media not screen and (min-width: 600px), print {
  .who__list {
    margin-top: 8.07175vw;
  }
}
.who__item {
  padding: 27px 0;
  border-top: 1px solid #000;
  color: #333;
}
@media not screen and (min-width: 600px), print {
  .who__item {
    padding-top: 5.15696vw 0;
  }
}
.who__item:last-child {
  border-bottom: 1px solid #000;
}
.who__item h4.ttl01 {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
@media not screen and (min-width: 600px), print {
  .who__item h4.ttl01 {
    font-size: 4.26009vw;
  }
}
.who__item p.txt01 {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
@media not screen and (min-width: 600px), print {
  .who__item p.txt01 {
    margin-top: 2.24216vw;
    font-size: 3.58745vw;
  }
}
.who__images {
  position: relative;
  margin-left: 80px;
  width: 606px;
  min-width: 606px;
  height: 578px;
}
@media not screen and (min-width: 1280px), print {
  .who__images {
    margin-left: 50px;
    width: 480px;
    min-width: 480px;
    height: 470px;
  }
}
@media not screen and (min-width: 1024px), print {
  .who__images {
    margin-top: 40px;
  }
}
@media not screen and (min-width: 600px), print {
  .who__images {
    margin-top: 13.45292vw;
    margin-left: 0;
    width: 100%;
    height: 81.83857vw;
    min-width: 0;
  }
}
.who__image {
  position: absolute;
  width: 417px;
  height: 313px;
}
@media not screen and (min-width: 1280px), print {
  .who__image {
    width: 68%;
    height: 270px;
  }
}
@media not screen and (min-width: 600px), print {
  .who__image {
    width: 72%;
    height: 54%;
  }
}
.who__image .img01 {
  display: block;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.who__image--top {
  top: 0;
  right: 0;
  z-index: 25;
}
.who__image--bottom {
  bottom: 0;
  left: 0;
  z-index: 20;
}

.ceo {
  position: relative;
  margin-top: 165px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 30px;
  padding-left: 30px;
  max-width: 990px;
  z-index: 10;
}
@media not screen and (min-width: 1024px), print {
  .ceo {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media not screen and (min-width: 600px), print {
  .ceo {
    margin-top: 40.35875vw;
    margin-right: 6.27803vw;
    margin-left: 6.27803vw;
    padding-top: 2.9148vw;
    padding-left: 2.9148vw;
  }
}
.ceo::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 30px;
  width: calc(100% - 375px);
  height: calc(100% - 80px);
  border-top: 2px solid var(--color-dark);
  border-right: 2px solid var(--color-dark);
  z-index: 25;
}
@media not screen and (min-width: 600px), print {
  .ceo::before {
    top: 0;
    right: 2.9148vw;
    width: calc(100% - 53.81166vw);
    height: calc(100% - 13.45292vw);
    border-width: 1px;
  }
}
.ceo::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: calc(100% - 80px - 30px);
  height: calc(100% - 115px);
  border-left: 2px solid var(--color-dark);
  border-bottom: 2px solid var(--color-dark);
  z-index: 25;
}
@media not screen and (min-width: 600px), print {
  .ceo::after {
    bottom: 2.9148vw;
    left: 0;
    width: calc(100% - 22.19731vw);
    height: calc(100% - 10.08969vw);
    border-width: 1px;
  }
}
.ceo .ceo__icon_quotation {
  position: absolute;
  object-fit: contain;
  z-index: 25;
}
.ceo .ceo__icon_quotation--start {
  top: -50px;
  left: 0;
  width: 125px;
  height: 113px;
}
@media not screen and (min-width: 600px), print {
  .ceo .ceo__icon_quotation--start {
    top: -4.26008vw;
    width: 13.00449vw;
    height: 10.76234vw;
  }
}
.ceo .ceo__icon_quotation--end {
  bottom: -10px;
  right: 14px;
  width: 74px;
  height: 64px;
}
@media not screen and (min-width: 600px), print {
  .ceo .ceo__icon_quotation--end {
    bottom: -4.03587vw;
    right: 2.9148vw;
    width: 15.91929vw;
    height: 13.00449vw;
  }
}
.ceo__headline {
  position: absolute;
  top: -13px;
  left: 145px;
  font-size: 30px;
  font-weight: 500;
  font-family: var(--font-teko);
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-primary);
  z-index: 10;
}
@media not screen and (min-width: 600px), print {
  .ceo__headline--pc {
    display: none;
  }
}
.ceo__headline--sp {
  display: none;
}
@media not screen and (min-width: 600px), print {
  .ceo__headline--sp {
    top: -2.91479vw;
    left: 18.16144vw;
    display: block;
    font-size: 5.8296vw;
  }
}
.ceo__wrap {
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: 353px;
  background-color: #fff;
}
@media not screen and (min-width: 600px), print {
  .ceo__wrap {
    min-height: 0;
    flex-direction: column;
  }
}
.ceo__image {
  min-width: 450px;
  width: 450px;
  height: 100%;
}
@media not screen and (min-width: 1024px), print {
  .ceo__image {
    min-width: 30%;
    width: 30%;
  }
}
@media not screen and (min-width: 600px), print {
  .ceo__image {
    width: 100%;
    height: 53.13902vw;
  }
}
.ceo__image .img01 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media not screen and (min-width: 600px), print {
  .ceo__image .img01--pc {
    display: none;
  }
}
.ceo__image .img01--sp {
  display: none;
}
@media not screen and (min-width: 600px), print {
  .ceo__image .img01--sp {
    display: block;
  }
}
.ceo__contents {
  padding-top: 38px;
  padding-bottom: 67px;
  padding-right: 110px;
  padding-left: 80px;
}
@media not screen and (min-width: 1024px), print {
  .ceo__contents {
    padding-left: 45px;
  }
}
@media not screen and (min-width: 600px), print {
  .ceo__contents {
    padding-top: 6.50225vw;
    padding-right: 8.07175vw;
    padding-left: 5.38117vw;
    padding-bottom: 16.36772vw;
  }
}
.ceo__message__ttl {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}
@media not screen and (min-width: 600px), print {
  .ceo__message__ttl {
    font-size: 4.70853vw;
  }
}
.ceo__message {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
}
@media not screen and (min-width: 600px), print {
  .ceo__message {
    margin-top: 4.70853vw;
    font-size: 3.58745vw;
  }
}
.ceo__name {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media not screen and (min-width: 600px), print {
  .ceo__name {
    margin-top: 3.58745vw;
    font-size: 3.58745vw;
  }
}

.join {
  position: relative;
  background-image: url(../../img/home/bg_noise_dark.png);
  background-repeat: repeat;
  background-size: 160px 160px;
  background-position: 0 0;
  padding: 160px 0 175px;
}
@media not screen and (min-width: 1024px), print {
  .join {
    padding-bottom: 140px;
  }
}
.join__deco-text {
  position: absolute;
  left: 0;
  top: -154px;
  width: 101px;
  height: 100%;
  background-image: url(../../img/home/join_deco_txt.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
  pointer-events: none;
  z-index: 30;
}
@media not screen and (min-width: 1280px), print {
  .join__deco-text {
    top: -95px;
    width: 63px;
  }
}
@media not screen and (min-width: 600px), print {
  .join__deco-text {
    top: -7.17488vw;
    width: 7.62332vw;
  }
}
.join__inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1175px;
  z-index: 10;
}
@media screen and (min-width: 1550px), print {
  .join__inner {
    max-width: 1300px;
  }
}
@media not screen and (min-width: 600px), print {
  .join__inner {
    padding-right: 6.27803vw;
    padding-left: 6.27803vw;
    max-width: 100%;
    overflow: hidden;
  }
}
.join__steps {
  margin-top: 63px;
}
@media not screen and (min-width: 600px), print {
  .join__steps {
    margin-top: 12.10763vw;
  }
}
.join__step-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
}
@media not screen and (min-width: 768px), print {
  .join__step-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
  }
}
@media not screen and (min-width: 600px), print {
  .join__step-list {
    gap: 6.72646vw;
  }
}

.join-tag {
  position: relative;
  margin-left: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media not screen and (min-width: 600px), print {
  .join-tag {
    margin-left: 0;
    width: 100%;
  }
}
.join-tag__bar {
  display: flex;
  align-items: center;
  font-family: var(--font-default);
  font-weight: 700;
  line-height: 1;
}
.join-tag__bar--top {
  padding: 27px 107px;
  background: var(--color-primary);
  clip-path: polygon(40px 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  font-size: 30px;
  color: #fff;
  z-index: 15;
}
@media not screen and (min-width: 600px), print {
  .join-tag__bar--top {
    padding: 3.58745vw 15.24664vw 3.58745vw;
    font-size: 4.26009vw;
    clip-path: polygon(7.62332vw 0, 100% 0, calc(100% - 7.62332vw) 100%, 0 100%);
  }
}
.join-tag__bar--bot {
  margin-top: -9px;
  margin-left: 130px;
  padding: 27px 63px;
  background: var(--color-dark);
  clip-path: polygon(40px 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  z-index: 10;
}
@media not screen and (min-width: 1024px), print {
  .join-tag__bar--bot {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media not screen and (min-width: 600px), print {
  .join-tag__bar--bot {
    position: relative;
    left: -10%;
    justify-content: center;
    margin-top: -2.69058vw;
    margin-left: 0;
    padding: 8.07175vw 5.60539vw 8.07175vw;
    width: 120%;
    font-size: 3.58745vw;
    font-weight: 700;
    clip-path: polygon(15.02243vw 0, 100% 0, calc(100% - 15.02243vw) 100%, 0 100%);
    text-align: center;
  }
}

.join-step {
  text-align: center;
  padding: 40px 20px 30px;
  position: relative;
  background-color: #fff;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.03);
}
@media not screen and (min-width: 1024px), print {
  .join-step {
    padding: 25px 16px;
  }
}
@media not screen and (min-width: 768px), print {
  .join-step {
    width: calc((100% - 44px) / 3);
  }
}
@media not screen and (min-width: 600px), print {
  .join-step {
    padding: 3.13902vw 6.27803vw 5.60539vw;
    width: 100%;
    min-height: 26.68162vw;
  }
}
.join-step__ttl {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0;
  line-height: 1;
}
@media not screen and (min-width: 600px), print {
  .join-step__ttl {
    font-size: 4.26009vw;
  }
}
.join-step__desc {
  margin-top: 21px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: left;
}
@media not screen and (min-width: 1024px), print {
  .join-step__desc {
    font-size: 14px;
  }
}
@media not screen and (min-width: 600px), print {
  .join-step__desc {
    margin-top: 2.69059vw;
    font-size: 4.26009vw;
  }
}
.join-step::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 20%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 24px solid var(--color-primary);
  border-right: 0;
  z-index: 10;
}
@media not screen and (min-width: 600px), print {
  .join-step::after {
    top: auto;
    right: 0;
    left: 0;
    bottom: -2.69058vw;
    margin-right: auto;
    margin-left: auto;
    rotate: 90deg;
  }
}
.join-step:last-child::after {
  display: none;
}

.faq {
  position: relative;
  padding-top: 110px;
  padding-bottom: 155px;
  width: 100%;
  background-color: #fff;
}
@media not screen and (min-width: 600px), print {
  .faq {
    padding-top: 21.30045vw;
    padding-bottom: 27.57848vw;
  }
}
.faq__deco-text {
  position: absolute;
  right: 0;
  top: -85px;
  width: 101px;
  height: 100%;
  background-image: url(../../img/home/faq_deco_txt.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
  pointer-events: none;
  z-index: 15;
}
@media not screen and (min-width: 1280px), print {
  .faq__deco-text {
    top: -50px;
    width: 63px;
  }
}
@media not screen and (min-width: 600px), print {
  .faq__deco-text {
    top: -4.4843vw;
    width: 8.29597vw;
  }
}
.faq__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 20;
}
@media not screen and (min-width: 600px), print {
  .faq__inner {
    padding-right: 6.27803vw;
    padding-left: 6.27803vw;
  }
}
.faq__heading {
  font-family: var(--font-default);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-primary);
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 1550px), print {
  .faq__heading {
    font-size: 36px;
  }
}
@media not screen and (min-width: 600px), print {
  .faq__heading {
    font-size: 5.38117vw;
  }
}
.faq__list {
  margin-top: 60px;
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1550px), print {
  .faq__list {
    max-width: 1150px;
  }
}
@media not screen and (min-width: 600px), print {
  .faq__list {
    margin-top: 15.02243vw;
  }
}
.faq__item {
  position: relative;
  padding: 20px 96px 20px 28px;
  border-top: 1px solid var(--color-default);
  cursor: pointer;
  transition: background-color var(--transition);
  user-select: none;
  background-image: url(../../img/home/bg_noise.png);
  background-repeat: repeat;
  background-size: 160px 160px;
  background-position: 0 0;
}
@media not screen and (min-width: 600px), print {
  .faq__item {
    padding: 5.8296vw 11.6592vw 5.8296vw 5.15696vw;
  }
}
.faq__item:last-child {
  border-bottom: 1px solid var(--color-default);
}
.faq__item:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.faq__item.is-open .faq__item-toggle::after {
  opacity: 0;
}
.faq__item.is-open .faq__item-answer {
  padding-top: 28px;
  max-height: 600px;
}
@media not screen and (min-width: 600px), print {
  .faq__item.is-open .faq__item-answer {
    padding-top: 7.17489vw;
  }
}
.faq__item-question {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media not screen and (min-width: 600px), print {
  .faq__item-question {
    gap: 4.70853vw;
  }
}
.faq__item-mark {
  font-size: 60px;
  font-weight: 400;
  font-family: var(--font-teko);
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
}
@media not screen and (min-width: 600px), print {
  .faq__item-mark {
    font-size: 10.76234vw;
  }
}
.faq__item-text {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
@media not screen and (min-width: 600px), print {
  .faq__item-text {
    position: relative;
    top: -0.44843vw;
    font-size: 3.81166vw;
    line-height: 1.3;
  }
}
.faq__item-toggle {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 35px;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}
@media not screen and (min-width: 600px), print {
  .faq__item-toggle {
    right: 2.69059vw;
  }
}
.faq__item-toggle::before, .faq__item-toggle::after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  left: 50%;
  top: 50%;
  transition: transform 0.25s, opacity 0.25s;
}
.faq__item-toggle::before {
  width: 26px;
  height: 2px;
  transform: translate(-50%, -50%);
}
@media not screen and (min-width: 600px), print {
  .faq__item-toggle::before {
    width: 5.60539vw;
    height: 1px;
  }
}
.faq__item-toggle::after {
  width: 2px;
  height: 26px;
  transform: translate(-50%, -50%);
}
@media not screen and (min-width: 600px), print {
  .faq__item-toggle::after {
    width: 1px;
    height: 5.60539vw;
  }
}
.faq__item-answer {
  display: flex;
  gap: 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s, margin 0.25s;
}
@media not screen and (min-width: 600px), print {
  .faq__item-answer {
    gap: 4.70853vw;
  }
}
.faq__item-answer-mark {
  font-size: 60px;
  font-weight: 400;
  font-family: var(--font-teko);
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
}
@media not screen and (min-width: 600px), print {
  .faq__item-answer-mark {
    font-size: 10.76234vw;
  }
}
.faq__item-answer-text {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}
@media not screen and (min-width: 600px), print {
  .faq__item-answer-text {
    font-size: 3.36323vw;
  }
}

/*# sourceMappingURL=style.css.map */
