@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
:root {
  --font-color: #2c2424;
  --rgb-font-color: 44, 36, 36;
  --key-color: #004181;
  --line-color: #cecece;
  --bg-color: #f7f7f7;
  --bg-white: #fff;
  --rgb-bg-white: 255, 255, 255;
  --color-red: #e3351e;
  --color-red-hover: #fa7a7a;
  --color-red-hover-bg: #fcecec;
  --color-green: #1d8250;
  --color-green-hover: #00ad64;
  --color-green-hover-bg: #e2f2ec;
  --color-blue-hover: #4e62b8;
  --color-blue-hover-bg: #e3e8ff;
  --color-black: #000;
  --rgb-color-black: 0, 0, 0;
  --color-dark-gray: #333;
  --color-dark-gray2: #5a5454;
  --rgb-color-dark-gray2: 90, 84, 84;
  --color-gray: #999;
  --rgb-color-gray: 153, 153, 153;
  --color-light-gray: #f6f7f7;
  --color-light-gray2: #f3efee;
  --rgb-color-light-gray2: 243, 239, 238;
  --color-light-gray3: #f9f5f5;
  --rgb-color-light-gray3: 249, 245, 245;
}

body.set-background_yellow {
  --font-color: #000;
  --rgb-font-color: 0, 0, 0;
  --key-color: #000;
  --line-color: #000;
  --bg-color: #ff0;
  --bg-white: #ff0;
  --rgb-bg-white: 255, 255, 0;
  --color-red: #000;
  --color-red-hover: #000;
  --color-red-hover-bg: #ff0;
  --color-green: #000;
  --color-green-hover: #000;
  --color-green-hover-bg: #ff0;
  --color-blue-hover: #000;
  --color-blue-hover-bg: #ff0;
  --color-black: #ff0;
  --rgb-color-black: 255, 255, 0;
  --color-dark-gray: #000;
  --color-dark-gray2: #000;
  --rgb-color-dark-gray2: 0, 0, 0;
  --color-gray: #000;
  --rgb-color-gray: 0, 0, 0;
  --color-light-gray: #ff0;
  --color-light-gray2: #ff0;
  --rgb-color-light-gray2: 255, 255, 0;
  --color-light-gray3: #ff0;
  --rgb-color-light-gray3: 255, 255, 0;
}
body.set-background_blue {
  --font-color: #fff;
  --rgb-font-color: 255, 255, 255;
  --key-color: #ff0;
  --line-color: #fff;
  --bg-color: #00f;
  --bg-white: #00f;
  --rgb-bg-white: 0, 0, 255;
  --color-red: #ff0;
  --color-red-hover: #ff0;
  --color-red-hover-bg: #00f;
  --color-green: #ff0;
  --color-green-hover: #ff0;
  --color-green-hover-bg: #00f;
  --color-blue-hover: #ff0;
  --color-blue-hover-bg: #00f;
  --color-black: #fff;
  --rgb-color-black: 255, 255, 255;
  --color-dark-gray: #fff;
  --color-dark-gray2: #fff;
  --rgb-color-dark-gray2: 255, 255, 255;
  --color-gray: #fff;
  --rgb-color-gray: 255, 255, 255;
  --color-light-gray: #00f;
  --color-light-gray2: #00f;
  --rgb-color-light-gray2: 0, 0, 255;
  --color-light-gray3: #00f;
  --rgb-color-light-gray3: 0, 0, 255;
}
body.set-background_black {
  --font-color: #ff0;
  --rgb-font-color: 255, 255, 0;
  --key-color: #ff0;
  --line-color: #ff0;
  --bg-color: #000;
  --bg-white: #000;
  --rgb-bg-white: 0, 0, 0;
  --color-red: #ff0;
  --color-red-hover: #ff0;
  --color-red-hover-bg: #000;
  --color-green: #ff0;
  --color-green-hover: #ff0;
  --color-green-hover-bg: #000;
  --color-blue-hover: #ff0;
  --color-blue-hover-bg: #000;
  --color-black: #fff;
  --rgb-color-black: 255, 255, 255;
  --color-dark-gray: #fff;
  --color-dark-gray2: #fff;
  --rgb-color-dark-gray2: 255, 255, 255;
  --color-gray: #fff;
  --rgb-color-gray: 255, 255, 255;
  --color-light-gray: #000;
  --color-light-gray2: #000;
  --rgb-color-light-gray2: 0, 0, 0;
  --color-light-gray3: #000;
  --rgb-color-light-gray3: 0, 0, 0;
}

