@charset "UTF-8";
/* webfont */
@import url("//fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
/* use
-----------------------------------------------------------------*/
/*==========================================================================

   mixin

===========================================================================*/
/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/
html {
  position: relative;
  min-height: 100%;
}
@media only screen and (max-width: 767px) {
  html {
    width: 100%;
    height: 100%;
  }
}

/*--------------------------------------------------------------------------
   head
---------------------------------------------------------------------------*/
head {
  font-family: "pc";
}
@media only screen and (max-width: 767px) {
  head {
    font-family: "sp";
  }
}

/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/
body {
  color: #151F26;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  background-color: #F8F8FB;
  container-type: inline-size;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 375px;
    height: auto;
    font-size: 15px;
    line-height: 1.5;
  }
}

.os-mac body {
  font-weight: 600;
}

/*--------------------------------------------------------------------------
   a
---------------------------------------------------------------------------*/
a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:link, a:visited {
  text-decoration: none;
}

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/
* {
  word-wrap: break-word;
  outline: none;
}

img {
  vertical-align: top;
}

ul, ol {
  list-style: none;
}

/* Placeholder
-----------------------------------------------*/
::-webkit-input-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

::-moz-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

:-ms-input-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

:-moz-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

/*--------------------------------------------------------------------------
   selection
---------------------------------------------------------------------------*/
::-moz-selection {
  background-color: #b3d4fc;
  color: #fff;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #fff;
  text-shadow: none;
}

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
}

/* Remove the stupid outer glow in Webkit */
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type=reset],
input[type=button],
input[type=submit] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   all_page
---------------------------------------------------------------------------*/
.all_page_wrapper {
  opacity: 0;
}

