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

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

/*==========　基本設定　==========*/
* {
  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-jp-variable", sans-serif;
  color: var(--colorFont);
  line-height: 1.5;
  width: 100%;
}

.body_wrap {
  overflow: hidden;
}

.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: var(--headerHeight);
  margin-top: calc(var(--headerHeight) * -1);
}

a:not([class]) {
  color: #04417E;
  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_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;
}

.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_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(120% 0, 120% 0, 100% 100%, 100% 100%);
          clip-path: polygon(120% 0, 120% 0, 100% 100%, 100% 100%);
}
.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;
}

.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 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: 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, 120% 0, 100% 100%, -20% 100%);
          clip-path: polygon(0 0, 120% 0, 100% 100%, -20% 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 0, 0 0, 0 100%, -20% 100%);
            clip-path: polygon(0 0, 0 0, 0 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_block {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, -20% 100%);
            clip-path: polygon(0 0, 0 0, 0 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_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(px(40));
  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(px(40));
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(px(40));
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fx_slideLeft {
  will-change: transform, opacity;
  transform: translateX(px(-40));
  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(px(-40));
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(px(-40));
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fx_slideRight {
  will-change: transform, opacity;
  transform: translateX(px(40));
  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(px(40));
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(px(40));
  }
  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: 7.5rem;
  --paddingSection: clamp(2.5rem, 6.25vw, 7.5rem);
  --paddingLR: 15px;
  --colorFont: #000;
  --colorMain: #283266;
  --colorSub: #CB333B;
}
@media screen and (max-width: 768px) {
  :root {
    --headerHeight: 4.6875rem;
    --paddingSection: 4rem;
  }
}

/*==========
utility
==========*/
.text {
  font-size: 0.9375rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

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

.js_tab-content {
  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 .btn_01::after {
  background-image: url("../img/common/icon_arrow_circle-white.svg");
}

/*========== 汎用オブジェクト ==========*/
/*==========
汎用デザイン
==========*/
/*==========
リスト
==========*/
/*==========
ボタン
==========*/
.btn_01 {
  font-family: "dm-sans";
  font-weight: 500;
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.25em;
  position: relative;
  z-index: 1;
}
.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;
}
.btn_01:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (min-width: 769px) {
  .btn_01::after {
    transition: transform 0.5s;
  }
  .btn_01:hover {
    opacity: 1;
  }
  .btn_01:hover::after {
    transform: scale(2);
  }
}
@media screen and (max-width: 768px) {
  .btn_01 {
    font-size: 0.8125rem;
  }
}

/*==========
タイトル
==========*/
.title_01 {
  color: var(--colorMain);
  font-weight: 700;
  line-height: 1;
  padding-top: 1em;
  position: relative;
}
.title_01::before {
  content: "";
  width: 2em;
  height: 4px;
  border-radius: 6.25rem;
  background: linear-gradient(90deg, var(--colorSub) 50%, var(--colorMain) 50%);
  position: absolute;
  top: 0;
  left: 0;
}
.title_01::after {
  content: attr(data-en);
  font-size: 3.75em;
  font-family: "oswald";
  font-weight: 400;
  display: block;
  line-height: 1;
  margin-top: 0.1em;
}
@media screen and (max-width: 768px) {
  .title_01 {
    font-size: 0.8125rem;
  }
  .title_01::before {
    height: 2px;
  }
  .title_01::after {
    font-size: 3.076924em;
  }
}

/*========== 汎用レイアウト ==========*/
/*==========
ヘッダー
==========*/
#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: 15.75rem;
}
#header .header_nav_wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
#header .header_nav_upper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5em;
}
#header .header_nav_lower {
  margin-top: 1rem;
}
#header .header_lang {
  cursor: pointer;
  font: inherit;
  background-color: transparent;
  padding: 0 0.5em;
  border: 2px solid var(--headerFontColor);
  border-radius: 6px;
  color: var(--headerFontColor);
}
#header .header_lang option {
  color: #000;
}
#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_favorite {
  text-decoration: underline;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.125em;
}
#header .header_favorite::before {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_favorite.svg") no-repeat;
  display: block;
  margin-top: 0.325em;
}
#header .header_store {
  text-decoration: underline;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.25em;
}
#header .header_store::before {
  content: "";
  width: 1.125em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_store.svg") no-repeat;
  display: block;
  margin-top: 0.325em;
}
#header .header_nav {
  font-weight: 500;
  display: flex;
}
#header .header_nav > * {
  display: flex;
}
#header .header_nav > *:not(:last-child)::after {
  content: "｜";
  margin: 0 1em;
}
#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: 11.4375rem;
  height: 5.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_favorite:before,
