@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: #002a23;
  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: 48vw;
  max-width: 240px;
  transition: all .4s ease-in-out;
}
.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: #d80a30;
  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: #ee7800;
}
@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-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;
  }
}
@media screen and (min-width: 1280px) {
  .header .site-title img {
    width: 320px;
    max-width: 320px;
  }
  .header.scrolled .site-title img {
    width: 280px;
    max-width: 280px;
  }
}

/*==========================================================================
 timeTable(診療時間表)
============================================================================*/
.timeTable {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .timeTable thead th {
    font-size: 15px;
  }
}
.timeTable tbody th span {
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .timeTable tbody th {
    font-size: 15px;
  }
}
.timeTable tr {
  border-bottom: 0.05em solid #ee7800;
}
.timeTable tr.pm {
  border-bottom: none;
}
.timeTable th, .timeTable td {
  line-height: 1.3;
  padding: 4px 0;
}
@media screen and (min-width: 768px) {
  .timeTable th, .timeTable td {
    padding: 6px;
  }
}
.timeTable .open, .timeTable .close {
  position: relative;
}
.timeTable .open:after, .timeTable .close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.timeTable .open:after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ee7800;
}
.timeTable .close:after {
  width: 12px;
  height: 2px;
  background: #002a23;
}

/*==========================================================================
  ！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: 700px;
  }
}
@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(0, 42, 35, 0.25);
    pointer-events: auto;
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: repeat(2, 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 / 3 / 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: #ee7800;
  }
  .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-oj.svg") no-repeat;
    width: 18px;
    height: 18px;
    background-size: contain;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    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 #002a23;
  }
}
.pc-timeTable-fixed-address {
  grid-area: 2 / 2 / 3 / 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 #002a23;
  padding: 2px 10px;
  border-radius: 20px;
  color: #002a23;
  font-size: 11px;
  letter-spacing: 0;
}
.pc-timeTable-fixed-mapBtn:hover {
  background: #002a23;
  color: #fff;
}

/*==========================================================================
 FOOTER
============================================================================*/
.footer {
  background: #d80a30;
  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: 80%;
  max-width: 320px;
  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: #fef6e5;
  border-radius: 100vmax;
  margin: 20px 0;
  padding: 12px;
  text-align: center;
}
.footer-upper .clinic-prof .tel .text {
  font-weight: 500;
  color: #d80a30;
  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: #002a23;
  position: relative;
  padding-left: 26px;
}
.footer-upper .clinic-prof .tel .number a::before {
  content: '';
  background-image: url("../image/icn-tel-wht.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 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: #fff;
}
.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: #ee7800;
  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: #002a23;
}
.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 {
  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: 386px;
  }
  .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-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.7);
  border: 1px solid #d80a30;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: #d80a30;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
}
#page-top a:hover {
  background: #d80a30;
  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: #FFC0CB;
  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(216, 10, 48, 0.2);
  color: #002a23;
  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(216, 10, 48, 0.2);
}
.nav .spNav-info {
  margin: 20px;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  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: #ee7800;
  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: 240px;
}
.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 16px;
  }
  .nav-item::before {
    content: '';
    background: #002a23;
    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: #002a23;
    border-top: none;
    padding: 10px 0;
    transition: .2s ease;
  }
  .nav-item:hover a {
    color: #ee7800;
  }
  .nav-item:hover .nav-item-child {
    visibility: visible;
    opacity: 1;
    box-shadow: 0 0 10px 4px rgba(0, 42, 35, 0.1);
  }
  .nav .spNav-info {
    display: none;
  }
  .nav .target-nav {
    display: flex;
    padding-right: 24px;
  }
  .nav .target-nav .header-tel {
    color: #ee7800;
    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-oj.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: #ee7800;
    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: #002a23;
  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;
  }
}

h2.all-title {
  font-size: min(5.87vw, 28px);
  font-weight: 600;
  color: #d80a30;
  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 #d80a30;
  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: #002a23;
  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(0, 42, 35, 0.3);
}
h4::before {
  width: 20%;
  background-color: #d80a30;
  z-index: 1;
}

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

