@charset "UTF-8";

/* アニメーションを止めている人へのアクセシビリティ対応 */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

:root {
  /* 色管理用の変数 */
  --white-color:#FBF7EC;
  --black-color:#232829;
  --gray-color01: #DADADA;
  --gray-color02: #909090;
  --gray-color03: #606060;
  --light-color: #f8f2e2;
  --main-color:#E7D6B8;
  --dark-color:#AA917D;
  --accent-color:#DBB8A0;
  --light-yellow: #FCF9F5;
  --red-color:#ED5454;
  --lp-gold-gradient: linear-gradient(90deg, var(--accent-color), #C9BFB0);

  
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1216px;
  --horizontal-padding: 16px;

  /* z-index管理*/
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;

  --ja-font:"Noto Sans JP", sans-serif;
  --en-font: "Jost", sans-serif;

  --box-shadow: 4px 2px 8px color-mix(in srgb, var(--black-color), transparent 80%);
  --box-shadow: 2px 2px 4px color-mix(in srgb, var(--black-color), transparent 80%);
}

@media screen and (min-width: 1900px) {
  :root {
    --content-width-lg: 1400px;
  }
}

body {
  font-family: var(--ja-font);
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--black-color);
  background-color: var(--main-color);
  /* overflow-x: hidden; */
}

*:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* ---------- layout ---------- */
.l_contents {
  padding: 64px 0;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .l_contents {
    padding: 80px 0;
  }
}

.l_contents__ptpb40 {
  padding: 40px 0;
}

.l_contents__ptpb60 {
  padding: 60px 0;
}

.l_contents__pt200pb40 {
  padding: 200px 0 40px;
}


.l_contents__bg-h600::before {
  height: 600px;
}

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 var(--horizontal-padding);
  margin-inline: auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + var(--horizontal-padding) * 2);
}

.l_container {
  max-width: calc(var(--content-width) + var(--horizontal-padding) * 2);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + var(--horizontal-padding) * 2);
}

/* ----- header ----- */
.l_header {
  width: 100%;
  padding: 0 16px;
  background-color: var(--accent-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  transition: opacity 0.7s ease-in;
  opacity: 1;
}

@media screen and (min-width: 1080px) {
  .l_header{
    padding: 0 32px;
    min-height: 88px;

  }
}

@media screen and (min-width: 1600px) {
  .l_header {
    padding-left: 80px;
  }
}

.l_header_left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .l_header_left {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
  }

  /* small header */
  .l_header_left.is-sm {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    width: auto;
  }
}

.l_header-logo {
  width: 144px;
  padding: 22px 0 16px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .l_header-logo {
    width: 280px;
    padding: 34px 0 12px;
  }

  .l_header-logo.is-sm {
    width: 216px;
    padding: 12px 0;
  }
}

.l_header_medica-subject {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 8px;
}

@media screen and (min-width: 1080px) {
  .l_header_medica-subject {
    top: 16px;
    right: 0;
    font-size: 10px;
  }
}

.l_header-logo.is-sm .l_header_medica-subject {
  top: -4px;
  font-size: 8px;
}

.l_header-logo_link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l_header-nav {
  position: fixed;
  inset: 0;
  background: var(--main-color);
  z-index: var(--z-index-header);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    min-height: 0;
    padding: 4px 0 16px;
    opacity: 1;
    pointer-events: inherit;
    justify-content: space-between;
    border-top: 1px solid var(--black-color);
  }
  .l_header-nav.is-sm {
    border-top: none;
  }
}

.l_header-nav_list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (min-aspect-ratio: 3/2) and (max-width: 1080px) {
  .l_header-nav_list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 22px;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    flex-direction: row;
    gap: 32px;
    height: 100%;
  } 
  .l_header-nav_list.is-sm {
    flex-wrap: wrap;
    width: 440px;
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 0px;
  }
}

@media screen and (min-width: 1400px) {
  .l_header-nav_list.is-sm {
    width: auto;
    flex-wrap: nowrap;
  }
}

.l_header-nav_item {
  height: 100%;
  font-family: var(--en-font);
  color: var(--black-color);
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black-color);
  }
}

.l_header-nav_link {
  transition: color 0.3s ease-in;
}

.l_header-nav_link:focus-visible {
  color: var(--black-color);
}

@media (any-hover: hover) {
  .l_header-nav_link:hover {
    color: var(--black-color);
  }
}

/* ルビを上に表示 */
.l_header-nav_ruby {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.l_header-nav_ruby-text {
  font-size: 0.6em;
  margin-bottom: 0.2em;
  line-height: 1;
}

.l_header-nav_ruby-base {
  font-size: 1em;
}

.l_header_right {
  position: absolute;
}

@media screen and (min-width: 1080px) {
  .l_header_right {
    display: flex;
    flex-direction: row;
    gap: 40px;
    position: absolute;
    top: 18px;
    right: 24px;
  }
  .l_header_right.is-sm {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 24px;
    top: 10px;
  }
}

@media screen and (min-width: 1600px) {
  .l_header_right {
    right: 80px;
  }
}

.l_header-icon-list {
  position: fixed;
  bottom: 5%;
  left: 50%;
  translate: -50% 0;
  z-index: var(--z-index-header);
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .l_header-icon-list {
    position: static;
    margin-top: 14px;
    align-items: flex-start;
    translate: 0;
  }
  .l_header-icon-list.is-sm {
    margin-top: 0;
  }
}

.l_header-icon {
  width: 39px;
  height: 39px;
  transition: scale 0.1s ease-in;
  position: relative;
}

@media (any-hover: hover) {
  .l_header-icon:hover {
    scale : 105%;
  }
}

@media screen and (min-width: 768px) {
  .l_header-icon.is-sm {
    width: 32px;
    height: 32px;
  }
}

.l_header-icon_img {
  width: 100%;
  height: 100%;
  position: relative;
}

@media (any-hover: hover) {
  .l_header-icon__tel::after {
    content:"TEL:06-6684-8676";
    position: absolute;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 16px 16px 8px;
    color: var(--black-color);
    background-color: var(--main-color);
    -webkit-clip-path: polygon(0 8px, calc(60% - 8px) 8px, 60% 0,calc(60% + 8px) 8px,100% 8px,100% 100%,0 100% );
            clip-path: polygon(0 8px, calc(60% - 8px) 8px, 60% 0,calc(60% + 8px) 8px,100% 8px,100% 100%,0 100% );
    top: calc(100% + 8px);
    white-space: nowrap;
    left: 60%;
    translate: -60% 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in;
    border-radius: 4px;
  }

  .l_header-icon__tel:hover.l_header-icon__tel::after {
    opacity: 1;
    pointer-events: visible;
  }
}

.l_header_buttons {
  display: none;
}


@media screen and (min-width: 1080px) {
  .l_header_buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

.l_header_place {
  display: block;
  font-family: var(--en-font);
  text-transform: uppercase;
  text-align: right;
}

.l_header_place.is-sm {
  display: none;
}

.l_header_place::before {
  content: ">>";
}

/* ----- footer ----- */
.l_footer {
  color: var(--main-color);
  background-color: var(--black-color);
  font-size: 14px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l_footer {
    text-align: left;
  }
}

.l_footer-inner {
  padding: 40px 16px;
  max-width: calc(960px + var(--horizontal-padding) * 2);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 1080px) {
  .l_footer-inner {
    flex-direction: row;
  }
}

.l_footer_logo-wrapper {
  max-width: 240px;
  margin-inline: auto;
}

.l_footer_list {
  margin-inline: auto;
  color: var(--white-color);
}

.l_footer_item:not(:first-child) {
  margin-top: 28px;
}

.l_footer_biyouhifuka-group .l_footer_sublist {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .l_footer_sublist {
    display: flex;
    gap: 16px;
  }
  .l_footer_sublist__biyouhifuka {
    margin-left: 24px;
  }
}


.l_footer_subitem:not(:first-child) {
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .l_footer_subitem:not(:first-child) {
    margin-top: 0;
  }  
}

.l_footer-copyright {
  height: 40px;
  text-align: center;
  background-color: var(--dark-color);
  color: var(--black-color);
}

.l_footer-copyright_txt {
  font-size: 12px;
  line-height: 40px;
}

/* ---------- module ---------- */
.m_button-wrapper {
  width: 208px;
  transition: tranlate 0.1s ease-in;
  position: relative;
}
@media (any-hover: hover) {
  .m_button-wrapper__tel::after {
    content:"TEL:06-6684-8676";
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 16px 16px 8px;
    color: var(--black-color);
    background-color: var(--main-color);
    -webkit-clip-path: polygon(0 8px, calc(50% - 8px) 8px, 50% 0,calc(50% + 8px) 8px,100% 8px,100% 100%,0 100% );
            clip-path: polygon(0 8px, calc(50% - 8px) 8px, 50% 0,calc(50% + 8px) 8px,100% 8px,100% 100%,0 100% );
    position: absolute;
    top: calc(100% + 8px);
    white-space: nowrap;
    left: 50%;
    translate: -50% 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in;
  }

  .m_button-wrapper:hover.m_button-wrapper__tel::after {
    opacity: 1;
    pointer-events: visible;
  }
}

@media (any-hover: hover) {
  .m_button:hover {
    translate: 1px 1px;
  }
}

.m_button-wrapper__culumn {
  margin-top: 80px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .m_button-wrapper__culumn {
    margin-top: 0;
    position: absolute;
    top: 8px;
    right: 16px;
  }
}

.m_button-wrapper__clinic {
  width: 208px;
  margin-inline: auto;
  margin-top: 24px;
}

.m_button-wrapper__line {
  width: min(100%,432px);
  height: auto;
}

.m_button-wrapper__webreserve, .m_button-wrapper__tel {
  width: min(100%,432px);
}

@media screen and (min-width: 576px) {
  .m_button-wrapper__webreserve, .m_button-wrapper__tel {
    width: 208px;
  }
}

.m_button {
  padding: 8px 16px;  
  background-color: var(--black-color);
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 8px;
  transition: translate 0.1s ease-in;
}

@media screen and (min-width: 768px) {
  .m_button {
    padding: 10px 0;  
  }
}

@media (any-hover: hover) {
  .m_button:active{
    translate: 2px 2px;
  }
}


.m_button__webreserve, .m_button__line, .m_button__tel {
  background-color: var(--main-color);
}

.m_button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: -2px;
  bottom: -2px;
  border-right: 1px solid var(--black-color);
  border-bottom: 1px solid var(--black-color);
  border-radius: 8px;
}

.m_reserve_button-wrapper .m_button::before {
  border-right: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
}


.m_button:active.m_button::before {
  translate: -2px -2px;
}

.m_button_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m_button_text {
  font-size: 14px;
  text-align: center;
  color: var(--white-color);
}

.m_reserve_button-wrapper .m_button_text {
  color: var(--black-color);
  line-height: 1.3;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .m_button_text {
    font-size: 16px;
  }
}

.m__button_en {
  font-size: 14px;
  font-family: var(--en-font);
  display: block;
  margin-top: -2px;
}

.m_button_icon-wrapper {
  width: 32px;
  height: 32px;
  margin-left: 8px;
}

@media screen and (min-width: 768px) {
  .m_button_icon-wrapper {
    width: 48px;
    height: 48px;
  }
}

.m_button_icon-img {
  width: 100%;
  height: 100%;
}



/* ---------- hamburger ---------- */
.m_hamburger {
  width: 24px;
  height: 22px;
  position: relative;
  z-index: var(--z-index-menu);
}
@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: var(--black-color);
  left: 50%;
  transition: 0.3s;
  border-radius: 100vmax;
}