.marcellus {
  font-family: "Marcellus", serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.zenkaku {
  font-family: "Zen Kaku Gothic New", serif;
}

html {
  /*remで指定しない時は切ること*/
  font-size: 62.5%;
}

body {
  background-color: var(--bg-white);
  position: relative;
  color: var(--font-color);
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.8;
  width: 100%;
  /*スマホの文字の大きさ一定*/
  -webkit-text-size-adjust: 100%;
  /*アンチエイリアス*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media print, screen and (min-width: 920px) {
  body {
    font-size: 1.6rem;
  }
}

/*breakpoint display*/
.sp_min {
  display: block;
}

.sp_min_inline {
  display: inline;
}

.sp {
  display: block;
}

.sp_inline {
  display: inline;
}

.sp_tab {
  display: block;
}

.sp_tab_inline {
  display: inline;
}

.pc,
.pc_inline {
  display: none !important;
}

.tab,
.tab_inline {
  display: none !important;
}

.pc_tab,
.pc_tab_inline {
  display: none !important;
}

@media print, screen and (min-width: 360px) {
  .sp_min,
  .sp_min_inline {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sp,
  .sp_inline {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
  .tab_inline {
    display: inline !important;
  }
  .pc_tab {
    display: block !important;
  }
  .pc_tab_inline {
    display: inline !important;
  }
}
@media print, screen and (min-width: 920px) {
  .sp_tab,
  .sp_tab_inline {
    display: none !important;
  }
  .tab,
  .tab_inline {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .pc_inline {
    display: inline !important;
  }
}
/*box-sizing default*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}
*:before,
* :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*aタグ デフォルト設定*/
a {
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*スマホ時のfocusの青枠削除*/
input,
button,
label,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

select::-ms-expand {
  display: none;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?e0fuq0");
  src: url("../fonts/icomoon.eot?e0fuq0#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?e0fuq0") format("truetype"), url("../fonts/icomoon.woff?e0fuq0") format("woff"), url("../fonts/icomoon.svg?e0fuq0#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-document-file-jpg:before {
  content: "\e90a";
}

.icon-word:before {
  content: "\e90b";
}

.icon-pdf:before {
  content: "\e90c";
}

.icon-excel:before {
  content: "\e90d";
}

.icon-text:before {
  content: "\e90e";
}

.icon-important:before {
  content: "\e909";
  color: var(--color-red);
}

.icon-blank:before {
  content: "\e900";
}

.icon-card:before {
  content: "\e901";
}

.icon-clock:before {
  content: "\e902";
}

.icon-gear:before {
  content: "\e903";
}

.icon-lupe:before {
  content: "\e904";
}

.icon-phone:before {
  content: "\e905";
}

.icon-place:before {
  content: "\e906";
}

.icon-sns_inst:before {
  content: "\e907";
}

.icon-sns_yt:before {
  content: "\e908";
}

.page_inner_s {
  max-width: 800px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .page_inner_s {
    width: calc(100% - 80px);
  }
}

.page_inner_m {
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .page_inner_m {
    width: calc(100% - 80px);
  }
}

.page_inner_l {
  max-width: 1420px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .page_inner_l {
    width: calc(100% - 80px);
  }
}

.global_nav.global_nav__pc {
  display: none;
}
@media print, screen and (min-width: 920px) {
  .global_nav.global_nav__pc {
    display: block;
  }
}
.global_nav.global_nav__sp {
  display: block;
}
@media print, screen and (min-width: 920px) {
  .global_nav.global_nav__sp {
    display: none;
  }
}

.ta_c {
  text-align: center;
}

.ta_l {
  text-align: left;
}

.ta_r {
  text-align: right;
}

.header {
  padding: 17px 17px 0;
  position: fixed;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s;
}
.header.open {
  background-color: var(--bg-white);
}
@media print, screen and (min-width: 920px) {
  .header.open {
    background: none;
  }
}
.header.open .header_inner {
  border-radius: 10px 10px 0 0;
  background-color: var(--bg-white);
}
.header.open .header_pc_emergency {
  border-radius: 0 10px 0 0;
}

.overlayer {
  width: 100%;
  height: 100%;
  background-color: rgba(var(--rgb-color-dark-gray2), 0.3);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.overlayer.active {
  opacity: 1;
  visibility: visible;
}

.header_inner {
  background: var(--bg-white);
  border-radius: 3px;
  position: relative;
  box-shadow: 0 0 15px rgba(var(--rgb-color-gray), 0.16);
}
@media print, screen and (min-width: 920px) {
  .header_inner {
    border-radius: 10px;
  }
}

.header_pc {
  display: none;
  align-items: center;
  height: 95px;
}
@media print, screen and (min-width: 920px) {
  .header_pc {
    display: flex;
  }
}
@media print, screen and (min-width: 1400px) {
  .header_pc {
    height: 85px;
  }
}

.header__logo {
  width: 240px;
  margin-left: 15px;
  margin-right: 15px;
}
@media print, screen and (min-width: 1400px) {
  .header__logo {
    width: 289px;
    margin-left: 18px;
  }
}
.header__logo a {
  font-size: 0;
  display: block;
}

.global_nav__pc {
  margin-left: auto;
  line-height: 1.4;
  flex-shrink: 0;
}

.global_nav__pc_first {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  row-gap: 4px;
}
@media print, screen and (min-width: 1400px) {
  .global_nav__pc_first {
    align-items: center;
    flex-direction: row;
    column-gap: 20px;
  }
}

.global_nav__pc_first_list {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
@media print, screen and (min-width: 1400px) {
  .global_nav__pc_first_list {
    column-gap: 20px;
  }
}

.global_nav__pc_first_parent {
  font-size: 1.3rem;
}
@media print, screen and (min-width: 1400px) {
  .global_nav__pc_first_parent {
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .global_nav__pc_first_parent:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
}
.global_nav__pc_first_parent:active {
  color: var(--key-color);
}

.global_nav_pc_tel {
  line-height: 1;
}
.global_nav_pc_tel span {
  display: flex;
  column-gap: 5px;
  align-items: center;
  color: var(--key-color);
  font-size: 2.3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media print, screen and (min-width: 1400px) {
  .global_nav_pc_tel span {
    font-size: 2.8rem;
  }
}
.global_nav_pc_tel span::before {
  display: block;
  content: "\e905";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  transform: translateY(1px);
}
@media print, screen and (min-width: 1400px) {
  .global_nav_pc_tel span::before {
    font-size: 2rem;
    transform: translateY(2px);
  }
}

.global_nav__pc_second {
  margin-top: 2px;
}
@media print, screen and (min-width: 1400px) {
  .global_nav__pc_second {
    margin-top: 9px;
  }
}

.global_nav__pc_second_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 20px;
}
@media print, screen and (min-width: 1400px) {
  .global_nav__pc_second_list {
    column-gap: 35px;
  }
}

.global_nav__pc_second_parent {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: bold;
}
@media print, screen and (min-width: 1400px) {
  .global_nav__pc_second_parent {
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .global_nav__pc_second_parent:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
}
.global_nav__pc_second_parent:active {
  color: var(--key-color);
}
.global_nav__pc_second_parent.active {
  color: var(--key-color);
}

.header_pc_option {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 10px;
  height: 100%;
}

.header_pc_search button {
  width: 46px;
  height: 56px;
  display: block;
  border-right: 1px solid var(--color-gray);
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (min-width: 1400px) {
  .header_pc_search button {
    width: 60px;
  }
}
.header_pc_search button::before {
  display: block;
  content: "\e904";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.2rem;
}
@media (hover: hover) {
  .header_pc_search button:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
}
.header_pc_search button:active {
  color: var(--key-color);
}

.header_pc_setting button {
  width: 46px;
  height: 56px;
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (min-width: 1400px) {
  .header_pc_setting button {
    width: 60px;
  }
}
.header_pc_setting button::before {
  display: block;
  content: "\e903";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.2rem;
}
@media (hover: hover) {
  .header_pc_setting button:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
}
.header_pc_setting button:active {
  color: var(--key-color);
}

.header_pc_emergency {
  width: 65px;
  height: 100%;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
@media print, screen and (min-width: 1400px) {
  .header_pc_emergency {
    width: 85px;
  }
}
.header_pc_emergency button {
  display: block;
  background-color: var(--color-red);
  width: 100%;
  height: 100%;
  text-align: center;
  transition: 0.3s;
}
.header_pc_emergency button .img {
  display: block;
  width: 32px;
  margin: -7px auto 0;
}
@media print, screen and (min-width: 1400px) {
  .header_pc_emergency button .img {
    width: 46px;
    font-size: 1.5rem;
    margin: 0 auto;
  }
}
.header_pc_emergency button .img img {
  width: 100%;
}
.header_pc_emergency button .txt {
  display: block;
  color: var(--bg-white);
  font-size: 1.3rem;
  font-weight: 500;
}
@media print, screen and (min-width: 1400px) {
  .header_pc_emergency button .txt {
    font-size: 1.5rem;
  }
}
@media (hover: hover) {
  .header_pc_emergency button:where(:any-link, :enabled, summary, span, dt, div):hover {
    background-color: color-mix(in srgb, var(--color-red), #000 5%);
  }
}
.header_pc_emergency button:active {
  background-color: color-mix(in srgb, var(--color-red), #000 5%);
}

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

.lower_nav_box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  border-radius: 0 0 10px 10px;
  border-top: 1px solid var(--line-color);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lower_nav_box.active {
  opacity: 1;
  visibility: visible;
  z-index: 20;
}

.lower_nav_flex {
  display: flex;
  column-gap: 2.5%;
}

.lower_nav_img {
  width: 34.1%;
  flex-shrink: 0;
}
.lower_nav_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lower_nav_menu {
  flex-grow: 1;
  padding: 10px 22px 30px 0;
}

.lower_nav_title {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  padding: 22px 0 22px 40px;
  position: relative;
}
.lower_nav_title::before, .lower_nav_title::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% + 2px);
}
.lower_nav_title::before {
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--font-color);
  border-right: 1px solid var(--font-color);
  transform: translateY(-50%) rotate(45deg);
  left: 8px;
  transition: 0.3s;
  z-index: 1;
}
.lower_nav_title::after {
  width: 25px;
  height: 25px;
  border: 1px solid var(--font-color);
  border-radius: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: 0.3s;
}
@media (hover: hover) {
  .lower_nav_title:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
  .lower_nav_title:where(:any-link, :enabled, summary, span, dt, div):hover::after {
    background-color: var(--key-color);
  }
  .lower_nav_title:where(:any-link, :enabled, summary, span, dt, div):hover::before {
    border-top-color: var(--bg-white);
    border-right-color: var(--bg-white);
  }
}
.lower_nav_title:active {
  color: var(--key-color);
}
.lower_nav_title:active::after {
  background-color: var(--key-color);
}
.lower_nav_title:active::before {
  border-top-color: var(--bg-white);
  border-right-color: var(--bg-white);
}

.lower_nav_list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--key-color);
  padding-top: 32px;
  column-gap: 20px;
  row-gap: 20px;
}

.lower_nav_item {
  width: calc((100% - 40px) / 3);
}

.lower_nav_link {
  display: block;
  position: relative;
  padding-left: 40px;
  font-weight: 500;
}
.lower_nav_link::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--font-color);
  border-right: 1px solid var(--font-color);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media (hover: hover) {
  .lower_nav_link:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
  .lower_nav_link:where(:any-link, :enabled, summary, span, dt, div):hover::before {
    border-top-color: var(--key-color);
    border-right-color: var(--key-color);
  }
}
.lower_nav_link:active {
  color: var(--key-color);
}
.lower_nav_link:active::before {
  border-top-color: var(--key-color);
  border-right-color: var(--key-color);
}

.emergency_popup {
  position: fixed;
  z-index: 200;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.emergency_popup.active {
  opacity: 1;
  visibility: visible;
}

.emergency_overlayer {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--rgb-color-dark-gray2), 0.3);
}

.emergency_box {
  background-color: var(--color-light-gray3);
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  margin: 0 auto;
  padding: 40px 50px;
}

.emergency_title {
  margin-bottom: 15px;
}
.emergency_title .txt_l {
  font-size: 3.8rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}
.emergency_title .txt_s {
  color: var(--color-red);
  font-size: 1.8rem;
  font-weight: 500;
  margin-left: 10px;
}

.emergency_tel {
  background-color: var(--bg-white);
  margin-bottom: 22px;
  text-align: center;
}
.emergency_tel .txt_m {
  color: var(--key-color);
  font-size: 3rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
}
.emergency_tel .txt_l {
  color: var(--key-color);
  font-size: 4.3rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
}
.emergency_tel .txt_s {
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: 5px;
}

.emergency_txt {
  margin-bottom: 26px;
}
.emergency_txt strong {
  color: var(--color-red);
}

.emergency_link {
  text-align: center;
}
.emergency_link a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
  padding-right: 35px;
}
.emergency_link a::before, .emergency_link a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 2px);
}
.emergency_link a::before {
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--font-color);
  border-right: 1px solid var(--font-color);
  transform: translateY(-50%) rotate(45deg);
  right: 10px;
  transition: 0.3s;
  z-index: 1;
}
.emergency_link a::after {
  width: 25px;
  height: 25px;
  border: 1px solid var(--font-color);
  border-radius: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: 0.3s;
}
.emergency_link a span {
  border-bottom: 1px solid var(--font-color);
  transition: 0.3s;
}
@media (hover: hover) {
  .emergency_link a:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
  .emergency_link a:where(:any-link, :enabled, summary, span, dt, div):hover span {
    border-bottom-color: var(--key-color);
  }
  .emergency_link a:where(:any-link, :enabled, summary, span, dt, div):hover::before {
    border-top-color: var(--bg-white);
    border-right-color: var(--bg-white);
  }
  .emergency_link a:where(:any-link, :enabled, summary, span, dt, div):hover::after {
    background-color: var(--key-color);
  }
}
.emergency_link a:active {
  color: var(--key-color);
}
.emergency_link a:active span {
  border-bottom-color: var(--key-color);
}
.emergency_link a:active::before {
  border-top-color: var(--bg-white);
  border-right-color: var(--bg-white);
}
.emergency_link a:active::after {
  background-color: var(--key-color);
}

.emergency_close {
  display: block;
  width: 60px;
  height: 60px;
  background-color: var(--color-red);
  border-radius: 50%;
  transition: 0.3s;
  position: absolute;
  top: -17px;
  right: -17px;
}
.emergency_close::before, .emergency_close::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--bg-white);
  position: absolute;
  top: 50%;
  left: 50%;
}
.emergency_close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.emergency_close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (hover: hover) {
  .emergency_close:where(:any-link, :enabled, summary, span, dt, div):hover {
    background-color: color-mix(in srgb, var(--color-red), #000 5%);
  }
}
.emergency_close:active {
  background-color: color-mix(in srgb, var(--color-red), #000 5%);
}

.setting_box {
  padding: 30px 20px 50px;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media print, screen and (min-width: 920px) {
  .setting_box {
    padding-left: 0;
    padding-right: 0;
    border-top: 1px solid var(--line-color);
  }
}
.setting_box.active {
  opacity: 1;
  visibility: visible;
}

.setting_flex {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
@media print, screen and (min-width: 920px) {
  .setting_flex {
    flex-direction: row;
  }
}

.setting_font,
.setting_background {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 33px;
  margin-bottom: 33px;
}
@media print, screen and (min-width: 920px) {
  .setting_font,
  .setting_background {
    width: 50%;
    padding-bottom: 0;
    padding-top: 22px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
  }
}

.setting_font {
  border-bottom: 1px solid var(--line-color);
}
@media print, screen and (min-width: 920px) {
  .setting_font {
    border-bottom: 0;
    border-right: 1px solid var(--line-color);
  }
}

.setting_background {
  padding-bottom: 0;
  margin-bottom: 0;
}

.setting_title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
}
@media print, screen and (min-width: 920px) {
  .setting_title {
    font-size: 1.8rem;
    font-weight: 500;
  }
}

.setting_button_flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px 5px;
}
@media print, screen and (min-width: 920px) {
  .setting_button_flex {
    width: auto;
    gap: 16px;
  }
}
.setting_button_flex button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  border: 1px solid var(--line-color);
  border-radius: 9999px;
  height: 60px;
}
.setting_button_flex button .txt_s {
  font-size: 1.1rem;
}
@media print, screen and (min-width: 920px) {
  .setting_button_flex button .txt_s {
    font-size: 1.4rem;
  }
}
.setting_button_flex button .txt_l {
  font-size: 1.5rem;
}
@media print, screen and (min-width: 920px) {
  .setting_button_flex button .txt_l {
    font-size: 1.8rem;
  }
}
.setting_button_flex button .txt_m {
  font-size: 1.2rem;
}
@media print, screen and (min-width: 920px) {
  .setting_button_flex button .txt_m {
    font-size: 1.5rem;
  }
}
.setting_button_flex button.font_btn {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 920px) {
  .setting_button_flex button.font_btn {
    flex-direction: row;
  }
}
.setting_button_flex button.font_btn.active {
  border-color: var(--color-red);
}
.setting_button_flex button.font_default {
  width: calc((100% - 10px) / 3);
}
@media print, screen and (min-width: 920px) {
  .setting_button_flex button.font_default {
    width: 100%;
  }
}
.setting_button_flex button.font_large {
  width: calc((100% - 10px) / 3);
}
@media print, screen and (min-width: 920px) {
  .setting_button_flex button.font_large {
    width: calc((100% - 16px) / 2);
  }
}
.setting_button_flex button.font_small {
  width: calc((100% - 10px) / 3);
}
@media print, screen and (min-width: 920px) {
  .setting_button_flex button.font_small {
    width: calc((100% - 16px) / 2);
  }
}
.setting_button_flex button.background_btn.active {
  border-color: var(--color-red);
}
.setting_button_flex button.background_default {
  width: calc((100% - 16px) / 2);
}
.setting_button_flex button.background_blue {
  color: #fff;
  background-color: #00f;
  width: calc((100% - 16px) / 2);
}
.setting_button_flex button.background_yellow {
  width: calc((100% - 16px) / 2);
  background-color: #ff0;
}
.setting_button_flex button.background_black {
  color: var(--bg-white);
  width: calc((100% - 16px) / 2);
  background-color: var(--font-color);
}

.setting_close {
  text-align: center;
}
.setting_close button {
  display: inline-block;
  color: var(--key-color);
  font-size: 1.5rem;
  position: relative;
  padding: 0 0 3px 26px;
  border-bottom: 1px solid var(--key-color);
}
@media print, screen and (min-width: 920px) {
  .setting_close button {
    font-size: 1.8rem;
  }
}
.setting_close button::before, .setting_close button::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--key-color);
  position: absolute;
  top: 50%;
  left: 2px;
}
.setting_close button::before {
  transform: translateY(-50%) rotate(45deg);
}
.setting_close button::after {
  transform: translateY(-50%) rotate(-45deg);
}

.search_box {
  padding: 40px 40px;
  border-top: 1px solid var(--line-color);
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media print, screen and (min-width: 920px) {
  .search_box {
    padding: 60px 40px;
  }
}
.search_box.active {
  opacity: 1;
  visibility: visible;
}

.search_flex {
  display: flex;
  flex-direction: column;
  max-width: 874px;
  margin: 0 auto;
}

.search_keyword_area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-color);
}
@media print, screen and (min-width: 920px) {
  .search_keyword_area {
    flex-direction: row;
    align-items: center;
    gap: 70px;
  }
}

.search_keyword_area__title {
  font-size: 1.6rem;
  font-weight: 500;
  flex-shrink: 0;
}

.search_keyword_area__input {
  width: 100%;
}

.input_search {
  display: flex;
}

.input_search__text {
  width: calc(100% - 108px);
  border: 1px solid var(--line-color) !important;
  border-radius: 100px 0 0 100px;
  line-height: 1;
  padding: 11px 20px !important;
}

.input_search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  padding-right: 9px;
  background: var(--bg-color);
  border: 1px solid var(--line-color);
  border-left: 0;
  border-radius: 0 100px 100px 0;
  transition: 0.3s;
}
@media (hover: hover) {
  .input_search__btn:where(:any-link, :enabled, summary, span, dt, div):hover {
    background: var(--key-color);
    color: var(--bg-white);
  }
}
.input_search__btn:active {
  background: var(--key-color);
  color: var(--bg-white);
}
.input_search__btn span {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  font-size: 1.6rem;
  font-weight: 500;
}
.input_search__btn span:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e904";
  font-size: 2.1rem;
}

