@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  word-wrap: break-word;
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

svg,
img {
  height: auto;
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

video {
  outline: none;
  filter: drop-shadow(0 0 rgba(0, 0, 0, 0));
}

svg {
  height: auto;
}

@font-face {
  font-family: "CabinetGrotesk";
  src: url("../font/CabinetGrotesk-Regular.woff2") format("woff2"), url("../font/CabinetGrotesk-Regular.woff") format("woff"), url("../font/CabinetGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
/*==========　基本設定　==========*/
* {
  box-sizing: border-box;
}

html {
  font-size: clamp(1px, 1vw, 16px);
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
  font-family: "source-han-sans-japanese", sans-serif;
  color: var(--colorFont);
  line-height: 1.5;
  width: 100%;
}

.body_wrap {
  overflow: hidden;
}

.outer {
  width: 100%;
  max-width: calc(100rem + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container {
  width: 100%;
  max-width: calc(87.5rem + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner {
  width: 100%;
  max-width: calc(68.75rem + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner_contents {
  width: 100%;
  max-width: calc(56.25rem + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .container .inner,
.container .inner_contents,
.inner .inner_contents {
    padding-left: 0;
    padding-right: 0;
  }
}
.anchor {
  padding-top: calc(var(--headerHeight) + 2rem);
  margin-top: calc((var(--headerHeight) + 2rem) * -1);
}

a:not([class]) {
  color: var(--colorMain);
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  a {
    transition: opacity 0.5s;
  }
  a:hover {
    opacity: 0.5;
  }
}

/*========== レイアウト用 ==========*/
.padding_section {
  padding-top: var(--paddingSection);
  padding-bottom: var(--paddingSection);
}

.margin_section {
  margin-top: var(--paddingSection);
  margin-bottom: var(--paddingSection);
}
.margin_section:first-child {
  margin-top: 0;
}
.margin_section:last-child {
  margin-bottom: 0;
}

.relative_box {
  position: relative;
}

.absolute_box {
  position: absolute;
}

.position_left {
  top: 0;
  left: 0;
}

.position_right {
  top: 0;
  right: 0;
}

/*==========
フォント
==========*/
.fw_normal {
  font-weight: 400;
}

.fw_mid {
  font-weight: 500;
}

.fw_bold {
  font-weight: 700;
}

.fw_black {
  font-weight: 900;
}

.fs_12 {
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .fs_12 {
    font-size: 1rem;
  }
}

.fs_13 {
  font-size: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .fs_13 {
    font-size: 1rem;
  }
}

.fs_14 {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .fs_14 {
    font-size: 1rem;
  }
}

.fs_15 {
  font-size: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .fs_15 {
    font-size: 1rem;
  }
}

.fs_16 {
  font-size: 1rem;
}

.fs_17 {
  font-size: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .fs_17 {
    font-size: 1rem;
  }
}

.fs_18 {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .fs_18 {
    font-size: 1rem;
  }
}

.fs_19 {
  font-size: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .fs_19 {
    font-size: 1.125rem;
  }
}

.fs_20 {
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .fs_20 {
    font-size: 1.125rem;
  }
}

.fs_21 {
  font-size: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .fs_21 {
    font-size: 1.125rem;
  }
}

.fs_22 {
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .fs_22 {
    font-size: 1.125rem;
  }
}

.fs_24 {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .fs_24 {
    font-size: 1.25rem;
  }
}

.fs_26 {
  font-size: 1.625rem;
}
@media screen and (max-width: 768px) {
  .fs_26 {
    font-size: 1.25rem;
  }
}

.fs_28 {
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  .fs_28 {
    font-size: 1.25rem;
  }
}

.fs_30 {
  font-size: 1.875rem;
}
@media screen and (max-width: 768px) {
  .fs_30 {
    font-size: 1.25rem;
  }
}

.fs_32 {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .fs_32 {
    font-size: 1.5rem;
  }
}

.fs_34 {
  font-size: 2.125rem;
}
@media screen and (max-width: 768px) {
  .fs_34 {
    font-size: 1.5rem;
  }
}

.fs_36 {
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  .fs_36 {
    font-size: 1.5rem;
  }
}

.fs_40 {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .fs_40 {
    font-size: 1.5rem;
  }
}

/*==========
汎用クラス
==========*/
.ib {
  display: inline-block;
}

.text_justify {
  text-align: justify;
  text-justify: inter-ideograph;
  -moz-text-align-last: left;
       text-align-last: left;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.block_center {
  margin-left: auto;
  margin-right: auto;
}

.block_left {
  margin-left: auto;
}

.sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*==========
余白指定
==========*/
.mt_1em {
  margin-top: 1em;
}

.mt_2em {
  margin-top: 2em;
}

.mt_08 {
  margin-top: 0.5rem;
}

.mt_16 {
  margin-top: 1rem;
}

.mt_24 {
  margin-top: 1.5rem;
}

.mt_32 {
  margin-top: 2rem;
}

.mt_40 {
  margin-top: 2.5rem;
}

.mt_56 {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .mt_56 {
    margin-top: 2.5rem;
  }
}

.mt_64 {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .mt_64 {
    margin-top: 2.5rem;
  }
}

.mt_80 {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .mt_80 {
    margin-top: 2.5rem;
  }
}

.mt_120 {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .mt_120 {
    margin-top: 5rem;
  }
}

.mt_160 {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .mt_160 {
    margin-top: 5rem;
  }
}

.mb_1em {
  margin-bottom: 1em;
}

.mb_2em {
  margin-bottom: 2em;
}

.mb_08 {
  margin-bottom: 0.5rem;
}

.mb_16 {
  margin-bottom: 1rem;
}

.mb_24 {
  margin-bottom: 1.5rem;
}

.mb_32 {
  margin-bottom: 2rem;
}

.mb_40 {
  margin-bottom: 2.5rem;
}

.mb_56 {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .mb_56 {
    margin-bottom: 2.5rem;
  }
}

.mb_64 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .mb_64 {
    margin-bottom: 2.5rem;
  }
}

.mb_80 {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .mb_80 {
    margin-bottom: 2.5rem;
  }
}

.mb_120 {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .mb_120 {
    margin-bottom: 5rem;
  }
}

.mb_160 {
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .mb_160 {
    margin-bottom: 5rem;
  }
}

.pt_1em {
  padding-top: 1em;
}

.pt_2em {
  padding-top: 2em;
}

.pt_08 {
  padding-top: 0.5rem;
}

.pt_16 {
  padding-top: 1rem;
}

.pt_24 {
  padding-top: 1.5rem;
}

.pt_32 {
  padding-top: 2rem;
}

.pt_40 {
  padding-top: 2.5rem;
}

.pt_56 {
  padding-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .pt_56 {
    padding-top: 2.5rem;
  }
}

.pt_64 {
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  .pt_64 {
    padding-top: 2.5rem;
  }
}

.pt_80 {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .pt_80 {
    padding-top: 2.5rem;
  }
}

.pt_120 {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .pt_120 {
    padding-top: 5rem;
  }
}

.pt_160 {
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  .pt_160 {
    padding-top: 5rem;
  }
}

.pb_1em {
  padding-bottom: 1em;
}

.pb_2em {
  padding-bottom: 2em;
}

.pb_08 {
  padding-bottom: 0.5rem;
}

.pb_16 {
  padding-bottom: 1rem;
}

.pb_24 {
  padding-bottom: 1.5rem;
}

.pb_32 {
  padding-bottom: 2rem;
}

.pb_40 {
  padding-bottom: 2.5rem;
}

.pb_56 {
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .pb_56 {
    padding-bottom: 2.5rem;
  }
}

.pb_64 {
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .pb_64 {
    padding-bottom: 2.5rem;
  }
}

.pb_80 {
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .pb_80 {
    padding-bottom: 2.5rem;
  }
}

.pb_120 {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .pb_120 {
    padding-bottom: 5rem;
  }
}

.pb_160 {
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .pb_160 {
    padding-bottom: 5rem;
  }
}

.trigger .fx_mvPhoto img, .trigger.fx_mvPhoto img {
  -webkit-animation-name: fx_mvPhoto;
          animation-name: fx_mvPhoto;
}
.trigger .fx_titleGrad, .trigger.fx_titleGrad {
  -webkit-animation-name: fx_titleGrad;
          animation-name: fx_titleGrad;
}
.trigger .fx_clip, .trigger.fx_clip {
  -webkit-animation-name: fx_clip;
          animation-name: fx_clip;
}
.trigger .fx_block, .trigger.fx_block {
  -webkit-animation-name: fx_block;
          animation-name: fx_block;
}
.trigger .fx_block::after, .trigger.fx_block::after {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.trigger .fx_fadeIn, .trigger.fx_fadeIn {
  -webkit-animation-name: fx_fadeIn;
          animation-name: fx_fadeIn;
}
.trigger .fx_fadeUp, .trigger.fx_fadeUp {
  -webkit-animation-name: fx_fadeUp;
          animation-name: fx_fadeUp;
}
.trigger .fx_slideLeft, .trigger.fx_slideLeft {
  -webkit-animation-name: fx_slideLeft;
          animation-name: fx_slideLeft;
}
.trigger .fx_slideRight, .trigger.fx_slideRight {
  -webkit-animation-name: fx_slideRight;
          animation-name: fx_slideRight;
}

body main:not(#index, :has(#company_history), :has(#products_single), #amaike_super_organza, .noPageInAnimation) {
  transform: translateY(2.5rem);
  transition: transform 0.5s ease-out;
  will-change: transform;
}
body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  left: 0;
  bottom: 0;
  background: var(--colorMain);
  z-index: 100;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.4s ease-in-out;
  transition: clip-path 0.4s ease-in-out;
  transition: clip-path 0.4s ease-in-out, -webkit-clip-path 0.4s ease-in-out;
  will-change: clip-path;
}

.is-pageIn main:not(#index, :has(#company_history), :has(#products_single), #amaike_super_organza, .noPageInAnimation) {
  transform: translateY(0rem);
}
.is-pageIn::after {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.is-pageOutReady main:not(#index, :has(#company_history), :has(#products_single), #amaike_super_organza, .noPageInAnimation) {
  transition: transform 0.4s ease-in;
}
.is-pageOutReady::after {
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.3s ease-in-out 0.2s;
  transition: clip-path 0.3s ease-in-out 0.2s;
  transition: clip-path 0.3s ease-in-out 0.2s, -webkit-clip-path 0.3s ease-in-out 0.2s;
}

.is-pageOut main:not(#index, :has(#company_history), :has(#products_single), #amaike_super_organza, .noPageInAnimation) {
  transform: translateY(-5rem);
}
.is-pageOut::after {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.fx_mvPhoto img {
  transform: scale(1.25);
  will-change: transform;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_mvPhoto {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fx_mvPhoto {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
#mv_ir .fx_titleGrad.title_01, #mv_ir .fx_titleGrad.title_main,
#mv_child .fx_titleGrad.title_01,
#mv_child .fx_titleGrad.title_main {
  color: rgba(0, 0, 0, 0);
}

.fx_titleGrad.title_01, .fx_titleGrad.title_main {
  display: inline-block;
  color: rgba(0, 0, 0, 0);
  background: linear-gradient(90deg, var(--colorMain) 30%, var(--colorSub) 40%, #ccc 50%);
  background-size: 400% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text !important;
          background-clip: text !important;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_titleGrad {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0% 0;
  }
}

@keyframes fx_titleGrad {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0% 0;
  }
}
.fx_clip {
  -webkit-clip-path: polygon(0 0, 0 0, -20% 100%, -20% 100%);
          clip-path: polygon(0 0, 0 0, -20% 100%, -20% 100%);
  will-change: clip-path;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes fx_clip {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, -20% 100%, -20% 100%);
            clip-path: polygon(0 0, 0 0, -20% 100%, -20% 100%);
  }
  99% {
    -webkit-clip-path: polygon(0 0, 120% 0, 100% 100%, -20% 100%);
            clip-path: polygon(0 0, 120% 0, 100% 100%, -20% 100%);
  }
  100% {
    -webkit-clip-path: none;
            clip-path: none;
  }
}

@keyframes fx_clip {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, -20% 100%, -20% 100%);
            clip-path: polygon(0 0, 0 0, -20% 100%, -20% 100%);
  }
  99% {
    -webkit-clip-path: polygon(0 0, 120% 0, 100% 100%, -20% 100%);
            clip-path: polygon(0 0, 120% 0, 100% 100%, -20% 100%);
  }
  100% {
    -webkit-clip-path: none;
            clip-path: none;
  }
}
.fx_block {
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  will-change: clip-path;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  position: relative;
}
.fx_block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--colorMain);
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.5s 0.75s;
  transition: clip-path 0.5s 0.75s;
  transition: clip-path 0.5s 0.75s, -webkit-clip-path 0.5s 0.75s;
  will-change: clip-path;
}

@-webkit-keyframes fx_block {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  99% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: none;
            clip-path: none;
  }
}

@keyframes fx_block {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  99% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: none;
            clip-path: none;
  }
}
.fx_fadeIn {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

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

@keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fx_fadeUp {
  opacity: 0;
  transform: translateY(2.5rem);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

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

@keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fx_slideLeft {
  will-change: transform, opacity;
  transform: translateX(-2.5rem);
  opacity: 0;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fx_slideRight {
  will-change: transform, opacity;
  transform: translateX(2.5rem);
  opacity: 0;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (min-width: 769px) {
  .fx_hoverImg .fx_hoverImg-box {
    overflow: hidden;
  }
  .fx_hoverImg .fx_hoverImg-box img {
    transition: transform 0.5s;
  }
  .fx_hoverImg:hover {
    opacity: 1;
  }
  .fx_hoverImg:hover .fx_hoverImg-box img {
    transform: scale(1.05);
  }
}
/*==========
Effect
==========*/
:root {
  --headerHeight: 6.25rem;
  --paddingSection: 11.25rem;
  --paddingLR: 15px;
  --colorFont: #000;
  --colorMain: #283266;
  --colorSub: #CB333B;
}
@media screen and (max-width: 768px) {
  :root {
    --headerHeight: 4.6875rem;
    --paddingSection: 4rem;
  }
}

/*==========
BugFix
==========*/
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/*==========
CF7
==========*/
.wpcf7-response-output,
.step_confirm,
.step_thanks {
  display: none;
}

.ck-form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
  padding-top: 0.5rem;
}
.ck-form .wpcf7-checkbox .wpcf7-list-item {
  display: contents;
}
.ck-form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  cursor: pointer;
}
.ck-form .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.875rem;
  height: 1.875rem;
  min-width: 1.875rem;
  background: #f4f4f4;
  border-radius: 0.125rem;
  cursor: pointer;
  position: relative;
}
.ck-form .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:checked {
  background: #000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath d='M6.78,13.36l5.96,7.02,9.26-10.76' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.ck-form .wpcf7-checkbox .wpcf7-free-text {
  width: 100%;
  padding: 1rem 0.9375rem;
  background: #f4f4f4;
  border: none;
  border-radius: 0.125rem;
  font-size: 0.9375rem;
  font-family: inherit;
  margin-top: 0.9375rem;
}
.ck-form .wpcf7-checkbox .wpcf7-free-text[disabled] {
  display: none;
}
.ck-form .confirm_text {
  font-size: 0.9375rem;
  margin-top: 1rem;
}

.text_confirm {
  margin-bottom: 4rem;
}

/*==========
utility
==========*/
main {
  position: relative;
  z-index: 0;
}

.ib {
  display: inline-block;
}

b {
  font-weight: 700;
}

i, .italic {
  font-style: italic;
  margin-right: 0.1875em;
}

sup {
  display: inline;
  vertical-align: super;
  font-size: 0.625em;
}

sub {
  display: inline;
  vertical-align: sub;
  font-size: 0.625em;
}

.text {
  font-size: 0.9375rem;
  line-height: 2;
}
.text + .text {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
  .text + .text {
    margin-top: 1.75em;
  }
}

.text_search b {
  font-size: 1.25rem;
}

.img_radius {
  border-radius: 0.3125rem;
}

.text_aside {
  font-size: 0.75rem;
}

.asterisk {
  position: relative;
  padding-left: 1em;
}
.asterisk::before {
  content: "※";
  position: absolute;
  left: 0;
}

.js_tab-btn + .js_tab-content {
  display: block;
}

.js_tab-content {
  display: none;
}

.js_accordion-btn {
  cursor: pointer;
}

.js_accordion-contents {
  display: none;
}

.u-text_white {
  color: #fff;
}
.u-text_white .title_01 {
  color: inherit;
}
.u-text_white .title_01::before {
  background: linear-gradient(90deg, var(--colorSub) 50%, #fff 50%);
}
.u-text_white .title_02::before {
  background: #fff;
}
.u-text_white .btn_01::after {
  background-image: url("../img/common/icon_arrow_circle-white.svg");
}
@media screen and (min-width: 769px) {
  .u-text_white .btn_01:hover::after {
    -webkit-animation-name: btn_01_white;
            animation-name: btn_01_white;
  }
}
.u-text_white .layout_menu_message .en,
.u-text_white .layout_menu_message .title {
  color: #fff;
}

.youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

figure img {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}
figure figcaption {
  font-size: 0.9375rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  figure figcaption {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}

.slider_linear .swiper-wrapper {
  transition-timing-function: linear !important;
}

/*========== 汎用オブジェクト ==========*/
/*==========
汎用デザイン
==========*/
a:not([class])[href$=".pdf"] {
  color: inherit;
  text-decoration: none;
}
a:not([class])[href$=".pdf"]:not(:has(.icon))::after, a:not([class])[href$=".pdf"]:has(.icon) .icon::after {
  content: "PDF";
  background-color: #C4464D;
  color: #fff;
  border-radius: 0.3125rem;
  padding: 0.25em 0.5em;
  font-size: 0.75em;
  font-weight: 700;
  margin-left: 1em;
}

/*==========
リスト
==========*/
.indent_icon {
  display: flex;
}
.indent_icon span:first-child {
  flex-shrink: 0;
}

.list_indent > * {
  display: flex;
}
.list_indent > * span:first-child {
  flex-shrink: 0;
}

.list_dots > * {
  position: relative;
  padding-left: 1em;
}
.list_dots > *::before {
  content: "・";
  position: absolute;
  left: 0;
}
.list_dots > *:not(:last-child) {
  margin-bottom: 0.75em;
}

.dl_01 {
  display: grid;
  grid-template-columns: 27.125rem 1fr;
}
.dl_01 dt, .dl_01 dd {
  padding: 1.5em clamp(var(--paddingLR), 3.125vw, 3.125rem);
  border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}
.dl_01 dt:first-of-type, .dl_01 dd:first-of-type {
  border-top: 1px solid rgba(112, 112, 112, 0.15);
}
.dl_01 dt {
  background-color: #F4F8F9;
  color: var(--colorMain);
}
.dl_01 p:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .dl_01 {
    grid-template-columns: 1fr;
    font-size: 0.875rem;
  }
  .dl_01 dt, .dl_01 dd {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
  }
  .dl_01 dt {
    border-bottom: none;
  }
  .dl_01 dd {
    border-top: none;
  }
  .dl_01 dd:first-of-type {
    border-top: none;
  }
}

.sp_table {
  display: contents;
}
@media screen and (max-width: 768px) {
  .sp_table {
    display: block;
    overflow-x: auto;
  }
  .sp_table figure,
.sp_table table {
    min-width: 50rem;
  }
}

.sp_table_hint {
  display: none;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .sp_table_hint {
    display: block;
  }
}

ol:not([class]) {
  counter-reset: ol;
}
ol:not([class]) > * {
  display: flex;
}
ol:not([class]) > *::before {
  counter-increment: ol;
  content: counter(ol) "．";
  flex-shrink: 0;
}
ol:not([class]) > *:not(:last-child) {
  margin-bottom: 0.75em;
}

/*==========
ボタン
==========*/
button[class^=btn_] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font: inherit;
}

button[class^=btn_].btn_01,
.btn_01 {
  font-size: 0.875rem;
  font-family: "dm-sans";
  font-weight: 500;
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  gap: 0.75em;
  position: relative;
  z-index: 1;
}
button[class^=btn_].btn_01::after,
.btn_01::after {
  content: "";
  width: 2.1875rem;
  aspect-ratio: 1/1;
  display: block;
  background: center/contain url("../img/common/icon_arrow_circle.svg") no-repeat;
  z-index: -1;
}
button[class^=btn_].btn_01:not(:first-child),
.btn_01:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (min-width: 769px) {
  button[class^=btn_].btn_01:hover,
.btn_01:hover {
    opacity: 1;
  }
  button[class^=btn_].btn_01:hover::after,
.btn_01:hover::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01;
            animation-name: btn_01;
  }
}
@-webkit-keyframes btn_01 {
  49.9% {
    background-image: url("../img/common/icon_arrow_circle.svg");
    opacity: 0;
    transform: translateX(50%);
  }
  50% {
    background-image: url("../img/common/icon_arrow_circle-hover.svg");
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    background-image: url("../img/common/icon_arrow_circle-hover.svg");
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes btn_01 {
  49.9% {
    background-image: url("../img/common/icon_arrow_circle.svg");
    opacity: 0;
    transform: translateX(50%);
  }
  50% {
    background-image: url("../img/common/icon_arrow_circle-hover.svg");
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    background-image: url("../img/common/icon_arrow_circle-hover.svg");
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes btn_01_gray {
  49.9% {
    background-image: url("../img/common/icon_arrow_circle-gray.svg");
    opacity: 0;
    transform: translateX(50%);
  }
  50% {
    background-image: url("../img/common/icon_arrow_circle-hover.svg");
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    background-image: url("../img/common/icon_arrow_circle-hover.svg");
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes btn_01_gray {
  49.9% {
    background-image: url("../img/common/icon_arrow_circle-gray.svg");
    opacity: 0;
    transform: translateX(50%);
  }
  50% {
    background-image: url("../img/common/icon_arrow_circle-hover.svg");
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    background-image: url("../img/common/icon_arrow_circle-hover.svg");
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes btn_01_white {
  49.9% {
    opacity: 0;
    transform: translateX(50%);
  }
  50% {
    background-image: url("../img/common/icon_arrow_circle-white.svg");
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    background-image: url("../img/common/icon_arrow_circle-white.svg");
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes btn_01_white {
  49.9% {
    opacity: 0;
    transform: translateX(50%);
  }
  50% {
    background-image: url("../img/common/icon_arrow_circle-white.svg");
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    background-image: url("../img/common/icon_arrow_circle-white.svg");
    opacity: 1;
    transform: translateX(0%);
  }
}
@media screen and (max-width: 768px) {
  button[class^=btn_].btn_01,
.btn_01 {
    font-size: 0.8125rem;
  }
}

button[class^=btn_].btn_02,
.btn_02 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  max-width: 20.625rem;
  height: 3.75rem;
  border: 1px solid #BEBEBE;
  border-radius: 6.25rem;
}
button[class^=btn_].btn_02::after,
.btn_02::after {
  content: "";
  width: 0.5em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow.svg") no-repeat;
  display: block;
}
@media screen and (min-width: 769px) {
  button[class^=btn_].btn_02,
.btn_02 {
    transition: background-color 0.5s, color 0.5s;
  }
  button[class^=btn_].btn_02:hover,
.btn_02:hover {
    opacity: 1;
    background-color: var(--colorMain);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  button[class^=btn_].btn_02,
.btn_02 {
    max-width: 15rem;
    height: 3rem;
    font-size: 0.8125rem;
  }
}

.btn_submit {
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font: inherit;
  border: 2px solid #525252;
  background-color: #525252;
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.125em 2em;
  width: 100%;
  max-width: 25rem;
  height: 4.375rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
}
.btn_submit[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #ccc;
  border-color: #ccc;
}
.btn_submit.btn_back {
  background-color: #bdbdbd;
  border-color: #bdbdbd;
}
@media screen and (min-width: 769px) {
  .btn_submit {
    transition: background-color 0.5s, color 0.5s;
  }
  .btn_submit:hover {
    background-color: #fff;
    color: #525252;
  }
  .btn_submit:hover[disabled] {
    background-color: #fff;
    color: #ccc;
  }
}
@media screen and (max-width: 768px) {
  .btn_submit {
    height: 56px;
  }
  .btn_submit::after {
    width: 2.25rem;
  }
  .btn_submit input[type=submit] {
    font-size: 1rem;
  }
}

/*==========
バナー
==========*/
.banner_brand {
  aspect-ratio: 1400/300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.banner_brand:not(:first-child) {
  margin-top: 1.5rem;
}
.banner_brand video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}
.banner_brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center/cover url("../img/common/banner_brand-bg.png") no-repeat;
  z-index: -1;
}
.banner_brand::after {
  content: "";
  width: 0.875rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_blank.svg") no-repeat;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
@media screen and (min-width: 769px) {
  .banner_brand video {
    transition: width 0.5s;
  }
  .banner_brand::before {
    transition: background-color 0.5s;
  }
  .banner_brand::after {
    transition: transform 0.5s;
  }
  .banner_brand:hover {
    opacity: 1;
  }
  .banner_brand:hover video {
    width: 120%;
  }
  .banner_brand:hover::before {
    background-color: rgba(40, 50, 102, 0.8);
  }
  .banner_brand:hover::after {
    transform: scale(1.5);
  }
}
@media screen and (max-width: 768px) {
  .banner_brand {
    aspect-ratio: 2/1;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*========== 汎用レイアウト ==========*/
.layout_tile {
  background-color: #fff;
  padding: 5rem var(--paddingLR);
  border-radius: 3.75rem;
  box-shadow: 0 3px 1.5625rem rgba(0, 0, 0, 0.08);
}
.layout_tile:not(:first-child) {
  margin-top: var(--paddingSection);
}
@media screen and (max-width: 768px) {
  .layout_tile {
    border-radius: 1rem;
    padding: 1.5rem var(--paddingLR);
  }
  .layout_tile .container,
.layout_tile .inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.layout_tile-lightblue {
  background-color: #F4F8F9;
  padding: 5rem var(--paddingLR);
  border-radius: 3.75rem;
  box-shadow: 0 3px 1.5625rem rgba(0, 0, 0, 0.08);
}
.layout_tile-lightblue:not(:first-child) {
  margin-top: var(--paddingSection);
}
@media screen and (max-width: 768px) {
  .layout_tile-lightblue {
    border-radius: 1rem;
    padding: 1.5rem var(--paddingLR);
  }
  .layout_tile-lightblue .container,
.layout_tile-lightblue .inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.layout_anchor_01 {
  font-size: 1.125rem;
  font-weight: 500;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: 1.5rem 3.125rem;
}
.layout_anchor_01 a {
  text-decoration: none;
  color: var(--colorMain);
}
.layout_anchor_01 > *:not(:has(a)),
.layout_anchor_01 a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.375rem;
  border-radius: 0.3125rem;
  background: #fff;
  box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.07);
  padding: 0.25em 1.5rem;
}
.layout_anchor_01 > *:not(:has(a))::after,
.layout_anchor_01 a::after {
  content: "";
  width: 0.5em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow.svg") no-repeat;
  transform: rotate(90deg);
  flex-shrink: 0;
}
.layout_anchor_01:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .layout_anchor_01 {
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
    font-size: 1rem;
    gap: 1rem;
  }
  .layout_anchor_01 > *:not(:has(a)),
.layout_anchor_01 a {
    padding: 1rem var(--paddingLR);
  }
  .layout_anchor_01:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.layout_anchor_02 {
  font-weight: 600;
  display: flex;
  gap: 1rem;
}
.layout_anchor_02 a {
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.layout_anchor_02 > * {
  flex: 1;
}
.layout_anchor_02 > *:not(:has(a)),
.layout_anchor_02 a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.375rem;
  border-radius: 0.3125rem;
  background-color: var(--colorMain);
  color: #fff;
  box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.07);
  padding: 0.25em 1.25rem;
  position: relative;
}
.layout_anchor_02 > *:not(:has(a))::after,
.layout_anchor_02 a::after {
  content: "";
  width: 0.5em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
  transform: translateY(-50%) rotate(90deg);
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 1.25rem;
}
.layout_anchor_02:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .layout_anchor_02 {
    flex-wrap: wrap;
    font-size: 0.875rem;
  }
  .layout_anchor_02 > * {
    width: calc((100% - 1rem) / 2);
    flex: 0 1 auto;
  }
  .layout_anchor_02 > *:not(:has(a)),
.layout_anchor_02 a {
    height: 2.5rem;
  }
}

.layout_menu_01 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--colorMain);
  gap: 3.125rem;
}
.layout_menu_01 a {
  color: inherit;
  text-decoration: none;
}
.layout_menu_01 > *:not(:has(a)),
.layout_menu_01 a {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}
.layout_menu_01 > *:not(:has(a))::after,
.layout_menu_01 a::after {
  content: "";
  width: 2.1875rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow_circle-gray.svg") no-repeat;
  display: block;
}
@media screen and (min-width: 769px) {
  .layout_menu_01 > *:not(:has(a)):hover,
.layout_menu_01 a:hover {
    opacity: 1;
  }
  .layout_menu_01 > *:not(:has(a)):hover::after,
.layout_menu_01 a:hover::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01_gray;
            animation-name: btn_01_gray;
  }
}
.layout_menu_01:not(:first-child) {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .layout_menu_01 {
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
    font-size: 1rem;
    gap: 1rem;
  }
  .layout_menu_01 > *:not(:has(a)),
.layout_menu_01 a {
    padding: 1rem 0;
  }
  .layout_menu_01 > *:not(:has(a))::after,
.layout_menu_01 a::after {
    width: 1.5rem;
  }
  .layout_menu_01:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.layout_menu_02 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--colorMain);
  gap: 3.125rem;
}
.layout_menu_02 a {
  color: inherit;
  text-decoration: none;
}
.layout_menu_02 > *:not(:has(a)),
.layout_menu_02 a {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: 0.3125rem;
  border: 1px solid var(--colorMain);
  background-color: var(--colorMain);
  color: #fff;
}
.layout_menu_02 > *:not(:has(a))::after,
.layout_menu_02 a::after {
  content: "";
  width: 2.1875rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow_circle-white.svg") no-repeat;
  display: block;
}
.layout_menu_02:not(:first-child) {
  margin-top: 4rem;
}
@media screen and (min-width: 769px) {
  .layout_menu_02 a {
    transition: background-color 0.5s, color 0.5s;
  }
  .layout_menu_02 a:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--colorMain);
  }
  .layout_menu_02 a:hover::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01;
            animation-name: btn_01;
  }
}
@media screen and (max-width: 768px) {
  .layout_menu_02 {
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
    font-size: 1rem;
    gap: 1rem;
  }
  .layout_menu_02 > *:not(:has(a)),
.layout_menu_02 a {
    padding: 1rem var(--paddingLR);
  }
  .layout_menu_02 > *:not(:has(a))::after,
.layout_menu_02 a::after {
    width: 1.5rem;
  }
  .layout_menu_02:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.layout_menu_03 {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--colorMain);
}
.layout_menu_03 .icon {
  width: 4.6875rem;
}
.layout_menu_03 a {
  color: inherit;
  text-decoration: none;
}
.layout_menu_03 a::after {
  content: "";
  width: 2.1875rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow_circle.svg") no-repeat;
  display: block;
  margin-left: auto;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .layout_menu_03 a:hover {
    opacity: 1;
  }
  .layout_menu_03 a:hover::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01;
            animation-name: btn_01;
  }
}
.layout_menu_03 > *:not(:last-child) {
  margin-bottom: 1.25rem;
}
.layout_menu_03 > *:not(:has(a)),
.layout_menu_03 > * a {
  display: flex;
  align-items: center;
  min-height: 7.5rem;
  gap: 0.625rem;
  padding: 0.5rem 2.5rem;
  background: #fff;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.16));
  border-radius: 0.3125rem;
}
.layout_menu_03 > *:not(:has(a)):has(.icon),
.layout_menu_03 > * a:has(.icon) {
  padding-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .layout_menu_03 {
    font-size: 1rem;
  }
  .layout_menu_03 .icon {
    width: 3rem;
  }
  .layout_menu_03 a::after {
    width: 1.5rem;
  }
  .layout_menu_03 > *:not(:has(a)),
.layout_menu_03 > * a {
    min-height: 5rem;
    padding: var(--paddingLR);
  }
  .layout_menu_03 > *:not(:has(a)):has(.icon),
.layout_menu_03 > * a:has(.icon) {
    padding-left: var(--paddingLR);
  }
}

.layout_menu_thumbnail_01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.375rem 3.125rem;
}
.layout_menu_thumbnail_01:not(:first-child) {
  margin-top: 6.25rem;
}
.layout_menu_thumbnail_01 a {
  color: inherit;
  text-decoration: none;
}
.layout_menu_thumbnail_01 .area_img {
  aspect-ratio: 675/310;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.layout_menu_thumbnail_01 .area_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_menu_thumbnail_01 .area_text {
  padding-left: 1.25rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.layout_menu_thumbnail_01 .area_text::after {
  content: "";
  width: 2.1875rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow_circle.svg") no-repeat;
  flex-shrink: 0;
}
.layout_menu_thumbnail_01 .area_text:has(.wrapper) {
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  padding-bottom: 0.5em;
}
.layout_menu_thumbnail_01 .area_text:has(.wrapper) .title {
  margin-bottom: 1em;
}
.layout_menu_thumbnail_01 .area_text:has(.wrapper)::after {
  margin-top: auto;
  margin-bottom: 0.5em;
}
.layout_menu_thumbnail_01 .title {
  font-size: 1.5rem;
  color: var(--colorMain);
}
.layout_menu_thumbnail_01 .title::after {
  content: attr(data-en);
  font-family: "oswald";
  font-size: 0.6em;
  display: block;
  margin-top: 2px;
}
@media screen and (min-width: 769px) {
  .layout_menu_thumbnail_01 .area_img img {
    transition: transform 0.5s;
  }
  .layout_menu_thumbnail_01 a:hover {
    opacity: 1;
  }
  .layout_menu_thumbnail_01 a:hover .area_img img {
    transform: scale(1.05);
  }
  .layout_menu_thumbnail_01 a:hover .area_text::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01;
            animation-name: btn_01;
  }
}
@media screen and (max-width: 768px) {
  .layout_menu_thumbnail_01 {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 1.5rem;
  }
  .layout_menu_thumbnail_01 .title {
    font-size: 1.25rem;
  }
  .layout_menu_thumbnail_01 .title::after {
    font-size: 0.45em;
  }
  .layout_menu_thumbnail_01 .area_text {
    margin-top: 0.625rem;
    padding-left: 0;
  }
  .layout_menu_thumbnail_01 .area_text::after {
    width: 1.5rem;
  }
  .layout_menu_thumbnail_01:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.layout_menu_thumbnail_02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.375rem 3.125rem;
}
.layout_menu_thumbnail_02:not(:first-child) {
  margin-top: 6.25rem;
}
.layout_menu_thumbnail_02 a {
  color: inherit;
  text-decoration: none;
}
.layout_menu_thumbnail_02 .area_img {
  aspect-ratio: 432/198;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.layout_menu_thumbnail_02 .area_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_menu_thumbnail_02 .area_text {
  padding-left: 1.25rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout_menu_thumbnail_02 .area_text::after {
  content: "";
  width: 0.5rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow.svg") no-repeat;
  margin-right: 1em;
}
.layout_menu_thumbnail_02 .title {
  font-size: 1.25rem;
  color: var(--colorMain);
}
@media screen and (min-width: 769px) {
  .layout_menu_thumbnail_02 .area_img img {
    transition: transform 0.5s;
  }
  .layout_menu_thumbnail_02 a:hover {
    opacity: 1;
  }
  .layout_menu_thumbnail_02 a:hover .area_img img {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 768px) {
  .layout_menu_thumbnail_02 {
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    gap: 2rem 0.5rem;
  }
  .layout_menu_thumbnail_02 .title {
    font-size: 0.875rem;
  }
  .layout_menu_thumbnail_02 .area_text {
    padding-left: 0;
  }
  .layout_menu_thumbnail_02:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.layout_menu_message a {
  color: inherit;
  text-decoration: none;
  display: flex;
  gap: 1rem 3.125rem;
}
.layout_menu_message a + a {
  margin-top: var(--paddingSection);
}
.layout_menu_message .area_img {
  width: 65.5%;
  aspect-ratio: 917/400;
  overflow: hidden;
}
.layout_menu_message .area_img img {
  border-radius: 0.3125rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_menu_message .area_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 10;
}
.layout_menu_message .en {
  color: var(--colorMain);
  font-size: 0.8125rem;
  font-family: "oswald";
  text-align: right;
}
.layout_menu_message .title {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--colorMain);
  margin-left: -4em;
  margin-top: 1em;
}
.layout_menu_message .btn_01 {
  margin-top: 0;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .layout_menu_message .btn_01 {
    pointer-events: none;
  }
  .layout_menu_message .area_img img {
    transition: transform 0.5s;
  }
  .layout_menu_message a:hover {
    opacity: 1;
  }
  .layout_menu_message a:hover .area_img img {
    transform: scale(1.05);
  }
  .layout_menu_message a:hover .btn_01::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01;
            animation-name: btn_01;
  }
}
@media screen and (max-width: 768px) {
  .layout_menu_message a {
    flex-direction: column;
  }
  .layout_menu_message .area_img,
.layout_menu_message .area_text {
    display: contents;
  }
  .layout_menu_message .en {
    font-size: 0.625rem;
    text-align: left;
    order: -2;
  }
  .layout_menu_message .title {
    font-size: 1.125rem;
    margin-left: 0;
    margin-top: 0;
  }
  .layout_menu_message .btn_01 {
    margin-left: auto;
    margin-right: auto;
  }
}

.layout_news:not(:first-child) {
  margin-top: 4rem;
}
.layout_news > * {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}
.layout_news > *:not(:has(> a)), .layout_news > * > a {
  min-height: 7.125rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.layout_news > * > a {
  color: inherit;
  text-decoration: none;
}
.layout_news > * > a::after {
  content: "";
  width: 2.25rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow_circle.svg") no-repeat;
  flex-shrink: 0;
}
.layout_news .col_category {
  flex-shrink: 0;
}
.layout_news .col_category .label_category {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.125em 1em;
  border-radius: 6.25rem;
  border: 1px solid #97A1B1;
  width: 9rem;
  height: 1.75rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout_news .col_category .label_category + .label_category {
  margin-top: 0.5rem;
}
.layout_news .col_time {
  font-weight: 500;
  margin-right: 2rem;
}
.layout_news .col_thumb {
  width: 15.572858%;
  aspect-ratio: 800/459;
  flex-shrink: 0;
  max-width: 10rem;
}
.layout_news .col_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.layout_news .col_text {
  font-size: 0.9375rem;
  flex: 1;
}
@media screen and (min-width: 769px) {
  .layout_news > *:has(a) {
    padding: 0.5rem 0;
  }
  .layout_news a {
    width: 100%;
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
    border-radius: 0.3125rem;
    transition: background-color 0.5s, transform 0.5s;
  }
  .layout_news a::after {
    transition: margin 0.5s;
  }
  .layout_news a:hover {
    opacity: 1;
    background-color: #F8F8F8;
    transform: translateX(0.5rem);
  }
  .layout_news a:hover::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01;
            animation-name: btn_01;
    margin-left: -0.5rem;
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .layout_news:not(:first-child) {
    margin-top: 0.5rem;
  }
  .layout_news > *:not(:has(> a)), .layout_news > * > a {
    min-height: auto;
    flex-wrap: wrap;
    gap: 0.875rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  }
  .layout_news > * > a::after {
    display: none;
  }
  .layout_news .col_category {
    min-width: 65%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .layout_news .col_category .label_category {
    font-size: 0.6875rem;
    min-width: 5.5rem;
    height: 1.5rem;
  }
  .layout_news .col_category .label_category + .label_category {
    margin-top: 0;
  }
  .layout_news .col_time {
    order: -1;
    font-size: 0.75rem;
  }
  .layout_news .col_thumb {
    width: 34%;
    max-width: 7.25rem;
  }
  .layout_news .col_text {
    font-size: 0.8125rem;
  }
  .layout_news > *:not(:has(.col_thumb)) .col_text {
    width: 100%;
    flex: 0 1 auto;
  }
}

.layout_statement {
  background: center/cover url("../img/child/ir/individual/ir_individual_statement_bg.jpg") no-repeat;
  padding: 7.5rem var(--paddingLR);
  border-radius: 1.875rem;
}
.layout_statement .flex {
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem 3.125rem;
}
.layout_statement .flex > * {
  width: 50%;
}
.layout_statement .area_title .text_img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.layout_statement .text_box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.layout_statement .btn {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5625rem;
  width: 100%;
  max-width: 65rem;
  height: 5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.25em 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4) inset;
  position: relative;
}
.layout_statement .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.4);
}
.layout_statement .btn::after {
  content: "";
  width: 0.625em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
  display: block;
}
.layout_statement .btn .ja {
  font-weight: 500;
}
.layout_statement .btn .en {
  font-size: 0.8125rem;
  font-family: "oswald";
}
@media screen and (max-width: 768px) {
  .layout_statement {
    padding: 5rem var(--paddingLR);
  }
  .layout_statement .flex {
    flex-direction: column;
  }
  .layout_statement .flex > * {
    width: 100%;
  }
  .layout_statement .area_title .text_img {
    max-width: 17.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
  }
  .layout_statement .text_box {
    text-align: center;
  }
  .layout_statement .text_box .text + .text {
    margin-top: 1em;
  }
  .layout_statement .btn {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 0.875rem;
    gap: 0;
    padding: 0.25em 1.5rem;
    height: 5rem;
    margin-top: 2.5rem;
  }
  .layout_statement .btn::after {
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  .outer:has(.layout_statement) {
    padding-left: 0;
    padding-right: 0;
  }
}
.layout_figure_business {
  aspect-ratio: 1/1;
  position: relative;
  z-index: 1;
  margin: -5rem 0 -8rem;
}
.layout_figure_business .circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-animation: spin 6s linear infinite;
          animation: spin 6s linear infinite;
}
.layout_figure_business .figure_text {
  font-size: 0.84375rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  color: #0E1646;
  position: absolute;
  inset: 0;
}
.layout_figure_business .figure_text > * {
  position: absolute;
  transform: translateX(-50%);
}
.layout_figure_business .figure_text .title {
  white-space: nowrap;
}
.layout_figure_business .figure_text .first {
  top: 24%;
  left: 50%;
}
.layout_figure_business .figure_text .second {
  top: 48.5%;
  left: 16.5%;
}
.layout_figure_business .figure_text .third {
  top: 49%;
  left: 84%;
}
.layout_figure_business .figure_text .fourth {
  top: 74.75%;
  left: 29.25%;
}
.layout_figure_business .figure_text .fifth {
  top: 74.75%;
  left: 69.75%;
}
@media screen and (max-width: 768px) {
  .layout_figure_business {
    max-width: 25rem;
    margin: -2rem -1rem;
  }
  .layout_figure_business img {
    width: 100%;
  }
  .layout_figure_business .figure_text {
    font-size: min(2.513334vw, 9.425px);
  }
  .layout_figure_business .figure_text .first {
    top: 24%;
    left: 50%;
  }
  .layout_figure_business .figure_text .second {
    top: 49%;
    left: 19.5%;
  }
  .layout_figure_business .figure_text .third {
    left: 81.75%;
  }
  .layout_figure_business .figure_text .fourth {
    top: 76.25%;
    left: 31.25%;
  }
  .layout_figure_business .figure_text .fifth {
    top: 76.25%;
    left: 69.5%;
  }
}

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.layout_business_example {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}
.layout_business_example .thumb {
  border-radius: 0.3125rem;
  overflow: hidden;
}
.layout_business_example .row_title,
.layout_business_example .row_text {
  margin-left: 1.25rem;
}
.layout_business_example .row_title {
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  min-height: 3em;
}
.layout_business_example .title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--colorMain);
}
.layout_business_example .text {
  font-size: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .layout_business_example {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 2.5rem var(--paddingLR);
  }
  .layout_business_example .thumb {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
  }
  .layout_business_example .row_title,
.layout_business_example .row_text {
    margin-left: 0;
  }
  .layout_business_example .row_title {
    margin-top: 0.625rem;
    min-height: auto;
  }
  .layout_business_example .title {
    font-size: 1rem;
  }
}

.layout_business_brand {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}
.layout_business_brand .logo {
  height: 2rem;
  margin-bottom: 1.25rem;
}
.layout_business_brand .logo img {
  width: auto;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.layout_business_brand .thumb {
  border-radius: 0.3125rem;
  overflow: hidden;
}
.layout_business_brand .row_title {
  margin: 0.625rem 0;
  min-height: 3em;
}
.layout_business_brand .title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--colorMain);
}
@media screen and (max-width: 768px) {
  .layout_business_brand {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 2.5rem var(--paddingLR);
  }
  .layout_business_brand .logo {
    height: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .layout_business_brand .thumb {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
  }
  .layout_business_brand .row_title {
    min-height: auto;
  }
  .layout_business_brand .title {
    font-size: 1rem;
  }
}

.layout_bg-gray {
  background-color: #F8F8F8;
}

.layout_products-category {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3.125rem;
  counter-reset: tax_product;
}
.layout_products-category:not(:first-child) {
  margin-top: 4rem;
}
.layout_products-category a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .layout_products-category a {
    opacity: 1;
  }
  .layout_products-category a:hover .origin {
    -webkit-clip-path: polygon(calc(100% + 5rem) 0%, calc(100% + 5rem) 0%, 100% 100%, 100% 100%);
            clip-path: polygon(calc(100% + 5rem) 0%, calc(100% + 5rem) 0%, 100% 100%, 100% 100%);
  }
  .layout_products-category a:hover .row_title::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01;
            animation-name: btn_01;
  }
}
.layout_products-category > * {
  width: calc((100% - 3.125rem) / 2);
}
.layout_products-category > *:first-child {
  width: 100%;
}
.layout_products-category > *:first-child .row_thumb {
  aspect-ratio: 1400/274;
}
.layout_products-category .row_thumb {
  aspect-ratio: 675/223;
  border-radius: 0.3125rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.layout_products-category .row_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_products-category .row_thumb .origin {
  transition: -webkit-clip-path 0.5s;
  transition: clip-path 0.5s;
  transition: clip-path 0.5s, -webkit-clip-path 0.5s;
  -webkit-clip-path: polygon(0% 0%, calc(100% + 5rem) 0%, 100% 100%, calc(0% - 5rem) 100%);
          clip-path: polygon(0% 0%, calc(100% + 5rem) 0%, 100% 100%, calc(0% - 5rem) 100%);
}
.layout_products-category .row_thumb .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -10;
}
.layout_products-category .row_title {
  padding-left: 1em;
  margin-top: 1.5rem;
  font-size: 1.375rem;
  color: var(--colorMain);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.layout_products-category .row_title::after {
  content: "";
  width: 2.1875rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow_circle.svg") no-repeat;
  display: block;
}
@media screen and (max-width: 768px) {
  .layout_products-category {
    gap: 1.5rem;
    justify-content: center;
  }
  .layout_products-category:not(:first-child) {
    margin-top: 1.5rem;
  }
  .layout_products-category > * {
    width: 100%;
    max-width: 21.5625rem;
  }
  .layout_products-category > *:first-child .row_thumb {
    aspect-ratio: 345/120;
  }
  .layout_products-category .row_thumb {
    aspect-ratio: 345/120;
  }
  .layout_products-category .row_title {
    padding-left: 0;
    margin-top: 0.5rem;
    font-size: 0.9375rem;
  }
  .layout_products-category .row_title::after {
    width: 1.75em;
  }
}

.layout_search-products {
  display: flex;
  border-radius: 0.3125rem;
  overflow: hidden;
  box-shadow: 0 0 1.5625rem rgba(0, 0, 0, 0.08);
}
.layout_search-products:not(:first-child) {
  margin-top: 5rem;
}
.layout_search-products .col_title,
.layout_search-products .col_input {
  padding: 1.25rem 2.5rem;
}
.layout_search-products .col_title {
  color: #0E1646;
  font-weight: 500;
  display: flex;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
  width: 29%;
}
.layout_search-products .col_title::before {
  content: "";
  width: 1.61111em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_search-blue.svg") no-repeat;
  display: block;
}
.layout_search-products .col_title .en {
  font-size: 1.38888em;
}
.layout_search-products .col_input {
  padding-left: 0;
  background-color: #fff;
  flex: 1;
  display: flex;
}
.layout_search-products input[type=text] {
  font: inherit;
  width: 100%;
  padding: 0.75rem 2rem;
  border: 1px solid #DDDDDD;
  border-radius: 0.3125rem 0 0 0.3125rem;
}
.layout_search-products input[type=text]::-moz-placeholder {
  color: #D3D3D3;
}
.layout_search-products input[type=text]::placeholder {
  color: #D3D3D3;
}
.layout_search-products input[type=text]:focus {
  outline: none;
}
.layout_search-products button[type=submit] {
  cursor: pointer;
  font: inherit;
  width: 7.5rem;
  flex-shrink: 0;
  background-color: #0E1646;
  color: #fff;
  border-radius: 0 0.3125rem 0.3125rem 0;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .layout_search-products {
    flex-direction: column;
  }
  .layout_search-products:not(:first-child) {
    margin-top: var(--paddingSection);
  }
  .layout_search-products .col_title,
.layout_search-products .col_input {
    padding: var(--paddingLR);
  }
  .layout_search-products .col_title {
    font-size: 0.6875rem;
    width: 100%;
  }
  .layout_search-products input[type=text] {
    font-size: 0.6875rem;
    padding: 0.5rem 1rem;
  }
  .layout_search-products button[type=submit] {
    width: 3.4375rem;
    font-size: 0.6875rem;
  }
}

.layout_search-news-simple .wrapper {
  max-width: 42.1875rem;
  border: 1px solid #EDEDED;
  position: relative;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.layout_search-news-simple .wrapper .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.5em;
  height: 100%;
  padding: 1em 0;
}
.layout_search-news-simple .wrapper .icon img {
  width: auto;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.layout_search-news-simple .wrapper button[type=submit] {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  width: 4em;
  height: 100%;
  background-color: #0E1646;
  color: #fff;
}
.layout_search-news-simple .wrapper input[type=text] {
  width: 100%;
  padding: 0.75rem 4.5em 0.75em 3.5em;
  font: inherit;
  color: inherit;
  background-color: #fff;
  border: none;
  outline: none;
}
.layout_search-news-simple .wrapper input[type=text]::-moz-placeholder {
  color: #D3D3D3;
}
.layout_search-news-simple .wrapper input[type=text]::placeholder {
  color: #D3D3D3;
}
@media screen and (max-width: 768px) {
  .layout_search-news-simple .wrapper {
    font-size: 0.875rem;
  }
}

.layout_search-products-simple .wrapper {
  max-width: 25rem;
  border: 1px solid #EDEDED;
  position: relative;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.layout_search-products-simple .wrapper .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.5em;
  height: 100%;
  padding: 1em 0;
}
.layout_search-products-simple .wrapper .icon img {
  width: auto;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.layout_search-products-simple .wrapper button[type=submit] {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  width: 4em;
  height: 100%;
  background-color: #0E1646;
  color: #fff;
}
.layout_search-products-simple .wrapper input[type=text] {
  padding: 0.75rem 4.5em 0.75em 3.5em;
  font: inherit;
  color: inherit;
  background-color: #fff;
  border: none;
  outline: none;
}
.layout_search-products-simple .wrapper input[type=text]::-moz-placeholder {
  color: #D3D3D3;
}
.layout_search-products-simple .wrapper input[type=text]::placeholder {
  color: #D3D3D3;
}
@media screen and (max-width: 768px) {
  .layout_search-products-simple .wrapper {
    font-size: 0.875rem;
  }
}

.layout_search-category .js_accordion-btn {
  background-color: #F7F7F7;
  border-radius: 0.625rem;
  font-weight: 700;
  color: var(--colorMain);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 5.625rem;
}
.layout_search-category .js_accordion-btn .plus {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5em;
  width: 1em;
  aspect-ratio: 1/1;
  position: relative;
}
.layout_search-category .js_accordion-btn .plus::before, .layout_search-category .js_accordion-btn .plus::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--colorMain);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.layout_search-category .js_accordion-btn .plus::after {
  transition: transform 0.5s;
  transform: translate(-50%, -50%) rotate(90deg);
}
.layout_search-category .js_accordion-btn.is-active .plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.layout_search-category .list {
  font-size: 0.8125rem;
  line-height: 1;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.25rem, 1fr));
  text-align: center;
  gap: 0.875rem;
}
.layout_search-category .list > *:not(:has(a)),
.layout_search-category .list a {
  border: 1px solid rgba(14, 22, 70, 0.15);
  border-radius: 0.125rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout_search-category .list a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .layout_search-category .list a {
    transition: background-color 0.5s, color 0.5s;
  }
  .layout_search-category .list a:hover {
    opacity: 1;
    background-color: var(--colorMain);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .layout_search-category .js_accordion-btn {
    font-size: 0.875rem;
    height: 4rem;
  }
  .layout_search-category .js_accordion-btn .plus {
    margin-top: 0.25em;
  }
  .layout_search-category .js_accordion-btn .plus::before, .layout_search-category .js_accordion-btn .plus::after {
    height: 2px;
  }
  .layout_search-category .list {
    font-size: 0.75rem;
    margin-top: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
    gap: 0.5rem;
  }
  .layout_search-category .list > *:not(:has(a)),
.layout_search-category .list a {
    min-height: 2rem;
  }
}

/*==========
ヘッダー
==========*/
#header {
  --headerFontColor: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: calc(var(--paddingLR) * 2);
  padding-right: calc(var(--paddingLR) * 0.5);
  position: fixed;
  width: 100%;
  height: var(--headerHeight);
  top: 0;
  left: 0;
  z-index: 99;
  color: var(--headerFontColor);
  transition: background-color 0.5s;
}
#header .img_white {
  display: block;
}
#header .img_black {
  display: none;
}
#header a {
  color: inherit;
  text-decoration: none;
}
#header .header_logo {
  max-width: 12.9375rem;
}
#header .header_nav_wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}
#header .header_nav_upper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5em;
}
#header #header_favorite_number {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
#header #header_favorite_number .number {
  background-color: var(--colorMain);
  color: #fff;
  width: 1.5em;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  border-radius: 50%;
}
#header .header_nav_lower {
  margin-top: 0.5rem;
}
#header .header_lang {
  cursor: pointer;
  font: inherit;
  width: 6.875rem;
  text-align: center;
  display: block;
  background-color: transparent;
  padding: 0 0.25em;
  border: 1px solid var(--headerFontColor);
  border-radius: 0.375rem;
  color: var(--headerFontColor);
  line-height: 1;
  font-size: 0.875rem;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
