@charset "UTF-8";
/* ==========================================
Root
========================================== */
:root {
  --color_base: #000;
  --color_accent: #003caa;
  --font-feature-settings: "palt";
  --letter_spacing: 0.05em;
  --font_weight_base: 500;
  --noto_sans: "Noto Sans JP", sans-serif;
  --noto_serif: "Noto Serif JP", serif;
  --eb_garamond: "EB Garamond", serif;
  --focus_border: #ff9800;
  --input_bg: #fff;
  --placeholder_color: #e0dada;
  --scrollbar-width: 0px;
  --header_height: 80px;
  --leading_trim: calc((1em - 1lh) / 2);
}

@media screen and (max-width: 768px) {
  :root {
    --header_height: 45px;
  }
}
@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}
/* ==========================================
Additional Reset
========================================== */
:where(*, *::before, *::after) {
  font-feature-settings: var(--font-feature-settings);
  letter-spacing: var(--letter_spacing);
}

:focus-visible {
  outline: 2px solid var(--focus_border);
  box-shadow: 0 0 0 2px #fff;
}

:where(a) {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2ex;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(h1, h2, h3, h4, h5, h6) {
  font-weight: var(--font_weight_base);
}

:where(ul, ol) {
  list-style: none;
}

:where(button) {
  box-sizing: border-box;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(th) {
  font-weight: inherit;
}

:where(address) {
  font-style: normal;
}

:where(iframe) {
  border-width: 0;
}

:where(summary) {
  display: block;
  cursor: pointer;
  list-style: none;
}

:where(fieldset) {
  border: none;
}

:where(select) {
  color: var(--base_color);
  border-radius: 0;
}

summary::-webkit-details-marker {
  display: none;
}

[hidden]:not([hidden=until-found]) {
  display: none !important;
}

/* =========================================
Fonts / Noto Serif JP サブセット
========================================= */
@font-face {
  font-family: "Noto Serif JP";
  src: url("../../fonts/NotoSerifJP-Medium.subset.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* ==========================================
bese
========================================== */
html {
  overflow-y: scroll;
}

body {
  font-family: var(--noto_sans);
  font-weight: var(--font_weight_base);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color_base);
  background-color: #fff;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  img {
    width: 100%;
    height: auto;
  }
}
/* ==========================================
mousedeive / touchdevice
========================================== */
/* hoverデバイス ----------- */
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
/* ==========================================
layout
========================================== */
.ly_wrapper {
  min-width: 1200px;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .ly_wrapper {
    min-width: 320px;
  }
}
/* ==========================================
header
========================================== */
.ly_header {
  height: var(--header_height);
}

.header_inner {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header_height);
  z-index: 100;
  background-color: #fff;
  height: var(--header_height);
}

.is_scroll .header_inner,
.is_modal_open .header_inner {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.header_column {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 49px;
  padding-top: 15px;
}
.header_column a {
  display: block;
}

.header_title {
  display: grid;
  order: 1;
  place-content: center;
  width: 140px;
  height: 42px;
  transform: translateY(2px);
  background-color: #b51b22;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.visually_hidden {
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.header_logo_ja {
  transform: translateY(9px);
  margin: 0 19px;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .header_column {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 15px;
    padding-top: 8px;
  }
  .header_title {
    width: 90px;
    height: 27px;
    transform: translateY(1px);
    font-size: 0.625rem;
  }
  .header_logo_en {
    width: 78px;
  }
  .header_logo_ja {
    width: 62px;
    transform: translateY(5px);
    margin: 0 9px 0 11px;
  }
}
/* ==========================================
humberger
========================================== */
.humberger {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-image: url(../../img/common/btn_hamburger_menu.svg);
  background-color: var(--color_accent);
  transition: background-color 0.2s;
}

button.humberger:focus {
  outline: none;
}

.is_tabbing button.humberger:focus {
  outline-offset: -2px;
  outline: 2px solid var(--focus_border);
}

.humberger_line:before,
.humberger_line:after {
  content: "";
  display: block;
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  width: 50px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  transition: transform 0.4s;
}

.humberger_line:before {
  transform: translateY(-6px);
}

.humberger_line:after {
  transform: translateY(6px);
}

/* 閉じるハンバーガーメニュー */
.humberger.__close {
  z-index: 110;
}

.is_menu_open .humberger {
  background-image: url(../../img/common/btn_hamburger_close.svg);
}
.is_menu_open .humberger_line {
  width: 54px;
}
.is_menu_open .humberger_line::before {
  transform: rotate(22deg);
}
.is_menu_open .humberger_line::after {
  transform: rotate(-22deg);
}

/* hover ----------- */
@media (any-hover: hover) {
  .humberger {
    transition: background-color 0.1s;
  }
  .humberger:hover {
    background-color: #667ac4;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .humberger {
    width: 45px;
    height: 45px;
  }
  .humberger_line:before,
  .humberger_line:after {
    top: 30px;
    width: 28px;
    height: 1px;
  }
  .humberger_line:before {
    transform: translateY(-4px);
  }
  .humberger_line:after {
    transform: translateY(4px);
  }
  /* 閉じるハンバーガーメニュー */
  .is_menu_open .humberger {
    background-image: url(../../img/common/btn_hamburger_close.svg);
  }
  .is_menu_open .humberger_line {
    width: 20px;
  }
  .is_menu_open .humberger_line::before {
    transform: rotate(22deg);
  }
  .is_menu_open .humberger_line::after {
    transform: rotate(-22deg);
  }
}
/* =========================================
コンテンツのスクロールバーを表示
PCサイズ背景レイヤー
========================================= */
.header_menu_layer {
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.2s;
}

.is_menu_open .header_menu_layer,
.header_menu.is_hide .header_menu_layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  z-index: -1;
}

.header_menu.is_hide .header_menu_layer {
  background-color: rgba(0, 0, 0, 0);
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .is_menu_open .header_menu_layer {
    display: none;
  }
}
/* ==========================================
header_menu / モーダルメニューの枠組み
========================================== */
.header_menu,
.header_menu::backdrop {
  background-color: transparent;
  border: none;
}

.menu_inner {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  max-height: 100%;
  width: 400px;
  padding: 115px 50px 80px 60px;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.9);
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .header_menu {
    width: 100%;
    min-width: 320px;
  }
  .menu_inner {
    width: 100%;
    padding: 50px 20px 42px;
    background-color: rgb(255, 255, 255);
  }
}
/* アニメーション ---------------------------- */
.menu_inner {
  transform: translateX(100%);
}

.header_menu[open] .menu_inner {
  animation: menuSlideIn 0.3s forwards;
  transform: translateX(0);
}

.header_menu.is_hide .menu_inner {
  animation: menuSlideOut 0.3s forwards;
}

@keyframes menuSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes menuSlideOut {
  from {
    display: block;
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
/* =========================================
header_menu / モーダルメニューの中身
========================================= */
.nav_list li + li {
  border-top: 1px solid var(--color_accent);
}
.nav_list a {
  display: block;
  padding: 18px 10px;
  letter-spacing: 0.15em;
  color: var(--color_accent);
  font-size: 1.125rem;
  white-space: nowrap;
}
.nav_list .nav_link.__inquiry {
  display: grid;
  place-content: center;
  position: relative;
  width: 100%;
  height: 50px;
  margin-top: 55px;
  padding: 0 10px 2px 0;
  background-color: #c7002f;
  color: #fff;
  font-size: 1rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}
.nav_list .nav_link.__inquiry::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 31px;
  height: 21px;
  margin: auto;
  background: url(../../img/common/icon_arrow.svg) no-repeat 0 0/contain;
}

.nav_list a:not(.__inquiry):focus-visible {
  background-color: #d9e2f2;
  outline: none;
  box-shadow: 0 0 0 0 transparent;
}

/* hoverデバイス ----------- */
@media (any-hover: hover) {
  .nav_list a {
    transition: background-color 0.1s;
  }
  .nav_list a:hover {
    opacity: 1;
    background-color: #d9e2f2;
  }
  .nav_link.__inquiry:hover {
    background-color: #d5475a;
  }
}
/* =========================================
ly_footer
========================================= */
.ly_footer {
  border-top: 1px solid #b1b1b1;
}

.footer_logo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 20px 0 22px;
}

.footer_logo_en {
  margin-left: -10px;
}

.footer_logo_ja {
  margin-left: 20px;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .footer_logo {
    padding: 20px 0 22px;
  }
  .footer_logo_en {
    width: 139px;
    margin-left: -10px;
  }
  .footer_logo_ja {
    width: 111px;
    margin-left: 20px;
  }
}
/* =========================================
bl_footer_end
========================================= */
.bl_footer_end {
  background-color: #646464;
  color: #fff;
  padding: 2px 0;
}

.footer_copy {
  text-align: center;
}
.footer_copy small {
  font-size: 0.75rem;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .bl_footer_end {
    padding: 4px 0;
  }
}
/* ==========================================
Module / Block
========================================== */
/* =========================================
md_pagetop
========================================= */
.md_pagetop_link {
  --fixed-bottom: 50px;
  --abs-bottom: 95px;
  display: block;
  position: fixed;
  right: 50px;
  bottom: var(--fixed-bottom);
  width: 60px;
  height: 60px;
  border: 1px solid var(--color_accent);
  border-radius: 50%;
  aspect-ratio: 1;
  background: #fff url(../../img/common/btn_pagetop.svg) no-repeat 0 0/contain;
  transition: opacity 0.2s;
  z-index: 90;
  overflow: hidden;
  will-change: transform;
}
.md_pagetop_link.is_stop {
  position: absolute;
  bottom: var(--abs-bottom);
}

.md_pagetop_link span {
  display: block;
  width: 1px;
  height: 1px;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .md_pagetop_link {
    --fixed-bottom: 15px;
    --abs-bottom: 6px;
    right: 15px;
    bottom: 15px;
  }
}
/* =========================================
md_tel_link
========================================= */
.pg_tel_link {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
  cursor: default;
}

/* モバイルのみリンクを有効化 */
@media (hover: none) and (pointer: coarse) {
  .pg_tel_link {
    pointer-events: auto;
    text-decoration: underline;
    color: blue;
    cursor: pointer;
  }
}
/* =========================================
data-details
========================================= */
[data-details-body] {
  overflow: hidden;
}

/* =========================================
data-accordion
========================================= */
[data-accordion-body] {
  overflow: hidden;
}

/* =========================================
dialog / modal
========================================= */
.md_modal {
  top: 0;
  left: 0;
  width: 100%;
  max-width: initial;
  height: 100%;
  max-height: initial;
  margin: 0;
  padding: 50px;
  background: transparent;
  border: none;
  overflow: hidden;
}
.md_modal::backdrop {
  display: none;
}

.md_dmodal_layer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.md_modal.is_show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.md_modal_close {
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background: var(--color_accent);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  z-index: 10;
}
.md_modal_close::before, .md_modal_close::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 1px;
  height: 56px;
  margin: auto;
  transform: rotate(45deg);
  background-color: #fff;
}
.md_modal_close::after {
  transform: rotate(-45deg);
}
.md_modal_close:focus {
  outline: none;
  box-shadow: 0 0 0 0 transparent;
}
.md_modal_close span {
  display: none;
}