#header.bg .header_store:before {
    mix-blend-mode: difference;
  }
  #header.bg .header_btn_contact {
    --headerFontColor: var(--colorMain);
  }
  #header .header_megamenu_child {
    position: absolute;
    width: 100%;
    min-height: 60vh;
    min-height: 60lvh;
    max-height: calc(100vh - var(--headerHeight));
    max-height: calc(100lvh - var(--headerHeight));
    overflow-y: auto;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--colorFont);
    padding: 5rem 6.25%;
    box-shadow: 0 0 1.5625rem rgba(0, 0, 0, 0.08);
  }
  #header .header_megamenu_child:has(.header_megamenu_products_row-menu) {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  #header .header_megamenu {
    height: 100%;
    display: flex;
    gap: 5%;
  }
  #header .header_megamenu_col-title {
    width: 25%;
  }
  #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.svg") no-repeat;
    margin-top: 1em;
  }
  #header .header_megamenu_col-menu {
    flex: 1;
    min-height: 22.5rem;
    display: flex;
    gap: 1.5rem;
    padding-left: 3.125rem;
    border-left: 1px solid rgba(112, 112, 112, 0.2);
  }
  #header .header_megamenu_col-menu > * {
    flex: 1;
  }
  #header .header_megamenu_col-banner {
    max-width: 20.625rem;
  }
  #header .header_megamenu_menu {
    font-size: 0.9375rem;
    font-weight: 500;
  }
  #header .header_megamenu_menu > * {
    display: flex;
    gap: 0.25em;
  }
  #header .header_megamenu_menu > *::before {
    content: "-";
    flex-shrink: 0;
  }
  #header .header_megamenu_menu > *:not(:last-child) {
    margin-bottom: 1.5em;
  }
  #header .header_megamenu_banner {
    font-size: 0.9375rem;
  }
  #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: 5px;
    overflow: hidden;
  }
  #header .header_megamenu_banner p {
    margin-top: 0.5em;
    display: flex;
    align-items: flex-end;
    gap: 1em;
  }
  #header .header_megamenu_banner p::after {
    content: "";
    width: 0.625em;
    aspect-ratio: 1/1;
    background: center/contain url("../img/common/icon_arrow.svg") no-repeat;
    margin-bottom: 0.325em;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  #header .header_megamenu_banner a img {
    transition: transform 0.5s;
  }
  #header .header_megamenu_banner a:hover {
    opacity: 1;
  }
  #header .header_megamenu_banner a:hover img {
    transform: scale(1.05);
  }
}
@media screen and (min-width: 769px) {
  #header .header_megamenu_products_row-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 6.25%;
    padding-right: 6.25%;
  }
}
@media screen and (min-width: 769px) {
  #header .header_megamenu_products_search_wrap {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
  }
  #header .header_megamenu_products_search_wrap .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 3.5em;
    height: 100%;
    padding: 1em 0;
  }
  #header .header_megamenu_products_search_wrap .icon img {
    width: auto;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #header .header_megamenu_products_search_wrap button[type=submit] {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    width: 4em;
    height: 100%;
    background-color: #0E1646;
    color: #fff;
  }
  #header .header_megamenu_products_search_wrap input[type=text] {
    padding: 0.75rem 4.5em 0.75em 3.5em;
    font: inherit;
    color: inherit;
    background-color: #fff;
    border: none;
    outline: none;
  }
  #header .header_megamenu_products_search_wrap input[type=text]::-moz-placeholder {
    color: #D3D3D3;
  }
  #header .header_megamenu_products_search_wrap input[type=text]::placeholder {
    color: #D3D3D3;
  }
}
@media screen and (min-width: 769px) {
  #header .header_megamenu_products_category {
    display: flex;
    gap: 0.875rem;
    margin-top: 3.5rem;
    padding-left: 6.25%;
    padding-right: 6.25%;
  }
  #header .header_megamenu_products_category > * {
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.375rem;
    transition: background-color 0.5s, color 0.5s;
  }
  #header .header_megamenu_products_category > *.is-active {
    background-color: var(--colorMain);
    color: #fff;
  }
}
@media screen and (min-width: 769px) {
  #header .header_megamenu_products_row-menu {
    min-height: 15.3125rem;
    margin-top: 1rem;
    background-color: rgba(112, 112, 112, 0.09);
    padding-left: 6.25%;
    padding-right: 6.25%;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    display: flex;
    gap: 1.5rem;
  }
  #header .header_megamenu_products_row-menu > .js_tab-content {
    flex: 1;
  }
}
@media screen and (min-width: 769px) {
  #header .header_megamenu_products_col-type {
    width: 18%;
  }
}
@media screen and (min-width: 769px) {
  #header .header_megamenu_products_col-menu {
    flex: 1;
    display: flex;
    gap: 1rem;
  }
}
@media screen and (min-width: 769px) {
  #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);
  }
}
@media screen and (min-width: 769px) {
  #header .header_megamenu_products_menu-title {
    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;
  }
}
@media screen and (min-width: 769px) {
  #header .header_megamenu_products_menu {
    font-size: 0.875rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
    gap: 0.5rem 1rem;
  }
  #header .header_megamenu_products_menu > li:not(:has(a)),
