@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --light_a: #A3D0E7;
  --light_b: #777777;
  --bg_pink: #ECE6ED;
  --bg_blue: #9ECDE6;
  --red: #E75F5B;
  --green: #27A698;
  --yellow: #EDA22D;
  --blue: #29ABD6;
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  font-size: min(3.3vw, 1.8rem);
  letter-spacing: 0.04rem;
  line-height: 2;
  text-align: center;
}

.reimin {
  font-family: "a-otf-ud-reimin-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
}

h2,
h3,
h4 {
  line-height: 1.5;
}

p.wb {
  word-break: keep-all;
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

.clarity a:hover {
  opacity: 1;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.green {
  color: var(--green);
}

.blue {
  color: var(--blue);
}

.red {
  color: var(--red);
}

.yellow {
  color: var(--yellow);
}

.white {
  color: #ffffff;
}

.black {
  color: #333333;
}

.left {
  text-align: justify;
}

.center {
  text-align: center;
}

.ft_60 {
  font-size: min(7vw, 6.0rem);
}

.ft_40 {
  font-size: min(5.4vw, 4.0rem);
}

.ft_32 {
  font-size: min(6vw, 3.2rem);
}

.ft_30 {
  font-size: min(5.0vw, 3.0rem);
}

.ft_28 {
  font-size: min(3.8vw, 2.8rem);
}

.ft_26 {
  font-size: min(3.8vw, 2.6rem);
}

.ft_20 {
  font-size: min(4vw, 20px);
}

.ft_18 {
  font-size: min(3.7vw, 1.8rem);
}

.ft_16 {
  font-size: min(3.4vw, 1.6rem);
}

.ft_14 {
  font-size: min(2.9vw, 1.4rem);
}

.mid {
  font-weight: 500;
}

.fadeInUpTrigger {
  opacity: 0;
}

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

.flex.row {
  flex-direction: row;
  gap: 20px;
}

header {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
}

.header_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4px 4vw 20px;
}

.header_inner h1 {
  width: 40%;
  padding: 0 5% 4%;
  max-width: 370px;
  gap: 10px;
  background-image: url(../../images/logo_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.header_btn {
  width: 40px;
}

/* ham_menu */
.ham_btn {
  position: fixed;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 999;
  margin: 0;
  top: 5px;
  right: 5px;
  background-color: var(--blue);
  background-size: cover;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 10px;
  height: 1px;
  background: #ffffff;
  width: 20px;
  top: 20px;
}

.ham_btn span:nth-of-type(1) {
  top: 13px;
}

.ham_btn span:nth-of-type(2) {
  top: 27px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 16px;
  left: 4px;
  transform: translateY(6px) rotate(-45deg);
  width: 26px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 28px;
  left: 4px;
  transform: translateY(-6px) rotate(45deg);
  width: 26px;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--blue);
  overflow-y: auto;
  padding: 60px 8%;
}

.sp_nav {
  width: 100%;
}

.nav_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav_wrap .inner-ul {
  margin-bottom: 0;
}

.nav_wrap li {
  list-style: none;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1;
  padding: 10px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffffff;
  position: relative;
}

.nav_wrap .grandchild_wrap {
  border: none;
}

.nav_wrap li::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  width: 13px;
  height: 13px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: auto;
}

.nav_wrap .has_child::after {
  display: none;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 16px;
  width: 100%;
  display: block;
}

.nav_wrap.show {
  right: 0;
}

.nav_wrap nav summary {
  color: #ffffff;
  padding: 16px
}

.nav_wrap nav summary::marker {
  color: #ffffff;
}

/* デフォルトの三角形マーカーをリセット */
.nav_wrap nav summary {
  list-style: none;
  transition: 0.3s;
}

/* サマリーのカスタムマーカー（+） */
.nav_wrap nav summary::before {
  content: "＋";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  transition: opacity 0.3s, transform 0.3s;
}

/* 展開しているときのカスタムマーカー（-） */
.nav_wrap nav details[open] summary::before {
  content: "－";
  opacity: 1;
  top: 36px;
  transform: translateY(-50%) rotate(0deg);
}

/* 非表示にしたい場合（オプション） */
.nav_wrap nav details[open] summary::after {
  display: none;
}

.grandchild_wrap {
  border-bottom: none;
  padding: 16px;
}

.sp_nav .grandchild_wrap::after,
.sp_nav .grandchild_wrap li::after {
  display: none;
}

.sp_nav .grandchild_wrap li {
  border-bottom: none;
}

.sp_nav .grandchild {
  margin-bottom: 0;
  /* flex-direction: row;
  align-items: center; */
  flex-wrap: wrap;
}

.sp_nav .grandchild li {
  /* width: 155px; */
  padding: 10px 10px 10px 30px;
}

.sp_nav .grandchild_wrap li a {
  color: #ffffff;
  padding: 0;
}

/* MV */
.MV {
  top: 60px;
  position: relative;
  padding-bottom: 23vw;
}

.MV_text {
  width: 50%;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

/* 共通 */
section {
  position: relative;
  padding: 80px 0 100px;
}

.section_inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.content {
  margin: 80px auto;
}

.section_lead {
  line-height: 1.4;
  padding: 20px 0;
}

#top_trouble {
  background-image: url(../../images/trouble_bg.png);
  background-size: cover;
  margin-top: 12vw;
  position: relative;
}

#top_trouble::before,
#top_trouble::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 min(20vw, 200px) min(20vw, 200px);
  border-color: transparent transparent transparent var(--yellow);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#top_trouble::after {
  border-width: 0 0 min(20vw, 200px) min(20vw, 200px);
  border-color: transparent transparent transparent var(--red);
  top: 0;
  left: auto;
  right: 0;
  transform: scaleX(-1);
}

