@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: 0px;
  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(0px 0px rgba(0, 0, 0, 0));
}

svg {
  height: auto;
}

/*==========　基本設定　==========*/
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
  line-height: 1.5;
  width: 100%;
}

.body_wrap {
  overflow: hidden;
  margin-top: var(--headerHeight);
}

.container {
  width: 100%;
  max-width: calc(1280px + 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(1000px + 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(960px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.anchor {
  padding-top: var(--headerHeight);
  margin-top: calc(var(--headerHeight) * -1);
}

a:not([class]) {
  color: #04417E;
  text-decoration: underline;
}

@media screen and (min-width: 960px) {
  a:not([class^=btn_]) {
    transition: opacity 0.5s;
  }
  a:not([class^=btn_]):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: 959px) {
  .fs_12 {
    font-size: 1rem;
  }
}

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

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

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

.fs_16 {
  font-size: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fs_40 {
  font-size: 2.5rem;
}
@media screen and (max-width: 959px) {
  .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: 959px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 959px) {
  .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: 8px;
}

.mt_16 {
  margin-top: 16px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_32 {
  margin-top: 32px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_56 {
  margin-top: 56px;
}
@media screen and (max-width: 959px) {
  .mt_56 {
    margin-top: 40px;
  }
}

.mt_64 {
  margin-top: 64px;
}
@media screen and (max-width: 959px) {
  .mt_64 {
    margin-top: 40px;
  }
}

.mt_80 {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .mt_80 {
    margin-top: 40px;
  }
}

.mt_120 {
  margin-top: 120px;
}
@media screen and (max-width: 959px) {
  .mt_120 {
    margin-top: 80px;
  }
}

.mt_160 {
  margin-top: 160px;
}
@media screen and (max-width: 959px) {
  .mt_160 {
    margin-top: 80px;
  }
}

.mb_1em {
  margin-bottom: 1em;
}

.mb_2em {
  margin-bottom: 2em;
}

.mb_08 {
  margin-bottom: 8px;
}

.mb_16 {
  margin-bottom: 16px;
}

.mb_24 {
  margin-bottom: 24px;
}

.mb_32 {
  margin-bottom: 32px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .mb_56 {
    margin-bottom: 40px;
  }
}

.mb_64 {
  margin-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .mb_64 {
    margin-bottom: 40px;
  }
}

.mb_80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .mb_80 {
    margin-bottom: 40px;
  }
}

.mb_120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .mb_120 {
    margin-bottom: 80px;
  }
}

.mb_160 {
  margin-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .mb_160 {
    margin-bottom: 80px;
  }
}

.pt_1em {
  padding-top: 1em;
}

.pt_2em {
  padding-top: 2em;
}

.pt_08 {
  padding-top: 8px;
}

.pt_16 {
  padding-top: 16px;
}

.pt_24 {
  padding-top: 24px;
}

.pt_32 {
  padding-top: 32px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_56 {
  padding-top: 56px;
}
@media screen and (max-width: 959px) {
  .pt_56 {
    padding-top: 40px;
  }
}

.pt_64 {
  padding-top: 64px;
}
@media screen and (max-width: 959px) {
  .pt_64 {
    padding-top: 40px;
  }
}

.pt_80 {
  padding-top: 80px;
}
@media screen and (max-width: 959px) {
  .pt_80 {
    padding-top: 40px;
  }
}

.pt_120 {
  padding-top: 120px;
}
@media screen and (max-width: 959px) {
  .pt_120 {
    padding-top: 80px;
  }
}

.pt_160 {
  padding-top: 160px;
}
@media screen and (max-width: 959px) {
  .pt_160 {
    padding-top: 80px;
  }
}

.pb_1em {
  padding-bottom: 1em;
}

.pb_2em {
  padding-bottom: 2em;
}

.pb_08 {
  padding-bottom: 8px;
}

.pb_16 {
  padding-bottom: 16px;
}

.pb_24 {
  padding-bottom: 24px;
}

.pb_32 {
  padding-bottom: 32px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pb_56 {
  padding-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .pb_56 {
    padding-bottom: 40px;
  }
}

.pb_64 {
  padding-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .pb_64 {
    padding-bottom: 40px;
  }
}

.pb_80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .pb_80 {
    padding-bottom: 40px;
  }
}

.pb_120 {
  padding-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .pb_120 {
    padding-bottom: 80px;
  }
}

.pb_160 {
  padding-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .pb_160 {
    padding-bottom: 80px;
  }
}

.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_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(40px);
  will-change: transform, 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_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

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

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

@keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*==========
Effect
==========*/
:root {
  --headerHeight: 100px;
  --paddingSection: 40px;
  --paddingLR: 20px;
  --color_main: #0053B0;
  --color_main_hover: #3B78B4;
  --color_sub: #E4F0FF;
  --color_green: #167E51;
  --color_green_hover: #229e69;
  --color_red: #CF000E;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 60px;
    --paddingSection: 24px;
  }
}

/*========== 汎用オブジェクト ==========*/
.text + .text {
  margin-top: 1rem;
}
@media screen and (max-width: 959px) {
  .text {
    font-size: 0.875rem;
  }
}

.text_red {
  color: var(--color_red);
}

.text_blue {
  color: var(--color_main);
}

/*==========
汎用デザイン
==========*/
.swiper-pagination-bullets {
  display: flex;
  max-width: -webkit-fit-content !important;
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
  justify-content: center;
}

.swiper-pagination-bullet {
  --swiper-pagination-bullet-width: 3.75rem;
  --swiper-pagination-bullet-height: 6px;
  --swiper-pagination-color: #0099FF;
  --swiper-pagination-bullet-inactive-color: #0099FF;
  --swiper-pagination-bullet-inactive-opacity: 0.6;
  border-radius: 0 !important;
}
@media screen and (max-width: 959px) {
  .swiper-pagination-bullet {
    --swiper-pagination-bullet-width: 2.5rem;
    --swiper-pagination-bullet-height: 4px;
  }
}

.swiper-pause {
  flex-shrink: 0;
  cursor: pointer;
}
.swiper-pause.pause .icon_play {
  display: none;
}
.swiper-pause.play .icon_pause {
  display: none;
}
@media screen and (max-width: 959px) {
  .swiper-pause {
    max-width: 48px;
  }
}

.layout_category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
  font-size: 0.8125rem;
  font-weight: 500;
}
.layout_category > * {
  background-color: var(--color_main);
  color: #fff;
  padding: 0.125em 0.5em;
}

.layout_news a {
  color: inherit;
  text-decoration: none;
}
.layout_news a .title {
  color: var(--color_main);
  text-decoration: underline;
}
.layout_news > * {
  border-bottom: 1px dashed #BCBCBC;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.layout_news .row_date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.625rem;
  margin-bottom: 0.625rem;
}
.layout_news time {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.125em;
}
.layout_news .icon_new {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--color_red);
  margin-top: 0.125em;
}
.layout_news .title {
  font-weight: 700;
}
.layout_news .row_text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}
.layout_news .row_text p + p {
  margin-top: 0.5rem;
}
@media screen and (max-width: 959px) {
  .layout_news time {
    width: 100%;
  }
  .layout_news .icon_new {
    font-size: 0.875rem;
  }
  .layout_news > * {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}

.layout_products:not(.swiper) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.layout_products a {
  color: inherit;
  text-decoration: none;
}
.layout_products a .text_area {
  padding-right: 3rem;
  position: relative;
}
.layout_products a .text_area::after {
  content: "";
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: center/1rem url("../img/common/icon_arrow-white.svg") no-repeat var(--color_main);
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 960px) {
  .layout_products a .thumb_area {
    overflow: hidden;
  }
  .layout_products a .thumb_area img {
    transition: transform 0.5s;
  }
  .layout_products a:hover img {
    transform: scale(1.05);
  }
}
.layout_products .item {
  background-color: #fff;
  border: 1px solid #0053B0;
}
.layout_products .item:not(:has(a)),
.layout_products .item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.layout_products .thumb_area {
  position: relative;
  aspect-ratio: 400/220;
  overflow: hidden;
}
.layout_products .thumb_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_products .thumb_area .label {
  position: absolute;
  top: 0.625rem;
}
.layout_products .thumb_area .category {
  background-color: var(--color_main);
  color: #fff;
  padding: 4px 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  min-width: 105px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.layout_products .text_area {
  padding: 1rem 1.25rem;
  flex: 1;
}
.layout_products .text_area .title {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .layout_products a .text_area {
    padding-right: 2.25rem;
  }
  .layout_products a .text_area::after {
    width: 2rem;
    background-size: 0.875rem;
  }
  .layout_products .thumb_area .category {
    font-size: 0.8125rem;
  }
  .layout_products .text_area {
    padding: 0.625rem;
  }
  .layout_products .text_area .title {
    font-size: 1rem;
  }
}

/*==========
リスト
==========*/
.list_dots > * {
  position: relative;
  padding-left: 1em;
}
.list_dots > *::before {
  content: "・";
  position: absolute;
  left: 0;
}

.list_square > * {
  position: relative;
  padding-left: 1em;
}
.list_square > *::before {
  content: "";
  width: 0.625em;
  aspect-ratio: 1/1;
  background-color: var(--color_main);
  position: absolute;
  margin-top: 0.5em;
  left: 0;
}
.list_square > *:not(:last-child) {
  margin-bottom: 0.5em;
}

.dl_01 {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 0 1em;
}
.dl_01 dt {
  padding-right: 1em;
}
@media screen and (max-width: 959px) {
  .dl_01 {
    grid-template-columns: 1fr;
  }
  .dl_01 dt:not(:first-child) {
    margin-top: 0.5em;
  }
  .dl_01 dd {
    margin-left: 1em;
  }
}

.table_01 {
  width: 100%;
}
.table_01 th,
.table_01 td {
  padding: 1rem 1.25rem;
}
.table_01 tr {
  border-bottom: 1px solid #CDD6DD;
}
.table_01 tr:first-child {
  border-top: 1px solid #CDD6DD;
}
.table_01 th {
  background-color: #F0F3F5;
  color: var(--color_main);
  font-weight: 500;
  text-align: left;
  width: 30%;
}
@media screen and (max-width: 959px) {
  .table_01 {
    font-size: 0.875rem;
  }
  .table_01 th,
.table_01 td {
    padding: 0.5rem 0.75rem;
  }
}

/*==========
ボタン
==========*/
.btn_01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  padding: 1.25rem;
  width: 364px;
  max-width: 100%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 64px;
  background-color: var(--color_main);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}
.btn_01::after {
  content: "";
  width: 0.88889em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
}
.btn_01.green {
  background-color: var(--color_green);
}
@media screen and (min-width: 960px) {
  .btn_01 {
    transition: background-color 0.5s;
  }
  .btn_01:hover {
    background-color: var(--color_main_hover);
  }
  .btn_01:hover.green {
    background-color: var(--color_green_hover);
  }
}
@media screen and (max-width: 959px) {
  .btn_01 {
    min-width: auto;
    font-size: 0.875rem;
    height: 56px;
  }
}

.btn_02 {
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn_02::after {
  content: "";
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: center/1rem url("../img/common/icon_arrow-white.svg") no-repeat var(--color_main);
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  .btn_02::after {
    transition: transform 0.5s;
  }
  .btn_02:hover::after {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 959px) {
  .btn_02 {
    font-size: 0.875rem;
  }
  .btn_02::after {
    width: 2rem;
    background-size: 0.875rem;
  }
}

.btn_map {
  background-color: var(--color_main);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.25em 1em;
}
@media screen and (max-width: 959px) {
  .btn_map {
    font-size: 0.75rem;
  }
}

.btn_search {
  background-color: var(--color_main);
  border: 2px solid var(--color_main);
  color: #fff;
  border-radius: 5px;
  font-size: 1.125rem;
  font-weight: 700;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.125em 1.75em;
  cursor: pointer;
}
.btn_search::after {
  content: "";
  width: 1.25em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_search.svg") no-repeat;
  display: block;
  margin-bottom: -0.125em;
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  .btn_search {
    transition: background-color 0.5s;
  }
  .btn_search:hover {
    background-color: var(--color_main_hover);
  }
}

/*========== 汎用レイアウト ==========*/
/*==========
ヘッダー
==========*/
#header {
  background-color: #fff;
  width: 100%;
  height: var(--headerHeight);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
#header .container {
  height: 100%;
}
#header .flex {
  max-width: calc(100% + 50vw - 50%);
  margin-right: calc(50% - 50vw);
  display: flex;
  justify-content: space-between;
  height: 100%;
}
#header .logo_area {
  display: flex;
  align-items: center;
  flex: 1;
}
#header .left {
  display: flex;
  flex-direction: column;
}
#header .menu_area {
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
}
#header .upper {
  padding: 1rem 0;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#header .lower {
  margin-top: auto;
  margin-bottom: 0.5rem;
}
#header .btn_header_contact {
  width: 160px;
  height: 100%;
  aspect-ratio: 160/100;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color_main);
  color: #fff;
  font-weight: 500;
}
#header .btn_header_contact::before {
  content: "";
  width: 1.25em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_contact.svg") no-repeat;
  display: block;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 960px) {
  #header .btn_header_contact {
    transition: background-color 0.5s;
  }
  #header .btn_header_contact:hover {
    background-color: var(--color_main_hover);
  }
}
@media screen and (max-width: 1079px) {
  #header .menu_area {
    gap: 1rem;
  }
}