#header .header_megamenu_products_menu a {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 2.5rem;
    border: 1px solid rgba(14, 22, 70, 0.38);
    padding: 0.125rem 1rem;
    border-radius: 2px;
    transition: background-color 0.5s, color 0.5s;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  #header .header_megamenu_products_menu > li:not(:has(a)):hover,
#header .header_megamenu_products_menu a:hover {
    opacity: 1;
    background-color: var(--colorMain);
    color: #fff;
  }
}
@media screen and (min-width: 769px) {
  #header .header_megamenu_products_type {
    font-weight: 700;
  }
  #header .header_megamenu_products_type > * {
    cursor: pointer;
    transition: transform 0.5s;
    transform-origin: left bottom;
  }
  #header .header_megamenu_products_type > *::before {
    content: "-";
    margin-right: 0.5em;
  }
  #header .header_megamenu_products_type > *:not(:last-child) {
    margin-bottom: 3rem;
  }
  #header .header_megamenu_products_type .is-active {
    transform: scale(1.375);
  }
}
@media screen and (min-width: 769px) {
  #header .header_megamenu_ir_category {
    font-weight: 500;
    color: var(--colorMain);
    display: flex;
    gap: 1.875em;
    padding-bottom: 3.125rem;
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    margin-bottom: 2rem;
  }
  #header .header_megamenu_ir_category > * {
    flex: 1;
    aspect-ratio: 248/75;
    max-height: 4.6875rem;
    padding: 0.5em 2em;
    transition: background-color 0.25s, color 0.25s;
  }
  #header .header_megamenu_ir_category > *.is-active {
    background-color: var(--colorMain);
    color: #fff;
  }
  #header .header_megamenu_ir_category a {
    width: calc(100% + 4em);
    height: calc(100% + 1em);
    padding: 0.5em 2em;
    margin: -0.5em -2em;
  }
  #header .header_megamenu_ir_category > *:not(:has(a)),
#header .header_megamenu_ir_category a {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    gap: 0.25em;
  }
  #header .header_megamenu_ir_category > *:not(:has(a))::before,
#header .header_megamenu_ir_category a::before {
    content: "-";
  }
}
@media screen and (min-width: 769px) {
  #header .header_megamenu_ir_menu {
    display: flex;
    gap: 3em;
  }
}
@media screen and (min-width: 769px) {
  #header .js_megamenu-btn {
    cursor: pointer;
    padding: 0.5em 1.5em 2em;
    margin: -0.5em -1.5em -2em;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  #header .js_megamenu-btn {
    transition: opacity 0.5s;
  }
  #header .js_megamenu-btn:hover {
    opacity: 0.5;
  }
}
@media screen and (min-width: 769px) {
  #header .js_megamenu-contents {
    display: none;
  }
}

/*==========
ハンバーガーメニュー
==========*/
@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;
    padding: 0.25em;
    border: 1px solid #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.875rem;
    opacity: 0.3;
  }
  #header .header_lang_sp > *.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 {
    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_col-banner {
    order: -1;
  }
  #header .js_megamenu-contents {
    display: none;
  }
  #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: 5px;
    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: 5px;
    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;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  #header .footer_btn_contact::after {
    transition: transform 0.5s;
  }
  #header .footer_btn_contact:hover {
    opacity: 0.75;
  }
  #header .footer_btn_contact:hover::after {
    transform: scale(1.5);
  }
}
@media screen and (max-width: 768px) {
  #header .footer_nav_sub_menu {
    font-size: 0.625rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #header .footer_nav_sub_sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #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;
  }
}
@media screen and (max-width: 768px) {
  #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 {
  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(100% - var(--paddingLR) * 2);
  max-width: 101rem;
  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 {
  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.625rem;
  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.9375rem;
}
#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.25rem;
  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;
  align-items: center;
  gap: 1.5rem;
}
#footer .footer_btn_contact {
  font-size: 0.9375rem;
  font-weight: 700;
  background-color: var(--colorMain);
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 5px;
  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::after {
    transition: transform 0.5s;
  }
  #footer .footer_btn_contact:hover {
    opacity: 0.75;
  }
  #footer .footer_btn_contact:hover::after {
    transform: scale(1.5);
  }
}
#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;
  }
}

/*==========
コピーライト
==========*/
/*==========
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;
  }
}