@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
:root {
  --Brand-color-Primary: #109CF3;
  --Object-Primary: #222426;
  --Object-Primary-Reverse: #FFFFFF;
  --Object-Secondary: #364569;
  --Object-Tertiary: #8BCAF2;
  --Object-Disabled: #979797;
  --Object-Disabled-on-Quaternary: #808080;
  --Object-Attention: #D81833;
  --Background-Primary: #FAFAFA;
  --Background-Primary-Base: #FAFAFA;
  --Background-Secondary: #FFFFFF;
  --Background-Tertiary: #EDF2F6;
  --Background-Quaternary: #EEF0F3;
  --Background-Modal: rgba(54, 55, 59, 0.75);
  --Background-Attention: #FFEAEE;
  --Line-Primary: #E6E6E6;
  --Line-Secondary: #C7CAD1;
  --Line-Tertiary: #EDF2F6;
  --Line-Primary-Reverse: #FFFFFF;
  --Line-Icon-Primary: #36373B;
  --Line-Disabled: #D8D8D8;
  --Line-Attention: #D81833;
  --btn-gradient: linear-gradient(155deg, #109CF3 0%, #68B0FF 65%, #8FCAFF 85%, #AFE0FF 100%);
  --Heading-H1: 26px;
  --Heading-H2: 23px;
  --Heading-H3: 20px;
  --Heading-H4: 18px;
  --Heading-H5: 16px;
  --Heading-H6: 15px;
  --Heading-H1-SubTitle: 14px;
  --body-medium-base: 15px;
  --Body-Small: 14px;
  --Body-X-Small: 13px;
  --Caption-X-Small: 13px;
  --Label-Medium: 15px;
  --Label-Small: 14px;
  --Label-X-Small: 13px;
  --Label-XX-Small: 13px;
  --navigation-medium-base: 15px;
  --Navigation-Small: 14px;
  --Navigation-X-Small: 13px;
  --Padding-Unique-XXX-Large:120px;
  --Padding-Unique-X-Large:48px;
  --Padding-Unique-XX-Large:60px;
  --Padding-Unique-Large:32px;
  --Padding-Unique-Medium:24px;
  --Padding-Unique-Small:16px;
  --Padding-Unique-X-Small:8px;
  --Padding-Unique-XX-Small:4px;
  --Padding-Card-Small:16px;
  --padding-layout-side-padding-products:16px;
  --padding-layout-side-padding-base:16px;
  --Padding-Layout-SectionInnermedium:32px;
  --Padding-Layout-SectionInnerlarge:80px;
  --Padding-Button-Label-XX-Small:4px;
  --Padding-Button-Label-Small:16px;
  --Padding-Button-Label-Medium:24px;
  --Padding-Button-Label-Large:32px;
  --Padding-Button-Label-X-Large:48px;
  --padding-button-label-small-adjustment:12px;
  --Padding-Card-Medium:24px;
  --Padding-Card-Small:16px;
  --H-Gap-X-Large:48px;
  --Corner-Radius-Circle:100vmax;
}
@media screen and (min-width: 768px), print {
  :root {
    --Heading-H1: 35px;
    --Heading-H2: 29px;
    --Heading-H3: 25px;
    --Heading-H4: 21px;
    --Heading-H5: 19px;
    --Heading-H6: 18px;
    --Heading-H1-SubTitle: 18px;
    --body-medium-base: 18px;
    --Body-Small: 17px;
    --Body-X-Small: 16px;
    --Caption-X-Small: 15px;
    --Label-Medium: 18px;
    --Label-Small: 17px;
    --Label-X-Small: 16px;
    --Label-XX-Small: 15px;
    --navigation-medium-base: 18px;
    --Navigation-Small: 17px;
    --Navigation-X-Small: 15px;
    --padding-layout-side-padding-products:96px;
    --Padding-Layout-SectionInnerlarge:80px;
    --Padding-Layout-SectionInnermedium:60px;
  }
}

html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: var(--body-medium-base);
  font-weight: 400;
  font-style: normal;
  color: var(--Object-Primary);
  background-color: var(--Background-Primary);
}

body {
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
body.wrap {
  overflow: hidden;
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--Background-Modal, rgba(54, 55, 59, 0.75));
  z-index: 200;
}
@media screen and (min-width: 768px), print {
  #screen {
    z-index: 999;
  }
}

/* アクセシビリティ */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px), print {
  a:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none;
  }
}

.container {
  width: 100%;
  max-width: 1288px;
  padding: 0 16px;
  margin: 0 auto;
  position: relative;
}

