@charset "UTF-8";
@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff"), url("../font/NotoSansJP-Regular.otf") format("otf");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff") format("woff"), url("../font/NotoSansJP-Medium.otf") format("oft");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff"), url("../font/NotoSansJP-Bold.otf") format("otf");
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  src: url("../font/Oswald-VariableFont_wght.woff") format("woff"), url("../font/Oswald-VariableFont_wght.eot") format("eot");
  font-display: swap;
}
:root {
  --breakPoint-xs: 375;
  --breakPoint-s: 560;
  --breakPoint-m: 960;
  --breakPoint-l: 1200;
  --font-size: min(calc(100vw * 1 / var(--breakPoint-xs)), 8.125%);
}
@media (min-width: 560px) {
  :root {
    --font-size: min(calc(100vw * 1.05 / var(--breakPoint-s)), 8.125%);
  }
}
@media (min-width: 960px) {
  :root {
    --font-size: min(calc(100vw * 1.1 / var(--breakPoint-m)), 8.125%);
  }
}
@media (min-width: 1200px) {
  :root {
    --font-size: min(calc(100vw * 1.15 / var(--breakPoint-l)), 8.125%);
  }
}

html {
  min-height: 100%;
  position: relative;
  font-size: 62.5%;
}

body {
  font-family: "NotoSansCJKjp", sans-serif;
  box-sizing: border-box;
}

@media screen and (max-width: 1080px) {
  body {
    padding-bottom: 5rem;
  }
}
a {
  text-decoration: none;
  color: #303030;
}

.pc-none {
  display: none !important;
}

@media screen and (max-width: 1080px) {
  .sp-none {
    display: none !important;
  }
  .pc-none {
    display: block !important;
  }
}
.c-txt {
  font-size: 1.6rem;
  line-height: 1.8;
}
.c-txt-center {
  text-align: center;
}
.c-txt-pink {
  color: #ff9ea8;
}
.c-txt-attention {
  font-size: 1rem;
  line-height: 1.2rem;
  display: block;
}
.c-attention {
  font-size: 0.8rem;
  line-height: 1.2rem;
}

.l-inner {
  width: 93%;
  max-width: 1080px;
  margin: 0 auto;
}
.l-mv {
  line-height: 0;
  /* font-size: 0; ← こちらでも、余白がなくなります */
  font-size: 0;
}

@media screen and (max-width: 1080px) {
  .c-txt {
    font-size: min(3.5vw, 1.6rem);
    line-height: 1.5;
  }
}
.btn {
  width: 380px;
  height: 5rem;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1.6rem;
}
.btn_online {
  background: #303030;
  color: #fff;
}
.btn_line {
  background: #339738;
  color: #fff;
}

.section {
  padding: 100px 0;
}
.section_head {
  font-size: 3.4rem;
  letter-spacing: 0.1em;
  color: #303030;
}
.section_head_en {
  display: block;
  font-size: 1.4rem;
  color: #ff9ea8;
  font-weight: normal;
  font-family: "Oswald", sans-serif;
}
.section_bg_pink {
  background: #fff2f4;
}