.search_osusume_area {
  padding-top: 40px;
}

.search_osusume_area__title {
  font-size: 1.6rem;
  font-weight: 500;
}

.search_osusume_area__tag {
  padding-top: 20px;
}

.search_osusume_area__tag__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.search_osusume_area__tag__list li a {
  display: flex;
  padding: 7px 19px;
  line-height: 1.4;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--key-color);
  background: var(--bg-color);
  border-radius: 100px;
}
@media (hover: hover) {
  .search_osusume_area__tag__list li a:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--bg-white);
    background: var(--key-color);
  }
}
.search_osusume_area__tag__list li a:active {
  color: var(--bg-white);
  background: var(--key-color);
}

.header_sp {
  display: flex;
  align-items: center;
  height: 50px;
}
@media print, screen and (min-width: 920px) {
  .header_sp {
    display: none;
  }
}
.header_sp .header__logo {
  font-size: 0;
  width: 50%;
  max-width: 158px;
  margin-left: 12px;
}

.header_sp_menu_group {
  display: flex;
  margin-left: auto;
}

.header_sp_setting button {
  width: 50px;
  height: 50px;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  color: var(--key-color);
}
.header_sp_setting button::before {
  margin-top: -2px;
  display: block;
  content: "\e903";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2rem;
  margin-bottom: 2px;
}

.sp_menu_toggle {
  position: relative;
  display: flex;
  align-items: center;
}
.sp_menu_toggle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 1px;
  height: calc(100% - 20px);
  background: var(--key-color);
}

.sp_menu_toggle__btn {
  width: 60px;
  height: 50px;
  padding: 11px 15px 9px;
}
.sp_menu_toggle__btn.active .sp_menu_toggle__btn__line span:nth-child(2) {
  opacity: 0;
}
.sp_menu_toggle__btn.active .sp_menu_toggle__btn__line span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
}
.sp_menu_toggle__btn.active .sp_menu_toggle__btn__line span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
}

.sp_menu_toggle__btn__line {
  position: relative;
  display: block;
  width: 100%;
  height: 14px;
}
.sp_menu_toggle__btn__line span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--key-color);
}
.sp_menu_toggle__btn__line span:nth-child(1) {
  top: calc(50% - 6px);
}
.sp_menu_toggle__btn__line span:nth-child(3) {
  top: calc(50% + 6px);
}

.sp_menu_toggle__btn__text {
  font-size: 1rem;
  font-family: "Marcellus", serif;
  color: var(--key-color);
  line-height: 1;
  margin-top: 4px;
}

.sp_global_nav {
  position: fixed;
  width: 100%;
  height: 100svh;
  top: 0;
  left: 0;
  display: block;
  z-index: 200;
  background: var(--bg-white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.sp_global_nav.active {
  opacity: 1;
  visibility: visible;
}

.sp_global_nav_inner {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

.sp_global_nav_header {
  padding: 17px 17px 0;
  display: flex;
  align-items: center;
  height: 67px;
}
.sp_global_nav_header .header__logo {
  font-size: 0;
  width: 50%;
  max-width: 158px;
  margin-left: 12px;
}

.sp_search_keyword_area {
  padding: 20px;
}

.sp_sub_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 0 20px;
}
.sp_sub_menu li {
  width: calc((100% - 16px) / 2);
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  line-height: 1.4;
}
.sp_sub_menu li a {
  position: relative;
  display: block;
  padding-left: 18px;
}
.sp_sub_menu li a:before {
  content: "";
  position: absolute;
  display: block;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-dark-gray);
  border-left: 1px solid var(--color-dark-gray);
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
@media (hover: hover) {
  .sp_sub_menu li a:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
  .sp_sub_menu li a:where(:any-link, :enabled, summary, span, dt, div):hover:before {
    border-top-color: var(--key-color);
    border-left-color: var(--key-color);
  }
}
.sp_sub_menu li a:active {
  color: var(--key-color);
}
.sp_sub_menu li a:active:before {
  border-top-color: var(--key-color);
  border-left-color: var(--key-color);
}

.sp_global_nav__list {
  margin-top: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line-color);
}

.sp_global_nav__list_item {
  margin-top: -1px;
}

.sp_global_nav__list_item__title {
  display: flex;
  border-top: 1px solid var(--line-color);
  line-height: 1.4;
}
.sp_global_nav__list_item__title a {
  display: block;
  width: 100%;
  padding: 20px;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media (hover: hover) {
  .sp_global_nav__list_item__title a:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
}
.sp_global_nav__list_item__title a:active {
  color: var(--key-color);
}
.sp_global_nav__list_item__title .toggle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  flex-shrink: 0;
}
.sp_global_nav__list_item__title .toggle:before {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  height: calc(100% - 20px);
  width: 1px;
  background: var(--line-color);
}
.sp_global_nav__list_item__title .toggle span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}
.sp_global_nav__list_item__title .toggle span:before, .sp_global_nav__list_item__title .toggle span:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: var(--key-color);
}
.sp_global_nav__list_item__title .toggle span:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.sp_global_nav__list_item__title .toggle.active {
  background-color: var(--bg-color);
}
.sp_global_nav__list_item__title .toggle.active span:after {
  transform: translate(-50%, -50%) rotate(-180deg);
}

.sp_global_nav__list_child_nav {
  display: none;
  padding: 30px 20px;
  background: var(--bg-color);
}
.sp_global_nav__list_child_nav.active {
  display: block;
}

.sp_global_nav__list_child_nav__item:not(:first-of-type) {
  margin-top: 20px;
}
.sp_global_nav__list_child_nav__item .first_link {
  margin-bottom: 10px;
}
.sp_global_nav__list_child_nav__item .first_link a {
  position: relative;
  display: block;
  padding: 0 0 16px 20px;
  display: block;
  line-height: 1.4;
  border-bottom: 1px solid var(--line-color);
  font-size: 1.5rem;
}
.sp_global_nav__list_child_nav__item .first_link a:before {
  content: "";
  position: absolute;
  display: block;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-dark-gray);
  border-left: 1px solid var(--color-dark-gray);
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
@media (hover: hover) {
  .sp_global_nav__list_child_nav__item .first_link a:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
  .sp_global_nav__list_child_nav__item .first_link a:where(:any-link, :enabled, summary, span, dt, div):hover:before {
    border-top-color: var(--key-color);
    border-left-color: var(--key-color);
  }
}
.sp_global_nav__list_child_nav__item .first_link a:active {
  color: var(--key-color);
}
.sp_global_nav__list_child_nav__item .first_link a:active:before {
  border-top-color: var(--key-color);
  border-left-color: var(--key-color);
}
.sp_global_nav__list_child_nav__item .second_link a {
  display: block;
  padding: 8px 20px;
  line-height: 1.4;
}
@media (hover: hover) {
  .sp_global_nav__list_child_nav__item .second_link a:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
}
.sp_global_nav__list_child_nav__item .second_link a:active {
  color: var(--key-color);
}

