@charset "UTF-8";

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

:root {
  --blue: #1229C1;
  --sky: #009FE6;
  --navy: #282B4F;
  --ja: "zen-old-mincho", sans-serif;
  --en: "Cormorant Garamond", serif;
  --sans: "noto-sans-cjk-jp", sans-serif;
}

body {
  color: #333333;
  background-color: #ffffff;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: min(3.7vw, 1.6rem);
  letter-spacing: 0.02rem;
  line-height: 1.8;
  text-align: center;
}

.ja {
  font-family: var(--ja);
  font-weight: 500;
}

.en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

.sans {
  font-family: var(--sans)
}

h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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;
}

.sp_none.flex {
  display: none;
}

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

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

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

.white {
  color: #ffffff;
}

.black {
  color: #333333;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.ft_65 {
  font-size: min(8.3vw, 6.5rem);
}

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

.ft_50 {
  font-size: min(6vw, 5.0rem);
}

.ft_45 {
  font-size: min(5.5vw, 4.5rem);
}

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

.ft_35 {
  font-size: min(6.9vw, 3.5rem);
}

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

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

.ft_24 {
  font-size: min(4.6vw, 2.4rem);
}

.ft_20 {
  font-size: min(4vw, 2.0rem);
}

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

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

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

.p_0 {
  padding: 0;
}

.bold {
  font-weight: 700;
}

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

.flex.row {
  flex-direction: row;
}

.fadeInUpTrigger,
.fadeInleftTrigger,
.fadeInRightTrigger {
  opacity: 0;
}

/* header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2%;
  height: 100%;
}

.header_left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

header .logo {
  width: 100%;
  max-width: 300px;
}

.header_left p {
  font-size: min(3.2vw, 1.6rem);
  border: 1px solid #ffffff;
  padding: 2px min(5%, 20px);
}

.header_btnWrap {
  position: fixed;
  top: 5px;
  right: 5px;
  display: flex;
}

.header_btnWrap .tel a {
  width: 50px;
  height: 50px;
  background-color: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header_btnWrap .tel a::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-right: 50px solid var(--sky);
  position: absolute;
  top: 0;
  left: 0;
}

.header_btnWrap .tel a p {
  display: none;
}

.header_btnWrap .web a {
  width: 50px;
  height: 50px;
  background-color: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

.header_btnWrap .web a::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 10px solid #ffffff;
  position: absolute;
  bottom: 0;
  right: 0;
}

.header_btnWrap img {
  position: relative;
  z-index: 2;
}

.header_btnWrap .web img {
  width: 35px;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 999;
  margin: 0;
  background: var(--sky);
}

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

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

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

.ham_btn.active span:nth-of-type(1) {
  top: 15px;
  left: 15px;
  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: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 26px;
}

.ham_btn span:nth-of-type(3)::after {
  content: "menu";
  position: absolute;
  top: 3px;
  left: -1px;
  color: #fff;
  font-size: 1.2rem;
}

.ham_btn.active span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 2px;
  left: 7px;
}

.nav_wrap {
  position: fixed;
  z-index: 200;
  top: 0;
  right: -120%;
  width: 80%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: var(--sky);
  overflow-y: auto;
  padding: 20% 5%;
}

.nav_wrap nav {
  width: 100%;
}

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

.nav_wrap li {
  list-style: none;
  font-size: min(3.2vw, 1.6rem);
  line-height: 1;
  width: 100%;
  border-bottom: 1px solid #ffffff;
}

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

.nav_wrap.show {
  right: 0;
}

.nav_wrap nav .sp_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap-tel a p {
  color: #ffffff;
  position: relative;
  padding-left: 30px;
}

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

/* MV */
.MV {
  position: relative;
  max-height: 100vh;
}

.MV_text {
  position: absolute;
  right: 5%;
  bottom: 2%;
  text-align: left;
  color: #ffffff;
  padding-bottom: 2%;
  font-size: min(4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.5;
  z-index: 3;
}

.MV_text h2 {
  font-size: min(14vw, 100px);
  text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.25);
}

.MV_icon {
  position: absolute;
  width: min(30%, 400px);
  left: 3%;
  bottom: max(-14vw, -200px);
  z-index: 5;
}