#top_trouble .section_inner {
  position: relative;
  z-index: 2;
}

#top_trouble .section_ttl {
  max-width: 566px;
  margin: 0 auto;
}

#top_trouble .item {
  background-image: url(../../images/trouble01_bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 600 / 723;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 20% 0 10%;
}

#top_trouble .item02 {
  background-image: url(../../images/trouble02_bg.png);
}

#top_trouble .item_ttl {
  padding-left: min(18vw, 150px);
  position: relative;
  width: 80%;
}

#top_trouble .item_ttl::before {
  content: "";
  width: min(20vw, 150px);
  height: min(14vw, 110px);
  background-image: url(../../images/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: -30%;
  left: 0;
  z-index: 1;
}

#top_trouble .check_list {
  width: 80%;
}

#top_trouble .check_list li {
  padding: 4px 0 4px 30px;
  border-bottom: 1px solid var(--blue);
  margin-bottom: 4px;
  position: relative;
}

#top_trouble .check_list li::before {
  content: "";
  width: 22px;
  height: 21px;
  background-image: url(../../images/check01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
}

#top_treatment {
  background-color: #ffffff;
  background-image: radial-gradient(#C8C8C8 1.5px, transparent 1.5px);
  background-position: 22.5px 22.5px;
  background-size: 45px 45px;
  padding-top: min(37vw, 400px);
}

#top_treatment::before {
  content: "";
  width: min(50vw, 520px);
  height: min(30vw, 320px);
  background-image: url(../../images/deco01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  position: absolute;
  top: min(7vw, 100px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

#top_treatment .section_inner {
  background-color: #AAEAFF;
  padding: 5%;
  position: relative;
  z-index: 2;
}

#top_treatment .content {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 40px;
}

#top_treatment .card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 5%;
  border: 1px solid var(--red);
  position: relative;
}

#top_treatment .card_ttl {
  padding-bottom: 20px;
  border-bottom: 5px dotted var(--red);
  line-height: 1.5;
  width: 80%;
  margin: 0 auto;
}

#top_treatment .card_ttl span {
  display: block;
}

#top_treatment .card p {
  display: flex;
  align-items: center;
  text-align: justify;
  padding: 20px 0;
}