.m_hamburger-bar:first-child {
  top: 5px;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:last-child {
  top: calc(100% - 5px);
  transform: translate(-50%, 0);
}

/* ----- CTAボタン ----- */
.m_cta-button {
  position: fixed;
  z-index: calc(var(--z-index-header) - 1);
  padding: 8px 32px;
  bottom: 24px;
  right: 24px;
  color: var(--white-color);
  background-color: var(--black-color);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--box-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  transition: translate 0.2s ease-in,background-color 0.2s ease-in ;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .m_cta-button {
    font-size: 18px;
    padding: 8px 48px;
  }
}

@media (any-hover: hover) {
  .m_cta-button:hover{
    translate: 0 -4px;
    background-color: var(--dark-color);
  }
}

.m_cta-button_icon-wrapper {
  width: 40px;
}



/* ----- パンクズ ----- */
.m_breadcrumb {
  font-size: 12px;
  padding: 8px 16px;
  z-index: var(--z-index-default);
}

.m_breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.m_breadcrumb-item {
  display: flex;
  gap: 8px;
}

.m_breadcrumb-item:not(:first-child) {
  margin-left: 8px;
}

.m_breadcrumb-item:not(:first-child)::before {
  content: ">";
  display: inline-block;
  color: var(--black-color);
}

.m_breadcrumb-item a {
  text-decoration: none;
  color: var(--black-color);
}

/* ----- section-ttl ----- */

.m_section-ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: var(--black-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .m_section-ttl__column {
    margin-right: auto;
    margin-left: 0;
  }
}

.m_section-ttl__black {
  color: var(--black-color);
}

.m_section-ttl_en {
  display: inline-block;
  font-family: var(--en-font);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
  border-bottom: 1px solid currentColor;
}

.m_section-ttl_en__withoutja {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .m_section-ttl_en {
    font-size: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .m_section-ttl__recommend {
    color: var(--black-color);
  }
}

.m_section-ttl_ja {
  margin-top: 4px;
  text-align: center;
}

.m_section-ttl_ja-single {
  text-align: center;
  color: var(--black-color);
  font-size: 30px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .m_section-ttl_ja-single {
    font-size: 40px;
  }
}

.m_section-ttl_ja-single__column {
  position: relative;
  z-index: var(--z-index-default);
}

.m_section-ttl_biyou-menu {
  font-size: 30px;
  text-align: center;
  font-weight: 500;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .m_section-ttl_biyou-menu {
    margin-top: 64px;
    font-size: 40px;
  }
}

.m_section-ttl-sub {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-top: 24px;
  color: var(--black-color);
  position: relative;
  z-index: var(--z-index-default);
}

.m_section-desc {
  margin-top: 64px;
}

.m_section-desc_sub {
  margin-top: 16px;
  font-size: 14px;
}

.m_menu_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 16px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .m_menu_list {
    gap: 16px;
  }
}

.m_menu_item {
  width: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: translate 0.1s ease-in;
}

@media (any-hover: hover) {
  .m_menu_item:hover {
    translate: 0 -2px;
  }
}

@media screen and (min-width: 768px) {
  .m_menu_item {
    width: 120px;
  }
}

.m_menu_link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m_menu_icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 100vmax;
  border: 3px solid var(--dark-color);
  box-shadow: var(--box-shadow);
  transition: transform 0.2s ease;
}

@media screen and (min-width: 768px) {
  .m_menu_icon-wrapper {
    width: 88px;
    height: 88px;
  }
}

.m_menu_icon {
  width: 100%;
  height: 100%;
  border-radius: 100vmax;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
  display: grid;

}

.m_menu_icon__lemella{
  -o-object-position: 50% 55%;
     object-position: 50% 55%;
}

.m_menu_name {
  height: 48px;
  margin-top: 6px;
  letter-spacing: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 14px;
  transition: color 0.1s ease-in;
}

@media (any-hover: hover) {
  .m_menu_item:hover {
    filter: brightness(1.05);
  }
}

@media screen and (min-width: 768px) {
  .m_menu_name {
    align-items: center;
  }
}

/* ----- reserve ----- */
.m_reserve {
  background-color: var(--accent-color);
  position: relative;
  z-index: var(--z-index-default);
  border-top-left-radius: 5vw;
  border-top-right-radius: 5vw;
}

@media screen and (min-width: 768px) {
  .m_reserve::before, .m_reserve::after {
    width: 400px;
  }
}

@media screen and (min-width: 1080px) {
  .m_reserve::before, .m_reserve::after {
    width: 467px;
  }
}

.m_reserve-text {
  margin-top: 40px;
  text-align: center;
}

/* .m_reserve_web-button-head {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.m_reserve_web-button-head::after {
  content:"";
  display: inline-block;
  width: 48px;
  height: 48px;
  background-image: url(../img/icon_callender.svg);
} */

.m_reserve_button-wrapper {
  background-color: var(--dark-color);
  padding: 32px 16px;
  margin-top: 32px;
  border-radius: 16px;
}

.m_reserve_web-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .m_reserve_web-wrapper {
    flex-direction: row;
  }
}

.m_reserve_tel-mail-wrapper {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media screen and (min-width: 576px) {
  .m_reserve_tel-mail-wrapper {
    flex-direction: row;
  }
}

.m_other-menu {
  padding: 48px 0;
  max-width: 640px;
  margin-inline: auto;
}

.m_other-menu_text {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .m_other-menu_text {
    font-size: 22px;
  }
}
/* ----- biyouhifuka_menu ----- */

.m_biyouhifuka_menu-list {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.m_biyouhifuka_menu-ttl {
  font-size: 20px;
  font-weight: 500;
  color: var(--black-color);
  border-bottom: 2px solid var(--dark-color);
  padding: 0 8px;
}

@media screen and (min-width: 768px) {
  .m_biyouhifuka_menu-ttl {
    font-size: 24px;
  }
}

.m_biyouhifuka_menu-box {
  padding-top: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}


@media screen and (min-width: 768px) {
  .m_biyouhifuka_menu-box {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

.m_biyouhifukamenu_img-btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .m_biyouhifukamenu_img-btn {
    max-width: 368px;
  }  
}

.m_biyouhifukamenu_img-wrapper {
  max-width: 368px;
  margin-inline: auto;

}

.m_biyouhifuka_img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  overflow: hidden;
}

.m_biyouhifukamenu_btn-wrapper {
  margin-top: 16px;
  width: 100%;
  max-width: 368px;
  margin-inline: auto;
  color: var(--white-color);
  background-color: var(--black-color);
  position: relative;
  border-radius: 100vmax;
  overflow: hidden;
}

.m_biyouhifukamenu_btn-wrapper:active {
  translate: 2px 2px;
}

.m_biyouhifukamenu_btn-wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 2px;
  left: 2px;
  background-color: transparent;
  border-right: 1px solid var(--black-color);
  border-bottom: 1px solid var(--black-color);
  z-index: var(--z-index-back);
}

.m_biyouhifukamenu_btn-wrapper:active.m_biyouhifukamenu_btn-wrapper::after {
  translate: -2px -2px;
}

.m_biyouhifukamenu_btn {
  width: 100%;
  padding: 12px;
}

.m_biyouhifukamenu_names {
  width: 100%;
  max-width: 368px;
}

@media screen and (min-width: 768px) {
  .m_biyouhifukamenu_names {
    max-width: none;
  }
}

.m_biyouhifukamenu_name {
  margin-top: 8px;
  width: 100%;
  text-align: left;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .m_biyouhifukamenu_name {
    font-size: 16px;
  }
}

/* モーダルスタイル */
.m_modal {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  z-index: var(--z-index-modal);
  left: 0;
  top: 0;
  padding: 40px 16px;
  width: 100%;
  height: 100%;
  overflow: auto; /* モーダル全体がスクロール可能になる */
  background-color: rgba(0, 0, 0, 0.4); /* 背景を半透明にする */
}

.m_modal_content {
  background-color: rgba(0, 0, 0, 0.6);
  margin-inline: auto;
  width: 100%;
  padding: 24px 16px;
  max-width: 1200px;
  min-height: 90vh;
  max-height: 90vh; /* モーダルの高さを制限 */
  overflow-y: auto; /* コンテンツエリアをスクロール可能にする */
  position: relative;
}

.m_modal_header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* 閉じるボタンのスタイル */
.m_modal_close {
  color: var(--white-color);
  font-size: 28px;
  font-weight: 500;
}

.m_modal_close:hover,
.m_modal_close:focus {
  color: var(--gray-color01);
  text-decoration: none;
  cursor: pointer;
}

.m_modal_head {
  color: var(--white-color);
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
}

.m_modal_desc {
  color: var(--white-color);
  font-size: 14px;
  margin-top: 24px;
  max-width: 600px;
  margin-inline: auto;
}

.m_modal_desc__mb24 {
  margin-bottom: 24px;
}

.m_modal_risc {
  font-size: 12px;
  max-width: 600px;
  margin-inline: auto;
  margin-top: 8px;
  color: var(--white-color);
}

.m_modal_table-wrapper {
  margin-top: 40px;
  margin-inline: auto;
  text-align: left;
  max-width: 600px;
}

.m_modal_table-ttl {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--white-color);
}

.m_modal_table-ttl_sm {
  font-size: 16px;
}

.m_modal_table-ttl-xsm {
  display: block;
  font-size: 14px;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .m_modal_table-ttl-xsm {
    display: inline;
  }
}

.m_modal_table-ttl_sub {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: -12px;
}

.m_modal_table-ttl_sub__with-bar:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: var(--white-color);
  vertical-align: middle;
  margin-right: 4px;

}

.m_modal_table-desc {
  color: var(--white-color);
  font-size: 14px;
  margin-top: 16px;
}

.m_modal_table-desc__bold {
  display: block;
  font-weight: 500;
}

.m_modal_table-desc__mb8 {
  margin-bottom: 8px;
}

.m_modal_table-desc__sm {
  margin-top: 8px;
  font-size: 12px;
}

.m_modal_banner-link {
  display: block;
  margin-top: 16px;
  width: min(100%,400px);
}

.m_modal_banner-link__mb16 {
  margin-bottom: 16px;
}

.m_modal_table {
  width: 100%;
  margin-top: 20px;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .m_modal_table {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
  }
}

.m_modal_table-head, .m_modal_table-data{
  padding: 8px 16px;
  text-align: center;
}

.m_modal_table-head {
  font-weight: 500;
  background-color: var(--main-color); /* ヘッダーの背景色 */
  color: var(--black-color);
}

.m_modal_table-head:first-child {
  border-top-left-radius: 8px;
}

.m_modal_table-head:last-child {
  border-top-right-radius: 8px;
}

.m_modal_table-head_price {
  text-wrap: nowrap;
}

.m_modal_table-data__price {
  text-align: right;
}

.m_modal_table-row:last-child .m_modal_table-data:first-child {
  border-bottom-left-radius: 8px;
}
.m_modal_table-row:last-child .m_modal_table-data:last-child {
  border-bottom-right-radius: 8px;
}

.m_modal_table-data_sm {
  font-size: 12px;
}

.m_modal_table-row {
  background-color: var(--black-color); /* 本文の背景色 */
  color: var(--white-color);
}

.m_other-menu_page {
  margin-top: 64px;
  padding: 40px 0;
}

.m_other-menu_head {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .m_other-menu_head {
    font-size: 20px;
  }
}

.m_other-menu-wrapper {
  margin-top: 40px;
}

.m_other_menu-ttl {
  font-size: 24px;
  font-weight: 500;
  color: var(--black-color);
  border-bottom: 1px solid currentColor;
}