.MV_bg {
  position: absolute;
  height: 100%;
  width: 60%;
  background-image: url(../img/mv_deco.png);
  background-size: 100% 100%;
  top: 0;
  left: 0;
}

/* 共通 */
section {
  position: relative;
  padding: 60px 0 80px;
  background-color: #ffffff;
}

h2.section_ttl {
  background-color: var(--sky);
  color: #ffffff;
  word-break: keep-all;
  padding: 5vw;
  font-size: min(7.0vw, 3.6rem);
  line-height: 1.2;
  gap: 1vw;
  display: flex;
  flex-direction: column;
  margin-bottom: min(10%, 40px);
}

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

.bnr_area {
  position: relative;
  color: #ffffff;
}

.bnr_area::before {
  content: "";
  width: 100%;
  height: 50%;
  background-image: url(../img/bnr_bg.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  position: absolute;
  opacity: 0.5;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.bnr_area::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 159, 230, 0.8) 0%, rgba(0, 159, 230, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.top_bnr_area {
  padding-top: min(20vw, 180px);
}

.bnr_area .section_lead {
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
  word-break: keep-all;
}

.bnr_wrap {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bnr_wrap a {
  width: 100%;
  height: min(26vw, 130px);
  color: #ffffff;
  background-color: var(--sky);
  -webkit-box-shadow: 10px 10px 0 var(--blue);
  box-shadow: 10px 10px 0 var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10%;
  line-height: 1;
}

.bnr_wrap .tel a p {
  color: #ffffff;
}

.bnr_wrap a:hover {
  margin: 10px 10px -10px 0;
  -webkit-box-shadow: 0px 0px 0 var(--blue);
  box-shadow: 0px 0px 0 var(--blue);
  opacity: 1;
}

.tel p {
  position: relative;
  padding-left: min(7vw, 40px);
}

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

.trouble {
  padding-bottom: 0;
}

.trouble .content01 {
  padding: 60px 0 52vw;
  position: relative;
  overflow: hidden;
}

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

.trouble .content01::before {
  content: "";
  width: 100%;
  height: 50%;
  background-image: url(../img/trouble_bg02.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.trouble .content01::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/trouble_bg01.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.trouble .content01 .section_ttlWrap h2 {
  font-size: min(20vw, 14rem);
  margin-bottom: max(-17vw, -12rem);
}

.trouble .content01 ul {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 50px);
  padding: 0 0 40px 0;
}

.trouble .content01 ul li {
  font-size: min(3.9vw, 2.2rem);
  text-align: left;
  padding: 1vw min(3vw, 20px) 1vw min(10vw, 100px);
  background-color: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  position: relative;
}

.trouble .content01 ul li::before {
  content: "";
  width: min(11vw, 100px);
  aspect-ratio: 100 / 102;
  background-image: url(../img/deco01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: -2vw;
  left: -2vw;
  z-index: 1;
}

.trouble .content01 ul li:nth-of-type(2):before {
  background-image: url(../img/deco02.png);
}

.trouble .content01 ul li:nth-of-type(3):before {
  background-image: url(../img/deco03.png);
}

.trouble .content01 ul li:nth-of-type(4):before {
  background-image: url(../img/deco04.png);
}

.trouble .content01 ul li:nth-of-type(5):before {
  background-image: url(../img/deco05.png);
}

.trouble .content02 {
  padding: 60px 0;
  position: relative;
  background-image: url(../img/bg_03.png);
  background-size: 200% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.trouble .content02 .content_lead {
  word-break: keep-all;
  line-height: 1.5;
  gap: 2%;
  padding-bottom: 40px;
}

#merits {
  padding-bottom: 0;
}

#merits .section_ttl {
  margin-bottom: 0;
}

#merits .content {
  margin-bottom: 0;
  background-image: url(../img/bg_04.png);
  background-size: cover;
  padding: 40px 0;
}

#merits ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px 10px;
}

#merits .content_item {
  background-color: #ffffff;
  border-top: 20px solid var(--blue);
  padding: 30px 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#merits .content_item h4 {
  font-size: min(4.6vw, 2.0rem);
}

#merits .content_item p {
  text-align: justify;
}

#feature .section_ttl {
  margin-bottom: 0;
}

#feature .content_item {
  padding: 40px 0 60px;
}

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