#header .header_lang option {
  color: var(--colorMain);
  font-weight: 700;
}
#header .header_lang:focus {
  outline: none;
}
#header .header_lang_sp {
  display: none;
}
#header .header_sns {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
#header .header_sns > * {
  width: 1.5em;
  aspect-ratio: 1/1;
}
#header .header_sns > * img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
#header .header_icon {
  color: #fff;
  text-decoration: underline;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25em;
}
#header .header_icon span {
  flex-shrink: 0;
}
#header .header_nav {
  font-size: 0.9375rem;
  display: flex;
}
#header .header_btn_contact {
  color: var(--headerFontColor);
  border: 1px solid rgba(255, 255, 255, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 11rem;
  height: 5rem;
  font-weight: 700;
  font-size: 0.8125rem;
}
#header .header_btn_contact .en {
  padding-bottom: 0.25em;
  margin-bottom: 0.25em;
  font-size: 1.538461em;
  font-family: "dm-sans";
  font-weight: 600;
  position: relative;
}
#header .header_btn_contact .en::after {
  content: "";
  width: 1.5em;
  height: 1px;
  background-color: var(--headerFontColor);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: background-color 0.5s;
}
#header #hamburger_btn {
  display: none;
}
@media screen and (min-width: 769px) {
  #header.bg {
    --headerFontColor: var(--colorFont);
    background-color: #fff;
    box-shadow: 0 0 1.5625rem rgba(0, 0, 0, 0.08);
  }
  #header.bg .img_white {
    display: none;
  }
  #header.bg .img_black {
    display: block;
  }
  #header.bg .header_sns,