.sp_tel_box {
  background: var(--color-light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: 50px;
  padding-bottom: 100px;
}
.sp_tel_box .tel {
  display: flex;
  align-items: baseline;
  color: var(--key-color);
}
.sp_tel_box .tel a {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
  color: var(--key-color);
}
.sp_tel_box .tel a:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e905";
  margin-right: 5px;
  font-size: 1.9rem;
}
@media print, screen and (min-width: 920px) {
  .sp_tel_box .tel a:before {
    color: var(--key-color);
  }
}
.sp_tel_box .tel span {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
}
.sp_tel_box .text {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-red);
}

.footer {
  position: relative;
  background: var(--bg-white);
  background: linear-gradient(180deg, rgba(var(--rgb-bg-white), 1) 0%, rgba(var(--rgb-color-light-gray2), 1) 100%);
  padding-top: 120px;
  padding-bottom: 25px;
  z-index: 1;
}
@media print, screen and (min-width: 920px) {
  .footer {
    padding-top: 155px;
  }
}

@media print, screen and (min-width: 920px) {
  .footer_group {
    display: flex;
  }
}

@media print, screen and (min-width: 920px) {
  .footer_group_info {
    width: 50%;
    padding-right: 70px;
  }
}

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

.footer_contact {
  margin-top: 50px;
}
@media print, screen and (min-width: 920px) {
  .footer_contact {
    margin-top: 35px;
  }
}

.footer_contact__title {
  font-size: 1.4rem;
  font-weight: 500;
}
@media print, screen and (min-width: 920px) {
  .footer_contact__title {
    text-align: left;
  }
}
.footer_contact__title span {
  display: inline-flex;
  align-items: center;
}
.footer_contact__title span:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e905";
  margin-right: 5px;
  color: var(--font-color);
}
@media print, screen and (min-width: 920px) {
  .footer_contact__title span:before {
    color: var(--key-color);
  }
}

.footer_contact__number {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--font-color);
}
@media print, screen and (min-width: 920px) {
  .footer_contact__number {
    font-size: 3rem;
    font-weight: 600;
  }
}
.footer_contact__number span {
  font-size: 3.5rem;
}
@media print, screen and (min-width: 920px) {
  .footer_contact__number span {
    font-size: 4rem;
    font-weight: 600;
  }
}
.footer_contact__number a {
  display: inline-block;
  text-decoration: underline;
}

.footer_shop_date {
  margin-top: 25px;
}

.footer_shop_date__item {
  padding: 14px 0;
}
.footer_shop_date__item:not(:first-of-type) {
  border-top: 1px solid var(--line-color);
}
@media print, screen and (min-width: 920px) {
  .footer_shop_date__item {
    display: flex;
  }
}
.footer_shop_date__item.shop_date_child {
  padding-top: 0;
  border-top: 0;
}
@media print, screen and (min-width: 920px) {
  .footer_shop_date__item.shop_date_child {
    margin-top: -7px;
  }
}

.footer_shop_date__item__title {
  position: relative;
  padding-left: 23px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
}
@media print, screen and (min-width: 920px) {
  .footer_shop_date__item__title {
    width: 120px;
    padding-left: 25px;
    font-weight: bold;
  }
}
.footer_shop_date__item__title:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--key-color);
  font-size: 1.4rem;
}
@media print, screen and (min-width: 920px) {
  .footer_shop_date__item__title:before {
    top: 1px;
    font-size: 1.6rem;
  }
}
.shop_date_place .footer_shop_date__item__title:before {
  content: "\e906";
  font-size: 1.6rem;
  left: -1px;
}
@media print, screen and (min-width: 920px) {
  .shop_date_place .footer_shop_date__item__title:before {
    top: 0;
    font-size: 1.9rem;
  }
}
.shop_date_time .footer_shop_date__item__title:before {
  content: "\e902";
}
.shop_date_holiday .footer_shop_date__item__title:before {
  content: "\e901";
}

.footer_shop_date__item__text {
  margin-top: 4px;
  padding-left: 23px;
  line-height: 1.4;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 920px) {
  .footer_shop_date__item__text {
    margin-top: 0;
    padding-left: 25px;
  }
}
.footer_shop_date__item__text span {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 920px) {
  .footer_shop_date__item__text span {
    margin-top: 5px;
  }
}

.footer_sns_list {
  display: flex;
  margin-top: 15px;
  gap: 15px;
}
@media print, screen and (min-width: 920px) {
  .footer_sns_list {
    margin-top: 25px;
  }
}
.footer_sns_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  background: var(--color-gray);
}
.footer_sns_list li a i {
  display: block;
  line-height: 1;
}
.footer_sns_list li a i:before {
  line-height: 1;
  color: var(--bg-white);
  font-size: 2rem;
}
.footer_sns_list li a i.icon-sns_inst:before {
  font-size: 2.2rem;
}
@media (hover: hover) {
  .footer_sns_list li a:where(:any-link, :enabled, summary, span, dt, div):hover {
    background-color: var(--key-color);
  }
}
.footer_sns_list li a:active {
  background-color: var(--key-color);
}

.footer_group_nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}
@media print, screen and (min-width: 768px) {
  .footer_group_nav {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
}
@media print, screen and (min-width: 920px) {
  .footer_group_nav {
    width: 50%;
    padding-bottom: 170px;
  }
}

.footer_nav {
  display: flex;
  width: 100%;
  gap: 20px;
}
@media print, screen and (min-width: 920px) {
  .footer_nav {
    gap: 150px;
    width: auto;
    justify-content: space-between;
  }
}

.footer_nav__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media print, screen and (min-width: 920px) {
  .footer_nav__list {
    width: auto;
  }
}
.footer_nav__list.font_size_m {
  font-size: 1.2rem;
}
@media print, screen and (min-width: 920px) {
  .footer_nav__list.font_size_m {
    font-size: 1.4rem;
  }
}
.footer_nav__list li {
  flex-shrink: 0;
}
.footer_nav__list li:not(:first-child) {
  margin-top: 10px;
}
@media (hover: hover) {
  .footer_nav__list a:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: var(--key-color);
  }
}
.footer_nav__list a:active {
  color: var(--key-color);
}

.footer_group_nav__bottom_link {
  width: 80px;
  bottom: 0;
  right: 0;
  margin-top: 60px;
}
@media print, screen and (min-width: 768px) {
  .footer_group_nav__bottom_link {
    width: 100px;
    margin-top: 0;
    position: absolute;
  }
}
@media print, screen and (min-width: 920px) {
  .footer_group_nav__bottom_link {
    width: 130px;
  }
}

.footer_copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 920px) {
  .footer_copyright {
    margin-top: 50px;
  }
}

.page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: var(--key-color);
  border-radius: 100vmax;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
}
.page_top.active {
  visibility: visible;
  opacity: 1;
}
@media print, screen and (min-width: 768px) {
  .page_top {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}
.page_top::before {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% + 2px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--bg-white);
  border-left: 1px solid var(--bg-white);
  transition: 0.3s;
}
@media print, screen and (min-width: 768px) {
  .page_top::before {
    top: calc(50% + 4px);
    width: 14px;
    height: 14px;
  }
}

.page_head_title_l {
  position: relative;
  padding-top: 6.5rem;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .page_head_title_l {
    padding-top: 8rem;
    margin-bottom: 40px;
  }
}
.page_head_title_l .en {
  position: absolute;
  left: -0.15em;
  top: 0;
  font-family: "Marcellus", serif;
  font-size: 7rem;
  font-weight: normal;
  line-height: 1;
  color: rgba(var(--rgb-color-gray), 0.2);
}
@media print, screen and (min-width: 768px) {
  .page_head_title_l .en {
    left: -0.6em;
    font-size: 9rem;
  }
}
.page_head_title_l .jp {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.3;
}
@media print, screen and (min-width: 768px) {
  .page_head_title_l .jp {
    font-size: 4rem;
  }
}
.page_head_title_l.sp_en_line2 {
  padding-top: 13rem;
}
@media print, screen and (min-width: 768px) {
  .page_head_title_l.sp_en_line2 {
    padding-top: 8rem;
  }
}
.page_head_title_l.sp_en_line2 .en {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  .page_head_title_l.sp_en_line2 .en {
    flex-direction: row;
    gap: 0 0.35em;
  }
}
.page_head_title_l.sp_en_line2 .en span:nth-child(2) {
  padding-left: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .page_head_title_l.sp_en_line2 .en span:nth-child(2) {
    padding-left: 0;
  }
}
.page_head_title_l.en_line2 {
  padding-top: 13rem;
}
@media print, screen and (min-width: 768px) {
  .page_head_title_l.en_line2 {
    padding-top: 17rem;
  }
}
.page_head_title_l.en_line2 .en {
  display: flex;
  flex-direction: column;
}
.page_head_title_l.en_line2 .en span {
  white-space: nowrap;
}
@media print, screen and (min-width: 920px) {
  .page_head_title_l.en_line2 .en span {
    white-space: nowrap;
  }
}
.page_head_title_l.en_line2 .en span:nth-child(2) {
  padding-left: 0.5em;
}

.page_head_title_m {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .page_head_title_m {
    gap: 30px;
  }
}
.page_head_title_m:not(.line_none):after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: var(--line-color);
}
.page_head_title_m .jp {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
}
@media print, screen and (min-width: 768px) {
  .page_head_title_m .jp {
    font-size: 2.8rem;
  }
}
.page_head_title_m .en {
  font-family: "Marcellus", serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  color: var(--color-gray);
}

.page_btn_box {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .page_btn_box {
    margin-top: 40px;
  }
}

.page_btn {
  position: relative;
  display: inline-flex;
  min-width: 225px;
  align-items: center;
  border: 1px solid var(--font-color);
  border-radius: 300px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 13px 40px 15px 20px;
}
@media print, screen and (min-width: 768px) {
  .page_btn {
    font-size: 1.8rem;
    padding: 10px 40px 12px 28px;
  }
}
.page_btn:not(.type_more_btn):after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 26px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--font-color);
  border-left: 1px solid var(--font-color);
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s;
}
@media (hover: hover) {
  .page_btn:where(:any-link, :enabled, summary, span, dt, div):hover {
    background-color: var(--key-color);
    color: var(--bg-white);
  }
  .page_btn:where(:any-link, :enabled, summary, span, dt, div):hover:not(.type_more_btn):after {
    border-top-color: var(--bg-white);
    border-left-color: var(--bg-white);
  }
}
.page_btn:active {
  background-color: var(--key-color);
  color: var(--bg-white);
}
.page_btn:active:not(.type_more_btn):after {
  border-top-color: var(--bg-white);
  border-left-color: var(--bg-white);
}