.pc {
  display: none;
}
@media screen and (min-width: 768px), print {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 768px), print {
  .sp {
    display: none;
  }
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: visible;
  background: var(--Background-Primary);
}
header .container {
  padding: 0;
}
@media screen and (min-width: 768px), print {
  header .container {
    padding: 0 16px;
    max-width: 1344px;
  }
}
header a:hover {
  color: var(--Brand-color-Primary);
  text-decoration: underline;
  opacity: 1;
}
header .header_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  height: 64px;
  background: var(--Background-Primary);
  padding: var(--Padding-Unique-Small);
  position: relative;
}
@media screen and (min-width: 768px), print {
  header .header_inner {
    background: transparent;
    padding: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: var(--Padding-Unique-Small);
    padding: var(--Padding-Unique-Large) 0 var(--Padding-Unique-Small);
    height: auto;
  }
}
header .header_logo #site_title {
  max-width: 145px;
}
@media screen and (min-width: 768px), print {
  header .header_logo #site_title {
    max-width: 229px;
  }
}
header .header_nav_pc {
  display: none;
}
@media screen and (min-width: 768px), print {
  header .header_nav_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 16px;
    width: 100%;
  }
}
header .header_top_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
}
header .header_top_menu_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
header .header_top_menu_item {
  font-size: var(--Navigation-X-Small);
  font-weight: 500;
}
header .header_link_external {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
header .header_link_external::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("../img/icon_arrow_outward.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: invert(19%) sepia(6%) saturate(508%) hue-rotate(191deg) brightness(98%) contrast(90%);
          filter: invert(19%) sepia(6%) saturate(508%) hue-rotate(191deg) brightness(98%) contrast(90%);
}
header .header_lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
header .header_lang_item {
  font-weight: 500;
  font-size: var(--Navigation-X-Small);
  color: var(--Object-Primary);
  text-decoration: none;
}
header .header_lang_item:not(:last-child)::after {
  content: "／";
  margin-left: 2px;
  color: var(--Object-Disabled);
}
header #header_search_btn {
  cursor: pointer;
}
header .header_search {
  background-color: var(--Background-Secondary);
  border-radius: 100vmax;
  border: 1px solid var(--Line-Primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--Navigation-X-Small);
  font-weight: 500;
  padding: 8px;
}
header .header_search img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
header .header_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
  position: relative;
  max-width: 296px;
  width: 100%;
  border-left: 1px solid var(--Line-Primary);
}
header .header_contact_btn {
  width: 132px;
  padding: 6px 8px 8px 8px;
  background: var(--Brand-color-Primary);
  border: 1px solid var(--Brand-color-Primary);
  border-radius: 100vmax;
  font-size: var(--navigation-medium-base);
  line-height: 1em;
  color: var(--Object-Primary-Reverse);
  text-align: center;
  display: block;
  cursor: pointer;
}
header .header_contact_btn:hover {
  color: var(--Brand-color-Primary);
  background: var(--Object-Primary-Reverse);
  text-decoration: none;
  opacity: 1;
}
header .header_contact_btn.header_contact_btn_catalog {
  background: var(--Object-Primary-Reverse);
  color: var(--Brand-color-Primary);
}
header .header_contact_btn.header_contact_btn_catalog .header_contact_btn_catalog_list {
  display: none;
  padding-top: 5px;
}
header .header_contact_btn.header_contact_btn_catalog:hover {
  position: absolute;
  width: 162px;
  top: 0;
  right: 123px;
  z-index: 10;
  border-radius: 20px;
}
header .header_contact_btn.header_contact_btn_catalog:hover .header_contact_btn_catalog_list {
  display: block;
}
header .header_contact_btn.header_contact_btn_catalog .header_contact_btn_catalog_item {
  color: var(--Object-Primary);
  font-size: var(--Navigation-X-Small);
  font-weight: 500;
  padding: 5px 0;
}
header .header_contact_btn.header_contact_btn_catalog .header_contact_btn_catalog_item a {
  position: relative;
}
header .header_contact_btn.header_contact_btn_catalog .header_contact_btn_catalog_item a::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../img/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
          filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
}
header .header_main_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 24px;
  width: 100%;
}
header .header_main_menu_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
header .header_menu_item {
  position: relative;
}
header .header_menu_item_dropdown:hover .header_menu_arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header .header_menu_item:hover .header_menu_link {
  color: var(--Brand-color-Primary);
  text-decoration: underline;
}
header .header_menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 400;
  font-size: var(--navigation-medium-base);
  line-height: 1em;
  letter-spacing: 0.02em;
  color: var(--Object-Primary);
}
header .header_menu_item_dropdown .header_menu_link::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../img/icon_arrow_gnav.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
header .header_menu_item_dropdown:hover .header_menu_link::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header .header_mega_menu {
  display: none;
  position: fixed;
  top: 100%;
  left: 0;
  width: 100vw;
  background: var(--Background-Primary);
  border-top: 1px solid var(--Line-Primary);
  padding: 40px 64px;
  z-index: 1000;
  pointer-events: none;
}
header .header_mega_menu.is_visible {
  pointer-events: auto;
}
header .header_mega_menu.is_visible::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}
header .header_mega_menu_inner {
  max-width: 1288px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6%;
}
header .header_mega_menu_col_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 229px;
  border-right: 1px solid var(--Line-Primary);
  padding: var(--Padding-Unique-X-Small);
}
header .header_mega_menu_col a.header_mega_menu_title {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
header .header_mega_menu_cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--Padding-Unique-Large);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header .header_mega_menu_col_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--Padding-Unique-Medium);
}
header .header_mega_menu_title {
  font-weight: 500;
  font-size: var(--Heading-H6);
  line-height: 1.4em;
  margin: 0;
  text-align: center;
}
header .header_mega_menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  font-size: var(--navigation-medium-base);
  line-height: 1em;
  text-decoration: none;
}
header .header_mega_menu_link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
          filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
}
header .header_nav_sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px), print {
  header .header_nav_sp {
    display: none;
  }
}
header .header_sp_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--Line-Primary);
  text-decoration: none;
  position: relative;
}
header .header_sp_icon::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
header .header_sp_icon.header_sp_search::before {
  background-image: url("../img/icon_search.svg");
  -webkit-filter: invert(48%) sepia(38%) saturate(3347%) hue-rotate(176deg) brightness(99%) contrast(92%);
          filter: invert(48%) sepia(38%) saturate(3347%) hue-rotate(176deg) brightness(99%) contrast(92%);
}
header .header_sp_icon.header_sp_search.is_open::before {
  background-image: url("../img/icon_close.svg");
  -webkit-filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
          filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
}
header .header_sp_icon.header_sp_mail::before {
  background-image: url("../img/icon_mail.svg");
  -webkit-filter: invert(48%) sepia(38%) saturate(3347%) hue-rotate(176deg) brightness(99%) contrast(92%);
          filter: invert(48%) sepia(38%) saturate(3347%) hue-rotate(176deg) brightness(99%) contrast(92%);
}
header .header_sp_search_panel {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-color: var(--Background-Quaternary);
  border-top: 1px solid var(--Line-Primary);
  z-index: 99998;
}
header .header_sp_search_panel.is_open {
  display: block;
}
header .header_sp_search_panel_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: var(--Padding-Unique-Medium) var(--Padding-Unique-Small);
}
header .header_sp_search_panel .header_sp_search_input_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: var(--Background-Secondary);
  border: 1px solid var(--Line-Primary);
  border-radius: 100vmax;
  padding: var(--Padding-Unique-Small);
  gap: var(--Padding-Unique-XX-Small);
}
header .header_sp_search_panel .header_sp_search_input_wrap::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon_search.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: invert(48%) sepia(38%) saturate(3347%) hue-rotate(176deg) brightness(99%) contrast(92%);
          filter: invert(48%) sepia(38%) saturate(3347%) hue-rotate(176deg) brightness(99%) contrast(92%);
}
header .header_sp_search_panel .header_sp_search_input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-weight: 500;
  font-size: var(--Body-X-Small);
  line-height: 1.4em;
  letter-spacing: 0.03em;
  color: var(--Object-Primary);
}
header .header_sp_search_panel .header_sp_search_input::-webkit-input-placeholder {
  color: var(--Object-Disabled);
}
header .header_sp_search_panel .header_sp_search_input::-moz-placeholder {
  color: var(--Object-Disabled);
}
header .header_sp_search_panel .header_sp_search_input:-ms-input-placeholder {
  color: var(--Object-Disabled);
}
header .header_sp_search_panel .header_sp_search_input::-ms-input-placeholder {
  color: var(--Object-Disabled);
}
header .header_sp_search_panel .header_sp_search_input::placeholder {
  color: var(--Object-Disabled);
}
@media screen and (min-width: 768px), print {
  header .header_sp_search_panel {
    display: none !important;
  }
}