.btnwrap {
  display: inline-block;
}
.btnwrap .btn {
  display: inline-block;
  padding: 12px 60px 12px 40px;
  border-radius: 30px;
  box-shadow: 0 0 10px -5px rgba(0, 42, 35, 0.3);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  background-color: #fff;
  color: #d80a30;
}
.btnwrap .btn::after {
  content: '';
  background-image: url("../image/arrow-red.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%);
}

/*==========================================================================
 KV
============================================================================*/
.kv {
  position: relative;
}
.kv::after {
  content: '';
  background-color: #fef6e5;
  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 .slider.main-kv {
  width: 100%;
  height: calc(100vh - 140px);
  min-height: 512px;
  max-height: 840px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.kv .slider.main-kv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover", sans-serif;
}
.kv-inner {
  margin: 0 4vw;
  position: relative;
  z-index: 1;
}
.kv-inner::before, .kv-inner::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
.kv-inner::before {
  background-image: url("../image/common/leaf-top-b.webp");
  width: 198px;
  height: 204px;
  bottom: -120px;
  left: -60px;
}
.kv-inner::after {
  background-image: url("../image/common/leaf-top-f.webp");
  width: 116px;
  height: 254px;
  bottom: -116px;
  left: -38px;
  z-index: 1;
}
.kv-catch {
  position: absolute;
  bottom: 10vw;
  left: 10vw;
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  text-shadow: 1px 1px 5px rgba(216, 10, 48, 0.5), -1px -1px 5px rgba(216, 10, 48, 0.5);
}
.kv-catch .catch {
  font-size: 22px;
  line-height: 1.6363636364;
  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;
  }
}
@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: 42px;
  }
  .kv-catch .lead {
    font-size: 24px;
  }
}

/*==========================================================================
 NEWS
============================================================================*/
.news {
  padding: var(--padding-tb);
  background-color: #fef6e5;
}
.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(0, 42, 35, 0.3);
  padding: 16px 30px 16px 0;
}
.news-item a {
  color: #002a23;
  font-weight: 500;
  display: block;
  position: relative;
  transform: translateX(0);
}
.news-item a::after {
  content: '';
  background-image: url("../image/arrow-red.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: #d80a30;
  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: #fef6e5;
  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(216, 10, 48, 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: #ee7800;
  font-size: 18px;
  font-weight: 700;
}
.icn-content-item .lead {
  font-weight: 600;
  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-item {
    width: calc(100% / 4 - 1rem);
  }
}

/*=============================================================
 個別設定
=============================================================*/
.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;
  }
}

.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(0, 42, 35, 0.3);
}
.content2 .list-item-title::before {
  width: 20%;
  background-color: #d80a30;
  z-index: 1;
}
.content2 .list-item-item {
  position: relative;
  padding-left: 10px;
}
.content2 .list-item-item::before {
  content: '';
  background-color: #d80a30;
  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 #002a23;
}
.content2 .timeTable thead tr {
  background-color: #ee7800;
  color: #fff;
}
.content2 .timeTable thead th {
  border-right: 0.05rem solid #002a23;
}
.content2 .timeTable thead th:first-of-type {
  width: 38%;
}
.content2 .timeTable thead th:nth-of-type(n+2) {
  width: calc((100% - 38%) / 7);
}
.content2 .timeTable tbody th, .content2 .timeTable tbody td {
  border-right: 0.05rem solid #002a23;
}
.content2 .timeTable tr {
  border-bottom: 0.08rem solid #002a23;
}
.content2 .timeTable th, .content2 .timeTable td {
  padding: 8px 0;
}
@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 .exinfo li {
  position: relative;
  padding-left: 10px;
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.7;
}
.content2 .grid3 .exinfo li::before {
  content: '';
  background-color: #002a23;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 10px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .content2 .grid-column {
    grid-template-columns: 1fr 62.73%;
    grid-template-rows: repeat(2, auto);
  }
  .content2 .grid-column .grid3 {
    grid-area: 1 / 2 / 3 / 3;
  }
  .content2 .grid-column .grid2 {
    grid-area: 2 / 1 / 3 / 2;
    padding-right: 4rem;
  }
}