.page_btn.type_more_btn:after, .page_btn.type_more_btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 16px;
  height: 1px;
  background: var(--font-color);
  transform: translateY(-50%);
  transition: 0.3s ease;
}
.page_btn.type_more_btn:after {
  transform: translateY(-50%) rotate(90deg);
}
.page_btn.type_more_btn .loading {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 0;
  left: calc(50% - 100px);
  width: 200px;
  padding-left: 30px;
  height: 100%;
  opacity: 0;
  transition: 0.3s;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 768px) {
  .page_btn.type_more_btn .loading {
    font-size: 1.6rem;
  }
}
.page_btn.type_more_btn .loading span {
  display: inline-block;
  border-radius: 100px;
  width: 25px;
  height: 25px;
  border-top: 3px solid rgba(var(--color-gray), 0.4);
  border-right: 3px solid rgba(var(--color-gray), 0.4);
  border-bottom: 3px solid rgba(var(--color-gray), 0.4);
  border-left: 3px solid var(--font-color);
  transform: translateZ(0);
  animation: loadAnime 3s linear infinite;
  vertical-align: middle;
}
.page_btn.type_more_btn .text {
  transition: 0.3s;
}
.page_btn.type_more_btn.click:after, .page_btn.type_more_btn.click:before {
  opacity: 0;
}
.page_btn.type_more_btn.click .loading {
  opacity: 1;
}
.page_btn.type_more_btn.click .text {
  opacity: 0;
}
@media (hover: hover) {
  .page_btn.type_more_btn:where(:any-link, :enabled, summary, span, dt, div):hover:after, .page_btn.type_more_btn:where(:any-link, :enabled, summary, span, dt, div):hover:before {
    background-color: var(--bg-white);
  }
}
.page_btn.type_more_btn:active:after, .page_btn.type_more_btn:active:before {
  background-color: var(--bg-white);
}

@keyframes loadAnime {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.page_file_btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  padding: 10px 60px 10px 26px;
  color: var(--font-color);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  border: 1px solid #5a5454;
  border-radius: 100px;
  word-break: break-all;
  text-align: left;
  padding: 13px 60px 15px 20px;
}
@media print, screen and (min-width: 768px) {
  .page_file_btn {
    font-size: 1.8rem;
    padding: 10px 60px 12px 28px;
  }
}
.page_file_btn span {
  flex-shrink: 0;
  font-size: 1.2rem;
  margin-left: auto;
  color: var(--color-dark-gray2);
  padding-left: 5px;
  margin-right: -10px;
  transition: 0.3s;
}
.page_file_btn::after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  padding-left: 0;
  font-family: "icomoon";
  line-height: 1;
  font-weight: normal;
}
.page_file_btn[target=_blank]::after {
  content: "\e900";
  font-size: 1.2rem;
  color: var(--bg-white);
  background-color: #5a5454;
  border-left: 1px solid var(--bg-white);
}
@media print, screen and (min-width: 768px) {
  .page_file_btn[target=_blank]::after {
    font-size: 1.5rem;
  }
}
@media (hover: hover) {
  .page_file_btn[target=_blank]:where(:any-link, :enabled, summary, span, dt, div):hover {
    color: #5a5454;
    background-color: var(--line-color);
  }
}
.page_file_btn[target=_blank]:active {
  color: #5a5454;
  background-color: var(--line-color);
}
.page_file_btn[href$=".pdf"], .page_file_btn[href$=".PDF"] {
  border-color: var(--font-color);
}
.page_file_btn[href$=".pdf"]::after, .page_file_btn[href$=".PDF"]::after {
  content: "\e90c";
  color: var(--color-red);
  font-size: 1.8rem;
  background-color: var(--color-light-gray3);
  transition: 0.3s;
}
@media print, screen and (min-width: 768px) {
  .page_file_btn[href$=".pdf"]::after, .page_file_btn[href$=".PDF"]::after {
    font-size: 1.9rem;
  }
}
@media (hover: hover) {
  .page_file_btn[href$=".pdf"]:where(:any-link, :enabled, summary, span, dt, div):hover, .page_file_btn[href$=".PDF"]:where(:any-link, :enabled, summary, span, dt, div):hover {
    border-color: var(--key-color);
    background-color: var(--key-color);
    color: var(--bg-white);
  }
  .page_file_btn[href$=".pdf"]:where(:any-link, :enabled, summary, span, dt, div):hover span, .page_file_btn[href$=".PDF"]:where(:any-link, :enabled, summary, span, dt, div):hover span {
    color: var(--bg-white);
  }
  .page_file_btn[href$=".pdf"]:where(:any-link, :enabled, summary, span, dt, div):hover::after, .page_file_btn[href$=".PDF"]:where(:any-link, :enabled, summary, span, dt, div):hover::after {
    color: var(--bg-white);
    background-color: var(--key-color);
  }
}
.page_file_btn[href$=".pdf"]:active, .page_file_btn[href$=".PDF"]:active {
  border-color: var(--key-color);
  background-color: var(--key-color);
  color: var(--bg-white);
}
.page_file_btn[href$=".pdf"]:active span, .page_file_btn[href$=".PDF"]:active span {
  color: var(--bg-white);
}
.page_file_btn[href$=".pdf"]:active::after, .page_file_btn[href$=".PDF"]:active::after {
  color: var(--bg-white);
  background-color: var(--key-color);
}

.parts_owned_media_slider.non-swiper .parts_owned_media_slider_controller__prev_next,
.parts_owned_media_slider.non-swiper .parts_owned_media_slider_controller__pagination,
.parts_owned_media_slider_controller.non-swiper .parts_owned_media_slider_controller__prev_next,
.parts_owned_media_slider_controller.non-swiper .parts_owned_media_slider_controller__pagination {
  display: none;
}
.parts_owned_media_slider.non-swiper .parts_owned_media_slider__wrapper,
.parts_owned_media_slider_controller.non-swiper .parts_owned_media_slider__wrapper {
  gap: 30px;
}
.parts_owned_media_slider.non-swiper .parts_owned_media_slider__item,
.parts_owned_media_slider_controller.non-swiper .parts_owned_media_slider__item {
  width: 26.7%;
}

.parts_owned_media_slider {
  overflow: visible;
  align-items: stretch;
}

.parts_owned_media_slider__item {
  height: auto;
}
.parts_owned_media_slider__item.is_movie .parts_owned_media_slider__img {
  position: relative;
}
.parts_owned_media_slider__item.is_movie .parts_owned_media_slider__img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  aspect-ratio: 1;
  background-image: url("../img/ownedmedia/icon_movie.svg");
}
.parts_owned_media_slider__item a {
  display: flex;
  height: 100%;
  flex-direction: column;
}
@media (hover: hover) {
  .parts_owned_media_slider__item a:where(:any-link, :enabled, summary, span, dt, div):hover .parts_owned_media_slider__img img {
    transform: scale(1.05);
  }
  .parts_owned_media_slider__item a:where(:any-link, :enabled, summary, span, dt, div):hover .parts_owned_media_slider__text {
    color: var(--key-color);
  }
}
.parts_owned_media_slider__item a:active .parts_owned_media_slider__img img {
  transform: scale(1.05);
}
.parts_owned_media_slider__item a:active .parts_owned_media_slider__text {
  color: var(--key-color);
}

.parts_owned_media_slider__img {
  border-radius: 8px;
  overflow: hidden;
}
.parts_owned_media_slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.parts_owned_media_slider__category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.parts_owned_media_slider__category li {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.3;
  padding-left: 15px;
}
.parts_owned_media_slider__category li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: var(--key-color);
}

.parts_owned_media_slider__text {
  margin-top: 15px;
  font-weight: 500;
  transition: 0.3s;
}
@media print, screen and (min-width: 920px) {
  .parts_owned_media_slider__text {
    font-size: 1.8rem;
  }
}

.parts_owned_media_slider_controller {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-bottom: 100px;
  gap: 40px 10px;
}
@media print, screen and (min-width: 920px) {
  .parts_owned_media_slider_controller {
    flex-wrap: nowrap;
    padding-bottom: 120px;
    gap: 30px;
  }
}

.parts_owned_media_slider_controller__prev_next {
  position: relative;
  display: flex;
  flex-shrink: 0;
}

.parts_owned_media_slider_controller__prev {
  margin-top: 0;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  height: 25px;
  width: 40px;
  border-right: 1px solid var(--font-color);
  cursor: pointer;
  transition: 0.3s;
}
@media print, screen and (min-width: 920px) {
  .parts_owned_media_slider_controller__prev {
    height: 33px;
    width: 50px;
  }
}
@media (hover: hover) {
  .parts_owned_media_slider_controller__prev:where(:any-link, :enabled, summary, span, dt, div):hover:before {
    border-bottom-color: var(--key-color);
    border-right-color: var(--key-color);
  }
}
.parts_owned_media_slider_controller__prev:active:before {
  border-bottom-color: var(--key-color);
  border-right-color: var(--key-color);
}
.parts_owned_media_slider_controller__prev:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: calc(50% + 2px);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--font-color);
  border-right: 1px solid var(--font-color);
  transform: translate(-50%, -50%) rotate(135deg);
}
.parts_owned_media_slider_controller__prev:after {
  content: none;
}

.parts_owned_media_slider_controller__next {
  margin-top: 0;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  height: 25px;
  width: 40px;
  transition: 0.3s;
  cursor: pointer;
}
@media print, screen and (min-width: 920px) {
  .parts_owned_media_slider_controller__next {
    height: 33px;
    width: 50px;
  }
}
@media (hover: hover) {
  .parts_owned_media_slider_controller__next:where(:any-link, :enabled, summary, span, dt, div):hover:before {
    border-bottom-color: var(--key-color);
    border-left-color: var(--key-color);
  }
}
.parts_owned_media_slider_controller__next:active:before {
  border-bottom-color: var(--key-color);
  border-left-color: var(--key-color);
}
.parts_owned_media_slider_controller__next:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: calc(50% - 2px);
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--font-color);
  border-left: 1px solid var(--font-color);
  transform: translate(-50%, -50%) rotate(135deg);
}
.parts_owned_media_slider_controller__next:after {
  content: none;
}