.list_header {
  display: flex;
  gap: 1.5em;
  font-weight: 700;
  color: var(--color_main);
}
.list_header > * {
  position: relative;
}
.list_header .parent,
.list_header a {
  color: inherit;
  text-decoration: none;
  padding: 0.25em 0.5em;
  display: block;
}
@media screen and (min-width: 960px) {
  .list_header > *:has(.child) {
    padding-bottom: 1rem;
    margin-bottom: -1rem;
  }
  .list_header .child {
    display: none;
    position: absolute;
    bottom: 0.5rem;
    transform: translateY(100%);
    background-color: var(--color_main);
    color: #fff;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
    padding: 1.25rem 2.5rem;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    white-space: nowrap;
  }
  .list_header .child .list {
    font-weight: 500;
  }
  .list_header .child .list .parentpage {
    border-bottom: 1px dashed #fff;
    padding: 0.5rem 0;
    min-width: 160px;
  }
  .list_header .child .list .parentpage:first-child {
    padding-top: 0;
  }
  .list_header .child .list .parentpage:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .list_header .child .list .parentpage + .childpage {
    margin-top: 0.5em;
  }
  .list_header .child .list .childpage {
    padding-left: 1em;
  }
  .list_header .child .list .childpage + .parentpage {
    border-top: 1px dashed #fff;
    margin-top: 0.5em;
  }
  .list_header a {
    position: relative;
  }
  .list_header a::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--color_main);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.5s;
  }
  .list_header a:hover::after {
    width: 2em;
  }
}

