@charset "UTF-8";
/* Josh's Custom CSS Reset --- more customized */
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  height: 100%;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-size: 100%;
}

#root, #__next {
  isolation: isolate;
}

/* Basic settings */
br {
  letter-spacing: 0;
}

ul, li {
  list-style: none;
}

img, a img {
  border: 0;
  text-decoration: none;
}

b, strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Base Set */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  color: #4c4c4c;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  line-height: 1;
}

a {
  background-color: transparent;
  outline: 0;
  text-decoration: none;
  transition: all 0.5s;
}
a:link, a:visited {
  color: #4c4c4c;
}
a:hover, a:active {
  color: #ccc;
}

:root {
  --pcl:1320px;
  --pcm:1216px;
  --mid:500;
  --bold:700;
  --col_base:#e1a093;
  --col_base_t:#fff;
  --rad-mob:1.8rem;
}

/* -------------------------------------------------------
Layout
---------------------------------------------------------- */
html, body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
}

body {
  font-weight: var(--mid);
}

h1, h2, h3, h4 {
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .pc, .tab, .tabpc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media only screen and (min-width: 1081px) {
  .tab {
    display: none;
  }
}
/*
header
---------------------------------------------------------- */
.header {
  position: relative;
  background-color: #fbf8f3;
}

.title_line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--pcl);
  margin: 0 auto;
  padding-top: 36px;
}
.title_line .title {
  width: 50%;
}

@media screen and (min-width: 768px) and (max-width: 1320px) {
  .title_line {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.title img {
  width: 100%;
  max-width: 614px;
  height: auto;
}

.title_line .tel {
  flex: 1;
  color: #584d3d;
  font-size: 1.8rem;
  text-align: right;
}
.title_line .tel .num {
  display: inline-block;
  margin-left: 1rem;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .title_line .tel {
    display: none;
  }
}
.nav ul li.sp_backhome {
  display: none;
}
.nav .gnav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  max-width: var(--pcl);
  margin-top: 3.6rem;
  margin-right: auto;
  margin-left: auto;
}
.nav .gnav li {
  position: relative;
}
.nav .gnav li.vl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 70%;
  border-right: 1px solid #7f7668;
}
.nav .gnav > li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 70%;
  border-right: 1px solid #7f7668;
}
.nav .gnav > li.lvl::after {
  border-right-color: #fbf8f3;
}
.nav ul > li a:hover {
  opacity: 0.5;
}
.nav li .mb_t, .nav li .mb_t-non {
  display: none;
}
.nav li.has-dropdown {
  position: static;
}