@media screen and (max-width: 1080px) {
  .section {
    padding: min(10vw, 5rem) 0;
  }
  .section_head {
    font-size: min(7vw, 3.2rem);
    font-weight: 500;
  }
  .section_head_en {
    font-size: min(3.5vw, 1.8rem);
  }
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-40 {
  margin-bottom: 40px;
}

@media screen and (max-width: 1080px) {
  .mb-80 {
    margin-bottom: min(8vw, 8rem);
  }
  .mb-40 {
    margin-bottom: min(5vw, 4rem);
  }
}
.col {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.col-bg {
  background: #fff2f4;
  padding: 13px 20px 20px 20px;
  border-radius: 5px;
  position: relative;
}
.col-bg-white {
  background: #fff;
}
.col-bg:before {
  position: absolute;
  content: "";
  top: 0;
  height: 5px;
  background: #ff99a2;
  width: 100%;
  left: 0;
  border-radius: 3px 3px 0 0;
}
.col-bg a {
  text-decoration: none;
  color: #333;
}
.col-5 div {
  width: calc(33.3333333333% - 20px);
}
.col-4 div {
  width: calc(25% - 20px);
}
.col-3 a {
  width: calc(33.3333333333% - 20px);
}
.col-3 div {
  width: calc(33.3333333333% - 20px);
}
.col-2 div {
  width: calc(50% - 20px);
}

@media screen and (max-width: 1080px) {
  .col {
    gap: 1.5rem;
    justify-content: space-between;
  }
  .col-bg {
    padding: 12px 0 10px 0;
  }
  .col-3 a,
  .col-3 div {
    width: calc(50% - 0.75rem);
  }
}
.header {
  padding: 1rem 0 0 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  top: 0;
  position: sticky;
  background: #fff;
}
.header_logo {
  width: 220px;
  height: auto;
  display: flex;
  align-items: center;
}
.header_logo img {
  width: 100%;
  height: auto;
}
.header_inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  display: flex;
}
.header_reserve {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.header_menu {
  display: flex;
  gap: 20px;
  margin: 0;
  position: relative;
}
.header_menu_content {
  width: calc(100% - 220px);
}
.header_menu .nav-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}
.header_menu .nav-item a {
  color: #333;
  display: block;
  padding: 1rem 2rem;
  text-align: right;
  text-decoration: none;
}
.header_menu .nav-item p {
  color: #333;
  padding: 1rem 2rem;
  text-align: right;
}
.header_menu .nav-item:last-child a {
  border-right: none;
}
/* サブナビゲーション */
@media screen and (min-width: 1080px) {
  .header_menu .nav-list .nav-item_sub {
    background: #303030;
    left: 0;
    margin: 0 calc(50% - 50vw);
    opacity: 0;
    position: absolute;
    top: 114px;
    transition: all 0.2s ease;
    visibility: hidden;
    width: 100vw;
    z-index: 999;
  }
  .header_menu .nav-list .nav-item_sub a {
    color: #fff;
  }
  .nav-item_sub .inner {
    display: flex;
    margin: 0 auto;
    width: 1200px;
  }
  .nav-item_sub .inner ul {
    margin: 20px 20px 20px;
  }
  .header_menu .nav-list .nav-item_sub a {
    text-align: left;
  }
  .nav-item:hover .nav-item_sub {
    opacity: 1;
    visibility: visible;
  }
}
/* SP時：ハンバーガーメニューボタン */
.header_menu-icon {
  display: none;
}

@media screen and (max-width: 1080px) {
  .header {
    height: min(15vw, 7rem);
    padding: 0;
  }
  .header_open {
    height: 100%;
  }
  .header_logo {
    height: 15vw;
    max-height: 7rem;
    width: 40vw;
    max-width: 220px;
    padding: 0;
  }
  .header ul {
    padding-left: 0;
  }
  .header .nav-item {
    border-bottom: 1px solid #fff;
  }
  .header_menu-icon {
    right: 6vw;
    top: 0;
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-size: 28px;
    position: absolute;
    z-index: 2;
    line-height: min(15vw, 7rem);
  }
  .header_menu .nav-list {
    background: rgba(0, 0, 0, 0.8);
    display: none;
    left: 50%;
    padding: 10vw 10px;
    position: absolute;
    transform: translate(-50%, 0%);
    width: 100%;
  }
  .header_menu .nav-item a, .header_menu .nav-item p {
    border-right: none;
    color: #fff;
    padding: 1rem 1rem;
    text-align: left;
  }
  .header_menu-header {
    height: 50px;
  }
  .header_menu .nav-list .nav-item:last-child a {
    border-bottom: none;
  }
}
.menu_name {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 1080px) {
  .nav-item_sub {
    display: none;
  }
  .header_menu {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
  }
  .nav-list {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.menu_fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
}
@media (width <= 1080px) {
  #to_top_btn {
    position: fixed;
    z-index: 999;
    bottom: 6rem;
    right: 10px;
    cursor: pointer;
    width: 12vw;
    height: 12vw;
    border-radius: 50%;
    margin-bottom: 5%;
    background: #303030;
    color: #fff;
    font-size: min(5.5vw, 4.5rem)
  }
}

@media (width > 1080px) {
  #to_top_btn {
    position: fixed;
    z-index: 999;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #303030;
    color: #fff;
    font-size: min(5.5vw, 4.5rem)
  }
}



.menu_fixed_reserve {
  padding: 0;
  display: flex;
  margin: 0;
}
.menu_fixed_reserve li {
  width: 100%;
}
.menu_fixed_reserve .btn {
  width: 100%;
  border-radius: 0;
  font-size: min(4.5vw, 2.6rem);
  background: #06c755;
  height: 7rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}