.swiper-pagination,
.parts_owned_media_slider_controller__pagination {
  display: flex;
  gap: 16px;
  position: relative;
  text-align: left;
  bottom: auto !important;
  left: auto;
  line-height: 1;
  font-size: 0;
  width: auto !important;
}
@media print, screen and (min-width: 920px) {
  .swiper-pagination,
  .parts_owned_media_slider_controller__pagination {
    gap: 19px;
  }
}
.swiper-pagination .swiper-pagination-bullet,
.parts_owned_media_slider_controller__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  background: var(--bg-white);
  border: 1px solid var(--line-color);
  opacity: 1;
  transition: 0.3s;
}
@media print, screen and (min-width: 920px) {
  .swiper-pagination .swiper-pagination-bullet,
  .parts_owned_media_slider_controller__pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.parts_owned_media_slider_controller__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--key-color);
  border-color: var(--key-color);
}
@media (hover: hover) {
  .swiper-pagination .swiper-pagination-bullet:where(:any-link, :enabled, summary, span, dt, div):hover,
  .parts_owned_media_slider_controller__pagination .swiper-pagination-bullet:where(:any-link, :enabled, summary, span, dt, div):hover {
    background-color: var(--key-color);
    border-color: var(--key-color);
  }
}
.swiper-pagination .swiper-pagination-bullet:active,
.parts_owned_media_slider_controller__pagination .swiper-pagination-bullet:active {
  background-color: var(--key-color);
  border-color: var(--key-color);
}

.parts_owned_media_slider_controller__btn_box {
  margin-left: auto;
  width: 100%;
  text-align: right;
}
@media print, screen and (min-width: 920px) {
  .parts_owned_media_slider_controller__btn_box {
    text-align: left;
    width: auto;
  }
}

.parts_type_bnr_link_block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block {
    flex-direction: row;
    gap: 30px 0;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.parts_type_bnr_link_block__item {
  display: flex;
  width: 100%;
}
.parts_type_bnr_link_block__item.sp_colm2_1 {
  width: calc(50% - 5px);
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__item.colm4_1 {
    width: 25%;
    padding: 0 15px;
  }
  .parts_type_bnr_link_block__item.colm3_1 {
    width: 33.33333%;
    padding: 0 15px;
  }
  .parts_type_bnr_link_block__item.colm2_1 {
    width: 50%;
    padding: 0 15px;
  }
}
.parts_type_bnr_link_block__item > a, .parts_type_bnr_link_block__item > span {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .parts_type_bnr_link_block__item > a, .parts_type_bnr_link_block__item > span {
    border-radius: 8px;
  }
}
.parts_type_bnr_link_block__item > a img, .parts_type_bnr_link_block__item > span img {
  width: 100%;
  transition: 0.3s;
}
@media (hover: hover) {
  .parts_type_bnr_link_block__item > a:where(:any-link, :enabled, summary, span, dt, div):hover img {
    transform: scale(1.05);
  }
}
.parts_type_bnr_link_block__item > a:active img {
  transform: scale(1.05);
}
.parts_type_bnr_link_block__item.type_text > a, .parts_type_bnr_link_block__item.type_text > span {
  border: 1px solid var(--line-color);
  padding: 20px;
}
.parts_type_bnr_link_block__item.type_text > a {
  position: relative;
  padding-right: 50px;
}
.parts_type_bnr_link_block__item.type_text > a:not([target=_blank]):before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 100px;
  border: 1px solid var(--font-color);
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__item.type_text > a:not([target=_blank]):before {
    width: 25px;
    height: 25px;
  }
}
.parts_type_bnr_link_block__item.type_text > a:not([target=_blank]):after {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 3px);
  right: 29px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--font-color);
  border-left: 1px solid var(--font-color);
  transform: rotate(135deg);
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__item.type_text > a:not([target=_blank]):after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    right: 30px;
  }
}
.parts_type_bnr_link_block__item.type_text > a[target=_blank] {
  padding-right: 45px;
}
.parts_type_bnr_link_block__item.type_text > a[target=_blank]:after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  font-size: 1.2em;
}
@media (hover: hover) {
  .parts_type_bnr_link_block__item.type_text > a:where(:any-link, :enabled, summary, span, dt, div):hover {
    background-color: var(--key-color);
    color: var(--bg-white);
  }
}
.parts_type_bnr_link_block__item.type_text > a:active {
  background-color: var(--key-color);
  color: var(--bg-white);
}

.parts_type_bnr_link_block__facility {
  font-size: 1.4rem;
  line-height: 1.4;
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__facility {
    font-size: 1.5rem;
  }
}

.parts_type_bnr_link_block__name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 600;
  gap: 10px 20px;
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__name {
    margin-top: 4px;
    font-size: 2.3rem;
  }
}
.parts_type_bnr_link_block__name .font_s {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__name .font_s {
    font-size: 1.5rem;
  }
}

.page_news_list__item {
  border-bottom: 1px solid var(--line-color);
}
.page_news_list__item.hidden {
  display: none;
}
.page_news_list__item a {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 15px 0;
}
@media print, screen and (min-width: 920px) {
  .page_news_list__item a {
    flex-direction: row;
    gap: 40px;
    padding: 20px 0;
  }
}
@media (hover: hover) {
  .page_news_list__item a:where(:any-link, :enabled, summary, span, dt, div):hover {
    background-color: var(--bg-color);
  }
}
.page_news_list__item a:active {
  background-color: var(--bg-color);
}

.page_news_list__item_none {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 15px 0;
}

.page_news_list__none {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 15px 0;
}

.page_news_list__data_category {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 20px;
  min-width: 170px;
}
.page_news_list__data_category time {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-gray);
}
.page_news_list__data_category .category {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  padding-left: 15px;
}
.page_news_list__data_category .category:before {
  position: absolute;
  left: 0;
  top: calc(50% - 4px);
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 20px;
  background: var(--color-gray);
}
.page_news_list__data_category .category.category_info:before {
  background-color: var(--key-color);
}
.page_news_list__data_category .category.category_closed:before {
  background-color: var(--color-red);
}
.page_news_list__data_category .category.category_recruit:before {
  background-color: var(--color-green);
}

.page_news_list__text {
  line-height: 1.6;
  margin-top: 3px;
}
@media print, screen and (min-width: 920px) {
  .page_news_list__text {
    margin-top: 0;
  }
}

.gsc-thumbnail-inside {
  margin-bottom: 5px;
}