#feature .content_item .content_textWrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#feature .content_item .content_textWrap p {
  text-align: justify;
  font-size: min(4vw, 2.0rem);
}

#feature .content_item:first-of-type {
  background-image: url(../img/bg_05.png);
  background-size: cover;
}

#feature li:nth-of-type(even) {
  background-image: url(../img/bg_06.png);
  background-size: cover;
  background-position: center right;
}

#feature li:nth-of-type(odd) {
  background-image: url(../img/bg_07.png);
  background-size: cover;
  background-position: right center;
}

#feature li:nth-of-type(2) .content_inner {
  margin-bottom: 20px;
}

#feature li:nth-of-type(2) .content {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  background-color: #ffffff;
  border: 3px solid var(--blue);
}

#feature li:nth-of-type(2) .content {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  background-color: #ffffff;
  border: 3px solid var(--blue);
  padding: 20px 0;
}

#feature li:nth-of-type(2) .content h4 {
  font-size: min(3.8vw, 2.8rem);
  padding-bottom: 20px;
}

#feature li:nth-of-type(2) .content .flex {
  gap: 0px;
}

#feature li:nth-of-type(2) .content .content_img {
  width: 50%;
  margin: 0 auto;
}

#feature .feature_bottom {
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#feature .feature_bottom .content_inner {
  width: 90%;
  margin: 0 auto;
}

#feature .feature_bottom h4 {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  padding: 14px 0;
  position: relative;
}

#feature .feature_bottom h4::before,
#feature .feature_bottom h4::after {
  content: "";
  width: min(70%, 200px);
  height: 3px;
  background-color: #333333;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

#feature .feature_bottom h4::after {
  top: auto;
  bottom: 0;
}

#feature .feature_bottom .content_item {
  background-image: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

#feature .feature_bottom .content_item p {
  text-align: justify;
}

#flow {
  padding-bottom: 0;
}

#flow .section_ttl {
  margin-bottom: 0;
}

#flow .content {
  background-image: url(../img/bg_05.png);
  background-repeat: repeat-y;
  padding: 60px 0;
}

#flow ol {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#flow ol li {
  background-color: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  padding: 20px;
}

#flow ol li .content_inner {
  flex-direction: column;
}

#flow .item_ttl {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

#flow .item_ttl h3 {
  width: max(80%, calc(100% - 150px));
  text-align: left;
  font-size: min(5.8vw, 2.6rem);
  border-bottom: 1px solid #333333;
  padding: 4px 10px;
}

#flow .item_ttl img {
  width: min(20%, 150px);
}

#flow ol li .content_inner p {
  text-align: justify;
  padding-top: 20px;
}

#comparison .content {
  width: 90%;
  margin: 0 auto;
}

#comparison .content table {
  width: 1200px;
  border: 1px solid var(--navy);
  border-bottom: none;
  border-right: none;
}

#comparison .content table th {
  border-bottom: 1px solid var(--navy);
  border-right: 1px solid var(--navy);
  padding: 20px;
  background-color: #EBF5F6;
}

#comparison .content table td {
  border-bottom: 1px solid var(--navy);
  border-right: 1px solid var(--navy);
  padding: 20px;
  vertical-align: middle;
}

#comparison .content table td:first-child {
  background-color: #EBF5F6;
  min-width: 150px;
}

#case .content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

#case .before {
  position: relative;
}

#case .before::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 30px solid var(--sky);
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
}

#case dl {
  margin: 40px 0;
}

#case dt,
#case dd {
  padding: 8px 0;
  border-bottom: 1px solid #707070;
}

.case_reserve{
  backdrop-filter: contrast(.5);
}

.case_reserve p{
  color: #fff;
  font-size: 4rem;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
}

#fee {
  padding-bottom: 0;
}

#fee .section_ttl {
  margin-bottom: 0;
}

#fee .content_wrap {
  padding-top: min(10%, 40px);
  background-image: url(../img/bg_08.png);
  background-size: cover;
  padding-bottom: 40px;
}

#fee .content {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 40px;
}

#fee .content table {
  width: 100%;
  border: 1px solid var(--navy);
  border-bottom: none;
  border-right: none;
}

