@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

em,
i {
  font-weight: normal;
}

.agbalumo-regular {
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  height: auto;
  width: 100%;
  background: url(../img/bg-pc.webp) no-repeat;
  background-size: cover;
  background-position: bottom;
}

#content {
  width: 400px;
  margin: 0 auto;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  position: 10px;
  transform: translateX(-50%);
  height: 100%;
  overflow-y: auto;
  background: url(../img/bg.png) repeat;
  background-size: cover;
  background-position: top;
  z-index: 10;
}

#content::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 768px) {
  body {
    height: auto;
  }
  #content {
    width: 100%;
    max-width: 100%;
    position: relative;
  }
}
.fade-in {
  opacity: 0;
  /* 初期状態で透明 */
  /* 下に少しずらす */
  transform: translateY(60px);
  transition: all 1s ease;
  /* アニメーションの設定 */
}

.fade-in.fade-top {
  transform: translateY(200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-bottom {
  transform: translateY(-200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-left {
  transform: translateX(-200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-right {
  transform: translateX(200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.show {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置 */
}

img {
  max-width: 100%;
}

.header {
  width: 400px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  padding: 10px;
  z-index: 1100;
}
.header__inner {
  justify-content: space-between;
  align-items: center;
  display: flex;
  width: 100%;
}
.header__logo {
  display: flex;
  gap: 40px;
}
.header__logo img {
  width: 96px;
}
.header__logo p {
  color: #fff;
  font-size: 16px;
}
.header .off {
  display: block;
}
.header .on {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    max-width: 100%;
    width: 100%;
    padding: 15px 10px;
  }
  .header__logo p {
    color: #fff;
    font-size: 14px;
  }
  .header__inner {
    display: block;
  }
}
.header.active .off {
  display: none;
}
.header.active .on {
  display: block;
}
.header.active .header__logo p {
  color: #000;
}

.wrap {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .wrap {
    background: url(../img/bg.png) repeat;
    background-size: contain;
    background-position: top;
  }
}
.fv {
  background: url(../img/fv-bg.webp) no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 80px 20px 180px;
}
.fv__text {
  margin: 0 auto 40px;
  text-align: center;
}
.fv__title {
  text-align: center;
  margin-bottom: 30px;
}
.fv p {
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}
.fv__logo {
  text-align: center;
}

.section__title {
  text-align: center;
  margin-bottom: 20px;
}
.section__title .ashirai {
  margin-bottom: 20px;
}
.section__title .ashirai02 {
  margin-top: 10px;
}

.text {
  font-size: 16px;
  line-height: 1.8;
}

.hospital {
  padding: 20px 20px;
  margin-top: -150px;
}

.sejutu {
  padding: 40px 20px;
}

.sejutu02 {
  padding: 40px 20px;
}

.trouble {
  padding: 30px 20px 80px;
}
.trouble__icon {
  text-align: center;
  margin-bottom: 20px;
}
.trouble .text {
  margin-bottom: 20px;
}
.trouble__lists {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flow {
  padding: 0 20px 40px;
}
.flow__lists {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
.flow__list--title {
  margin-bottom: 15px;
}
.flow__list--img {
  margin-bottom: 20px;
}
.flow__list--text {
  font-size: 16px;
  line-height: 1.8;
}

.about {
  padding: 40px 20px;
}

.background {
  padding: 20px 20px 40px;
}

.bg__wrap {
  background: #F2792E;
  border-radius: 20px;
  margin-top: -20px;
}

.doctor {
  padding: 40px 0;
}
.doctor .inner {
  padding: 0 20px 20px;
}
.doctor__title {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 42px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 60px;
  margin-bottom: 30px;
}
.doctor__img {
  text-align: center;
  margin-bottom: 20px;
}
.doctor .text {
  color: #fff;
}

.akari {
  padding: 0 0 30px;
}
.akari .inner {
  padding: 0 20px 20px;
}
.akari__title {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 22px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .akari__title {
    padding: 10px 20px;
    font-size: 21px;
  }
}
.akari__img {
  text-align: center;
  margin-bottom: 20px;
}
.akari .text {
  color: #fff;
}
.akari__img02 {
  margin-bottom: 20px;
}

.voice {
  padding: 30px 20px;
}
.voice .section__title {
  margin-bottom: 20px;
}
.voice__list {
  background: #F2792E;
  border-radius: 8px;
  margin-top: 20px;
  padding: 16px;
}
.voice__list--title {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
  padding-right: 25px;
  background: url(../img/arrow_bottom.svg) no-repeat;
  background-size: 20px;
  background-position: right;
  cursor: pointer;
}
.voice__list.active .voice__list--title {
  background: url(../img/arrow_top.svg) no-repeat;
  background-size: 20px;
  background-position: right;
}
.voice__list--text {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}
.voice__btn {
  display: block;
  width: 100%;
  border-radius: 60px;
  color: #fff;
  padding: 18px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding-right: 40px;
  background: url(../img/arrow_right.svg) no-repeat;
  background-size: 10px;
  background-position: 90%;
  background-color: #212121;
  margin: 40px auto 0;
}

.intro {
  padding: 20px 20px;
}
.intro__box {
  margin: 20px auto;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  border-radius: 10px;
  background: #F2792E;
  line-height: 2.1;
}
.intro .text {
  font-size: 14px;
}

.price {
  padding: 40px 20px;
}
.price__img {
  margin: 20px auto;
  padding: 0 15px;
}
.price__text {
  padding: 10px 15px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: #F2792E;
  line-height: 2.1;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .price__text {
    padding: 10px;
  }
}

.access {
  padding: 20px 20px;
}
.access .text {
  font-size: 14px;
}
.access .map {
  margin-bottom: 15px;
}
.access .post {
  display: block;
  margin-top: 10px;
}

.line__btn {
  display: block;
  width: 100%;
  border-radius: 60px;
  color: #fff;
  padding: 18px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding-right: 40px;
  background: url(../img/arrow_right.svg) no-repeat;
  background-size: 8px;
  background-position: 70%;
  background-color: #00D66E;
  margin: 20px auto 30px;
  transition: 0.3s ease;
}
.line__btn:hover {
  opacity: 0.8;
}

.instagram {
  transition: 0.3s ease;
}
.instagram:hover {
  opacity: 0.8;
}

.footer {
  padding: 20px;
  background: #F2792E;
  text-align: center;
  position: relative;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}
.footer .instagram {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.sp__menu {
  display: none;
}

.pc {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
.pc .logo {
  width: 38%;
  text-align: center;
}
.pc__menu {
  width: 38%;
}
.pc__menu--logo {
  width: 228px;
  margin: 0 auto 30px;
}
.pc__menu ul {
  width: 228px;
  margin: 0 auto;
}
.pc__menu ul li {
  margin-bottom: 25px;
}
.pc__menu .line__btn {
  width: 351px;
  display: block;
  margin: 45px auto 20px;
  background-position: 75%;
}
.pc__menu .line__btn img {
  width: 100%;
}
.pc__menu .instagram {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.fixed {
  position: fixed;
  bottom: 6%;
  z-index: 12;
  right: 40.5%;
  transform: translateX(50%);
  transition: opacity 0.3s ease;
  display: none;
}
@media screen and (max-width: 1250px) {
  .fixed {
    right: 36%;
  }
}
@media screen and (max-width: 768px) {
  .fixed {
    display: block;
    right: 3%;
    transform: translateX(0);
  }
}

.fixed.hide {
  opacity: 0;
  pointer-events: none;
}

/* =====================
   ハンバーガー
===================== */
.header__btn {
  width: 32px;
  height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  position: fixed;
  top: 20px;
  right: 10px;
  display: none !important;
}
@media screen and (max-width: 768px) {
  .header__btn {
    display: block !important;
  }
}

.header__btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px !important;
  background: #fff;
  transition: 0.4s;
}

.header__btn.on span {
  background: #000;
}

/* 3本線位置 */
.header__btn span:nth-child(1) {
  top: 0;
}

.header__btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__btn span:nth-child(3) {
  bottom: 0;
}

/* ===== ACTIVE → × ===== */
.header__btn.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: #000;
}

.header__btn.active span:nth-child(2) {
  opacity: 0;
}

.header__btn.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  background: #000;
  transform: translateY(-50%) rotate(-45deg);
}

.sp__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: #fff;
  height: 100%;
  transform: translateX(100%);
  transition: 0.3s ease;
  z-index: 99;
  display: none;
  padding: 20px;
  box-sizing: border-box;
}
.sp__menu.active {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .sp__menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.sp__menu--logo {
  text-align: center;
  margin-bottom: 35px;
}
.sp__menu--logo img {
  width: 145px;
  margin: 0 auto;
}
.sp__menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.sp__menu .line__btn {
  background-position: 76%;
  margin: 30px auto;
}
.sp__menu--close {
  width: 48px;
  margin: 0 auto;
}

.bg__wrap02 {
  background: url(../img/bg02.png) no-repeat;
  background-position: top;
  background-size: cover;
}

.voice__list--text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.voice__list.active .voice__list--text {
  max-height: 2000px;
  /* 十分大きい値 */
  opacity: 1;
}/*# sourceMappingURL=style.css.map */