.list_header_02 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.list_header_02 > * {
  width: 50%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #fff;
  margin-right: -1px;
  margin-bottom: -1px;
}
.list_header_02 a {
  color: inherit;
  text-decoration: none;
}

.layout_language {
  display: flex;
  background-color: var(--color_main);
  border-radius: 100px;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.125rem 1rem;
}
.layout_language a {
  color: inherit;
  text-decoration: none;
}
.layout_language .label {
  margin-right: 1em;
}
.layout_language a.active {
  text-decoration: underline;
  pointer-events: none;
}

/*==========
ハンバーガーメニュー
==========*/
#hamburger_btn,
#hamburger_bg {
  display: none;
}

@media screen and (max-width: 959px) {
  #header {
    /*==========
    ハンバーガーメニュー
    ==========*/
    /*== ボタン ==*/
    /*== エリア外 ==*/
    /*== オープン ==*/
  }
  #header .logo_area {
    max-width: 156px;
  }
  #header .menu_area {
    overflow: scroll;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    position: absolute;
    width: 100%;
    height: calc(100lvh - var(--headerHeight));
    z-index: 99;
    top: var(--headerHeight);
    left: 0;
    background-color: #073F92;
    color: #fff;
    padding: var(--paddingSection) calc(var(--paddingLR) * 1.5);
    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% 50%, 100% 50%, 100% 50%, 0% 50%);
            clip-path: polygon(0% 50%, 100% 50%, 100% 50%, 0% 50%);
  }
  #header .left,
