@charset "UTF-8";
/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* base
--------------------------- */
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #4c4948;
  font-family: "Noto Sans JP", "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  font-size: 17px;
  background: #fff;
}

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

a {
  color: #002b5c;
}

a:hover, a:active, a:focus {
  color: #002b5c;
}

mark {
  font-style: normal;
}

iframe[src*="google.com/maps/"] {
  width: 100%;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
.l-wrapper { /* 以下はslickが動作しなくなるためコメントアウト */ }

.l-header {
  position: relative;
}
.l-header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 15px 10px;
}
@media (min-width: 500px) {
  .l-header__inner {
    padding: 50px 50px 0;
  }
}
@media (min-width: 500px) {
  body[class*=homepage] .l-header__inner {
    position: absolute;
    z-index: 1;
  }
}
.l-header__logo-wrap {
  max-width: calc(100% - 80px);
}
@media (max-width: 991px) {
  .l-header__contact-wrap {
    display: none;
  }
}
.l-header__contact-address {
  color: #231815;
  letter-spacing: 0.16em;
}
.l-header__contact-tel {
  margin-top: 5px;
}
.l-header__button {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.3s;
  padding-bottom: 5px;
}
@media (min-width: 992px) {
  .l-header__button {
    display: none;
  }
}
.l-header__button span,
.l-header__button span:before,
.l-header__button span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #002b5c;
  position: absolute;
  transition: all 0.3s;
}
.l-header__button span:before {
  bottom: 8px;
}
.l-header__button span:after {
  top: 8px;
}
.l-header__button:after {
  content: "menu";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  color: #002b5c;
  font-size: 12px;
  text-align: center;
}
#menu-button-check:checked ~ .l-header__button {
  background: #fff;
}
#menu-button-check:checked ~ .l-header__button span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-button-check:checked ~ .l-header__button span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-button-check:checked ~ .l-header__button span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-button-check:checked ~ .l-header__button:after {
  content: "close";
}
.l-header #menu-button-check {
  display: none;
}
@media (min-width: 992px) {
  body[class*=homepage] .l-header__nav-container {
    display: none;
  }
}
@media (max-width: 991px) {
  .l-header__nav-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    transition: all 0.5s;
    background-color: #fff;
  }
  .l-header__nav-container > div {
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    overflow-y: auto;
    padding-top: 50px;
  }
}
.l-header__nav-menu {
  margin-top: 44px;
  padding-bottom: 27px;
}
.l-header__nav-menu .menu-item {
  list-style: none;
}
@media (min-width: 992px) {
  .l-header__nav-menu {
    display: flex;
    max-width: 950px;
    margin-inline: auto;
    justify-content: space-between;
    align-items: center;
  }
  .l-header__nav-menu .sub-menu {
    display: none;
  }
  .l-header__nav-menu .menu-item {
    position: relative;
  }
  .l-header__nav-menu .menu-item a {
    display: block;
    color: #002b5c;
  }
  .l-header__nav-menu .menu-item > a {
    text-align: center;
    text-decoration: none;
    height: 60px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #002b5c;
    font-size: 19px;
    font-weight: 500;
  }
  .l-header__nav-menu .menu-item > .sub-menu {
    position: absolute;
    top: 60px;
    left: 0;
  }
  .l-header__nav-menu .menu-item > .sub-menu .menu-item {
    text-align: left;
  }
  .l-header__nav-menu .menu-item > .sub-menu a {
    position: relative;
    padding: 10px 20px 8px;
    width: 150px;
    height: auto;
    line-height: 180%;
    margin: 0 0 -1px 0;
    text-align: left;
    border: 1px solid #ccc;
    background: #fff;
  }
  .l-header__nav-menu .menu-item > .sub-menu a:hover {
    background: #e2e2e2;
  }
  .l-header__nav-menu > .menu-item:hover .sub-menu {
    display: block;
  }
}
@media (max-width: 991px) {
  .l-header__nav-menu {
    padding: 30px 0 0 0;
  }
  .l-header__nav-menu .menu-item {
    border-bottom: solid 1px #002b5c;
  }
  .l-header__nav-menu .menu-item a {
    display: block;
    position: relative;
    width: 100%;
    padding: 12px 25px;
    font-size: 27px;
    box-sizing: border-box;
    color: #002b5c;
    text-decoration: none;
    position: relative;
  }
  .l-header__nav-menu .menu-item a small {
    display: none;
  }
  .l-header__nav-menu .menu-item a a {
    width: 2.5em;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    text-align: center;
  }
  .l-header__nav-menu .sub-menu {
    display: none;
  }
  .l-header__nav-menu .sub-menu a {
    font-size: 23px;
    font-weight: normal;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.04);
  }
  .l-header__nav-menu .sub-menu li {
    border-bottom: 0;
  }
  .l-header__nav-menu .sub-menu-more {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .l-header__nav-menu .sub-menu-active > .sub-menu {
    display: block;
  }
}
#menu-button-check:checked ~ .l-header__nav-container {
  left: 0; /*メニューを画面内へ*/
}