.menu {
  --menu-width:24px;
  --menu-height:24px;
  --menu-bar-color:var(--Object-Primary);
  --menu-bar-width:18px;
  --menu-bar-height:2px;
  --menu-bar-gap:4px;
  display: block;
  width: var(--menu-width);
  height: var(--menu-height);
  z-index: 2000;
}
.menu .icon {
  display: block;
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: calc(-1 * var(--menu-bar-gap));
}
.menu .icon::after {
  bottom: calc(-1 * var(--menu-bar-gap));
}
.menu .icon.active {
  background: transparent;
}
.menu .icon.active::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 0;
}
.menu .icon.active::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  bottom: 0;
}
@media screen and (min-width: 768px), print {
  .menu {
    display: none;
  }
}

/* グローバルナビゲーション (SP) */
#gnav {
  display: block !important;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  float: none;
  width: 100%;
  max-height: calc(100vh - 64px);
  padding: 24px 32px 60px;
  margin: 0;
  background: var(--Background-Quaternary);
  position: absolute;
  top: 64px;
  left: 0;
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(calc(-100% - 64px));
          transform: translateY(calc(-100% - 64px));
}
#gnav.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px), print {
  #gnav {
    display: none;
  }
}
#gnav .gnav_lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  margin-bottom: 32px;
}
#gnav .gnav_lang_item {
  font-weight: 500;
  font-size: var(--Navigation-X-Small);
  line-height: 1.4em;
  letter-spacing: 0.02em;
  text-decoration: none;
}
#gnav .gnav_lang_item:not(:last-child)::after {
  content: "／";
  margin-left: 2px;
  color: var(--Object-Disabled);
}
#gnav .gnav_lang_item.active {
  color: var(--Object-Disabled);
}
#gnav .gnav_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
}
#gnav .gnav_menu_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
}
#gnav .gnav_menu_item_accordion .gnav_menu_item_content {
  display: none;
}
#gnav .gnav_menu_item_accordion .gnav_menu_item_content_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--Padding-Unique-Small);
  padding: var(--Padding-Unique-X-Small) 0 var(--Padding-Unique-X-Small) var(--Padding-Unique-Small);
}
#gnav .gnav_menu_item_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--Padding-Unique-X-Small);
  padding: var(--Padding-Unique-Small) 0 12px;
  border-bottom: 1px solid var(--Line-Primary);
  cursor: pointer;
  position: relative;
}
#gnav .gnav_menu_item_header::after {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  background-color: var(--Background-Secondary);
  border: 1px solid var(--Brand-color-Primary);
  border-radius: 100vmax;
}
#gnav .gnav_menu_item_header::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 16px;
  top: 56%;
  border-top: solid 2px var(--Brand-color-Primary);
  border-right: solid 2px var(--Brand-color-Primary);
  -webkit-transform: translateY(-80%) rotate(135deg);
          transform: translateY(-80%) rotate(135deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#gnav .gnav_menu_item_text {
  font-weight: 500;
  font-size: var(--Label-Medium);
  line-height: 1.4em;
}
#gnav .gnav_menu_item:not(.gnav_menu_item_accordion) {
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--Line-Primary);
}
#gnav .gnav_menu_item_accordion .close.gnav_menu_item_header::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
#gnav .gnav_submenu_item {
  font-weight: 500;
  font-size: var(--Label-Small);
  line-height: 1.4em;
  letter-spacing: 0.03em;
  color: var(--Object-Primary);
  text-decoration: none;
}
#gnav .gnav_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
#gnav .gnav_bottom_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
#gnav .gnav_bottom_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#gnav .gnav_bottom_link {
  font-weight: 400;
  font-size: var(--navigation-medium-base);
  line-height: 1em;
  width: 50%;
  margin-bottom: 16px;
}
#gnav .gnav_bottom_link_external::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("../img/icon_arrow_outward.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: invert(51%) sepia(16%) saturate(3669%) hue-rotate(168deg) brightness(96%) contrast(97%);
          filter: invert(51%) sepia(16%) saturate(3669%) hue-rotate(168deg) brightness(96%) contrast(97%);
}
#gnav .gnav_contact_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
  padding: 18px 16px;
  background: var(--btn-gradient);
  border-radius: 100vmax;
}
#gnav .gnav_contact_btn::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(208deg) brightness(101%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(208deg) brightness(101%) contrast(101%);
}
#gnav .gnav_contact_text {
  font-weight: 500;
  font-size: var(--navigation-medium-base);
  line-height: 1em;
  letter-spacing: 0.02em;
  color: var(--Object-Primary-Reverse);
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