#header .right {
    display: contents;
  }
  #header .list_header {
    color: #fff;
    flex-direction: column;
    gap: 0;
  }
  #header .list_header > * {
    border-bottom: 1px dashed #fff;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  #header .list_header > *:has(.child) .parent::after, #header .list_header > *:has(.child) > a::after {
    transform: translateY(-50%) rotate(90deg);
  }
  #header .list_header .parent,
#header .list_header a {
    padding-right: 1rem;
    position: relative;
  }
  #header .list_header .parent::after,
#header .list_header a::after {
    content: "";
    width: 0.625em;
    aspect-ratio: 1/1;
    background: center/contain url("../img/common/icon_list_header.svg") no-repeat;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.5s;
  }
  #header .list_header .parent.open::after,
#header .list_header a.open::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  #header .list_header .child {
    display: none;
    margin-top: 0.625rem;
    margin-left: 0.625rem;
  }
  #header .list_header .child a {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    border-bottom: none;
  }
  #header .list_header .child .childpage a {
    padding-top: 0.25em;
    margin-left: 1em;
    padding-left: 1em;
    position: relative;
  }
  #header .list_header .child .childpage a::before {
    content: "-";
    position: absolute;
    left: 0;
  }
  #header .layout_language {
    background-color: #fff;
    color: var(--color_main);
  }
  #header .upper {
    order: 2;
    padding: 0;
  }
  #header .lower {
    margin: 0;
  }
  #header .btn_header_contact {
    display: none;
  }
  #header #hamburger_btn {
    margin-right: var(--paddingLR);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  #header #hamburger_btn .bar {
    width: 30px;
    height: 17px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  #header #hamburger_btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color_main);
    transition: all 0.5s;
  }
  #header #hamburger_bg {
    display: block;
    width: 0;
    height: 0;
    background-color: rgb(204, 204, 204);
    opacity: 0;
    position: fixed;
    top: var(--headerHeight);
    left: 0;
    z-index: -1;
    transition: opacity 0.5s;
  }
  #header.open .menu_area {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  #header.open #hamburger_btn .bar {
    align-items: center;
    justify-content: center;
  }
  #header.open #hamburger_btn span {
    margin-bottom: 0;
  }
  #header.open #hamburger_btn span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-bottom: -1px;
  }
  #header.open #hamburger_btn span:nth-of-type(2) {
    display: none;
  }
  #header.open #hamburger_btn span:nth-of-type(3) {
    transform: rotate(-45deg);
    margin-top: -1px;
  }
  #header.open #hamburger_bg {
    width: 100vw;
    height: calc(100vh - var(--headerHeight));
    height: calc(100dvh - var(--headerHeight));
    opacity: 0.5;
  }
}
/*==========
フッター
==========*/
#footer {
  background-color: #F0F3F5;
}
#footer .flex {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
#footer .company {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 1.5rem;
}
#footer .address {
  font-weight: 500;
  margin-top: 1rem;
}
#footer .upper {
  margin-bottom: 2.5rem;
}
#footer .upper .layout_language {
  margin-left: auto;
}
#footer .middle {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 3.5rem;
}
#footer .lower {
  margin-top: 2.5rem;
  border-top: 1px solid #E4E4E4;
  padding-top: 1rem;
}
#footer .row_copyright {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  background-color: var(--color_main);
  color: #fff;
  padding: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 959px) {
  #footer .flex {
    flex-direction: column;
  }
  #footer .logo {
    max-width: 156px;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .company_area {
    text-align: center;
  }
  #footer .company {
    font-size: 1rem;
  }
  #footer .address {
    font-size: 0.875rem;
  }
  #footer .menu_area {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
  }
  #footer .upper {
    margin-top: 1rem;
    margin-bottom: 0;
  }
  #footer .middle {
    gap: 0;
    flex-direction: column;
    order: -1;
  }
  #footer .row_copyright {
    font-size: 0.75rem;
    padding: 1rem;
  }
}