#header.bg .header_icon {
    mix-blend-mode: difference;
  }
  #header.bg .header_btn_contact {
    --headerFontColor: var(--colorMain);
  }
  #header .header_nav > * {
    padding: 0.625rem 1.5rem 1rem;
  }
  #header .header_nav_left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  }
  #header .js_megamenu-contents {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    width: 100vw;
    max-height: calc(100vh - var(--headerHeight) - 5rem);
    max-height: calc(100lvh - var(--headerHeight) - 5rem);
    overflow: auto;
    scrollbar-gutter: stable;
    z-index: 10;
    box-shadow: 0 0 1.5625rem rgba(0, 0, 0, 0.08);
  }
  #header .header_megamenu_child {
    width: 100%;
    background-color: #F5F4F4;
    color: var(--colorFont);
    padding: 4rem var(--paddingLR);
    scrollbar-gutter: stable;
  }
  #header .header_megamenu {
    max-width: 87.5rem;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    display: flex;
  }
  #header .header_megamenu_col-title {
    width: 26%;
  }
  #header .header_megamenu_col-title .title_01 {
    white-space: pre;
    font-size: 0.9375rem;
  }
  #header .header_megamenu_col-title .title_01::after {
    font-size: 3em;
  }
  #header .header_megamenu_col-title a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
  }
  #header .header_megamenu_col-title a::after {
    content: "";
    width: 2.1875rem;
    aspect-ratio: 1/1;
    display: block;
    background: center/contain url("../img/common/icon_arrow_circle-gray.svg") no-repeat;
  }
  #header .header_megamenu_col-title a:hover {
    opacity: 1;
  }
  #header .header_megamenu_col-title a:hover::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01;
            animation-name: btn_01;
  }
  #header .header_megamenu_col-menu {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 4rem 0;
  }
  #header .header_megamenu_menu {
    width: 16.25rem;
    font-size: 0.875rem;
    padding-right: 1.5rem;
  }
  #header .header_megamenu_menu > *:not(:last-child) {
    margin-bottom: 1.25em;
  }
  #header .header_megamenu_menu a {
    display: block;
    padding-left: 1em;
    position: relative;
  }
  #header .header_megamenu_menu a::before {
    content: "";
    width: 5px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #CB333B;
    position: absolute;
    top: 0.625em;
    left: 0.25em;
    opacity: 0;
  }
  #header .header_megamenu_menu a::before {
    transition: opacity 0.125s;
  }
  #header .header_megamenu_menu a:hover {
    font-weight: 700;
    opacity: 1;
  }
  #header .header_megamenu_menu a:hover::before {
    opacity: 1;
    transition: opacity 0.25s;
  }
  #header .header_megamenu_menu-parent {
    font-size: 0.9375rem;
    font-weight: 700;
    padding-bottom: 1.125rem;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  }
  #header .header_megamenu_col-banner {
    flex: 1;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  #header .header_megamenu_banner {
    display: flex;
    font-size: 0.875rem;
  }
  #header .header_megamenu_banner > * {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    max-width: 16.25rem;
  }
  #header .header_megamenu_banner > *:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  #header .header_megamenu_banner .header_megamenu_banner_img {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.3125rem;
    overflow: hidden;
  }
  #header .header_megamenu_banner p {
    margin-top: 0.5em;
    display: flex;
    align-items: center;
    gap: 0.5em;
  }
  #header .header_megamenu_banner p::after {
    content: "";
    width: 1.875rem;
    aspect-ratio: 1/1;
    background: center/contain url("../img/common/icon_arrow_circle-gray.svg") no-repeat;
    margin-left: auto;
  }
  #header .header_megamenu_banner a img {
    transition: transform 0.5s;
  }
  #header .header_megamenu_banner a:hover {
    opacity: 1;
    font-weight: 700;
  }
  #header .header_megamenu_banner a:hover img {
    transform: scale(1.05);
  }
  #header .header_megamenu_banner a:hover p::after {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01_gray;
            animation-name: btn_01_gray;
  }
  #header .header_megamenu_col-products {
    flex: 1;
  }
  #header .layout_search-products-simple {
    width: 30rem;
    max-width: 100%;
    margin-left: auto;
    margin-top: 1.5rem;
  }
  #header .layout_search-products-simple .wrapper {
    width: 100%;
    max-width: 100%;
  }
  #header .layout_search-products-simple input {
    width: 100%;
  }
  #header .header_megamenu_products_category {
    display: flex;
    gap: 4px;
    color: var(--colorFont);
    background-color: #F5F4F4;
  }
  #header .header_megamenu_products_category > * {
    flex: 1;
  }
  #header .header_megamenu_products_category > *:not(:has(a)),