.m_other_menu-contents {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .m_other_menu-contents {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.m_other_menu-name {
  text-align: center;
}

.m_other_menu-link-wrapper {
  width: 100%;
  max-width: 368px;
  margin-inline: auto;
  background-color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .m_other_menu-link-wrapper {
    margin-inline: 0;
  }
}

.m_other_menu-link {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  color: var(--white-color);
}

/* ---------- utility ---------- */
@media screen and (min-width: 768px) {
  .u_sm-dn {
    display: none;
  }
}

.u_sm-db {
  display: none;
}

@media screen and (min-width: 768px) {
  .u_sm-db {
    display: block;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

.u_mb16 {
  margin-bottom: 16px;
}

/* ----------------------------- */
/*            TOP                */
/* ----------------------------- */
/* ----- information ----- */
.top_recommend_banners {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin-inline: auto;
}

.top_recommend_banner-link {
  width: min(100%, 392px);
  transition: translate 0.1s ease-in;
}

@media (any-hover: hover) {
  .top_recommend_banner-link:hover {
    translate: 1px 1px;
  }
}

.top_recommend_banner-link:focus-visible {
  translate: 1px 1px;
}

.top_recommend_banner-wrapper {
  box-shadow: var(--box-shadow);
}

@media screen and (min-width: 768px) {
  .top_recommend_banners {
    max-width: none;

  }
}

/* ---------- kv ---------- */
.top_kv {
  background-color: var(--accent-color);
  position: relative;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

@media screen and (min-width: 768px) {
  .top_kv {
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
  }
}

.top_kv-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 40px 20px;
  position: relative;
}

.top_kv-inner::after {
  content: "";
  background-image: url(../img/kv-copy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 50%;
  max-width: 400px;
  aspect-ratio: 80 / 22;
  position: absolute;
  bottom: 2%;
  right: min(2vw, 100px);
}

@media screen and (min-width: 768px) {
  .top_kv-inner::after {
    width: 35%;
  }
}

@media screen and (min-width: 1400px) {
  .top_kv-inner::after {
    right: -2%;
  }
}

.top_kv-inner video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 32px;
}

.top_news {
  background-color: var();
  padding: 20px 16px;
}

@media screen and (min-width: 768px) {
  .top_news {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: color-mix(in srgb, var(--white-color) 40%, transparent);
    padding: 16px;
  }
}

@media screen and (min-width: 768px) {
  .top_news .m_section-ttl {
    position: absolute;
    bottom: calc(100% - 14px);
    left: 0px;
    color: var(--dark-color);
  }
}

.top_news-list {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .top_news-list {
    margin-top: 0;
  }
}

.top_news-item {
  min-width: 260px;
  max-width: 344px;
  margin-inline: auto;
  position: relative;
}

.top_news-item::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 100%;
  background-color: var(--dark-color);
}

.top_news_link:focus-visible {
  border-top: 1px solid var(--dark-color);
  border-right: 1px solid var(--dark-color);
}

@media (any-hover: hover) {
  .top_news_link:hover {
    border-top: 1px solid var(--dark-color);
    border-right: 1px solid var(--dark-color);
  }
}

.top_news-item:not(:first-child) {
  margin-top: 8px;
}

.top_news_link {
  padding: 4px 8px 4px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background-color: var(--white-color);
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid var(--dark-color);
  border-radius: 8px;
  transition: border 0.2s ease-in;

}

.top_news_date {
  display: flex;
  flex-direction: column;
  width: fit-content;
  color: var(--dark-color);
}

.top_news_year {
  font-size: 10px;
  font-weight: 500;
}

.top_news_dates {
  font-size: 14px;
  font-weight: 500;
}

.top_news-title {
  font-size: 14px;
  width: 100%;
}

.top_news-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--dark-color);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ----- column ----- */
.top_column {
  background-color: var(--accent-color);
  overflow: hidden;
}

.top_column_container {
  position: relative;
}

.top_column_list-wrapper {
  margin-top: 40px;
  overflow-x: hidden;
  padding-top: 2px;
  padding-bottom: 2px;
}

@media screen and (min-width: 1080px) {
  .top_column_list-wrapper {
    width: 100vw;
  }
}

.top_column_list-item {
  height: 320px;
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  transition: translate 0.1s ease-in;
  position: relative;
  border-bottom-right-radius: 16px;
}

@media (any-hover: hover) {
  .top_column_list-item:hover {
    translate: 0 -2px;
  }
}

.top_column_date {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 16px;
  background-color: var(--black-color);
  font-size: 12px;
  color: var(--white-color);
  z-index: var(--z-index-default);
}

.column_tags {
  color: var(--black-color);
  margin-top: 4px;
  font-size: 12px;
}

.top_column_thumb-wrapper {
  height: 200px;
}

.top_column_thumb {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_column_texts {
  padding: 16px;
  text-align: right;
  height: 120px;
  position: relative;
}

.top_column_ttl {
  height: 48px;
  overflow: hidden;
  font-weight: 500;
  text-align: left;
}

.top_column_cat {
  position: absolute;
  color: var(--black-color);
  bottom: 16px;
  right: 16px;
  padding: 2px 8px;
  border: 1px solid currentColor;
  font-size: 14px;
}

.swiper-pagination {
  position: absolute;
  top: auto;
  bottom: 97px;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .swiper-pagination {
    width: 100px;
    height: 23px;
    top: 28px;
    left: auto;
    right: 289px;
  }
}

.top_column_nav {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--black-color);
  top: auto;
  bottom: 100px;
  transition: translate 0.1s ease-in;
}

@media (any-hover: hover) {
  .top_column_nav:hover {
    translate: 1px 1px;
  }
}

.top_column_nav::after {
  display: none;
}

@media screen and (min-width: 768px) {
  .top_column_nav {
    top: 52px;
    bottom: auto;
  }
}

.top_column_nav__prev {
  left: auto;
  right: calc(50% + 64px);
  -webkit-clip-path: polygon(0% 50%, 100% 0, 100% 100%);
          clip-path: polygon(0% 50%, 100% 0, 100% 100%);
}
@media screen and (min-width: 768px) {
  .top_column_nav__prev {
    right: 392px;
  }
}

.top_column_nav__next {
  right: auto;
  left: calc(50% + 64px);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (min-width: 768px) {
  .top_column_nav__next {
    right: 264px;
    left: auto;
  }
}

/* ----- information ----- */
.top_information {
  position: relative;
  background-color: var(--dark-color);
  overflow: hidden;
}

@media screen and (min-width: 1080px) {
  .top_information {
    background-color: transparent;
  }
  .top_information::before{
    position: absolute;
    content:"";
    top: 50%;
    translate: 0 -50%;
    width: 100svw;
    height: 208px;
    background-color: var(--dark-color);
    background-image: url(../img/logo_back.svg);
    background-size: 40%;
    background-position: 0 100%;
    background-repeat: no-repeat;
  }
}

@media screen and (min-width: 1080px) {
  .top_information_container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: var(--z-index-default);
  }
}

.top_information_instagram {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1080px) {
  .top_information_instagram {
    width: 60%;
  }
}

.top_information_instagram > iframe {
  max-width: 400px !important;
}

.sbi_photo_wrap {
  aspect-ratio: 3 / 4;
}

.sbi_photo {
  height: 100% !important;
}

/* ----- doctor ----- */
.top_doctor_contents {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .top_doctor_contents {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .top_doctor_contents {
    gap: 56px;
  }
}

.top_doctor_image-wrapper {
  max-width: 400px;
  margin-inline: auto;
  position: relative;
  z-index: var(--z-index-default);
}

.top_doctor_image-wrapper::after {
  content: "";
  position: absolute;
  z-index: var(--z-index-back);
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  top: 6px;
  left: 6px;
  border-radius: 16px;
}


@media screen and (min-width: 768px) {
  .top_doctor_image-wrapper {
    width: 400px;
    flex-shrink: 0;
  }
  .top_doctor_image-wrapper::after {
    top: 8px;
    left: 8px;
    border-radius: 32px;
  }
}

.top_doctor_image-wrapper img {
  border-radius: 16px;
}

@media screen and (min-width: 768px) {
  .top_doctor_image-wrapper img {
    border-radius: 32px;
  }
}

.top_doctor_texts{
  max-width: 400px;
  margin-inline: auto;
  margin-top: 22px;
}

@media screen and (min-width: 768px) {
  .top_doctor_texts{
    margin-top: 32px;
    max-width: initial;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.top_doctor_names {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .top_doctor_names {
    margin-top: 0;
    justify-content: flex-start;
  }
}

.top_doctor_role {
  padding: 10px 4px 8px 4px;
  font-size: 24px;
  background-color: var(--black-color);
  color: var(--white-color);
  letter-spacing: 0.1em; 
  -webkit-writing-mode: vertical-rl; 
      -ms-writing-mode: tb-rl; 
          writing-mode: vertical-rl;  
}

.top_doctor_name-en {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--en-font);
}

@media screen and (min-width: 768px) {
  .top_doctor_name-en {
    font-size: 22px;
  }
}

.top_doctor_name-ja {
  font-size: 28px;
  line-height: 1;
  margin-top: 4px;
}

@media screen and (min-width: 768px) {
  .top_doctor_name-ja {
    font-size: 28px;
  }
}

.doctor_message {
  margin-top: 32px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .doctor_message {
    margin-top: 40px;
  }
}


.doctor_head {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.doctor_head::before {
  content:"";
  display: inline-block;
  width: 4px;
  height: 24px;
  background-color: var(--black-color);
}


.doctor_message-text {
  font-size: 14px;
  margin-top: 8px;
  text-align: left;
}

.doctor_gakkai {
  margin-top: 24px;
  text-align: center;
}

.doctor_gakkai-list {
  margin-top: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
}

@media screen and (min-width: 768px) {
  .doctor_gakkai-list{
    justify-content: flex-start;
  }
}

.doctor_gakkai-list_text {
  font-size: 14px;
  text-align: left;
  white-space: nowrap;
}

.doctor_gakkai-list_text::before {
  content: "・";
}

.doctor_links {
  margin-top: 24px;
}


.doctor_links-list {
  margin-top: 8px;
}

.doctor_links-item:not(:first-child) {
  margin-top: 4px;
}

.doctor_links-text {
  font-size: 14px;
  color: var(--black-color);
  text-decoration: underline;
}

/* ----- clinic ----- */
.top_clinic {
  background-image: url(../img/clinic_bg.webp);
  background-size: cover;
  background-position: center;
  padding: 0 16px;
}

.top_container__clinic {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: color-mix(in srgb, var(--white-color) 50%, transparent);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0px 0px 2px var(--accent-color);
  border-radius: 16px;
}

@media screen and (min-width: 1080px) {
  .top_container__clinic {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.top_clinic_text {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
}

.top_clinic_close-days {
  margin-top: 40px;
  text-align: center;
}

.top_clinic_table {
  width: 100%;
  max-width: 320px;
  margin-top: 20px;
  margin-inline: auto;
  border-collapse: collapse;
  background-color: var(--accent-color);
  text-align: center;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  border-radius: 8px;
}

.top_clinic_table-head, .top_clinic_table-data {
  padding: 4px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .top_clinic_table-head, .top_clinic_table-data {
    padding: 10px 8px;
  }
}

.top_clinic_table-head {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.top_clinic_table-data-head {
  font-size: 14px;
}

.top_clinic_table-data {
  font-size: 16px;
  background-color: var(--white-color);
}

.top_clinic_recept {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
}

.top_clinic_annotarion{
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}

/* ---------- faq ---------- */
.top_faq_menu {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.top_faq_details:not(:first-child) {
  margin-top: 16px;
}

.top_faq_summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
  position: relative;
}

.top_faq_summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

.top_faq_summary-text {
  padding: 12px 40px 12px 44px;
  background-color: var(--black-color);
  color: var(--white-color);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  border-radius: 4px;
}

.top_faq_details.is-opened .top_faq_summary-text {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.top_faq_summary-text::before {
  content:"Q";
  font-family: var(--en-font);
  font-weight: 500;
  position: absolute;
  left: 16px;
  top: 50%;
  translate: 0 calc(-50% + 2px);
  font-size: 20px;
  color: var(--white-color);
}

.top_faq_summary-icon {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
}

.top_faq_summary-icon::before, .top_faq_summary-icon::after {
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: var(--white-color);
  border-radius: 100vmax;
}

.top_faq_summary-icon::before {
  width: 2px;
  height: 16px;
  transition: opacity 0.2s ease-in, translate 0.2s ease-in;
}

/* is-openedクラスが付与されたときのスタイル */
.top_faq_details.is-opened .top_faq_summary-icon::before {
  opacity: 0;
  translate: 0 10%;
}

.top_faq_summary-icon::after {
  width: 16px;
  height: 2px;
}

.top_faq_content_text {
  font-size: 14px;
  padding: 12px 16px 12px 44px;
  border: 2px solid var(--black-color);
  position: relative;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.top_faq_content_text::before {
  content: "A";
  font-family: var(--en-font);
  position: absolute;
  left: 16px;
  top: 50%;
  translate: 0 calc(-50% + 2px);
  font-size: 20px;
}

.top_faq_content .top_faq_content_text {
  background-color: var(--white-color);
}

.top_faq_content_link {
  color: var(--black-color);
  text-decoration: underline;
}

/* ----- access ----- */
.top_access_contents{
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .top_access_contents {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }
}

.top_access_map{
  position: relative;
  width: 100%;
  margin-inline: auto;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
}

@media screen and (min-width: 1080px) {
  .top_access_map {
    max-width: 600px; 
    height: 400px;
    margin-inline: 0;
  }
}

.top_access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top_access_tables-wrapper {
  margin-top: 20px;
}

.top_access_table {
  width: fit-content;
  max-width: 464px;
  margin-inline: auto;
  border-collapse: collapse;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .top_access_table {
    font-size: 16px;
  }
}

.top_access_table-row:not(:first-child) .top_access_table-head,
.top_access_table-row:not(:first-child) .top_access_table-data {
  border-top: 1px solid var(--accent-color);
}


.top_access_table-head {
  text-align: center;
  min-width: 40px;
  font-size: 14px;
  font-weight: 500;
}

.top_access_table-data {
  padding: 8px 4px 8px 16px;
  font-size: 14px;
}

.top_access_table-head-text {
  white-space: nowrap;
  aspect-ratio: 1 / 1 ;
  padding: 8px;
  border-radius: 100vmax;
  background-color: var(--accent-color);
  display: grid;
  place-content: center;
}






/* ----------------------------- */
/*        biyouhifuka            */
/* ----------------------------- */

.biyouhifuka_top {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .biyouhifuka_top {
    flex-direction: row;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.biyouhifuka_desks {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .biyouhifuka_desks {
    text-align: left;
  }
}

.biyouhifuka_tab {
  width: 100%;
  margin-top: 40px;
  max-width: 1248px;
  margin-inline: auto;
}

.biyouhifuka_tablist {
  width: 90%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.biyouhifuka_tabbutton {
  display: inline-block;
  padding: 12px 16px;
  color: var(--white-color);
  background-color: var(--black-color);
  width: calc(50% - 4px);
  max-width: 280px;
  font-size: 14px;
  border-top-right-radius: 16px;
}

@media screen and (min-width: 500px) {
  .biyouhifuka_tabbutton {
    font-size: 16px;
  }
}

.biyouhifuka_tabbutton[aria-selected="true"] {
  background-color: var(--black-color);
}

.biyouhifuka_tabbutton[aria-selected="false"] {
  background-color: var(--gray-color02);
}

.biyouhifuka_tabpanel {
  background-color: #FFFFFF;
  border: 2px solid var(--black-color);
  padding: 16px;
  width: 100%;
  border-radius: 20px;
}

.biyouhifuka_tabpanel:focus {
  outline: none;
}

.biyouhifuka_troubles {
  padding: 32px 0;
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.boyouhifuka_trouble-card {
  width: 50%;
  max-width: 296px;
  position: relative;
  border-radius: 24px;
  border: 2px solid transparent;
}

@media screen and (min-width: 768px) {
  .boyouhifuka_trouble-card {
    width: 33.3%;
  }
}

@media (any-hover: hover) {
  .boyouhifuka_trouble-card:hover {
    border: 2px solid var(--accent-color);
  }
}

.biyouhifuka_trouble_img-wrapper {
  border-radius: 24px;
  overflow: hidden;
}

.biyouhifuka_trouble_name {
  margin-top: -8px;
  text-align: center;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .biyouhifuka_trouble_name{
    margin-top: -8px;
    font-size: 14px;
  }
}

.biyouhifuka_menues {
  width: 100%;
  margin-inline: auto;
  height: auto;
}

@media screen and (min-width: 500px) {
  .biyouhifuka_menues {
    -moz-column-count: 2;
         column-count: 2;
  }
}

@media screen and (min-width: 768px) {
  .biyouhifuka_menues {
    -moz-column-count: 3;
         column-count: 3;
  }
}

.biyouhifuka_menu-btn-wrapper {
  width: 100%;
}

.biyouhifuka_menu-btn-wrapper:not(:last-child) {
  margin-bottom: 8px;
}


.biyouhifuka_menu-btn {
  width: 100%;
  padding: 8px;
  position: relative;
  text-align: left;
  box-shadow: var(--box-shadow02);
  border-radius: 100vmax;
  background-color: var(--white-color);
}

@media screen and (min-width: 500px) {Z
  .biyouhifuka_menu-btn {
    padding: 16px;
  }
}

@media screen and (min-width: 768px) {
  .biyouhifuka_menu-btn {
    padding: 8px;
    border-radius: 12px;
  }
}

.biyouhifuka_menu-btn::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 20px;
  width: 32px;
  height: 6px;
  background-color: var(--black-color);
  -webkit-clip-path: polygon(0 calc(100% - 1px), calc(100% - 8px) calc(100% - 1px), calc(100% - 8px) 0, 100% 100%, 0 100%);
          clip-path: polygon(0 calc(100% - 1px), calc(100% - 8px) calc(100% - 1px), calc(100% - 8px) 0, 100% 100%, 0 100%);
  transition: translate 0.3s ease;
}

@media screen and (min-width: 768px) {
  .biyouhifuka_menu-btn::after {
    display: block;
    top: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .biyouhifuka_menu-btn::after {
    width: 64px;
  }
}

@media (any-hover: hover) {
  .biyouhifuka_menu-btn:hover.biyouhifuka_menu-btn::after {
    translate: 8px -50%;
  }
}

.biyouhifuka_menu_head {
  display: inline-block;
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .biyouhifuka_menu_head {
    line-height: 0.7;
    font-size: 16px;
    border-bottom: 1px solid var(--black-color);
  }
}

@media screen and (min-width: 1080px) {
  .biyouhifuka_menu_head {
    font-size: 20px;
  }
}

.biyouhifuka_menu_pack {
  display: block;
  font-size: 10px;
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .biyouhifuka_menu_pack {
    margin-top: 12px;
  }
}

.biyouhifuka_menu_botox {
  display: block;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .biyouhifuka_menu_botox {
    margin-top: 12px;
  }
}

.biyouhifuka_menu_sub {
  display: none;
}

@media screen and (min-width: 768px) {
  .biyouhifuka_menu_sub {
    display: block;
    margin-top: 8px;
  }
}

.biyouhifuka_menu_name {
  margin-top: 4px;
  padding: 0 8px;
  font-size: 12px;
  letter-spacing: 0;
}

@media screen and (min-width: 1080px) {
  .biyouhifuka_menu_name {
    font-size: 14px;
  }
}

@media screen and (min-width: 1240px) {
  .biyouhifuka_menu_name__1240-dn {
    display: none;
  }
}

.biyouhifuka_menu_name__1240-db {
  display: none;
}


@media screen and (min-width: 1240px) {
  .biyouhifuka_menu_name__1240-db {
    display: block;
  }  
}

.biyouhifuka_all-menu-link {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 8px 16px;
  color: var(--white-color);
  background-color: var(--black-color);
  margin-top: 24px;
  font-size: 16px;
  text-align: center;
  transition: translate 0.2s ease-in;
}

.biyouhifuka_all-menu-link:focus-visible {
  translate: 1px 1px;
}

@media (any-hover: hover) {
  .biyouhifuka_all-menu-link:hover {
    translate: 1px 1px;
  }
}

/* ----------------------------- */
/*    biyouhifuka-menu-all       */
/* ----------------------------- */
.biyouhifuka_menu-all {
  position: relative;
}

.biyouhifuka_menu-all::before {  
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  translate: 0 50%;
  width: 100%;
  height: 80px;
  background-color: var(--main-color);
  z-index: var(--z-index-back);
}

.biyouhifuka_menu-all_ttl {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 16px;
}

.biyouhifuka_menu-all_ttl-sub {
  text-align: center;
  margin-top: 16px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .biyouhifuka_menu-all_ttl-sub {
    font-size: 18px;
    margin-top: 24px;
  }
}

/* ----------------------------- */
/*            biyou              */
/* ----------------------------- */
/*    予防医療などの個別ページ共通    */
.m_biyou_menu-list {
  padding: 64px 0;
}

.m_biyouhifuka_menu-item:not(:first-child) {
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .m_biyouhifuka_menu-item:not(:first-child) {
    margin-top: 56px;
  }
}

.m_biyou_menu-list-subitem:not(:first-child) {
  margin-top: 40px;
}

.m_biyou_menu-ttl {
  font-size: 20px;
  font-weight: 500;
  color: var(--black-color);
  border-bottom: 2px solid var(--dark-color);
}

@media screen and (min-width: 768px) {
  .m_biyou_menu-ttl {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .m_biyou_menu-list-contents:has(div) {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.m_biyou_menu-list-img {
  margin-top: 16px;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}

.m_biyou_menu-ttl__artmake {
  margin-top: 24px;
}

.m_biyou_menu-ttl-sub {
  font-size: 14px;
}

.m_biyou_menu-annotation {
  font-size: 14px;
  margin-top: 16px;
}

.m_biyou_menu-list-sub {
  margin-top: 40px;
}

.m_biyou_menu-list-sub-ttl {
  font-weight: 500;
  padding: 4px 8px;
  color: var(--white-color);
  background-color: var(--black-color);
}

.m_biyou_menu-list-sub-desc {
  margin-top: 16px;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .m_biyou_menu-list-sub-desc {
    font-size: 16px;
  }
}

.m_biyou_menu-table {
  width: 100%;
  max-width: 520px;
  margin-top: 24px;
  margin-inline: auto;
}

.m_biyou_menu-table__price {
  max-width: 600px;
}

.m_biyou_menu-table__price .m_biyou_menu-table-head {
  background-color: var(--black-color);
  border: 2px solid var(--black-color);
}

.m_biyou_menu-table__price .m_biyou_menu-table-data {
  border: 2px solid var(--black-color);
}

.m_biyou_menu-table-head, .m_biyou_menu-table-data {
  padding: 4px 8px;
  text-align: center;
  font-size: 16px;
}

.m_biyou_menu-table-head {
  background-color:var(--black-color);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
  border: 2px solid var(--black-color);
}

.m_biyou_menu-table-data {
  border: 2px solid var(--black-color);
  background-color: var(--white-color);
}

.m_biyou_menu-table-data_sm {
  font-size: 14px;
}

.m_biyou_menu-table-price {
  text-align: right;
  width: 35%;
}

.m_biyou_menu-table-price__commingsoon {
  text-align: center;
}

.m_biyou_menu-table_yen {
  font-size: 12px;
}

.m_biyou_menu-table-desc-wrapper {
  margin-top: 8px;
  max-width: 520px;
  margin-inline: auto;
}

.m_biyou_menu-table-desc {
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  border-bottom: 1px solid var(--dark-color);
}


.m_biyou_menu-table-desc-item {
  display: inline-block;
  width: 80px;
  flex-shrink: 0;
  padding: 2px 4px;
  font-weight: 500;
  text-align: center;
}

.m_biyou_menu-list-detail {
  margin-top: 16px;
  font-size: 12px;
}

.m_biyou_menu-list-detail__tac {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .m_biyou_menu-list-detail {
    font-size: 14px;
  }
}

.m_biyou_menu-list-text:not(:first-child) {
  margin-top: 4px;
}



/* ---------- artmake ---------- */
.artmake_about-cansel {
  margin-top: 16px;
}

.artmake_artist {
  padding: 64px 0;
}

.artmake_artist-name {
  margin-top: 24px;
  font-size: 20px;
  padding: 4px 16px;
  color: var(--white-color);
  background-color: var(--black-color);
}
.artmake_artist_txt {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .artmake_artist_txt {
    text-align: center;
  }
}

.artmake_artist-imgs{
  margin-top: 32px;
  display: flex;
  gap: 32px;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .artmake_artist-imgs {
    flex-direction: row;
  }
}

.artmake_artist-img-wrapper {
  max-width: 320px;
}

@media screen and (min-width: 768px) {
  .artmake_artist-img-wrapper {
    max-width: none;
    width: 50%;
  }
}


.artmake_artist-img {
  max-height: 544px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

@media screen and (min-width: 768px) { 
  .artmake_tab {
    width: 50%;
  }
}
  
.artmake_tablist {
  text-align: center;
}

.artmake_tabbutton {
  display: inline-block;
  color: var(--white-color);
  width: 20%;
  padding: 4px 0;
  border-top-right-radius: 8px;
}

.artmake_tabbutton[aria-selected="true"] {
  background-color: var(--black-color);
}

.artmake_tabbutton[aria-selected="false"] {
  background-color: var(--gray-color02);
}

.artmake_tabpanel {
  padding: 8px;
  background-color: var(--white-color);
  border-radius: 16px;
}

.artmake_case_img-wrapper {
  aspect-ratio: 1 /1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.artmake_case_img {
  aspect-ratio: 1 /1 ;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}

/* ----------------------------- */
/*          darmatology          */
/* ----------------------------- */
.darmatology_desc-annotation {
  display: block;
  text-align: center;
  color: var(--red-color);
  margin-top: 16px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .darmatology_desc-annotation {
    text-align: left;
  }
}

.darmatology_desc_wrapper {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media screen and (min-width: 768px) {
  .darmatology_desc_wrapper {
    flex-direction: row;
    justify-content: center;
  } 
}

.dermatology_img-wrapper {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .dermatology_img-wrapper {
    width: calc(50% - 16px);
    flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .darmatology_txt {
    width: calc(50% - 16px);
  }
}

/* ----------------------------- */
/*           PRICE               */
/* ----------------------------- */
.price_cat-list {
  margin-top: 64px;
}
.price_menu-head {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--dark-color);
  padding: 4px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
}

.price_menu-head::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent var(--white-color) var(--white-color) transparent;
  rotate: 45deg;
  translate: 0 -3px;
  transition: rotate 0.3s ease-in, translate 0.3s ease-in;
}

.price_menu-head.is-active::after {
  rotate: 225deg;
  translate: 0 3px;
}

@media screen and (min-width: 768px) {
  .price_menu-head {
    font-size: 24px;
  }
}

.price_menu-head__artmake {
  display: block;
}

.price_menu-head__artmake::after {
  display: none;
}

.price_menu-head_link {
  text-decoration: underline;
}

.price_menu-wrapper {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-in;
}

.price_menu-wrapper.is-visible {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.price_menu-wrapper .m_biyouhifuka_menu-list {
  padding-top: 24px;
} 

.price_menu-wrapper .m_biyou_menu-list {
  padding-top: 24px;
} 


/* ----------------------------- */
/*          contact              */
/* ----------------------------- */
.contact_form {
  margin-top: 40px;
  padding: 56px 24px;
  background-color: var(--light-color);
}
.contact_desc {
  margin-top: 40px;
  text-align: center;
}

.contact_form__heading {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact_form__heading:not(:first-child) {
  margin-top: 24px;
}

.contact_form__required {
  font-size: 12px;
  color: var(--white-color);
  background-color: var(--black-color);
  padding: 2px 8px;
  border-radius: 4px;
}

.contact_form__detail{
  margin-top: 8px;
}

.contact_form__input {
  width: 100%;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--black-color);
  background-color: var(--white-color);
  border-radius: 4px;
}

.contact_form__example {
  margin-top: 8px;
  font-size: 12px;
  color: var(--black-color);
  display: block;
  text-align: right;
}

.contact_form__textarea {
  width: 100%;
  height: 200px;
  margin-top: 8px;
  border: 1px solid var(--black-color);
  background-color: var(--white-color);
  padding: 8px 16px;
  font-size: 14px;
}

.contact_personal-data {
  margin-top: 40px;
  width: 100%;
  height: 200px;
  border: 1px solid var(--gray-color01);
  overflow: auto;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: var(--white-color);
}

.contact_personal-data__head {
  color: var(--brown-color02);
  padding: 8px 0;
  text-align: center;
  font-size: 18px;
  font-weight: var(--weight-bold);
}

.contact_privacypolicy__text-wrap {
  margin-top: 16px;
}

.contact_privacy-desc {
  font-size: 14px;
}

.contact_privacy-list {
  margin-top: 16px;
}

.contact_privacy-item:not(:first-child) {
  margin-top: 8px;
}

.contact_privacy-item_title {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
}

.contact_privacy-item_desc {
  font-size: 14px;
}

.contact_privacy-item_desc_list01 {
  margin-top: 8px;
}

.contact_privacy-item_desc_item01 {
  margin-top: 8px;
}

.contact_privacy-item_desc_item02 {
  font-size: 14px;
}

.__indent02 {
  margin-left: 16px;
}

.contact_privacy-item_desc_item03 {
  overflow-wrap: anywhere;
}

.contact_privacy-agree {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
}

.contact_form__check {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact_form__check-label {
  color: var(--brown-color02);
}

.contact_btn-wrapper {
  margin-top: 16px;
}

.contact_btn {
  margin: 0 auto;
  width: 250px;
  height: 60px;
  color: var(--white-color);
  background-color: var(--black-color);
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  position: relative;
}

.contact_btn.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* contactform用 */

.wpcf7 {
  margin-top: 40px;
  padding: 24px;
}

.wpcf7-not-valid-tip {
  color: var(--red-color);
  font-weight: 500;
  font-size: 14px;
  margin-top: 8px;
}

.wpcf7-response-output {
  border-color: #ABA396 !important;
  text-align: center;
}

.contact_btn:has(.wpcf7-submit:disabled) {
  background-color: var(--gray-color01);
}

.wpcf7-spinner {
  position: absolute;
  right: 8px;
  top: 50%;
  translate: 0 -50%;
}

.wpcf7-not-valid-tip {
  color: var(--red-color);
}

/* recapcha */
.grecaptcha-badge { 
  visibility: hidden; 
}

.recapcha-txt {
  text-align: center;
  color: var(--black-color);
  margin-top: 16px;
  font-size: 14px;
}

.wpcf7-list-item label{
  display: flex;
  align-items: center;
}

/* ----------------------------- */
/*           column              */
/* ----------------------------- */
.column_contents {
  position: relative;
}


.column_list {
  margin-top: 48px;
}

.column_list-item {
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  position: relative; 
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .column_list-item {
    max-width: none;
  }
}

.column_list-item:not(:first-child) {
  margin-top: 40px;
}

.column_date {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--black-color);
  padding: 4px 8px;
}

@media screen and (min-width: 768px) {
  .column_date {
    padding: 8px 16px;
  }
}

.column_article-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .column_article-wrapper {
    flex-direction: row;
    gap: 32px;
  }
}

.column_thumb-wrapper {
  width: 100%;
  max-height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .column_thumb-wrapper {
    width: calc(50% - 16px);
  }
}

.column_article-link {
  width: 100%;
  height: 100%;
}

.column_thumb {
  width: 100%;
  max-height: 216px;
  -o-object-fit: cover;
     object-fit: cover;
}

.column_texts {
  width: 100%;
  padding: 16px;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .column_texts {
    width: calc(50% - 16px);
  }
}

.column_ttl {
  font-weight: 500;
  margin-top: 8px;
  max-height: 120px;
  overflow: hidden;
}

.column_cat {
  display: inline-block;
  font-size: 14px;
  padding: 2px 4px;
  border: 1px solid var(--black-color);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.page-numbers {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: var(--white-color);
  background-color: var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--box-shadow);
}

.page-numbers.current {
  color: var(--white-color);
  background-color: var(--dark-color);
  box-shadow: none;
}

/* ----------------------------- */
/*            single             */
/* ----------------------------- */

.single_article-wrapper {
  margin-top: 8px;
  padding: 24px 16px;
  background-color: var(--white-color);
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  border-radius: 32px;
}

@media screen and (min-width: 768px) {
  .single_article-wrapper {
    margin-top: 64px;
  }
}

.single_article-wrapper__news {
  padding: 40px 16px;
}

.single_article-wrapper::before {
  content:"";
  position: absolute;
  top: -144px;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 320px;
  background-color: var(--light-color);
  z-index: var(--z-index-back);
}

.single_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single_date {
  padding: 4px 8px;
  background-color: var(--black-color);
  color: var(--white-color);
  font-size: 14px;
  border-radius: 100vmax;
}

@media screen and (min-width: 768px) {
  .single_date {
    padding: 4px 16px;
  }
}

.single_cat {
  font-size: 14px;
  padding: 2px 8px;
  border: 1px solid var(--black-color);
  border-radius: 4px;
}

.single_thumb-ttl-wrapper {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.single_article-body-wrapper {
  margin-top: 24px;
}

.single_article-body-wrapper p {
  word-break: break-all;
}

.single_article-body-wrapper p strong {
  font-weight: 500;
}

.single_article-body-wrapper__news {
  margin-top: 24px;
  font-family: var(--ja-font);
}

@media screen and (min-width: 768px) {
  .single_article-body-wrapper {
    padding: 0 24px;
  } 
}

.single_article-body-wrapper::before {
  content:"";
  width: 100%;
  height: 1px;
  background-color: var(--accent-color);
  display: block;
  margin-bottom: 24px;
}

.single_thumb-wrapper {
  max-width: 480px;
}

.single_ttl {
  flex: 1;
  font-size: 22px;
  font-weight: 500;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .single_ttl {
    font-size: 24px;
  }
}

.single_tags {
  font-size: 12px;
  color: var(--black-color);
}

.single_article-body:not(:first-child) {
  margin-top: 16px;
}

.single_article-button-wrapper {
  margin-top: 32px;
  max-width: 400px;
  margin-inline: auto;
}

.single_article-button-wrapper p {
  color: var(--white-color);
}

/* WP生成クラス用 */

.wp-block-image {
	margin-top: 16px;
}

.wp-block-heading {
	margin-top: 24px;
	font-weight: 500;
}

.wp-block-list {
  margin-top: 16px;
}

ul.wp-block-list li::before {
  content: "・";
}

.wp-block-embed__wrapper {
  margin-top: 16px;
  display: block;
  max-width: 400px;
  margin-inline: auto;
}


.single_article-body-wrapper h2 {
	font-size: 20px;
  border-bottom: 1px solid var(--black-color);
  color: var(--black-color);
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .single_article-body-wrapper h2{
    font-size: 22px;
  }
}

.single_article-body-wrapper h3 {
	font-size: 18px;
}

@media screen and (min-width: 768px) {
  .single_article-body-wrapper h3 {
    font-size: 20px;
  }
}

.single_article-body-wrapper p {
	margin-top: 8px;
}

.single_article-body-wrapper a {
  text-decoration: underline;
  color: var(--gray-color03);
}

/* ----------------------------- */
/*          カレンダー             */
/* ----------------------------- */
.calendar_container {
  margin-top: 40px;
  max-width: 480px;
  margin-inline: auto;

}

/* ----------------------------- */
/*             404               */
/* ----------------------------- */

.page404_txt {
  margin-top: 40px;
}

/* ---------- js ----------- */
.js_body.is-active {
  overflow: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
}

.js_icon {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
  .js_icon {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_icon.is-active {
  opacity: 1;
  pointer-events: inherit;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

/* ----------------------------- */
/*           lp(ha)              */
/* ----------------------------- */
.lp_kv {
  background-image: url(../img/ha/ha_wave-bg.webp);
  position: relative;
  overflow: hidden;
  background-position: 100% 0;
}

.lp_kv_img-wrapper {
  height: 264px;
  position: relative;
}

@media screen and (min-width: 576px) {
  .lp_kv_img-wrapper {
    height: 400px;
  }
}

.lp_kv_img {
  width: 192px;
  position: absolute;
  top: 0;
  right: -10px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 576px) {
  .lp_kv_img {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .lp_kv_img {
    right: 0;
  }
}

.lp_kv-text-wrapper {
  position: absolute;
  bottom: 11%;
  left: 50%;
  translate: -50% 0;
  padding: 0 16px;
  width: min(100%, calc(var(--content-width) + var(--horizontal-padding) * 2 ));
  
}


.lp_kv-ttl {
  font-size: 24px;
  font-weight: 500;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .lp_kv-ttl {
    font-size: 44px;
  }
}

.lp_kv-copy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  padding: 8px;
  font-size: 14px;
  letter-spacing: 0.1em;
  background-color: color-mix(in srgb, var(--white-color) 60%, transparent );
}

@media screen and (min-width: 768px) {
  .lp_kv-copy {
    font-size: 20px;
  }
}

/* ---------- about ---------- */
.ha_about-points {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .ha_about-points {
    flex-direction: row;
    gap: 16px;
  }
}

.ha_about-icon_upper,.ha_about-icon_lower {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  justify-content: center;
  align-items: center;
}

.ha_about-point {
  width: 104px;
  height: 104px;
  text-wrap: nowrap;
  background-image: url(../img/ha/ha-icon_bg.webp);
  background-size: cover;
  background-position: calc(50% - 2px) calc(50% - 2px);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.3;
}

@media screen and (min-width: 1080px) {
  .ha_about-point {
    width: 144px;
    height: 144px;
    font-size: 16px;
  }
}

.ha_about-boxes_img-wrapper {
  width: min(100%, 330px);
  margin: 32px auto 0;
}

@media screen and (min-width: 768px) {
  .ha_about-boxes_img-wrapper {
    margin-top: 48px;
    width: 480px;
  }
}

.ha_about_sub-head {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .ha_about_sub-head {
    margin-top: 64px;
  }
}

.ha_about_text {
  margin-top: 24px;
}

.ha_about_skin-img-wrapper {
  margin-top: 56px;
  width: min(100%, 540px);
  margin-inline: auto;
}

.ha_about_recommend {
  margin-top: 72px;
  border: 1px solid var(--black-color);
  display: flex;
  flex-wrap: wrap;
  padding: 28px 16px 20px;
  position: relative;
  border-radius: 16px;
}

.ha_about_recommend-head {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  font-size: 18px;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 16px;
  color: var(--black-color);
  background-color: var(--main-color);
  text-wrap: nowrap;
}

.ha_about_recommend_worries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.ha_about_recommend_worry {
  color: var(--black-color);
  flex-shrink: 0;
  width: min(100%, 329px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ha_about_recommend_worry::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background-image: url(../img/ha/checkmark.svg);
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
}

/* ---------- reason ---------- */
.ha_reason {
  overflow: hidden;
}

.ha_reason-list {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 32px 64px;
}

.ha_reason-list-item {
  width: min(360px, 100%);
}

.ha_reason-list-head {
  display: flex;
  gap: 8px;
  align-items: stretch;
  background-color: var(--dark-color);
  border-radius: 100vmax 0 0 100vmax;
  line-height: 1.3;
}

.ha_reason-list-head_num {
  flex-shrink: 0;
  display: inline-block;
  width: 54px;
  height: 54px;
  border: 2px solid var(--dark-color);
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: var(--dark-color);
  text-align: center;
  background-color: var(--white-color);
}

.ha_reason-list-head_text {
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--white-color);
}

.ha_reason-list_text {
  margin-top: 16px;
}

.ha_reason_amount {
  margin-top: 40px;
  width: 100vw;
  background-image: url(../img/ha/ha_wave-bg02.webp);
  background-size: cover;
  margin-left: calc(50% - 50vw);
  padding: 56px 0;
}

@media screen and (min-width: 768px) {
  .ha_reason_amount {
    margin-top: 64px;
  }
}

.ha_reason_amount_inner {
  margin-inline: auto;
  padding: 0 var(--horizontal-padding);
  max-width: calc(var(--content-width-sm) + var(--horizontal-padding) * 2);
}

.ha_reason_amount-head {
  font-size: 20px;
  font-weight: 500;
  color: var(--black-color);
  text-align: center;
}

.ha_reason_amount-text {
  margin-top: 24px;
}

.ha_reason_amount-sub-head {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-wrap: nowrap;
}

.ha_reason_amount-sub-head::before,.ha_reason_amount-sub-head::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--black-color);
  flex-shrink: 1;
}

.ha_reason_amount-sub-head__large {
  font-size: 20px;
  font-weight: 500;
  color: var(--black-color);
}

.ha_reason_amount-imgs {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .ha_reason_amount-imgs {
    flex-direction: row;
  }
}

.ha_reason_amount-img-wrapper {
  width: min(100%, 360px);
}

@media screen and (min-width: 768px) {
  .ha_reason_amount-img-wrapper {
    width: 50%;
  }
}

.ha_reason_injection-img {
  margin-top: 24px;
}

.ha_reason_amount-img-annotation {
  margin-top: 8px;
  font-size: 14px;
}

.ha_reason_face-img-wrapper {
  width: min(100%, 360px);
}

@media screen and (min-width: 768px) {
  .ha_reason_face-img-wrapper {
    width: 50%;
  }
}

/* ---------- formulation ---------- */
.ha_formulation_buttons {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.ha_formulation_link-button {
  width: min(100%, 320px);
  padding: 8px;
  background-color: var(--black-color);
  position: relative;
  box-shadow: var(--box-shadow);
}


.ha_formulation_link-button::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 56px;
  height: 100%;
  background-color: var(--white-color);
  border: 1px solid var(--black-color);
}

.ha_formulation_link-button::after {
  content:"";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 14px;
  translate: -50% calc(-50% - 4px);
  rotate: 45deg;
  width: 16px;
  height: 16px;
  background-color: var(--black-color);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
}


.ha_formulation_link-name-en {
  font-family: var(--en-font);
  font-size: 28px;
  font-weight: 500;
  color: var(--white-color);
  text-align: center;
  translate: -28px 0;
}

.ha_formulation_link-name-ja {
  text-align: center;
  color: var(--white-color);
  translate: -28px 0;
}

.ha_formulation_list {
  margin-top: 48px;
  max-width: 800px;
  margin-inline: auto;
}

.ha_formulation_list-item:not(:first-child) {
  margin-top: 64px;
}

.ha_formulation-name {
  font-size: 32px;
  font-weight: 500;
  font-family: var(--en-font);
  color: var(--black-color);
  border-bottom: 1px solid var(--black-color);
}

.ha_formulation-name__small {
  font-size: 16px;
  font-family: var(--ja-font);
}

.ha_formulation-img-wrapper {
  margin-top: 40px;
  width: min(100%, 600px);
  margin-inline: auto;
}

.ha_formulation-feature_wrapper {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.ha_formulation-feature_text {
  width: 160px;
  height: 52px;
  background-color: var(--black-color);
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color);
  text-align: center;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ha_formulation-head {
  margin-top: 32px;
  font-weight: 500;
  text-align: center;
  color: var(--black-color);
}

.ha_formulation-text {
  margin-top: 24px;
}

.ha_formulation-price-head {
  text-transform: uppercase;
  margin-top: 40px;
  padding: 8px;
  color: var(--black-color);
  border-bottom: 1px solid var(--black-color);
}

.ha_formulation-price_table {
  margin-top: 16px;
}

.ha_formulation-price_table {
  width: min(100%, 360px);
  margin-inline: auto;
}

.ha_formulation-price_table-head {
  width: 104px;
  height: 72px;
  background-color: var(--black-color);
  color: var(--white-color);
  text-align: center;
  border: 1px solid var(--black-color);
}

.ha_formulation-price_table-data {
  height: 72px;
  border: 1px solid var(--black-color);
  text-align: center;
  font-size: 24px;
  color: var(--black-color);
  background-color: var(--white-color);
}

.ha_formulation_back-link {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  color: var(--black-color);
  border-bottom: 1px solid var(--black-color);
}

.ha_formulation_back-link::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../img/ha/back.svg);
}

/* ---------- point ---------- */
.ha_point_list {
  margin-top: 48px;
  border-top: 1px solid var(--black-color);
  border-right: 1px solid var(--black-color);
}

.ha_point_list-inner {
  display: flex;
  border-bottom: 1px solid var(--black-color);
}

.ha_point_term {
  text-align: left;
  width: 104px;
  flex-shrink: 0;
  padding: 8px;
  background-color: var(--black-color);
  font-size: 14px;
  color: var(--white-color);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .ha_point_term {
    width: 136px;
  }
}

.ha_point_desc {
  width: 100%;
  padding: 8px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.ha_point_desc-small {
  font-size: 14px;
}

.ha_about_case {
  margin-top: 40px;
  padding: 32px 8px;
  background-color: var(--main-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .ha_about_case {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 32px 40px;
  }
}

.ha_about_case-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ha_about_case-images {
  max-width: 400px;
  margin-inline: auto;
}

.ha_about_case-image-wrapper {
  margin-inline: auto;
}

.ha_about_case-title {
  margin-top: 8px;
  margin-bottom: 4px;
  text-align: center;
  font-weight: 500;
}

.ha_about_case-detail {
  font-size: 14px;
}

/* ----------------------------- */
/*         lp(doctor)            */
/* ----------------------------- */
.dr_kv {
  background-image: url(../img/doctor/doctor_kv-bg.webp),linear-gradient(to right, var(--accent-color), #9D8E75);
  background-position: 50% 0;
  position: relative;
  height: 480px;
  overflow: hidden;
}

.dr_kv_img-wrapper {
  position: absolute;
  right: -112px;
  bottom: 0;
  width: 320px;
}

@media screen and (min-width: 768px) {
  .dr_kv_img-wrapper {
    right: 0;
  }
}

@media screen and (min-width: 1200px) {
  .dr_kv_img-wrapper {
    right: 15%;
  }
}

.dr_kv-ttl {
  font-family: var(--en-font);
  font-size: 42px;
  font-weight: 500;
  position: absolute;
  top: 160px;
  left: 16px;
}

@media screen and (min-width: 576px) {
  .dr_kv-ttl {
    left: 20%;
  }
}

@media screen and (min-width: 768px) {
  .dr_kv-ttl {
    top: 132px;
    font-size: 60px;
  }
}

.dr_kv-copy-wrapper {
  position: absolute;
  bottom: 72px;
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
}

@media screen and (min-width: 576px) {
  .dr_kv-copy-wrapper {
    left: 20%;
    translate: 64px 0;
  }
}

@media screen and (min-width: 768px) {
  .dr_kv-copy-wrapper {
    bottom: 80px;
  }
}

.dr_kv-copy {
  padding: 16px 8px;
  background-color: color-mix(in srgb, var(--white-color), transparent 30%);
}

@media screen and (min-width: 360px) {
  .dr_kv-copy {
    padding: 16px;
  }
}

.dr_kv-copy-before, .dr_kv-copy-after {
  padding: 4px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--black-color);
  font-weight: 500;
  font-size: 18px;
  color: var(--white-color);
  -webkit-clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%) ;
          clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%) ;
}


@media screen and (min-width: 360px) {
  .dr_kv-copy-before {
    translate:-32px 4px;
  }
  .dr_kv-copy-after {
    translate:0 -4px;
  }
}

.dr_kv-copy-after {
  position: absolute;
  right: 0px;
} 

@media screen and (min-width: 360px) {
  .dr_kv-copy-after {
    right: -32px;
  } 
}

.dr_kv-bottom {
  display: flex;
  gap: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--black-color);
  padding: 12px 8px;
  color: var(--white-color);
}

@media screen and (min-width: 360px) {
  .dr_kv-bottom {
    flex-direction: row;
    gap: 20px;
  }
}

.dr_kv-name-en {
  font-size: 14px;
  text-align: center;
}

.dr_kv-name-ja {
  font-size: 26px;
  text-align: center;
  line-height: 1.2;
}

.dr_about {
  overflow: hidden;
}

.dr_about-item {
  width: min(100%, 320px);
  border: 2px solid var(--black-color);
  padding-top: 20px;
  padding-bottom: 16px;
  position: relative;
  background-color: var(--white-color);
  border-radius: 8px;
}

.dr_about-items {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.dr_about-item-title {
  position: absolute;
  left: -8px;
  top: -16px;
  background-color: var(--black-color);
  color: var(--white-color);
  font-weight: 500;
  padding: 4px 12px 6px 12px;
  line-height: 1.2;
  border-radius: 4px;
}

.dr_about-item-content {
  text-align: center;
  color: var(--black-color);
}

.dr_about_private-img-wrapper {
  margin-top: 32px;
  margin-inline: auto;
  width: min(100%,480px);
}

.dr_about_main-content {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media screen and (min-width: 768px) {
  .dr_about_main-content {
    flex-direction: row;
    align-items: center;
  }
}

.dr_about_interview:not(:first-child) {
  margin-top: 32px;
}

.dr_about_sub-head {
  padding: 4px 16px;
  background-color: var(--black-color);
  color: var(--white-color);
  font-weight: 500;
}


.dr_about_text:first-of-type {
  margin-top: 16px;
}

.dr_about_text:not(:first-of-type) {
  margin-top: 8px;
}

.dr_about_work-img-wrapper {
  width: min(100%, 360px);
  margin-inline: auto;
  flex-shrink: 0;
  position: relative;
}

.dr_about-customer-voice {
  margin-top: 60px;
  margin-inline: auto;
  max-width: 760px;
}

.dr_about-customer-voice-ttl-wrapper {
  position: relative;
}

.dr_about-customer-voice-ttl {
  width: 100%;
  padding: 4px 16px;
  text-align: center;
  font-size: 22px;
  background-color: var(--dark-color);
  color: var(--white-color);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

@media screen and (min-width: 768px) {
  .dr_about-customer-voice-ttl {
    width: 100%;
    margin-inline: auto;
  }
}

.dr_about-customer-voice-ttl-en {
  position: absolute;
  top: -26px;
  left: -16px;
  rotate: -2deg;
  font-family: var(--en-font);
  font-size: 26px;
  font-weight: 500;
  color: var(--black-color);mix-blend-mode: multiply;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .dr_about-customer-voice-ttl-en {
    font-size: 30px;
  }
}

.dr_about-customer-voice_list {
  background-color: var(--white-color);
  padding: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}

.dr_about-customer-voice_list-item {
  display: flex;
  align-items: flex-end;
}

.dr_about-customer-voice_list-item:not(:first-child) {
  margin-top: 40px;
}

.dr_about-customer-voice_list-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.dr_about-customer-voice_img-wrapper {
  width: 64px;
  flex-shrink: 0;
}

.dr_about-customer-voice_text {
  padding: 8px;
  border-top: 1px solid var(--black-color);
  border-bottom: 1px solid var(--black-color);
}

.dr_about-staff-voice {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-top: 72px;
  background-color: var(--main-color);
  position: relative;
  display: flex;
  gap: 24px;
  flex-direction: column;
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .dr_about-staff-voice {
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
    max-width: 856px;
    margin-inline: auto;
    padding: 16px;
  }
}

.dr_about-staff-voice_texts {
  padding: 0 20px;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .dr_about-staff-voice_texts {
    padding: 16px 24px;
  }
}

.dr_about-staff-voice-ttl-en {
  position: absolute;
  top: 0;
  right: 16px;
  rotate: 2deg;
  font-family: var(--en-font);
  font-size: 26px;
  font-weight: 500;
  color: var(--black-color);mix-blend-mode: multiply;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .dr_about-staff-voice-ttl-en {
    font-size: 30px;
  }
}

.dr_about-staff-voice-ttl {
  font-size: 22px;
  text-align: center;
  background-color: var(--accent-color);
  max-width: 480px;
  border-radius: 16px;
  margin-inline: auto;
}

.dr_about-staff-voices {
  margin-top: 24px;
}

.dr_about-staff-voice-text {
  padding: 8px;
  background-color: var(--white-color);
  color: var(--black-color);
  text-align: center;
  border-radius: 8px;
  border: 2px solid var(--black-color);
  position: relative;
  max-width: 360px;
  margin-inline: auto;
  font-size: 14px;
}

.dr_about-staff-voice-text:not(:first-child) {
  margin-top: 32px;
}

.dr_about-staff-voice-text::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--white-color);
  top: calc(100% - 4px);
  translate: 0 -6px;

}

.dr_about-staff-voice-text:nth-child(2n-1)::before {
  right: 80px;
  border-left: 2px solid var(--black-color);
  rotate: -45deg;
  -webkit-clip-path: polygon(0 0, 50% 50%, 0 100%);
          clip-path: polygon(0 0, 50% 50%, 0 100%);
}

.dr_about-staff-voice-text:nth-child(2n)::before {
  left: 80px;
  border-right: 2px solid var(--black-color);
  rotate: 45deg;
  -webkit-clip-path: polygon(100% 0, 50% 50%, 100% 100%);
          clip-path: polygon(100% 0, 50% 50%, 100% 100%);
}

.dr_about-staff-voice_img-wrapper {
  max-width: 480px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .dr_about-staff-voice_img-wrapper {
    max-width: none;
  }
}

/* ---------- message ---------- */
.dr_message {
  background-color: var(--white-color);
}

.dr_message_wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media screen and (min-width: 1080px) {
  .dr_message_wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 120px;
    align-items: center;
  }
}

.dr_message-img-wrapper {
  margin-top: 40px;
  margin-inline: auto;
  width: 184px;
}

.dr_message-texts {
  max-width: 616px;
  margin-inline: auto;
}

@media screen and (min-width: 1080px) {
  .dr_message-texts {
    margin: 0;
  }
}

.dr_message-ttl {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .dr_message-ttl {
    text-align: left;
  }
}

.dr_message-text {
  margin-top: 16px;
}

.dr_message-name-wrapper {
  width: 120px;
  margin-top: 16px;
  margin-left: auto;
}

/* ---------- case ---------- */

.dr_case_list {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.dr_case_list-item {
  width: 320px;
  border: 1px solid var(--black-color);
  position: relative;
  background-color: var(--white-color);
}

.dr_case_list-ttl {
  padding: 8px 0;
  font-weight: 500;
  background-color: var(--black-color);
  color: var(--white-color);
  text-align: center;
}

.dr_case_list-desc {
  height: 128px;
  padding: 16px 8px;
  display: grid;
  place-content: center;
}

.dr_case_list-cat {
  display: block;
  font-size: 14px;
  text-align: center;
  padding: 4px 8px;
  border-bottom: 1px solid var(--black-color);
  color: var(--black-color);
}

.slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.dr_case_list-item .slide {
  min-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.dr_case_list-item .prev,.dr_case_list-item .next {
  color: var(--black-color);
  cursor: pointer;
  position: absolute;
  width: 100%;
  top: 50%;
  z-index: 2;
}


.dr_case_list-item .prev::before,.dr_case_list-item .next::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--white-color);
}

.dr_case_list-item .prev::before {
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  translate: 4px 0;
  left: 8px;
}



.dr_case_list-item .next::before {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  translate: 6px 0;
  right: 9px;
}


/* ---------- last ----------- */
.dr_last_inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .dr_last_inner {
    flex-direction: row;
    align-items: center;
  }
}

.dr_case_list-img-wrapper {
  max-width: 360px;
  margin-inline: auto;
}

.dr_last_texts {
  max-width: 640px;
  margin-inline: auto;
}

.dr_last_ttl {
  font-size: 20px;
  font-weight: 500;
  color: var(--black-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .dr_last_ttl {
    margin-left: 0;
    margin-right: auto;
  }
}

.dr_last_text:first-of-type {
  margin-top: 16px;
}

.dr_last_text:not(:first-of-type) {
  margin-top: 8px;
}

/* ---------- profile ---------- */
.dr_profile_list-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media screen and (min-width: 768px) {
  .dr_profile_list-wrapper {
    flex-direction: row;
  }
}

.dr_profile_list {
  width: min(100%, 360px);
  margin-inline: auto;
  border: 2px solid var(--black-color);
  position: relative;
  padding: 36px 8px;
  display: grid;
  place-content: center;
}

.dr_profile_list-head {
  position: absolute;
  top: 0;
  left: 16px;
  translate: 0 calc(-50% - 2px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 8px;
  background-color: var(--main-color);
  font-size: 18px;
  font-weight: 500;
}

.dr_profile_gakkai-list-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dr_profile_gakkai-list-item::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100vmax;
  background-color: var(--black-color);
  flex-shrink: 0;
}

.dr_profile_gakkai-list-item:not(:first-child) {
  margin-top: 16px;
}

.dr_profile_career-list-item {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  z-index: var(--z-index-default);
  line-height: 200%;
}

.dr_profile_career-list-item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100vmax;
  border: 1px solid var(--black-color);
  flex-shrink: 0;
  background-color: var(--main-color);
  z-index: var(--z-index-default);
}

.dr_profile_career-list-item:last-child::before {
  background-color: var(--black-color);
}

.dr_profile_career-list-item::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: var(--black-color);
  left: 3px;
  top: 0;
  z-index: calc(var(--z-index-default) - 1);
}

.dr_profile_career-list-item:first-child::after {
  height: 50%;
  top: auto;
  bottom: 0;
}

.dr_profile_career-list-item:last-child::after {
  height: 50%;
}

.dr_profile_img-upper {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .dr_profile_img-upper {
    flex-direction: row;
    justify-content: center;
  }
}

.dr_profile_beautydermatology {
  width: min(100%, 360px);
  border: 2px solid var(--black-color);
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .dr_profile_beautydermatology {
    width: 100%;
  }
}

.dr_profile_img-ttl {
  padding: 4px 16px;
  background-color: var(--black-color);
  color: var(--white-color);
  font-weight: 500;
  display: grid;
  place-content: center;
}

.dr_profile_img-wrapper {
  padding: 8px;
}


.dr_profile_ha {
  width: min(100%, 360px);
  margin-inline: auto;
  border: 2px solid var(--black-color);
}

@media screen and (min-width: 768px) {
  .dr_profile_ha {
    width: 100%;
  }
}


.dr_profile_gakkai {
  margin-top: 24px;
  width: min(100%, 360px);
  border: 2px solid var(--black-color);
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .dr_profile_gakkai {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .dr_profile_gakkai-images {
    display: flex;
  }
}

/* ----------------------------- */
/*          lp(botox)            */
/* ----------------------------- */
.botox_kv {
  position: relative;
  background-color: var(--main-color);
}

.botox_kv_inner {
  margin-inline: auto;
  background-image: url(../img/botox/kv-bg.webp);
}

.botox_kv_img {
  width: 284px;
  translate: -30px 0;
}

@media screen and (min-width: 350px) {
  .botox_kv_img {
    translate: -126px 0;
  }
}

@media screen and (min-width: 450px) {
  .botox_kv_img {
    translate: -30px 0;
  }
}

@media screen and (min-width: 500px) {
  .botox_kv_img {
    translate: 0 0;
  }
}

@media screen and (min-width: 768px) {
  .botox_kv_img {
    width: 300px;
  }
}

@media screen and (min-width: 1080px) {
  .botox_kv_img {
    width: 420px;
  }
}

@media screen and (min-width: 1200px) {
  .botox_kv_img {
    width: 520px;
  }
}

.botox_kv-text-wrapper {
  margin-top: 16px;
  padding: 0 8px;
}

@media screen and (min-width: 350px) {
  .botox_kv-text-wrapper {
    margin-top: 0;
    position: absolute;
    top: 55px;
    right: 0;
  }
}

@media screen and (min-width: 600px) {
  .botox_kv-text-wrapper {
    right: 7%;
  }
}

@media screen and (min-width: 768px) {
  .botox_kv-text-wrapper {
    top: 50%;
    translate: 0 -50%;
    right: 0;
    left: 40%;
  }
}

.botox_kv-ttl {
  font-size: 27px;
  color: var(--black-color);
  font-weight: 500;
  position: relative;
  text-align: left;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .botox_kv-ttl {
    font-size: 38px;
  }
}

@media screen and (min-width: 1080px) {
  .botox_kv-ttl {
    font-size: 49px;
  }
}

.botox_kv-underline {
  line-height: 1.1;
  display: inline-block;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 85%, #ffd3bc 85%, #ffd3bc 100%);
}

.botox_kv-ttl_small {
  font-size: 22px;
}

@media screen and (min-width: 768px) {
  .botox_kv-ttl_small {
    font-size: 26px;
  }
}

@media screen and (min-width: 1080px) {
  .botox_kv-ttl_small {
    font-size: 36px;
  }
}

.botox_kv-ttl_right {
  font-size: 22px;
  text-align: right;
  display: block;
}

@media screen and (min-width: 600px) {
  .botox_kv-ttl_right {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .botox_kv-ttl_right {
    font-size: 28px;
  }
}

.botox_kv-copy {
  font-size: 14px;
  padding: 2px 16px;
  color: var(--white-color);
  background-color: var(--dark-color);
  width: fit-content;
  margin-inline: auto;
  margin-top: 16px;
  border-radius: 8px;
  font-weight: 500;
}

@media screen and (min-width: 350px) {
  .botox_kv-copy {
    margin-inline: 0;
    text-align: left;
    margin-top: 19px;
  }
}

@media screen and (min-width: 768px) {
  .botox_kv-copy {
    font-size: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .botox_kv-copy {
    font-size: 20px;
  }
}

.botox_kv-prices {
  width: min(100%, 300px);
  padding: 16px;
  background-color: color-mix(in srgb, var(--dark-color) 30%, transparent);
  margin-top: 16px;
  margin-inline: auto;
  border-radius: 16px;
}

@media screen and (min-width: 350px) {
  .botox_kv-prices {
    position: absolute;
    margin-top: 0;
    margin-inline: 0;
    bottom: -160px;
    left: 50%;
    translate: -50% 0;
  }
}

@media screen and (min-width: 768px) {
  .botox_kv-prices {
    width: 624px;
    bottom: -64px;
  }
}

@media screen and (min-width: 1080px) {
  .botox_kv-prices {
    left: 40%;
    bottom: -24px;
    translate: 0 0;
  }
}

.botox_kv-price_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .botox_kv-price_list {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
}

.botox_kv-price-item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .botox_kv-price-item {
    width: calc(50% - 12px);
  }
}

.botox_kv-price_maker {
  text-align: center;
  font-size: 14px;
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 2px 34px;
}

@media screen and (min-width: 1080px) {
  .botox_kv-price_maker {
    font-size: 16px;
  }
}

.botox_kv-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white-color);
  padding: 0 12px;
}

.botox_kv-price_name {
  font-size: 12px;
  font-weight: 500;
  color: var(--black-color);
}

@media screen and (min-width: 1080px) {
  .botox_kv-price_name {
    font-size: 14px;
  }
}

.botox_kv-price_price {
  font-size: 24px;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .botox_kv-price_price {
    font-size: 26px;
  }
}

.botox_kv-price_price__small {
  font-size: 14px;
}


/* ---------- botox_about ---------- */

@media screen and (min-width: 350px) {
  .botox_about {
    padding-top: 120px;
  }
}

@media screen and (min-width: 768px) {
  .botox_about {
    padding-top: 80px;
  }
}

.botox_recommend_contents {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .botox_recommend_contents {
    flex-direction: row;
  }
}

.botox_recommend_list {
  background-color: var(--white-color);
  padding: 26px 32px 20px;
  position: relative;
  max-width: 452px;
  margin-inline: auto;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}

@media screen and (min-width: 768px) {
  .botox_recommend_list {
    margin-top: 24px;
  }
}

.botox_recommend_list::before {
  position: absolute;
  top: -19px;
  left: -9px;
  word-break:keep-all;
  content: "あなたのお悩みは？";
  text-transform: uppercase;
  background-color: var(--black-color);
  font-family: var(--en-font);
  color: var(--white-color);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding: 2px 16px;
  border-radius: 100vmax;
  letter-spacing: 0.15em;
}

.botox_recommend_worries {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.botox_recommend_worry {
  color: var(--black-color);
  flex-shrink: 0;
  width: min(100%, 360px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.botox_recommend_worry::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--black-color);
  border-radius: 100vmax;
  flex-shrink: 0;
}

.botox_recommend_image-head {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.botox_recommend_image-head::before, .botox_recommend_image-head::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 22px;
  background-color: var(--black-color);
}

.botox_recommend_image-head::before {
  rotate: -30deg;
}

.botox_recommend_image-head::after {
  rotate: 30deg;
}

.botox_recommend_image {
  margin-top: 8px;
  max-width: 452px;
  border-radius: 8px;
  overflow: hidden;
}

/* ---------- features ---------- */
.botox_features {
  background-color: var(--accent-color);
  border-radius: 5vw;
}

.botox_features_list {
  margin-top: 40px;
}

.botox_features_item:not(:first-child) {
  margin-top: 32px;
}

.botox_features_list-head {
  padding: 4px 16px;
  background-color: var(--black-color);
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  gap: 8px;
  align-items: center;
  border-radius: 8px;
}

.botox_features_item .botox_features_list-head::before {
  content: "";
  width: 40px;
  height: 40px;
}

.botox_features_item:nth-child(1) .botox_features_list-head::before {
  background-image: url(../img/botox/icon_features01.svg);
}

.botox_features_item:nth-child(2) .botox_features_list-head::before {
  background-image: url(../img/botox/icon_features02.svg);
}

.botox_features_item:nth-child(3) .botox_features_list-head::before {
  background-image: url(../img/botox/icon_features03.svg);
}

.botox_features_item:nth-child(4) .botox_features_list-head::before {
  background-image: url(../img/botox/icon_features04.svg);
}

.botox_features_list-body {
  margin-top: 16px;
}

.botox_features_list-body__needle {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .botox_features_list-body__needle {
    flex-direction: row;
  }
}

.botox_features_text:not(:first-child) {
  margin-top: 8px;
}

.botox_features_text_sm {
  font-size: 14px;
}

.botox_features_text_emphasis {
  font-weight: bold;
}

.botox_features_anotation {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
}

.botox_features_anotation-text {
  font-size: 14px;
}

.botox_features_neadle_list {
  margin-top: 24px;
  position: relative;
  padding: 16px 8px;
  border: 1px solid var(--black-color);
  display: grid;
  place-content: center;
}

.botox_features_neadle_list-title {
  position: absolute;
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 0 16px;
  top: 0;
  left: 8px;
  translate: 0 -50%;
  font-weight: bold;
  border-radius: 4px;
}


.botox_features_neadle_image {
  max-width: 340px;
}

/* ---------- about ---------- */
.botox_about_contents {
  margin-top: 40px;
}

.botox_about_section:not(:first-child) {
  margin-top: 40px;
}

.botox_about_head {
  font-size: 18px;
  font-weight: 500;
  color: var(--black-color);
  border-bottom: 2px solid var(--black-color);
}

.botox_about_body {
  margin-top: 8px;
}

.botox_about_body_inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .botox_about_body_inner {
    flex-direction: row;
  }
}

.botox_about_text:not(:first-child) {
  margin-top: 8px;
}

.botox_about_text_emphasis {
  color: var(--black-color);
  font-weight: 500;
}

.botox_about_others-image {
  max-width: 268px;
}

.botox_about_treatment-image {
  max-width: 361px;
  flex-shrink: 0;
}

.botox_about_body-head {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.botox_about_body-head::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 24px;
  background-color: var(--black-color);
}

.botox_about_table {
  margin-top: 16px;
  max-width: 640px;
  margin-inline: auto;
}

.botox_about_table-head {
  background-color: var(--black-color);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--main-color);
  padding: 4px;
  text-align: center;
}

.botox_about_table-data {
  text-align: center;
  font-size: 14px;
  padding: 4px;
  border: 2px solid var(--main-color);
  background-color: var(--white-color);
}

.botox_about_boxes-image {
  margin-top: 24px;
  max-width: 300px;
  margin-inline: auto;
}

/* ---------- case ---------- */
.botox_case {
  background-color: var(--main-color);
}

.botox_case_list {
  padding: 0 16px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .botox_case_list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}

.botox_case_item {
  max-width: 296px;
  margin-inline: auto;
  border: 2px solid var(--black-color);
}

@media screen and (min-width: 768px) {
  .botox_case_item {
    max-width: 296px;
    margin-inline: 0;
  }
}

.botox_case_ttl {
  padding: 4px 8px;
  background-color: var(--black-color);
  text-align: center;
  color: var(--white-color);
  font-weight: 500;
}

.botox_case_details {
  padding: 8px;
  background-color: var(--white-color);
}

.botox_case_annotation {
  padding: 0 16px;
  font-size: 14px;
  text-align: center;
  margin-top: 24px;
}

/* ---------- prices ---------- */
.botox_price_table {
  margin-top: 40px;
}

.botox_price_table_header,.botox_price_table_item {
  padding: 14px 8px;
  background-color: var(--black-color);
  color: var(--white-color);
  font-weight: 500;
  text-align: center;
  border: 2px solid var(--main-color);
}

.botox_price_table_header {
  border-top: 2px solid var(--black-color);
}

.botox_price_table_header:last-child {
  border-right: 2px solid var(--black-color);
}

.botox_price_table_row:last-child .botox_price_table_item {
  border-bottom: 2px solid var(--black-color);;
}


.botox_price_table_header {
  font-size: 14px;
}

.botox_price_table_item {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .botox_price_table_item {
    width: 300px;
    font-size: 14px;
  }
}

.botox_price_table_price {
  text-align: center;
  font-size: 14px;
  color: var(--black-color);
  border: 2px solid var(--black-color);
  background-color: var(--white-color);
  min-width: 80px;
}

@media screen and (min-width: 350px) {
  .botox_price_table_price {
    min-width: 104px;
  }
}

@media screen and (min-width: 768px) {
  .botox_price_table_price {
    font-size: 16px;
  }
}

.botox_price_table_price-small {
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .botox_price_table_price-small {
    font-size: 12px;
  }
}

.botoc_prices_point-head {
  margin-top: 16px;
  font-weight: 500;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .botoc_prices_point-head {
    font-size: 16px;
  }
}

.botoc_prices_point-desc {
  margin-top: 4px;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .botoc_prices_point-desc {
    font-size: 16px;
  }
}

/* ---------- points ---------- */
.botox_points_table {
  margin-top: 40px;
}

.botox_points_table_header {
  padding: 8px;
  background-color: var(--black-color);
  color: var(--white-color);
  font-weight: 500;
  border: 2px solid var(--main-color);
  border-left: 2px solid var(--black-color);
  text-align: center;
  min-width: 104px;
  font-size: 14px;
}

.botox_points_table_row:first-child .botox_points_table_header {
  border-top: 2px solid var(--black-color);
}

.botox_points_table_row:last-child .botox_points_table_header {
  border-bottom: 2px solid var(--black-color);
}

.botox_points_table_item {
  padding: 4px 8px;
  font-size: 14px;
  border: 2px solid var(--black-color);
  background-color: var(--white-color);
}

/* ----------------------------- */
/*      news（カスタム投稿）        */
/* ----------------------------- */
/* ---------- single-news ---------- */
.news-single_cat {
  position: absolute;
  bottom: 100%;
  left: 0;
  padding: 4px 24px;
  background-color: var(--black-color);
  font-size: 14px;
  color: var(--white-color);
  font-weight: 500;
}

.news-single_ttl {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--black-color);
  padding: 0 24px;
}

@media screen and (min-width: 768px) {
  .news-single_ttl {
    font-size: 24px;
  }
}

.news-single_date {
  margin-top: 12px;
  margin-right: 24px;
  text-align: right;
  font-size: 14px;
  color: var(--black-color);
  font-weight: 500;
}

.news-single_navigation {
  margin-top: 24px;
  max-width: 560px;
  margin-inline: auto;
}

.news-single_nav-archive {
  margin-top: 24px;
  text-align: center;
}

.news-single_nav-archive a {
  display: inline-block;
  color: var(--black-color);
  text-decoration: underline;
  font-size: 14px;
}

/* ---------- archive-news ---------- */
.news_contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-color: var(--light-color)
}

.news_category-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.news_category-link {
  padding: 4px 24px;
  border-radius: 100vmax;
  border: 1px solid var(--black-color);
  background-color: var(--white-color);
  font-size: 12px;
  font-weight: 500;
  color: var(--black-color);
}

.news_category-link.active {
  background-color: var(--black-color);
  color: var(--white-color);
  border: 1px solid var(--black-color);
}

.news_list {
  margin-top: 32px;
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  padding: 24px 8px;
}

.news_list-item {
  border-bottom: 1px solid var(--gray-color01);
  transition: filter 0.25s ease-in;
}

.news_list-item:has(.news_ttl-link:focus-visible)  {
  filter: brightness(1.1);
}

@media (any-hover: hover) {
  .news_list-item:hover {
    filter: brightness(1.1);
  }
}

.news_ttl-link {
  padding: 16px 32px 16px 16px;
  display: inline-block;
  width: 100%;
  position: relative;
}



.news_ttl-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
  width: 12px;
  height: 12px;
  display: inline-block;
  background-color: var(--black-color);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media screen and (min-width: 768px) {
  .news_ttl-link {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.news_article_meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.news_cat {
  padding: 4px 24px;
  background-color: var(--black-color);
  font-size: 12px;
  font-weight: 500;
  color: var(--white-color);
  border-radius: 100vmax;
}

.news_date {
  font-size: 14px;
  color: var(--gray-color04);
}

.news_ttl {
  margin-top: 8px;
  flex-shrink: 1;
}

@media screen and (min-width: 768px) {
  .news_ttl {
    margin-top: 0;
  }
}

/* ---------- lemelle ---------- */
.lemella_slider {
  margin-top: 40px;
}

/* ----------------------------- */
/*         cancel_policy         */
/* ----------------------------- */
.cancel_policy_desc {
  margin-top: 40px;
  text-align: center;
}

.cancel_policy_desc::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--black-color);
  display: block;
  margin-top: 40px;
}

.cancel_policy_wrapper {
  margin-top: 40px;
  padding-bottom: 120px;
}

.cancel_policy_wrapper::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--black-color);
  display: block;
  margin-top: 40px;
}

.cancel-policy_text {
  padding-left: 32px;
  position: relative;
}

.cancel-policy_text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  translate: 0 -50%;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/ha/checkmark.svg);
  background-size: contain;
}

.cancel-policy_text:not(:first-child) {
  margin-top: 24px;
}

.cancel-policy_emphasis {
  font-weight: bold;
}