/* ▼ パンくず
--------------------------------------- */
#path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--Padding-Unique-Small, 16px) 0;
  border-top: 1px solid var(--Line-Primary);
}
#path .container {
  max-width: 1344px;
}
#path ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--H-Gap-X-Small, 8px);
}
#path li {
  color: var(--Object-Secondary);
  position: relative;
  font-size: var(--Label-X-Small, 16px);
  font-weight: 500;
}
#path li:not(:last-child) {
  padding-right: 24px;
}
#path li:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 1px;
  right: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--Line-Primary);
}
#path li a {
  color: var(--Object-Primary);
  text-decoration: underline;
}

/* ▼ 各ページ共通
--------------------------------------- */
.section_inner {
  padding-top: 48px;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .section_inner {
    padding-top: 80px;
  }
}

.section_title {
  font-weight: 500;
  font-size: var(--Heading-H1);
  margin-bottom: 8px;
}
.section_title_en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: var(--Heading-H1-SubTitle);
  line-height: 1em;
  color: var(--Brand-color-Primary);
}

.arrow_btn {
  position: relative;
  padding: var(--Padding-Unique-XX-Small) var(--Padding-Unique-Small);
  width: auto;
  height: auto;
  background: radial-gradient(circle at 50% 50%, rgb(16, 156, 243) 25%, rgb(104, 176, 255) 70%, rgb(175, 224, 255) 100%);
  border: none;
  border-radius: 100vmax;
  cursor: pointer;
  z-index: 2;
}
@media screen and (min-width: 768px), print {
  .arrow_btn.arrow_btn_large {
    padding: var(--Padding-Button-Label-XX-Small) var(--Padding-Button-Label-Medium);
  }
}
.arrow_btn.sp_small {
  padding: 0 var(--Padding-Button-Label-X-Small, 8px);
}
@media screen and (min-width: 768px), print {
  .arrow_btn.sp_small {
    padding: var(--Padding-Unique-XX-Small) var(--Padding-Unique-Small);
  }
}
.arrow_btn::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../img/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(208deg) brightness(101%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(208deg) brightness(101%) contrast(101%);
}

.gradient_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
  width: 100%;
  max-width: 251px;
  margin: 0 auto;
  padding: 12px 16px 14px;
  background: var(--btn-gradient);
  border-radius: 100vmax;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px), print {
  .gradient_btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
  }
}
.gradient_btn:hover {
  background: var(--Object-Primary-Reverse);
  opacity: 1;
  border: 1px solid var(--Brand-color-Primary);
}
.gradient_btn:hover .gradient_btn_text {
  color: var(--Brand-color-Primary) !important;
}
.gradient_btn:hover::after {
  -webkit-filter: invert(49%) sepia(84%) saturate(2775%) hue-rotate(177deg) brightness(100%) contrast(92%);
          filter: invert(49%) sepia(84%) saturate(2775%) hue-rotate(177deg) brightness(100%) contrast(92%);
}
.gradient_btn .gradient_btn_text {
  font-weight: 500;
  font-size: var(--Label-Small);
  color: var(--Object-Primary-Reverse);
}
.gradient_btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url("../img/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(208deg) brightness(101%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(208deg) brightness(101%) contrast(101%);
}