.l-footer {
  padding-top: 130px;
}
.l-footer .p-hours table, .l-footer .p-hours__note {
  max-width: 750px;
  margin-inline: auto;
}
.l-footer__logo-wrap {
  margin-top: 100px;
  width: 100%;
  max-width: 568px;
  margin-inline: auto;
  text-align: right;
}
.l-footer__logo-wrap img {
  width: 100%;
}
.l-footer__address {
  margin-top: 9px;
  font-size: 4vw;
}
@media (min-width: 500px) {
  .l-footer__address {
    font-size: 22px;
  }
}
.l-footer__tel {
  width: 100%;
  margin-top: 9px;
  max-width: 420px;
  margin: 0 0 0 auto;
}
.l-footer__copyright {
  margin-top: 93px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  background: #b9e0a6;
}
.l-footer__copyright a {
  color: #231815;
  text-decoration: none;
}

/*--------------------------------------*
 * object
 *--------------------------------------*/
.p-archive-items__inner {
  padding-top: 50px;
  border-top: 1px solid #3e3a39;
}

.p-archive-item {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #3e3a39;
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 500px) {
  .p-archive-item {
    flex-direction: row;
    gap: 50px;
  }
}
.p-archive-item__title a {
  color: #3e3a39;
  text-decoration: none;
}

.p-single-title {
  margin-top: 0px;
  padding-top: 50px;
  border-top: 1px solid #3e3a39;
}
.p-single-title__heading {
  font-size: 24px;
  font-weight: 400;
}
.p-single-title__time {
  margin-top: 10px;
  color: #6fc14f;
}

.p-single-the-content {
  margin-top: 40px;
  margin-bottom: 80px;
}
.p-single-the-content p {
  margin-bottom: 1.8em;
}