.is_tabbing .md_modal_close:focus {
  outline-offset: -2px;
  outline: 2px solid var(--focus_border);
  box-shadow: 0 0 0 2px #fff;
}

.md_modal_contents {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 1100px;
  background-color: #fff;
  overflow: auto;
}

.md_modal_layer,
.md_modal_contents {
  will-change: transform;
}

.is_modal_open .md_modal {
  z-index: 1000;
}

/* Safariのフォーカスリングの挙動を抑制 */
.is_tabbing .md_modal:focus {
  outline: none;
}

/* hoverデバイス ----------- */
@media (any-hover: hover) {
  .md_modal_close {
    transition: opacity 0.2s;
  }
  .md_modal_close:hover {
    opacity: 0.7;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .md_modal {
    padding: 15px;
  }
  .md_modal_close {
    width: 45px;
    height: 45px;
  }
  .md_modal_close::before, .md_modal_close::after {
    height: 35px;
  }
  .md_modal_contents {
    min-width: 290px;
  }
}
/* animation */
.md_modal_layer.is_show {
  animation: dialogFadeInUp 0.6s forwards;
}

.md_modal_layer.is_hide {
  animation: dialogFadeOutUp 0.6s forwards;
}

@keyframes dialogFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dialogFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes dialogFadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes dialogFadeOutUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-50px);
    opacity: 0;
  }
}
@keyframes dialogFadeRightIn {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes dialogFadeLeftOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-40px);
    opacity: 0;
  }
}
@keyframes dialogFadeLeftIn {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes dialogFadeRightOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(40px);
    opacity: 0;
  }
}
/* =========================================
Animation
========================================= */
/* fade */
.md_view.__fadeUp {
  opacity: 0;
  transform: translateY(60px);
}