.white_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
  width: 100%;
  max-width: 251px;
  margin: 0 auto;
  padding: 12px 16px 14px;
  background: #fff;
  border-radius: 100vmax;
  border: 1px solid var(--Brand-color-Primary);
}
@media screen and (min-width: 768px), print {
  .white_btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
  }
}
.white_btn:hover {
  background: var(--btn-gradient);
  opacity: 1;
  border: 1px solid #fff;
}
.white_btn:hover .white_btn_text {
  color: var(--Object-Primary-Reverse) !important;
}
.white_btn:hover::after {
  -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(208deg) brightness(101%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(208deg) brightness(101%) contrast(101%);
}
.white_btn .white_btn_text {
  font-weight: 500;
  font-size: var(--Label-Small);
  color: var(--Brand-color-Primary);
}
.white_btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url("../img/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
          filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
}

.txt_link_btn_text {
  font-weight: 500;
  font-size: var(--navigation-medium-base);
  line-height: 1em;
  letter-spacing: 0.03em;
  margin-right: 28px;
  position: relative;
}
.txt_link_btn_text::before {
  content: "";
  position: absolute;
  right: -28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
          filter: invert(46%) sepia(39%) saturate(3607%) hue-rotate(180deg) brightness(102%) contrast(91%);
}
.txt_link_btn_text.hover_line:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--Brand-color-Primary);
  -webkit-animation: drawLine 0.3s ease forwards;
          animation: drawLine 0.3s ease forwards;
}
.txt_link_btn:hover {
  opacity: 1;
  color: var(--Brand-color-Primary) !important;
}
.txt_link_btn:hover .hover_line {
  position: relative;
}
.txt_link_btn:hover .hover_line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--Brand-color-Primary);
  -webkit-animation: drawLine 0.3s ease forwards;
          animation: drawLine 0.3s ease forwards;
}

.layout_btn_wrap .layout_btn_card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--Background-Secondary);
  border-radius: 20px;
  margin-bottom: 32px;
  text-decoration: none;
}
.layout_btn_wrap .layout_btn_card .layout_btn_card_image {
  width: 100%;
  max-width: 140px;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.layout_btn_wrap .layout_btn_card .layout_btn_card_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_btn_wrap .layout_btn_card .layout_btn_card_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
}
.layout_btn_wrap .layout_btn_card .layout_btn_card_info .layout_btn_card_info_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.layout_btn_wrap .layout_btn_card .layout_btn_card_info .layout_btn_card_info_text .layout_btn_card_title {
  font-weight: 500;
  font-size: var(--Heading-H3);
  line-height: 1.4em;
}
.layout_btn_wrap .layout_btn_card .layout_btn_card_info .layout_btn_card_info_text .layout_btn_card_title_h6 {
  font-size: var(--Heading-H6);
}
.layout_btn_wrap .layout_btn_card .layout_btn_card_info .layout_btn_card_info_text .layout_btn_card_model {
  font-weight: 500;
  font-size: var(--Label-X-Small);
  line-height: 1.4em;
  letter-spacing: 0.03em;
  color: var(--Object-Secondary);
  margin: 0;
}
@media screen and (min-width: 768px), print {
  .layout_btn_wrap .layout_btn_card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 20px;
    max-width: 1248px;
    margin: 0 auto 32px;
  }
  .layout_btn_wrap .layout_btn_card .layout_btn_card_image {
    margin: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .layout_btn_wrap .layout_btn_card .layout_btn_card_info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 16px;
  }
  .layout_btn_wrap .layout_btn_card .layout_btn_card_info .layout_btn_card_info_text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .layout_btn_wrap .layout_btn_card .layout_btn_card_info .layout_btn_card_info_text .layout_btn_card_title {
    line-height: 1.4em;
  }
  .layout_btn_wrap .layout_btn_card .layout_btn_card_info .layout_btn_card_info_text .layout_btn_card_model {
    letter-spacing: 0.03em;
  }
}

.anchor {
  position: sticky;
  top: 60px;
  z-index: 10;
  background-color: var(--Background-Primary);
  margin-top: 32px;
}
@media screen and (min-width: 768px), print {
  .anchor {
    top: 0;
    margin-top: 60px;
  }
}
.anchor_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: scroll;
  padding-left: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.anchor_list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
@media screen and (min-width: 768px), print {
  .anchor_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1288px;
    margin: 0 auto;
    padding: 0;
  }
}
.anchor_item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px), print {
  .anchor_item {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
}
.anchor_link {
  width: 100%;
  padding: var(--Padding-Unique-Small, 16px) var(--Padding-Unique-X-Small, 8px) var(--Padding-Unique-X-Small, 8px) var(--Padding-Unique-X-Small, 8px);
  color: var(--Object-Secondary) !important;
  border-bottom: 2px solid var(--Line-Primary);
  text-align: center;
  font-size: var(--navigation-medium-base);
  font-weight: 500;
  line-height: 140%; /* 21px */
  white-space: nowrap;
}
@media screen and (min-width: 768px), print {
  .anchor_link {
    padding: var(--Padding-Unique-Large, 32px) var(--Padding-Unique-Medium, 24px) var(--Padding-Unique-Medium, 24px) var(--Padding-Unique-Medium, 24px);
  }
}
.anchor_link .anchor_item_title {
  position: relative;
  padding-right: 16px;
}
.anchor_link .anchor_item_title::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px var(--Line-Secondary);
  border-right: solid 2px var(--Line-Secondary);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  margin: auto;
}
.anchor_link:hover {
  opacity: 1;
  color: var(--Object-Primary) !important;
  border-bottom: 2px solid var(--Brand-color-Primary);
}
.anchor_link:hover .anchor_item_title::after {
  border-top: solid 2px #0f131a;
  border-right: solid 2px #0f131a;
}

.heading_title {
  position: relative;
  font-weight: 500;
  font-size: var(--Heading-H2);
  padding-bottom: 16px;
  margin-bottom: 32px;
}
.heading_title::before, .heading_title::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  border-radius: 100vmax;
}
.heading_title::before {
  width: 26px;
  height: 3px;
  left: 0;
  background-color: var(--Brand-color-Primary);
}
.heading_title::after {
  width: calc(100% - 34px);
  right: 0;
  background-color: var(--Line-Primary);
}