#fee .content table th {
  border-bottom: 1px solid var(--navy);
  border-right: 1px solid var(--navy);
  padding: 20px;
  width: 100%;
  background-color: var(--blue);
  color: #ffffff;
}

#fee .content table td {
  border-bottom: 1px solid var(--navy);
  border-right: 1px solid var(--navy);
  padding: 20px;
  vertical-align: middle;
}

#fee .content table td:first-child {
  text-align: justify;
  background-color: #EBF5F6;
  font-size: min(4vw, 1.8rem);
  font-weight: 700;
}

#fee .content table td:first-child span {
  display: block;
  font-size: min(3.7vw, 1.6rem);
  font-weight: 400;
}

#fee .content.type_01 td:last-child {
  font-size: 2.0rem;
}

#fee .content.type_01 tr {
  display: flex;
  flex-wrap: wrap;
}

#fee .content.type_01 td {
  width: 100%;
}

#fee .content.type_02 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 40px;
  border: 3px solid var(--blue);
  padding: 20px min(5%, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #ffffff;
}

#fee .content.type_02 h3 {
  word-break: keep-all;
}

#fee .content.type_03 {
  width: 90%;
  max-width: 1200px;
  background-color: #EBF6F1;
  margin: 0 auto 40px;
  padding: 20px min(5%, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#fee .content.type_03 h3 {
  padding-bottom: 20px;
}

#fee .content.type_03 p {
  text-align: justify;
}

#fee .credit_link {
  max-width: 400px;
  margin: 20px auto
}

#doctor .section_ttl {
  margin-bottom: 0;
}

#doctor .section_innerWrap {
  background-image: url(../img/bg_05.png);
  background-repeat: repeat-y;
  padding: 60px 0;
}

#doctor .content {
  gap: 0;
}

#doctor .content_img {
  width: 90%;
  position: relative;
  z-index: 5;
}

#doctor .content_textWrap {
  width: 95%;
  background-color: #ffffff;
  text-align: justify;
  padding: 10vw 5% 20px 5%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  position: relative;
  top: -5vw;
  left: 5%;
  margin-bottom: 20px;
}

#doctor .content_textWrap p {
  padding-bottom: 20px;
  line-height: 1.5;
}

#doctor .name p {
  padding-bottom: 0;
  line-height: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
}

.cv {
  max-width: 800px;
  margin: 0 auto 60px;
  background-color: #ffffff;
  border-top: 10px solid var(--blue);
  border-bottom: 10px solid var(--blue);
  padding: 20px 0;
}

.cv h4 {
  padding-bottom: 20px;
}

.cv ul {
  display: inline-flex;
  flex-direction: column;
  align-items: self-start;
  gap: 10px;
  min-width: 70%;
  margin: 0 auto;
}

#clinic {
  padding-bottom: 0;
}

#clinic .section_ttl {
  margin-bottom: 0;
}

#clinic .section_inner {
  width: 100%;
  background: linear-gradient(180deg, rgba(185, 228, 246, 1) 0%, rgba(185, 228, 246, 0.2) 100%);
  padding: 60px 0;
}

#clinic .content {
  width: 90%;
  margin: 0 auto 40px;
  color: #777777;
}

#clinic .content_textWrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tel a p {
  display: inline-block;
  color: var(--navy);
}

#clinic .tel a p::before {
  background-image: url(../img/tel_b.png);
}

.time-table table {
  width: 100%;
  max-width: 580px;
  margin: 0 auto 10px;
  font-size: min(2.8vw, 1.7rem);
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  vertical-align: middle;
}

.time-table .U_line {
  border-bottom: 1px solid #333333;
}

.time-table table th:first-of-type {
  width: 30vw;
  max-width: 180px;
}

.time-table table th {
  padding: 4px 0;
}

.time-table table td {
  vertical-align: middle;
  font-size: 1.6rem;
  padding: 4px 0;
}

.biz-txt {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

#clinic .content02 {
  max-width: 1200px;
  margin: 0 auto 40px;
  color: #777777;
}

#clinic .content02 .map iframe {
  height: 80vw;
  max-height: 450px;
  display: block;
}

#clinic .access {
  width: 90%;
  margin: 20px auto;
  background-color: #EBF5F6;
  padding: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

#faq {
  padding-bottom: 0;
}