.is-loading .all_page_wrapper {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.all_page_main {
  position: relative;
}

.load-complete .all_page_wrapper {
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  opacity: 1;
  overflow: visible;
}

.load-complete .all_page {
  overflow: visible;
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
  .all_page_wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  .is-loading .all_page_wrapper {
    position: static;
  }
  .all_page {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .is-loading .all_page {
    overflow-y: hidden;
  }
  .load-complete .all_page {
    overflow: visible;
  }
}
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   all_wrap
---------------------------------------------------------------------------*/
.all_wrap {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.all_wrap_m {
  position: relative;
  max-width: 1364px;
  margin: 0 auto;
  padding: 0 20px;
}

.all_wrap_s {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
  .all_wrap {
    max-width: none;
  }
  .all_wrap_m,
  .all_wrap_s {
    max-width: none;
  }
}
/*--------------------------------------------------------------------------
   l-grid
---------------------------------------------------------------------------*/
.l-grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  *zoom: 1;
}
.l-grid:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid__item {
  display: block;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  float: left;
}

.l-grid__item--1of2 {
  width: 50%;
}
.l-grid__item--1of3 {
  width: 33.33333333%;
}
.l-grid__item--1of4 {
  width: 25%;
}
.l-grid__item--1of5 {
  width: 20%;
}
.l-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   l-grid
---------------------------------------------------------------------------*/
.l-inline-grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: nowrap;
}
.l-inline-grid__item {
  display: inline-block;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.l-inline-grid__item--1of2 {
  width: 50%;
}
.l-inline-grid__item--1of3 {
  width: 33.33333333%;
}
.l-inline-grid__item--1of4 {
  width: 25%;
}
.l-inline-grid__item--1of5 {
  width: 20%;
}
.l-inline-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   l-flex-grid
---------------------------------------------------------------------------*/
.l-flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-flex-grid__item {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.l-flex-grid__item--full {
  width: 100%;
}
.l-flex-grid__item--1of2 {
  width: 50%;
}
.l-flex-grid__item--1of3 {
  width: 33.33333333%;
}
.l-flex-grid__item--1of4 {
  width: 25%;
}
.l-flex-grid__item--1of5 {
  width: 20%;
}
.l-flex-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   all_btn
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_linkbtn {
  position: relative;
}
.all_linkbtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 136px;
  height: 30px;
  border-radius: 8px;
  background-color: #ff9b00;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.3px;
}
@media only screen and (max-width: 767px) {
  .all_linkbtn a {
    width: 80px;
    height: 28px;
    border-radius: 4px;
    font-size: 11px;
  }
}
.mode-pc .all_linkbtn a:hover, .mode-sp .all_linkbtn a:active {
  background-color: #151F26;
}
.all_linkbtn_txt {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 0 0 0.2em;
  translate: 0 0.1em;
}
.all_linkbtn_txt ._txt {
  display: inline-block;
  white-space: nowrap;
}
.all_linkbtn_txt ._txt .c {
  display: inline-block;
  will-change: transform;
}
.all_linkbtn_txt ._clone {
  display: inline-block;
  white-space: nowrap;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
.all_linkbtn_txt ._clone .c {
  display: inline-block;
  -webkit-transform: translateY(120%) rotate(20deg);
          transform: translateY(120%) rotate(20deg);
  will-change: transform;
}
.all_linkbtn_txt .c._space {
  width: 0.5em;
}
.all_linkbtn_txt .c:nth-child(0) {
  --i: 0 ;
}
.all_linkbtn_txt .c:first-child {
  --i: 1 ;
}
.all_linkbtn_txt .c:nth-child(2) {
  --i: 2 ;
}
.all_linkbtn_txt .c:nth-child(3) {
  --i: 3 ;
}
.all_linkbtn_txt .c:nth-child(4) {
  --i: 4 ;
}
.all_linkbtn_txt .c:nth-child(5) {
  --i: 5 ;
}
.all_linkbtn_txt .c:nth-child(6) {
  --i: 6 ;
}
.all_linkbtn_txt .c:nth-child(7) {
  --i: 7 ;
}
.all_linkbtn_txt .c:nth-child(8) {
  --i: 8 ;
}
.all_linkbtn_txt .c:nth-child(9) {
  --i: 9 ;
}
.all_linkbtn_txt .c:nth-child(10) {
  --i: 10 ;
}
.all_linkbtn_txt .c:nth-child(11) {
  --i: 11 ;
}
.all_linkbtn_txt .c:nth-child(12) {
  --i: 12 ;
}
.all_linkbtn_txt .c:nth-child(13) {
  --i: 13 ;
}
.all_linkbtn_txt .c:nth-child(14) {
  --i: 14 ;
}
.all_linkbtn_txt .c:nth-child(15) {
  --i: 15 ;
}
.all_linkbtn_txt .c:nth-child(16) {
  --i: 16 ;
}
.all_linkbtn_txt .c:nth-child(17) {
  --i: 17 ;
}
.all_linkbtn_txt .c:nth-child(18) {
  --i: 18 ;
}
.all_linkbtn_txt .c:nth-child(19) {
  --i: 19 ;
}
.all_linkbtn_txt .c:nth-child(20) {
  --i: 20 ;
}
.all_linkbtn_txt .c:nth-child(21) {
  --i: 21 ;
}
.all_linkbtn_txt .c:nth-child(22) {
  --i: 22 ;
}
.all_linkbtn_txt .c:nth-child(23) {
  --i: 23 ;
}
.all_linkbtn_txt .c:nth-child(24) {
  --i: 24 ;
}
.all_linkbtn_txt .c:nth-child(25) {
  --i: 25 ;
}
.all_linkbtn_txt .c:nth-child(26) {
  --i: 26 ;
}
.all_linkbtn_txt .c:nth-child(27) {
  --i: 27 ;
}
.all_linkbtn_txt .c:nth-child(28) {
  --i: 28 ;
}
.all_linkbtn_txt .c:nth-child(29) {
  --i: 29 ;
}
.all_linkbtn_txt .c:nth-child(30) {
  --i: 30 ;
}
.all_linkbtn_txt .c:nth-child(31) {
  --i: 31 ;
}
.all_linkbtn_txt .c:nth-child(32) {
  --i: 32 ;
}
.all_linkbtn_txt .c:nth-child(33) {
  --i: 33 ;
}
.all_linkbtn_txt .c:nth-child(34) {
  --i: 34 ;
}
.all_linkbtn_txt .c:nth-child(35) {
  --i: 35 ;
}

a:hover .all_linkbtn_txt ._txt .c {
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53) calc(7ms * var(--i));
  transition: -webkit-transform 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53) calc(7ms * var(--i));
  transition: transform 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53) calc(7ms * var(--i));
  transition: transform 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53) calc(7ms * var(--i)), -webkit-transform 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53) calc(7ms * var(--i));
}
a:hover .all_linkbtn_txt ._clone .c {
  -webkit-transform: translate(0) rotate(0);
          transform: translate(0) rotate(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) calc(0.12s + 7ms * var(--i));
  transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) calc(0.12s + 7ms * var(--i));
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) calc(0.12s + 7ms * var(--i));
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) calc(0.12s + 7ms * var(--i)), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) calc(0.12s + 7ms * var(--i));
}

/*--------------------------------------------------------------------------
   cf
---------------------------------------------------------------------------*/
.cf {
  *zoom: 1;
}
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/**
 *
 *  LOADER
 *
 */
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   loader
---------------------------------------------------------------------------*/
#Loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media only screen and (max-width: 767px) {
  #Loader {
    position: absolute;
    top: 56px;
    width: 100%;
    height: auto;
    aspect-ratio: 1920/1080;
  }
}

#Loader .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 1px;
  background: #151F26;
}

#Loader .base {
  display: none;
}

.home #Loader {
  background-image: url(../images/all_loader_bg.jpg);
  background-position: 50% 100%;
  background-size: cover;
}
.home #Loader .base {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 30px;
  left: 0;
  display: block;
  background-image: url(../images/all_loader_logo.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 482px auto;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .home #Loader .base {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 241px auto;
  }
}

/* trans
-------------------------------------------*/
.is-loading #Loader {
  opacity: 1;
}

.is-loading #Loader .base {
  top: 0px;
  opacity: 1;
  -webkit-transition: top 0.4s ease-in-out, opacity 0.6s ease-in-out;
  transition: top 0.4s ease-in-out, opacity 0.6s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/* anima
-------------------------------------------*/
.load-complete #Loader {
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.load-complete #Loader .base {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  top: 30px;
  opacity: 0;
}