.heading_h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  padding: 16px 24px;
  background-color: var(--Background-Quaternary);
  border-radius: 4px;
  font-weight: 500;
  font-size: var(--Heading-H3);
  color: var(--Object-Primary);
  margin-bottom: 32px;
}

.heading_h4 {
  font-weight: 500;
  font-size: var(--Heading-H4);
  margin-bottom: 16px;
}

.category_title {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  padding-left: 20px;
  font-size: var(--Heading-H2);
  font-weight: 500;
}
.category_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 41px;
  background: var(--Brand-color-Primary);
  border-radius: 5px;
}
@media screen and (min-width: 768px), print {
  .category_title::before {
    width: 4px;
    height: 41px;
  }
}

.text {
  margin-bottom: 32px;
}

.list_dot {
  padding-left: 1.5em;
  margin-bottom: 32px;
}
.list_dot_item {
  list-style: disc;
}

.list_num {
  padding-left: 1em;
  margin-bottom: 32px;
}
.list_num_item {
  list-style: decimal;
}

.note_wrap {
  margin-bottom: 32px;
}

.note {
  font-size: var(--Caption-X-Small);
  line-height: 1.7;
}

.quote {
  position: relative;
  padding: 43px 16px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--Background-Tertiary);
  border-radius: 20px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px), print {
  .quote {
    padding: 32px 94px;
  }
}
.quote::before, .quote::after {
  content: "";
  position: absolute;
  background: url(../img/icon_quote.svg) no-repeat center/contain;
  width: 25px;
  height: 19px;
}
@media screen and (min-width: 768px), print {
  .quote::before, .quote::after {
    width: 30px;
    height: 23px;
  }
}
.quote::before {
  left: 16px;
  top: 16px;
}
@media screen and (min-width: 768px), print {
  .quote::before {
    left: 32px;
    top: 32px;
  }
}
.quote::after {
  right: 16px;
  bottom: 16px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px), print {
  .quote::after {
    right: 32px;
    bottom: 32px;
  }
}
.quote .quote_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.quote .quote_content .quote_text {
  line-height: 1.6em;
  color: var(--Object-Primary);
  margin: 0;
}
.quote .quote_content .quote_source {
  line-height: 1.6em;
  color: var(--Object-Secondary);
  text-align: right;
  margin: 0;
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* フローティングバナー
----------------------------------------*/
.floating_banner {
  display: block;
  position: fixed;
  max-width: 688px;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 10000;
}
.floating_banner.is_hidden {
  display: none;
}
.floating_banner_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  padding: 16px;
  background: var(--Background-Secondary);
  border: 1px solid var(--Line-Primary);
  border-radius: 20px 20px 0px 0px;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
}
.floating_banner_item {
  display: block;
  width: calc(50% - 8px);
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid var(--Line-Primary);
  overflow: hidden;
}
.floating_banner_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.floating_banner_close {
  position: absolute;
  padding: 4px 16px;
  width: auto;
  height: auto;
  background: radial-gradient(circle at 50% 50%, rgb(16, 156, 243) 25%, rgb(104, 176, 255) 70%, rgb(175, 224, 255) 100%);
  border: none;
  border-radius: 100vmax;
  z-index: 2;
  top: -12px;
  right: 12px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.floating_banner_close::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../img/icon_close.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(330deg) brightness(104%) contrast(103%);
          filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(330deg) brightness(104%) contrast(103%);
}