.p-single-nav a {
  display: block;
  position: relative;
  padding: 20px 30px;
  text-align: center;
  line-height: 1.1;
  text-decoration: none;
  margin-bottom: 5px;
  border: 1px solid #eee;
}
@media (max-width: 499px) {
  .p-single-nav a {
    margin-bottom: 5px;
    border: 1px solid #eee;
  }
}
.p-single-nav__alignleft a:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -0.5em;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
}
.p-single-nav__alignright a:before {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -0.5em;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.p-page-home-mv {
  position: relative;
}
.p-page-home-mv > img {
  width: 100%;
}
.p-page-home-mv__copy1 {
  position: absolute;
  left: 5%;
  top: 60%;
  width: 18%;
}
@media (min-width: 1700px) {
  .p-page-home-mv__copy1 {
    top: 19.5%;
  }
}
.p-page-home-mv__copy1 img {
  width: 100%;
}
.p-page-home-mv__copy2 {
  position: absolute;
  left: 30%;
  top: 50%;
  width: 21.3%;
}
@media (min-width: 1700px) {
  .p-page-home-mv__copy2 {
    top: 35.5%;
    left: 3.6%;
  }
}
.p-page-home-mv__copy2 img {
  width: 100%;
}
.p-page-home-mv__nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-page-home-mv__nav-menu li {
  margin: 0;
  padding: 0;
}
.p-page-home-mv__nav-menu .menu-item {
  position: absolute;
  width: 10%;
  height: 10%;
}
.p-page-home-mv__nav-menu .menu-item img {
  width: 100%;
}
.p-page-home-mv__nav-menu .menu-item:nth-child(1) {
  left: 13.4%;
  top: 86.2%;
}
.p-page-home-mv__nav-menu .menu-item:nth-child(2) {
  left: 26%;
  top: 89%;
}
.p-page-home-mv__nav-menu .menu-item:nth-child(3) {
  left: 38.7%;
  top: 88.4%;
}
.p-page-home-mv__nav-menu .menu-item:nth-child(4) {
  left: 51.4%;
  top: 85.5%;
}
.p-page-home-mv__nav-menu .menu-item:nth-child(5) {
  left: 64%;
  top: 78.5%;
}
.p-page-home-mv__nav-menu .menu-item:nth-child(6) {
  left: 77%;
  top: 68.5%;
}

.p-page-home-top {
  padding-top: 156px;
  padding-bottom: 100px;
  background: #fbf6e8 url(../img/figure_split1.svg) no-repeat 30px bottom;
}
.p-page-home-top__inner {
  max-width: 1000px;
  margin-inline: auto;
}

.p-page-home-news {
  padding: 30px 15px 30px;
  border-radius: 8px;
  border: 1px solid #6fc14f;
  background: #fff;
}
.p-page-home-news__heading-wrap {
  max-width: 542px;
  margin-inline: auto;
  padding: 12px 0;
  background: url(../img/heading-box_line.svg) no-repeat center;
  background-image: url("../img/heading-box_line.svg"), url("../img/heading-box_line.svg");
  background-position: center top, center bottom;
  background-repeat: no-repeat, no-repeat;
}
.p-page-home-news__items {
  margin-top: 6px;
  display: flex;
  justify-content: center;
}
.p-page-home-hours {
  margin-top: 98px;
  padding: 30px 15px 40px;
  border-radius: 8px;
  border: 1px solid #6fc14f;
  background: #fff;
}
.p-page-home-hours__heading-wrap {
  max-width: 542px;
  margin-inline: auto;
  margin-bottom: 30px;
  padding: 12px 0;
  background: url(../img/heading-box_line.svg) no-repeat center;
  background-image: url("../img/heading-box_line.svg"), url("../img/heading-box_line.svg");
  background-position: center top, center bottom;
  background-repeat: no-repeat, no-repeat;
}
.p-page-home-hours .p-hours table,
.p-page-home-hours .p-hours .p-hours__note {
  max-width: 750px;
  margin-inline: auto;
}
.p-page-home-hours .p-hours .p-hours__attn,
.p-page-home-hours .p-hours .p-hours__attn-list {
  max-width: 900px;
  margin-inline: auto;
}

.p-page-home-features {
  margin-top: 100px;
  padding-bottom: 125px;
  background: url(../img/figure_split2.svg) no-repeat calc(100% - 30px) bottom;
}
.p-page-home-features__lead {
  margin-top: 50px;
  color: #6fc14f;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
}
.p-page-home-features__item {
  position: relative;
  margin-top: 100px;
}
.p-page-home-features__item-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-page-home-features__item-heading h3 {
  color: #6fc14f;
  font-size: 27px;
  font-weight: 500;
  line-height: 140%;
}
@media (max-width: 991px) {
  .p-page-home-features__item-heading h3 br {
    display: none;
  }
}
.p-page-home-features__item-text {
  margin-top: 5px;
  padding: 24px 28px;
  color: #3e3a39;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 176%; /* 31.68px */
  border-radius: 4px;
  border: 1px solid #6fc14f;
}
@media (min-width: 992px) {
  .p-page-home-features__item-text {
    margin-top: -15px;
  }
}
.p-page-home-features__item-image {
  text-align: center;
}
@media (min-width: 992px) {
  .p-page-home-features__item-image {
    position: absolute;
  }
}
@media (max-width: 991px) {
  .p-page-home-features__item-image {
    margin-top: -15px;
  }
}
.p-page-home-features__bottom {
  margin-top: 50px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 176%; /* 31.68px */
}
@media (min-width: 992px) {
  .p-page-home-features__item:nth-child(2n+1) .p-page-home-features__item-content {
    padding-left: 220px;
  }
}
@media (min-width: 992px) {
  .p-page-home-features__item:nth-child(2n+1) .p-page-home-features__item-heading {
    margin-left: 120px;
  }
}
@media (min-width: 992px) {
  .p-page-home-features__item:nth-child(2n+1) .p-page-home-features__item-text {
    padding-left: 125px;
  }
}
.p-page-home-features__item:nth-child(2n+1) .p-page-home-features__item-image {
  left: 0;
  top: 0;
}
@media (min-width: 992px) {
  .p-page-home-features__item:nth-child(2n) .p-page-home-features__item-content {
    padding-right: 220px;
  }
}
@media (min-width: 992px) {
  .p-page-home-features__item:nth-child(2n) .p-page-home-features__item-heading {
    margin-right: 120px;
  }
}
@media (min-width: 992px) {
  .p-page-home-features__item:nth-child(2n) .p-page-home-features__item-text {
    padding-right: 125px;
  }
}
.p-page-home-features__item:nth-child(2n) .p-page-home-features__item-image {
  right: 0;
  top: 0;
}

.p-page-home-content {
  padding-top: 93px;
  background: #ebf4ec url(../img/figure_split1.svg) no-repeat 30px bottom;
  --page-color: #002b5c;
}
.p-page-home-content .p-page-content {
  color: #3e3a39;
  font-size: 17px;
  font-weight: 400;
  line-height: 180%; /* 40px */
}
.p-page-home-content .p-page-content p {
  margin-bottom: 1em;
}
.p-page-home-content h2.wp-block-heading {
  display: flex;
  margin-top: 98px;
  margin-bottom: 0.5em;
  padding: 3px 0.55em 3px;
  border-radius: 4px;
  background: var(--page-color);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 160%; /* 60.8px */
  margin-top: 48px;
  background: rgba(0, 43, 92, 0.6);
}
@media (min-width: 500px) {
  .p-page-home-content h2.wp-block-heading {
    font-size: 27px;
  }
}
.p-page-home-content h3.wp-block-heading {
  color: var(--page-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 160%; /* 44.8px */
}
@media (min-width: 500px) {
  .p-page-home-content h3.wp-block-heading {
    font-size: 21px;
  }
}
.p-page-home-content h4.wp-block-heading {
  margin-bottom: 6px;
  color: var(--page-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 160%; /* 44.8px */
  background: url(../img/wp-block-heading_h4.png) repeat-x left bottom;
}
@media (min-width: 500px) {
  .p-page-home-content h4.wp-block-heading {
    font-size: 21px;
  }
}
.p-page-home-content .wp-block-list:not([class*=is-style]) {
  list-style: none;
  margin-bottom: 1.2em;
}
.p-page-home-content .wp-block-list:not([class*=is-style]) li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.4em;
}
.p-page-home-content .wp-block-list:not([class*=is-style]) li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "●";
  color: var(--page-color);
}

.p-page-home-links {
  padding: 100px 0;
}
.p-page-home-links__inner {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 1330px) {
  .p-page-home-links__inner {
    gap: 96px;
  }
}
.p-page-home-links__inner a {
  display: block;
  width: 100%;
  max-width: 270px;
}
.p-page-home-links__inner img {
  width: 100%;
}

.p-page-home-map iframe {
  height: 750px;
}

.p-page-about-pagetitle {
  text-align: center;
  background: #faf6e8 url(../img/p-page-about_pagetitle_bg.png) repeat-x center top;
}

.p-page-about-philosophy {
  background: #faf6e8 url(../img/figure_split1.svg) no-repeat 30px bottom;
}
.p-page-about-philosophy__inner {
  max-width: 1000px;
  margin-inline: auto;
}
.p-page-about-philosophy__heading-wrap {
  padding-top: 50px;
  padding-bottom: 15px;
  background: url(../img/p-page-about-philosopphy_title.svg) no-repeat bottom center;
}
.p-page-about-philosophy__items {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
  margin-top: 85px;
  padding-bottom: 100px;
}
.p-page-about-philosophy__item {
  display: flex;
  gap: 25px;
  align-items: center;
}
.p-page-about-philosophy__item:nth-child(2) {
  justify-content: flex-end;
}
.p-page-about-philosophy__item span {
  color: #002b5c;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 5.6px;
}
@media (min-width: 500px) {
  .p-page-about-philosophy__item span {
    font-size: 28px;
  }
}

.p-page-about-content .p-page-content .c-container > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  width: calc(100% - 30px);
}
@media (min-width: 656px) {
  .p-page-about-content .p-page-content .c-container > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
    width: 656px;
  }
}
@media (min-width: 1060px) {
  .p-page-about-content .p-page-content .c-container > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
    width: 656px;
  }
}
.p-page-about-content .p-page-content .wp-block-group.alignwide .wp-block-group__inner-container > *,
.p-page-about-content .p-page-content .wp-block-group.alignfull .wp-block-group__inner-container > * {
  width: calc(100% - 30px);
}
@media (min-width: 656px) {
  .p-page-about-content .p-page-content .wp-block-group.alignwide .wp-block-group__inner-container > *,
  .p-page-about-content .p-page-content .wp-block-group.alignfull .wp-block-group__inner-container > * {
    width: 656px;
  }
}
@media (min-width: 1060px) {
  .p-page-about-content .p-page-content .wp-block-group.alignwide .wp-block-group__inner-container > *,
  .p-page-about-content .p-page-content .wp-block-group.alignfull .wp-block-group__inner-container > * {
    width: 656px;
  }
}