#header .header_megamenu_products_category a {
    cursor: pointer;
    box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.125rem;
    transition: background-color 0.5s, color 0.5s;
    background-color: #fff;
    padding: 0.25rem 1.5rem;
  }
  #header .header_megamenu_products_category > *:not(:has(a)).is-active,
#header .header_megamenu_products_category a.is-active {
    background-color: var(--colorMain);
    color: #fff;
  }
  #header .header_megamenu_products_category > *:not(:has(a))::after,
#header .header_megamenu_products_category a::after {
    content: "";
    width: 0.5em;
    aspect-ratio: 1/1;
    background: center/contain url("../img/common/icon_arrow.svg") no-repeat;
  }
  #header .header_megamenu_products_category > *:not(:has(a)):hover,
#header .header_megamenu_products_category a:hover {
    color: #fff;
    background-color: var(--colorMain);
  }
  #header .header_megamenu_products_category > *:not(:has(a)):hover::after,
#header .header_megamenu_products_category a:hover::after {
    background-image: url("../img/common/icon_arrow-white.svg");
  }
  #header .header_megamenu_products_category a:hover {
    opacity: 1;
  }
  #header .header_megamenu_products_submenu {
    width: 100%;
    color: var(--colorFont);
    background-color: #F5F4F4;
  }
  #header .header_megamenu_products_row-menu {
    max-width: 87.5rem;
    padding: 2.5rem var(--paddingLR);
    margin-left: auto;
    margin-right: auto;
  }
  #header .header_megamenu_products_type {
    font-size: 0.875rem;
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  #header .header_megamenu_products_type > * {
    cursor: pointer;
    transition: background-color 0.5s, color 0.5s, opacity 0.5s, box-shadow 0.5s;
    display: flex;
    min-width: 11.25rem;
    height: 2.1875rem;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #707070;
    opacity: 0.4;
  }
  #header .header_megamenu_products_type .is-active {
    opacity: 1;
    border-color: #CB333B;
    background-color: #CB333B;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
  }
  #header .header_megamenu_products_menu-title {
    color: #A2A2A2;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    padding-left: 1em;
    font-weight: 700;
    margin-bottom: 0.75em;
    position: relative;
  }
  #header .header_megamenu_products_menu-title::before {
    content: "";
    width: 0.5em;
    height: 100%;
    background-color: #C1C1C1;
    opacity: 0.38;
    position: absolute;
    left: 0;
    top: 0;
  }
  #header .header_megamenu_products_col-menu {
    flex: 1;
    display: flex;
    gap: 1rem;
  }
  #header .header_megamenu_products_menu_wrap {
    flex-grow: 1;
  }
  #header .header_megamenu_products_menu_wrap[data-col="4"] {
    width: calc((100% - 5rem) / 6 * 4 + 3rem);
  }
  #header .header_megamenu_products_menu_wrap[data-col="4"] .header_megamenu_products_menu {
    grid-template-columns: repeat(4, 1fr);
  }
  #header .header_megamenu_products_menu_wrap[data-col="2"] {
    width: calc((100% - 5rem) / 6 * 2 + 1rem);
  }
  #header .header_megamenu_products_menu_wrap[data-col="2"] .header_megamenu_products_menu {
    grid-template-columns: repeat(2, 1fr);
  }
  #header .header_megamenu_products_menu {
    font-size: 0.875rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }
  #header .header_megamenu_products_menu > li:not(:has(a)),