.content3 .multi-column {
  margin-bottom: 4rem;
}
.content3 .multi-column .column1 {
  margin-bottom: 2rem;
}
.content3 .multi-column .name {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
}
.content3 .multi-column .name span {
  font-size: 17px;
}
.content3 .multi-column .figure {
  aspect-ratio: 5 / 3.4;
  border-radius: 20px;
  overflow: hidden;
}
.content3 .multi-column .figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover", sans-serif;
}
@media screen and (min-width: 1024px) {
  .content3 .multi-column {
    flex-direction: row;
  }
  .content3 .multi-column .column1 {
    width: calc(100% - 30.91%);
    padding-right: 4rem;
    margin-bottom: 0;
  }
  .content3 .multi-column .column2 {
    width: 30.91%;
    display: flex;
    align-items: center;
  }
  .content3 .multi-column .figure {
    aspect-ratio: 1;
    max-width: 340px;
    max-height: 340px;
  }
}
.content3 .block {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 0.05rem solid #002a23;
}
.content3 .block-item {
  display: flex;
}
.content3 .block-item dt {
  width: 84px;
  white-space: nowrap;
}
.content3 .block-item dd {
  width: calc(100% - 84px);
}
@media screen and (min-width: 1024px) {
  .content3 .block-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2列 */
    grid-template-rows: repeat(2, auto);
    /* 2行 */
    gap: 0 20px;
  }
  .content3 .block-item {
    width: 100%;
    box-sizing: border-box;
  }
}

.block-link {
  display: flex;
  flex-direction: column;
}
.block-link .link-pdf {
  margin-bottom: 1.2rem;
  width: 100%;
}
.block-link .link-pdf .btn {
  border-radius: 100vmax;
  border: 1px solid #d80a30;
  color: #002a23;
  width: 100%;
}
.block-link .link-pdf .btn::after {
  background-image: url("../image/arrow-red.svg");
}
@media screen and (min-width: 768px) {
  .block-link {
    flex-direction: row;
    justify-content: center;
  }
  .block-link .link-pdf {
    width: auto;
    margin-bottom: 0;
    margin: 0 1rem;
  }
}

/*===============================================
 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: #ee7800;
  }
}

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

/*===============================================
 お知らせ一覧 - archive -
=================================================*/
.head-wrap .page-head {
  background-color: #fef6e5;
}
.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: #ee7800;
  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: #002a23;
  border-bottom: 0.05rem dotted #002a23;
  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-red.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: #ee7800;
}
.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: #d80a30;
  position: relative;
  padding-left: 18px;
  margin-bottom: .8rem;
}
aside .widget-title::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 4px solid #d80a30;
  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 #002a23;
}
aside .recent-posts-item a {
  color: #002a23;
  font-weight: 500;
}
aside .recent-posts-item a:hover {
  color: #ee7800;
}
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: #ee7800;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
aside .archive-list-item a {
  color: #002a23;
  font-size: 14px;
  font-weight: 500;
}
aside .archive-list-item a:hover {
  color: #ee7800;
}
@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 #d80a30;
  font-weight: 600;
  font-size: 14px;
  color: #d80a30;
}
.pagination .page-numbers-item a span {
  position: relative;
}
.pagination .page-numbers-item a:hover {
  background-color: #d80a30;
  color: #fff;
}
.pagination .page-numbers-item.current a {
  background-color: #d80a30;
  color: #fff;
}
.pagination .page-numbers-item.prev span::before, .pagination .page-numbers-item.next span::before {
  content: '';
  background-image: url("../image/arrow-red.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 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: #ee7800;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  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(0, 42, 35, 0.3);
}
.post-page .main-content h4::before {
  background-color: #d80a30;
  width: 20%;
  height: 0.1rem;
  z-index: 1;
}
.post-page .main-content h5 {
  display: inline-block;
  background-color: #002a23;
  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: #d80a30;
  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(0, 42, 35, 0.3);
  border-bottom: 0.05rem solid rgba(0, 42, 35, 0.3);
  align-items: center;
}
.post-page .post-navigation .nav-link a {
  color: #002a23;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}
.post-page .post-navigation .nav-link a:hover {
  background-color: #fef6e5;
}
.post-page .post-navigation .nav-link::after {
  content: '';
  width: 0.05rem;
  height: calc(100% - 40px);
  background-color: rgba(0, 42, 35, 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-wht.svg");
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-position: center;
  background-color: #d80a30;
  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;
  }
}