.p-page-about-introduction {
  padding: 100px 0;
  background: #e7f1e8 url(../img/figure_split1.svg) no-repeat 30px bottom;
}
.p-page-about-introduction__inner {
  max-width: 1000px;
  margin-inline: auto;
}
.p-page-about-introduction__underconstruction {
  margin-top: 60px;
  text-align: center;
}
.p-page-about-introduction__items {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}
@media (min-width: 500px) {
  .p-page-about-introduction__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 96px 76px;
  }
}
.p-page-about-introduction__items figcaption {
  margin-top: 4px;
  color: #3e3a39;
  font-size: 15px;
  font-weight: 500;
  line-height: 186%; /* 31.62px */
  letter-spacing: 2.89px;
  text-align: center;
}
@media (min-width: 500px) {
  .p-page-about-introduction__items figcaption {
    font-size: 17px;
  }
}

.p-page-pediatric-pagetitle {
  text-align: center;
  background: #faf6e8 url(../img/p-page-pediatric_pagetitle_bg.png) repeat-x center top;
}

.p-page-pediatric-top {
  padding-bottom: 100px;
  background: #faf6e8 url(../img/figure_split1.svg) no-repeat 30px bottom;
}
.p-page-pediatric-top__inner {
  max-width: 1000px;
  margin-inline: auto;
}
.p-page-pediatric-top__lead {
  padding-top: 36px;
  display: flex;
  justify-content: center;
}
.p-page-pediatric-top__lead p {
  color: #ea6d8d;
  font-size: 17px;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
}
@media (min-width: 500px) {
  .p-page-pediatric-top__lead p {
    font-size: 23px;
  }
}
.p-page-pediatric-top__toc {
  margin-top: 45px;
}
.p-page-pediatric-top__toc ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 0px;
  list-style: none;
}
@media (min-width: 500px) {
  .p-page-pediatric-top__toc ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 80px;
  }
}
.p-page-pediatric-top__toc a {
  display: flex;
  width: 100%;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #ef90a0;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 160%; /* 60.8px */
  text-decoration: none;
}
@media (min-width: 500px) {
  .p-page-pediatric-top__toc a {
    font-size: 34px;
  }
}
.p-page-pediatric-top__surgical {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding: 10px;
  border-top: 1px solid #ef90a0;
  border-bottom: 1px solid #ef90a0;
  color: #ef90a0;
  font-size: 17px;
  font-weight: 700;
  line-height: 120%;
}
@media (min-width: 500px) {
  .p-page-pediatric-top__surgical {
    gap: 5px;
  }
}
@media (min-width: 1330px) {
  .p-page-pediatric-top__surgical {
    flex-direction: row;
  }
}
@media (min-width: 500px) {
  .p-page-pediatric-top__surgical {
    font-size: 28px;
  }
}
.p-page-pediatric-top__surgical small {
  color: #e49960;
  font-size: 15px;
  font-weight: 500;
  line-height: 120%; /* 30.4px */
}
@media (min-width: 500px) {
  .p-page-pediatric-top__surgical small {
    font-size: 19px;
  }
}
.p-page-pediatric-top__jsaweb {
  margin-top: 53px;
  text-align: center;
}
.p-page-pediatric-top__jsaweb p {
  display: flex;
  padding: 4px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #6fc14f;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 46.4px */
}
@media (min-width: 500px) {
  .p-page-pediatric-top__jsaweb p {
    font-size: 29px;
  }
}
.p-page-pediatric-top__jsaweb a {
  display: inline-block;
  margin-top: 25px;
}