#faq .section_ttl {
  margin-bottom: 0;
}

#faq .content {
  background-image: url(../img/faq_bg.png);
  background-size: cover;
  padding: min(10%, 40px) 0;
}

#faq .content ul {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion {
  background-color: #ffffff;
  padding-bottom: 2%;
}

.toggle {
  display: none;
}

.Label {
  /*タイトル*/
  padding: 4px 40px 0px 10px;
  display: block;
  text-align: left;
}

.Label::before {
  content: "";
  width: 14px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}

.Label::after {
  content: "";
  width: 2px;
  height: 14px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}

.Label,
.a_content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.a_content {
  /*本文*/
  height: 0;
  padding: 0 20px 0 10px;
  margin: 0 2%;
  background-color: #EBF5F6;
  overflow: hidden;
  text-align: left;
}

.a_content ul {
  padding-bottom: 20px;
}

.a_content ul.pb_none {
  padding-bottom: 0;
}

.a_content li {
  position: relative;
  padding-left: 20px;
}

.a_content li::before {
  content: "・";
  position: absolute;
  top: 12px;
  left: 0;
  transform: translateY(-50%);
}

.a_content h5 {
  font-size: min(4.6vw, 20px);
  position: relative;
  padding-left: 30px;
}

.a_content h5::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.a_content .attention {
  padding-left: 30px;
  display: block;
  position: relative;
}

.toggle:checked+.accordion {
  padding-bottom: 10px;
}

.toggle:checked+.Label+.a_content {
  height: auto;
  padding: 10px 20px 20px 10px;
  margin-top: 10px;
  transition: all .3s;
}

.toggle:checked+.Label::after {
  opacity: 0;
  transition: all 0.3s;
}

footer {
  background-color: #8BD7F9;
  padding-top: 40px;
  color: #777777;
}

footer .content {
  margin-bottom: 40px;
}

footer .content_textWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .tel p::before {
  background-image: url(../img/tel_b.png);
}

footer .web a {
  display: inline-block;
  color: #ffffff;
  background-color: var(--blue);
  width: 80%;
  max-width: 350px;
  aspect-ratio: 350 / 130;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
}

footer .web a::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-right: 20px solid #ffffff;
  position: absolute;
  bottom: 0;
  right: 0;
}

footer .web a p {
  position: relative;
  padding-left: min(12vw, 50px);
}