/* ▼▼▼ フッターお問い合わせ
====================================================== */
.footer_contact {
  margin-top: 48px;
  background-color: var(--Background-Quaternary);
  border-radius: 48px 48px 0 0;
  padding: 56px 16px 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px), print {
  .footer_contact {
    margin-top: 80px;
    border-radius: 80px 80px 0 0;
    padding: 120px 16px 150px;
  }
}
.footer_contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 224.6px;
  height: 254px;
  background-image: url("../img/bg_footer_contact.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: -1;
}
@media screen and (min-width: 768px), print {
  .footer_contact::after {
    width: 264px;
    height: 362px;
  }
}
.footer_contact_inner {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .footer_contact_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
.footer_contact_header {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px), print {
  .footer_contact_header {
    max-width: 230px;
    width: 100%;
    margin-bottom: 0;
  }
}
.footer_contact_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px), print {
  .footer_contact_content {
    max-width: calc(100% - 270px);
    width: 100%;
    gap: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer_contact_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.footer_contact_section_title {
  font-weight: 500;
  font-size: var(--Heading-H4);
  line-height: 1.4em;
  color: var(--Object-Primary);
  margin: 0;
}
@media screen and (min-width: 768px), print {
  .footer_contact_section_title {
    font-size: var(--Heading-H4);
  }
}
.footer_contact_card {
  background-color: var(--Background-Secondary);
  border-radius: 20px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px), print {
  .footer_contact_card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 32px 0;
    gap: 0;
  }
}
@media screen and (min-width: 768px), print {
  .footer_contact_card_email {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
.footer_contact_call_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1px;
  width: 100%;
  border-bottom: 1px solid var(--Line-Primary);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px), print {
  .footer_contact_call_item {
    border-bottom: none;
    padding: 0 16px 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px), print {
  .footer_contact_call_item:not(:last-child) {
    border-right: 1px solid var(--Line-Primary);
  }
}
.footer_contact_call_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.footer_contact_call_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px), print {
  .footer_contact_call_info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer_contact_call_title {
  font-weight: 500;
  font-size: var(--Heading-H4);
  line-height: 1.4em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .footer_contact_call_title {
    text-align: left;
  }
}
.footer_contact_call_title span {
  font-size: var(--Body-Small);
  font-weight: 400;
}
.footer_contact_call_time {
  font-weight: 400;
  font-size: var(--Body-Small);
  line-height: 1.6em;
  letter-spacing: 0.01em;
  color: var(--Object-Primary);
  margin: 0;
  text-align: center;
}
.footer_contact_call_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 1px;
}
.footer_contact_call_tel {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.4em;
  color: var(--Object-Primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 768px), print {
  .footer_contact_call_tel {
    font-size: 45px;
    gap: 16px;
  }
}
.footer_contact_call_tel::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("../img/icon_phone.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ▼▼▼ フッターメイン
====================================================== */
footer {
  width: 100%;
  clear: both;
  overflow: hidden;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
footer a:hover {
  color: var(--Brand-color-Primary);
  text-decoration: underline;
  opacity: 1;
}

.footer_main {
  background-color: var(--Background-Secondary);
  border-top: 1px solid var(--Line-Primary);
  border-radius: 48px 48px 0 0;
  padding: 56px 0;
}
@media screen and (min-width: 768px), print {
  .footer_main {
    border-radius: 80px 80px 0 0;
    padding: 120px 64px 24px;
  }
}
.footer_main_inner {
  max-width: 1344px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px), print {
  .footer_main_inner {
    gap: 80px;
  }
}

.footer_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 0 32px;
}
@media screen and (min-width: 768px), print {
  .footer_top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
  }
}

.footer_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer_logo_link {
  display: block;
  max-width: 230px;
  width: 100%;
  margin-bottom: 24px;
}
.footer_logo .footer_sns_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_logo .footer_sns_item {
  max-width: 24px;
  width: 100%;
}

.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px), print {
  .footer_menu {
    max-width: 840px;
    gap: 24px;
  }
}

.footer_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px), print {
  .footer_menu_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media screen and (min-width: 768px), print {
  .footer_menu_list .footer_product_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.footer_menu_simple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer_menu_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer_menu_item_header {
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--Line-Primary);
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .footer_menu_item_header {
    border-bottom: none;
    padding: 0 0 16px;
    cursor: default;
  }
}
.footer_menu_item_accordion .footer_menu_item_content {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 8px 0 0 16px;
}
@media screen and (min-width: 768px), print {
  .footer_menu_item_accordion .footer_menu_item_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 0 16px;
    border-left: 1px solid var(--Line-Primary);
  }
}
.footer_menu_item_accordion .footer_menu_item_header::after {
  position: absolute;
  right: 0;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  background-color: var(--Background-Secondary);
  border: 1px solid var(--Brand-color-Primary);
  border-radius: 100vmax;
}
@media screen and (min-width: 768px), print {
  .footer_menu_item_accordion .footer_menu_item_header::after {
    display: none;
  }
}
.footer_menu_item_accordion .footer_menu_item_header::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 16px;
  top: 56%;
  border-top: solid 2px var(--Brand-color-Primary);
  border-right: solid 2px var(--Brand-color-Primary);
  -webkit-transform: translateY(-80%) rotate(135deg);
          transform: translateY(-80%) rotate(135deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 5;
}
@media screen and (min-width: 768px), print {
  .footer_menu_item_accordion .footer_menu_item_header::before {
    display: none;
  }
}
.footer_menu_item_accordion.is_open .footer_menu_item_header::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.footer_menu_item_text {
  font-size: var(--Navigation-X-Small);
  font-weight: 500;
}
@media screen and (min-width: 768px), print {
  .footer_menu_item_text {
    text-decoration: underline;
  }
}
@media screen and (min-width: 768px), print {
  .footer_menu_item_text.txt_gray {
    color: var(--Object-Disabled);
    text-decoration: none;
  }
}
.footer_menu_item:not(.footer_menu_item_accordion) {
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--Line-Primary);
}
@media screen and (min-width: 768px), print {
  .footer_menu_item:not(.footer_menu_item_accordion) {
    padding: 0 0 16px;
    border-bottom: none;
  }
}

.footer_menu_link {
  display: block;
  font-weight: 400;
  font-size: var(--Navigation-X-Small);
  margin-bottom: 16px;
}
@media screen and (min-width: 768px), print {
  .footer_menu_link {
    margin-bottom: 0;
  }
}

.footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px), print {
  .footer_links {
    display: none;
  }
}

.footer_links_col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.footer_link {
  font-weight: 500;
  font-size: var(--Label-X-Small);
  line-height: 1.4em;
  letter-spacing: 0.02em;
  color: var(--Object-Primary);
  text-decoration: underline !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.footer_link_external::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("../img/icon_arrow_outward.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: invert(51%) sepia(16%) saturate(3669%) hue-rotate(168deg) brightness(96%) contrast(97%);
          filter: invert(51%) sepia(16%) saturate(3669%) hue-rotate(168deg) brightness(96%) contrast(97%);
}

@media screen and (min-width: 768px), print {
  .footer_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.footer_center_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 840px;
  padding: var(--Padding-Unique-Medium);
  background: var(--Background-Tertiary);
}
@media screen and (min-width: 768px), print {
  .footer_center_inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 20px;
  }
}
.footer_center_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px), print {
  .footer_center_item {
    gap: 16px;
  }
}
.footer_center_item_header {
  font-size: var(--Navigation-X-Small);
  font-weight: 500;
  color: var(--Object-Disabled);
}
.footer_center_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width: 768px), print {
  .footer_center_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 0 16px;
    border-left: 1px solid var(--Line-Primary);
  }
}
.footer_center_link {
  font-size: var(--Navigation-X-Small, 15px);
  color: var(--Object-Primary);
}
.footer_center_link.external::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background-image: url("../img/icon_arrow_outward.svg");
  -webkit-filter: invert(51%) sepia(16%) saturate(3669%) hue-rotate(168deg) brightness(96%) contrast(97%);
          filter: invert(51%) sepia(16%) saturate(3669%) hue-rotate(168deg) brightness(96%) contrast(97%);
}