/*--------------------------------------------------------------------------
   SHOW / HIDE
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*
 show / hide
 -- レスポンシブ用 表示/非表示
*/
.all_mi_pc {
  display: block;
}

@-moz-document url-prefix() {
  .all_mi_pc.lh0 {
    line-height: 0;
  }
}
img.all_mi_pc {
  display: inline;
}

.all_mi_sp {
  display: none;
}

/* media query -> sp
========================================*/
@media only screen and (max-width: 767px) {
  .all_mi_pc,
  img.all_mi_pc {
    display: none;
  }
  .all_mi_sp {
    display: block;
  }
  img.all_mi_sp {
    display: inline;
  }
}
/*--------------------------------------------------------------------------
   TEXT
---------------------------------------------------------------------------*/
/*
 note
 -- 改行時、一文字目に余白を持たせる
*/
.all_mi_note,
.all_mi_list_note li {
  padding-left: 1em;
  text-indent: -1em;
}

/*--------------------------------------------------------------------------
   IMAGE
---------------------------------------------------------------------------*/
/*
 max
 -- 横幅に合わせて画像を最大化
*/
.all_mi_img_max {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------------------
   HOVER
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*
 hov01
 -- 透過
*/
/* setting */
/* core */
.mi-hov01 {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.mi-hov01:hover {
  opacity: 0.7;
}

.mi-hov01-all > * {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.mi-hov01-all > *:hover {
  opacity: 0.7;
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   init
---------------------------------------------------------------------------*/
.is-animate.is-fadein {
  opacity: 0;
}
.is-animate.is-fadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.is-animate.is-fadedown {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.is-animate.is-fadeleft {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.is-animate.is-faderight {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
.is-animate.is-fadezoom {
  opacity: 0;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}

/*--------------------------------------------------------------------------
   animated
---------------------------------------------------------------------------*/
.is-animated.is-fadein {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadeup {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadedown {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadeleft {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-faderight {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadezoom {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

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

   keyframes

===========================================================================*/
/*--------------------------------------------------------------------------
   .header
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_page_header {
  position: relative;
  height: 100px;
}
@media only screen and (max-width: 767px) {
  .all_page_header {
    height: 75px;
  }
}
.all_page_header .header {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 40px;
  z-index: 999;
  width: 100%;
  height: 80px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header {
    padding: 0 17px;
    height: 64px;
  }
}
.all_page_header .header.is-fixed {
  position: fixed;
}
.all_page_header .header.is-scroll {
  height: 60px;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header.is-scroll {
    height: 40px;
  }
}
.all_page_header .header_logo {
  position: relative;
  z-index: 3;
}
.all_page_header .header_logo img {
  width: 91px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_logo img {
    width: 83px;
  }
}
.all_page_header .header_logo img._white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.all_page_header .header_nav {
  position: relative;
  z-index: 3;
}
.all_page_header .header_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.all_page_header .header_list_item {
  margin-left: 35px;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_list_item {
    margin-left: 6px;
  }
}
.all_page_header .header_list_item._txt {
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.22px;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_list_item._txt {
    font-size: 11px;
  }
}
.all_page_header .header_list_item._txt a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.all_page_header .header_list_item._txt a:hover {
  color: #005EFF;
}
.all_page_header .header._white img {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.all_page_header .header._white img._white {
  opacity: 1;
}
.all_page_header .header._white .header_list_item._txt a {
  color: #fff;
}
.all_page_header .header._white .header_list_item._txt a:hover {
  color: #005EFF;
}
.all_page_header .header._white .header_list_item.all_linkbtn a {
  background-color: #ff9b00;
  color: #fff;
}
.all_page_header .header._white .header_list_item.all_linkbtn a:hover {
  background-color: #151F26;
}

/*--------------------------------------------------------------------------
   .footer
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.footer {
  position: relative;
  background-color: #151F26;
  z-index: 2;
}
.footer_contact {
  padding: 80px 38px;
  background-image: url("../images/footer_contact_bg.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .footer_contact {
    padding: 48px 17px;
  }
}
.footer_contact_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 90px 45px;
  background-color: #fff;
  border-radius: 12px;
}
@media only screen and (max-width: 767px) {
  .footer_contact_inner {
    padding: 56px 15px;
  }
}
.footer_contact_title {
  font-size: clamp(47.5px, 7.9166666667vw, 95px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1.9px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer_contact_title {
    font-size: 44px;
  }
}
.footer_contact_title span {
  display: block;
}
.footer_contact_title span._em {
  color: #005EFF;
}
.footer_contact_text {
  margin-top: 20px;
  font-size: clamp(12px, 2vw, 24px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.48px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer_contact_text {
    font-size: 16px;
  }
}
.footer_contact_text span {
  display: block;
}
.footer_contact .all_linkbtn {
  margin-top: 40px;
}
.footer_contact .all_linkbtn a {
  width: 136px;
  height: 37px;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .footer_contact .all_linkbtn a {
    width: 190px;
    height: 47px;
  }
}
.footer_content {
  padding: 52px 38px 35px;
}
@media only screen and (max-width: 767px) {
  .footer_content {
    padding: 37px 17px 46px;
  }
}
.footer_content_inner {
  position: relative;
}
.footer_content_title {
  font-size: clamp(39.5px, 6.5833333333vw, 79px);
  line-height: 1;
  font-weight: 800;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer_content_title {
    font-size: 40px;
  }
}
.footer_content_title span {
  display: block;
}
@media only screen and (max-width: 767px) {
  .footer_content_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 80px;
  }
}
.footer_content_policy {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .footer_content_policy {
    position: static;
  }
}
.footer_content_policy a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_content_policy a:hover {
  color: #005EFF;
}
.footer_content_pagetop {
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .footer_content_pagetop {
    position: static;
  }
}
.footer_content_pagetop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_content_pagetop a svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_content_pagetop a:hover {
  color: #005EFF;
}
.footer_content_pagetop a:hover svg path {
  stroke: #005EFF;
}
.footer_content_logo {
  padding-top: 200px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer_content_logo {
    padding-top: 80px;
  }
}
.footer_content_copyright {
  padding-top: 20px;
  font-size: 13px;
  color: #767676;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.26px;
  text-align: center;
}

/*--------------------------------------------------------------------------
   .main
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.main {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .main {
    opacity: 1;
  }
}

.load-complete .main {
  opacity: 1;
}

/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.top .all_page_header {
  height: 0;
}
.top .main {
  overflow: hidden;
}

html.is-opening {
  overflow: hidden;
}

html.is-opening body {
  overflow: hidden;
}

/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #top_mv
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_mv {
  position: relative;
  width: 100vw;
  height: 200vh;
  background-color: #151F26;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top_mv {
    height: calc(var(--vh, 1vh) * 200);
  }
}
.top_mv_inner {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top_mv_inner {
    height: calc(var(--vh, 1vh) * 100);
  }
}
.top_mv_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}
.top_mv_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.top_mv_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.top_mv_img ._img2 {
  opacity: 0;
  -webkit-transition: opacity 4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.top_mv_img.is-scale {
  border-radius: 5%;
  -webkit-transition: border-radius 0.5s linear, -webkit-transform 0.1s linear;
  transition: border-radius 0.5s linear, -webkit-transform 0.1s linear;
  transition: transform 0.1s linear, border-radius 0.5s linear;
  transition: transform 0.1s linear, border-radius 0.5s linear, -webkit-transform 0.1s linear;
}
.top_mv_line {
  position: absolute;
  top: 45%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .top_mv_line {
    top: 50%;
  }
}
.top_mv_line svg {
  display: block;
  width: 100%;
  height: auto;
}
.top_mv_line ._sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .top_mv_line ._pc {
    display: none;
  }
  .top_mv_line ._sp {
    display: block;
  }
}
.top_mv_line .js-moving-line {
  opacity: 0;
}
.top_mv_title {
  position: absolute;
  top: 50%;
  left: 38px;
  -webkit-transform: translate(0%, -20%);
          transform: translate(0%, -20%);
  z-index: 3;
  font-size: clamp(60px, 10vw, 120px);
  line-height: 1;
  font-weight: 800;
  color: #fff;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .top_mv_title {
    top: auto;
    bottom: 0;
    left: 17px;
    -webkit-transform: translate(0%, -120px);
            transform: translate(0%, -120px);
    font-size: 53px;
  }
}
.top_mv_title span {
  display: block;
}
.top_mv_text {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  z-index: 3;
  font-size: clamp(8.5px, 1.4166666667vw, 17px);
  line-height: 1;
  letter-spacing: -0.34px;
  color: #fff;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .top_mv_text {
    top: auto;
    right: auto;
    bottom: 0;
    left: 17px;
    -webkit-transform: translate(0%, -55px);
            transform: translate(0%, -55px);
    z-index: 3;
    font-size: 17px;
    text-align: left;
  }
}

/*--------------------------------------------------------------------------
   #top_products
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_products {
  position: relative;
  padding: 110px 38px;
  background-color: #151F26;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .top_products {
    padding: 60px 17px;
  }
}
.top_products_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 110px;
  max-width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .top_products_inner {
    gap: 60px;
  }
}
.top_products_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .top_products_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 8px;
  }
}
.top_products_item_body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px clamp(47.5px, 7.9166666667vw, 95px);
  background-color: #fff;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .top_products_item_body {
    padding: 40px 24px 48px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top_products_item_img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(322deg, #000 2.37%, #777 93.48%);
}
@media only screen and (max-width: 767px) {
  .top_products_item_img {
    aspect-ratio: 370/298;
  }
}
.top_products_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top_products_item_head {
  margin-bottom: clamp(9px, 1.5vw, 18px);
  font-size: clamp(9px, 1.5vw, 18px);
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .top_products_item_head {
    margin-top: 18px;
    font-size: 16px;
  }
}
.top_products_item_name {
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .top_products_item_name {
    font-size: 32px;
  }
}
.top_products_item_copy {
  margin-top: clamp(35px, 5.8333333333vw, 70px);
  font-size: clamp(9px, 1.5vw, 18px);
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .top_products_item_copy {
    margin-top: 24px;
    font-size: 16px;
  }
}
.top_products_item_text {
  margin-top: clamp(12.5px, 2.0833333333vw, 25px);
  font-size: clamp(7.5px, 1.25vw, 15px);
  line-height: 1.6;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .top_products_item_text {
    font-size: 15px;
  }
}
.top_products_item_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 1.6666666667vw, 20px);
  margin-top: clamp(12.5px, 2.0833333333vw, 25px);
}
@media only screen and (max-width: 767px) {
  .top_products_item_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    width: 100%;
  }
}
.top_products_item_btns .all_linkbtn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .top_products_item_btns .all_linkbtn {
    width: 190px;
  }
}
.top_products_item_btns .all_linkbtn a {
  width: 100%;
  height: 47px;
  border-radius: 8px;
  font-size: clamp(7.5px, 1.25vw, 15px);
}
@media only screen and (max-width: 767px) {
  .top_products_item_btns .all_linkbtn a {
    width: 100%;
    height: 52px;
    font-size: 15px;
  }
}
.top_products_item_detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .top_products_item_detail {
    width: 190px;
  }
}
.top_products_item_detail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #D0D0D0;
  background-color: #fff;
  color: #151F26;
  font-size: clamp(7.5px, 1.25vw, 15px);
  line-height: 1;
  font-weight: 800;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .top_products_item_detail a {
    width: 100%;
    height: 47px;
    font-size: 15px;
  }
}
.top_products_item_detail a span.all_linkbtn_arrow {
  line-height: 1;
}
.top_products_item_detail a span.all_linkbtn_arrow svg {
  display: block;
}
.mode-pc .top_products_item_detail a:hover, .mode-sp .top_products_item_detail a:active {
  background-color: #DADFE9;
  border-color: #005EFF;
}

/*--------------------------------------------------------------------------
   #top_aboutus
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_aboutus {
  position: relative;
  background-color: #fff;
  z-index: 2;
}
.top_aboutus_inner {
  max-width: 1130px;
  margin: 0 auto;
  padding: 130px 38px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_inner {
    padding: 96px 17px;
  }
}
.top_aboutus_title {
  margin-bottom: clamp(70px, 11.6666666667vw, 140px);
  font-size: clamp(59px, 9.8333333333vw, 118px);
  letter-spacing: -1.16px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_title {
    margin-bottom: 96px;
    font-size: 54px;
  }
}
.top_aboutus_title span {
  display: block;
}
.top_aboutus_title ._left {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_title ._left {
    text-align: center;
  }
}
.top_aboutus_title ._right {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_title ._right {
    text-align: center;
  }
}
.top_aboutus_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 120px;
  }
}
.top_aboutus_content_item1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top_aboutus_content_item1_title {
  position: relative;
  padding-left: 12px;
  margin-bottom: clamp(24px, 4vw, 48px);
  font-size: clamp(15px, 1.4166666667vw, 17px);
  letter-spacing: -0.34px;
  line-height: 0;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_content_item1_title {
    margin-bottom: 48px;
    font-size: 17px;
  }
}
.top_aboutus_content_item1_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #005EFF;
}
.top_aboutus_content_item1_title span {
  display: block;
}
.top_aboutus_content_item1_text {
  font-size: clamp(24px, 4vw, 48px);
  letter-spacing: -0.96px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_content_item1_text {
    font-size: 32px;
  }
}
.top_aboutus_content_item1_text span {
  display: block;
}
.top_aboutus_content_item2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top_aboutus_content_item2_img {
  margin-bottom: clamp(24px, 4vw, 48px);
}
.top_aboutus_content_item2_img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.top_aboutus_content_item2_text {
  text-align: justify;
  text-overflow: ellipsis;
  font-size: clamp(15px, 1.4166666667vw, 17px);
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_content_item2_text {
    font-size: 16px;
  }
}
.top_aboutus_img {
  position: relative;
  width: 100%;
  height: 723px;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_img {
    height: 100%;
    aspect-ratio: 375/667;
  }
}
.top_aboutus_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 723px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_img img {
    height: 100%;
    aspect-ratio: 375/667;
  }
}
.top_aboutus_img._fixed img {
  position: fixed;
}

/*--------------------------------------------------------------------------
   #animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* top_aboutus_title
-----------------------------------------------------------------*/
.top_aboutus_title ._left {
  translate: -50% 0;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_title ._left {
    translate: 0 0;
  }
}
.top_aboutus_title ._right {
  translate: 50% 0;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .top_aboutus_title ._right {
    translate: 0 0;
  }
}
.top_aboutus_title.is-animated ._left {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: translate 1s cubic-bezier(0.39, 0.575, 0.565, 1), opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: translate 1s cubic-bezier(0.39, 0.575, 0.565, 1), opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.top_aboutus_title.is-animated ._right {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: translate 1s cubic-bezier(0.39, 0.575, 0.565, 1), opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: translate 1s cubic-bezier(0.39, 0.575, 0.565, 1), opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_page_wrapper.products {
  background-color: #eee;
}

/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #products_contents
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.products_contents {
  position: relative;
}
.products_contents_breadcrumb {
  padding: 0 45px 25px;
  border-bottom: 1px solid #151F26;
}
@media only screen and (max-width: 767px) {
  .products_contents_breadcrumb {
    padding: 12px 17px;
  }
}
.products_contents_breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .products_contents_breadcrumb ol {
    gap: 4px;
  }
}
.products_contents_breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  color: #999;
}
@media only screen and (max-width: 767px) {
  .products_contents_breadcrumb li {
    gap: 4px;
    font-size: 11px;
  }
}
.products_contents_breadcrumb li::after {
  content: ">";
  color: #005EFF;
}
.products_contents_breadcrumb li:last-child {
  color: #151F26;
}
.products_contents_breadcrumb li:last-child::after {
  display: none;
}
.products_contents_breadcrumb li._top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .products_contents_breadcrumb li._top a:hover, .mode-sp .products_contents_breadcrumb li._top a:active {
  border-color: #005EFF;
  color: #005EFF;
}
.products_contents_breadcrumb li a {
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .products_contents_breadcrumb li a:hover, .mode-sp .products_contents_breadcrumb li a:active {
  color: #005EFF;
}
.products_contents_inner {
  max-width: 1326px;
  margin: 0 auto;
  padding: 80px 38px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media only screen and (max-width: 767px) {
  .products_contents_inner {
    padding: 60px 17px;
  }
}
.products_contents_main {
  margin-bottom: 92px;
}
@media only screen and (max-width: 767px) {
  .products_contents_main {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------------------
   products_details (main content)
---------------------------------------------------------------------------*/
.products_details_intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(23px, 4.6vw, 46px);
  padding: clamp(39px, 7.8vw, 78px) clamp(23px, 4.6vw, 46px);
  border: 1px solid #151F26;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .products_details_intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
    border: none;
    border-radius: 16px;
    background-color: #fff;
  }
}
.products_details_intro_body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.products_details_intro_img {
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(322deg, #000 2.37%, #777 93.48%);
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .products_details_intro_img {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.products_details_intro_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products_details_intro_cate {
  font-size: clamp(9px, 1.8vw, 18px);
  line-height: 1.4;
  color: #151F26;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .products_details_intro_cate {
    font-size: 18px;
  }
}
.products_details_intro_name {
  margin-top: clamp(9px, 1.8vw, 18px);
  font-size: clamp(24px, 4.8vw, 48px);
  line-height: 1.1;
  color: #151F26;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .products_details_intro_name {
    margin-top: 18px;
    font-size: 32px;
    text-align: center;
  }
}
.products_details_intro_copy {
  margin-top: clamp(35px, 7vw, 70px);
  font-size: clamp(9px, 1.8vw, 18px);
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .products_details_intro_copy {
    margin-top: 24px;
    font-size: 16px;
  }
}
.products_details_intro_text {
  margin-top: 16px;
}
.products_details_intro_text p {
  font-size: clamp(7.5px, 1.5vw, 15px);
  line-height: 1.8;
  font-weight: 500;
  color: #151F26;
}
@media only screen and (max-width: 767px) {
  .products_details_intro_text p {
    margin-top: 20px;
    font-size: 15px;
  }
}
.products_details_intro .all_linkbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: clamp(28px, 5.6vw, 56px) auto 0;
}
@media only screen and (max-width: 767px) {
  .products_details_intro .all_linkbtn {
    margin-top: 28px;
  }
}
.products_details_intro .all_linkbtn a {
  width: 190px;
  height: 40px;
  border-radius: 8px;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .products_details_intro .all_linkbtn a {
    width: 160px;
    height: 44px;
  }
}

.products_details_nav {
  margin: 60px 0 0;
}
@media only screen and (max-width: 767px) {
  .products_details_nav {
    margin: 48px 0 0;
  }
}
.products_details_nav_inner {
  border-bottom: 1px solid #151F26;
}
.products_details_nav ul {
  padding-bottom: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.products_details_nav li {
  width: 50%;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .products_details_nav li {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    white-space: nowrap;
  }
}
.products_details_nav li:nth-child(n+2)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: #151F26;
}
.products_details_nav li a {
  position: relative;
  display: block;
  padding-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
  color: #151F26;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .products_details_nav li a {
    padding: 0 20px 24px;
  }
}
.mode-pc .products_details_nav li a:hover, .mode-sp .products_details_nav li a:active {
  color: #151F26;
}
.products_details_nav li a::after {
  content: "";
  background: url(../images/all_bg_arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 14px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.products_details_nav li a:hover::after {
  bottom: 0;
}

.products_section {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .products_section {
    margin-top: 40px;
  }
}

.related_list_ttl {
  margin-bottom: 40px;
  padding-left: 19px;
  border-left: 3px solid #005EFF;
  font-size: 22px;
  line-height: 1.2;
  color: #151F26;
}
@media only screen and (max-width: 767px) {
  .related_list_ttl {
    margin-bottom: 24px;
    padding-left: 12px;
    font-size: 18px;
  }
}

.products_list_numbered {
  list-style: none;
}
.products_list_numbered li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.5%;
}
@media only screen and (max-width: 767px) {
  .products_list_numbered li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.products_list_numbered li:nth-child(n+2) {
  margin-top: 27px;
  padding-top: 27px;
}
.products_list_numbered li.nopic .products_list_numbered_l {
  width: 100%;
}
.products_list_numbered li.nopic .products_list_numbered_r {
  display: none;
}
.products_list_numbered_l {
  width: 53%;
  padding-top: 14px;
}
@media only screen and (max-width: 767px) {
  .products_list_numbered_l {
    width: 100%;
    padding-top: 0;
  }
}
.products_list_numbered_r {
  width: 42.5%;
}
@media only screen and (max-width: 767px) {
  .products_list_numbered_r {
    width: 100%;
    max-width: 435px;
    margin: 0 auto;
  }
}
.products_list_numbered_main {
  margin-bottom: 22px;
  padding-left: 48px;
  position: relative;
  font-size: 17px;
  line-height: 1.6;
  color: #151F26;
}
@media only screen and (max-width: 767px) {
  .products_list_numbered_main {
    padding-left: 35px;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
  }
}
.products_list_numbered_nb {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 1;
  font-size: 18px;
  background-color: #151F26;
  color: #fff;
}
.products_list_numbered_txt {
  font-size: 14px;
  line-height: 1.7;
  color: #151F26;
}
.products_list_numbered_img img {
  width: 100%;
  height: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.products_list_numbered_img a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.products_list_numbered_img a.cb:after {
  content: "";
  background: url(../images/all_zoom_icon.svg) no-repeat center/contain;
  width: 55px;
  height: 24px;
  position: absolute;
  bottom: 7px;
  right: 5px;
}
.products_list_numbered_img a:hover img {
  opacity: 0.7;
}

.products_details_intro_video {
  margin: 80px auto;
  max-width: 900px;
}
@media only screen and (max-width: 767px) {
  .products_details_intro_video {
    margin: 35px 0 39px;
  }
}

.all_youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}
.all_youtube + .all_youtube {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .all_youtube + .all_youtube {
    margin-top: 30px;
  }
}
.all_youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media only screen and (max-width: 767px) {
  .accordion_wrapper_fix {
    margin: 0;
  }
}

.product_section_unit_accordion:nth-child(n+2) {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .product_section_unit_accordion:nth-child(n+2) {
    margin-top: 24px;
  }
}
.product_section_unit_accordion_head a {
  display: block;
  position: relative;
  padding: 20px 50px 16px 25px;
  border: 1px solid #151F26;
  background-color: #151F26;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .product_section_unit_accordion_head a {
    padding: 18px 50px 14px 22px;
    border-right: none;
    border-left: none;
  }
}
.mode-pc .product_section_unit_accordion_head a:hover, .mode-sp .product_section_unit_accordion_head a:active {
  background-color: rgba(21, 31, 38, 0.7);
}
.product_section_unit_accordion_head a .plus {
  position: absolute;
  top: 50%;
  right: 19px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
}
.product_section_unit_accordion_head a .plus::before, .product_section_unit_accordion_head a .plus::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product_section_unit_accordion_head a .plus::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.product_section_unit_accordion_head.active a .plus::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.product_table_wrapper {
  display: none;
  border: 1px solid #151F26;
  border-top: none;
}
.product_table_img_wrapper {
  border-bottom: 1px solid #151F26;
}
.product_table_img {
  padding: 34px 22px;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .product_table_img {
    padding: 20px 15px;
  }
}
.product_table_img_duo li {
  width: 49%;
  display: inline-block;
}
.product_table_img_duo li:nth-child(n+2) {
  margin-left: 2%;
}
.product_table_img_mono li {
  width: 100%;
  max-width: 385px;
  margin: 0 auto;
}
.product_table_img li img {
  width: 100%;
}

.product_tableA {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.product_tableA tr th {
  width: 165px;
  padding: 11px 2px;
  background: #D1D1D1;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #151F26;
}
@media only screen and (max-width: 767px) {
  .product_tableA tr th {
    width: 90px;
    padding: 8px 2px;
    font-size: 10px;
    line-height: 1.4;
  }
}
.product_tableA tr td {
  padding: 11px 5px;
  border-top: 1px solid #DADFE9;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #151F26;
}
@media only screen and (max-width: 767px) {
  .product_tableA tr td {
    padding: 8px 2px;
    font-size: 10px;
  }
}
.product_tableA tr th {
  border-top: 1px solid #DADFE9;
}
.product_tableA tr:nth-child(1) th,
.product_tableA tr:nth-child(1) td {
  border-top: none;
}
.product_tableA tr th:nth-child(n+2),
.product_tableA tr td:nth-child(n+2) {
  border-left: 1px solid #DADFE9;
}

.product_tableB {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.product_tableB_wrapper {
  overflow: auto;
}
.product_tableB tr th {
  min-width: 70px;
  padding: 11px 5px;
  background: #D1D1D1;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #151F26;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .product_tableB tr th {
    min-width: initial !important;
    width: auto;
    font-size: 12px;
  }
}
.product_tableB tr th:last-child {
  min-width: 200px;
}
.product_tableB tr th:nth-child(n+2) {
  border-left: 1px solid #DADFE9;
}
.product_tableB tr td {
  padding: 11px 5px;
  border-top: 1px solid #DADFE9;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #151F26;
}
@media only screen and (max-width: 767px) {
  .product_tableB tr td {
    font-size: 12px;
  }
}
.product_tableB tr td:nth-child(n+2) {
  border-left: 1px solid #DADFE9;
}

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

.product_table_note {
  padding: 18px 22px;
  border-top: 1px solid #151F26;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .product_table_note {
    padding: 13px 15px 15px;
  }
}
.product_table_note li {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  color: #151F26;
}
@media only screen and (max-width: 767px) {
  .product_table_note li {
    font-size: 12px;
    line-height: 1.6;
  }
}
.product_table_note li:nth-child(n+2) {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .product_table_note li:nth-child(n+2) {
    margin-top: 10px;
  }
}

.all_new_line {
  display: inline-block;
  letter-spacing: inherit;
  font-family: inherit;
}

.products_contents_cta {
  padding: 56px 40px;
  background-color: #151F26;
  border-radius: 8px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .products_contents_cta {
    padding: 40px 20px;
  }
}
.products_contents_cta_title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .products_contents_cta_title {
    font-size: 24px;
  }
}
.products_contents_cta_btn {
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .products_contents_cta_btn {
    margin-top: 24px;
  }
}
.products_contents_cta_btn a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 0;
  width: 550px;
  height: 88px;
  background-color: #ff9b00;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .products_contents_cta_btn a {
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
  }
}
.products_contents_cta_btn a span.all_linkbtn_arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  translate: 0 -50%;
  font-size: 24px;
  font-weight: 500;
}
.mode-pc .products_contents_cta_btn a:hover, .mode-sp .products_contents_cta_btn a:active {
  background-color: rgb(223, 165, 77);
}
.products_contents_back {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .products_contents_back {
    margin-top: 24px;
  }
}
.products_contents_back a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin: 0 auto;
  width: 100%;
  max-width: 332px;
  height: 40px;
  border: 1px solid #151F26;
  border-radius: 8px;
  color: #151F26;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .products_contents_back a {
    max-width: 100%;
    font-size: 14px;
  }
}
.mode-pc .products_contents_back a:hover, .mode-sp .products_contents_back a:active {
  background-color: #DADFE9;
  border-color: #005EFF;
}
.products_contents_back a span.all_linkbtn_arrow {
  position: absolute;
  top: 50%;
  left: 5%;
  translate: 0 -50%;
  line-height: 1;
}
.products_contents_back a span.all_linkbtn_arrow svg {
  display: block;
}

/*--------------------------------------------------------------------------
   #animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.animation {
  position: relative;
}
/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #policy_contents
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.policy_contents {
  position: relative;
  padding: 80px 38px;
}
@media only screen and (max-width: 767px) {
  .policy_contents {
    padding: 60px 17px;
  }
}
.policy_contents_inner {
  max-width: 900px;
  margin: 0 auto;
}
.policy_contents_title {
  margin-bottom: 80px;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 500;
  color: #151F26;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .policy_contents_title {
    margin-bottom: 48px;
    font-size: 29px;
  }
}
.policy_contents_list {
  list-style: none;
}
.policy_contents_list_item {
  padding: 24px 0;
}
@media only screen and (max-width: 767px) {
  .policy_contents_list_item {
    padding: 24px 0;
  }
}
.policy_contents_list_item:first-child {
  padding-top: 0;
}
.policy_contents_list_item._last {
  padding-top: 86px;
}
@media only screen and (max-width: 767px) {
  .policy_contents_list_item._last {
    padding-top: 56px;
  }
}
.policy_contents_list_item_title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  color: #151F26;
}
.policy_contents_list_item_text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  color: #151F26;
}
.policy_contents_list_item_text strong {
  font-weight: 800;
}
.policy_contents_list_item_list {
  margin-top: 16px;
  list-style: none;
}
.policy_contents_list_item_list_item {
  margin-top: 16px;
}
.policy_contents_list_item_list_item:first-child {
  margin-top: 0;
}
.policy_contents_list_item_list_item_title {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
  color: #151F26;
}
.policy_contents_list_item_list_item_text {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  color: #151F26;
}
.policy_contents_list_item_list_item_text strong {
  font-weight: 800;
}
.policy_contents_logo {
  margin-top: 80px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .policy_contents_logo {
    margin-top: 20px;
  }
}
.policy_contents_logo img {
  width: 180px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .policy_contents_logo img {
    width: 108px;
  }
}

/*--------------------------------------------------------------------------
   #animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.animation {
  position: relative;
}
/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.contact .footer_contact {
  display: none;
}

/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #policy_contents
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.contact_contents {
  position: relative;
  padding: 80px 38px;
}
@media only screen and (max-width: 767px) {
  .contact_contents {
    padding: 60px 17px;
  }
}
.contact_contents_inner {
  max-width: 900px;
  margin: 0 auto;
}
.contact_contents_title {
  margin-bottom: 80px;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 500;
  color: #151F26;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contact_contents_title {
    margin-bottom: 48px;
    font-size: 29px;
  }
}

/*--------------------------------------------------------------------------
   #animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
/*# sourceMappingURL=style.css.map */