.modal-container .img {
  background: #f1f1f1;
  margin-bottom: 15px;
}
.modal-container p {
  margin-bottom: 10px;
}
.modal-container p:last-child {
  margin-bottom: 0;
}
.modal-container ul {
  margin-top: 40px;
  padding-left: 0;
}
.modal-container ul li {
  line-height: 3;
}
.modal-container ul li a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 2px solid #303030;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}
.modal-content {
  background: #FFF;
  overflow-y: auto;
  padding: 60px;
  width: 90%;
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 400px;
  animation: show 0.6s linear 0s;
  filter: drop-shadow(0px 2px 6px #777);
}
.modal-top {
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 5px;
}
.modal-close {
  color: #303030;
  text-decoration: none;
  font-size: 2rem;
  line-height: 1;
  padding: 0 8px;
}
.modal-close:hover, .modal-close:forcus {
  text-decoration: none;
  cursor: pointer;
}
.modal-title {
  color: #FFF;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mv_slider {
  width: 100%;
  height: auto;
}
.mv_slider img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv_thumbnail {
  padding: 20px 0;
  background: #ffeaec;
}
.mv_thumbnail .slick-track {
  display: flex;
  gap: 20px;
}

/*-----------height調整----------*/
.slick-slide {
  height: auto !important;
}

/*-----------矢印表示----------*/
.slick-next {
  right: 0 !important;
}

.slick-prev {
  left: 0 !important;
}

.slick-arrow {
  z-index: 2 !important;
}

.onlineList_inner {
  width: 100%;
  height: 33.3333%;
  text-align: center;
  background: #fff7f8;
  font-size: 1.2rem;
  padding: 20px 20px 26px 20px;
}
.onlineList_inner img {
  width: 140px;
  height: auto;
  margin: 10px auto 0 auto;
}
.onlineList_bg_white .col-bg {
  background: #fff;
}
.onlineList_bg_white .onlineList_inner {
  background: #fff;
}

@media screen and (max-width: 1080px) {
  .menu_name {
    font-size: min(4.5vw, 1.6rem);
    margin-bottom: 1rem;
  }
  .onlineList_inner {
    padding: 1.6rem 1rem;
  }
  .onlineList_inner p {
    font-size: min(3.5vw, 1.6rem);
  }
}
.accordion {
  margin: 3em auto;
}
.accordion_question {
  font-size: 2.5rem;
  font-family: "Oswald", sans-serif;
  color: #ff9ea8;
  margin-right: 10px;
  line-height: 1;
}
.accordion_title, .accordion_content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.accordion_title {
  border-bottom: solid 1px #ccc;
  padding: 1em 0;
  display: block;
  color: #333;
  font-size: 1.8rem;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
}
.accordion_title:after, .accordion_title:before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #999;
  transition: all 0.3s;
}
.accordion_title:after {
  transform: rotate(90deg);
}
.accordion_content {
  max-height: 0;
  overflow: hidden;
}
.accordion_toggle {
  display: none;
}
.accordion_option {
  position: relative;
}

.accordion_toggle:checked + .accordion_title + .accordion_content {
  max-height: 500px;
  transition: all 1.5s;
  margin-bottom: 20px;
}

.accordion_toggle:checked + .accordion_title::before {
  transform: rotate(90deg) !important;
}

@media screen and (max-width: 1080px) {
  .accordion_title {
    font-size: min(4.5vw, 1.8rem);
    padding-right: 10%;
  }
  .accordion_question {
    font-size: min(5vw, 2rem);
  }
}
.news-list {
  list-style: none outside;
  margin: 0;
  padding: 0;
}

.news-list .item {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 20px 0;
  font-size: 1.6rem;
}

.news-list .item:first-child {
  padding-top: 0;
}

.news-list .item .date {
  margin: 0;
  min-width: 120px;
  color: #999;
  padding: 0 20px 0 0;
}

.news-list .item .title {
  margin: 0;
  width: 100%;
}

.news-list .item a:hover .title {
  color: #00F;
}