@media screen and (min-width: 768px) {
  .dropdown_outer {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: var(--pcl);
    margin: 0 auto;
    padding-top: 1.6rem;
    z-index: 999;
    transition: opacity 0.3s ease;
  }
  .nav li.has-dropdown .dropdown_outer {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 1251px) {
  .nav li.has-dropdown:hover .dropdown_outer {
    /* PC hover用（1251px以上） */
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  /* タブレットクリック用 */
  .nav li.has-dropdown.open .dropdown_outer {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 767px) {
  .nav li.has-dropdown .dropdown_outer {
    display: none;
  }
  .nav .gnav > li::after, .nav .gnav li.vl::before {
    border-right: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .dropdown_outer * {
    opacity: inherit;
    transition: inherit;
  }
  .dropmenu_wrap {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .dropmenu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .dropmenu a {
    color: #716559;
  }
  .dropmenu a:hover {
    opacity: 0.5;
  }
  .dropmenu .box {
    position: relative;
    padding-right: 4.8rem;
    padding-left: 4.8rem;
    border-right: 1px dashed #7f7668;
  }
  .dropmenu .box:last-child {
    border-right: 0;
  }
  .dropmenu .box dt {
    font-size: 1.8rem;
    font-weight: var(--bold);
  }
  .dropmenu .box dt a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .dropmenu .box dt a .line {
    display: inline-block;
    margin-right: 0.6rem;
    color: #e19f92;
  }
  .dropmenu .box dt a .arw img {
    width: 1.6rem;
    height: auto;
  }
  .dropmenu .box dd {
    padding-left: 2.4rem;
  }
  .dropmenu .box dd li {
    margin-top: 1em;
    border-right: 0;
    font-size: 1.5rem;
  }
  .dropmenu .box dd li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1250px) {
  .dropmenu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .chevron-right {
    display: inline-block;
    vertical-align: middle;
    color: #716559;
    line-height: 1;
    width: 0.6rem;
    height: 0.6rem;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
  }
}
/* nav ------------------------- */
@media screen and (max-width: 767px) {
  .header .title_line {
    display: flex;
    align-items: center;
    height: 6rem;
    padding-top: 0;
    padding-left: 0.8rem;
  }
  .header .title img {
    width: 24rem;
    height: auto;
  }
  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
  }
  .drawer_btn {
    position: relative;
    width: 5rem;
    height: 5rem;
    background-color: var(--col_base);
    border: none;
    cursor: pointer;
  }
  .drawer_btn > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2px;
    background-color: var(--col_base_t);
    transform: translateX(-50%);
  }
  .drawer_btn > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer_btn > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer_btn > span:last-child {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer_btn.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .drawer_btn.active > span:nth-child(2) {
    opacity: 0;
  }
  .drawer_btn.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9998;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
  }
  .mob_side_home {
    display: flex;
    align-items: center;
    width: 100%;
    height: 5rem;
    padding-left: 1rem;
    font-size: 1.4rem;
  }
  .mob_side_home a {
    color: #4c4c4c;
  }
  .mob_side_home .dli-caret-left {
    display: inline-block;
    vertical-align: middle;
    color: #4c4c4c;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.375em 0.64952em;
    border-right-color: currentColor;
    border-left: 0;
  }
  .nav ul.gnav {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #fff;
    overflow: scroll;
  }
  .nav ul li.sp_backhome {
    display: block;
  }
  .nav ul li.sp_backhome .caret-left {
    display: inline-block;
    vertical-align: middle;
    color: #4c4c4c;
    line-height: 1;
    width: 0;
    height: 0;
    margin-right: 1rem;
    border-style: solid;
    border-color: transparent;
    border-width: 0.375em 0.64952em;
    border-right-color: currentColor;
    border-left: 0;
  }
  .nav ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 5rem;
    padding: 0 1em;
    color: #4c4c4c;
    font-size: 1.5rem;
  }
  .nav ul > li {
    border-bottom: 1px solid #d4d4d4;
  }
  .nav li .mb_t, .nav li .mb_t-non {
    position: relative;
    display: block;
  }
  .nav li .mb_t::before {
    content: "－";
    color: #e19f92;
    margin-right: 0.6rem;
  }
  .nav li .pc_m {
    display: none;
  }
  .nav li.has-dropdown .dropdown_outer {
    display: block;
  }
  .nav ul li .dropmenu {
    display: block;
  }
  .nav ul li .dropmenu a {
    color: #4c4c4c;
  }
  .dropmenu .box {
    margin-top: 3rem;
  }
  .dropmenu .box:first-child {
    margin-top: 0;
  }
  .dropmenu .box dt a .line {
    display: inline-block;
    margin-right: 0.6rem;
    color: #e19f92;
  }
  .dropmenu .box dd {
    padding-left: 2rem;
  }
  .dropmenu .box dd ul {
    border-top: 1px dashed #ccc;
  }
  .dropmenu .box dd li {
    border-bottom: 1px dashed #ccc;
  }
  .dropmenu .box:last-child dd li:last-child {
    border-bottom: 0;
  }
  /* メニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  .navbar {
    display: none;
  }
}
/*
main_img
---------------------------------------------------------- */
.main_img_wrap {
  padding-top: 3.6rem;
  background-color: #fbf8f3;
}

.main_img {
  width: 100%;
  max-width: var(--pcl);
  max-height: 800px;
  aspect-ratio: 1.65/1;
  margin-right: auto;
  margin-left: auto;
  border-radius: 2.8rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .main_img_wrap {
    padding-top: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .main_img {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    border-radius: 1.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .main_img_wrap {
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .main_img {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    border-radius: 1.8rem;
  }
}
@media screen and (min-width: 1081px) {
  .main_img_wrap {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
/*
COMMON
---------------------------------------------------------- */
.btn_wrap {
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  background-color: #eee1d8;
}
.btn_wrap .btn_img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .btn_wrap {
    padding: 4.8rem 1.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .btn_wrap {
    padding: 6.4rem 4.8rem;
  }
}
/*
HOME
---------------------------------------------------------- */
.home_common_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #e1a093;
  border-radius: 3rem;
  color: #fff;
  font-size: 2rem;
  font-weight: var(--bold);
  opacity: 1;
}
.home_common_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/arrow2.svg);
  background-size: contain;
}
.home_common_btn a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .home_common_btn a {
    font-size: 1.8rem;
    font-weight: var(--mid);
  }
}
.home_news_wrap {
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  background-color: #fbf8f3;
}

.news_list_wrap {
  position: relative;
  width: 100%;
  max-width: var(--pcm);
  margin-top: 6.4rem;
  margin-right: auto;
  margin-left: auto;
  padding: 3.2rem 6.4rem 4.8rem;
  background-color: #fff;
  border-radius: 1.8rem;
}
.news_list_wrap .post_list li:last-child {
  border-bottom: 0;
}
.news_list_wrap .post_list_btn {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 58rem;
  height: 6rem;
}

@media screen and (max-width: 767px) {
  .home_news_wrap {
    padding-top: 6.4rem;
    padding-right: 2rem;
    padding-bottom: 8rem;
    padding-left: 2rem;
  }
  .news_list_wrap {
    margin-top: 4rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .news_list_wrap .post_list_btn {
    width: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .home_news_wrap {
    padding-top: 8rem;
    padding-right: 4rem;
    padding-bottom: 10rem;
    padding-left: 4rem;
  }
  .news_list_wrap {
    padding-right: 3.2rem;
    padding-left: 3.2rem;
  }
}
@media screen and (min-width: 1081px) {
  .home_news_wrap {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.home_about_wrap {
  position: relative;
  width: 100%;
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  background: linear-gradient(to right, rgb(255, 255, 255) 35%, rgba(255, 255, 255, 0.5) 100%), url(../images/home_about.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  z-index: 0;
}
.home_about_wrap .home_about {
  display: flex;
  width: 100%;
  max-width: var(--pcm);
  margin-top: 5.6rem;
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
}
.home_about_wrap .home_about .inner {
  width: 50%;
}
.home_about_wrap .home_about .inner h3 {
  margin-bottom: 3.2rem;
  color: #6c6253;
  font-size: 3.2rem;
  font-weight: var(--bold);
  line-height: 1.8;
}
.home_about_wrap .home_about .inner p {
  font-size: 1.6rem;
  line-height: 2.2;
  text-align: justify;
}

.home_about .about_btn {
  width: 100%;
  height: 6rem;
  margin-top: 4.8rem;
}

@media screen and (max-width: 767px) {
  .home_about_wrap {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .home_about_wrap .home_about .inner {
    width: 100%;
    padding-right: 3rem;
    padding-left: 3rem;
  }
  .home_about_wrap .home_about .inner h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .home_about_wrap {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .home_about_wrap .home_about {
    padding-left: 4rem;
  }
  .home_about_wrap .home_about .inner {
    width: 60%;
  }
  .home_about_wrap .home_about .inner h3 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1081px) {
  .home_about_wrap .home_about {
    padding-left: 4rem;
  }
}
.home_treatment_wrap {
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  background-color: #fbf8f3;
}
.home_treatment_wrap .container {
  width: 100%;
  max-width: var(--pcm);
  margin-right: auto;
  margin-left: auto;
  padding: 12.8rem 6.4rem;
  background-color: #fff;
  border-radius: 1.8rem;
}

.home_treatment_section {
  margin-top: 10rem;
}
.home_treatment_section.fs {
  margin-top: 6.4rem;
}
.home_treatment_section h3 {
  margin-bottom: 4.8rem;
  padding: 1em;
  background-color: #827a6d;
  border-radius: 1rem;
  color: #fff;
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: var(--bold);
  text-align: center;
}

.home_treatment {
  display: grid;
  gap: 4.8rem;
}
.home_treatment.gtc4 {
  grid-template-columns: repeat(4, 1fr);
}
.home_treatment.gtc3 {
  grid-template-columns: repeat(3, 1fr);
}
.home_treatment .h_t_cell a {
  display: block;
  width: 100%;
  padding: 2.8rem 3.2rem 3.2rem;
  background-color: #faf6ef;
  border-radius: 0.8rem;
}
.home_treatment .h_t_cell h4 {
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 2px dashed #413524;
  color: #413524;
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
}
.home_treatment .h_t_cell h4.ln2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4em;
}

.h_t_icon {
  text-align: center;
}
.h_t_icon img {
  width: auto;
  height: 8.8rem;
}

.home_treatment_btn {
  margin-top: 4.8rem;
  width: 100%;
  height: 6rem;
}
.home_treatment_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 6rem;
  border: 2px solid #e8b3a9;
  border-radius: 3rem;
  color: #dd9486;
  font-size: 2rem;
  font-weight: var(--bold);
  opacity: 1;
}
.home_treatment_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/arrow.svg);
  background-size: contain;
}
.home_treatment_btn a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .home_treatment_wrap {
    padding: 8rem 2rem;
  }
  .home_treatment_wrap .container {
    padding: 6.4rem 2rem;
  }
  .home_treatment {
    display: block;
  }
  .home_treatment .h_t_cell + .h_t_cell {
    margin-top: 4rem;
  }
  .home_treatment_btn a {
    font-size: 1.8rem;
    font-weight: var(--mid);
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .home_treatment_wrap {
    padding: 8rem 4rem;
  }
  .home_treatment_wrap .container {
    padding: 8rem 4rem;
  }
  .home_treatment.gtc4, .home_treatment.gtc3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home_examination_wrap {
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  background-color: #fff;
}

.home_examination {
  width: 100%;
  max-width: 1296px;
  margin-top: 6.4rem;
  margin-right: auto;
  margin-left: auto;
}

.home_exam_block {
  display: flex;
  justify-content: space-between;
}
.home_exam_block + .home_exam_block {
  margin-top: 10rem;
}
.home_exam_block.rr {
  flex-direction: row-reverse;
}
.home_exam_block .h_m_txt {
  width: 46%;
}
.home_exam_block .h_m_txt h3 {
  margin-bottom: 4rem;
  padding-bottom: 1.4rem;
  border-bottom: 2px dashed #cacaca;
  color: #6c6253;
  font-size: 2.4rem;
  font-weight: var(--bold);
  text-align: center;
  letter-spacing: 0.1em;
}
.home_exam_block .h_m_txt p {
  font-size: 1.6rem;
  line-height: 2.2;
  text-align: justify;
}
.home_exam_block .h_m_txt p + p {
  margin-top: 1.5em;
}
.home_exam_block .h_m_txt .exam_btn {
  width: 100%;
  height: 6rem;
  margin-top: 4rem;
}
.home_exam_block .h_m_img {
  width: 48%;
  border-radius: 1.8rem;
  overflow: hidden;
}
.home_exam_block .h_m_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .home_examination_wrap {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .home_exam_block {
    display: block;
  }
  .home_examination {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .home_exam_block .h_m_txt, .home_exam_block .h_m_img {
    width: 100%;
  }
  .home_exam_block .h_m_txt h3 {
    margin-bottom: 2.4rem;
  }
  .home_exam_block .h_m_img {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .home_examination_wrap {
    padding: 8rem 4rem;
  }
  .home_exam_block {
    gap: 4rem;
  }
  .home_exam_block .h_m_txt, .home_exam_block .h_m_img {
    width: 50%;
  }
}
@media screen and (min-width: 1081px) {
  .home_exam_block {
    gap: 0.8rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.home_facility_wrap {
  width: 100%;
  background-image: url(../images/home_facility_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home_facility {
  width: 100%;
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-color: rgba(255, 255, 255, 0.85);
}
.home_facility .desc {
  margin-top: 6.4rem;
  text-align: center;
}
.home_facility .desc p {
  line-height: 2.2;
}

.facility_btn {
  width: 100%;
  max-width: 58rem;
  height: 6rem;
  margin-top: 6.4rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .home_facility {
    width: 90%;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .home_facility .desc {
    margin-top: 4.8rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .home_facility .desc p {
    text-align: justify;
  }
  .facility_btn {
    margin-top: 3.2rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .home_facility {
    width: 80%;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .facility_btn {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.home_payment_wrap {
  padding-top: 12.8rem;
  padding-right: 4rem;
  padding-left: 4rem;
}

.home_payment {
  width: 100%;
  max-width: var(--pcm);
  margin-right: auto;
  margin-left: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  border: 1px solid #80786b;
  border-radius: 1.8rem;
}

.payment_title {
  color: #6c6253;
  font-size: 3.2rem;
  font-weight: var(--bold);
  text-align: center;
}

.home_payment .desc {
  margin-top: 5.4rem;
}
.home_payment .desc p {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}

.payment_method_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 6.4rem;
}

.payment_method {
  padding-right: 6.4rem;
  padding-left: 6.4rem;
}
.payment_method:first-child {
  border-right: 1px solid #857d71;
}
.payment_method .p_m_title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 6rem;
  background-color: #91897e;
  border-radius: 3rem;
  color: #fff;
  font-size: 2rem;
  font-weight: var(--bold);
}
.payment_method .p_m_img {
  padding-top: 4.8rem;
  text-align: center;
}
.payment_method .p_m_img img {
  width: 100%;
  max-width: 42rem;
  height: 100%;
  max-height: 12rem;
}

@media screen and (max-width: 767px) {
  .home_payment_wrap {
    padding-top: 8rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .home_payment {
    padding: 4.8rem 2rem;
  }
  .payment_title {
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .home_payment .desc {
    margin-top: 3.2rem;
  }
  .home_payment .desc p {
    font-size: 1.6rem;
    text-align: justify;
  }
  .payment_method_wrap {
    display: block;
    margin-top: 4.8rem;
  }
  .payment_method {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .payment_method + .payment_method {
    margin-top: 4rem;
  }
  .payment_method:first-child {
    border-right: 0;
  }
  .payment_method .p_m_title {
    height: 4.8rem;
    border-radius: 2.4rem;
    font-size: 1.6rem;
  }
  .payment_method .p_m_img {
    padding-top: 2.4rem;
  }
  .payment_method .p_m_img img {
    max-height: 8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .home_payment_wrap {
    padding-top: 8rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .home_payment {
    padding: 4.8rem 4rem;
  }
  .home_payment .desc p {
    font-size: 1.6rem;
    line-height: 2;
    text-align: left;
  }
  .payment_method {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .payment_method .p_m_img {
    padding-top: 3.2rem;
  }
  .payment_method .p_m_img img {
    max-height: 8rem;
  }
}
/*
CONTENTS
---------------------------------------------------------- */
.contents_header_outer {
  padding-top: 3.6rem;
  background-color: #fbf8f3;
}

.contents_header {
  position: relative;
  width: 100%;
  max-width: var(--pcl);
  aspect-ratio: 3/1;
  margin: 0 auto;
  border-radius: 3.2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* コンテンツheader画像 */
}
.contents_header.sub {
  background-image: url(../images/main_1.jpg);
}
.contents_header.about {
  background-image: url(../images/about_head.jpg);
}
.contents_header.exam {
  background-image: url(../images/exam_head.jpg);
}
.contents_header.facility {
  background-image: url(../images/facility_head.jpg);
}
.contents_header.treatment1 {
  background-image: url(../images/treatment_head1.jpg);
}
.contents_header.treatment2 {
  background-image: url(../images/treatment_head2.jpg);
}
.contents_header.treatment3 {
  background-image: url(../images/treatment_head3.jpg);
}
.contents_header.treatment4 {
  background-image: url(../images/treatment_head4.jpg);
}
.contents_header.news {
  background-image: url(../images/news_head.jpg);
}
.contents_header.access {
  background-image: url(../images/access_head.jpg);
}
.contents_header .inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(108, 98, 83, 0.7);
  border-radius: 3.2rem;
}
.contents_header .inner h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(2.4rem, 3.2vw, 5.5rem);
  font-weight: var(--bold);
  text-align: center;
}
.contents_header .inner h1 .en {
  display: block;
  margin-top: 1em;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .contents_header_outer {
    padding-top: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .contents_header {
    aspect-ratio: 2.4/1;
    border-radius: 1.8rem;
  }
  .contents_header .inner {
    border-radius: 1.8rem;
  }
  .contents_header .inner h1 .en {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .contents_header_outer {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .contents_header {
    border-radius: 1.8rem;
  }
  .contents_header .inner {
    border-radius: 1.8rem;
  }
}
@media screen and (min-width: 1081px) {
  .contents_header_outer {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.pagepath {
  width: 100%;
  max-width: var(--pcl);
  margin-top: 3.2rem;
  margin-right: auto;
  margin-left: auto;
}
.pagepath ul {
  display: flex;
  justify-content: flex-end;
  font-size: 1.5rem;
}
.pagepath ul li::after {
  content: "／";
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}
.pagepath ul li:last-child:after {
  content: "";
  margin-right: 0;
  margin-left: 0;
}
.pagepath a {
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #ccc;
}
.pagepath a:hover {
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .pagepath {
    margin-top: 1.6rem;
  }
  .pagepath ul {
    padding-bottom: 1rem;
    justify-content: flex-start;
    white-space: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .pagepath ul::-webkit-scrollbar {
    display: none;
  }
  .pagepath ul li {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pagepath ul li {
    font-size: 1.4rem;
  }
}
.contents_body {
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  background-color: #fbf8f3;
}

@media screen and (max-width: 767px) {
  .contents_body {
    padding-top: 4.8rem;
    padding-bottom: 6.4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .contents_body {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
/* Heading */
.hd2 {
  text-align: center;
}
.hd2 h2 {
  color: #716559;
  font-size: clamp(2.4rem, 3.2vw, 4.6rem);
  font-weight: var(--bold);
}
.hd2 .hd2_img {
  margin-top: 2rem;
}
.hd2 .hd2_img img {
  width: auto;
  height: 2rem;
}

.hd3 {
  position: relative;
  margin-bottom: 4.8rem;
  padding: 0.4rem 0 0.4rem 2.4rem;
  background-color: #fbf8f3;
  overflow: hidden;
}
.hd3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: #f0c081;
  border-radius: 2px;
}
.hd3 h3 {
  color: #726a5c;
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  font-weight: var(--bold);
}

.hd4 {
  position: relative;
  padding: 0.4rem 0 0.6rem 2.4rem;
  background-color: #fbf8f3;
  overflow: hidden;
}
.hd4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: #f0c081;
  border-radius: 2px;
}
.hd4 h4 {
  color: #726a5c;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: var(--bold);
}

@media screen and (max-width: 767px) {
  .hd2 .hd2_img img {
    width: auto;
    height: 1.4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .hd2 .hd2_img img {
    width: auto;
    height: 1.6rem;
  }
  .hd3 {
    margin-bottom: 4rem;
  }
}
/* About -------------------------- */
.greeting_wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 6.4rem;
  width: 100%;
  max-width: 1296px;
  margin-top: 6.4rem;
  margin-right: auto;
  margin-left: auto;
}
.greeting_wrap .profile_img {
  width: 40rem;
}
.greeting_wrap .profile_img img {
  width: 100%;
  height: auto;
  border-radius: 1.8rem;
}
.greeting_wrap .greeting {
  flex: 1;
}
.greeting_wrap .greeting p {
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: justify;
}
.greeting_wrap .greeting .sign {
  margin-top: 1.6rem;
  text-align: right;
}
.greeting_wrap .greeting .sign span {
  display: inline-block;
  margin-left: 1rem;
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .greeting_wrap {
    display: block;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .greeting_wrap .greeting p {
    font-size: 1.5rem;
    line-height: 2;
  }
  .greeting_wrap .profile_img {
    width: 100%;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .greeting_wrap {
    padding-right: 4rem;
    padding-left: 4rem;
    gap: 3.2rem;
  }
  .greeting_wrap .profile_img {
    width: 30%;
  }
  .greeting_wrap .greeting p {
    font-size: 1.5rem;
    line-height: 2;
  }
}
@media screen and (min-width: 1081px) {
  .greeting_wrap {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.status_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12.8rem;
  width: 100%;
  max-width: 1296px;
  margin-top: 10rem;
  margin-right: auto;
  margin-left: auto;
}

.history_list li {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 3.2rem;
  font-size: 1.8rem;
  line-height: 1.8;
}
.history_list li + li {
  margin-top: 2.4rem;
}
.history_list li .desc {
  text-align: justify;
}

.dot_list {
  padding-left: 2rem;
}
.dot_list li {
  list-style-type: disc;
  font-size: 1.8rem;
}
.dot_list li + li {
  margin-top: 2.4rem;
}

.affiliation {
  margin-top: 10rem;
}

@media screen and (max-width: 767px) {
  .status_wrap {
    display: block;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .history_list li {
    display: block;
  }
  .status, .affiliation {
    margin-top: 8rem;
  }
  .history_list li, .dot_list li {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .status_wrap {
    display: block;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .status, .affiliation {
    margin-top: 8rem;
  }
  .history_list li, .dot_list li {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1081px) {
  .status_wrap {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.coop_wrap {
  width: 100%;
  max-width: var(--pcm);
  margin-top: 12.8rem;
  margin-right: auto;
  margin-left: auto;
  padding: 9.6rem 6.4rem;
  background-color: #fff;
  border-radius: 1.8rem;
}
.coop_wrap ul {
  margin-top: 6.4rem;
}
.coop_wrap ul li {
  padding: 3.6rem 2.4rem;
  border-top: 2px dashed #cacaca;
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .coop_wrap {
    width: calc(100% - 2rem);
    margin-top: 8rem;
    margin-right: auto;
    margin-left: auto;
    padding: 4.8rem 2rem;
  }
  .coop_wrap ul {
    margin-top: 4.8rem;
  }
  .coop_wrap ul li {
    padding: 2.4rem 1.6rem;
    font-size: 1.6rem;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .coop_wrap {
    width: calc(100% - 4rem);
    margin-top: 10rem;
    margin-right: auto;
    margin-left: auto;
    padding: 6.4rem 3.2rem;
  }
  .coop_wrap ul li {
    padding: 2.4rem 1.6rem;
    font-size: 1.6rem;
    line-height: 2;
  }
}
@media screen and (min-width: 1081px) {
  .coop_outer {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
/* Facility -------------------------- */
.facility_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6.4rem;
  row-gap: 8rem;
  width: 100%;
  max-width: var(--pcm);
  margin-top: 6.4rem;
  margin-right: auto;
  margin-left: auto;
}
.facility_list .fac_img {
  width: 100%;
  aspect-ratio: 1.5/1;
  border-radius: 1.8rem;
  overflow: hidden;
}
.facility_list .fac_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility_list h3 {
  margin-top: 3.6rem;
  margin-bottom: 2.8rem;
  color: #989186;
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: var(--bold);
}
.facility_list p {
  line-height: 1.8;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .facility_list {
    display: block;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .facility_list li + li {
    margin-top: 6.4rem;
  }
  .facility_list h3 {
    margin-top: 2.8rem;
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .facility_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 6.4rem;
    row-gap: 8rem;
    width: calc(100% - 4rem);
    margin-top: 6.4rem;
    margin-right: auto;
    margin-left: auto;
  }
  .facility_list h3 {
    margin-top: 2.8rem;
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1081px) {
  .facility_list_wrap {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.other_wrap {
  width: 100%;
  max-width: var(--pcm);
  margin-top: 12.8rem;
  margin-right: auto;
  margin-left: auto;
  padding: 9.6rem 6.4rem 4.8rem;
  background-color: #fff;
  border-radius: 1.8rem;
}
.other_wrap .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.4rem;
  margin-top: 6.4rem;
}
.other_wrap .inner li {
  padding: 4rem 2.4rem;
  border-top: 2px dashed #cacaca;
}
.other_wrap .inner li.ll {
  border-bottom: 2px dashed #cacaca;
}

@media screen and (max-width: 767px) {
  .other_wrap {
    width: calc(100% - 2rem);
    margin-top: 8rem;
    margin-right: auto;
    margin-left: auto;
    padding: 4.8rem 2.4rem 2.4rem;
  }
  .other_wrap .inner {
    display: block;
    margin-top: 4.8rem;
  }
  .other_wrap .inner li {
    padding: 3.2rem 2.4rem;
  }
  .other_wrap .inner li.ll {
    border-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .other_wrap {
    width: calc(100% - 4rem);
    margin-top: 10rem;
    margin-right: auto;
    margin-left: auto;
    padding: 6.4rem 2.4rem 3.2rem;
  }
}
@media screen and (min-width: 1081px) {
  .other_wrap_outer {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
/* Treatment -------------------------- */
.treatment_wrap {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
}
.treatment_wrap .treatment_nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  width: 100%;
  height: 7.2rem;
}
.treatment_wrap .treatment_nav .tmt_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #dad7d4;
  border-radius: 1.8rem 1.8rem 0 0;
  color: #fff;
  font-size: 2rem;
}
.treatment_wrap .treatment_nav .tmt_link a:hover {
  background-color: #827a6d;
}
.treatment_wrap .treatment_nav .tmt_link .now {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #827a6d;
  border-radius: 1.8rem 1.8rem 0 0;
  color: #fff;
  font-size: 2rem;
}
.treatment_wrap .inner {
  width: 100%;
  padding: 12.8rem 6.4rem;
  background-color: #fff;
  border-radius: 0 0 1.8rem 1.8rem;
}

@media screen and (max-width: 767px) {
  .treatment_wrap {
    width: calc(100% - 2rem);
  }
  .treatment_wrap .treatment_nav {
    gap: 1px;
    height: 4.8rem;
  }
  .treatment_wrap .treatment_nav .tmt_link a, .treatment_wrap .treatment_nav .tmt_link .now {
    border-radius: 1rem 1rem 0 0;
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .treatment_wrap {
    width: calc(100% - 4rem);
  }
  .treatment_wrap .treatment_nav {
    height: 6.4rem;
    gap: 1rem;
  }
  .treatment_wrap .treatment_nav .tmt_link a, .treatment_wrap .treatment_nav .tmt_link .now {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1081px) {
  .treatment_wrap {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .treatment_wrap .inner {
    padding: 6.4rem 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .treatment_wrap .inner {
    padding: 6.4rem 2rem;
  }
}
.cosme_intro {
  display: flex;
  justify-content: space-between;
  gap: 6.4rem;
  width: 100%;
  margin-top: 6.4rem;
}
.cosme_intro .desc {
  flex: 1;
}
.cosme_intro .desc p {
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: justify;
}
.cosme_intro .desc .contact {
  margin-top: 4.8rem;
}
.cosme_intro .desc .contact .phone_num {
  display: flex;
  align-items: center;
  color: #827a6d;
}
.cosme_intro .desc .contact .phone_num .phone_icon {
  width: 4.8rem;
  margin-right: 1rem;
}
.cosme_intro .desc .contact .phone_num .phone_icon img {
  width: 100%;
  height: auto;
}
.cosme_intro .desc .contact .phone_num .num {
  padding-bottom: 0.8rem;
  font-size: clamp(3.2rem, 3vw, 4.8rem);
  font-weight: var(--bold);
  letter-spacing: 0.05em;
}
.cosme_intro .desc .contact .phone_num .name {
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  font-weight: var(--bold);
}
.cosme_intro .desc .contact .contact_aleat {
  margin-top: 1rem;
  color: #716559;
  font-size: 1.4rem;
}
.cosme_intro .desc .cosme_reservation {
  margin-top: 2rem;
}
.cosme_intro .desc .cosme_reservation p {
  font-size: 1.6rem;
  line-height: 2;
}
.cosme_intro .desc .cosme_reservation p a {
  color: #1e548b;
  text-decoration: underline;
  opacity: 1;
}
.cosme_intro .desc .cosme_reservation p a:hover {
  opacity: 0.3;
  text-decoration: none;
}
.cosme_intro .desc .cosme_reservation p a img {
  display: inline-block;
  width: auto;
  height: 1.5rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  padding-top: 0.2rem;
  vertical-align: baseline;
}

@media screen and (max-width: 767px) {
  .cosme_intro {
    display: block;
    margin-top: 4.8rem;
  }
  .cosme_intro .desc {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cosme_intro .desc p {
    font-size: 1.6rem;
    line-height: 2;
  }
  .cosme_intro .desc .contact a {
    display: block;
    padding: 1.6rem 1rem 1.6rem 1.6rem;
    border: 1px solid #827a6d;
    border-radius: 1rem;
  }
  .cosme_intro .desc .contact .phone_num {
    display: block;
  }
  .cosme_intro .desc .contact .phone_num .phone_icon {
    display: inline-block;
    width: auto;
    margin-right: 0.5rem;
    padding-top: 0.4rem;
  }
  .cosme_intro .desc .contact .phone_num .phone_icon img {
    width: auto;
    height: 3.2rem;
  }
  .cosme_intro .desc .contact .phone_num .num {
    display: inline-block;
    font-size: 3.4rem;
    letter-spacing: 0.1rem;
    vertical-align: top;
  }
  .cosme_intro .desc .contact .phone_num .name {
    display: block;
    margin-top: 1rem;
    font-size: 1.6rem;
  }
  .cosme_intro .photo {
    width: 100%;
    margin-top: 3.2rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cosme_intro .photo img {
    width: 100%;
    height: auto;
    border-radius: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .cosme_intro .photo {
    position: relative;
    width: 30rem;
    border-radius: 1.8rem;
    overflow: hidden;
  }
  .cosme_intro .photo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .cosme_intro .desc p {
    font-size: 1.6rem;
    line-height: 2;
  }
  .cosme_intro .desc .contact .phone_num .phone_icon {
    width: 2.4rem;
  }
  .cosme_intro .desc .contact .phone_num .num {
    font-size: 3.2rem;
    letter-spacing: normal;
  }
  .cosme_intro .desc .contact .phone_num .name {
    font-size: 1.6rem;
  }
  .cosme_intro .photo {
    width: 30%;
  }
}
.treatment_box {
  margin-top: 12.8rem;
}
.treatment_box:first-child {
  margin-top: 9.6rem;
}
.treatment_box h3 {
  padding: 1em;
  background-color: #827a6d;
  border-radius: 1rem;
  color: #fff;
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: var(--bold);
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .treatment_box {
    margin-top: 4.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .treatment_box {
    margin-top: 8rem;
  }
}
.treatment_intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6.4rem;
  margin-top: 7.2rem;
}
.treatment_intro .tmt_icon {
  width: 20rem;
}
.treatment_intro .tmt_desc {
  flex: 1;
}
.treatment_intro .tmt_desc p {
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: justify;
}
.treatment_intro .tmt_desc a {
  color: #1e548b;
  text-decoration: underline;
  opacity: 1;
}
.treatment_intro .tmt_desc a:hover {
  text-decoration: none;
  opacity: 0.3;
}
.treatment_intro .tmt_desc a img {
  display: inline-block;
  width: auto;
  height: 1.5rem;
  margin-left: 0.5rem;
  vertical-align: baseline;
}

@media screen and (max-width: 767px) {
  .treatment_intro {
    display: block;
    margin-top: 4rem;
  }
  .treatment_intro .tmt_icon {
    width: 100%;
    text-align: center;
  }
  .treatment_intro .tmt_icon img {
    width: 14rem;
  }
  .treatment_intro .tmt_desc {
    margin-top: 3.2rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .treatment_intro .tmt_desc p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .treatment_intro .tmt_icon {
    width: 15rem;
  }
  .treatment_intro {
    margin-top: 4.8rem;
  }
  .treatment_intro .tmt_desc p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.symptom_wrap {
  margin-top: 8rem;
}
.symptom_wrap .hd4 {
  margin-bottom: 3.6rem;
  background-color: inherit;
}
.symptom_wrap ul.lb {
  border-bottom: 2px dashed #cacaca;
}
.symptom_wrap ul.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.8rem;
}
.symptom_wrap ul.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.8rem;
}
.symptom_wrap ul li {
  display: flex;
  align-items: center;
  padding: 2.4rem 2rem;
  border-top: 2px dashed #cacaca;
  line-height: 1.8;
}
.symptom_wrap ul li.bb {
  border-bottom: 2px dashed #cacaca;
}
.symptom_wrap .desc p {
  font-size: 1.8rem;
  line-height: 2.2;
}
.symptom_wrap .desc a {
  color: #1e548b;
  text-decoration: underline;
}
.symptom_wrap .desc a:hover {
  color: #cacaca;
  text-decoration: none;
}
.symptom_wrap .desc a img {
  display: inline-block;
  width: auto;
  height: 1.5rem;
  margin-left: 0.5rem;
  vertical-align: baseline;
}

.case_photo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.case_photo .photo_cell {
  position: relative;
  width: 100%;
  height: 17.4rem;
  border-radius: 1rem;
  overflow: hidden;
}
.case_photo .photo_cell img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.symptom_wrap li .dot_txt {
  display: flex;
}
.symptom_wrap li .dot_txt span {
  display: block;
  width: 3.2rem;
  color: #f0c081;
}
.symptom_wrap li .dot_txt p {
  flex: 1;
}
.symptom_wrap .note {
  margin-top: 3.2rem;
  padding: 4.8rem;
  border: 1px solid #cacaca;
  border-radius: 1.8rem;
}
.symptom_wrap .note .note_title {
  margin-bottom: 1em;
  color: #7f7668;
  font-size: 2rem;
  font-weight: var(--bold);
}
.symptom_wrap .note p {
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: justify;
}
.symptom_wrap .note p.aleat {
  margin-top: 1.6rem;
  font-size: 1.4rem;
}
.symptom_wrap .note .dot_txt {
  padding-left: 1rem;
  font-size: 1.8rem;
  line-height: 2;
}
.symptom_wrap .note .dot_txt::before {
  content: "・";
  margin-left: -1em;
}
.symptom_wrap .note .dot_txt + .dot_txt {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .symptom_wrap {
    margin-top: 4.8rem;
  }
  .symptom_wrap .hd4 {
    margin-bottom: 2.4rem;
  }
  .symptom_wrap ul {
    display: block;
  }
  .symptom_wrap ul.grid2, .symptom_wrap ul.grid3 {
    display: block;
  }
  .symptom_wrap ul li {
    padding: 2rem 1.6rem;
    line-height: 1.6;
  }
  .symptom_wrap ul li.bb {
    border-bottom: 0;
  }
  .symptom_wrap .desc p {
    font-size: 1.6rem;
    line-height: 2;
  }
  .case_photo {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .case_photo .photo_cell {
    height: 12rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .symptom_wrap .hd4 {
    margin-bottom: 2.8rem;
  }
  .symptom_wrap ul li {
    padding: 2rem 1.6rem;
  }
  .symptom_wrap .desc {
    margin-top: 2.8rem;
  }
  .symptom_wrap .desc p {
    font-size: 1.6rem;
    line-height: 2;
  }
  .case_photo .photo_cell {
    height: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .symptom_wrap .note {
    padding: 2.4rem;
  }
  .symptom_wrap .note .note_title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .symptom_wrap .note p {
    font-size: 1.6rem;
    line-height: 2;
  }
  .symptom_wrap .note .dot_txt {
    padding-left: 1rem;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .symptom_wrap .note {
    padding: 3.2rem;
  }
  .symptom_wrap .note .note_title {
    font-size: 1.8rem;
  }
  .symptom_wrap .note p {
    font-size: 1.6rem;
    line-height: 2;
  }
  .symptom_wrap .note .dot_txt {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.supple_wrap {
  display: flex;
  justify-content: space-between;
  gap: 3.2rem;
}
.supple_wrap .supple_img {
  border-radius: 1rem;
  overflow: hidden;
}
.supple_wrap .supple_img.w300 {
  width: 300px;
}
.supple_wrap .supple_img.w150 {
  width: 150px;
}
.supple_wrap .supple_txt {
  flex: 1;
}
.supple_wrap .supple_txt strong {
  display: block;
  margin-bottom: 1em;
  color: #7f7668;
  font-size: 2rem;
  font-weight: var(--bold);
}
.supple_wrap .supple_txt p {
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .supple_wrap {
    display: block;
  }
  .supple_wrap .supple_img {
    text-align: center;
  }
  .supple_wrap .supple_img.w300, .supple_wrap .supple_img.w150 {
    width: 100%;
  }
  .supple_wrap .supple_img img {
    width: auto;
    height: 180px;
  }
  .supple_wrap .supple_txt {
    margin-top: 2.4rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .supple_wrap .supple_txt strong {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .supple_wrap .supple_txt p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .supple_wrap .supple_img.w300 {
    width: 30%;
  }
  .supple_wrap .supple_img.w150 {
    width: 15%;
  }
  .supple_wrap .supple_txt strong {
    font-size: 1.8rem;
  }
  .supple_wrap .supple_txt p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.vaccination_table {
  margin-top: 4.8rem;
}
.vaccination_table table {
  width: 100%;
  border: none;
  border-collapse: inherit;
  border-top: 1px solid #c6c2bd;
  border-left: 1px solid #c6c2bd;
  border-radius: 1rem;
  font-weight: var(--mid);
}
.vaccination_table tr > * {
  border-right: 1px solid #c6c2bd;
  border-bottom: 1px solid #c6c2bd;
}
.vaccination_table tr:first-child > *:first-child {
  border-radius: 1rem 0 0 0;
}
.vaccination_table tr:first-child > *:last-child {
  border-radius: 0 1rem 0 0;
}
.vaccination_table tr:last-child > *:first-child {
  border-radius: 0 0 0 1rem;
}
.vaccination_table tr:last-child > *:last-child {
  border-radius: 0 0 1rem 0;
}
.vaccination_table th, .vaccination_table td {
  width: 50%;
  padding: 2.8rem;
  text-align: left;
}
.vaccination_table th {
  background-color: #f0efed;
}
.vaccination_table td {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .vaccination_table table {
    line-height: 1.4;
  }
  .vaccination_table th {
    width: 60%;
  }
  .vaccination_table td {
    width: 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .vaccination_table th {
    width: 60%;
  }
  .vaccination_table td {
    width: 40%;
  }
}
.beauty_table {
  margin-top: 4.8rem;
}
.beauty_table table {
  width: 100%;
  border: none;
  border-collapse: inherit;
  border-top: 1px solid #c6c2bd;
  border-left: 1px solid #c6c2bd;
  border-radius: 1rem;
  font-weight: var(--mid);
}
.beauty_table tr > * {
  border-right: 1px solid #c6c2bd;
  border-bottom: 1px solid #c6c2bd;
}
.beauty_table tr:first-child > *:first-child {
  border-radius: 1rem 0 0 0;
}
.beauty_table tr:first-child > *:last-child {
  border-radius: 0 1rem 0 0;
}
.beauty_table tr:last-child > *:first-child {
  border-radius: 0 0 0 1rem;
}
.beauty_table tr:last-child > *:last-child {
  border-radius: 0 0 1rem 0;
}
.beauty_table th, .beauty_table td {
  padding: 1.8rem 2.4rem;
  line-height: 1.6;
  text-align: left;
}
.beauty_table th {
  background-color: #f0efed;
}
.beauty_table th.nowrap {
  white-space: nowrap;
}
.beauty_table td.nowrap {
  white-space: nowrap;
}
.beauty_table td {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .beauty_table {
    padding-bottom: 1rem;
    overflow-x: scroll;
  }
  .beauty_table table {
    white-space: nowrap;
  }
  .beauty_table td {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .beauty_table {
    padding-bottom: 1rem;
    overflow-x: scroll;
  }
  .beauty_table table {
    white-space: nowrap;
  }
}
.cost_alert {
  margin-top: 2.4rem;
}
.cost_alert p {
  font-size: 1.4rem;
  line-height: 1.4;
}
.cost_alert p + p {
  margin-top: 1rem;
}
.cost_alert p .kome {
  color: #f0c081;
}

@media screen and (max-width: 767px) {
  .cost_alert {
    margin-top: 1.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .cost_alert {
    margin-top: 1.6rem;
  }
}
/* modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(130, 122, 109, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 80%;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  background: transparent;
  z-index: 100;
}

.modal-close {
  width: 8rem;
  height: 8rem;
  background-color: #827a6d;
  border: none;
  border-radius: 0 1rem 0 0;
  font-size: 4rem;
  cursor: pointer;
  color: #fff;
}

.modal-content .inner {
  padding: 4.8rem 12.8rem 12.8rem;
}
.modal-content h2 {
  color: #716559;
  font-size: 2.4rem;
  font-weight: var(--bold);
}
.modal-content table {
  width: 100%;
  margin-top: 3.6rem;
  border: none;
  border-collapse: inherit;
  border-top: 1px solid #c6c2bd;
  border-left: 1px solid #c6c2bd;
  border-radius: 1rem;
  font-weight: var(--mid);
}
.modal-content table.cdmd {
  margin-top: 0;
}
.modal-content tr > * {
  border-right: 1px solid #c6c2bd;
  border-bottom: 1px solid #c6c2bd;
}
.modal-content tr:first-child > *:first-child {
  border-radius: 1rem 0 0 0;
}
.modal-content tr:first-child > *:last-child {
  border-radius: 0 1rem 0 0;
}
.modal-content tr:last-child > *:first-child {
  border-radius: 0 0 0 1rem;
}
.modal-content tr:last-child > *:last-child {
  border-radius: 0 0 1rem 0;
}
.modal-content th, .modal-content td {
  padding: 2rem;
  line-height: 2;
  text-align: left;
}
.modal-content th {
  background-color: #827a6d;
  color: #fff;
}
.modal-content td {
  width: 40%;
  background-color: #fff;
}
.modal-content td .min {
  font-size: 1.4rem;
}
.modal-content td ul.dot_li {
  padding-left: 1em;
}
.modal-content td ul.dot_li li {
  list-style: disc;
}
.modal-content .inner .desc {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 2;
}

.modal_consultation {
  margin-top: 6rem;
  margin-bottom: 6rem;
  padding-top: 2.4rem;
  padding-bottom: 6rem;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
}
.modal_consultation h3 {
  margin-top: 4rem;
  margin-bottom: 4rem;
  color: #716559;
  font-size: 2.4rem;
  font-weight: var(--bold);
}
.modal_consultation table {
  width: 100%;
  border: 0;
}
.modal_consultation tr:first-child > *:first-child {
  border-radius: 1rem 0 0 1rem;
}
.modal_consultation tr:first-child > *:last-child {
  border-radius: 0 1rem 1rem 0;
}
.modal_consultation th, .modal_consultation td {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  border-right: 0;
  border-bottom: 1px solid #eee;
  color: #827a6d;
  text-align: center;
}
.modal_consultation th {
  background-color: #827a6d;
  color: #fff;
  font-weight: var(--bold);
}
.modal_consultation th.item {
  width: 28%;
}
.modal_consultation td {
  width: 12%;
}

.modal-content .contact {
  margin-top: 4.8rem;
}
.modal-content .contact .phone_num {
  display: flex;
  align-items: center;
  color: #827a6d;
}
.modal-content .contact .phone_num .phone_icon {
  width: 4.8rem;
  margin-right: 1rem;
}
.modal-content .contact .phone_num .phone_icon img {
  width: 100%;
  height: auto;
}
.modal-content .contact .phone_num .num {
  padding-bottom: 0.8rem;
  font-size: 4.8rem;
  font-weight: var(--bold);
  letter-spacing: 0.05em;
}
.modal-content .contact .phone_num .name {
  font-size: 2rem;
  font-weight: var(--bold);
}
.modal-content .contact .contact_aleat {
  margin-top: 1rem;
  color: #827a6d;
  font-size: 1.8rem;
  font-weight: var(--bold);
}

.open-modal-link {
  color: #1e548b;
  text-decoration: underline;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .modal-content {
    width: 90%;
    max-height: 80vh;
  }
  .modal-close {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
  .modal-content .inner {
    padding: 2rem;
    overflow-x: scroll;
  }
  .modal-content h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 1.4;
  }
  .modal_consultation h3 {
    font-size: 2rem;
  }
  .modal-content .spscroll {
    padding-bottom: 0.8rem;
    overflow-x: scroll;
  }
  .modal-content table {
    white-space: nowrap;
  }
  .modal-content .contact a {
    display: block;
    padding: 1.6rem 1rem 1.6rem 1.6rem;
    border: 1px solid #827a6d;
    border-radius: 1rem;
  }
  .modal-content .contact .phone_num {
    display: block;
  }
  .modal-content .contact .phone_num .phone_icon {
    display: inline-block;
    width: auto;
    margin-right: 0.5rem;
    padding-top: 0.4rem;
  }
  .modal-content .contact .phone_num .phone_icon img {
    width: auto;
    height: 3.2rem;
  }
  .modal-content .contact .phone_num .num {
    display: inline-block;
    font-size: 3.4rem;
    letter-spacing: normal;
    vertical-align: top;
  }
  .modal-content .contact .phone_num .name {
    display: block;
    margin-top: 1rem;
    font-size: 1.6rem;
  }
  .modal-content .contact .contact_aleat {
    font-size: 1.4rem;
    font-weight: var(--mid);
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .modal-content {
    width: 90%;
    max-height: 96vh;
  }
  .modal-close {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 2.8rem;
  }
  .modal-content .inner {
    padding: 2rem 4rem 4rem;
  }
  .modal-content .contact .phone_num .phone_icon {
    width: 4rem;
  }
  .modal-content .contact .phone_num .num {
    font-size: 4rem;
  }
  .modal-content .contact .phone_num .name {
    font-size: 1.6rem;
  }
  .modal-content .contact .contact_aleat {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
/* Examination -------------------------- */
.exam_section {
  width: 100%;
  max-width: 1296px;
  margin-right: auto;
  margin-left: auto;
}
.exam_section + .exam_section {
  margin-top: 12.8rem;
}
.exam_section h3 {
  padding: 1em;
  background-color: #827a6d;
  border-radius: 1rem;
  color: #fff;
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: var(--bold);
}
.exam_section .hd4 {
  margin-top: 8rem;
  margin-bottom: 3.6rem;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .exam_section {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .exam_section h3 {
    line-height: 1.4;
  }
}
.endoscopy {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 6.4rem;
  margin-top: 6.4rem;
}
.endoscopy .endoscopy_img {
  width: 400px;
  border-radius: 1.8rem;
  overflow: hidden;
}
.endoscopy .desc {
  flex: 1;
}
.endoscopy .desc p {
  line-height: 2.2;
}
.endoscopy .detail_btn {
  display: flex;
  align-items: center;
  margin-top: 6rem;
}
.endoscopy .detail_btn .btn + .btn {
  margin-left: 2rem;
}
.endoscopy .detail_btn .btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 270px;
  height: 6rem;
  padding-right: 3.2rem;
  padding-left: 3.2rem;
  background-color: #e1a093;
  border-radius: 3rem;
  color: #fff;
  font-size: 2rem;
}
.endoscopy .detail_btn .btn a img {
  width: auto;
  height: 2rem;
}
.endoscopy .detail_btn .btn a .txt {
  display: block;
}
.endoscopy .detail_btn .btn a .icon {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .endoscopy {
    display: block;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .endoscopy .detail_btn {
    display: block;
    margin-top: 4rem;
  }
  .endoscopy .detail_btn .btn + .btn {
    margin-top: 2.4rem;
    margin-left: 0;
  }
  .endoscopy .detail_btn .btn a {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
  .endoscopy .endoscopy_img {
    width: 80%;
    margin: 4rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .endoscopy {
    gap: 4.8rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .endoscopy .endoscopy_img {
    width: 240px;
  }
  .endoscopy .detail_btn {
    width: 100%;
    justify-content: space-between;
  }
  .endoscopy .detail_btn .btn a {
    gap: 1.6rem;
    width: 100%;
    padding-right: 2.4rem;
    padding-left: 2.4rem;
    font-size: 1.6rem;
  }
  .endoscopy .detail_btn .btn a img {
    width: auto;
    height: 1.6rem;
  }
}
@media screen and (min-width: 1081px) {
  .endoscopy {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.exam_table table {
  width: 100%;
  border: none;
  border-collapse: inherit;
  border-top: 1px solid #c6c2bd;
  border-left: 1px solid #c6c2bd;
  border-radius: 1rem;
}
.exam_table tr > * {
  border-right: 1px solid #c6c2bd;
  border-bottom: 1px solid #c6c2bd;
}
.exam_table tr:first-child > *:first-child {
  border-radius: 1rem 0 0 0;
}
.exam_table tr:first-child > *:last-child {
  border-radius: 0 1rem 0 0;
}
.exam_table tr:last-child > *:first-child {
  border-radius: 0 0 0 1rem;
}
.exam_table tr:last-child > *:last-child {
  border-radius: 0 0 1rem 0;
}
.exam_table th, .exam_table td {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.exam_table th {
  background-color: #e1dfdc;
  font-weight: var(--mid);
  text-align: center;
}
.exam_table td {
  background-color: #fff;
  text-align: center;
}
.exam_table td.item {
  padding-right: 2.4rem;
  padding-left: 2.4rem;
  background-color: #e1dfdc;
  text-align: left;
}
.exam_table td.item2 {
  padding-right: 2.4rem;
  padding-left: 2.4rem;
  background-color: #e1dfdc;
  text-align: center;
}
.exam_table td.ins {
  padding-right: 2.4rem;
  padding-left: 2.4rem;
  text-align: left;
}
.exam_table.cost th {
  width: 33%;
}
.exam_table.cost td {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .exam_table {
    padding-bottom: 1.6rem;
    overflow-x: scroll;
  }
  .exam_table table {
    white-space: nowrap;
  }
  .exam_table td {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .exam_table.vi {
    padding-bottom: 1.6rem;
    overflow-x: scroll;
  }
  .exam_table.vi table {
    white-space: nowrap;
  }
}
.gastroscopy, .colonoscopy {
  margin-top: 12.8rem;
  padding-right: 4rem;
  padding-left: 4rem;
}

@media screen and (max-width: 767px) {
  .gastroscopy, .colonoscopy {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .gastroscopy, .colonoscopy {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.gastroscopy .desc p, .colonoscopy .desc p {
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .gastroscopy .desc p, .colonoscopy .desc p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .gastroscopy .desc p, .colonoscopy .desc p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.gastroscopy dl + dl {
  margin-top: 3.6rem;
}
.gastroscopy dl dt {
  padding-left: 2rem;
  color: #726a5c;
  font-size: 1.8rem;
  font-weight: var(--bold);
  line-height: 1.4;
}
.gastroscopy dl dt::before {
  content: "●";
  margin-right: 1.6rem;
  margin-left: -2rem;
  color: #f0c081;
  font-size: 1.4rem;
}
.gastroscopy dl dd {
  padding-top: 1em;
  padding-left: 3rem;
  font-size: 1.6rem;
  line-height: 2;
}
.gastroscopy .num_list li {
  font-size: 1.8rem;
}

.colonoscopy .num_list li {
  font-size: 1.8rem;
}

.gastroscopy .num_list li .item, .colonoscopy .num_list li .item {
  color: #726a5c;
  font-weight: var(--bold);
}

.gastroscopy .num_list li .item span, .colonoscopy .num_list li .item span {
  display: inline-block;
  margin-right: 1rem;
  color: #f0c081;
}

.gastroscopy .num_list li p, .colonoscopy .num_list li p {
  padding-top: 1em;
  padding-left: 3.2rem;
  font-size: 1.6rem;
  line-height: 2;
}

.gastroscopy .num_list li + li, .colonoscopy .num_list li + li {
  margin-top: 3.6rem;
}

.gastroscopy .num_list li .dot_txt, .colonoscopy .num_list li .dot_txt {
  padding-top: 1em;
  padding-left: 3em;
  font-size: 1.6rem;
  line-height: 2;
}

.gastroscopy .num_list li .dot_txt::before, .colonoscopy .num_list li .dot_txt::before {
  content: "・";
  margin-left: -1em;
}

.gastroscopy_intro {
  display: flex;
  justify-content: space-between;
  gap: 5.6rem;
  margin-top: 7.2rem;
}
.gastroscopy_intro .desc {
  flex: 1;
}
.gastroscopy_intro .desc p + p {
  margin-top: 2em;
}
.gastroscopy_intro .gastroscopy_intro_img {
  width: 36rem;
}

.gastroscopy .merit {
  display: flex;
  justify-content: space-between;
  gap: 4.8rem;
}
.gastroscopy .merit .desc {
  flex: 1;
}
.gastroscopy .merit .img {
  width: 32rem;
}

@media screen and (max-width: 767px) {
  .gastroscopy_intro {
    display: block;
    margin-top: 4.8rem;
  }
  .gastroscopy_intro .gastroscopy_intro_img {
    width: 80%;
    margin-top: 4rem;
    margin-right: auto;
    margin-left: auto;
  }
  .gastroscopy .merit {
    display: block;
  }
  .gastroscopy .merit .img {
    display: block;
    width: 80%;
    margin-top: 4rem;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .gastroscopy_intro .gastroscopy_intro_img, .gastroscopy .merit .img {
    width: 24rem;
  }
}
.colonoscopy_intro {
  display: flex;
  justify-content: space-between;
  gap: 5.6rem;
  margin-top: 7.2rem;
}
.colonoscopy_intro .desc {
  flex: 1;
}
.colonoscopy_intro .desc p + p {
  margin-top: 2em;
}
.colonoscopy_intro .colonoscopy_intro_img {
  width: 44rem;
}

.colonoscopy_rec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3rem;
  margin-top: 5.4rem;
}
.colonoscopy_rec li {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
  padding-left: 1em;
  border-top: 2px dashed #cacaca;
  font-size: 1.8rem;
}
.colonoscopy_rec li.bdr {
  border-bottom: 2px dashed #cacaca;
}

@media screen and (max-width: 767px) {
  .colonoscopy_intro {
    display: block;
    margin-top: 4.8rem;
  }
  .colonoscopy_intro .colonoscopy_intro_img {
    width: 80%;
    margin-top: 4rem;
    margin-right: auto;
    margin-left: auto;
  }
  .colonoscopy_rec {
    display: block;
    margin-top: 2.8rem;
    border-bottom: 2px dashed #cacaca;
  }
  .colonoscopy_rec li {
    font-size: 1.6rem;
  }
  .colonoscopy_rec li.bdr {
    border-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .colonoscopy_intro .colonoscopy_intro_img {
    width: 24rem;
  }
  .colonoscopy_rec li {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.inspection_img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-top: 6rem;
}
.inspection_img figure {
  position: relative;
  width: 100%;
  height: 20rem;
  border-radius: 1.8rem;
  overflow: hidden;
}
.inspection_img figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inspection_img li p {
  margin-top: 2.4rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .inspection_img {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .inspection_img li p {
    margin-top: 1em;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .inspection_img {
    gap: 2rem;
  }
  .inspection_img figure {
    height: 16rem;
  }
}
.room_info {
  display: flex;
  justify-content: space-between;
  gap: 4.8rem;
}
.room_info .desc {
  flex: 1;
}
.room_info .desc p {
  font-size: 1.8rem;
  line-height: 2.2;
}
.room_info .room_img {
  width: 380px;
}

@media screen and (max-width: 767px) {
  .room_info {
    display: block;
  }
  .room_info .desc p {
    font-size: 1.6rem;
    line-height: 2;
  }
  .room_info .room_img {
    width: 90%;
    margin-top: 4rem;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .room_info .desc p {
    font-size: 1.6rem;
    line-height: 2;
  }
  .room_info .room_img {
    width: 28rem;
  }
}
.laxative_box {
  margin-top: 4.8rem;
  padding: 4.8rem;
  background-color: #fff;
  border-radius: 1.8rem;
}
.laxative_box .name {
  color: #726a5c;
  font-size: 2.4rem;
}
.laxative_box .desc {
  margin-top: 3.2rem;
  line-height: 2.2;
}

.laxative_info {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 3.2rem;
}
.laxative_info ul.l_info_txt {
  flex: 1;
}
.laxative_info ul.l_info_txt > li {
  display: flex;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  border-top: 2px dotted #cacaca;
  line-height: 2;
}
.laxative_info ul.l_info_txt > li:last-child {
  padding-bottom: 0;
}
.laxative_info ul.l_info_txt li .item {
  width: 12.8rem;
}
.laxative_info ul.l_info_txt li .lt {
  flex: 1;
}
.laxative_info ul.l_info_txt li ul.dot {
  padding-left: 2rem;
}
.laxative_info ul.l_info_txt li ul.dot li {
  list-style-type: disc;
}
.laxative_info .laxative_img {
  width: 24rem;
}

@media screen and (max-width: 767px) {
  .laxative_box {
    padding: 3.2rem 2.4rem;
  }
  .laxative_info {
    display: block;
  }
  .laxative_info ul.l_info_txt > li {
    display: block;
  }
  .laxative_info ul.l_info_txt li .item {
    width: 100%;
  }
  .laxative_info .laxative_img {
    width: 100%;
    margin-top: 2.4rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .laxative_info .laxative_img {
    width: 20rem;
  }
}
.colonoscopy .num_list {
  margin-top: 4.8rem;
}

.various_inspection_intro {
  margin-top: 6.4rem;
  padding-right: 4rem;
  padding-left: 4rem;
  font-size: 1.8rem;
  line-height: 2.2;
}

.various_inspection {
  margin-top: 10rem;
  padding-right: 4rem;
  padding-left: 4rem;
}

.health_check_info {
  margin-top: 6.4rem;
}
.health_check_info dl + dl {
  margin-top: 4.8rem;
}
.health_check_info dl dt {
  color: #726a5c;
  font-size: 1.8rem;
  font-weight: var(--bold);
}
.health_check_info dl dt::before {
  content: "●";
  margin-right: 1.6rem;
  color: #f0c081;
  font-size: 1.4rem;
}
.health_check_info dl dd {
  padding-top: 1em;
  padding-left: 3rem;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .various_inspection_intro {
    padding-right: 2rem;
    padding-left: 2rem;
    font-size: 1.6rem;
    line-height: 2;
  }
  .various_inspection {
    margin-top: 6.4rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.risk_assessment {
  margin-top: 10rem;
  padding-right: 4rem;
  padding-left: 4rem;
}
.risk_assessment .desc {
  margin-top: 6.4rem;
}
.risk_assessment .desc p {
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .risk_assessment {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .risk_assessment .desc {
    margin-top: 4.8rem;
  }
  .risk_assessment .desc p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
/* News -------------------------- */
.post_list_wrap {
  padding-right: 4rem;
  padding-left: 4rem;
}

.post_list {
  width: 100%;
  max-width: var(--pcm);
  margin: 0 auto;
}
.post_list li {
  border-bottom: 2px dashed #ccc;
}
.post_list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}
.post_list li a .date {
  width: 14rem;
  text-align: left;
}
.post_list li a .date span {
  display: inline-block;
  padding: 0.8rem 1rem;
  background-color: #e7b3a8;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.6rem;
}
.post_list li a .post_title {
  flex: 1;
  line-height: 1.6;
}
.post_list li a .arrow {
  width: 5.4rem;
  text-align: right;
}
.post_list li a .arrow img {
  width: 18px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .post_list {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .post_list li a {
    display: block;
  }
  .post_list li a .arrow {
    display: none;
  }
  .post_list li a .date {
    width: 100%;
  }
  .post_list li a .date span {
    font-size: 1.4rem;
  }
  .post_list li a .post_title {
    position: relative;
    padding-right: 2.4rem;
    margin-top: 1.6rem;
  }
  .post_list li a .post_title::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: url(../images/arrow.svg);
    display: block;
    width: 1.8rem;
    height: 1.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .post_list {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.pager {
  margin-top: 8.8rem;
}
.pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
.pager ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  background-color: #fff;
  border: 1px solid #e7b3a8;
  border-radius: 50%;
  color: #e7b3a8;
}
.pager ul li a.now {
  background-color: #e7b3a8;
  color: #fff;
}
.pager ul li a.arw {
  background-color: inherit;
  border: none;
}

@media screen and (max-width: 767px) {
  .pager {
    margin-top: 4.8rem;
  }
  .pager ul {
    gap: 1rem;
  }
  .pager ul li a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
/* news詳細 */
.post {
  width: 100%;
  max-width: var(--pcm);
  margin: 0 auto;
  padding: 9.6rem 6.4rem;
  background-color: #fff;
  border-radius: 2rem;
}

@media screen and (max-width: 767px) {
  .post {
    width: calc(100% - 4rem);
    padding: 4rem 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .post {
    width: calc(100% - 4rem);
    padding: 6rem 4rem;
  }
}
@media screen and (min-width: 1081px) {
  .post_outer {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.post_header {
  padding-bottom: 4rem;
  border-bottom: 1px solid #cacaca;
}
.post_header .date {
  display: inline-block;
  padding: 0.8rem 1rem;
  background-color: #e7b3a8;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.4rem;
}
.post_header h1 {
  margin-top: 2rem;
  color: #716559;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .post_header {
    padding-bottom: 3.2rem;
  }
  .post_header .date {
    font-size: 1.2rem;
  }
  .post_header h1 {
    font-size: 2rem;
  }
}
.post_body {
  margin-top: 6.4rem;
}
.post_body p {
  line-height: 2.5;
}
.post_body p + p {
  margin-top: 2em;
}
.post_body a {
  color: #1e548b;
  text-decoration: underline;
  opacity: 1;
}
.post_body a:hover {
  opacity: 0.3;
  text-decoration: none;
}
.post_body a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("../images/ex_link.svg");
  background-size: cover;
  margin-left: 0.5rem;
  vertical-align: baseline;
}
.post_body h2 {
  margin-top: 12rem;
  margin-bottom: 4rem;
  padding-top: 0.6rem;
  padding-bottom: 0.8rem;
  padding-left: 0.5em;
  border-left: 6px solid #f0c081;
  color: #6e6556;
  font-size: 2.4rem;
  font-weight: bold;
}
.post_body figure {
  margin-top: 4.8rem;
  margin-bottom: 4.8rem;
}
.post_body figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 800px;
}

@media screen and (max-width: 767px) {
  .post_body {
    margin-top: 4rem;
  }
  .post_body h2 {
    line-height: 1.4;
  }
}
.back_btn {
  margin-top: 8.8rem;
  text-align: center;
}
.back_btn img {
  width: auto;
  height: 60px;
}

@media screen and (max-width: 767px) {
  .back_btn {
    margin-top: 6rem;
  }
  .back_btn img {
    width: auto;
    height: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .back_btn img {
    width: auto;
    height: 48px;
  }
}
/* Access -------------------------- */
.access_map {
  width: 100%;
  max-width: var(--pcl);
  aspect-ratio: 1.4/1;
  margin: 6.4rem auto 0;
}
.access_map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .access_map {
    margin-top: 4rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .access_map {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 1081px) {
  .access_map_wrap {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.access_root {
  display: grid;
  grid-template-columns: 50% 50%;
  margin-top: 8rem;
}

.access_root_box {
  text-align: center;
}
.access_root_box:first-child {
  border-right: 2px dashed #cacaca;
}

.access_root_icon img {
  width: auto;
  height: 160px;
}

.access_root_box h3 {
  margin-top: 4.8rem;
  margin-bottom: 3.2rem;
  color: #716559;
  font-size: 2.4rem;
  font-weight: var(--bold);
}
.access_root_box p {
  color: #4c4c4c;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .access_root {
    display: block;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .access_root_box:first-child {
    border-right: 0;
  }
  .access_root_box + .access_root_box {
    margin-top: 3.2rem;
    padding-top: 4rem;
    border-top: 2px dashed #cacaca;
  }
  .access_root_icon img {
    width: auto;
    height: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .access_root_icon img {
    width: auto;
    height: 120px;
  }
  .access_root_box h3 {
    font-size: 2rem;
  }
}
.main_cta {
  width: 100%;
  max-width: var(--pcl);
  margin-top: 12.8rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 9.6rem;
  padding-bottom: 9.6rem;
  background-color: #fff;
  border-radius: 3.2rem;
}
.main_cta .address {
  margin-top: 6.4rem;
  text-align: center;
}
.main_cta .address p + p {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .main_cta {
    width: calc(100% - 2rem);
    margin-top: 8rem;
    margin-right: 1rem;
    margin-left: 1rem;
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
    border-radius: 1.8rem;
  }
  .main_cta .address {
    margin-top: 4rem;
  }
  .main_cta .address p {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .main_cta {
    width: calc(100% - 4rem);
    margin-top: 10rem;
    margin-right: 2rem;
    margin-left: 2rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
    border-radius: 1.8rem;
  }
}
@media screen and (min-width: 1081px) {
  .main_cta_wrap {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
/*
FOOTER
---------------------------------------------------------- */
.footer_info_wrap {
  position: relative;
  width: 100%;
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
}

@media screen and (max-width: 767px) {
  .footer_info_wrap {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .footer_info_wrap {
    padding: 8rem 1.6rem;
  }
}
.footer_information {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 6.4rem;
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer_information {
    display: block;
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
  .footer_info .footer_logo {
    text-align: center;
  }
  .footer_info .footer_logo img {
    width: 240px;
    height: auto;
  }
}
@media screen and (min-width: 1081px) {
  .footer_information {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.footer_info .address {
  margin-top: 2rem;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3e3e3;
  line-height: 1.4;
}
.footer_info .address p + p {
  margin-top: 0.6em;
}
.footer_info .address a {
  text-decoration: underline;
}
.footer_info .contact {
  margin-top: 2.8rem;
}
.footer_info .contact .tel {
  font-size: 2rem;
}
.footer_info .contact .tel .num {
  display: inline-block;
  margin-left: 1.4rem;
  font-size: 2.6rem;
}
.footer_info .contact .fax {
  margin-top: 1.6rem;
  font-size: 1.4rem;
}
.footer_info .contact .fax .num {
  display: inline-block;
  margin-left: 0.8rem;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .footer_info .address p {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .footer_info .address p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .footer_info .contact {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .footer_consultation {
    margin-top: 3.2rem;
  }
}
.footer_consultation table {
  width: 100%;
}
.footer_consultation th, .footer_consultation td {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #d4d4d4;
}
.footer_consultation tr:first-child th, .footer_consultation tr:first-child td {
  border-bottom: 0;
}
.footer_consultation th {
  background-color: #e1a093;
  color: #fff;
  font-weight: var(--bold);
}
.footer_consultation th:first-child {
  border-radius: 8px 0 0 8px;
}
.footer_consultation th:last-child {
  border-radius: 0 8px 8px 0;
}
.footer_consultation th.item {
  width: 30%;
}
.footer_consultation th.day {
  width: 11.3%;
  text-align: left;
}
.footer_consultation td.time {
  text-align: center;
}
.footer_consultation .alert {
  margin-top: 3.2rem;
}
.footer_consultation .alert p {
  font-size: 1.8rem;
}
.footer_consultation .alert p + p {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .footer_consultation .alert p {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .footer_consultation .alert p {
    font-size: 1.6rem;
  }
}
.footer_link_wrap {
  position: relative;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fbf8f3;
}

@media screen and (max-width: 767px) {
  .footer_link_wrap {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
@media screen and (min-width: 1081px) {
  .footer_link_wrap {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.footer_link {
  display: grid;
  grid-template-columns: 22% 28% 28% 22%;
  width: 100%;
  max-width: var(--pcm);
  margin: 0 auto;
}
.footer_link .fl_box {
  border-right: 1px solid #d9d7d4;
}
.footer_link .fl_box.lst {
  border-right: 0;
}
.footer_link .fl_box.fst {
  padding-right: 24%;
}
.footer_link .fl_box.sec {
  padding-left: 16%;
  padding-right: 16%;
}
.footer_link .fl_box.lst {
  padding-left: 24%;
}
.footer_link .fl_box .item {
  margin-bottom: 1em;
  color: #4c4c4c;
}
.footer_link .fl_box .item span {
  color: #e19f92;
}
.footer_link .fl_box .child {
  padding-left: 1em;
}
.footer_link .fl_box a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_link .fl_box a div span {
  color: #e19f92;
}
.footer_link .fl_box a img {
  display: block;
  width: 16px;
  height: auto;
}
.footer_link .fl_box li + li {
  margin-top: 1em;
}
.footer_link .fl_box a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .footer_link {
    display: block;
  }
  .footer_link .fl_box.fst, .footer_link .fl_box.sec, .footer_link .fl_box.lst {
    padding-right: 4rem;
    padding-left: 2.4rem;
  }
  .footer_link .fl_box.sec, .footer_link .fl_box.lst {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .footer_link .fl_box.fst, .footer_link .fl_box.sec, .footer_link .fl_box.lst {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
    font-size: 1.5rem;
  }
}
.pagetop_wrap {
  position: relative;
  width: 100%;
}

.pagetop {
  position: absolute;
  right: 16px;
  top: -86px;
}
.pagetop img {
  width: 70px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .pagetop {
    position: absolute;
    right: 16px;
    top: -56px;
  }
  .pagetop img {
    width: 40px;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pagetop {
    position: absolute;
    right: 16px;
    top: -66px;
  }
  .pagetop img {
    width: 40px;
    height: auto;
  }
}
.copyright {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
  color: #4c4c4c;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .copyright {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    font-size: 1.2rem;
  }
}