#header .header_megamenu_products_menu a {
    display: block;
    padding-left: 1em;
    position: relative;
  }
  #header .header_megamenu_products_menu > li:not(:has(a))::before,
#header .header_megamenu_products_menu a::before {
    content: "";
    width: 5px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #CB333B;
    position: absolute;
    top: 0.625em;
    left: 0.25em;
    opacity: 0;
  }
  #header .header_megamenu_products_menu > li:not(:has(a))::before,
#header .header_megamenu_products_menu a::before {
    transition: opacity 0.125s;
  }
  #header .header_megamenu_products_menu > li:not(:has(a)):hover,
#header .header_megamenu_products_menu a:hover {
    font-weight: 700;
    opacity: 1;
  }
  #header .header_megamenu_products_menu > li:not(:has(a)):hover::before,
#header .header_megamenu_products_menu a:hover::before {
    opacity: 1;
    transition: opacity 0.25s;
  }
  #header .header_megamenu_products_row_btn {
    max-width: 87.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
  }
  #header .header_megamenu_products_row_btn .btn_01 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--colorMain);
  }
  #header .header_megamenu_products_row_btn .btn_01::after {
    width: 1.875rem;
    background: center/contain url(../img/common/icon_arrow_circle-gray.svg) no-repeat;
  }
  #header .header_megamenu_products_flex {
    max-width: 87.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    display: flex;
  }
  #header .header_megamenu_products_flex .col-fabric {
    flex: 1;
  }
  #header .header_megamenu_products_flex .col-banner {
    width: 26.428571%;
    max-width: 370px;
  }
  #header .header_megamenu_products_flex .layout_products-category {
    flex-direction: column;
    gap: 2rem;
  }
  #header .header_megamenu_products_flex .layout_products-category a {
    display: flex;
    flex-direction: column;
  }
  #header .header_megamenu_products_flex .layout_products-category > * {
    width: 100%;
  }
  #header .header_megamenu_products_flex .layout_products-category > *:first-child .row_thumb {
    aspect-ratio: 675/223;
  }
  #header .header_megamenu_products_flex .layout_products-category .row_title {
    font-size: 1.125rem;
    margin-top: 0;
    padding-left: 0;
    margin-bottom: 0.625rem;
    order: -1;
  }
  #header .header_megamenu_products_flex .layout_products-category .row_title::after {
    width: 1.875rem;
    background: center/contain url(../img/common/icon_arrow_circle-gray.svg) no-repeat;
  }
  #header .js_megamenu-btn {
    cursor: pointer;
    padding: 0.625rem 1.5rem 1rem;
    margin: -0.625rem -1.5rem -1rem;
    border-radius: 0.625rem 0.625rem 0 0;
    transition: background-color 0.5s, color 0.5s, opacity 0.5s;
  }
  #header .js_megamenu-btn.open {
    background-color: #F5F4F4;
    color: #BEBEBE;
  }
  #header .js_megamenu-btn:hover {
    opacity: 0.5;
  }
}

