@charset "UTF-8";
/* ---------------------------------------------------------
config
--------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp_s.css");
/* Minimal Reset with Modern Best Practices */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Remove default button styles */
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

/* Set cursor to pointer for buttons */
button {
  cursor: pointer;
}

/* Remove link underline and inherit color */
a {
  text-decoration: none;
  color: inherit;
}

/* Image responsive */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Ensure tables are readable */
table {
  width: 100%;
  border-collapse: collapse;
}

/* Prevent content overflow issues */
iframe, embed, object {
  max-width: 100%;
}

/* Prevent input zooming on iOS */
input, textarea {
  font-size: 16px;
}

/* Hide scrollbars but keep scrolling possible */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media screen and (max-width: 949px) {
  [data-sc-pc] {
    display: none !important;
  }
}

@media print, screen and (min-width: 950px) {
  [data-sc-sp] {
    display: none !important;
  }
}

/* ---------------------------------------------------------
style
--------------------------------------------------------- */
html {
  font-size: 62.5%;
}

@media (max-width: 750px) {
  html {
    font-size: 2.325vw;
  }
}
body {
  font-family: "YakuHanJPs", "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  line-height: 2;
  color: #6b6b6b;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  word-break: break-all;
}

img {
  border-style: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

a,
button {
  outline: 0;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  transition: 0.3s;
  opacity: 1;
}
a:hover,
button:hover {
  cursor: pointer;
  opacity: 0.7;
}
a img,
button img {
  transition: 0.3s;
}
/* ---------------------------------------------------------

  --------------------------------------------------------- */
.row {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}
@media screen and (max-width: 749px) {
  .row {
    display: block;
  }
}

.row > * {
  flex: 1;
}

.w1280 {
  /* width: 100%; */
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.w1000 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.p404 {
  text-align: center;
  padding: 2rem;
}
.p404 a {
  margin-top: 1em;
  display: block;
}

.anchorLink.adjust {
  margin-top: -15rem;
  padding-top: 15rem;
}
.anchorLink.adjust2 {
  margin-top: -10rem;
  padding-top: 10rem;
}

a[href^=tel] img {
  pointer-events: none;
}

/* ---------------------------------------------------------
ヘッダー
--------------------------------------------------------- */
header.pcHeader {
  position: fixed;
  height: 4em;
  width: 100%;
  z-index: 1000;
}

/* ---------------------------------------------------------
ローディング
--------------------------------------------------------- */
/* ローディング画面 */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #d2ffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease-out; /* フェードアウト用 */
}

#loading img {
  width: 230px;
  height: 300px;
}

/* フェードアウト用クラス */
.fade-out {
  opacity: 0;
  pointer-events: none; /* クリックを無効化 */
}

#content {
  display: none; /* ロード完了まで非表示 */
}

/* ---------------------------------------------------------
ナビ
--------------------------------------------------------- */
.zoom-btn {
  transition: transform 0.3s ease;
}
.zoom-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

a.pc__calendar {
  position: fixed;
  display: block;
  top: 14rem;
  right: 4.5rem;
  width: 6.2rem;
  height: 6.2rem;
  z-index: 1000;
}

a.pc__calendar.line {
  top: 21.6rem;
}

a.pc__calendar.inst {
  top: 29.3rem;
}

.navToggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: #fff;
  border-radius: 25px;
}
@media print, screen and (min-width: 950px) {
  .navToggle {
    top: 3.4rem;
    right: 4.5rem;
    width: 6.2rem;
    height: 6.2rem;
    border-radius: 32px;
  }
}
.navToggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 46%;
  border-radius: 10px;
  height: 3px;
  background: #37BEF0;
  -webkit-transition: 0.3Ns;
  transition: 0.3s;
}
.navToggle span.bar01 {
  top: 32%;
}
.navToggle span.bar03 {
  top: 68%;
}
.navToggle.active .bar01 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.navToggle.active .bar02 {
  opacity: 0;
}
.navToggle.active .bar03 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.navWrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 64rem; /* 必要に応じて幅を調整 */
  height: 100svh;
  background-color: #FFFFD4;
  border-radius: 6rem 0 0 6rem;
  transform: translateX(100%); /* 初期状態: 画面外に配置 */
  opacity: 0; /* 初期状態: 透明 */
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1000;
}
@media screen and (max-width: 949px) {
  .navWrap {
    width: 100%;
    border-radius: 0 0 0 6rem;
  }
}

.navWrap.openNav {
  transform: translateX(0); /* 右側からスライドイン */
  opacity: 1; /* フェードイン */
}

/* オーバーレイのスタイル */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* 最初は非表示 */
  z-index: 999; /* ナビの下に表示 */
}
@media print, screen and (min-width: 950px) {
  .overlay {
    background-color: rgba(0, 0, 0, 0.4); /* 背景を暗く */
  }
}

.navWrap__inner {
  position: relative;
  padding-top: 8rem;
  padding-left: 14rem;
  height: 100%;
}
@media screen and (max-width: 949px) {
  .navWrap__inner {
    padding-left: 7rem;
    padding-top: 5rem;
  }
}
.navWrap__inner li {
  color: #37BEF0;
  font-size: 2.6rem;
  line-height: 2.4;
}
@media screen and (max-width: 949px) {
  .navWrap__inner li {
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.2;
  }
}
.navWrap__inner ul.in {
  margin-bottom: 2rem;
}
.navWrap__inner ul.in li {
  font-size: 1.6rem;
}

.nav__btnLink {
  position: absolute;
  right: 5rem;
  bottom: 5rem;
}
@media screen and (max-width: 949px) {
  .nav__btnLink {
    width: 100%;
    position: static;
    margin-top: 2rem;
  }
}
.nav__btnLink li {
  font-size: 1.7rem;
  background-color: #FFCA00;
  color: #fff;
  text-align: center;
  margin-bottom: 1.4rem;
  width: 20rem;
  border-radius: 2rem;
}
@media screen and (max-width: 949px) {
  .nav__btnLink li {
    width: calc(100% - 7rem);
    /* margin: 0 auto; */
    margin-bottom: 1.4rem;
    padding: 0.3rem 0;
  }
}
.nav__btnLink li:nth-of-type(2) {
  background-color: #37BEF0;
}
.nav__btnLink li:nth-of-type(3) {
  background-color: #F582B1;
}
.nav__btnLink a {
  display: block;
}

/* ---------------------------------------------------------
トップへ戻る
--------------------------------------------------------- */
#page_top {
  width: 5rem;
  height: 5rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #e1e1e1;
  opacity: 0.6;
}

#page_top a {
  position: relative;
  display: block;
  width: 5rem;
  height: 5rem;
  text-decoration: none;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 2.8rem;
  color: #fff;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  top: -2.5rem;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* ---------------------------------------------------------
フッター
--------------------------------------------------------- */
footer {
  padding-top: 9rem;
}
footer .ftimg_01 {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 3.5rem;
  display: block;
}
footer .totop {
  width: 20rem;
  display: block;
  margin: 0 auto;
  margin-top: 5.5rem;
  margin-bottom: 3.3rem;
}
@media screen and (max-width: 949px) {
  footer .totop {
    margin-top: 8.5rem;
    margin-bottom: 1.3rem;
  }
}