.p-page-pediatric-content {
  --page-color: #ef90a0;
}
.p-page-pediatric-content .p-page-content {
  color: #3e3a39;
  font-size: 17px;
  font-weight: 400;
  line-height: 180%; /* 40px */
}
.p-page-pediatric-content .p-page-content p {
  margin-bottom: 1em;
}
.p-page-pediatric-content h2.wp-block-heading {
  display: flex;
  margin-top: 98px;
  margin-bottom: 0.5em;
  padding: 3px 0.55em 3px;
  border-radius: 4px;
  background: var(--page-color);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 160%; /* 60.8px */
}
@media (min-width: 500px) {
  .p-page-pediatric-content h2.wp-block-heading {
    font-size: 27px;
  }
}
.p-page-pediatric-content h3.wp-block-heading {
  color: var(--page-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 160%; /* 44.8px */
}
@media (min-width: 500px) {
  .p-page-pediatric-content h3.wp-block-heading {
    font-size: 21px;
  }
}
.p-page-pediatric-content h3.wp-block-heading::before {
  content: "〈";
}
.p-page-pediatric-content h3.wp-block-heading::after {
  content: "〉";
}
.p-page-pediatric-content .wp-block-list {
  list-style: none;
  margin-bottom: 1.2em;
}
.p-page-pediatric-content .wp-block-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.4em;
}
.p-page-pediatric-content .wp-block-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "●";
  color: var(--page-color);
}

.p-page-otolaryngology-pagetitle {
  text-align: center;
  background: #faf6e8 url(../img/p-page-otolaryngology_pagetitle_bg.png) repeat-x center top;
}

.p-page-otolaryngology-top {
  padding-bottom: 100px;
  background: #faf6e8 url(../img/figure_split1.svg) no-repeat 30px bottom;
}
.p-page-otolaryngology-top__inner {
  max-width: 1000px;
  margin-inline: auto;
}
.p-page-otolaryngology-top__lead {
  padding-top: 36px;
  display: flex;
  justify-content: center;
}
.p-page-otolaryngology-top__lead p {
  color: #00b3ec;
  font-size: 17px;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
}
@media (min-width: 500px) {
  .p-page-otolaryngology-top__lead p {
    font-size: 23px;
  }
}
.p-page-otolaryngology-top__toc {
  margin-top: 45px;
}
.p-page-otolaryngology-top__toc ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 0px;
  list-style: none;
}
@media (min-width: 500px) {
  .p-page-otolaryngology-top__toc ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 80px;
  }
}
.p-page-otolaryngology-top__toc a {
  display: flex;
  width: 100%;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #36bdef;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 160%; /* 60.8px */
  text-decoration: none;
}
@media (min-width: 500px) {
  .p-page-otolaryngology-top__toc a {
    font-size: 34px;
  }
}
.p-page-otolaryngology-top__jibika {
  margin-top: 53px;
  text-align: center;
}
.p-page-otolaryngology-top__jibika p {
  display: flex;
  padding: 4px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #6fc14f;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 46.4px */
}
@media (min-width: 500px) {
  .p-page-otolaryngology-top__jibika p {
    font-size: 29px;
  }
}
.p-page-otolaryngology-top__jibika a {
  display: inline-block;
  margin-top: 25px;
}