#top_treatment .card .arrow {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  bottom: 10px;
  right: 10px;
}

#top_treatment .card02 {
  background-color: var(--red);
  border: 1px solid #ffffff;
}

#top_treatment .card03 {
  background-color: #ffffff;
  border: 1px solid var(--green);
}

#top_treatment .card04 {
  background-color: var(--green);
  border: 1px solid #ffffff;
}

#top_treatment .card05 {
  background-color: #ffffff;
  border: 1px solid var(--blue);
}

#top_treatment .card06 {
  background-color: var(--blue);
  border: 1px solid #ffffff;
}

#top_treatment .card03 .card_ttl {
  border-bottom: 5px dotted var(--green);
}

#top_treatment .card05 .card_ttl {
  border-bottom: 5px dotted var(--blue);
}

#top_treatment .card02 .card_ttl,
#top_treatment .card04 .card_ttl,
#top_treatment .card06 .card_ttl {
  border-bottom: 5px dotted #ffffff;
}

#top_feature {
  background-color: rgba(255, 246, 232, 1);
  background-image: repeating-linear-gradient(120deg, transparent, transparent 4vw, rgba(255, 250, 243, 1) 4vw, rgba(255, 250, 243, 1) 8vw);
  padding-top: min(25vw, 220px);
}

#top_feature::before,
#top_feature::after {
  content: "";
  width: min(40vw, 360px);
  height: min(20vw, 183px);
  background-image: url(../../images/deco02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 2vw;
  left: 2%;
  z-index: 1;
}

#top_feature::after {
  background-image: url(../../images/deco03.png);
  left: auto;
  right: 2%;
  z-index: 1;
}

#top_feature .section_ttl {
  width: 90%;
  max-width: 420px;
  margin: 0 auto;
}

#top_feature .section_ttl .img01 {
  width: 70%;
}

#top_feature .section_ttl .img02 {
  width: 70%;
  margin: 0 0 0 auto;
}

#top_feature .section_ttl .img03 {
  margin-top: -50px;
}

#top_feature .item {
  position: relative;
  padding-bottom: 10vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#top_feature .item_ttl {
  position: absolute;
  width: 100%;
  top: 0;
  transform: translateY(-70%);
  left: -3%;
}

#top_message {
  background-color: #E3F2F0;
  background-image: radial-gradient(#ffffff 1.5px, transparent 1.5px);
  background-position: 22.5px 22.5px;
  background-size: 45px 45px;
  padding-top: min(25vw, 220px);
}

#top_message::before,
#top_message::after {
  content: "";
  width: min(40vw, 360px);
  height: min(20vw, 183px);
  background-image: url(../../images/deco04.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 2vw;
  left: 2%;
  z-index: 1;
}

#top_message::after {
  transform: scaleX(-1);
  left: auto;
  right: 2%;
  z-index: 1;
}

#top_message .section_ttl {
  width: 90%;
  max-width: 530px;
  margin: 0 auto;
}

.dc_name {
  padding-top: 30px;
}

#top_clinic {
  background-color: rgba(240, 255, 253, 1);
  background-image: repeating-linear-gradient(120deg, transparent, transparent 4vw, rgba(225, 255, 252, 1) 4vw, rgba(225, 255, 252, 1) 8vw);
  padding-top: min(25vw, 220px);
}

#top_clinic::before,
#top_clinic::after {
  content: "";
  width: min(40vw, 360px);
  height: min(20vw, 183px);
  background-image: url(../../images/deco02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 2vw;
  left: 2%;
  z-index: 1;
}

#top_clinic::after {
  background-image: url(../../images/deco03.png);
  left: auto;
  right: 2%;
  z-index: 1;
}

#top_clinic .section_ttl span {
  display: block;
  padding-bottom: 40px;
}

#top_clinic .logo {
  width: 90%;
  max-width: 350px;
  margin: 0 auto;
}

.footer_text {
  padding-bottom: 40px;
}