.ftTopsm {
  background: url(../../images/ft_copy.png) no-repeat bottom center/contain;
  height: 22rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2.5rem;
}
.ftTopsm small {
  text-align: center;
  display: block;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 950px) {
  .ftTopsm small {
    font-size: 13px;
  }
}

/* ---------------------------------------------------------
全体の３列構成
--------------------------------------------------------- */
body:before {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../../images/bg.png) no-repeat center/cover;
  z-index: -1000;
}

.scrollWrap {
  max-width: 101.5rem;
  margin: 0 auto;
  overflow: hidden;
}
@media print, screen and (min-width: 950px) {
  .scrollWrap .scroll {
    width: 55rem;
    margin-left: auto;
  }
}
.scrollWrap .sidebar_left {
  position: fixed;
  width: 35rem;
  left: calc(50vw - 48rem);
  top: calc(50vh - 32.6rem);
}

@media screen and (max-width: 950px) and (min-width: 751px) {
  .scrollWrap .mv .mv__spBtn {
    margin-bottom: 7rem;
  }
  .scrollWrap .mv {
    height: auto;
    padding-top: 7rem;
  }
  .scrollWrap .scroll {
    width: 550px;
    margin: 0 auto;
  }
  .scrollWrap .sidebar_left {
    display: none;
  }
  .spBox .btnWrap {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
/* ---------------------------------------------------------
雲
--------------------------------------------------------- */
.scrollWrap:before {
  position: fixed;
  content: "";
  top: calc(50% - 17rem);
  left: calc(50% - 61rem);
  width: 13.6rem;
  height: 11.66rem;
  background: url(../../images/kumo_l.png) no-repeat center/contain;
  z-index: -1;
}
.scrollWrap::after {
  position: fixed;
  content: "";
  top: calc(50% + 1rem);
  right: calc(50% - 64rem);
  width: 15rem;
  height: 20rem;
  background: url(../../images/kumo_r.png) no-repeat center/contain;
  z-index: -1;
}

/* ---------------------------------------------------------
共通パーツ
--------------------------------------------------------- */
.h2style {
  position: relative;
  color: #82C125;
  text-align: center;
  font-size: 3.1rem;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 949px) {
  .h2style {
    font-size: 2.5rem;
    letter-spacing: 0.3rem;
  }
}
.h2style:before {
  position: absolute;
  content: "";
  width: 5.6rem;
  height: 3.66rem;
  top: -3.8rem;
  left: calc(50% - 2.9rem);
  background: url(../../images/news_h2.png) no-repeat center/contain;
}
.h2style span {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
  margin-top: -0.1rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 949px) {
  .h2style span {
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------------------
カレンダーの下のテキスト
--------------------------------------------------------- */
.schedule-box {
  color: #37BEF0;
  margin-bottom: 4rem;
}
@media print, screen and (min-width: 950px) {
  .schedule-box {
    margin-bottom: 6rem;
  }
}
.schedule-box .scheduleimg {
  width: 89%;
  margin: 0 auto;
  display: block;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 950px) {
  .schedule-box .scheduleimg {
    width: 46.8rem;
  }
}
.schedule-box .schedulei-txt {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-left: 9.4rem;
  font-weight: 600;
}
@media print, screen and (min-width: 950px) {
  .schedule-box .schedulei-txt {
    font-size: 1.8rem;
    margin-left: 12.5rem;
    margin-top: 4rem;
  }
}
.schedule-box .schedulei-txt p {
  position: relative;
}
.schedule-box .schedulei-txt p:before {
  position: absolute;
  content: "";
  bottom: calc(50% - 1.15rem);
  left: -3.5rem;
  width: 2.2rem;
  height: 2.2rem;
}
.schedule-box .schedulei-txt p:nth-of-type(1):before {
  background: url(../../images/schedulei-txt01.png) no-repeat center/contain;
}
.schedule-box .schedulei-txt p:nth-of-type(2):before {
  background: url(../../images/schedulei-txt02.png) no-repeat center/contain;
}
.schedule-box .schedulei-txt p:nth-of-type(3):before {
  background: url(../../images/schedulei-txt03.png) no-repeat center/contain;
}
.schedule-box span {
  font-size: 1.1em;
  letter-spacing: 0.2rem;
}
.schedule-box p.kome {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: -0.005em;
  margin-top: 1.3em;
}

.sp_addBtn {
  display: block;
  width: 40rem;
  margin: 0 auto;
  margin-top: 2.5rem;
}
@media screen and (max-width: 949px) {
  .sp_addBtn {
    width: 32rem;
  }
}

/* ---------------------------------------------------------
h2画像化
--------------------------------------------------------- */
.h2imgStyle {
  position: relative;
  margin-bottom: 0.5em;
  padding-top: 20px;
}
@media screen and (max-width: 949px) {
  .h2imgStyle {
    padding-top: 1.4rem;
  }
}
.h2imgStyle:before {
  position: absolute;
  content: "";
  top: 0.6rem;
  left: calc(50% - 12.5rem);
  width: 5.6rem;
  height: 3.66rem;
  background: url(../../images/news_h2.png) no-repeat center/contain;
  top: -3.8rem;
  left: calc(50% - 3.25rem);
}
.h2imgStyle img {
  height: 4.4rem;
  width: auto;
  margin: 0 auto;
  display: block;
}

.sec_schedule .h2imgStyle {
  margin-bottom: 1.3em;
  margin-top: -3rem;
}
.sec_schedule .h2imgStyle::before {
  background: url(../../images/schedule_h2.png) no-repeat center/contain;
  width: 5rem;
  height: 5rem;
  top: -5rem;
  left: calc(50% - 2.5rem);
}
.sec_schedule .h2imgStyle img {
  height: 4.7rem;
}

/* ---------------------------------------------------------
共通パーツ
MVとかレスポンシブで変化するまわり
--------------------------------------------------------- */
section.mv_v2 {
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 8.5rem;
}

.mv_v2_imgWrap {
  flex: 1;
  flex-direction: column;
  height: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 4rem;
}

img.mv_v2_img {
  object-fit: contain;
  width: auto;
}

.spBox .btnWrap {
  display: flex;
  text-align: center;
}
.spBox .btnWrap a {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  color: #fff;
  padding: 5.5rem 0 2.5rem;
  flex: 1;
  background: #6fc9f3;
}
.spBox .btnWrap a:nth-child(2) {
  background: #f582b1;
}
.spBox .btnWrap a:nth-child(3) {
  background: #f79700;
}
.spBox .btnWrap a img {
  position: absolute;
  width: 9rem;
  left: calc(50% - 4.5rem);
  top: -3rem;
}
.spBox .btnWrap a:before {
  position: absolute;
  content: "";
  bottom: 1.4rem;
  left: calc(50% - 0.5rem);
  width: 1rem;
  height: 0.8rem;
  background: url(../../images/triangle.png) no-repeat center/contain;
}

.splead {
  position: relative;
  margin-top: 5.1rem;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12rem;
  color: #37BEF0;
  line-height: 3.1rem;
  letter-spacing: 0.3rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.splead:before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 6rem;
  width: 8rem;
  height: 7.2rem;
  background: url(../../images/kumo_l.png) no-repeat center/contain;
  z-index: -1;
  transform: scale(-1, 1);
}
.splead .txt {
  display: flex;
  font-size: 1.25em;
}

.pc__Mv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100svh;
  padding-left: 2rem;
  padding-top: 6rem;
}

.pc__fv_txt span {
  display: block;
}
.pc__fv_txt .ttl {
  font-size: 5.3rem;
  font-weight: 600;
  color: #37BEF0;
  line-height: 1.84;
  letter-spacing: 0.11em;
  margin-bottom: 3rem;
}
.pc__fv_txt .txt {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2em;
  color: #37BEF0;
  line-height: 2.36em;
  letter-spacing: 0.07em;
}

.pc__btnAnker {
  display: flex;
  justify-content: space-between;
  width: 39rem;
  margin: 0 auto;
  margin-top: 11rem;
}
.pc__btnAnker li {
  flex: 1;
  margin: 0 0.8rem;
}
.pc__btnAnker a {
  display: block;
}
.pc__btnAnker p {
  text-align: center;
  font-size: 2rem;
  margin-top: 0;
  letter-spacing: 3px;
  font-weight: 600;
  color: #37bef0;
}
.pc__btnAnker li:nth-of-type(2) p {
  color: #f582b1;
}
.pc__btnAnker li:nth-of-type(3) p {
  color: #f89800;
}

.pc__btnLink {
  width: 400px;
  margin: 0 auto;
  margin-top: 10.2rem;
  margin-bottom: 13rem;
}
.pc__btnLink li {
  margin-bottom: 2.4rem;
}
.pc__btnLink a {
  display: block;
}

/* ---------------------------------------------------------
newe
--------------------------------------------------------- */
.news .h2style {
  margin-bottom: 2.4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 949px) {
  .news .h2style {
    margin-bottom: 1.4rem;
    letter-spacing: 0.1em;
  }
}
.news .h2style:before {
  left: calc(50% - 3.4rem);
  width: 66px;
  height: 43px;
  top: -4.7rem;
}
@media screen and (max-width: 949px) {
  .news .h2style:before {
    width: 5.6rem;
  }
}
.news ul {
  margin-bottom: 1.7em;
  margin-top: 2rem;
}
@media screen and (max-width: 949px) {
  .news ul {
    margin-top: 1rem;
    margin-bottom: 1.2em;
  }
}
.news li {
  font-size: 1.8rem;
  padding: 1.9rem 2.7rem;
  color: #82C125;
  background-image: radial-gradient(circle, #808080 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 6px 2px;
}
@media screen and (max-width: 949px) {
  .news li {
    font-size: 1.5rem;
    padding: 2rem 1.7rem;
  }
}
.news li:last-child {
  background-image: radial-gradient(circle, #808080 1px, transparent 1px), radial-gradient(circle, #808080 1px, transparent 1px);
  background-position: left top, left bottom;
  background-repeat: repeat-x, repeat-x;
  background-size: 6px 2px, 6px 2px;
}
.news li .kijittl {
  margin-top: 0.5em;
  line-height: 1.8;
  letter-spacing: 0;
  font-size: 1.6rem;
}
.news li span {
  display: block;
  color: #000;
  letter-spacing: 0.2rem;
  line-height: 1;
  font-size: 1.5rem;
}
.news a.btn_ao {
  position: relative;
  display: block;
  background: #82C125;
  color: #fff;
  padding: 0.9em 0;
  font-size: 1.6rem;
  text-align: center;
  text-indent: -1em;
  border-radius: 2em;
  font-weight: bold;
  width: 24rem;
  margin: 0 auto;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 949px) {
  .news a.btn_ao {
    font-size: 1.3rem;
    width: 20rem;
    text-indent: -2em;
  }
}
.news a.btn_ao:before {
  position: absolute;
  content: "";
  top: calc(50% - 0.7rem);
  right: 5rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../../images/arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 949px) {
  .news a.btn_ao:before {
    right: 4rem;
  }
}

.newsBG {
  position: relative;
  background-color: #fff;
  border-radius: 2.5rem;
  width: 45rem;
  margin: 0 auto;
  padding: 11rem 3.5rem 5.8rem 3rem;
  border: 5px solid #82C125;
}
@media screen and (max-width: 949px) {
  .newsBG {
    padding: 8.4rem 3rem 3.4rem 3rem;
    border: 3px solid #82C125;
    width: 37rem;
  }
}
.newsBG:before {
  position: absolute;
  content: "";
  top: -4.3rem;
  left: calc(50% - 4.5rem);
  width: 9rem;
  height: 4rem;
  background: url(../../images/secbg.png) no-repeat center/contain;
}
.newsBG:after {
  position: absolute;
  content: "";
  top: -5.1rem;
  right: 3.2rem;
  width: 11.5rem;
  height: 5.7rem;
  background: url(../../images/secbg_side.png) no-repeat center/contain;
}
@media screen and (max-width: 949px) {
  .newsBG:after {
    top: -3.3rem;
    right: 4rem;
    width: 7.5rem;
    height: 3.8rem;
  }
}

.single .news li span {
  font-size: 1.6rem;
}
@media print, screen and (min-width: 950px) {
  .single .news li span {
    font-size: 16px;
  }
}
.single .news li .kijittl {
  font-size: 2rem;
}
@media print, screen and (min-width: 950px) {
  .single .news li .kijittl {
    font-size: 20px;
  }
}
.single .news .content {
  font-size: 1.5rem;
  line-height: 3.3rem;
}
@media print, screen and (min-width: 950px) {
  .single .news .content {
    font-size: 15px;
    line-height: 33px;
  }
}

/* ---------------------------------------------------------
スケジュール
--------------------------------------------------------- */
.sec_schedule {
  position: relative;
  margin-top: 28rem;
  padding-top: 1rem;
  padding-bottom: 7rem;
  background: #fff;
  margin-bottom: 140px;
}
@media screen and (max-width: 949px) {
  .sec_schedule {
    margin-top: 23rem;
    margin-bottom: 10rem;
  }
}
.sec_schedule:before {
  position: absolute;
  content: "";
  top: -16rem;
  left: 0;
  width: 100%;
  height: 16rem;
  background: url(../../images/greeting_04.png) no-repeat center/cover;
}
@media screen and (max-width: 949px) {
  .sec_schedule:before {
    top: -12.8rem;
    height: 13rem;
  }
}
.sec_schedule:after {
  position: absolute;
  content: "";
  top: -14.5rem;
  left: calc(50% + 9.4rem);
  width: 7.6rem;
  height: 5.3rem;
  background: url(../../images/schedule_top.png) no-repeat center/contain;
}
@media print, screen and (min-width: 950px) {
  .sec_schedule:after {
    top: -18rem;
    left: calc(50% + 12.4rem);
    width: 12.2rem;
    height: 8.5rem;
  }
}
.sec_schedule .h2style {
  color: #37BEF0;
  margin-bottom: 1.3em;
  margin-top: 3rem;
  letter-spacing: 0.12em;
  font-size: 3.1rem;
}
@media screen and (max-width: 949px) {
  .sec_schedule .h2style {
    margin-top: -1.8rem;
    letter-spacing: 0.2rem;
    font-size: 2.6rem;
  }
}
.sec_schedule .h2style:before {
  background: url(../../images/schedule_h2.png) no-repeat center/contain;
  width: 4rem;
  height: 4rem;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
}
@media print, screen and (min-width: 950px) {
  .sec_schedule .h2style:before {
    top: -5.7rem;
    left: 50%;
    width: 5.6rem;
    height: 5.6rem;
    transform: translateX(-50%);
  }
}

.scheWrap {
  position: relative;
}
.scheWrap::after {
  position: absolute;
  content: "";
  bottom: -2rem;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background: url(../../images/nami_01.png) no-repeat center/contain;
  z-index: 1;
}

/* ---------------------------------------------------------
診療のご案内
--------------------------------------------------------- */
.sec_subject {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #FFFFD4;
  position: relative;
}
@media screen and (max-width: 949px) {
  .sec_subject {
    padding-bottom: 2rem;
  }
}
.sec_subject::before {
  position: absolute;
  content: "";
  top: -2rem;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background: url(../../images/nami_02.png) no-repeat center/contain;
  transform: rotate(180deg);
}
.sec_subject::after {
  position: absolute;
  content: "";
  bottom: -2rem;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background: url(../../images/nami_02.png) no-repeat center/contain;
}
.sec_subject .h2style {
  color: #F582B1;
  margin-bottom: 5.1rem;
  margin-top: 10.5rem;
  letter-spacing: 0.25em;
  font-size: 2.8rem;
}
@media screen and (max-width: 949px) {
  .sec_subject .h2style {
    margin-top: 9.5rem;
    margin-bottom: 4rem;
    font-size: 2.3rem;
    letter-spacing: 0.24em;
  }
}
.sec_subject .h2style:before {
  background: url(../../images/sec_subject_icon.png) no-repeat center/contain;
  width: 6.8rem;
  height: 5.8rem;
  top: -5.7rem;
}
@media screen and (max-width: 949px) {
  .sec_subject .h2style:before {
    width: 5.5rem;
    height: 4.7rem;
    top: -4.6rem;
  }
}
.sec_subject ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 5.5rem;
}
@media screen and (max-width: 949px) {
  .sec_subject ul {
    padding: 0 2rem;
  }
}
.sec_subject ul li {
  width: 48%;
  text-align: center;
  margin-bottom: 3.8rem;
}
.sec_subject ul li:nth-of-type(1), .sec_subject ul li:nth-of-type(2) {
  margin-bottom: 8rem;
}
@media screen and (max-width: 949px) {
  .sec_subject ul li {
    margin-bottom: 6rem;
  }
}
.sec_subject .pink {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 2.3;
  letter-spacing: 0.1rem;
  color: #fff;
  margin: 0 0.5rem;
  border-radius: 0.5rem;
  background: #F582B1;
  margin-bottom: 3rem;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 949px) {
  .sec_subject .pink {
    font-size: 2rem;
    margin: 0;
    margin-bottom: 1.4rem;
  }
}
.sec_subject .pink span {
  font-size: 1.4rem;
  letter-spacing: 0;
}
.sec_subject p.pink-p {
  color: #F582B1;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0;
  padding: 10px 5px;
  text-align: left;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 949px) {
  .sec_subject p.pink-p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
.sec_subject .kotira {
  font-size: 1.3rem;
  position: relative;
  width: 10em;
  margin: 0 auto;
  text-indent: 1.3em;
  letter-spacing: -0.1rem;
}
.sec_subject .kotira:before {
  position: absolute;
  content: "";
  top: 0.69em;
  left: 1.2em;
  width: 0.6rem;
  height: 0.8rem;
  background: url(../../images/triangle_pink.png) no-repeat center/contain;
}
.sec_subject a {
  display: block;
  transition: none;
}
.sec_subject a .thumb {
  width: 21rem;
  height: 21rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.sec_subject a img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}
.sec_subject a:hover {
  opacity: 1;
}
.sec_subject a:hover img {
  transform: scale(1.1);
}

/* ---------------------------------------------------------
ごあいさつ
--------------------------------------------------------- */
.sec_greeting {
  margin-top: 35.5rem;
  padding-bottom: 26rem;
  position: relative;
  background: url(../../images/greeting_05.png) no-repeat center/cover;
  background-position-y: top;
}
@media screen and (max-width: 949px) {
  .sec_greeting {
    margin-top: 33.5rem;
    padding-bottom: 20rem;
  }
}
.sec_greeting:before {
  position: absolute;
  content: "";
  top: -30rem;
  left: 9rem;
  width: 14rem;
  height: 12.2rem;
  background: url(../../images/greeting_01.png) no-repeat center/cover;
}
.sec_greeting .kids {
  position: absolute;
  top: -17rem;
  left: calc(50% - 19.15rem);
  width: 39.3rem;
}
@media screen and (max-width: 949px) {
  .sec_greeting .kids {
    top: -14.5rem;
    left: calc(50% - 17.15rem);
    width: 34.3rem;
  }
}
.sec_greeting .h2style {
  color: #fff;
  margin-bottom: 0;
  margin-top: 0px;
  padding-top: 10rem;
  font-size: 2.9rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 949px) {
  .sec_greeting .h2style {
    padding-top: 8rem;
    font-size: 2.4rem;
  }
}
.sec_greeting .h2style::before {
  background: none;
}
.sec_greeting .h2style span {
  font-size: 1.45rem;
}
.sec_greeting .fujimoto {
  width: 31.6rem;
  display: block;
  margin-left: 11rem;
  margin-top: 2.3rem;
}
@media screen and (max-width: 949px) {
  .sec_greeting .fujimoto {
    width: 31.6rem;
    display: block;
    margin-left: 8rem;
    margin-top: 0;
  }
}
.sec_greeting .txtWrap {
  position: relative;
  background: #fff;
  width: calc(100% - 15.4rem);
  margin: 0 auto;
  padding: 4rem 3.5rem 5rem;
  border-radius: 2rem;
  margin-top: 5rem;
}
@media screen and (max-width: 949px) {
  .sec_greeting .txtWrap {
    width: calc(100% - 6.4rem);
    padding: 4rem 3rem 3rem;
    border-radius: 3rem;
    margin-top: 4rem;
  }
}
.sec_greeting .txtWrap:before {
  position: absolute;
  content: "";
  top: -3rem;
  left: 8rem;
  width: 3.6rem;
  height: 3.2rem;
  background: url(../../images/greeting_06.png) no-repeat center/cover;
}
.sec_greeting .txt {
  font-size: 1.5rem;
  line-height: 3.3rem;
  letter-spacing: -1px;
  text-align: justify;
}
@media screen and (max-width: 949px) {
  .sec_greeting .txt {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}
.sec_greeting .txt span.pc {
  display: block;
  font-size: 2rem;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}
.sec_greeting .name {
  font-size: 1.2rem;
  letter-spacing: 0.001em;
  text-align: center;
  margin-top: 3rem;
}
.sec_greeting .name .nobi {
  margin-left: -0.37em;
  letter-spacing: -0.02em;
}
@media print, screen and (min-width: 950px) {
  .sec_greeting .name .nobi {
    font-size: 13px;
    letter-spacing: 0px;
    text-indent: -2px;
  }
}
.sec_greeting .name .hurigana {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  margin-left: 0.8rem;
  text-align: center;
}
@media print, screen and (min-width: 950px) {
  .sec_greeting .name .hurigana {
    font-size: 11px;
  }
}
.sec_greeting .name .namae {
  font-size: 1.3rem;
  letter-spacing: 0.45em;
  line-height: 1.5;
}
.sec_greeting .name span {
  font-size: 2.4rem;
  margin-left: 0.5em;
  vertical-align: sub;
}
@media print, screen and (min-width: 950px) {
  .sec_greeting .name span {
    font-size: 25px;
  }
}
.sec_greeting h3 {
  position: relative;
  margin: 0 auto;
  margin-top: 5.6rem;
  margin-bottom: 2rem;
  background-image: radial-gradient(circle, #808080 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 6px 2px;
  height: 2px;
}
@media screen and (max-width: 949px) {
  .sec_greeting h3 {
    margin-top: 4.6rem;
  }
}
.sec_greeting h3 span {
  position: absolute;
  background-color: #fff;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10em;
  text-align: center;
}
.sec_greeting h3 span.em {
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  width: 5.6em;
}
.sec_greeting h3 span.em.siakku {
  width: 11.7em;
}
.sec_greeting .keireki {
  padding: 0 1.5rem;
}
@media screen and (max-width: 949px) {
  .sec_greeting .keireki {
    padding: 0 2rem;
  }
}
.sec_greeting .keireki p {
  font-size: 1.2rem;
  line-height: 2.4rem;
  padding: 0 0.7rem;
}
.sec_greeting .keireki .tc {
  text-align: center;
}

/* ---------------------------------------------------------
アクセス
--------------------------------------------------------- */
.sec_access {
  background-color: #fff;
  padding-bottom: 15px;
  position: relative;
}
@media print, screen and (min-width: 950px) {
  .sec_access {
    padding-top: 3rem;
  }
}
.sec_access::before {
  position: absolute;
  content: "";
  top: -15.7rem;
  left: 0;
  width: 100%;
  height: 16rem;
  background: url(../../images/greeting_04.png) no-repeat center/cover;
}
@media screen and (max-width: 949px) {
  .sec_access::before {
    top: -12.7rem;
    height: 13rem;
  }
}
.sec_access::after {
  position: absolute;
  content: "";
  bottom: -2rem;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background: url(../../images/nami_01.png) no-repeat center/contain;
}
.sec_access .h2style {
  color: #F89700;
  margin-top: 1rem;
  letter-spacing: 0.4rem;
  font-size: 2.9rem;
}
@media screen and (max-width: 949px) {
  .sec_access .h2style {
    margin-top: 0;
    font-size: 2.3rem;
    letter-spacing: 0.12em;
  }
}
.sec_access .h2style::before {
  left: calc(50% - 2.3rem);
  width: 5rem;
  top: -7rem;
  height: 6.7rem;
  background: url(../../images/access_01.png) no-repeat center/cover;
}
@media screen and (max-width: 949px) {
  .sec_access .h2style::before {
    left: calc(50% - 1.9rem);
    width: 3.5rem;
    top: -5rem;
    height: 4.5rem;
  }
}
.sec_access .h2imgStyle {
  margin-top: -2rem;
}
.sec_access .h2imgStyle::before {
  left: calc(50% - 1.5rem);
  width: 3.2rem;
  top: -4rem;
  height: 4rem;
  background: url(../../images/access_01.png) no-repeat center/cover;
}
@media print, screen and (min-width: 950px) {
  .sec_access .h2imgStyle::before {
    left: calc(50% - 2rem);
    top: -6rem;
    width: 4.1rem;
    height: 5.3rem;
  }
}
.sec_access .lead {
  font-size: 2rem;
  text-align: center;
  margin-top: 3.6rem;
  margin-bottom: 4.4rem;
  line-height: 1.6em;
  letter-spacing: 0;
}
@media screen and (max-width: 949px) {
  .sec_access .lead {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 2.7rem;
  }
}
.sec_access .mapBox {
  position: relative;
  width: 40rem;
  margin: 5rem auto;
  text-align: center;
}
@media screen and (max-width: 949px) {
  .sec_access .mapBox {
    margin: 3rem auto;
    width: 37rem;
  }
}
.sec_access .mapBox:before {
  position: absolute;
  content: "";
  top: 2rem;
  left: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1rem;
  background: #FFD400;
  z-index: 1;
}
.sec_access .mapBox:after {
  position: absolute;
  content: "";
  bottom: 2rem;
  left: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1rem;
  background: #FFD400;
  z-index: 1;
}
.sec_access .mapBox > div {
  background-color: #FFFFD4;
  position: relative;
  padding: 5.5rem 0;
  border-radius: 2rem;
}
.sec_access .mapBox > div:before {
  position: absolute;
  content: "";
  top: 2rem;
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1rem;
  background: #FFD400;
}
.sec_access .mapBox > div:after {
  position: absolute;
  content: "";
  bottom: 2rem;
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1rem;
  background: #FFD400;
}
.sec_access .mapBox .ttl {
  color: #F89700;
  font-weight: 600;
  font-size: 2.4rem;
}
@media screen and (max-width: 949px) {
  .sec_access .mapBox .ttl {
    font-size: 2rem;
  }
}
.sec_access .mapBox .txtBig {
  font-size: 1.8rem;
  line-height: 2.9rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 949px) {
  .sec_access .mapBox .txtBig {
    font-size: 1.6rem;
  }
}
.sec_access .mapBox .txt {
  font-size: 1.4rem;
  line-height: 2.6rem;
  margin-bottom: 1.4rem;
  margin-top: 1.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 949px) {
  .sec_access .mapBox .txt {
    font-size: 1.3rem;
  }
}
.sec_access .mapBox .line {
  background-image: radial-gradient(circle, #f89700 2px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 8px 4px;
  height: 4px;
  width: 92%;
  margin: 0 auto;
  margin-top: 5.2rem;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 949px) {
  .sec_access .mapBox .line {
    margin-top: 3.8rem;
    margin-bottom: 2.7rem;
    width: 84%;
  }
}

.poyon {
  opacity: 0;
  transform: translate3d(0, 50px, 0) scale(0);
  transform-origin: bottom;
  transition: opacity 0.25s ease, transform 0.6s cubic-bezier(0.25, 1.75, 0.5, 1);
  /* ポヨヨン感 */
}

.is-show.poyon {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

html.sub-page {
  font-size: 62.5%;
}
@media (max-width: 750px) {
  html.sub-page {
    font-size: 2.325vw;
  }
}

/* ---------------------------------------------------------
下層ページ　共通
--------------------------------------------------------- */
.innerHeader {
  background: url(../../images/inner_logo_bg.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  padding: 6rem 8rem 15rem;
}
@media screen and (max-width: 950px) and (min-width: 750px) {
  .innerHeader {
    padding: 6rem 8rem 22rem;
  }
}
@media print, screen and (min-width: 950px) {
  .innerHeader a {
    display: none;
  }
}

main.news,
main.inner {
  background: #fff;
  padding-bottom: 4rem;
}

.p35 {
  padding: 0 3.5rem;
}

.inner__footer {
  position: relative;
  background: url(../../images/inner_footer.png) no-repeat bottom center;
  background-size: contain;
  padding-top: 8rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 750px) {
  .inner__footer {
    padding-top: 10rem;
  }
}
.inner__footer:before {
  position: absolute;
  content: "";
  top: -0.5rem;
  left: 0;
  width: 100%;
  height: 2.37rem;
  background: url(../../images/nami_01.png) no-repeat center/contain;
}
@media screen and (min-width: 750px) {
  .inner__footer:before {
    height: 3.1rem;
  }
}
.inner__footer .btnWrap {
  display: flex;
  padding: 0 4.5rem;
  gap: 2rem;
}
.inner__footer small {
  text-align: center;
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin-top: 25rem;
  margin-bottom: 5px;
}
@media screen and (min-width: 750px) {
  .inner__footer small {
    margin-top: 33rem;
  }
}

.single .inner__footer {
  padding-top: 25rem;
}
@media screen and (min-width: 750px) {
  .single .inner__footer {
    padding-top: 29rem;
  }
}
.single .inner__footer:before {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  width: 100%;
  height: 13rem;
  background: url(../../images/inner_logo_bg.png) no-repeat center/contain;
  transform: rotate(180deg);
}
@media screen and (min-width: 750px) {
  .single .inner__footer:before {
    height: 17rem;
  }
}

/* ---------------------------------------------------------
NEWS
--------------------------------------------------------- */
main.news .content {
  margin-top: 2rem;
  color: #6B6B6C;
  font-size: 1.3rem;
  line-height: 2.5rem;
}
main.news li {
  padding: 4rem 0;
  background-position: left bottom;
}
main.news li:last-child {
  background-image: none;
}
main.news .pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.news .page-numbers {
  font-size: 1.5rem;
  font-weight: 500;
  width: 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
main.news .page-numbers > * {
  margin: 0 1rem;
}
main.news .current {
  color: #82C125;
  border: 2px solid;
  width: 3rem;
  aspect-ratio: 1/1;
  text-align: center;
  border-radius: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  padding-left: 1px;
}
main.news .next,
main.news .prev {
  width: 3rem;
  height: 3rem;
  display: block;
  line-height: 1.5;
}

nav.post-navigation {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  padding: 0 3.5rem;
  color: #82c125;
}

/* ---------------------------------------------------------
診療のご案内
--------------------------------------------------------- */
.inner {
  font-weight: 500;
}

.inner i {
  font-size: 1.2rem;
  font-weight: 600;
  font-style: normal;
  border-radius: 2em;
  margin-right: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
  background: #F582B1;
  padding-bottom: 1px;
  padding-left: 1px;
}

.pageTtl {
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 0.09em;
  margin-bottom: 5rem;
  color: #F582B1;
}
.pageTtl span {
  display: block;
  font-size: 1.15rem;
  line-height: 1;
}

.inner__w1 {
  padding: 0 3rem;
}

.inner__medicalNav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 4.5rem;
  padding: 0 2rem;
}
.inner__medicalNav a {
  position: relative;
  display: block;
  border: 2px solid #F582B1;
  font-size: 1.3rem;
  font-weight: 600;
  color: #F582B1;
  padding: 0 1.5rem;
  line-height: 2.8;
  border-radius: 5px;
}
.inner__medicalNav a:before {
  position: absolute;
  content: "";
  top: calc(50% - 0.5rem);
  right: 1rem;
  width: 1rem;
  height: 1rem;
  background: url(../../images/triangle_pink.png) no-repeat center/contain;
}
.inner__medicalNav .current {
  background-color: #F582B1;
  color: #fff;
}
.inner__medicalNav .current:before {
  background: url(../../images/triangle_white.png) no-repeat center/contain;
}

.inner__yellow {
  background-color: #FFFFD4;
  border-radius: 2rem;
  padding: 6.5rem 1.5rem 8rem;
}

.inner__yellowTtl {
  line-height: 1.4;
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: #F582B1;
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 950px) {
  .inner__yellowTtl {
    font-size: 3rem;
  }
}

.inner__mv {
  width: 23rem;
  margin: 0 auto;
  display: block;
  margin-top: 3.9rem;
}
@media print, screen and (min-width: 950px) {
  .inner__mv {
    width: 25rem;
  }
}

.inner__lead {
  font-size: 1.5rem;
  line-height: 2.2;
  padding: 0 1.7rem;
  letter-spacing: 0.03em;
  margin-top: 4rem;
}

.inner__pinkBox {
  margin-top: 5rem;
  padding: 0 1.7rem;
}
.inner__pinkBox .ttl {
  background: #F582B1;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.07em;
  line-height: 1.7;
  padding: 1.7rem 0;
  border-radius: 2rem 2rem 0 0;
}
.inner__pinkBox ul {
  padding: 2.5rem 0;
  padding-left: 2.5rem;
  border-radius: 0 0 2rem 2rem;
  background: #fff;
}
@media screen and (max-width: 949px) {
  .inner__pinkBox ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }
}
.inner__pinkBox li {
  line-height: 1.4;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.inner__pinkBox li span {
  font-size: 1.2rem;
}
.inner__pinkBox .btm {
  padding: 2.5rem;
  border-radius: 0 0 2rem 2rem;
  background: #fff;
  font-size: 1.5rem;
  line-height: 2;
}
.inner__pinkBox .btm .senyo_youbi {
  font-size: 2rem;
  text-align: center;
  margin-top: 1rem;
  color: #F582B1;
  font-weight: 600;
  position: relative;
}
.inner__pinkBox .btm .senyo_youbi span {
  background: linear-gradient(transparent 70%, #FFF66E 70%);
}
.inner__pinkBox .btm .senyo_jikan {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #F582B1;
}
.inner__pinkBox .btm .sm_center {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  margin-top: 3.4rem;
}
.inner__pinkBox .btm .sm {
  font-size: 1.2rem;
  margin-top: 1.8rem;
}

.inner__btnWrap {
  display: flex;
  gap: 1.4rem;
  margin-top: 1.3rem;
}

.inner__Ttl_nami {
  font-size: 2rem;
  margin-top: 10rem;
  letter-spacing: 0.1em;
  line-height: 2.4;
  text-align: center;
  margin-bottom: 4rem;
}
.inner__Ttl_nami span {
  position: relative;
  display: inline-block;
}
.inner__Ttl_nami span:before {
  position: absolute;
  content: "";
  bottom: -0.4rem;
  right: 0%;
  width: 100%;
  height: 6px;
  background: url(../../images/nami.png);
  background-size: contain;
}
.inner__Ttl_nami .bik {
  position: relative;
  text-indent: 1.8em;
}
.inner__Ttl_nami .bik::after {
  position: absolute;
  content: "";
  bottom: 1.15rem;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../../images/bik.png);
  background-size: contain;
}

.inner__pinkkapsel {
  margin-bottom: 3.5rem;
  padding: 0 1.7rem;
}
.inner__pinkkapsel span {
  background: #FFE5E6;
  font-size: 1.6rem;
  padding: 0.1rem 1.3rem;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
  margin-right: 0.2rem;
}
.inner__pinkkapsel span + p {
  text-align: center;
  font-size: 1.7rem;
}

.inner__btn {
  position: relative;
  background: #F582B1;
  color: #fff;
  display: block;
  font-weight: 600;
  width: 24rem;
  text-align: center;
  margin: 0 auto;
  padding: 0.8rem 0;
  border-radius: 4rem;
  letter-spacing: 0.25em;
  font-size: 1.7rem;
  /* height: 5rem; */
}
.inner__btn:before {
  position: absolute;
  content: "";
  top: calc(50% - 1.2rem);
  right: 2.1rem;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../../images/innerbtn.png) no-repeat center/contain;
}

.inner__p17rem {
  font-size: 1.5rem;
  padding: 0 1.7rem;
  letter-spacing: 0.03em;
}

.inner__h4 {
  font-size: 1.6rem;
  background: #fff;
  padding: 1rem 0 1rem 2rem;
  border-left: 8px solid #f582b1;
  margin-left: 1.7rem;
  margin-right: 1.7rem;
  margin-bottom: 1.6rem;
  margin-top: 5rem;
}
@media print, screen and (min-width: 950px) {
  .inner__h4 {
    font-size: 1.8rem;
    padding: 0.7rem 0 0.7rem 2rem;
  }
}

.inner__pinkDot {
  padding: 0 1.7rem;
}
.inner__pinkDot li {
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
  line-height: 1.6;
  position: relative;
  padding-left: 2.5rem;
}
.inner__pinkDot li:before {
  position: absolute;
  content: "";
  top: 0.6rem;
  left: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 1rem;
  background: #F582B1;
}
.inner__pinkDot li span {
  font-size: 1.2rem;
}

.inner__pinkBack {
  background: #FFE5EE;
  border-radius: 2rem;
  margin-top: 6rem;
  padding: 2rem 3rem;
  margin-left: 1.7rem;
  margin-right: 1.7rem;
}
.inner__pinkBack h4 {
  text-align: center;
  line-height: 1.6;
  margin-top: 0.6rem;
  margin-bottom: 1.7rem;
}
.inner__pinkBack .inner__pinkDot {
  padding: 0;
}
.inner__pinkBack .sm {
  font-size: 1.2rem;
  margin-top: -1rem;
}

.inner__kome {
  font-size: 1.2rem;
  text-indent: -2em;
  padding-left: 4rem;
  padding-right: 2rem;
  margin-bottom: 1rem;
}

hr {
  border: none;
  width: 89%;
  margin: 5rem auto;
  background-image: radial-gradient(circle, #F582B1 2px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 12px 4px;
  height: 4px;
}

/* ---------------------------------------------------------
TOPと記事一覧ページ
--------------------------------------------------------- */
.blog__row {
  display: flex;
}
.blog__row .l {
  margin-right: 2rem;
  width: 126px;
}
.blog__row .l img {
  border-radius: 6px;
  aspect-ratio: 1/0.85;
}
.blog__row .r {
  flex: 1;
}
.blog__row .kijittl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: 5em;
}

.news .blog li {
  color: #F582B1;
  padding: 30px 10px;
}

.blog_sec {
  margin-top: 12rem;
}
.blog_sec .h2style {
  letter-spacing: 0.3rem;
  color: #F582B1;
}
.blog_sec .h2style:before {
  position: absolute;
  content: "";
  width: 6rem;
  height: 5.6rem;
  top: -5.8rem;
  left: calc(50% - 2.9rem);
  background: url(../../images/tips_h2.png) no-repeat center/contain;
}
@media screen and (max-width: 949px) {
  .blog_sec .h2style:before {
    position: absolute;
    content: "";
    width: 5rem;
    height: 5rem;
    top: -5rem;
    left: 50%;
    transform: translate(-50%);
    background: url(../../images/tips_h2.png) no-repeat center/contain;
  }
}
.blog_sec .newsBG {
  border: 4px solid #F582B1;
  padding-top: 10.6rem;
}
.blog_sec .newsBG::after, .blog_sec .newsBG::before {
  position: static;
}

.tax-blog_tag main.news .current,
.tax-blog_category main.news .current,
.post-type-archive-blog main.news .current {
  color: #F582B1;
}

.addline {
  max-width: 51rem;
  display: block;
  margin: 0 auto;
  margin-bottom: 18.5rem;
  /* margin-top: 0; */
  padding: 0 2rem 0 3.4rem;
}

/* ---------------------------------------------------------
  記事
  --------------------------------------------------------- */
/* ------レイアウトのリセット---------------------------- */
.single-blog .scrollWrap {
  max-width: 1050px;
}
.single-blog .sidebar_left {
  display: none;
}
.single-blog .scrollWrap .scroll {
  width: 100%;
}
@media screen and (max-width: 950px) and (min-width: 751px) {
  .single-blog .scrollWrap .scroll {
    width: 550px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 950px) {
  .single-blog footer.inner__footer {
    width: 550px;
    margin: 0 auto;
  }
}

/* ------ここからスタイリング---------------------------- */
.single-blog .innerHeader {
  background: url(../../images_v2/abtop.webp) no-repeat;
  background-size: contain;
  padding-top: 230px;
  background-position-y: bottom;
}
@media screen and (max-width: 950px) {
  .single-blog .innerHeader {
    background: url(../../images/inner_logo_bg.png) no-repeat;
    background-size: contain;
    padding-top: 100px;
    background-position-y: bottom;
  }
}
.single-blog .inner__footer:before {
  position: static;
}
@media screen and (max-width: 950px) {
  .single-blog .inner__footer:before {
    position: absolute;
  }
}

.h2imgStyle.v2::before {
  position: static;
}
.h2imgStyle.v2 img {
  height: 130px;
  margin-top: -50px;
}

.blog_kiji__row {
  display: flex;
  padding: 55px 60px 45px;
}
@media screen and (max-width: 950px) {
  .blog_kiji__row {
    padding: 3rem;
    flex-direction: column-reverse;
  }
}

main.blog_kiji {
  background: #fff;
  position: relative;
}
main.blog_kiji:before {
  position: absolute;
  content: "";
  bottom: -17.9rem;
  left: 0;
  width: 100%;
  height: 18rem;
  background: url(../../images_v2/abbtm.webp) no-repeat center/contain;
  transform: none;
}
@media screen and (max-width: 950px) {
  main.blog_kiji:before {
    position: static;
  }
}
main.blog_kiji article {
  flex: 1;
}
main.blog_kiji .kijittl {
  font-size: 28px;
  color: #F582B1;
  font-weight: 500;
  margin: 0;
  margin-top: 0.3em;
  margin-bottom: 1.4em;
  line-height: 1.8;
}
main.blog_kiji .thum {
  margin-bottom: 5rem;
}
main.blog_kiji .thum img {
  border-radius: 30px;
  aspect-ratio: 1/0.85;
  width: 76%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}
main.blog_kiji h2.wp-block-heading {
  color: #F582B1;
  font-size: 24px;
  margin-top: 4em;
  margin-bottom: 0.3em;
  font-weight: 500;
}
main.blog_kiji p {
  line-height: 2.3;
  margin-bottom: 1em;
  font-size: 1.8rem;
}
main.blog_kiji a {
  color: #37bef0;
  text-decoration: underline;
}

aside.aside {
  width: 220px;
  margin-right: 70px;
  padding-top: 12px;
}
@media screen and (max-width: 950px) {
  aside.aside {
    width: 100%;
    margin-right: 0;
    padding-top: 12px;
    margin-top: 5rem;
  }
}

.aside__categoryTTL {
  background: #F582B1;
  color: #fff;
  font-size: 17px;
  border-radius: 2em;
  line-height: 1;
  display: inline-block;
  padding: 0.65em 1.6em;
  letter-spacing: 0;
  margin: 0;
  margin-bottom: 1em;
}

.aside__ul {
  margin-top: 0.7em;
  font-size: 20px;
  margin-left: 1.3em;
  font-weight: 600;
  color: #F582B1;
}
.aside__ul li {
  margin-bottom: 0.5em;
  position: relative;
}
.aside__ul li:before {
  position: absolute;
  content: "";
  top: 15px;
  left: -17px;
  width: 11px;
  height: 12px;
  background: url(../../images_v2/sankaku.webp) no-repeat center/contain;
}

.next.re {
  transform: rotate(180deg);
}

.post-navigation.blogsingle {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 100px;
}
@media screen and (max-width: 950px) {
  .post-navigation.blogsingle {
    margin-top: 60px;
    padding-bottom: 5rem;
  }
}
.post-navigation.blogsingle a {
  width: 140px;
  display: block;
}

ul.tagList {
  font-size: 16px;
  font-weight: 600;
  margin-top: 2em;
}
ul.tagList li {
  display: inline-block;
  background-color: #FFE5E6;
  border-radius: 10px;
  padding: 0.4em 0.9em;
  margin-right: 1em;
  margin-top: 1em;
}
ul.tagList a {
  display: block;
}

.bloglogo {
  position: absolute;
  top: 55px;
  width: 250px;
}
@media screen and (max-width: 950px) {
  .bloglogo {
    display: none;
  }
}

a.totop.single-blog {
  margin-top: -6rem;
}
@media screen and (min-width: 950px) {
  a.totop.single-blog {
    margin-bottom: 8rem;
  }
}

.sidebar_left__ttlP {
  font-size: 1.6rem;
  font-weight: bold;
  color: #37BEF0;
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.12em;
}
@media print, screen and (min-width: 950px) {
  .sidebar_left__ttlP {
    text-indent: 2em;
  }
}

/* ---------------------------------------------------------
当院の特徴
--------------------------------------------------------- */
.sec_feature {
  position: relative;
  background: #fff;
  margin-top: 27rem;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 949px) {
  .sec_feature {
    margin-top: 23rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.sec_feature::before {
  position: absolute;
  content: "";
  top: -16rem;
  left: 0;
  width: 100%;
  height: 16rem;
  background: url(../../images/greeting_04.png) no-repeat center/cover;
}
@media screen and (max-width: 949px) {
  .sec_feature::before {
    top: -12rem;
    height: 12rem;
  }
}
.sec_feature::after {
  position: absolute;
  content: "";
  bottom: -15.5rem;
  left: 0;
  width: 100%;
  height: 16rem;
  background: url(../../images/greeting_04.png) no-repeat center/cover;
  transform: rotate(180deg);
}
@media screen and (max-width: 949px) {
  .sec_feature::after {
    bottom: -12rem;
    height: 12rem;
  }
}
.sec_feature .h2style {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 949px) {
  .sec_feature .h2style {
    margin-top: -0.6rem;
  }
}
.sec_feature .h2style:before {
  background: url(../../images/feature_h2.png) no-repeat center/contain;
  width: 6rem;
  height: 6rem;
  top: -6rem;
  left: calc(50% - 2.9rem);
}
@media screen and (max-width: 949px) {
  .sec_feature .h2style:before {
    width: 4rem;
    height: 4rem;
    top: -4.5rem;
    left: calc(50% - 1.9rem);
  }
}
.sec_feature li {
  position: relative;
  color: #82C125;
  padding-top: 6.4rem;
  padding-bottom: 7rem;
  /* 偶数のli要素のスタイル */
}
@media screen and (max-width: 949px) {
  .sec_feature li {
    padding-top: 1.4rem;
  }
}
.sec_feature li:before {
  position: absolute;
  content: "";
  top: 2.8rem;
  left: 0;
  width: 43rem;
  height: 39rem;
  background: url(../../images/feature_bg01.png) no-repeat center/contain;
}
@media screen and (max-width: 949px) {
  .sec_feature li:before {
    position: static;
  }
}
.sec_feature li:nth-child(even):before {
  left: auto;
  right: 0;
}
.sec_feature li:nth-child(even) .feature__h3 {
  left: -0.6rem;
  right: auto;
}
.sec_feature li:nth-child(2):before {
  background: url(../../images/feature_bg02.png) no-repeat center/contain;
}
.sec_feature li:nth-child(3):before {
  background: url(../../images/feature_bg03.png) no-repeat center/contain;
}
.sec_feature li:nth-child(4):before {
  background: url(../../images/feature_bg04.png) no-repeat center/contain;
}
.sec_feature .tetWrap {
  position: relative;
  width: 78%;
  margin: 0 auto;
  padding-top: 35rem;
}
@media screen and (max-width: 949px) {
  .sec_feature .tetWrap {
    width: 80%;
    padding-top: 0;
  }
}
.sec_feature .tetWrap > img {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.sec_feature .feature__h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5rem;
  right: 0;
}
@media screen and (max-width: 949px) {
  .sec_feature .feature__h3 {
    position: static;
    width: 100%;
  }
}
.sec_feature .feature__h3 span {
  writing-mode: vertical-rl;
  color: #82C125;
  font-weight: 600;
  font-size: 2.5rem;
  margin-top: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 949px) {
  .sec_feature .feature__h3 span {
    writing-mode: unset;
    font-size: 2.6rem;
    margin-top: 0;
    line-height: 1.8;
    letter-spacing: 0.17em;
    text-align: center;
  }
}
.sec_feature .feature__h3 img {
  display: block;
  width: auto;
  height: 10.2rem;
}
@media screen and (max-width: 949px) {
  .sec_feature .feature__h3 img {
    clip-path: inset(0 0 2rem 0);
    height: 8rem;
    margin-top: 1.1rem;
    margin-bottom: -0.4rem;
  }
}
.sec_feature .feature__p {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-align: justify;
}/*# sourceMappingURL=style.css.map */