.md_view.__fadeDown {
  opacity: 0;
  transform: translateY(-60px);
}

.md_view.__fadeLeft {
  opacity: 0;
  transform: translateX(-60px);
}

.md_view.__fadeRight {
  opacity: 0;
  transform: translateX(60px);
}

.md_view.is_view {
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translate(0, 0);
  will-change: opacity, transform;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .md_view.__fadeUp {
    transform: translateY(30px);
  }
  .md_view.__fadeDown {
    transform: translateY(-30px);
  }
  .md_view.__fadeLeft {
    transform: translateX(-30px);
  }
  .md_view.__fadeRight {
    transform: translateX(30px);
  }
  .md_view.is_view {
    transform: translate(0, 0);
  }
}
/* zoom */
.md_view.__zoomIn {
  opacity: 1;
  transform: scale(0.6);
}

.md_view.is_view.__zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transition: none;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}
/* ==========================================
helper
========================================== */
/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .sp_br,
  .sp_only {
    display: none !important;
  }
  .pc_none {
    display: none;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pc_br,
  .pc_only {
    display: none !important;
  }
  .sp_noSpace {
    display: none;
  }
  .sp_brNoSpace {
    display: block;
    text-indent: -1em;
  }
  .sp_nowrap {
    white-space: nowrap;
  }
  .sp_none {
    display: none;
  }
}
/* ==========================================
print
========================================== */
@page {
  size: A4 portrait;
  margin: 10mm;
}
@media print {
  body {
    position: relative;
    width: 1280px !important;
    page-break-after: always;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    zoom: 0.617;
  }
  .ly_wrapper {
    display: block;
    min-width: initial;
    min-height: initial;
  }
  .header_inner {
    position: static;
  }
  .md_modal_contents {
    top: 0;
    min-height: 100%;
    z-index: 10;
  }
}