#top_clinic .adress {
  padding: 20px 0;
  line-height: 1.5;
}

#top_clinic .tel p {
  position: relative;
  padding-left: 30px;
  display: inline-block;
}

#top_clinic .tel p::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../../images/tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.time-table {
  max-width: 894px;
  background: #DFE9F7;
  width: 100%;
  margin: 0 auto;
}

.biz-hour {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #DFE9F7;
}

.biz-hour .bg_blue {
  background: var(--bg_blue);
}

.biz-hour td,
.biz-hour th {
  text-align: center;
  line-height: 2.4;
  color: #333333;
  padding: 2% 0;
}

.biz-hour .bg_blue th {
  color: #ffffff;
  padding: 10px 0;
}

.biz-hour th:first-of-type {
  width: 30%;
  max-width: 150px;
}

.biz-txt {
  color: #333333;
  max-width: 894px;
  margin: 0 auto;
}

.biz-hour .blue {
  color: var(--bg_blue);
  font-size: min(6vw, 2.6rem);
}

.table_wrap {
  padding-bottom: 20px;
}

.footer_bnrWrap {
  max-width: 894px;
  margin: 0 auto;
}

#map {
  padding: 0;
  z-index: 2;
}

#map iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.cr {
  padding: 10px 0;
  background-color: var(--red);
  color: #ffffff;
  text-align: center;
}

#header_tel {
  width: min(30vw, 200px);
  max-width: 200px;
  position: fixed;
  bottom: 0;
  left: 5px;
  z-index: 900;
}