.gsc-table-result,
.gsc-thumbnail-inside,
.gsc-url-top {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.gs-result .gs-title,
.gs-result .gs-title * {
  text-decoration: none !important;
}

.gs-webResult.gs-result a.gs-title:visited,
.gs-webResult.gs-result a.gs-title:visited b,
.gs-imageResult a.gs-title:visited,
.gs-imageResult a.gs-title:visited b {
  color: var(--key-color) !important;
  text-decoration: none !important;
}

.gs-webResult.gs-result a.gs-title:link,
.gs-webResult.gs-result a.gs-title:link b,
.gs-imageResult a.gs-title:link,
.gs-imageResult a.gs-title:link b {
  color: var(--key-color) !important;
  text-decoration: none !important;
}

.gs-webResult.gs-result a.gs-title:hover,
.gs-webResult.gs-result a.gs-title:hover b,
.gs-imageResult a.gs-title:hover,
.gs-imageResult a.gs-title:hover b {
  text-decoration: underline !important;
}

.gs-webResult div.gs-visibleUrl,
.gs-imageResult div.gs-visibleUrl {
  color: #6f6f6f !important;
}

.gsc-results .gsc-cursor-box {
  margin: 20px 0 10px !important;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page {
  display: inline-block !important;
  color: var(--key-color) !important;
  padding: 5px 3px;
  width: 30px;
  margin-bottom: 10px;
  text-align: center;
  border: 1px var(--key-color) solid !important;
}

.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
  color: var(--bg-white) !important;
  background-color: var(--key-color) !important;
}

.gsc-selected-option-container {
  min-width: 105px !important;
}

/*focus設定 sp,tabは無効*/
:focus:not([tabindex="-1"]),
.focus-visible:not([tabindex="-1"]) {
  outline-color: rgb(59, 153, 252);
  outline-offset: -3px;
  outline-style: solid;
  outline-width: 3px;
  transition: outline 0s;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: 0 !important;
}

a:focus,
span:focus,
button:focus {
  outline: 0;
}
@media (hover: hover) {
  a:focus,
  span:focus,
  button:focus {
    outline: 3px solid rgb(59, 153, 252);
  }
}

.skip {
  position: fixed;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 0px;
  color: var(--bg-white);
  font-size: 1.5rem;
  font-weight: bold;
  background-color: var(--font-color);
  left: 0;
  top: 0;
  text-align: center;
  z-index: 1000;
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.skip:focus {
  height: auto;
  opacity: 1;
  padding: 5px 0;
  pointer-events: visible;
}

html.set-font_large {
  font-size: 75%;
}
html.set-font_small {
  font-size: 50%;
}

@media (hover: hover) {
  body.set-background_yellow a:where(:any-link, :enabled, summary, span, dt, div):hover:not(:has(img)),
  body.set-background_yellow button:where(:any-link, :enabled, summary, span, dt, div):hover:not(:has(img)),
  body.set-background_blue a:where(:any-link, :enabled, summary, span, dt, div):hover:not(:has(img)),
  body.set-background_blue button:where(:any-link, :enabled, summary, span, dt, div):hover:not(:has(img)),
  body.set-background_black a:where(:any-link, :enabled, summary, span, dt, div):hover:not(:has(img)),
  body.set-background_black button:where(:any-link, :enabled, summary, span, dt, div):hover:not(:has(img)) {
    text-decoration: underline;
  }
  body.set-background_yellow a:where(:any-link, :enabled, summary, span, dt, div):hover:has(img),
  body.set-background_yellow button:where(:any-link, :enabled, summary, span, dt, div):hover:has(img),
  body.set-background_blue a:where(:any-link, :enabled, summary, span, dt, div):hover:has(img),
  body.set-background_blue button:where(:any-link, :enabled, summary, span, dt, div):hover:has(img),
  body.set-background_black a:where(:any-link, :enabled, summary, span, dt, div):hover:has(img),
  body.set-background_black button:where(:any-link, :enabled, summary, span, dt, div):hover:has(img) {
    opacity: 0.7;
  }
}
body.set-background_yellow a:active:not(:has(img)),
body.set-background_yellow button:active:not(:has(img)),
body.set-background_blue a:active:not(:has(img)),
body.set-background_blue button:active:not(:has(img)),
body.set-background_black a:active:not(:has(img)),
body.set-background_black button:active:not(:has(img)) {
  text-decoration: underline;
}
body.set-background_yellow a:active:has(img),
body.set-background_yellow button:active:has(img),
body.set-background_blue a:active:has(img),
body.set-background_blue button:active:has(img),
body.set-background_black a:active:has(img),
body.set-background_black button:active:has(img) {
  opacity: 0.7;
}
body.set-background_yellow .input_search__text,
body.set-background_blue .input_search__text,
body.set-background_black .input_search__text {
  background-color: transparent !important;
}
body.set-background_yellow .cms-contents .element_grp_text .scroll_wrap table td,
body.set-background_yellow .cms-contents .element_grp_text .scroll_wrap table th,
body.set-background_yellow .cms-contents .element_grp_text figure.table table td,
body.set-background_yellow .cms-contents .element_grp_text figure.table table th,
body.set-background_blue .cms-contents .element_grp_text .scroll_wrap table td,
body.set-background_blue .cms-contents .element_grp_text .scroll_wrap table th,
body.set-background_blue .cms-contents .element_grp_text figure.table table td,
body.set-background_blue .cms-contents .element_grp_text figure.table table th,
body.set-background_black .cms-contents .element_grp_text .scroll_wrap table td,
body.set-background_black .cms-contents .element_grp_text .scroll_wrap table th,
body.set-background_black .cms-contents .element_grp_text figure.table table td,
body.set-background_black .cms-contents .element_grp_text figure.table table th {
  background-color: var(--bg-white) !important;
}
body.set-background_yellow .cms-contents .element_grp_text p span,
body.set-background_yellow .cms-contents .element_grp_text p strong,
body.set-background_blue .cms-contents .element_grp_text p span,
body.set-background_blue .cms-contents .element_grp_text p strong,
body.set-background_black .cms-contents .element_grp_text p span,
body.set-background_black .cms-contents .element_grp_text p strong {
  background: none !important;
}

body.set-background_yellow .top_about_area,
body.set-background_yellow .top_owned_media_area {
  background: none;
}
body.set-background_yellow .setting_button_flex .font_btn.active,
body.set-background_yellow .setting_button_flex .background_btn.active {
  border-color: #e3351e;
}
body.set-background_yellow .setting_button_flex .background_default {
  background: #fff;
}
body.set-background_yellow .setting_button_flex .background_blue {
  color: #fff;
}
body.set-background_yellow .setting_button_flex .background_black {
  color: #ff0;
}
body.set-background_yellow .search_osusume_area__tag__list a {
  border: 1px solid var(--line-color);
}
@media (hover: hover) {
  body.set-background_yellow .footer_nav__list_item a:where(:any-link, :enabled, summary, span, dt, div):hover {
    text-decoration: underline;
  }
}
body.set-background_yellow .footer_nav__list_item a:active {
  text-decoration: underline;
}
body.set-background_yellow .parts_type_card_block__item > span {
  border: 1px solid var(--line-color);
}
body.set-background_yellow .parts_card_link__item > a {
  border: 1px solid var(--line-color);
}
body.set-background_yellow .gsc-control-cse {
  background: var(--bg-white);
  border: none;
}
body.set-background_yellow .gsc-above-wrapper-area {
  border-bottom: var(--line-color);
}
body.set-background_yellow .gsc-result-info {
  color: var(--font-color);
}
body.set-background_yellow .gsc-webResult.gsc-result {
  border: none;
}
body.set-background_yellow .gs-webResult div.gs-visibleUrl,
body.set-background_yellow .gs-imageResult div.gs-visibleUrl {
  color: var(--font-color) !important;
}
body.set-background_yellow .gs-webResult .gs-snippet,
body.set-background_yellow .gs-fileFormatType {
  color: var(--font-color);
}
body.set-background_yellow .gs-fileFormat {
  color: var(--font-color);
}
body.set-background_yellow .gsc-orderby-label {
  color: var(--font-color);
}
body.set-background_yellow .gs-webResult.gs-result a.gs-title:link,
body.set-background_yellow .gs-webResult.gs-result a.gs-title:link b,
body.set-background_yellow .gs-imageResult a.gs-title:link,
body.set-background_yellow .gs-imageResult a.gs-title:link b {
  text-decoration: underline !important;
}
@media (hover: hover) {
  body.set-background_yellow .gs-webResult.gs-result a.gs-title:link:where(:any-link, :enabled, summary, span, dt, div):hover,
  body.set-background_yellow .gs-webResult.gs-result a.gs-title:link b:where(:any-link, :enabled, summary, span, dt, div):hover,
  body.set-background_yellow .gs-imageResult a.gs-title:link:where(:any-link, :enabled, summary, span, dt, div):hover,
  body.set-background_yellow .gs-imageResult a.gs-title:link b:where(:any-link, :enabled, summary, span, dt, div):hover {
    text-decoration: none !important;
  }
}
body.set-background_yellow .gs-webResult.gs-result a.gs-title:link:active,
body.set-background_yellow .gs-webResult.gs-result a.gs-title:link b:active,
body.set-background_yellow .gs-imageResult a.gs-title:link:active,
body.set-background_yellow .gs-imageResult a.gs-title:link b:active {
  text-decoration: none !important;
}
body.set-background_yellow .feature_top_main_menu_area_list__item .item_content::before,
body.set-background_yellow .feature_top_second_menu_content::before {
  background: #000;
  background: linear-gradient(180deg, #000 0%, #000 100%);
}
body.set-background_yellow .feature_summary_img img {
  background-color: #fff;
}
body.set-background_yellow .feature_footer_area {
  background-color: #000;
}
body.set-background_yellow .feature_footer_big_bnr_area .left .layer,
body.set-background_yellow .center_facility_footer_big_bnr_area .left .layer,
body.set-background_yellow .feature_footer_big_bnr_area .right .layer,
body.set-background_yellow .center_facility_footer_big_bnr_area .right .layer,
body.set-background_yellow .feature_footer_big_bnr_area .wide .layer,
body.set-background_yellow .center_facility_footer_big_bnr_area .wide .layer {
  background: rgba(0, 0, 0, 0.8);
}
body.set-background_yellow .feature_equipment_frame {
  background-color: var(--bg-color);
}
body.set-background_yellow .feature_footer_link {
  background: var(--bg-white);
}
body.set-background_yellow .feature_footer_link::before {
  background: #000;
}
body.set-background_yellow .see_number_head_area_title {
  color: #fff;
}
body.set-background_yellow .see_number_head_area_text {
  color: #fff;
}
body.set-background_yellow .see_number_head_area_title .en {
  color: rgba(255, 255, 255, 0.4);
}
body.set-background_yellow .see_number_head_area_title .main svg path,
body.set-background_yellow .see_number_head_area_title .main svg rect {
  fill: #fff;
}
body.set-background_yellow .see_number_section__content {
  background: #ff0;
}
body.set-background_yellow .see_number_admission_disease__img .img_count .sub {
  color: #000;
}
body.set-background_yellow .see_number_admission_disease__img .img_count .main {
  color: #000;
}
body.set-background_yellow .see_number_admission_disease__img .img_count .main strong {
  color: #000;
}
body.set-background_yellow .center_out_patiant_area {
  color: #fff;
}
body.set-background_yellow .center_target_list__item {
  border: 1px solid var(--line-color);
}
body.set-background_yellow .center_facility_intro__text_link {
  color: #000;
}
body.set-background_yellow .center_facility_intro__text_link a {
  color: #000;
}

body.set-background_blue a:focus,
body.set-background_blue span:focus,
body.set-background_blue button:focus {
  outline: 0;
}
@media (hover: hover) {
  body.set-background_blue a:focus,
  body.set-background_blue span:focus,
  body.set-background_blue button:focus {
    outline: 3px solid #ff0;
  }
}
body.set-background_blue .header__logo img {
  background: #fff;
}
body.set-background_blue .header_pc_emergency button img {
  background: var(--bg-color);
}
body.set-background_blue .setting_button_flex .font_btn.active,
body.set-background_blue .setting_button_flex .background_btn.active {
  border-color: #ff0;
}
body.set-background_blue .setting_button_flex .background_default {
  color: #2c2424;
  background: #fff;
}
body.set-background_blue .setting_button_flex .background_blue {
  color: #fff;
}
body.set-background_blue .setting_button_flex .background_yellow {
  color: #000;
}
body.set-background_blue .setting_button_flex .background_black {
  color: #ff0;
  background: #000;
}
body.set-background_blue .search_osusume_area__tag__list a {
  border: 1px solid var(--line-color);
}
body.set-background_blue .parts_type_card_block__title img {
  background: #fff;
}
body.set-background_blue .top_medical_care_main_menu__img svg path {
  fill: #fff;
}
body.set-background_blue .parts_type_card_block__item > span {
  border: 1px solid var(--line-color);
}
body.set-background_blue .parts_card_link__item > a {
  border: 1px solid var(--line-color);
}
body.set-background_blue .footer_logo img {
  background: #fff;
}
@media (hover: hover) {
  body.set-background_blue .footer_nav__list_item a:where(:any-link, :enabled, summary, span, dt, div):hover {
    text-decoration: underline;
  }
}
body.set-background_blue .footer_nav__list_item a:active {
  text-decoration: underline;
}
body.set-background_blue .gsc-control-cse {
  background: var(--bg-white);
  border: none;
}
body.set-background_blue .gsc-above-wrapper-area {
  border-bottom: var(--line-color);
}
body.set-background_blue .gsc-result-info {
  color: var(--font-color);
}
body.set-background_blue .gsc-webResult.gsc-result {
  border: none;
}
body.set-background_blue .gs-webResult div.gs-visibleUrl,
body.set-background_blue .gs-imageResult div.gs-visibleUrl {
  color: var(--font-color) !important;
}
body.set-background_blue .gs-webResult .gs-snippet,
body.set-background_blue .gs-fileFormatType {
  color: var(--font-color);
}
body.set-background_blue .gs-fileFormat {
  color: var(--font-color);
}
body.set-background_blue .gsc-orderby-label {
  color: var(--font-color);
}
body.set-background_blue .gcsc-find-more-on-google,
body.set-background_blue .gcsc-branding-img-noclear {
  background: #fff;
}
body.set-background_blue .gs-webResult.gs-result a.gs-title:link,
body.set-background_blue .gs-webResult.gs-result a.gs-title:link b,
body.set-background_blue .gs-imageResult a.gs-title:link,
body.set-background_blue .gs-imageResult a.gs-title:link b {
  text-decoration: underline !important;
}
@media (hover: hover) {
  body.set-background_blue .gs-webResult.gs-result a.gs-title:link:where(:any-link, :enabled, summary, span, dt, div):hover,
  body.set-background_blue .gs-webResult.gs-result a.gs-title:link b:where(:any-link, :enabled, summary, span, dt, div):hover,
  body.set-background_blue .gs-imageResult a.gs-title:link:where(:any-link, :enabled, summary, span, dt, div):hover,
  body.set-background_blue .gs-imageResult a.gs-title:link b:where(:any-link, :enabled, summary, span, dt, div):hover {
    text-decoration: none !important;
  }
}
body.set-background_blue .gs-webResult.gs-result a.gs-title:link:active,
body.set-background_blue .gs-webResult.gs-result a.gs-title:link b:active,
body.set-background_blue .gs-imageResult a.gs-title:link:active,
body.set-background_blue .gs-imageResult a.gs-title:link b:active {
  text-decoration: none !important;
}
body.set-background_blue .feature_top_main_menu_area_list__item .item_content::before,
body.set-background_blue .feature_top_second_menu_content::before {
  background: #fff;
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
}
body.set-background_blue .feature_summary_img img {
  background-color: #fff;
}
body.set-background_blue .feature_footer_area {
  background-color: #fff;
}
body.set-background_blue .feature_footer_big_bnr_area .left .layer,
body.set-background_blue .center_facility_footer_big_bnr_area .left .layer,
body.set-background_blue .feature_footer_big_bnr_area .right .layer,
body.set-background_blue .center_facility_footer_big_bnr_area .right .layer,
body.set-background_blue .feature_footer_big_bnr_area .wide .layer,
body.set-background_blue .center_facility_footer_big_bnr_area .wide .layer {
  background: rgba(255, 255, 255, 0.8);
}
body.set-background_blue .feature_head_area.type_underlayer .feature_head_area_title .sub span.blue {
  color: #ff0;
}
body.set-background_blue .feature_equipment_frame {
  background-color: var(--bg-color);
}
body.set-background_blue .feature_footer_link {
  background: var(--bg-white);
}
body.set-background_blue .feature_footer_link .inner_logo_img img {
  opacity: 0;
}
body.set-background_blue .feature_footer_link .inner_logo_img .rollover {
  opacity: 1;
}
@media (hover: hover) {
  body.set-background_blue .feature_footer_link:where(:any-link, :enabled, summary, span, dt, div):hover .inner_logo_img img {
    opacity: 1;
  }
  body.set-background_blue .feature_footer_link:where(:any-link, :enabled, summary, span, dt, div):hover .inner_logo_img .rollover {
    opacity: 0;
  }
}
body.set-background_blue .feature_footer_link:active .inner_logo_img img {
  opacity: 1;
}
body.set-background_blue .feature_footer_link:active .inner_logo_img .rollover {
  opacity: 0;
}
body.set-background_blue .feature_footer_link::before {
  background: #fff;
}
body.set-background_blue .see_number_head_area_title {
  color: #fff;
}
body.set-background_blue .see_number_head_area_text {
  color: #fff;
}
body.set-background_blue .see_number_head_area_title .en {
  color: rgba(255, 255, 255, 0.4);
}
body.set-background_blue .see_number_head_area_title .main svg path,
body.set-background_blue .see_number_head_area_title .main svg rect {
  fill: #fff;
}
body.set-background_blue .see_number_section__content {
  background: #00f;
}
body.set-background_blue .see_number_admission_disease__img .img_count .sub {
  color: #00f;
}
body.set-background_blue .see_number_admission_disease__img .img_count .main {
  color: #00f;
}
body.set-background_blue .see_number_admission_disease__img .img_count .main strong {
  color: #00f;
}
body.set-background_blue .center_out_patiant_area {
  color: #fff;
}
body.set-background_blue .center_target_list__item {
  border: 1px solid var(--line-color);
}
body.set-background_blue .center_facility_intro__title.sub_blue .sub span {
  color: #fff;
}
body.set-background_blue .center_facility_intro__text_link {
  color: #fff;
}
body.set-background_blue .center_facility_intro__text_link a {
  color: #fff;
}
body.set-background_blue .parts_research_list_item a .title {
  color: #fff;
}

body.set-background_black a:focus,
body.set-background_black span:focus,
body.set-background_black button:focus {
  outline: 0;
}
@media (hover: hover) {
  body.set-background_black a:focus,
  body.set-background_black span:focus,
  body.set-background_black button:focus {
    outline: 3px solid #ff0;
  }
}
body.set-background_black .header__logo img {
  background: #fff;
}
body.set-background_black .header_pc_emergency button img {
  background: var(--bg-color);
}
body.set-background_black .setting_button_flex .font_btn.active,
body.set-background_black .setting_button_flex .background_btn.active {
  border-color: #ff0;
}
body.set-background_black .setting_button_flex .background_default {
  color: #2c2424;
  background: #fff;
}
body.set-background_black .setting_button_flex .background_blue {
  color: #fff;
}
body.set-background_black .setting_button_flex .background_yellow {
  color: #000;
}
body.set-background_black .setting_button_flex .background_black {
  color: #ff0;
  background: #000;
}
body.set-background_black .search_osusume_area__tag__list a {
  border: 1px solid var(--line-color);
}
body.set-background_black .parts_type_card_block__title img {
  background: #fff;
}
body.set-background_black .top_medical_care_main_menu__img svg path {
  fill: #fff;
}
body.set-background_black .parts_type_card_block__item > span {
  border: 1px solid var(--line-color);
}
body.set-background_black .parts_card_link__item > a {
  border: 1px solid var(--line-color);
}
body.set-background_black .footer_logo img {
  background: #fff;
}
@media (hover: hover) {
  body.set-background_black .footer_nav__list_item a:where(:any-link, :enabled, summary, span, dt, div):hover {
    text-decoration: underline;
  }
}
body.set-background_black .footer_nav__list_item a:active {
  text-decoration: underline;
}
body.set-background_black .gsc-control-cse {
  background: var(--bg-white);
  border: none;
}
body.set-background_black .gsc-above-wrapper-area {
  border-bottom: var(--line-color);
}
body.set-background_black .gsc-result-info {
  color: var(--font-color);
}
body.set-background_black .gsc-webResult.gsc-result {
  border: none;
}
body.set-background_black .gs-webResult div.gs-visibleUrl,
body.set-background_black .gs-imageResult div.gs-visibleUrl {
  color: var(--font-color) !important;
}
body.set-background_black .gs-webResult .gs-snippet,
body.set-background_black .gs-fileFormatType {
  color: var(--font-color);
}
body.set-background_black .gs-fileFormat {
  color: var(--font-color);
}
body.set-background_black .gsc-orderby-label {
  color: var(--font-color);
}
body.set-background_black .gcsc-find-more-on-google,
body.set-background_black .gcsc-branding-img-noclear {
  background: #fff;
}
body.set-background_black .gs-webResult.gs-result a.gs-title:link,
body.set-background_black .gs-webResult.gs-result a.gs-title:link b,
body.set-background_black .gs-imageResult a.gs-title:link,
body.set-background_black .gs-imageResult a.gs-title:link b {
  text-decoration: underline !important;
}
@media (hover: hover) {
  body.set-background_black .gs-webResult.gs-result a.gs-title:link:where(:any-link, :enabled, summary, span, dt, div):hover,
  body.set-background_black .gs-webResult.gs-result a.gs-title:link b:where(:any-link, :enabled, summary, span, dt, div):hover,
  body.set-background_black .gs-imageResult a.gs-title:link:where(:any-link, :enabled, summary, span, dt, div):hover,
  body.set-background_black .gs-imageResult a.gs-title:link b:where(:any-link, :enabled, summary, span, dt, div):hover {
    text-decoration: none !important;
  }
}
body.set-background_black .gs-webResult.gs-result a.gs-title:link:active,
body.set-background_black .gs-webResult.gs-result a.gs-title:link b:active,
body.set-background_black .gs-imageResult a.gs-title:link:active,
body.set-background_black .gs-imageResult a.gs-title:link b:active {
  text-decoration: none !important;
}
body.set-background_black .feature_top_main_menu_area_list__item .item_content::before,
body.set-background_black .feature_top_second_menu_content::before {
  background: #fff;
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
}
body.set-background_black .feature_summary_img img {
  background-color: #ff0;
}
body.set-background_black .feature_footer_area {
  background-color: #ff0;
}
body.set-background_black .feature_footer_big_bnr_area .left .layer,
body.set-background_black .center_facility_footer_big_bnr_area .left .layer,
body.set-background_black .feature_footer_big_bnr_area .right .layer,
body.set-background_black .center_facility_footer_big_bnr_area .right .layer,
body.set-background_black .feature_footer_big_bnr_area .wide .layer,
body.set-background_black .center_facility_footer_big_bnr_area .wide .layer {
  background: rgba(255, 255, 0, 0.8);
}
body.set-background_black .feature_head_area.type_underlayer .feature_head_area_title .sub span.blue {
  color: #ff0;
}
body.set-background_black .feature_equipment_frame {
  background-color: var(--bg-color);
}
body.set-background_black .feature_footer_link {
  background: var(--bg-white);
}
body.set-background_black .feature_footer_link .inner_logo_img img {
  opacity: 0;
}
body.set-background_black .feature_footer_link .inner_logo_img .rollover {
  opacity: 1;
}
@media (hover: hover) {
  body.set-background_black .feature_footer_link:where(:any-link, :enabled, summary, span, dt, div):hover .inner_logo_img img {
    opacity: 1;
  }
  body.set-background_black .feature_footer_link:where(:any-link, :enabled, summary, span, dt, div):hover .inner_logo_img .rollover {
    opacity: 0;
  }
}
body.set-background_black .feature_footer_link:active .inner_logo_img img {
  opacity: 1;
}
body.set-background_black .feature_footer_link:active .inner_logo_img .rollover {
  opacity: 0;
}
body.set-background_black .feature_footer_link::before {
  background: #ff0;
}
body.set-background_black .see_number_head_area_title {
  color: #fff;
}
body.set-background_black .see_number_head_area_text {
  color: #fff;
}
body.set-background_black .see_number_head_area_title .en {
  color: rgba(255, 255, 255, 0.4);
}
body.set-background_black .see_number_head_area_title .main svg path,
body.set-background_black .see_number_head_area_title .main svg rect {
  fill: #fff;
}
body.set-background_black .see_number_section__content {
  background: #000;
}
body.set-background_black .see_number_admission_disease__img .img_count .sub {
  color: #000;
}
body.set-background_black .see_number_admission_disease__img .img_count .main {
  color: #000;
}
body.set-background_black .see_number_admission_disease__img .img_count .main strong {
  color: #000;
}
body.set-background_black .center_out_patiant_area {
  color: #fff;
}
body.set-background_black .center_target_list__item {
  border: 1px solid var(--line-color);
}
body.set-background_black .center_facility_intro__title.sub_blue .sub span {
  color: #ff0;
}
body.set-background_black .center_facility_intro__text_link {
  color: #ff0;
}
body.set-background_black .center_facility_intro__text_link a {
  color: #ff0;
}
body.set-background_black .parts_research_list_item a .title {
  color: #ff0;
}