@media screen and (max-width: 1080px) {
  .news-list .item {
    flex-direction: column;
    font-size: min(3.5vw, 1.6rem);
  }
  .news-list .item a {
    flex-wrap: wrap;
  }
  .news-list .item .date {
    min-width: 100px;
  }
  .news-list .item .title {
    margin-top: 10px;
  }
}
.footer {
  width: 100%;
  color: #fff;
  background: #303030;
  text-align: center;
}
.footer_content {
  width: 100%;
  background: #ffd3d7;
  padding: 2rem;
}
.footer_inner {
  width: 93%;
  max-width: 1080px;
  margin: 0 auto;
	display: flex;
    justify-content: center;
    align-items: center;
}
.footer_inner ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer_inner ul.footer_sns{
	margin-left: 2rem;
}
.footer_inner ul.footer_sns a{
  display: block;
	width: 25px;
}
.footer_inner ul li {
  font-size: 1.6rem;
}
.footer_inner ul li a {
  color: #373737;
  text-decoration: none;
}
.footer_copy {
  text-align: center;
  padding: 0.5rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 1080px) {
	.footer_inner {
		flex-direction: column;
}

.footer_inner ul.footer_sns{
	flex-direction: row;
	gap:1rem;
	margin-left: 0;
}
.footer_inner ul.footer_sns a{
  display: block;
width: 3rem;
}
  .footer_content {
    padding: 1rem;
  }
  .footer_inner ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .footer_inner ul li {
    font-size: min(3.5vw, 1.6rem);
  }
  .footer_copy {
    font-size: min(3vw, 1.2rem);
  }
}
.detailPage_mv {
  width: 100%;
  padding: 4rem 0;
  background: #303030;
  color: #fff;
}
.detailPage_head {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: #fff;
}

@media screen and (max-width: 1080px) {
  .detailPage_mv {
    padding: min(5vw, 5rem) 0;
  }
  .detailPage_head {
    font-size: min(7.5vw, 3.2rem);
  }
}
.priceList_block {
  margin-top: 80px;
}
.priceList_list_head {
  font-size: 2.8rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
    margin: -54px 0 40px 0;
    font-weight: 400;
    text-align: center;
    padding-top: 134px;
}
.priceList_list_subHead {
  font-size: 2.2rem;
  margin: 30px auto 10px auto;
  display: block;
  font-weight: 400;
}
.priceList_list_table {
  margin: 0 auto 3px auto;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  line-height: 3.5;
}
.priceList_list_table dt,
.priceList_list_table dd {
  padding: 0 10px;
}
.priceList_list_table dt {
  font-size: 1.6rem;
  width: 30%;
  text-align: left;
  background: #ffebee;
}
.priceList_list_table dd {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #fffafb;
}
.priceList_name {
  font-size: 1.6rem;
  width: 100%;
  font-weight: 400;
  text-align: left;
}
.priceList_name + .priceList_price {
  width: 40%;
}
.priceList_price {
  font-size: 1.6rem;
  width: 100%;
  text-align: right;
  color: #ff9ea8;
  font-weight: 500;
}