.list_footer {
  border-left: 1px solid var(--color_main);
  padding-left: 0.625rem;
}
.list_footer a {
  color: inherit;
  text-decoration: none;
}
.list_footer .parent {
  font-weight: 700;
  color: var(--color_main);
}
.list_footer .parent:not(:last-child) {
  margin-bottom: 0.625rem;
}
.list_footer .child {
  padding-left: 0.625rem;
  font-weight: 500;
}
.list_footer .child:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 959px) {
  .list_footer + .list_footer {
    padding-top: 0.75em;
  }
}

.list_footer_02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.list_footer_02 a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.list_footer_02 a::before {
  content: "";
  width: 0.75em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_list_footer_02.svg") no-repeat;
  display: block;
  flex-shrink: 0;
}
@media screen and (max-width: 959px) {
  .list_footer_02 {
    gap: 0.75rem 1rem;
  }
}

/*==========
コピーライト
==========*/
/*==========
PageToTop
==========*/
#pageTop {
  width: 4rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_pagetop.svg") no-repeat;
  position: fixed;
  right: 0;
  bottom: 0;
  margin: var(--paddingLR);
  z-index: 90;
  cursor: pointer;
  transform: translateY(calc(100% + var(--paddingLR)));
  transition: transform 0.5s;
}
#pageTop.view {
  transform: translateY(0);
}
@media screen and (max-width: 959px) {
  #pageTop {
    width: 2.5rem;
  }
}