footer .web a p::before {
  content: "";
  width: min(10vw, 40px);
  aspect-ratio: 40 / 35;
  background-image: url(../img/web.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.main_link {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 40px;
}

footer .map iframe {
  height: 80vw;
  max-height: 450px;
  display: block;
}

.cr {
  padding: 16px 0;
  background-color: var(--blue);
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}

#go_top {
  width: 60px;
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 900;
}

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

  .pc_none {
    display: none;
  }

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

  .flex.reverse {
    flex-direction: row-reverse;
  }

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

  .header_inner {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px 2vw 0;
  }

  .header_left {
    max-width: 535px;
    gap: 2vw;
  }

  .header_left p {
    font-size: 2.2rem;
    padding: 8px 10%;
  }

  .header_inner .logo {
    max-width: 535px;
  }

  .header_btnWrap .tel a {
    width: 360px;
    height: 130px;
  }

  .header_btnWrap .tel a::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 130px solid transparent;
    border-right: 380px solid var(--sky);
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
  }

  .header_btnWrap .tel a p {
    display: block;
    color: #ffffff;
    line-height: 1;
  }

  .header_btnWrap .tel a p span {
    font-size: 2.0rem;
    display: block;
    padding-bottom: 20px;
  }

  .header_btnWrap .tel a p::before {
    width: 28px;
    height: 28px;
    top: 70%;
  }

  .header_btnWrap .web a {
    width: 200px;
    height: 130px;
    color: #ffffff;
  }

  .header_btnWrap .web a::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-right: 20px solid #ffffff;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  /* ham_menu */
  .ham_btn {
    width: 150px;
    height: 130px;
  }

  .ham_btn span {
    left: 35px;
    height: 3px;
    width: 40px;
    top: 65px;
  }

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

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

  .ham_btn.active span:nth-of-type(1) {
    top: 47px;
    left: 29px;
    width: 80px;
  }

  .ham_btn.active span:nth-of-type(3) {
    top: 60px;
    left: 30px;
    width: 80px;
  }

  .ham_btn span:nth-of-type(3)::after {
    top: 12px;
    font-size: 2.4rem;
  }

  .ham_btn.active span:nth-of-type(3)::after {
    top: 27px;
    left: 57px;
  }

  .nav_wrap {
    padding: 10vw 5%;
  }

  .nav_wrap li {
    font-size: 2.4rem;
    padding: 3vw 0;
  }

  .MV_text {
    bottom: 0;
    line-height: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1vw;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  }

  .MV_text h2 {
    font-size: min(10vw, 180px);
    line-height: 1;
    padding-bottom: 0;
    letter-spacing: 0.2em;
  }

  .MV_text p {
    font-size: min(2.6vw, 50px);
  }

  .MV_icon {
    width: min(20%, 400px);
    bottom: 2%;
  }

  section {
    padding: min(8vw, 120px) 0;
  }

  h2.section_ttl {
    padding: 60px;
    font-size: 5.0rem;
    gap: 20px;
  }

  .animate__delay-05s {
    animation-delay: calc(var(--animate-delay) * 0.5);
  }

  .animate__delay-10s {
    animation-delay: calc(var(--animate-delay) * 1.0);
  }

  .top_bnr_area {
    padding: min(8vw, 120px) 0;
  }

  .bnr_area::before {
    content: "";
    width: 100%;
    height: 100%;
  }

  .bnr_wrap {
    width: 90%;
    max-width: 910px;
    justify-content: space-between;
  }

  .bnr_wrap a {
    width: 400px;
  }

  .trouble .content01 {
    padding: 40px 0 min(15vw, 140px) 0;
    background-image: url(../img/bg_02.png);
    background-repeat: no-repeat;
    background-position: right bottom;
  }

  .trouble .section_inner {
    max-width: 1700px;
    justify-content: space-between;
  }

  .trouble .content_textWrap {
    width: 50%;
    padding: 60px 0 0;
  }

  .trouble ul {
    padding: 40px 0;
    justify-content: space-evenly;
    width: 100%;
  }

  .trouble .content01 ul li {
    width: 100%;
    padding: 8px 20px 8px 100px;
  }

  .trouble .content01 ul li:nth-of-type(even) {
    margin-left: 5vw;
  }

  .trouble .content01::before,
  .trouble .content01::after {
    display: none;
  }

  .trouble .content02 {
    padding: 60px 0 80px;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center bottom;
  }

  #merits .content {
    padding: 120px 0;
  }

  #merits .section_inner {
    max-width: 1200px;
  }

  #merits .section_inner ol {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  #merits .section_inner ol li {
    width: calc((100% - 40px)/3);
  }

  #feature {
    padding-bottom: 0;
  }

  #feature .content_itemWrap li {
    padding: 100px 0;
  }

  #feature .content_itemWrap li>* {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    line-height: 2;
  }

  #feature .content_itemWrap li:first-child .content_inner {
    gap: 80px;
  }

  #feature .content_itemWrap li:first-child p {
    width: 100%;
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
  }

  #feature .content_itemWrap li:nth-of-type(even) .content_inner {
    flex-direction: row-reverse;
    gap: 5%;
  }

  #feature .content_itemWrap li:nth-of-type(even) .content_textWrap {
    width: 55%;
    justify-content: space-evenly;
  }

  #feature .content_itemWrap li:nth-of-type(2) .content {
    margin-top: 80px;
    padding: 40px;
  }

  #feature .content_itemWrap li:nth-of-type(2) .content .flex {
    flex-direction: row;
    gap: 0;
    margin-top: 30px;
  }

  #feature .content_itemWrap li:nth-of-type(2) .content .flex .content_img {
    width: 20%;
  }

  #feature .content_itemWrap li:nth-of-type(3) .content_inner {
    flex-direction: row;
    gap: 5%;
  }

  #feature .content_itemWrap li:nth-of-type(3) .content_textWrap {
    width: 55%;
    justify-content: space-evenly;
  }

  #feature .content_itemWrap li:nth-of-type(5) .content_inner {
    flex-direction: row;
    gap: 5%;
  }

  #feature .content_itemWrap li:nth-of-type(5) .content_textWrap {
    width: 55%;
    justify-content: space-evenly;
  }

  #feature .feature_bottom {
    padding: 120px 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  #feature .content_inner {
    max-width: 1500px;
    gap: 50px;
  }

  #feature .content_inner p {
    font-size: 2.0rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  #feature .feature_bottom li:first-child p {
    width: 100%;
    margin: 0;
  }

  #flow .content {
    padding: 120px 0;
  }

  #flow ol {
    gap: 50px;
  }

  #flow ol li .content_inner {
    flex-direction: row;
    gap: 5%;
  }

  #flow ol li .content_inner .content_textWrap {
    width: 65%;
  }

  #flow ol li .content_inner .content_img {
    width: 35%;
  }

  #flow .item_ttl {
    gap: 20px;
  }

  #flow ol li .content_inner p {
    font-size: 1.8rem;
    line-height: 2;
  }

  #comparison {
    padding-bottom: 0;
  }

  #comparison table {
    margin: 40px auto 0;
    width: 1500px;
  }

  #case .content_imgWrap {
    max-width: 1200px;
    margin: 40px auto;
    justify-content: space-between;
    position: relative;
  }

  #case .content_imgWrap::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 60px solid var(--sky);
    border-top: 27px solid transparent;
    border-bottom: 27px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #case .before::before {
    display: none;
  }

  #case dl {
    max-width: 1000px;
    margin: 80px auto 0;
    font-size: 2.0rem;
  }

  #case dl .description-item {
    display: flex;
  }

  #case dl .description-item dt {
    width: 200px;
  }

  #case dl .description-item dd {
    width: calc(100% - 200px)
  }

  #fee .content_wrap {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  #fee .content.type_01 tr {
    flex-wrap: nowrap;
  }

  #fee .content.type_01 td {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #fee .content.type_01 p {
    padding-top: 10px;
  }

  #fee .content.type_02 {
    gap: 20px;
  }

  #fee .content.type_02 p {
    font-size: 2.0rem;
  }

  #fee .content.type_03 {
    flex-direction: row;
    padding: 60px 2%;
    gap: 5%;
  }

  #fee .content_textWrap {
    width: 60%;
  }

  #fee .content.type_03 h3 {
    padding-bottom: 40px;
  }

  #fee .content.type_03 p {
    font-size: 2.0rem;
  }

  #doctor .section_innerWrap {
    padding-top: 120px;
  }

  #doctor .section_inner {
    max-width: 1450px;
    padding-top: calc(10vw + 120px);
    position: relative;
  }

  #doctor .content {
    justify-content: flex-end;
  }

  #doctor .content_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    max-width: 680px;
  }

  #doctor .content_textWrap {
    top: 0;
    left: 0;
    width: 60%;
    padding: 5% 5% 5% min(10vw, 150px);
  }

  #doctor .content_textWrap p {
    font-size: 2.0rem;
  }

  #doctor .content_textWrap .name {
    padding-top: 20px;
  }

  .cv {
    font-size: 1.8rem;
    margin: 60px auto 120px;
  }

  #doctor .section_inner:last-child .content {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  #doctor .section_inner:last-child .content_img {
    left: auto;
    right: 0;
  }

  #doctor .section_inner:last-child .content_textWrap {
    top: 0;
    left: 0;
    width: 60%;
    padding: 5% min(10vw, 150px) 5% 5%;
  }

  #clinic .content {
    max-width: 1400px;
    justify-content: space-between;
  }

  #clinic .content02 {
    max-width: 1200px;
    margin: 60px auto;
  }

  #clinic .access {
    max-width: 700px;
    margin: 40px auto;
  }

  #faq .section_inner {
    padding: 120px 0;
    font-size: 2.2rem;
  }

  #faq .content {
    padding: 120px 0;
  }

  .accordion {
    padding: 20px 40px;
    font-size: 2.2rem;
  }

  .Label::before {
    width: 25px;
    right: 0;
  }

  .Label::after {
    height: 25px;
    right: 12.5px;
  }

  footer {
    padding-top: 100px;
  }

  footer .section_inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  footer .content {
    align-items: center;
    margin-bottom: 60px;
  }

  .tel a p::before {
    width: 32px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}