@charset "UTF-8";
/*==========================================================================
  Break point
============================================================================*/
/*==========================================================================
  Font
============================================================================*/
/*Solid/900*/
/*Brand/400*/
/*==========================================================================
  color
============================================================================*/
/*text*/
/*緑*/
/*濃緑*/
/*背景*/
/*オレンヂ*/
/*==========================================================================
  root変数
============================================================================*/
:root {
  --padding: 80px;
  --padding-tb: 80px 0;
}
@media screen and (min-width: 1024px) {
  :root {
    --padding: 100px;
    --padding-tb: 100px 0;
  }
}

/*==========================================================================
  mixin
============================================================================*/
/*==========================================================================
  gradient
============================================================================*/
/*==========================================================================
  triangle
============================================================================*/
/*==========================================================================
Easing
Easingの動きが一覧でわかるチートシート https://easings.net/ja
Easingジェネレーター https://easings.co/
==========================================================================*/
/* Global box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Reset margins, paddings, and other default styles */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  font-size: 93.75%;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 100%;
  }
}
html:focus-within {
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Set base styles */
body {
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  color: #011c16;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'palt';
  overflow-x: clip;
}

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

/* Remove quotes */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}

/* Table reset */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  transition: 0.3s ease-out;
}

/*==========================================================================
 header
============================================================================*/
.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease 0s;
}
.header-inner {
  position: relative;
  padding: 15px;
}
.header .site-title {
  line-height: 0;
}
.header .site-title img {
  width: 32vw;
  max-width: 180px;
  transition: all .5s ease;
}
.header .web-reserv {
  width: 60px;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.header .web-reserv a {
  border-radius: 0 0 30px 30px;
  background: #00c09f;
  color: #fff;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 37px;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}
.header .web-reserv a::before {
  content: '';
  background-image: url("../image/icn-reservation.svg");
  background-repeat: no-repeat;
  width: 16px;
  height: 26px;
  background-size: contain;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.header .web-reserv a:hover {
  background: #00c09f;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 14px 40px;
  }
  .header-inner {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    position: fixed;
    height: 100px;
    z-index: 100;
  }
  .header.scrolled {
    height: 80px;
  }
  .header.scrolled .site-ci {
    width: min(48.72vw, 148px);
    height: min(8.72vw, 46px);
  }
  .header.scrolled .site-title img {
    width: 100%;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .header .site-ci {
    padding: 0;
  }
  .header .web-reserv {
    width: 100px;
    height: 120px;
    left: calc(100% - 100px);
  }
  .header .web-reserv a {
    font-size: 15px;
    font-family: "Zen Maru Gothic", serif;
    padding-top: 64px;
    border-radius: 0 0 60px 60px;
  }
  .header .web-reserv a::before {
    width: 21px;
    height: 32px;
    top: 30px;
  }
}

/*==========================================================================
 timeTable(診療時間表)
============================================================================*/
.timeTable {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .timeTable thead th {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .timeTable tbody th {
    font-size: 15px;
  }
}
.timeTable tr {
  border-bottom: 0.05em solid #00c09f;
}
.timeTable tr.am td {
  height: 28px;
}
.timeTable tr.am2 td {
  height: 32px;
}
.timeTable tr.pm {
  border-bottom: none;
}
.timeTable th, .timeTable td {
  padding: 4px 0;
}
@media screen and (min-width: 768px) {
  .timeTable th, .timeTable td {
    padding: 6px;
  }
}
.timeTable th:first-child {
  width: 33%;
  vertical-align: middle;
}
.timeTable th:nth-child(n+2) {
  width: calc((100% - 33%) / 6.4);
}
.timeTable th:last-child {
  width: calc(100% - ((100% - 33%) / 6.4));
}
.timeTable .open, .timeTable .close, .timeTable .kids {
  position: relative;
}
.timeTable .open::after, .timeTable .close::after, .timeTable .kids::after {
  content: '';
  position: absolute;
  width: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.timeTable .open::after {
  height: 12px;
  border-radius: 50%;
  background-color: #00c09f;
}
.timeTable .close::after {
  height: 0.1rem;
  background-color: #011c16;
}
.timeTable .kids::after {
  height: 12px;
  border-radius: 50%;
  background-color: #ff7503;
}
.timeTable .open-sat.kids::after {
  top: 16%;
  transform: translateX(-50%);
}
.timeTable .open-sat.kids::before {
  content: '※第3のみ';
  font-size: 9px;
  letter-spacing: 0;
  color: #ff7503;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.time-dr {
  margin-bottom: .4rem;
  font-size: 14px;
}
.time-dr > p span {
  font-size: 12.6px;
}
.time-dr .dr-naika span {
  color: #00c09f;
}
.time-dr .dr-kids span {
  color: #ff7503;
}

/*==========================================================================
  ！TOPのみ！の右診療時間fixed-link
============================================================================*/
.pc-timeTable-fixed {
  display: none;
}
@media screen and (min-width: 1024px) {
  .pc-timeTable-fixed {
    display: block;
    position: absolute;
    top: 100px;
    right: -13px;
    width: 480px;
    transition: all .4s ease-out;
    z-index: 9;
    transform: scale(0.95);
    pointer-events: none;
  }
}
@media screen and (min-width: 1024px) and (max-height: 439px) {
  .pc-timeTable-fixed {
    display: none;
  }
}
@media screen and (min-width: 1024px) and (min-height: 440px) and (max-height: 833px) {
  .pc-timeTable-fixed {
    top: 62%;
  }
}
@media screen and (min-width: 1024px) and (min-height: 834px) {
  .pc-timeTable-fixed {
    top: 540px;
  }
}
@media screen and (min-width: 1024px) and (min-height: 960px) {
  .pc-timeTable-fixed {
    top: 670px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .pc-timeTable-fixed {
    transform: scale(1);
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .pc-timeTable-fixed-inner {
    padding: 24px 24px 24px 0;
    border-radius: 48px 0 0 48px;
    background-color: #fff;
    box-shadow: 0 0 30px rgba(1, 28, 22, 0.25);
    pointer-events: auto;
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: repeat(3, auto);
    grid-gap: 0;
    transition: all .4s ease-out;
  }
  .pc-timeTable-fixed.hide {
    position: fixed;
    top: 200px;
  }
  .pc-timeTable-fixed.hide .timeTable {
    transform: translateX(400px);
  }
  .pc-timeTable-fixed.hide .timeTable:hover {
    transform: translateX(0);
  }
  .pc-timeTable-fixed .rec-time {
    grid-area: 1 / 1 / 4 / 2;
    display: flex;
    justify-content: center;
    pointer-events: auto;
  }
  .pc-timeTable-fixed .rec-time h2 {
    writing-mode: vertical-rl;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 500;
    font-family: "Zen Maru Gothic", serif;
    color: #00c09f;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pc-timeTable-fixed .rec-time h2 span {
    position: relative;
    padding-top: 24px;
  }
  .pc-timeTable-fixed .rec-time h2 span:before {
    content: '';
    background: url("../image/icn-time.svg") no-repeat;
    width: 18px;
    height: 18px;
    background-size: contain;
    top: 0;
    position: absolute;
  }
  .pc-timeTable-fixed table {
    grid-area: 1 / 2 / 2 / 3;
    margin-bottom: 8px;
  }
  .pc-timeTable-fixed table tr.pm {
    border-bottom: 1px solid #011c16;
  }
  .pc-timeTable-fixed .time-dr {
    grid-area: 2 / 2 / 3 / 3;
    font-size: 12px;
    text-align: left;
    line-height: 1.4;
  }
}
.pc-timeTable-fixed-address {
  grid-area: 3 / 2 / 4 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 14px;
}
.pc-timeTable-fixed-address p {
  position: relative;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-right: 14px;
}
.pc-timeTable-fixed-address p:before {
  content: '';
  background: url("../image/icn-map.svg") no-repeat;
  width: 12px;
  height: 16px;
  background-size: contain;
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}
.pc-timeTable-fixed-mapBtn {
  border: 1px solid #011c16;
  padding: 2px 10px;
  border-radius: 20px;
  color: #011c16;
  font-size: 11px;
  letter-spacing: 0;
}
.pc-timeTable-fixed-mapBtn:hover {
  background: #011c16;
  color: #fff;
}

/*==========================================================================
 FOOTER
============================================================================*/
.footer {
  background: #00c09f;
  color: #fff;
  border-radius: 40px 40px 0 0;
  padding-top: 80px;
}
.footer-inner {
  padding: 0 6vw;
}
.footer-upper {
  margin-bottom: 30px;
}
.footer-upper .clinic-prof {
  margin-bottom: 20px;
}
.footer-upper .clinic-prof .ci {
  width: 50%;
  max-width: 200px;
  position: relative;
  z-index: 1;
}
.footer-upper .clinic-prof .ci img {
  position: relative;
  z-index: 1;
}
.footer-upper .clinic-prof .address {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.05em;
  z-index: 1;
}
.footer-upper .clinic-prof .tel {
  background-color: #fff6eb;
  border-radius: 100vmax;
  margin: 20px 0;
  padding: 12px;
  text-align: center;
}
.footer-upper .clinic-prof .tel .text {
  font-weight: 500;
  color: #00c09f;
  line-height: 1.4;
}
.footer-upper .clinic-prof .tel .number a {
  font-family: "Zen Maru Gothic", serif;
  font-size: 32px;
  line-height: 1.1875;
  letter-spacing: 0em;
  font-weight: 700;
  color: #011c16;
  position: relative;
  padding-left: 26px;
}
.footer-upper .clinic-prof .tel .number a::before {
  content: '';
  background-image: url("../image/icn-tel-grn.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 18px;
  left: 0;
}
.footer-upper .clinic-prof .tel .time {
  font-size: 11px;
  line-height: 1.4545454545;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.footer-upper .clinic-time .timeTable {
  margin-bottom: 0.6rem;
}
.footer-upper .clinic-time .timeTable tr {
  border-bottom-color: #fff;
}
.footer-upper .clinic-time .timeTable tr.pm {
  border-bottom: 0.05em solid #fff;
}
.footer-upper .clinic-time .timeTable .open::after, .footer-upper .clinic-time .timeTable .close::after {
  background-color: #fff;
}
.footer-upper .clinic-time .timeTable .kids::after {
  background-color: #011c16;
}
.footer-upper .clinic-time .timeTable .kids::before {
  color: #011c16;
}
.footer-upper .clinic-time .timeTable .open-sat span {
  margin-bottom: 10px;
}
.footer-upper .clinic-time .time-dr .dr-naika span {
  color: #fff;
}
.footer-upper .clinic-time .time-dr .dr-kids span {
  color: #011c16;
}
.footer-upper .clinic-time .close-info {
  font-size: min(3.59vw, 15px);
  font-weight: 500;
  line-height: 2.4;
}
.footer-upper .google-map {
  margin-top: 20px;
}
.footer-upper .google-map iframe {
  width: 100%;
  height: 260px;
}
.footer-middle {
  background: #00997f;
  padding: 16px 0;
}
.footer-middle-inner {
  display: flex;
  flex-direction: column;
}
.footer-middle .footer-nav {
  width: 100%;
  text-align: center;
}
.footer-middle .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-middle .footer-nav ul a {
  color: #fff;
  font-size: 13px;
  line-height: 1.3846153846;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.footer-middle .footer-nav-item a {
  padding: 0 20px;
  position: relative;
}
.footer-middle .footer-nav-item a::after {
  content: '';
  background: #fff;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.footer-middle .footer-nav-item a:hover {
  color: #00c09f;
}
.footer-middle .footer-nav-item:last-child a::after {
  display: none;
}
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom .footer-link-item a {
  padding: 0 6px;
}
.footer-bottom .footer-link-item a:hover {
  text-decoration: underline;
}
.footer .copyright {
  color: #fff6eb;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-upper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .footer-upper > div {
    width: 47%;
  }
  .footer-upper .google-map {
    margin-top: 0;
  }
  .footer-upper .google-map iframe {
    height: 460px;
  }
  .footer-upper .clinic-prof {
    margin-bottom: 0;
  }
  .footer-upper .clinic-prof .ci::after {
    top: -6px;
    right: -90px;
  }
  .footer-upper .clinic-prof .address {
    letter-spacing: 0.1em;
  }
  .footer-upper .clinic-time .timeTable tr.am td {
    height: 38px;
  }
  .footer-upper .clinic-time .timeTable tr.am2 td {
    height: 36px;
  }
  .footer-middle-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-middle .tel {
    width: 31.0909%;
    margin-bottom: 0;
  }
  .footer-middle .reservation {
    width: 68.90909%;
    display: flex;
    justify-content: space-between;
  }
  .footer-middle .reservation p {
    width: 35.3562%;
  }
  .footer-middle .reservation .footer-btn {
    margin-bottom: 14px;
    width: 64.64379%;
  }
  .footer-middle .reservation .btn-f {
    padding: 14px 0 14px 30px;
  }
}
@media screen and (min-width: 1280px) {
  .footer-upper .block1 {
    width: 460px;
  }
  .footer-upper .block2 {
    width: 570px;
  }
}

/*==========================================================================
 PAGE TOP
============================================================================*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #00c09f;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: #00c09f;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
}
#page-top a:hover {
  background: #00c09f;
  color: #fff;
}
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@media screen and (min-width: 768px) {
  #page-top a {
    width: 54px;
    height: 54px;
  }
}

/*　上に上がる動き　*/
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/*==========================================================================
 navigation
============================================================================*/
.nav {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 80px 0;
  background: #00997f;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .nav {
    padding: 60px;
  }
}
.nav-list {
  padding: 0 40px;
  margin-bottom: 40px;
}
.nav-item a {
  display: block;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .nav-item a {
    padding: 20px 0;
  }
}
.nav-item:last-child a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.nav .spNav-info {
  margin: 20px;
  padding: 20px;
  text-align: center;
  background: #fff6eb;
  border-radius: 10px;
}
.nav .spNav-info p {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.nav .spNav-info .telNo a {
  font-family: "Zen Maru Gothic", serif;
  font-size: 28px;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  font-weight: 700;
  background: #00c09f;
  color: #fff;
  margin: 6px 0;
  border-radius: 50px;
  display: block;
}
.nav .spNav-info .telTime span {
  font-size: 13px;
}
.nav .spNav-logo {
  margin-bottom: 6px;
}
.nav .spNav-logo img {
  max-width: 180px;
}
.nav .target-nav {
  display: none;
}

@media screen and (min-width: 1024px) {
  .nav {
    position: relative;
    right: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: none;
    padding: 0;
    overflow: visible;
  }
  .nav-list {
    display: flex;
    padding: 0;
    margin: 0;
    font-size: 15px;
  }
  .nav-item {
    position: relative;
    padding: 0 18px;
  }
  .nav-item::before {
    content: '';
    background: #011c16;
    width: 1px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    position: absolute;
  }
  .nav-item:first-child::before {
    display: none;
  }
  .nav-item:last-child a {
    border-bottom: none;
  }
  .nav-item a {
    color: #011c16;
    border-top: none;
    padding: 10px 0;
    transition: .2s ease;
  }
  .nav-item:hover a {
    color: #00997f;
  }
  .nav-item:hover .nav-item-child {
    visibility: visible;
    opacity: 1;
    box-shadow: 0 0 10px 4px rgba(1, 28, 22, 0.1);
  }
  .nav-item-child {
    position: absolute;
    top: 42px;
    left: 0;
    width: 240px;
    background: #fff;
    border-radius: 10px;
    transition: all .2s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    padding: 14px;
    margin-top: 0;
  }
  .nav-item-child-list {
    padding-left: 4px;
  }
  .nav-item-child-list a {
    color: #011c16 !important;
    padding: 16px;
  }
  .nav-item-child-list a::before {
    display: none;
  }
  .nav-item-child-list a:hover {
    background: #00c09f;
    border-radius: 6px;
  }
  .nav-item-child-list a:hover::after {
    content: '';
    background: #00997f;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -3px;
    transform: translateY(-50%);
  }
  .nav .spNav-info {
    display: none;
  }
  .nav .target-nav {
    display: flex;
    padding-right: 24px;
  }
  .nav .target-nav .header-tel {
    color: #00997f;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
  }
  .nav .target-nav .header-tel::before {
    content: '';
    background-image: url("../image/icn-tel-grn.svg");
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .nav .target-nav .header-tel span a {
    color: #00997f;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    font-size: 20px;
    padding-left: 4px;
  }
}
.navToggle {
  position: fixed;
  right: 14px;
  right: 4.375vw;
  top: 14px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  z-index: 999;
  background: #fff;
  border-radius: 6px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .navToggle {
    right: 15px;
  }
}
.navToggle:after {
  content: 'menu';
  position: absolute;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
  color: #011c16;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.navToggle span {
  position: absolute;
  left: 15px;
  width: 22px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}
.navToggle span:nth-of-type(1) {
  top: 16px;
}
.navToggle span:nth-of-type(2) {
  top: 24px;
}
@media screen and (min-width: 1024px) {
  .navToggle {
    display: none;
  }
}

.bg-layer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}

.nav-open .nav {
  right: 0;
}
.nav-open .bg-layer {
  opacity: .8;
  visibility: visible;
}
.nav-open .navToggle:after {
  content: 'close';
}
.nav-open .navToggle span {
  top: 20px;
}
.nav-open .navToggle span:nth-of-type(1) {
  transform: rotate(45deg);
}
.nav-open .navToggle span:nth-of-type(2) {
  transform: rotate(-45deg);
}

/*==========================================================================
 common pats
============================================================================*/
.main {
  position: relative;
}

.inner {
  width: 100%;
  max-width: 1140px;
  padding: 0 4vw;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .inner {
    padding: 0 2vw;
  }
}
@media screen and (min-width: 1280px) {
  .inner {
    max-width: 1100px;
    padding: 0;
  }
}

.spNone {
  display: none;
}
@media screen and (min-width: 768px) {
  .spNone {
    display: block;
  }
}

@media screen and (min-width: 1280px) {
  .pcNone {
    display: none;
  }
}

.pcblc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pcblc {
    display: block;
  }
}

h2.all-title {
  font-size: min(5.87vw, 28px);
  font-weight: 600;
  color: #00c09f;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
h2.all-title .jp {
  position: relative;
  padding-left: 20px;
}
h2.all-title .jp::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 5px solid #00c09f;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(calc(-50% + 3px));
}
h2.all-title .eng {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  color: #011c16;
  padding-left: 20px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
h4::before, h4::after {
  content: '';
  position: absolute;
  height: 0.05rem;
  bottom: 0;
  left: 0;
}
h4::after {
  width: 100%;
  background-color: rgba(1, 28, 22, 0.3);
}
h4::before {
  width: 20%;
  background-color: #00c09f;
  z-index: 1;
}

.all-text p {
  margin-bottom: 1rem;
}
.all-text p:last-of-type {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

.btnwrap {
  display: inline-block;
}
.btnwrap .btn {
  display: inline-block;
  padding: 12px 60px 12px 40px;
  border-radius: 30px;
  box-shadow: 0 0 10px -5px rgba(1, 28, 22, 0.3);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  background-color: #fff;
  color: #00c09f;
}
.btnwrap .btn::after {
  content: '';
  background-image: url("../image/arrow-grn.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  transition: all .5s ease-in-out;
}
.btnwrap .btn:hover::after {
  transform: translate(24px, -50%);
}

.list-item li {
  position: relative;
  padding-left: 10px;
}
.list-item li::before {
  content: '';
  background-color: #00c09f;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/*==========================================================================
 KV
============================================================================*/
.kv {
  position: relative;
}
.kv::after {
  content: '';
  background-color: #fff6eb;
  width: 100%;
  height: 140px;
  position: absolute;
  bottom: -40px;
  left: 0;
}
.kv #slider {
  width: 100%;
  height: calc(100vh - 140px);
  min-height: 512px;
  max-height: 840px;
  border-radius: 30px;
  position: relative;
}
.kv-inner {
  margin: 0 4vw;
  position: relative;
  z-index: 1;
}
.kv-catch {
  position: absolute;
  bottom: 10vw;
  left: 10vw;
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  text-shadow: 0px 0px 4px rgba(255, 117, 3, 0.5), 0px 0px 5px rgba(255, 117, 3, 0.5);
}
.kv-catch .catch {
  font-size: 22px;
  line-height: 1.9090909091;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.kv-catch .lead {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .kv-inner::before {
    width: 278px;
    height: 284px;
    bottom: -180px;
    left: -70px;
  }
  .kv-inner::after {
    width: 186px;
    height: 324px;
    bottom: -104px;
    left: -68px;
  }
  .kv-catch {
    bottom: 6vw;
    left: 4vw;
  }
  .kv-catch .catch {
    font-size: 32px;
  }
  .kv-catch .lead {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .kv {
    padding-top: 100px;
  }
  .kv-catch {
    width: calc(100% - 456px);
  }
  .kv-catch .catch {
    line-height: 1.6;
  }
}
@media screen and (min-width: 1280px) {
  .kv-inner::before {
    width: 288px;
    height: 304px;
    bottom: -200px;
  }
  .kv-inner::after {
    width: 206px;
    height: 344px;
    bottom: -100px;
    left: -70px;
  }
  .kv-catch {
    left: 6vw;
  }
  .kv-catch .catch {
    font-size: 34px;
  }
  .kv-catch .lead {
    font-size: 24px;
  }
}

/*==========================================================================
 NEWS
============================================================================*/
.news {
  padding: var(--padding-tb);
  background-color: #fff6eb;
}
.news-inner {
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.news-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.news-title .all-title {
  margin-bottom: 0;
}
.news-item {
  border-bottom: 1px solid rgba(1, 28, 22, 0.3);
  padding: 16px 30px 16px 0;
}
.news-item a {
  color: #011c16;
  font-weight: 500;
  display: block;
  position: relative;
  transform: translateX(0);
}
.news-item a::after {
  content: '';
  background-image: url("../image/arrow-grn.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.news-item a .news-time {
  font-size: min(3.73vw, 15px);
  letter-spacing: 0;
}
.news-item a .news-headline {
  line-height: 1.6;
}
.news-item a:hover {
  transform: translateX(14px);
}
@media screen and (min-width: 1024px) {
  .news-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .news-title {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 27.272727%;
  }
  .news-title .btnwrap {
    margin-top: 40px;
  }
  .news-list {
    width: 72.727272%;
  }
}

/*==========================================================================
 MAIN -main contents-//ここの内容が変わっていく予定
============================================================================*/
.main section {
  padding: var(--padding-tb);
}
.main .multi-column {
  display: flex;
  flex-direction: column;
}
.main .notes {
  font-size: 12.9px;
  line-height: 1.6;
  font-weight: 500;
  color: #ff7503;
  position: relative;
}
.main .notes::before {
  content: '※';
}
.main .all-catch {
  font-family: "Zen Maru Gothic", serif;
  font-size: min(5.87vw, 30px);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}
.main .content2 {
  background-color: #fff6eb;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.icn-content {
  margin-bottom: 1rem;
}
.icn-content-list {
  display: flex;
  flex-direction: column;
}
.icn-content-list > div:not(:last-of-type) {
  margin-bottom: 1.4rem;
}
.icn-content-item {
  background-color: #fff;
  padding: 1.4rem;
  box-shadow: 0 0 16px -8px rgba(0, 153, 127, 0.6);
  border-radius: min(6.39vw, 26px);
  display: flex;
  align-items: center;
}
.icn-content-item .icn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  width: calc(48px + 2rem);
}
.icn-content-item .icn img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  font-family: "object-fit: contain", sans-serif;
}
.icn-content-item .body {
  width: calc(100% - calc(48px + 2rem));
}
.icn-content-item .subject {
  color: #00c09f;
  font-size: 18px;
  font-weight: 700;
}
.icn-content-item .lead {
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  font-size: 16.2px;
}
@media screen and (min-width: 768px) {
  .icn-content-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .icn-content-list > div {
    margin-bottom: 1.4rem;
  }
  .icn-content-item {
    width: calc(100% / 2 - 20px);
    flex-direction: column;
    padding: 2rem;
  }
  .icn-content-item .icn {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }
  .icn-content-item .body {
    width: 100%;
  }
  .icn-content-item .subject, .icn-content-item .lead {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .icn-content-list {
    justify-content: center;
  }
  .icn-content-item {
    width: calc(100% / 3 - 1rem);
    margin: 0 .5rem 1.4rem;
  }
}

/*=============================================================
 個別設定
=============================================================*/
.content1 .multi-column {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .content1 .multi-column {
    flex-direction: row;
    justify-content: space-between;
  }
  .content1 .multi-column > div {
    width: 50%;
  }
  .content1 .multi-column .column1 {
    padding-right: 1rem;
  }
  .content1 .multi-column .column2 {
    align-self: center;
  }
}
.content1 .exinfo {
  background-color: #fff6eb;
  border-radius: 1rem;
  padding: min(5.13vw, 40px);
}
.content1 .exinfo .title {
  font-size: min(4.62vw, 20px);
  font-weight: 600;
  color: #ff7503;
  text-align: center;
}
.content1 .exinfo .text-ct {
  text-align: center;
}
.content1 .exinfo .text-block {
  margin-top: 1rem;
}
.content1 .exinfo .text01 {
  border-bottom: 0.05rem solid #011c16;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.content1 .exinfo .notes {
  color: #011c16;
}

.content2 .grid-column {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(3, auto);
  grid-gap: 0;
}
.content2 .grid-column .grid1 {
  grid-area: 1 / 1 / 2 / 2;
}
.content2 .grid-column .grid3 {
  grid-area: 2 / 1 / 3 / 2;
}
.content2 .grid-column .grid2 {
  grid-area: 3 / 1 / 4 / 2;
}
.content2 .list-item-title {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.content2 .list-item-title::before, .content2 .list-item-title::after {
  content: '';
  position: absolute;
  height: 0.05rem;
  bottom: 0;
  left: 0;
}
.content2 .list-item-title::after {
  width: 100%;
  background-color: rgba(1, 28, 22, 0.3);
}
.content2 .list-item-title::before {
  width: 20%;
  background-color: #00c09f;
  z-index: 1;
}
.content2 .list-item-item {
  position: relative;
  padding-left: 10px;
}
.content2 .list-item-item::before {
  content: '';
  background-color: #00c09f;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.content2 .notes::before {
  display: none;
}
.content2 .timeTable {
  margin-bottom: 4px;
}
.content2 .timeTable table {
  border: 0.08rem solid #011c16;
}
.content2 .timeTable thead tr {
  background-color: #00c09f;
  color: #fff;
}
.content2 .timeTable thead th {
  border-right: 0.05rem solid #011c16;
}
.content2 .timeTable tbody {
  background-color: #fff;
}
.content2 .timeTable tbody th, .content2 .timeTable tbody td {
  border-right: 0.05rem solid #011c16;
}
.content2 .timeTable tbody .am td:last-child {
  border-right: none;
}
.content2 .timeTable tr {
  border-bottom: 0.08rem solid #011c16;
}
.content2 .timeTable th, .content2 .timeTable td {
  padding: 8px 0;
}
@media screen and (min-width: 768px) {
  .content2 .timeTable tr.am td {
    height: 42px;
  }
  .content2 .timeTable tr.am2 td {
    height: 40px;
  }
  .content2 .timeTable .open-sat.kids::before {
    font-size: 11px;
  }
}
@media screen and (min-width: 1024px) {
  .content2 .timeTable {
    margin-bottom: 8px;
  }
  .content2 .timeTable th, .content2 .timeTable td {
    padding: 12px 0;
  }
}
.content2 .grid3 {
  margin-bottom: 2rem;
}
.content2 .grid3 .closedays {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.4rem;
}
.content2 .grid3 li {
  position: relative;
  padding-left: 10px;
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.7;
}
.content2 .grid3 li::before {
  content: '';
  background-color: #011c16;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 10px;
  left: 0;
}
.content2 .grid3 .illust-map {
  display: flex;
  flex-direction: column;
}
.content2 .grid3 .illust-map .p-map {
  width: 100%;
  overflow: hidden;
  border: 1px solid #011c16;
  line-height: 0;
  margin: 0.5rem 0;
}
.content2 .grid3 .illust-map .p-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover", sans-serif;
}
@media screen and (min-width: 768px) {
  .content2 .grid3 .illust-map {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .content2 .grid3 .illust-map .p-map {
    width: 50%;
    margin-right: 2rem;
  }
  .content2 .grid3 .illust-map ul {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .content2 .grid-column {
    grid-template-columns: 1fr 62.73%;
    grid-template-rows: auto 1fr;
  }
  .content2 .grid-column .grid3 {
    grid-area: 1 / 2 / 3 / 3;
    margin-bottom: 0;
  }
  .content2 .grid-column .grid2 {
    grid-area: 2 / 1 / 3 / 2;
    padding-right: 4rem;
  }
}

.content3 .grid-column {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(4, auto);
  grid-column-gap: 0;
  grid-row-gap: 1.2rem;
  margin-bottom: 2rem;
}
.content3 .grid-column .grid1 {
  grid-area: 1 / 1 / 2 / 2;
}
.content3 .grid-column .grid2 {
  grid-area: 2 / 1 / 3 / 2;
}
.content3 .grid-column .grid3 {
  grid-area: 3 / 1 / 4 / 2;
}
.content3 .grid-column .grid4 {
  grid-area: 4 / 1 / 5 / 2;
}
.content3 .grid-column .about .list-item {
  margin-bottom: 1rem;
  font-size: 14px;
}
.content3 .grid-column .grid3 .figure {
  aspect-ratio: 5 / 3.4;
  border-radius: 20px;
  overflow: hidden;
}
.content3 .grid-column .grid3 .figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover", sans-serif;
}
.content3 .bg-block {
  background-color: #fff6eb;
  border-radius: 1rem;
  padding: min(5.13vw, 40px);
}
@media screen and (min-width: 1024px) {
  .content3 .grid-column {
    grid-template-columns: 1fr 30.91%;
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 4rem;
  }
  .content3 .grid-column .grid1 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .content3 .grid-column .grid2 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .content3 .grid-column .grid4 {
    grid-area: 3 / 1 / 4 / 2;
  }
  .content3 .grid-column .grid3 {
    grid-area: 1 / 2 / 4 / 3;
  }
  .content3 .grid-column .grid3 {
    align-self: center;
  }
  .content3 .grid-column .grid3 .figure {
    aspect-ratio: 1;
    max-width: 340px;
    max-height: 340px;
  }
}

.name {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
}
.name span {
  font-size: 17px;
}

/*===============================================
 breadcrumb
=================================================*/
.breadcrumb {
  display: none;
  background-color: #fff;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    display: block;
  }
  .breadcrumb-list {
    display: flex;
    font-size: 12px;
  }
  .breadcrumb-item {
    position: relative;
    padding: 0 12px;
  }
  .breadcrumb-item:not(:last-child)::after {
    content: '》';
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
  }
  .breadcrumb-item a {
    color: #00c09f;
  }
}

/*===============================================
 サブページ共通
=================================================*/
.page-main {
  padding: var(--padding-tb);
}

/*===============================================
 お知らせ一覧 - archive -
=================================================*/
.head-wrap .page-head {
  background-color: #fff6eb;
}
.head-wrap .page-head-inner {
  padding-top: min(8vw, 60px);
  padding-bottom: min(8vw, 60px);
}
.head-wrap .page-head-title {
  font-size: min(5.87vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  padding: .3rem 0 .5rem 20px;
  position: relative;
}
.head-wrap .page-head-title::before {
  content: '';
  background-color: #00c09f;
  width: 3px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .head-wrap {
    padding-top: 100px;
  }
}

.page-main .multi-column {
  display: flex;
  flex-direction: column;
}
.page-main .multi-column .main-column {
  margin-bottom: 80px;
}
.page-main .multi-column .main-column .article-list {
  margin-bottom: 4rem;
}
.page-main .multi-column .main-column .article-item {
  color: #011c16;
  border-bottom: 0.05rem dotted #011c16;
  display: block;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.page-main .multi-column .main-column .article-item-inner {
  position: relative;
  padding-right: 3rem;
  transition: transform 0.4s ease;
}
.page-main .multi-column .main-column .article-item-inner::after {
  content: '';
  background-image: url("../image/arrow-grn.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 14px;
  height: 8px;
  top: 50%;
  right: 20px;
  transform: rotate(0);
  transition: all .3s ease;
}
.page-main .multi-column .main-column .article-item:hover .article-item-inner {
  transform: translateX(20px);
}
.page-main .multi-column .main-column .article-item:hover .article-item-inner::after {
  transform: rotate(360deg);
}
.page-main .multi-column .main-column .article-item:hover .article-title {
  color: #00c09f;
}
.page-main .multi-column .main-column .article-title {
  font-size: min(4vw, 18px);
  font-weight: 600;
  transition: .4s .2s;
}
.page-main .multi-column .main-column .article time {
  font-size: 12px;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .page-main .multi-column {
    flex-direction: row;
    justify-content: space-between;
  }
  .page-main .multi-column .main-column {
    width: min(67.27vw, 740px);
    margin-bottom: 0;
  }
}

aside > section {
  margin-bottom: 4rem;
}
aside .widget-title {
  font-size: min(4.53vw, 20px);
  font-weight: 600;
  color: #00c09f;
  position: relative;
  padding-left: 18px;
  margin-bottom: .8rem;
}
aside .widget-title::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 4px solid #00c09f;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(calc(-50% + 1px));
}
aside .recent-posts-item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 0.05rem dashed #011c16;
}
aside .recent-posts-item a {
  color: #011c16;
  font-weight: 500;
}
aside .recent-posts-item a:hover {
  color: #00c09f;
}
aside .recent-posts-item time {
  font-size: 13px;
  letter-spacing: 0;
}
aside .recent-posts-item .post-title {
  font-size: 14px;
  line-height: 1.6;
}
aside .archive-list-item {
  position: relative;
  padding-left: 12px;
}
aside .archive-list-item::before {
  content: '';
  background-color: #00c09f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
aside .archive-list-item a {
  color: #011c16;
  font-size: 14px;
  font-weight: 500;
}
aside .archive-list-item a:hover {
  color: #00c09f;
}
@media screen and (min-width: 1024px) {
  aside {
    width: min(25.45vw, 280px);
  }
}

/*===============================================
 pagination
=================================================*/
.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers {
  display: flex;
}
.pagination .page-numbers-item {
  width: min(10.13vw, 48px);
  height: min(10.13vw, 48px);
  margin: 0 2px;
}
.pagination .page-numbers-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #00c09f;
  font-weight: 600;
  font-size: 14px;
  color: #00c09f;
}
.pagination .page-numbers-item a span {
  position: relative;
}
.pagination .page-numbers-item a:hover {
  background-color: #00c09f;
  color: #fff;
}
.pagination .page-numbers-item.current a {
  background-color: #00c09f;
  color: #fff;
}
.pagination .page-numbers-item.prev span::before, .pagination .page-numbers-item.next span::before {
  content: '';
  background-image: url("../image/arrow-grn.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 14px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.pagination .page-numbers-item.prev span::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.pagination .page-numbers-item.prev:hover span::before, .pagination .page-numbers-item.next:hover span::before {
  background-image: url("../image/arrow-wht.svg");
  transition-delay: .2s;
}

/*===============================================
 お知らせページ - post -
=================================================*/
.post-page .head-wrap .page-head-title {
  font-size: min(4.1vw, 22px);
  margin-bottom: 0.5rem;
}
.post-page .head-wrap .page-head time {
  font-size: 12px;
  letter-spacing: 0;
}

.post-page .main-content {
  margin-bottom: 80px;
}
.post-page .main-content p:not(:last-of-type) {
  margin-bottom: 1.8rem;
}
.post-page .main-content a {
  color: #00997f;
  text-decoration: underline;
  font-weight: 500;
}
.post-page .main-content a:hover {
  text-decoration: none;
}
.post-page .main-content ul {
  margin-bottom: 1.8rem;
}
.post-page .main-content ul li {
  position: relative;
  padding-left: 14px;
}
.post-page .main-content ul li::before {
  content: '';
  background-color: #00c09f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.post-page .main-content h4 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
}
.post-page .main-content h4::before, .post-page .main-content h4::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.05rem;
  bottom: 0;
  left: 0;
  background-color: rgba(1, 28, 22, 0.3);
}
.post-page .main-content h4::before {
  background-color: #00c09f;
  width: 20%;
  height: 0.1rem;
}
.post-page .main-content h5 {
  display: inline-block;
  background-color: #011c16;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
.post-page .main-content img {
  width: 100%;
  height: auto;
  margin: 1rem 0;
}
.post-page .main-content h6 {
  font-size: 16px;
  color: #00c09f;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 1024px) {
  .post-page .main-content .size-full {
    width: 100%;
  }
  .post-page .main-content .size-medium {
    width: 48%;
  }
  .post-page .main-content .size-thumbnail {
    width: 28%;
  }
  .post-page .main-content .alignleft {
    float: left;
    margin-right: 1rem;
  }
  .post-page .main-content .alignright {
    float: right;
    margin-left: 1rem;
  }
  .post-page .main-content .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.post-page .post-navigation .nav-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  border-top: 0.05rem solid rgba(1, 28, 22, 0.3);
  border-bottom: 0.05rem solid rgba(1, 28, 22, 0.3);
  align-items: center;
}
.post-page .post-navigation .nav-link a {
  color: #011c16;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}
.post-page .post-navigation .nav-link a:hover {
  background-color: #fff6eb;
}
.post-page .post-navigation .nav-link::after {
  content: '';
  width: 0.05rem;
  height: calc(100% - 40px);
  background-color: rgba(1, 28, 22, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.post-page .post-navigation .nav-prev, .post-page .post-navigation .nav-next {
  line-height: 1.4;
  position: relative;
}
.post-page .post-navigation .nav-prev::before, .post-page .post-navigation .nav-next::before {
  content: '';
  background-image: url("../image/arrow-grn.svg");
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-position: center;
  background-color: #011c16;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.post-page .post-navigation .nav-prev a {
  padding: 20px 15px 20px 40px;
}
.post-page .post-navigation .nav-prev::before {
  transform: translateY(-50%) rotate(180deg);
  left: 8px;
}
.post-page .post-navigation .nav-next a {
  padding: 20px 40px 20px 15px;
}
.post-page .post-navigation .nav-next::before {
  right: 8px;
}
@media screen and (min-width: 768px) {
  .post-page .post-navigation .nav-prev a {
    padding: 26px 15px 26px 40px;
  }
  .post-page .post-navigation .nav-next a {
    padding: 26px 40px 26px 15px;
  }
}