#go_top {
  width: 40px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 50;
  display: block;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  header {
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 60px;
    background-image: url(../../images/header_bg.png);
    background-size: cover;
    background-repeat: repeat-x;
  }

  .header_inner {
    width: 90%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    background: none
  }

  .header_inner h1 {
    width: 40%;
    gap: 20px;
    padding: 0 min(5%, 40px) min(4%, 30px)
  }

  .header_inner .logo {
    width: 540px;
  }

  .header_left {
    position: absolute;
    top: 65px;
    left: 2%;
    display: flex;
    flex-direction: column;
  }

  .header_left .bg {
    background-color: #DF7000;
    color: #ffffff;
  }

  #header_tel {
    width: min(20vw, 320px);
    position: fixed;
    bottom: auto;
    top: 4px;
    left: auto;
    right: 2%;
    z-index: 900;
  }

  .MV {
    top: 90px;
    padding: 0 1%;
    overflow: hidden;
  }

  .MV_text {
    width: 30%;
    max-width: 530px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .float_wrap {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 90px auto 0;
    padding: 20px 2vw;
    background-color: rgba(255, 255, 255, 0)
  }

  .float_nav {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0)
  }

  .float_wrap .pc_nav {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }

  .float_wrap .float_btn {
    display: none;
  }

  .nav_parent {
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    margin: 0 auto;
    padding-bottom: 0px;
  }

  .float_wrap .U_line {
    display: inline-block;
    padding: 0px 2.6vw;
    position: relative;
  }

  .float_wrap .U_line::after {
    content: "";
    width: 1px;
    height: 60%;
    background-color: #777777;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -0;
    z-index: 1;
  }

  .float_wrap .U_line:first-child::after {
    display: none;
  }

  .float_wrap .U_line>a {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #777777;
    line-height: 1;
    position: relative;
    font-size: min(1.2vw, 1.8rem);
  }

  .float_wrap .U_line>a::after {
    content: '';
    z-index: -1;
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
    font-size: 16px;
  }

  .float_wrap .U_line>a:hover:after {
    opacity: 1;
  }

  .float_wrap .U_line a img {
    width: auto;
    width: min(90px,5.4vw);
    margin: 0 auto;
  }

  .float_nav .nav_child {
    position: absolute;
    left: 50%;
    top: 120px;
    transform: translate(-50%);
    z-index: 4;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .float_wrap.fixed .float_nav .nav_child  {
    top: 70px;
  }

  .float_nav .has-child li a {
    display: block;
    padding: 4px 0;
    width: 100%;
    font-size: 1.5rem;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5)
  }

  nav li.has-child:hover>ul,
  nav li.has-child ul li:hover>ul,
  nav li.has-child:active>ul,
  nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
  }

  /*ナビゲーションaタグの形状*/
  .float_nav .nav_child li a {
    color: #333333;
    width: 137px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .float_nav nav li.has-child ul li:last-child a {
    border-bottom: none;
  }

  .float_nav nav li.has-child ul li a:hover,
  .float_nav nav li.has-child ul li a:active {
    background: #ffffff;
    color: #777777;
  }

  .float_wrap.fixed {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.6);
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
  }

  .float_wrap.fixed .pc_nav {
    padding: 0 300px 0 40px;
  }

  .float_wrap.fixed  .nav_parent {
   
    width:calc(100% - 300px);
   
  }
  .float_wrap.fixed .U_line a img {
  
    width: min(60px, 3vw);
    
  }
  
  .float_wrap.fixed .U_line {
    display: inline-block;
    padding: 0px 1.8vw;
    position: relative;
    width: 100%;
    min-width: 120px;
}
  .float_wrap.fixed .U_line>a {
    font-size: min(1vw, 1.2rem);
    font-weight: 400;
    width: 100%;
  }

  section {
    padding: 120px 0;
  }

  h3 {
    max-width: 900px;
    margin: 0 auto;
  }

  #top_trouble {
    margin-top: 0;
  }

  #top_trouble .content {
    flex-direction: row;
    max-width: 1360px;
    justify-content: space-between;
  }

  #top_trouble .item {
    padding-top: min(5%, 100px);
    padding-bottom: min(2%, 40px);
  }

  #top_trouble .ft_32 {
    font-size: min(2vw, 3.2rem);
  }

  #top_trouble .check_list li {
    font-size: min(1.4vw, 1.8rem);
  }

  #top_treatment .section_inner {
    max-width: 1620px;
  }

  #top_treatment .content {
    max-width: 1360px;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  #top_feature {
    background-color: rgba(255, 246, 232, 1);
    background-image: repeating-linear-gradient(120deg, transparent, transparent 50px, rgba(255, 250, 243, 1) 50px, rgba(255, 250, 243, 1) 100px);
    padding-top: min(18vw, 185px);
  }

  #top_feature::before,
  #top_feature::after {
    top: min(5vw, 220px);
    left: max(10vw, 50px);
  }

  #top_feature::after {
    left: auto;
    right: max(10vw, 50px);
  }

  #top_feature .section_ttl {
    width: 90%;
    max-width: 772px;
    margin: 0 auto;
  }

  #top_feature .content {
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 2%;
    max-width: 1720px;
    margin: 200px auto 120px;
    gap: 120px 80px
  }

  #top_feature .item {
    width: calc((100% - 80px)/ 2);
    padding-bottom: 40px;
  }

  #top_message::before,
  #top_message::after {
    top: min(6vw, 220px);
    left: max(10vw, 50px);
  }

  #top_message::after {
    left: auto;
    right: max(10vw, 50px);
  }

  #top_message .content {
    max-width: 1360px;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }

  #top_message .text_wrap {
    width: 50%;
  }
  #top_message  .content02 .text_wrap {
  display: flex;
  align-items: flex-end;
  }

  #top_message .content_img {
    width: 50%;
  }

  #top_clinic {
    background-color: rgba(240, 255, 253, 1);
    background-image: repeating-linear-gradient(120deg, transparent, transparent 50px, rgba(225, 255, 252, 1) 50px, rgba(225, 255, 252, 1) 100px);
    padding-top: min(18vw, 185px);
  }

  #top_clinic::before,
  #top_clinic::after {
    top: min(5vw, 220px);
    left: max(10vw, 50px);
  }

  #top_clinic::after {
    left: auto;
    right: max(10vw, 50px);
  }

  #go_top {
    width: 60px;
    bottom: 40px;
    right: 20px;
  }
}