.js_megamenu-contents {
  display: none;
}

#header_bg_close {
  display: none;
  background-color: #000;
  opacity: 0.5;
  position: fixed;
  width: 100%;
  height: 100%;
  top: var(--headerHeight);
  left: 0;
  z-index: -10;
}

body:has(.js_megamenu-btn.open) #header_bg_close {
  display: block;
}

/*==========
ハンバーガーメニュー
==========*/
@media screen and (max-width: 768px) {
  #header {
    padding: 0 var(--paddingLR);
    /*== ボタン ==*/
  }
  #header.bg {
    background-color: #fff;
    box-shadow: 0 0 1.5625rem rgba(0, 0, 0, 0.08);
  }
  #header.bg .img_white {
    display: none;
  }
  #header.bg .img_black {
    display: block;
  }
  #header.bg #hamburger_btn span {
    background-color: var(--colorMain);
  }
  #header .header_logo {
    max-width: 6.625rem;
  }
  #header .header_nav_wrapper {
    -webkit-clip-path: polygon(0 0, 0 0, -20% 100%, -20% 100%);
            clip-path: polygon(0 0, 0 0, -20% 100%, -20% 100%);
    transition: -webkit-clip-path 0.5s;
    transition: clip-path 0.5s;
    transition: clip-path 0.5s, -webkit-clip-path 0.5s;
    will-change: clip-path;
    position: fixed;
    width: 100%;
    height: calc(100vh - var(--headerHeight));
    height: calc(100lvh - var(--headerHeight));
    background-color: #000;
    top: var(--headerHeight);
    left: 0;
    padding: 5rem var(--paddingLR);
    flex-direction: column;
    overflow-y: auto;
  }
  #header .header_lang,