.p-page-otolaryngology-content {
  --page-color: #36bdef;
}
.p-page-otolaryngology-content .p-page-content {
  color: #3e3a39;
  font-size: 17px;
  font-weight: 400;
  line-height: 180%; /* 40px */
}
.p-page-otolaryngology-content .p-page-content p {
  margin-bottom: 1em;
}
@media (min-width: 500px) {
  .p-page-otolaryngology-content .p-page-content {
    font-size: 23px;
  }
}
.p-page-otolaryngology-content h2.wp-block-heading {
  display: flex;
  margin-top: 98px;
  margin-bottom: 0.5em;
  padding: 3px 0.55em 3px;
  border-radius: 4px;
  background: var(--page-color);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 160%; /* 60.8px */
}
@media (min-width: 500px) {
  .p-page-otolaryngology-content h2.wp-block-heading {
    font-size: 27px;
  }
}
@media (min-width: 500px) {
  .p-page-otolaryngology-content h2.wp-block-heading {
    font-size: 38px;
  }
}
.p-page-otolaryngology-content h3.wp-block-heading {
  color: var(--page-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 160%; /* 44.8px */
}
@media (min-width: 500px) {
  .p-page-otolaryngology-content h3.wp-block-heading {
    font-size: 21px;
  }
}
.p-page-otolaryngology-content h3.wp-block-heading::before {
  content: "〈";
}
.p-page-otolaryngology-content h3.wp-block-heading::after {
  content: "〉";
}
@media (min-width: 500px) {
  .p-page-otolaryngology-content h3.wp-block-heading {
    font-size: 28px;
  }
}
.p-page-otolaryngology-content .wp-block-list {
  list-style: none;
  margin-bottom: 1.2em;
}
.p-page-otolaryngology-content .wp-block-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.4em;
}
.p-page-otolaryngology-content .wp-block-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "●";
  color: var(--page-color);
}

.p-page-allergy-pagetitle {
  text-align: center;
  background: #faf6e8 url(../img/p-page-allergy_pagetitle_bg.png) repeat-x center top;
}

.p-page-allergy-top {
  padding-bottom: 100px;
  background: #faf6e8 url(../img/figure_split1.svg) no-repeat 30px bottom;
}
.p-page-allergy-top__inner {
  max-width: 1000px;
  margin-inline: auto;
}
.p-page-allergy-top__lead {
  padding-top: 36px;
  display: flex;
  justify-content: center;
}
.p-page-allergy-top__lead p {
  color: #8dc33e;
  font-size: 17px;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
}
@media (min-width: 500px) {
  .p-page-allergy-top__lead p {
    font-size: 23px;
  }
}
.p-page-allergy-top__toc {
  margin-top: 45px;
}
.p-page-allergy-top__toc ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 0px;
  list-style: none;
}
@media (min-width: 500px) {
  .p-page-allergy-top__toc ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 80px;
  }
}
.p-page-allergy-top__toc a {
  display: flex;
  width: 100%;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #9bc954;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 160%; /* 60.8px */
  text-decoration: none;
}
@media (min-width: 500px) {
  .p-page-allergy-top__toc a {
    font-size: 34px;
  }
}
.p-page-allergy-top__day {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding: 10px;
  border-top: 1px solid #e49960;
  border-bottom: 1px solid #e49960;
  color: #e49960;
  font-size: 17px;
  font-weight: 700;
  line-height: 120%;
}
@media (min-width: 500px) {
  .p-page-allergy-top__day {
    gap: 5px;
  }
}
@media (min-width: 1330px) {
  .p-page-allergy-top__day {
    flex-direction: row;
  }
}
@media (min-width: 500px) {
  .p-page-allergy-top__day {
    font-size: 28px;
  }
}
.p-page-allergy-top__day small {
  color: #e49960;
  font-size: 15px;
  font-weight: 500;
  line-height: 120%; /* 30.4px */
}
@media (min-width: 500px) {
  .p-page-allergy-top__day small {
    font-size: 19px;
  }
}
.p-page-allergy-top__jsaweb {
  margin-top: 53px;
  text-align: center;
}
.p-page-allergy-top__jsaweb p {
  display: flex;
  padding: 4px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #6fc14f;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 46.4px */
}
@media (min-width: 500px) {
  .p-page-allergy-top__jsaweb p {
    font-size: 29px;
  }
}
.p-page-allergy-top__jsaweb a {
  display: inline-block;
  margin-top: 25px;
}

.p-page-allergy-content {
  --page-color: #9bc954;
}
.p-page-allergy-content .p-page-content {
  color: #3e3a39;
  font-size: 17px;
  font-weight: 400;
  line-height: 180%; /* 40px */
}
.p-page-allergy-content .p-page-content p {
  margin-bottom: 1em;
}
.p-page-allergy-content h2.wp-block-heading {
  display: flex;
  margin-top: 98px;
  margin-bottom: 0.5em;
  padding: 3px 0.55em 3px;
  border-radius: 4px;
  background: var(--page-color);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 160%; /* 60.8px */
}
@media (min-width: 500px) {
  .p-page-allergy-content h2.wp-block-heading {
    font-size: 27px;
  }
}
.p-page-allergy-content h3.wp-block-heading {
  color: var(--page-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 160%; /* 44.8px */
}
@media (min-width: 500px) {
  .p-page-allergy-content h3.wp-block-heading {
    font-size: 21px;
  }
}
.p-page-allergy-content h3.wp-block-heading::before {
  content: "〈";
}
.p-page-allergy-content h3.wp-block-heading::after {
  content: "〉";
}
.p-page-allergy-content .wp-block-list {
  list-style: none;
  margin-bottom: 1.2em;
}
.p-page-allergy-content .wp-block-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.4em;
}
.p-page-allergy-content .wp-block-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "●";
  color: var(--page-color);
}