@media screen and (max-width: 1080px) {
  .priceList_block {
    margin-top: min(5.5vw, 2.8rem);
  }
  .priceList_price {
    font-size: min(5.5vw, 1.6rem);
    width: 70%;
  }
  .priceList_name {
    font-size: min(4.5vw, 1.4rem);
    display: block;
    line-height: 1.5;
  }
  .priceList_list_head {
    font-size: min(6vw, 2.8rem);
    margin: min(-15vw, -7rem) 0 min(3vw, 1.4rem) 0;
	padding-top: min(15vw, 7rem);
  }
  .priceList_list_subHead {
    font-size: min(4.5vw, 2.4rem);
  }
  .priceList_list_subHead + .priceList_list_table {
    border-top: none;
  }
  .priceList_list_table {
    width: 100%;
    font-size: min(3.5vw, 1.6rem);
    flex-direction: column;
    border: none;
    line-height: 2;
  }
  .priceList_list_table dt {
    font-size: min(4.5vw, 1.6rem);
    width: 100%;
    border-right: none;
    padding: 1rem;
    border-left: 5px solid #ff9ea8;
  }
  .priceList_list_table dd {
    padding: 1rem 10px;
    align-items: center;
    background: none;
    justify-content: flex-end;
	flex-direction: column;  
  }
}
.check {
  width: 100%;
  padding: 40px 80px;
  background: #fff5f7;
}
.check_bg_white {
  background: #fff;
}
.check li {
  position: relative;
  line-height: 3;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
.check li:before {
  content: "";
  display: block;
  background: url(../img/check-circle.png) no-repeat center center/cover;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

@media screen and (max-width: 1080px) {
  .check {
    padding: min(5vw, 5rem);
  }
  .check li {
    padding: 0 0 0 min(5.5vw, 3.5rem);
    line-height: 1.5;
    font-size: min(3.5vw, 1.6rem);
    margin-bottom: 1.5rem;
  }
  .check li:last-child {
    margin-bottom: 0;
  }
  .check li:before {
    width: min(4.5vw, 3rem);
    height: min(4.5vw, 3rem);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.step {
  display: flex;
  gap: 2rem;
}
.step_head {
  color: #ff99a3;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}
.step_block {
  width: 20%;
  background: #fff5f7;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}
.step_block:before {
  left: 100%;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ff99a3;
  border-right: 2px solid #ff99a3;
  transform: rotate(45deg);
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.step_block:last-child:before {
  display: none;
}

@media screen and (max-width: 1080px) {
  .step {
    flex-direction: column;
    gap: min(6vw, 2.6rem);
  }
  .step_head {
    font-weight: 400;
    font-size: min(4.5vw, 1.8rem);
  }
  .step_block {
    width: 100%;
  }
  .step_block:before {
    left: 0;
    top: 100%;
    width: min(5vw, 1.6rem);
    height: min(5vw, 1.6rem);
    transform: rotate(135deg);
    right: 0;
    margin: 0 auto;
  }
  .step_block p {
    font-size: min(3.5vw, 1.6rem);
    text-align: center;
  }
}
.point {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  background: #ff99a3;
  border-radius: 1.5rem;
  color: #fff;
  height: 3rem;
  display: flex;
  width: 140px;
  text-align: center;
  margin: 0 auto 0.3rem auto;
  letter-spacing: 0.08rem;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1080px) {
  .point {
    width: min(120px, 70%);
    font-size: min(4.5vw, 2rem);
  }
}
.regular_delivery {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.regular_delivery_block {
  position: relative;
  border: 1px solid #fba8b0;
  background: #fff;
  border-radius: 0 6px 6px 6px;
  width: 100%;
  padding: 40px 20px;
}
.regular_delivery_block h3 {
  color: #fba8b0;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.regular_delivery_block_num {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background: #fba8b0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 5px 0;
  font-size: 1.4rem;
}
.regular_delivery_head_small {
  font-size: 1.4rem;
}

@media screen and (max-width: 1080px) {
  .regular_delivery {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .regular_delivery_head_small {
    font-size: min(3vw, 1.2rem);
  }
  .regular_delivery_block {
    width: calc(50% - 0.75rem);
    padding: 4rem 1rem 3rem 1rem;
  }
  .regular_delivery_block_num {
    font-size: min(4.5vw, 1.6rem);
  }
  .regular_delivery_block h3 {
    font-size: min(4.5vw, 1.6rem);
  }
}
.about_reason_img {
  width: 50%;
  max-width: 360px;
  margin: 40px auto 0 auto;
}

.clinic_list {
  background: #f5f5f5;
  padding: 40px;
}
.clinic_list_name {
  font-size: 1.6rem;
}
.clinic_list li {
  line-height: 2;
  text-align: center;
}

.otherPage_head {
  font-size: 3.2rem;
  color: #303030;
  padding-bottom: 10px;
  font-weight: 500;
}
.otherPage_content {
  margin: 60px 0;
}
.otherPage_content_name {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 20px 0 10px 0;
}
.otherPage_content_subName {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 20px 0 10px 0;
}
.otherPage_subHead {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  border-bottom: 1px solid #303030;
  padding: 0 0 10px 0;
}
.otherPage_list_dot {
  padding: 0 0 0 1rem;
  line-height: 2;
  background: #ececec;
  padding: 20px 50px;
  font-size: 1.6rem;
}
.otherPage_list_dot li {
  list-style-type: disc;
}
.otherPage_list_num {
  counter-reset: count 0;
  padding: 0 0 0 1rem;
  line-height: 1.5;
  font-size: 1.6rem;
}
.otherPage_list_num li {
  list-style-type: auto;
  content: counter(count) ". ";
  counter-increment: count 1;
  margin-bottom: 20px;
}
.otherPage_table {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
}
.otherPage_table dt {
  width: 30%;
  background: #303030;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 2px;
  font-weight: 500;
}
.otherPage_table dd {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #ececec;
  line-height: 1.8;
  padding: 20px 10px;
  margin-bottom: 2px;
}

@media screen and (max-width: 1080px) {
.about_reason_img {
  width: 100%;
  max-width: 100%;
}

  .otherPage_head {
    font-size: min(7vw, 3.2rem);
  }
  .otherPage_content {
    margin: min(7vw, 3.2rem) 0;
  }
  .otherPage_content_name {
    font-size: min(5vw, 1.8rem);
  }
  .otherPage_content_subName {
    font-size: min(3.5vw, 1.6rem);
  }
  .otherPage_subHead {
    font-size: min(6vw, 2.8rem);
  }
  .otherPage_list_dot {
    font-size: min(3.5vw, 1.6rem);
    padding: 1rem 3rem;
  }
  .otherPage_list_num {
    font-size: min(3.5vw, 1.6rem);
  }
  .otherPage_list_num li {
    margin-bottom: min(1vw, 1.5rem);
  }
  .otherPage_table {
    font-size: min(3.5vw, 1.6rem);
  }
}
.icon {
  display: flex;
  align-items: center;
}
.icon_arrow-bottom {
  margin-left: 10px;
  width: 12px;
  height: auto;
  margin-top: 2px;
}
.icon_arrow-right {
  margin-left: 10px;
  width: 12px;
  height: auto;
  transform: rotate(-90deg);
  display: inline-block;
}
.icon-plus {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
}
.icon-plus:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

  .l-w_40{
    width: 40%;
  }

  .l-w_50{
    width: 50%;
  }
  .l-w_60{
    width: 60%;
  }
  .l-w_80{
    width: 80%;
  }
  .l-w_100{
    width: 100%;
  }
    .l-inner{
      width: 93%;
      max-width: 1080px;
      margin: 0 auto;
    }
    .l-flex{
      display: flex;
      flex-wrap: wrap;
    }

    .l-flex_column{
      display: flex;
      flex-direction: column;
    }
    .l-align_center{
      display: flex;
      align-items: center;
    }

    .l-justify_center{
      display: flex;
      justify-content: center;
    }
    .l-border_bottom{
      border-bottom: 1px solid #303030;
    }
    .l-col-2{
      width:50%;
    }
    .l-p_10{
      padding: 1rem 2rem;
    }
    .l-p_20{
      padding: 2rem;
    }
    .l-mt_10{
      margin-top: 1rem;
    }
    .l-ml_10{
      margin-left: 1rem;
    }
    .l-ml_20{
      margin-left: 2rem;
    }
    .c-txt_large{
      font-size: 2.8rem;
      font-weight: normal;
    }
    .c-txt_middle{
      font-size: 1.8rem;
      font-weight: normal;
    }
    .l-bg_gray{
      background: #f5f5f5;
    }
    .l-bg_blk{
      background: #303030;
      color:#fff;
    }
    .l-bg_white{

      background: #fff;
    }

    .clinic_list{
      padding-left: 0;
      font-size: 1.4rem;
    }
    .clinic_dr_name{
      margin-left: 1rem;
    }
	.clinic_information .clinic_list{
		padding: 0;
	}
	.clinic_information .clinic_list li{
		text-align: left;
	}
	.clinic_information .l-ml_20{
		padding-left: 0;
	}
    .clinic_information_logo{
        width: 100%;
        max-width: 220px;
    }

    .clinic_information_logo img{
        margin: 0 auto;
    }
    @media screen and (max-width:1080px) {
		
		.clinic_information:before{
			content:"";
			height: 1rem;
			width: 100%;
			background: #303030;
		}
      .clinic_information_list{
        flex-direction: column;
        width: 100%;
      }
	  .clinic_information .clinic_list{
			padding:0;
	  }
		
	.clinic_information .clinic_list li{
		text-align: center;
	}
      .clinic_information_head{
    	display: none;
      }
      .clinic_information_cont h3{
        text-align: center;
      }
      .clinic_information_cont{
        width: 100%;
      }
      .clinic_information_logo{
          width: 100%;
          max-width: 250px;
      }
      .c-txt_middle {
          font-size: min(3.5vw, 1.8rem);
          font-weight: normal;
      }
      .c-txt_large {
          font-size: min(7vw, 3.2rem);
      }
		.clinic_information_access{
			flex-direction: column;
		}
		.clinic_information_access .l-ml_20{
			margin-left: 0;
			padding: 0;
			text-align: center;
		}
    }


/*# sourceMappingURL=style.css.map */