#header .header_sns,
#header .header_nav_right,
#header .header_megamenu_col-title,
#header .js_tab-content {
    display: none;
  }
  #header .header_nav_left {
    width: 100%;
  }
  #header .header_lang_sp {
    width: 100%;
    font-size: 0.75rem;
    display: flex;
    gap: 0.5rem;
  }
  #header .header_lang_sp > * {
    flex: 1;
  }
  #header .header_lang_sp > *:not(:has(a)),
#header .header_lang_sp a {
    padding: 0.25em;
    border: 1px solid #fff;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.875rem;
    opacity: 0.3;
  }
  #header .header_lang_sp > *:not(:has(a)):has([data-stt-active]), #header .header_lang_sp > *:not(:has(a))[data-stt-active], #header .header_lang_sp > *:not(:has(a)).active,
#header .header_lang_sp a:has([data-stt-active]),
#header .header_lang_sp a[data-stt-active],
#header .header_lang_sp a.active {
    opacity: 1;
  }
  #header .header_nav_upper {
    flex-wrap: wrap;
    gap: 1.125rem;
    justify-content: flex-start;
  }
  #header .header_nav {
    margin-top: 1.5rem;
    flex-direction: column;
    font-size: 1.125rem;
  }
  #header .header_nav > * {
    flex-direction: column;
    position: relative;
  }
  #header .header_nav > * > a {
    display: block;
    width: calc(100% + 2em);
    height: 100%;
    padding: 1.25em 1em;
    margin: -1.25em -1em;
  }
  #header .header_nav > *:not(:has(.header_megamenu_parent)) {
    padding: 1.25em 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  #header .header_nav > *:not(:last-child)::after {
    display: none;
  }
  #header .header_nav > *::before {
    content: "";
    width: 3px;
    height: 1.125em;
    border-radius: 6.25rem;
    background: linear-gradient(0deg, var(--colorSub) 50%, var(--colorMain) 50%);
    position: absolute;
    top: 1.5em;
    left: 0;
  }
  #header .header_megamenu {
    display: flex;
    flex-direction: column;
    font-size: 0.8125rem;
    padding-top: 0.5rem;
  }
  #header .header_megamenu .header_megamenu_banner_img {
    display: none;
  }
  #header .header_megamenu a {
    padding: 0.75em 0;
    margin-top: 0.5em;
    margin-left: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.25em;
  }
  #header .header_megamenu a::before {
    content: "-";
  }
  #header .header_megamenu_parent {
    width: 100%;
    height: 100%;
    padding: 1.25em 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }
  #header .header_megamenu_parent::after {
    content: "";
    width: 0.5em;
    aspect-ratio: 1/1;
    background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.5s;
  }
  #header .header_megamenu_parent.open::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  #header .header_megamenu_parent a {
    pointer-events: none;
  }
  #header .header_megamenu_col-banner {
    order: -1;
  }
  #header .footer_nav_banner {
    margin-top: 2.5rem;
    max-width: 21.5625rem;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 1.25rem 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  #header .footer_nav_banner > *:nth-child(1) {
    margin-bottom: 1rem;
  }
  #header .footer_nav_banner .thumb {
    border-radius: 0.3125rem;
    overflow: hidden;
  }
  #header .footer_nav_banner .size-row2 {
    grid-column: span 2;
  }
  #header .footer_nav_banner .size-row2 a {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  #header .footer_nav_banner .size-row2 .title {
    display: none;
  }
  #header .footer_nav_banner .title {
    margin-top: 0.5rem;
    font-size: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header .footer_nav_banner .title::after {
    content: "";
    width: 0.75em;
    aspect-ratio: 1/1;
    background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
    display: block;
  }
  #header .footer_nav_sub_wrap {
    width: 100%;
    margin-top: 2.5rem;
  }
  #header .footer_btn_contact {
    font-size: 0.8125rem;
    font-weight: 700;
    background-color: var(--colorMain);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.3125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 18.75rem;
    height: 3.75rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
  #header .footer_btn_contact::before {
    content: attr(data-en);
    font-size: 1.6923em;
    font-family: "oswald";
  }
  #header .footer_btn_contact::after {
    content: "";
    width: 1.5em;
    aspect-ratio: 1/1;
    background: center/contain url("../img/common/icon_arrow_circle-white.svg") no-repeat;
    flex-shrink: 0;
    margin-left: auto;
  }
  #header .footer_nav_sub_menu {
    font-size: 0.625rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-bottom: 1rem;
  }
  #header .footer_nav_sub_sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  #header #hamburger_btn {
    flex-shrink: 0;
    display: block;
    width: 2.1875rem;
    height: 0.8125rem;
    margin-left: auto;
    cursor: pointer;
  }
  #header #hamburger_btn .btn_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 30;
  }
  #header #hamburger_btn span {
    transform-origin: center;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s;
  }
  #header.open #hamburger_btn .btn_wrap {
    justify-content: center;
  }
  #header.open #hamburger_btn span:nth-of-type(1) {
    transform: rotate(25deg);
    margin-bottom: -1px;
  }
  #header.open #hamburger_btn span:nth-of-type(2) {
    transform: rotate(-25deg);
    margin-top: -1px;
  }
  #header.open .header_nav_wrapper {
    -webkit-clip-path: polygon(0 0, 120% 0, 100% 100%, -20% 100%);
            clip-path: polygon(0 0, 120% 0, 100% 100%, -20% 100%);
  }
}
/*==========
フッター
==========*/
#footer {
  position: relative;
  z-index: 50;
  padding-top: var(--paddingSection);
  padding-bottom: 2.5rem;
  background-color: #000;
  color: #fff;
}
#footer a {
  color: inherit;
  text-decoration: none;
}
#footer .footer_wrapper {
  width: calc(95% - var(--paddingLR) * 2);
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
#footer .footer_logo {
  width: 59%;
  max-width: 22.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(var(--paddingSection) * 0.75);
}
#footer .footer_nav_wrap {
  display: grid;
  gap: 4rem 3.125rem;
  grid-template-columns: repeat(4, 1fr);
}
#footer .size-col2 {
  grid-column: span 2;
}
#footer .footer_nav_banner {
  margin-top: 3.125rem;
  display: grid;
  gap: 1.125rem 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: auto;
}
#footer .footer_nav_banner > *:not(:nth-child(1), :nth-child(2), :nth-child(3)) {
  margin-top: 1.5rem;
}
#footer .footer_nav_banner .thumb {
  border-radius: 0.3125rem;
  position: relative;
  aspect-ratio: 372/100;
  overflow: hidden;
  z-index: 1;
}
#footer .footer_nav_banner .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
#footer .footer_nav_banner .size-row2 {
  grid-row: span 2;
}
#footer .footer_nav_banner .size-row2 a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#footer .footer_nav_banner .size-row2 .thumb {
  flex: 1;
  aspect-ratio: auto;
}
#footer .footer_nav_banner .title {
  margin-top: 0.5rem;
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .footer_nav_banner .title::after {
  content: "";
  width: 0.5em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
  display: block;
}
@media screen and (min-width: 769px) {
  #footer .footer_nav_banner .thumb img {
    transition: transform 0.5s;
  }
  #footer .footer_nav_banner a:hover {
    opacity: 1;
  }
  #footer .footer_nav_banner a:hover .thumb img {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