.p-page-access-pagetitle {
  text-align: center;
  background: url(../img/p-page-access_pagetitle_bg.png) repeat-x center top;
}
@media (max-width: 499px) {
  .p-page-access-pagetitle {
    padding-bottom: 20px;
    background-color: #faf6e8;
  }
}

.p-page-access-top {
  position: relative;
}

@media (min-width: 500px) {
  .p-page-access-pagetitle {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media (min-width: 500px) {
  .p-page-access-map {
    padding-top: 22px;
  }
}
.p-page-access-map iframe {
  height: 80vh;
}
@media (min-width: 500px) {
  .p-page-access-map iframe {
    height: 750px;
  }
}

.p-page-access-content {
  margin-top: 20px;
  --page-color: #6fc14f;
}
.p-page-access-content .p-page-content {
  color: #3e3a39;
  font-size: 17px;
  font-weight: 400;
  line-height: 180%; /* 40px */
}
.p-page-access-content .p-page-content p {
  margin-bottom: 1em;
}
.p-page-access-content h2.wp-block-heading {
  display: flex;
  margin-top: 98px;
  margin-bottom: 0.5em;
  padding: 3px 0.55em 3px;
  border-radius: 4px;
  background: var(--page-color);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 160%; /* 60.8px */
}
@media (min-width: 500px) {
  .p-page-access-content h2.wp-block-heading {
    font-size: 27px;
  }
}
.p-page-access-content h3.wp-block-heading {
  color: var(--page-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 160%; /* 44.8px */
}
@media (min-width: 500px) {
  .p-page-access-content h3.wp-block-heading {
    font-size: 21px;
  }
}
.p-page-access-content h3.wp-block-heading::before {
  content: "〈";
}
.p-page-access-content h3.wp-block-heading::after {
  content: "〉";
}
.p-page-access-content .wp-block-list {
  list-style: none;
  margin-bottom: 1.2em;
}
.p-page-access-content .wp-block-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.4em;
}
.p-page-access-content .wp-block-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "●";
  color: var(--page-color);
}

.page-template-page-tmp_access .l-footer {
  padding-top: 100px;
}
.page-template-page-tmp_access .l-footer .p-hours table, .page-template-page-tmp_access .l-footer .p-hours__note {
  max-width: 1000px;
}

.p-page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.p-page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #002b5c;
}
.p-page-top a:before {
  content: "";
  margin-top: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 14px solid #fff;
  border-top: 0;
}

.wp-block-table.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
  flex-grow: 0;
}

.heading-box {
  color: #002b5c;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 1.4;
  text-align: center;
}
.heading-box small {
  display: block;
  color: #6fc14f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.p-page-content {
  line-height: 186%;
  font-size: 16px;
}
@media (min-width: 500px) {
  .p-page-content {
    font-size: 17px;
  }
}
.p-page-content p {
  margin-bottom: 1.5em;
}

hr.wp-block-separator:not([class*=is-style]) {
  margin-top: 50px;
  margin-bottom: 50px;
  border-top: 1px solid #3e3a39;
}

hr.wp-block-separator.is-style-leaf {
  margin-top: 140px;
  margin-bottom: 140px;
  border: 0;
}

.wp-block-group.is-style-white-right {
  background: url(../img/figure_split2.svg) no-repeat calc(100% - 30px) bottom;
}

.wp-block-group.is-style-white-left {
  background: url(../img/figure_split2.svg) no-repeat 30px bottom;
}

.wp-block-group.is-style-beige-right {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-bottom: 1em;
  overflow: hidden;
  background: #faf6e8 url(../img/figure_split1.svg) no-repeat calc(100% - 30px) bottom;
}

.wp-block-group.is-style-beige-left {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-bottom: 1em;
  overflow: hidden;
  background: #faf6e8 url(../img/figure_split1.svg) no-repeat 30px bottom;
}

.wp-block-table.is-style-none td {
  border: 0;
}

.wp-block-list.is-style-attn {
  margin-bottom: 1.2em;
  padding-left: 1em;
}