.footer_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 0 32px;
}
@media screen and (min-width: 768px), print {
  .footer_bottom {
    padding: 0;
  }
}

.footer_bottom_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px), print {
  .footer_bottom_links {
    gap: 24px;
  }
}

.footer_bottom_link {
  font-weight: 400;
  font-size: var(--Navigation-X-Small);
  line-height: 1.4em;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.footer_bottom_link_external::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../img/icon_arrow_outward.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: invert(51%) sepia(16%) saturate(3669%) hue-rotate(168deg) brightness(96%) contrast(97%);
          filter: invert(51%) sepia(16%) saturate(3669%) hue-rotate(168deg) brightness(96%) contrast(97%);
}

.footer_copyright {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.4em;
  letter-spacing: 0.04em;
  color: var(--Object-Secondary);
  margin: 0;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  padding: 10px;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
}
@media screen and (min-width: 768px), print {
  .pagetop {
    padding: 0;
  }
}
.pagetop::after {
  content: "";
  width: 11px;
  height: 11px;
  border-left: #FFF 1px solid;
  border-top: #FFF 1px solid;
  position: absolute;
  top: calc(50% - 3px);
  right: calc(50% - 6px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ▼ コピーライト
--------------------------------------- */
#copyright {
  font-size: 12px;
  color: #fff;
}

/* ▼▼▼ 医療従事者アラート
======================================================*/
.medical-alert {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.medical-alert.is_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.medical-alert_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 55, 59, 0.75);
}
.medical-alert_content {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  .medical-alert_content {
    width: 100%;
    max-width: 960px;
  }
}
.medical-alert_inner {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 48px 24px;
}
@media screen and (min-width: 768px), print {
  .medical-alert_inner {
    padding: 40px 48px;
  }
}
.medical-alert_heading {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px), print {
  .medical-alert_heading {
    margin-bottom: 48px;
  }
}
.medical-alert_title {
  font-weight: 500;
  font-size: var(--Heading-H2);
  text-align: center;
}
.medical-alert_text {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px), print {
  .medical-alert_text {
    margin-bottom: 48px;
    text-align: center;
  }
}
.medical-alert_question {
  font-weight: 500;
  font-size: var(--Heading-H4);
  text-align: center;
  margin-bottom: 32px;
}
.medical-alert_buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 768px), print {
  .medical-alert_buttons {
    width: auto;
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.medical-alert_button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  font-size: var(--Navigation-medium-base);
  text-align: center;
  border-radius: 100vmax;
  padding: 12px 16px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #109CF3;
  border: 1px solid var(--Line-Primary);
  max-width: 140px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px), print {
  .medical-alert_button {
    max-width: 240px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.medical-alert_button:hover {
  opacity: 1;
  background: radial-gradient(circle at 8% 50%, rgb(16, 156, 243) 25%, rgb(104, 176, 255) 64%, rgb(143, 202, 255) 90%, rgb(175, 224, 255) 100%);
  color: #FFFFFF;
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 100px 20px 60px;
}
@media screen and (min-width: 768px), print {
  #not_found {
    padding: 8vw 20px;
  }
}
#not_found p {
  font-size: 14px;
  text-align: center;
}
#not_found p.arial {
  margin-bottom: 10px;
  font-size: 39px;
  font-family: "Arial", "メイリオ";
}
@media screen and (min-width: 768px), print {
  #not_found p.arial {
    margin-bottom: 10px;
    font-size: 42px;
  }
}
#not_found p.arial + p {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (min-width: 768px), print {
  #not_found p.arial + p {
    font-size: 18px;
  }
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  #not_found p.txt {
    line-height: 1.9;
  }
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}

@-webkit-keyframes drawLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes drawLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* 印刷用設定
--------------------------------------- */
@media print {
  :root {
    --Heading-H1: 35px;
    --Heading-H2: 29px;
    --Heading-H3: 25px;
    --Heading-H4: 21px;
    --Heading-H5: 19px;
    --Heading-H6: 18px;
    --Heading-H1-SubTitle: 18px;
    --body-medium-base: 18px;
    --Body-Small: 17px;
    --Body-X-Small: 16px;
    --Caption-X-Small: 15px;
    --Label-Medium: 18px;
    --Label-Small: 17px;
    --Label-X-Small: 16px;
    --Label-XX-Small: 15px;
    --navigation-medium-base: 18px;
    --Navigation-Small: 17px;
    --Navigation-X-Small: 15px;
    --padding-layout-side-padding-products: 96px;
    --Padding-Layout-SectionInnerlarge: 80px;
    --Padding-Layout-SectionInnermedium: 60px;
  }
  #wrapper {
    min-width: 1440px;
    width: 100%;
  }
  body {
    zoom: 70%;
  }
  div {
    height: auto !important;
  }
  header, .footer_contact, footer {
    position: absolute;
  }
}