#footer .footer_nav {
  font-size: 0.875rem;
}
#footer .footer_nav > * {
  position: relative;
  padding-left: 0.5em;
}
#footer .footer_nav > *::before {
  content: "-";
  position: absolute;
  left: 0;
}
#footer .footer_nav > *:not(:last-child) {
  margin-bottom: 0.5em;
}
#footer .footer_nav_title {
  font-size: 1.125rem;
  padding-top: 0.5em;
  padding-bottom: 0.75em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 1em;
  position: relative;
}
#footer .footer_nav_title::before {
  content: "";
  width: 1em;
  height: 4px;
  border-radius: 6.25rem;
  background: linear-gradient(90deg, var(--colorSub) 50%, var(--colorMain) 50%);
  position: absolute;
  top: 0;
  left: 0;
}
#footer .footer_nav_sub_wrap {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}
#footer .footer_nav_sub {
  display: flex;
  gap: 2.5rem;
}
#footer .footer_nav_sub_menu {
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
#footer .footer_nav_sub_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
#footer .footer_btn_contact {
  font-size: 0.9375rem;
  background-color: var(--colorMain);
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 0.3125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 37rem;
  height: 6.9375rem;
}
#footer .footer_btn_contact::before {
  content: attr(data-en);
  font-size: 2.13334em;
  font-family: "oswald";
}
#footer .footer_btn_contact::after {
  content: "";
  width: 2.333334em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow_circle-white.svg") no-repeat;
  flex-shrink: 0;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  #footer .footer_btn_contact:hover {
    opacity: 0.75;
  }
  #footer .footer_btn_contact:hover::after {
    background-image: url("../img/common/icon_arrow_circle-white.svg");
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-name: btn_01_white;
            animation-name: btn_01_white;
  }
}
#footer .footer_copyrights {
  margin-top: calc(var(--paddingSection) * 0.75);
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #footer {
    padding-top: 5rem;
    padding-bottom: 0.75rem;
  }
  #footer .footer_nav_wrap {
    display: none;
  }
  #footer .footer_nav_sub_wrap {
    margin-top: 3rem;
    flex-direction: column;
  }
  #footer .footer_btn_contact {
    font-size: 0.8125rem;
    padding: 0.5rem 1.125rem;
    max-width: 18.75rem;
    height: 3.75rem;
  }
  #footer .footer_btn_contact::before {
    font-size: 1.6923em;
  }
  #footer .footer_btn_contact::after {
    width: 2em;
  }
  #footer .footer_nav_sub {
    flex-direction: column;
    gap: 1.5rem;
  }
  #footer .footer_nav_sub_menu {
    font-size: 0.625rem;
    gap: 2em;
  }
  #footer .footer_copyrights {
    font-size: 0.5625rem;
    margin-top: 3rem;
  }
}

#footer_simple {
  color: #fff;
  background-color: #000;
  text-align: center;
  padding: 9.625rem 0 1.625rem;
}
#footer_simple .logo {
  margin-bottom: 10rem;
}
#footer_simple .logo img {
  display: inline-block;
  vertical-align: middle;
}
#footer_simple .copyright {
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  #footer_simple {
    padding: 5rem 0 1.25rem;
  }
  #footer_simple .logo {
    margin-bottom: 5rem;
  }
}

/*==========
コピーライト
==========*/
/*==========
PageToTop
==========*/
/*==========
float_banner
==========*/
#float_banner {
  position: fixed;
  bottom: var(--paddingLR);
  right: var(--paddingLR);
  max-width: 19.375rem;
  z-index: 90;
  transition: transform 0.5s;
}
#float_banner .close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 20;
}
#float_banner.is-hide {
  transform: translateX(calc(100% + var(--paddingLR)));
}
@media screen and (max-width: 768px) {
  #float_banner {
    max-width: 11.5rem;
  }
  #float_banner .close {
    width: 1rem;
    right: -1rem;
  }
}