.p-wp-pagenavi .wp-pagenavi {
  margin-top: 80px;
  clear: both;
  text-align: center;
}
@media (max-width: 499px) {
  .p-wp-pagenavi .wp-pagenavi .pages, .p-wp-pagenavi .wp-pagenavi .last, .p-wp-pagenavi .wp-pagenavi .extend {
    display: none;
  }
}
@media (max-width: 340px) {
  .p-wp-pagenavi .wp-pagenavi > * {
    display: none;
  }
  .p-wp-pagenavi .wp-pagenavi > .pages,
  .p-wp-pagenavi .wp-pagenavi > .previouspostslink,
  .p-wp-pagenavi .wp-pagenavi > .nextpostslink {
    display: inline;
  }
}
.p-wp-pagenavi .wp-pagenavi a, .p-wp-pagenavi .wp-pagenavi > span {
  color: #999;
  background-color: #FFF;
  border: solid 1px #e0e0d2;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}
.p-wp-pagenavi .wp-pagenavi a:hover {
  color: #FFF;
  background-color: #999;
  border-color: #999;
}
.p-wp-pagenavi .wp-pagenavi span.current {
  color: #FFF;
  background-color: #002b5c;
  border-color: #002b5c;
  font-weight: bold;
}

.p-hours__doctor {
  color: #002b5c;
  text-align: center;
  font-size: 3vw;
  letter-spacing: 3px;
}
@media (min-width: 992px) {
  .p-hours__doctor {
    font-size: 24px;
  }
}
.p-hours table {
  width: 100%;
  margin-top: 10px;
  color: #002b5c;
  font-size: 3vw;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 992px) {
  .p-hours table {
    font-size: 24px;
  }
}
.p-hours table th {
  font-weight: normal;
}
.p-hours tr:first-child th {
  padding: 10px 0;
  background: #b9e0a6;
}
.p-hours tr:first-child th:not(:first-child) {
  width: 10%;
}
.p-hours tr:first-child th:first-child {
  position: relative;
  color: #fff;
  background: #002b5c;
}
.p-hours tr:first-child th:first-child::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 100%;
  background: #b9e0a6;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: absolute;
  right: -1px;
  top: 0;
}
.p-hours tr:not(:first-child) th,
.p-hours tr:not(:first-child) td {
  padding: 14px 0;
  border-bottom: 1px solid #b9e0a6;
}
.p-hours tr:not(:first-child) td {
  opacity: 0.5;
}
.p-hours__note {
  margin-top: 12px;
  color: #002b5c;
  font-size: 3vw;
  text-align: center;
}
@media (min-width: 992px) {
  .p-hours__note {
    font-size: 24px;
  }
}
.p-hours__note em {
  color: #002b5c;
  opacity: 0.5;
  font-style: normal;
}
.p-hours__attn {
  margin-top: 45px;
  display: flex;
  padding: 7px 10px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 3vw;
  border-radius: 22px;
  background: #002b5c;
}
@media (min-width: 992px) {
  .p-hours__attn {
    font-size: 24px;
  }
}
.p-hours__attn-list {
  list-style: none;
  margin-top: 10px;
}
@media (min-width: 1330px) {
  .p-hours__attn-list {
    margin-left: 4em;
  }
}
.p-hours__attn-list li {
  position: relative;
  margin: 0;
  padding-left: 1em;
  color: #002b5c;
  font-size: 3vw;
}
@media (min-width: 992px) {
  .p-hours__attn-list li {
    font-size: 24px;
  }
}
.p-hours__attn-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.p-hours--first {
  margin-bottom: 56px;
}

/* https://getbootstrap.jp/docs/5.3/utilities/display/ */
.u-d-none {
  display: none;
}

@media (min-width: 500px) {
  .u-d-sm-block {
    display: block;
  }
}

@media (min-width: 992px) {
  .u-d-md-block {
    display: block;
  }
}

@media (min-width: 1330px) {
  .u-d-lg-block {
    display: block;
  }
}

@media (min-width: 500px) {
  .u-d-sm-inline {
    display: inline;
  }
}

@media (min-width: 992px) {
  .u-d-md-inline {
    display: inline;
  }
}

@media (min-width: 1330px) {
  .u-d-lg-inline {
    display: inline;
  }
}

@media (min-width: 500px) {
  .u-d-sm-inline-block {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .u-d-md-inline-block {
    display: inline-block;
  }
}

@media (min-width: 1330px) {
  .u-d-lg-inline-block {
    display: inline-block;
  }
}

@media (min-width: 500px) {
  .u-d-sm-none {
    display: none;
  }
}

@media (min-width: 992px) {
  .u-d-md-none {
    display: none;
  }
}

@media (min-width: 1330px) {
  .u-d-lg-none {
    display: none;
  }
}

.u-mt-0 {
  margin-top: 0;
}

/*-------------------
* component
-------------------*/
.c-container > * {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.alignfull .wp-block-group__inner-container > * {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.alignwide .wp-block-group__inner-container > * {
  margin-left: auto;
  margin-right: auto;
}

.c-container > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
.wp-block-group.alignwide .wp-block-group__inner-container > *,
.wp-block-group.alignfull .wp-block-group__inner-container > * {
  width: calc(100% - 30px);
}
@media (min-width: 1060px) {
  .c-container > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
  .wp-block-group.alignwide .wp-block-group__inner-container > *,
  .wp-block-group.alignfull .wp-block-group__inner-container > * {
    width: 1000px;
  }
}

.p-the-content .wp-block-group.alignfull .wp-block-group__inner-container > * {
  width: calc(100% - 30px);
}
@media (min-width: 1060px) {
  .p-the-content .wp-block-group.alignfull .wp-block-group__inner-container > * {
    width: 1000px;
  }
}/*# sourceMappingURL=futaba-clinic.css.map */