@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 500;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

:root {
  --font-family: "Zen Maru Gothic", sans-serif;
  --color-text: #47332a;
  --color-link: #ff8da0;
  --color-hover: #ff8112;
  --color-base: #ff6f86;
  --color-main: #ff8da0;
  --color-sub1: #000;
  --color-sub2: #fff0f8;
  --color-sub3: #f8eda5;
  --color-sub4: #ec5c74;
  --color-sub5: #ddd;
  --color-sub6: rgba(255,255,255,.8);
  --color-sub7: rgba(255,255,255,.9);
  --color-sub8: #f9f9f9;
  --color-subA: #ffb129;
  --color-subB: #7bd661;
  --color-subC: #55ccf6;
  --color-subD: #e99cff;
  --color-subE: #ff98bb;
  --color-subF: #808bd0;
  --color-subG: #fdca00;
  --color-grd1: rgba(248, 237, 165, 0);
  --color-grd2: rgba(248, 237, 165, 1);
  --transition: 0.3s;
  --inner-width: 110rem;
  --inner-width2: 130rem;
  --inner-width3: 160rem;
  --box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
  --box-shadow2: 0 0 30px 0 rgba(87, 75, 75, 0.07);
}

* {
  scroll-behavior: auto !important;
  box-sizing: border-box;
}

*:before,
*:after,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  color: var(--color-link);
  border: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: normal;
}

blockquote,
q {
  quotes: none;
}

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

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
button:active, button:focus {
  box-shadow: none;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 32rem;
  line-height: 1.5;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

/* 共通セクション */
.c-section {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .c-section--secondary {
    max-width: var(--inner-width);
    margin-inline: auto;
  }
}
.c-section--secondary:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .c-section--secondary:not(:last-child) {
    margin-bottom: 15rem;
  }
}
.c-section--bg {
  margin-right: -2rem;
  margin-left: -2rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media screen and (min-width: 1100px), print {
  .c-section--bg {
    margin-right: -5rem;
    margin-left: -5rem;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
.c-section--bg:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .c-section--bg:not(:last-child) {
    margin-bottom: 15rem;
  }
}
.c-section__inner {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media screen and (min-width: 1100px), print {
  .c-section__inner {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.c-section__content {
  height: 100%;
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px), print {
  .c-section__content {
    padding: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-section__content {
    padding: 5rem;
  }
}
.c-section__content + .c-section__content {
  margin-top: 3rem;
}

/* 共通ヘッダー */
.c-header {
  position: relative;
  margin: 0 -2rem 3rem;
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .c-header {
    font-size: 2.7rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1100px), print {
  .c-header {
    margin: 0 -5rem 4rem;
    font-size: 3rem;
  }
}
.c-header__en {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-size: 0.85em;
}
.c-header__en::before {
  margin-right: 1ch;
}
.c-header__en::after {
  margin-left: 1ch;
}
.c-header__en::before, .c-header__en::after {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  margin-top: 0.15ch;
  width: 0.4em;
  border-radius: 100%;
  background-color: currentColor;
}
@media screen and (min-width: 768px), print {
  .c-header__en {
    margin-bottom: 3rem;
    font-size: 1em;
  }
}
.c-header__caption {
  margin-top: 2rem;
  font-size: 0.8em;
}
@media screen and (min-width: 768px), print {
  .c-header__caption {
    margin-top: 3rem;
  }
}

/* 共通見出し */
.c-heading {
  max-width: var(--inner-width);
  margin-inline: auto;
  line-height: 1.6;
  font-size: 1em;
}
.c-heading--h2 {
  margin-bottom: 2.5rem;
  line-height: 1.5;
  font-weight: 700;
  font-size: 2.3rem;
}
.c-heading--h2 * {
  font-weight: 700;
}
.c-heading--h2::after {
  content: "";
  display: block;
  height: 5px;
  margin-top: 1.5rem;
  border-radius: 10em;
  background-color: var(--color-main);
}
.c-heading--h2:not(:first-child) {
  margin-top: 5rem;
}
.c-header + .c-heading--h2 {
  margin-top: 0;
}
@media screen and (min-width: 768px), print {
  .c-heading--h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  .c-heading--h2::after {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading--h2 {
    letter-spacing: 0.1em;
  }
}
.c-heading--h3 {
  margin-bottom: 1.5rem;
  padding: 0 0 0 1rem;
  line-height: 1.5;
  font-weight: 700;
  font-size: 2rem;
  border-left: 4px solid currentColor;
}
.c-heading--h3:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (min-width: 1100px), print {
  .c-heading--h3 {
    font-size: 2.5rem;
  }
}
.c-heading__inner {
  display: block;
}
.c-heading__title {
  display: block;
}
.c-heading__badge {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  min-height: 3.2rem;
  margin-bottom: 1rem;
  padding: 0.2rem 1.5rem;
  line-height: 1.25;
  font-size: 1.4rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px), print {
  .c-heading__badge {
    margin: 0.2rem 2rem 0 0;
    padding-bottom: 0.4rem;
    font-size: 1.6rem;
  }
}

/* リンクボタン */
.c-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  position: relative;
  min-width: 25rem;
  height: 4.8rem;
  padding: 0 1rem;
  color: #fff;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  border-radius: 10em;
  background-color: var(--color-hover);
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
@media screen and (min-width: 1100px), print {
  .c-link-button {
    min-width: 30rem;
    height: 5.2rem;
  }
}
.c-link-button--pdf {
  min-width: 30rem;
}
.c-link-button--pdf::before {
  content: "";
  aspect-ratio: 24/30;
  display: block;
  width: 2.4rem;
  margin-right: 1rem;
  background: url(../img/base/icon-pdf_wht.svg) no-repeat center;
  background-size: cover;
}
/* 共通リンクボタン（ホバー）*/
.c-link-button[href]:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-button[href]:hover {
    color: #fff;
    background-color: var(--color-link);
  }
}

/* テキストリンク */
.c-link-blank {
  display: inline-flex;
  vertical-align: top;
  position: relative;
  padding-right: 2.6rem;
}
.c-link-blank__label {
  display: block;
}
.c-link-blank__icon {
  display: block;
  position: absolute;
  inset: 0;
  left: auto;
  width: 1.6rem;
  margin: auto;
}
.c-link-blank:hover {
  color: var(--color-link);
}

/* コンテンツ画面中央寄せ */
.c-inner {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
}
.c-inner::after {
  content: "";
  display: table;
  clear: both;
}
/* Google Maps */
.c-map-area {
  position: relative;
  height: 40rem;
}
.c-map-area iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 共通テーブル */
.c-table {
  display: block;
  line-height: 1.5;
}
.c-table tbody {
  display: block;
}
.c-table tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.c-table tr + tr {
  margin-top: 0.5rem;
}
.c-table th,
.c-table td {
  vertical-align: middle;
  padding: 2.5rem 3rem;
}
.c-table th {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 1rem 0 0 1rem;
  background-color: var(--color-sub5);
}
.c-table td {
  border-radius: 0 1rem 1rem 0;
  background-color: var(--color-sub8);
}
.c-table .tel-link[href] {
  color: currentColor;
}
.c-table .tel-link[href]:hover {
  color: var(--color-link);
}
@media screen and (max-width: 767.98px) {
  .c-table {
    margin-inline: 0;
  }
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
  }
  .c-table tr + tr {
    margin-top: 2rem;
  }
  .c-table th,
  .c-table td {
    font-size: 1.6rem;
  }
  .c-table th {
    width: auto !important;
    padding: 1.5rem 0;
    border-radius: 1rem 1rem 0 0;
  }
  .c-table td {
    padding: 2rem;
    text-align: center;
    border-radius: 0 0 1rem 1rem;
  }
}

/* 共通お問い合わせ */
.c-global-contact {
  display: grid;
  grid-template-columns: auto;
  gap: 2rem;
  max-width: 36rem;
  margin-inline: auto;
}
.c-global-contact__text {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  transition: color var(--transition);
}
.c-global-contact__tel, .c-global-contact__entry {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  line-height: 1;
  transition: color var(--transition);
}
.c-global-contact__tel::before, .c-global-contact__entry::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  width: 4rem;
  margin-right: 1rem;
  border-radius: 100%;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
}
.c-global-contact__tel {
  font-size: 3.5rem;
  color: var(--color-link);
}
.c-global-contact__tel::before {
  margin-bottom: -0.1em;
  background-image: url(../img/base/icon-tel_wht.svg);
  background-size: 60%;
}
.c-global-contact__entry {
  font-size: 2.7rem;
  color: var(--color-hover);
}
.c-global-contact__entry::before {
  background-image: url(../img/base/icon-search_wht.svg);
  background-size: 55%;
}
.c-global-contact__link,
.c-global-contact .tel-link {
  display: block;
  height: 100%;
  padding: 3rem 0;
  color: var(--color-text);
  border-radius: 1.5rem;
  background-color: #fff;
  transition: background-color var(--transition), transform var(--transition);
}
.c-global-contact__link:hover,
.c-global-contact .tel-link[href]:hover {
  text-decoration: none;
  color: var(--color-text);
}
@media (hover: hover) and (pointer: fine) {
  .c-global-contact__link:hover {
    background-color: var(--color-sub6);
    box-shadow: var(--box-shadow2);
    transform: translateY(-5px);
  }
  .c-global-contact__link:hover .c-global-contact__text,
  .c-global-contact__link:hover .c-global-contact__entry {
    color: var(--color-link);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-global-contact .tel-link[href]:hover {
    background-color: var(--color-sub6);
    box-shadow: var(--box-shadow2);
    transform: translateY(-5px);
  }
  .c-global-contact .tel-link[href]:hover .c-global-contact__text,
  .c-global-contact .tel-link[href]:hover .c-global-contact__tel {
    color: var(--color-hover);
  }
}
@media screen and (min-width: 768px), print {
  .c-global-contact {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin-inline: 0;
  }
  .c-global-contact__text {
    font-size: 1.6rem;
  }
  .c-global-contact__tel {
    font-size: 4rem;
  }
  .c-global-contact__entry {
    font-size: 3.3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-global-contact {
    gap: 3rem;
  }
  .c-global-contact__link,
  .c-global-contact .tel-link {
    padding: 4rem 3rem;
  }
  .c-global-contact__text {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}

/* タブ切り替え */
.c-tab__content-item {
  display: none;
}
.c-tab__content-item.is-active {
  display: block;
}

/* --------------------------------

  汎用スタイル

-------------------------------- */
.u-list-unstyled {
  list-style: none;
}
.u-list-disc {
  list-style-type: "・";
  padding-left: 1em;
}
.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-indent {
  text-indent: 1em;
}
.u-text-link {
  color: currentColor;
}
.u-text-marker {
  display: inline;
  background: linear-gradient(var(--color-grd1) 70%, var(--color-grd2) 0%);
}
.u-text-gradient-pink {
  background: linear-gradient(90deg, #ff8da0, #ff4362);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.u-text-shadow-white {
  text-shadow: -1px -1px 0 #fff, 0px -1px 0 #fff, 1px -1px 0 #fff, -1px 0px 0 #fff, 1px 0px 0 #fff, -1px 1px 0 #fff, 0px 1px 0 #fff, 1px 1px 0 #fff, 0 0 12px rgba(255, 255, 255, 0.8), 0 0 20px rgb(255, 255, 255);
}
@media screen and (min-width: 768px), print {
  .u-text-md-left {
    text-align: left;
  }
  .u-text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .u-text-lg-left {
    text-align: left;
  }
  .u-text-lg-center {
    text-align: center;
  }
}

.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-flex {
  display: flex;
}
@media screen and (min-width: 480px), print {
  .u-d-sm-none {
    display: none;
  }
  .u-d-sm-block {
    display: block;
  }
  .u-d-sm-flex {
    display: flex;
  }
}
@media screen and (min-width: 768px), print {
  .u-d-md-none {
    display: none;
  }
  .u-d-md-block {
    display: block;
  }
  .u-d-md-flex {
    display: flex;
  }
  .u-d-md-inline {
    display: inline;
  }
}
@media screen and (min-width: 1100px), print {
  .u-d-lg-none {
    display: none;
  }
  .u-d-lg-block {
    display: block;
  }
  .u-d-lg-flex {
    display: flex;
  }
}
.u-ft-walter-turncoat {
  font-family: "Walter Turncoat", cursive;
  font-weight: 400;
  font-style: normal;
}

.u-fs-sm {
  font-size: 1.2rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs-sm {
    font-size: 1.4rem;
  }
}
.u-fs-lg {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .u-fs-lg {
    font-size: 1.8rem;
  }
}
.u-fs-xl {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .u-fs-xl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .u-fs-xl {
    font-size: 2rem;
  }
}

.u-fw-medium {
  font-weight: 500;
}
.u-fw-medium * {
  font-weight: 500;
}
.u-fw-bold {
  font-weight: 700;
}
.u-fw-bold * {
  font-weight: 700;
}
.u-fw-black {
  font-weight: 900;
}
.u-fw-black * {
  font-weight: 900;
}

.u-bg-light {
  background-color: var(--color-sub2);
}
.u-bg-base {
  background-color: var(--color-base);
}
.u-bg-main {
  background-color: var(--color-main);
}
.u-bg-white {
  background-color: #fff;
}
.u-bg-kitasendai {
  background-color: var(--color-subA);
}
.u-bg-yaotome {
  background-color: var(--color-subB);
}
.u-bg-izumichuo {
  background-color: var(--color-subC);
}
.u-bg-tsutsujigaoka {
  background-color: var(--color-subD);
}
.u-bg-yaotomechuo {
  background-color: var(--color-subE);
}
.u-bg-kamisuiginomori {
  background-color: var(--color-subF);
}
.u-bg-support {
  background-color: var(--color-subG);
}
.u-bg-tiling {
  background: url(../img/base/bg_03.svg) top;
  background-size: 1.8rem;
}
@media screen and (min-width: 768px), print {
  .u-bg-tiling {
    background-size: 2.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .u-bg-tiling {
    background-size: 2.6rem;
  }
}

.u-color-base {
  color: var(--color-base);
}
.u-color-main {
  color: var(--color-main);
}
.u-color-text {
  color: var(--color-text);
}
.u-color-white {
  color: #fff;
}
.u-color-black {
  color: #000;
}
.u-color-danger {
  color: #b22c00;
}
.u-color-current {
  color: currentColor;
}
.u-color-kitasendai {
  color: var(--color-subA);
}
.u-color-yaotome {
  color: var(--color-subB);
}
.u-color-izumichuo {
  color: var(--color-subC);
}
.u-color-tsutsujigaoka {
  color: var(--color-subD);
}
.u-color-yaotomechuo {
  color: var(--color-subE);
}
.u-color-kamisuiginomori {
  color: var(--color-subF);
}
.u-color-support {
  color: var(--color-subG);
}

.u-flex-1 {
  flex: 1;
}

.u-clearfix::after {
  content: "";
  clear: both;
  display: block;
}

.u-lh-sm {
  line-height: 1.35;
}
.u-lh-base {
  line-height: 1.5;
}
.u-lh-lg {
  line-height: 1.8;
}
.u-lh-xl {
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  .u-lh-xl {
    line-height: 2;
  }
}

.u-indent {
  margin-left: 1em;
  text-indent: -1em;
}

.u-anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -10rem;
  margin-bottom: 10rem;
  background: transparent;
  pointer-events: none;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .u-anchor-point::before {
    margin-top: -16rem;
    margin-bottom: 16rem;
  }
}

.u-scroll-top {
  scroll-margin-top: 10rem;
}
@media screen and (min-width: 1100px), print {
  .u-scroll-top {
    scroll-margin-top: 16rem;
  }
}

.u-box-radius {
  border-radius: 1.5rem;
}
.u-box-radius-lg {
  border-radius: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .u-box-radius-lg {
    border-radius: 2.5rem;
  }
}
.u-box-shadow {
  box-shadow: var(--box-shadow);
}
.u-box-shadow-lg {
  box-shadow: var(--box-shadow2);
}

.u-img-radius {
  border-radius: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .u-img-radius {
    border-radius: 2.5rem;
  }
}

.u-img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  overflow: hidden;
}

.u-img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px), print {
  .u-float-md-right {
    float: right;
  }
}
.u-w-100 {
  width: 100%;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.font-feature-settings {
  font-feature-settings: "palt" 1;
}

/* ios高さ100%用 */
.full-height {
  height: calc(var(--vh, 1vh) * 100);
}
@media screen and (min-width: 768px), print {
  .full-height-md {
    height: calc(var(--vh, 1vh) * 100);
  }
}
@media screen and (min-width: 1100px), print {
  .full-height-lg {
    height: calc(var(--vh, 1vh) * 100);
  }
}

/* --------------------------------

  wrapper

-------------------------------- */
.l-wrapper {
  position: relative;
  padding-bottom: 6rem;
  background: url(../img/base/bg_01.png) repeat-x top center;
  background-size: 100rem auto;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .l-wrapper {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .l-wrapper {
    background-size: auto auto;
  }
}

/* --------------------------------

  header

-------------------------------- */
.l-header__container {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  font-size: 100%;
  z-index: 900;
}
.l-header__title {
  margin-bottom: 7rem;
  padding: 8rem 0 0 2rem;
}
@media screen and (min-width: 768px), print {
  .l-header__container {
    display: block;
    position: absolute;
    height: auto;
    background: none;
    z-index: 1010;
  }
  .l-header__title {
    padding: 12rem 0 0 4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .l-header__container {
    display: block;
    position: absolute;
    height: auto;
    background: none;
    z-index: 1010;
  }
  .l-header__title {
    margin-bottom: 10rem;
    padding: 13rem 0 0 25rem;
  }
}

/* ヘッダーロゴ */
.c-header-logo img {
  display: block;
  width: 19rem;
}
@media screen and (min-width: 768px), print {
  .c-header-logo a {
    display: block;
    position: absolute;
    top: 1.2rem;
    left: 2rem;
  }
  .c-header-logo img {
    width: 24rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-header-logo a {
    top: 3rem;
    left: 2rem;
  }
  .c-header-logo img {
    width: 26rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-header-logo a {
    top: 2.5rem;
    left: 5rem;
  }
  .c-header-logo img {
    width: 33.1rem;
  }
}

/* お問い合わせボタン（電話）*/
.c-tel-button {
  display: block;
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  cursor: pointer;
  z-index: 990;
}
@media screen and (min-width: 768px), print {
  .c-tel-button {
    display: none;
  }
}
.c-tel-button a {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-color: var(--color-main);
}
.c-tel-button a:hover {
  text-decoration: none;
}
.c-tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.65rem;
  right: 0;
  left: 0;
  width: 1.7rem;
  height: 1.7rem;
  margin: auto;
  background: url(../img/base/icon-tel_wht.svg) center no-repeat;
  background-size: cover;
}
.c-tel-button a::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 0.7rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}

/* お問い合わせボタン（メール）*/
.c-contact-button {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  padding: 0.5rem 1rem 0.5rem;
  background-color: var(--color-sub6);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  z-index: 900;
}
@media screen and (min-width: 768px), print {
  .c-contact-button {
    position: absolute;
    top: 2rem;
    right: 2rem;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    z-index: 1010;
  }
}
@media screen and (min-width: 1100px), print {
  .c-contact-button {
    top: 4rem;
    right: 2rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-contact-button {
    right: 5rem;
  }
}
.c-contact-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  border-radius: 10em;
  background-color: var(--color-hover);
  transition: background-color var(--transition);
}
@media screen and (min-width: 768px), print {
  .c-contact-button a {
    width: 18.3rem;
    height: 5rem;
  }
}
.c-contact-button a:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-contact-button a:hover {
    background-color: var(--color-link);
  }
}
.c-contact-button__label {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (min-width: 1100px), print {
  .c-contact-button__label {
    font-size: 2rem;
  }
}

/* スクロール時固定用 */
@media screen and (max-width: 767.98px) {
  .is-fixed .l-header__container {
    background-color: var(--color-sub6);
    box-shadow: var(--box-shadow);
  }
}
@media screen and (min-width: 768px), print {
  .is-fixed .l-header__container,
  .is-fixed .c-contact-button {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
  .is-fixed .c-contact-button {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .is-fixed .c-contact-button {
    margin-top: 4rem;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.l-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -30rem;
  width: 30rem;
  height: 100%;
  z-index: 1000;
}
.l-nav__container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  z-index: 10;
}
.l-nav__info {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px), print {
  .l-nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
  }
  .l-nav__container {
    padding: 7rem 0 0;
    background-color: transparent;
    overflow: visible;
  }
  .l-nav__info {
    display: none;
  }
}
@media screen and (min-width: 1100px), print {
  .l-nav__container {
    display: flex;
    padding: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .l-nav {
    transition: left 0.3s;
  }
  .nav-open .l-nav {
    left: 0;
  }
}

/* メインナビ */
.c-nav {
  padding: 6rem 0 0;
}
.c-nav__item {
  position: relative;
}
.c-nav__link {
  display: flex;
  align-items: center;
  position: relative;
  height: 6rem;
  padding: 0 1.75rem;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-text);
}
.c-nav__link:hover {
  text-decoration: none;
  color: var(--color-link);
}
.c-nav__item--entry {
  display: none;
}
@media screen and (min-width: 768px), print {
  .c-nav {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 4rem;
  }
  .c-nav__link {
    flex-direction: column;
    justify-content: center;
    height: 5rem;
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .c-nav {
    margin: 0 0 0 auto;
    padding: 4rem 22.3rem 4rem 0;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 2rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-nav {
    padding-right: 25.3rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-nav__item {
    border-bottom: 1px solid var(--color-sub5);
  }
  .c-nav__item:first-child {
    border-top: 1px solid var(--color-sub5);
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .c-nav__link:hover {
    color: var(--color-link);
  }
}

/* 園の情報 */
.c-nav-info__logo {
  width: 26rem;
  margin: 0 auto 2.5rem;
}
.c-nav-info__entry {
  font-size: 2rem;
}
/* ナビゲーション開閉ボタン */
.c-nav-button {
  display: block;
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  width: 4.5rem;
  height: 4.5rem;
  line-height: 1;
  font-family: inherit;
  border-radius: 0.5rem;
  background-color: var(--color-main);
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 768px), print {
  .c-nav-button {
    display: none;
  }
}
.nav-open .c-nav-button {
  display: none;
}
.c-nav-button::before {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 0.7rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
.c-nav-button__icon {
  display: block;
  position: absolute;
  inset: 0;
  top: -1.4rem;
  width: 3rem;
  height: 1.4rem;
  margin: auto;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.c-nav-button__icon::before, .c-nav-button__icon::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 1px solid #fff;
}
.c-nav-button__icon::after {
  display: none;
}
.c-nav-button--close {
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 767.98px) {
  .nav-open .c-nav-button--close {
    display: block;
  }
}
.c-nav-button--close::before {
  content: "CLOSE";
}
.c-nav-button--close .c-nav-button__icon {
  border: none;
}
.c-nav-button--close .c-nav-button__icon::before {
  transform: rotate(30deg);
}
.c-nav-button--close .c-nav-button__icon::after {
  display: block;
  transform: rotate(-30deg);
}

/* ナビゲーション背景 */
@media screen and (min-width: 768px), print {
  .o-nav-screen {
    display: none;
  }
}
.o-nav-screen__overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-open .o-nav-screen__overlay {
  pointer-events: auto;
  opacity: 0.35;
  cursor: pointer;
}

/* スクロール時固定用 */
@media screen and (min-width: 768px), print {
  .is-fixed .l-nav {
    position: fixed;
    top: -60px;
    box-shadow: var(--box-shadow);
    background-color: var(--color-sub7);
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}

/* --------------------------------

  main

-------------------------------- */
.l-main {
  padding: 0 2rem 10rem;
}
@media screen and (min-width: 1100px), print {
  .l-main {
    padding: 0 5rem 15rem;
  }
}

/* --------------------------------

  footer

-------------------------------- */
.l-footer {
  background-color: var(--color-main);
}
.l-footer__logo {
  position: relative;
  top: -8rem;
  margin-bottom: -8rem;
  padding-top: 2rem;
  overflow: hidden;
}
.l-footer__logo::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 50%;
  width: 40rem;
  border-radius: 100%;
  background-color: var(--color-main);
  pointer-events: none;
  transform: translateX(-50%);
}
.l-footer__nav {
  padding: 3.5rem 0;
}
@media screen and (min-width: 1100px), print {
  .l-footer {
    padding: 0 5rem;
  }
  .l-footer__logo {
    top: -11rem;
    margin-bottom: -11rem;
    padding-top: 3rem;
  }
  .l-footer__logo::before {
    width: 72rem;
  }
  .l-footer__nav {
    padding: 5rem 0;
  }
}

/* フッターロゴ */
.c-footer-logo {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 20rem;
}
@media screen and (min-width: 1100px), print {
  .c-footer-logo {
    width: 26.7rem;
  }
}

/* フッターナビ */
.c-footer-nav {
  text-align: center;
}
.c-footer-nav__item + .c-footer-nav__item {
  margin-top: 1.5rem;
}
.c-footer-nav__link {
  line-height: 1.25;
  font-size: 1.4rem;
  color: #fff;
}
.c-footer-nav__link:hover {
  color: #fff;
  text-decoration: underline;
}
@media screen and (min-width: 768px), print {
  .c-footer-nav {
    display: flex;
    justify-content: center;
  }
  .c-footer-nav__item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-footer-nav__item + .c-footer-nav__item {
    margin-top: 0;
    padding-left: 1rem;
  }
  .c-footer-nav__item + .c-footer-nav__item::before {
    content: "";
    display: block;
    width: 1px;
    height: 1.25rem;
    margin-right: 1rem;
    background-color: #fff;
  }
  .c-footer-nav__link {
    display: grid;
    place-content: center;
    flex: 1;
    height: 2.2rem;
    font-size: 1.3rem;
    letter-spacing: normal;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-nav__item + .c-footer-nav__item {
    padding-left: 2rem;
  }
  .c-footer-nav__item + .c-footer-nav__item::before {
    margin: 0.25rem 2rem 0 0;
  }
  .c-footer-nav__link {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}

/* ページの先頭へ */
.c-footer-pagetop {
  display: block;
  position: fixed;
  right: 1rem;
  bottom: 6.75rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-footer-pagetop {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 5rem;
    height: 5rem;
  }
}
.is-fixed .c-footer-pagetop {
  opacity: 1;
  pointer-events: auto;
}
.c-footer-pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: var(--color-base);
  transition: background-color var(--transition);
}
.c-footer-pagetop a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-pagetop a:hover {
    background-color: var(--color-hover);
  }
}
.c-footer-pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* コピーライト */
.c-footer-copy {
  display: grid;
  place-content: center;
  text-align: center;
  height: 6rem;
  border-radius: 3rem 3rem 0 0;
  background-color: var(--color-sub4);
}
.c-footer-copy small {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  color: #fff;
}
.c-footer-copy span {
  display: none;
}
@media screen and (min-width: 768px), print {
  .c-footer-copy {
    height: 8rem;
  }
  .c-footer-copy span {
    display: inline;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-copy {
    border-radius: 5rem 5rem 0 0;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.c-page-title {
  border-radius: 1.5rem 0 0 1.5rem;
  background-color: var(--color-sub2);
  background-repeat: no-repeat;
  background-position: 70% 50%;
  background-size: cover;
}
.c-page-title__container {
  display: flex;
  align-items: center;
  position: relative;
  aspect-ratio: 25/8;
}
.c-page-title__heading {
  margin-left: -2rem;
  line-height: 1.2;
  padding: 0.7ch 1ch 0.8ch;
  font-size: calc(2rem + 2vw);
  letter-spacing: normal;
}
@media screen and (min-width: 768px), print {
  .c-page-title {
    border-radius: 3rem 0 0 3rem;
    background-position: center;
  }
  .c-page-title__container {
    aspect-ratio: auto;
    height: 20rem;
  }
  .c-page-title__heading {
    margin-left: -4rem;
    padding: 0.6ch 1ch 0.7ch;
    font-size: 4rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1100px), print {
  .c-page-title {
    border-radius: 5rem 0 0 5rem;
  }
  .c-page-title__heading {
    margin-left: -20rem;
    padding: 1.2rem 2rem 1.6rem;
    font-size: 5rem;
    letter-spacing: 0.1em;
  }
}

/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
}
.loader.is-loaded {
  animation: fadeOut 1s forwards;
}
.loader.is-reloaded {
  animation: fadeOut 0.5s forwards;
}
.loader-logo {
  display: block;
  width: 26.4rem;
  opacity: 0;
  transform: translateY(100px);
}
.loader-logo.is-loaded {
  animation: fadeInUp 0.5s forwards;
}

/* --------------------------------

  アニメーション

-------------------------------- */
.js-anime {
  pointer-events: none;
}
.js-anime.is-active {
  pointer-events: auto;
}
.js-anime.fadeIn {
  opacity: 0;
}
.js-anime.fadeIn.is-active {
  animation: fadeIn 0.75s forwards;
}
.js-anime.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}
.js-anime.fadeInUp.is-active {
  animation: fadeInUp 0.75s forwards;
}
.js-anime.fadeZoomIn {
  opacity: 0;
  transform: scale(1.4);
}
.js-anime.fadeZoomIn.is-active {
  animation: fadeZoomIn 0.75s forwards;
}
.js-anime.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}
.js-anime.fadeInRight.is-active {
  animation: fadeInRight 0.75s forwards;
}
.js-anime.fadeInLeft {
  opacity: 0;
  transform: translateX(-100px);
}
.js-anime.fadeInLeft.is-active {
  animation: fadeInLeft 0.75s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    filter: blur(2px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    filter: blur(2px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}
@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(1.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    filter: blur(2px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0px);
  }
}
/* --------------------------------

  トップページ

-------------------------------- */
/* メイングラフィック */
.p-mv__section {
  margin: 0 -2rem 7rem;
}
.p-mv__container {
  padding: 6rem 0 0;
}
.p-mv__img {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  margin: 2rem 0 -2rem 2rem;
  border-radius: 1.5rem 0 0 1.5rem;
  overflow: hidden;
  opacity: 0;
}
.p-mv__img.is-loaded {
  animation: fadeIn 1s forwards;
}
.p-mv__img.is-reloaded {
  opacity: 1;
}
.p-mv__img img {
  -o-object-position: 70% 50%;
     object-position: 70% 50%;
}
.p-mv__main {
  position: relative;
  margin: 0 2rem 0 0;
  padding: 2rem 1rem 2rem 2rem;
  border-radius: 0 1.5rem 1.5rem 0;
  background-color: var(--color-sub2);
  opacity: 0;
}
.p-mv__main.is-loaded {
  animation: fadeInLeft 1s forwards;
}
.p-mv__main.is-reloaded {
  opacity: 1;
}
.p-mv__catch {
  margin: 0 -2rem 2rem;
}
.p-mv__catch-item {
  display: inline-block;
  vertical-align: top;
  padding: 0.7ch 0.5ch 0.7ch 1.5ch;
  font-size: calc(2rem + 2vw);
}
.p-mv__catch-item:first-child {
  margin-bottom: 1rem;
}
.p-mv__text {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .p-mv__container {
    position: relative;
    max-height: 100rem;
    min-height: 58rem;
    padding: 12rem 0 0 4rem;
  }
  .p-mv__img {
    aspect-ratio: auto;
    height: 100%;
    margin: 0;
    border-radius: 3rem 0 0 3rem;
  }
  .p-mv__main {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 0 3rem 4rem;
    border-radius: 0;
    background-color: transparent;
  }
  .p-mv__catch {
    margin: 0 0 3rem -4rem;
  }
  .p-mv__catch-item {
    padding: 0.5rem 0 1rem 2rem;
    font-size: 4rem;
  }
  .p-mv__text {
    margin-left: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-mv__section {
    margin: 0 -5rem 10rem;
  }
  .p-mv__container {
    padding: 13rem 0 0 25rem;
  }
  .p-mv__img {
    border-radius: 5rem 0 0 5rem;
  }
  .p-mv__main {
    padding: 0 0 5rem 5rem;
  }
  .p-mv__catch {
    margin-left: 0;
  }
  .p-mv__catch-item {
    font-size: 5rem;
    letter-spacing: 0.1em;
  }
  .p-mv__text {
    margin-left: 0;
    font-size: 2rem;
  }
}

/* 導入部 */
.p-home-intro__section {
  margin: 0 -2rem;
}
.p-home-intro__container {
  position: relative;
  padding: 0 2rem 7rem;
  overflow: hidden;
}
.p-home-intro__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% - 7rem);
  border-radius: 100% 100% 0 0;
  pointer-events: none;
}
.p-home-intro__main {
  max-width: 92rem;
  padding: 7rem 2rem 15rem;
}
.p-home-intro__main::before, .p-home-intro__main::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}
.p-home-intro__main::before {
  aspect-ratio: 177/256;
  bottom: -3rem;
  left: -1rem;
  width: 11rem;
  background-image: url(../img/top/img01_01.png);
}
.p-home-intro__main::after {
  aspect-ratio: 162/264;
  right: -1rem;
  bottom: -3rem;
  width: 10rem;
  background-image: url(../img/top/img01_02.png);
}
.p-home-intro__side {
  margin-top: 7rem;
}
.p-home-intro__text {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .p-home-intro__main {
    padding-bottom: 10rem;
  }
  .p-home-intro__main::before {
    width: 14rem;
  }
  .p-home-intro__main::after {
    width: 13rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-intro__section {
    margin: 0 -5rem;
  }
  .p-home-intro__container {
    padding: 0 5rem 10rem;
  }
  .p-home-intro__bg {
    height: calc(100% - 10rem);
  }
  .p-home-intro__main {
    max-width: 92rem;
    padding: 10rem 3rem;
  }
  .p-home-intro__main::before {
    bottom: -4.5rem;
    left: -6.5rem;
    width: 17.7rem;
  }
  .p-home-intro__main::after {
    right: -5rem;
    bottom: -4rem;
    width: 16.2rem;
  }
  .p-home-intro__side {
    margin-top: 10rem;
  }
  .p-home-intro__text {
    font-size: 2rem;
  }
}

/* メニュー */
.p-home-menu {
  display: grid;
  grid-template-columns: auto;
  gap: 2rem 1rem;
  max-width: 36rem;
  margin-inline: auto;
}
.p-home-menu__item {
  position: relative;
  padding: 2rem 0;
  transition: background-color var(--transition);
}
.p-home-menu__img {
  height: 8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.p-home-menu__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform var(--transition);
}
.p-home-menu__title {
  font-size: 1.6rem;
  line-height: 1.25;
  text-align: center;
  letter-spacing: normal;
}
.p-home-menu__title a {
  color: #fff;
}
.p-home-menu__title a:hover {
  text-decoration: none;
}
.p-home-menu__title a::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 10;
}
.p-home-menu__label {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-left: -0.5rem;
  padding-right: 2.5rem;
}
.p-home-menu__label::after {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  top: 0.1rem;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 2rem;
  background: url(../img/base/icon-arrow_wht.png) center no-repeat;
  background-size: cover;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-menu__item:hover {
    background-color: var(--color-hover);
  }
  .p-home-menu__item:hover .p-home-menu__img img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 768px), print {
  .p-home-menu {
    /* ページ非表示対応のため、元の3列表示と最大幅解除をコメントアウト */
    /* grid-template-columns: repeat(3, 1fr); */
    /* max-width: none; */
    grid-template-columns: minmax(0, 1fr);
    max-width: 36rem;
  }
  .p-home-menu__img {
    height: 10rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-menu {
    gap: 3rem;
  }
  .p-home-menu__item {
    padding: 2.5rem 0 2rem;
  }
  .p-home-menu__img {
    height: 13rem;
    margin-bottom: 2rem;
  }
  .p-home-menu__title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  .p-home-menu__label {
    margin-left: -1rem;
    padding-right: 3.5rem;
  }
  .p-home-menu__label::after {
    width: 2.5rem;
  }
}

/* こども園 */
.p-home-school__container {
  padding: 7rem 0;
}
.p-home-school__list {
  flex-wrap: wrap;
  margin: 4rem -1rem -1rem 0;
  overflow: hidden;
}
.p-home-school__item {
  width: 50%;
  padding: 0 1rem 1rem 0;
  transition: opacity var(--transition);
}
@media screen and (min-width: 768px), print {
  .p-home-school__list {
    margin: 5rem -2rem -2rem 0;
  }
  .p-home-school__item {
    padding: 0 2rem 2rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-school__container {
    max-width: 123rem;
    padding: 10rem 0;
  }
  .p-home-school__list {
    margin: 5rem -3rem -3rem 0;
  }
  .p-home-school__item {
    padding: 0 3rem 3rem 0;
  }
}

/* こども園一覧 */
.p-home-school-card {
  flex-direction: column;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.p-home-school-card__img {
  aspect-ratio: 4/3;
  background-color: #fff;
}
.p-home-school-card__img img {
  transition: transform var(--transition);
}
.p-home-school-card__main {
  display: grid;
  place-content: center;
  padding: 1.5rem 0;
}
.p-home-school-card__label {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.p-home-school-card__name {
  font-size: 1.6rem;
  letter-spacing: normal;
}
.p-home-school-card__more a:hover {
  text-decoration: none;
}
.p-home-school-card__more a::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-school-card:hover {
    opacity: 0.75;
  }
  .p-home-school-card:hover .p-home-school-card__img img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 768px), print {
  .p-home-school-card {
    flex-direction: row;
  }
  .p-home-school-card__img {
    width: 44%;
  }
  .p-home-school-card__label {
    font-size: 1.2rem;
  }
  .p-home-school-card__name {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-school-card__img {
    aspect-ratio: 3/2;
  }
  .p-home-school-card__main {
    padding: 0;
  }
  .p-home-school-card__label {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  .p-home-school-card__name {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-home-school-card__img {
    width: 50%;
  }
  .p-home-school-card__name {
    letter-spacing: 0.1em;
  }
}

/* お知らせ一覧 */
.p-news__section {
  margin: 0 -2rem;
}
.p-news__container {
  padding: 7rem 2rem;
}
.p-news__body {
  margin-top: 3rem;
  padding: 0 2rem;
}
.p-news__more {
  padding: 2.5rem 0;
}
.p-news__menu {
  max-width: 30rem;
  margin: auto;
}
.p-news__button {
  display: block;
  position: relative;
  width: 100%;
  height: 4rem;
  margin: 0 0 1rem;
  padding: 0.2rem 2rem 0 2rem;
  line-height: 1.25;
  font-weight: 700;
  font-size: 100%;
  color: #fff;
  border-radius: 10em;
  cursor: pointer;
  transition: opacity var(--transition);
}
.p-news__button::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  width: 2rem;
  margin: auto;
  background: url(../img/base/icon-arrow_wht.png) center no-repeat;
  background-size: cover;
  transform: rotate(90deg);
}
.p-news__button:hover {
  opacity: 0.75;
}
@media screen and (min-width: 768px), print {
  .p-news__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
    margin: -0.5rem;
  }
  .p-news__button {
    width: auto;
    margin: 0.5rem;
    padding-right: 4.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-news__section {
    margin: 0 -5rem;
  }
  .p-news__container {
    padding: 10rem 5rem;
  }
  .p-news__body {
    padding: 3rem 5rem;
  }
  .p-news__more {
    margin-bottom: -3rem;
    padding: 4rem 0;
  }
  .p-news__menu {
    max-width: 90rem;
    margin: -1rem auto;
  }
  .p-news__button {
    height: 4.5rem;
    margin: 1rem;
  }
  .p-news__button::before {
    width: 2.5rem;
  }
}

/* 数字で見るミッキーこども園 */
.p-home-data__container {
  padding: 7rem 0;
}
.p-home-data__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4rem -1rem -1rem 0;
}
.p-home-data__item {
  width: 50%;
  padding: 0 1rem 1rem 0;
}
@media screen and (min-width: 768px), print {
  .p-home-data__list {
    margin: 4rem -2rem -2rem 0;
  }
  .p-home-data__item {
    padding: 0 2rem 2rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-data__container {
    padding: 10rem 0;
  }
  .p-home-data__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 5rem -3rem -3rem 0;
  }
  .p-home-data__item {
    width: 33.33333%;
    padding: 0 3rem 3rem 0;
  }
}

/* 数字で見るミッキーこども園一覧 */
.p-home-data-card {
  display: grid;
  place-content: center;
  height: 100%;
  min-height: 18rem;
  padding: 2.5rem 0;
}
.p-home-data-card__value {
  margin-top: 1rem;
  line-height: 1;
  font-size: 2rem;
}
.p-home-data-card__number {
  margin-right: 0.2ch;
  font-size: 2.4em;
}
.p-home-data-card__graph {
  margin-top: 2rem;
  padding: 0 1rem;
}
@media screen and (min-width: 768px), print {
  .p-home-data-card__value {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-home-data-card {
    min-height: 22.4rem;
  }
  .p-home-data-card__title {
    font-size: 1.5rem;
  }
  .p-home-data-card__value {
    margin-top: 1.75rem;
    font-size: 2.5rem;
  }
  .p-home-data-card__graph {
    margin-top: 3rem;
  }
}

/* お問い合わせ */
.p-contact__section {
  margin: 0 -2rem -10rem;
  background: url(../img/base/bg_02.jpg) no-repeat center;
  background-size: cover;
}
.p-contact__container {
  padding: 7rem 2rem 13rem;
}
.p-contact__body {
  margin-top: 4rem;
}
@media screen and (min-width: 1100px), print {
  .p-contact__section {
    margin: 0 -5rem -15rem;
  }
  .p-contact__container {
    padding: 10rem 5rem 17rem;
  }
  .p-contact__body {
    margin-top: 5rem;
  }
}

/* --------------------------------

  お知らせ

-------------------------------- */
.news-body {
  margin-top: 2rem;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-body * {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body::after {
  content: "";
  display: table;
  clear: both;
}
.news-more {
  margin-top: 5rem;
  text-align: center;
}
.news-back {
  margin-top: 5rem;
  text-align: center;
}
.news-link {
  display: block;
  position: relative;
  padding: 2rem 0;
  line-height: 1.5;
  color: var(--color-text);
  border-bottom: 1px dashed var(--color-sub5);
}
.news-link:hover {
  text-decoration: none;
  color: var(--color-link);
}
.news-link:hover .news-title {
  text-decoration: underline;
}
.news-date {
  margin-bottom: 1rem;
}
.news-title {
  margin-top: 1.5rem;
  word-break: break-all;
  word-wrap: break-word;
}
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-category {
  display: grid;
  place-content: center;
  position: absolute;
  top: 2rem;
  right: 0;
  height: 2.2rem;
  padding: 0 1rem 0.3ch 1rem;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  border-radius: 10em;
}
.news-category-detail {
  text-align: right;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .news-link {
    display: flex;
    align-items: center;
    padding: 3rem 0;
  }
  .news-date {
    width: 12ch;
    margin-bottom: 0;
  }
  .news-category {
    position: static;
    height: 3rem;
    font-size: 1.4rem;
    padding: 0 2rem 0.2ch 2rem;
  }
  .news-title {
    flex: 1;
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .news-date {
    width: 13ch;
  }
  .news-category {
    padding: 0 3rem 0.2ch 3rem;
    font-size: 1.6rem;
  }
  .news-category-detail {
    margin-bottom: 3rem;
  }
  .news-title {
    margin-left: 3rem;
  }
  .news-body {
    margin-top: 3rem;
    line-height: 2;
  }
  .news-back {
    margin-top: 10rem;
  }
}

/* topics_paging */
#topics_paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 -2rem;
}
#topics_paging_all {
  margin-top: 5rem;
  margin-bottom: 1rem;
  text-align: center;
}
#topics_paging li {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  line-height: 1.2;
  font-size: 1.4rem;
  color: var(--color-text);
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-sub5);
  background-color: #fff;
  list-style-type: none;
  list-style-image: none;
}
#topics_paging a {
  display: block;
  margin: -0.9rem -1.3rem;
  padding: 0.9rem 1.3rem;
  color: var(--color-text);
}
#topics_paging a:hover {
  text-decoration: none;
  color: #fff;
  border-radius: 0.35rem;
  background-color: var(--color-link);
}
@media screen and (min-width: 768px), print {
  #topics_paging li {
    padding: 1rem 1.4rem;
    font-size: 1.6rem;
  }
  #topics_paging a {
    margin: -1.1rem -1.5rem;
    padding: 1.1rem 1.5rem;
  }
}

li#topics_paging_first,
li#topics_paging_last {
  padding: 0.8rem;
}
li#topics_paging_first a,
li#topics_paging_last a {
  margin: -0.9rem;
  padding: 0.9rem;
}
@media screen and (min-width: 768px), print {
  li#topics_paging_first,
  li#topics_paging_last {
    padding: 1rem;
  }
  li#topics_paging_first a,
  li#topics_paging_last a {
    margin: -1.1rem;
    padding: 1.1rem;
  }
}

#calculated_page {
  margin-left: -1rem;
}

#total_pages {
  margin-right: 1rem;
}

/* --------------------------------

  下層ページ

-------------------------------- */
/* 下層共通の導入部 */
.p-intro__container + .p-intro__container {
  margin-top: 5rem;
}
.p-intro__img {
  max-width: 48rem;
  margin: 0 auto 2rem;
}
.p-intro__heading {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
@media screen and (min-width: 1100px), print {
  .p-intro__container + .p-intro__container {
    margin-top: 10rem;
  }
  .p-intro__img {
    width: 46vw;
    max-width: none;
    margin: 0 5rem 0 calc(50% - 50vw);
  }
  .p-intro__img img {
    border-radius: 0 1.5rem 1.5rem 0;
  }
  .p-intro__heading {
    margin-bottom: 2.5rem;
    font-size: 3rem;
  }
}

/* 働く環境について */
.p-works-intro__img {
  display: grid;
  grid-template-columns: 41% 1fr;
  gap: 0.8rem;
  max-width: 60rem;
  margin: 0 auto 3rem;
}
.p-works-intro__img-main {
  aspect-ratio: 748/465;
  grid-area: 1/1/2/3;
}
.p-works-intro__img-sub1 {
  aspect-ratio: 306/204;
  grid-area: 2/1/3/2;
}
.p-works-intro__img-sub2 {
  aspect-ratio: 432/204;
  grid-area: 2/2/3/3;
}
@media screen and (min-width: 1100px), print {
  .p-works-intro {
    flex-direction: row-reverse;
  }
  .p-works-intro__img {
    width: 46vw;
    max-width: none;
    margin: 0 calc(50% - 50vw) 0 5rem;
  }
  .p-works-intro__img-main img {
    border-radius: 1.5rem 0 0 1.5rem;
  }
  .p-works-intro__img-sub1 img {
    border-radius: 1.5rem;
  }
  .p-works-intro__img-sub2 img {
    border-radius: 1.5rem 0 0 1.5rem;
  }
}

/* まずは見学にお越しください！ */
.p-intro-contact {
  margin-top: 3rem;
  gap: 0.8rem;
}
.p-intro-contact__text {
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 1.4rem;
  color: #fff;
}
.p-intro-contact__tel::before, .p-intro-contact__entry::before {
  width: 3.6rem;
}
.p-intro-contact__tel {
  font-size: 3rem;
  color: #fff;
}
.p-intro-contact__tel::before {
  background-image: url(../img/base/icon-tel_pnk.svg);
}
.p-intro-contact__entry {
  font-size: 2.5rem;
  color: #fff;
}
.p-intro-contact__entry::before {
  background-image: url(../img/base/icon-search_org.svg);
}
.p-intro-contact__link {
  background-color: var(--color-hover);
}
.p-intro-contact .tel-link {
  background-color: var(--color-link);
}
@media (hover: hover) and (pointer: fine) {
  .p-intro-contact__link:hover {
    background-color: var(--color-hover);
  }
  .p-intro-contact__link:hover .c-global-contact__text,
  .p-intro-contact__link:hover .c-global-contact__entry {
    color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-intro-contact .tel-link[href]:hover {
    background-color: var(--color-link);
  }
  .p-intro-contact .tel-link[href]:hover .c-global-contact__text,
  .p-intro-contact .tel-link[href]:hover .c-global-contact__tel {
    color: #fff;
  }
}
@media screen and (min-width: 768px), print {
  .p-intro-contact {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin-inline: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-intro-contact__link,
  .p-intro-contact .tel-link {
    padding: 2.5rem 0;
  }
}

/* 仕事内容 */
.p-works__badge {
  border: 1px solid currentColor;
}
.p-works__img {
  max-width: 28rem;
  margin: 0 auto 2rem;
}
.p-works__title {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .p-works__img {
    max-width: 36rem;
  }
  .p-works__title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-works__img {
    width: 45.8rem;
    max-width: none;
  }
  .p-works__title {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    text-align: left;
  }
  .p-works--primary {
    flex-direction: row-reverse;
  }
  .p-works--primary .p-works__img {
    margin: 0 0 0 5rem;
  }
  .p-works--secondary {
    flex-direction: row;
  }
  .p-works--secondary .p-works__img {
    margin: 0 5rem 0 0;
  }
}

/* サポート体制 */
.p-support {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.p-support__col {
  overflow: hidden;
}
.p-support__head {
  margin-bottom: 1rem;
}
.p-support__body {
  padding: 0 0.5rem 2rem;
  word-break: break-all;
  word-wrap: break-word;
}
.p-support__img {
  display: block;
  width: 100%;
  margin-bottom: 1.5rem;
}
.p-support__title {
  display: block;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px), print {
  .p-support {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-support__img {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-support__body {
    padding: 0 1rem 2.5rem;
    font-size: 2rem;
  }
  .p-support__img {
    margin-bottom: 2.5rem;
  }
  .p-support__title {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
  }
}

/* 先輩社員から */
.p-staff-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 1100px), print {
  .p-staff-list {
    gap: 3rem;
  }
}

/* 先輩社員から */
.p-staff-card__badge {
  background-color: currentColor;
}
.p-staff-card__joined {
  font-weight: 500;
  font-size: 0.7em;
  letter-spacing: 0.05em;
}
.p-staff-card__joined::before {
  content: "（";
}
.p-staff-card__joined::after {
  content: "）";
}
.p-staff-card__heading::after {
  background-color: currentColor;
}
.p-staff-card__content + .p-staff-card__content {
  margin-top: 3rem;
}
.p-staff-card__img {
  aspect-ratio: 1/1;
  margin: 0 auto 2rem;
}
.p-staff-card__img--primary {
  max-width: 28rem;
}
.p-staff-card__img--secondary {
  aspect-ratio: 350/450;
  max-width: 22rem;
}
@media screen and (min-width: 768px), print {
  .p-staff-card__joined {
    margin: 0.1em 0 0 0;
  }
  .p-staff-card__img {
    max-width: none;
  }
  .p-staff-card__img--primary {
    margin: 0 0 0 3rem;
  }
  .p-staff-card__img--secondary {
    margin: 0 3rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-staff-card__content + .p-staff-card__content {
    margin-top: 5rem;
  }
  .p-staff-card__img--primary {
    width: 45.8rem;
    margin-left: 5rem;
  }
  .p-staff-card__img--secondary {
    width: 35rem;
    margin-right: 5re;
  }
}

/* 法人情報 */
@media screen and (min-width: 768px), print {
  .p-outline th {
    width: 20rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-outline th {
    width: 30rem;
  }
}

/* 開示資料 */
.p-document__item + .p-document__item {
  margin-top: 2rem;
}
@media screen and (min-width: 1100px), print {
  .p-document {
    gap: 3rem;
  }
  .p-document__item + .p-document__item {
    margin-top: 0;
  }
}

/* 私たちの園 */
.p-school-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-school-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .p-school-list {
    gap: 3rem;
  }
}

/* 私たちの園 */
.p-school-card__badge {
  margin: 0 0 1rem;
  border: 1px solid currentColor;
}
.p-school-card__heading::after {
  background-color: currentColor;
}
.p-school-card__img {
  aspect-ratio: 435/290;
  margin-bottom: 2rem;
}
.p-school-card__more {
  margin-top: 2.5rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .p-school-card__img {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-school-card__img {
    margin-bottom: 4rem;
  }
  .p-school-card__more {
    margin-top: 3rem;
  }
}

/* 私たちの園 */
.p-school-info__row {
  padding: 0 1rem 1rem;
  border-bottom: 1px dashed var(--color-sub5);
}
.p-school-info__row + .p-school-info__row {
  padding-top: 0.75rem;
}
.p-school-info__title {
  font-size: 1.8rem;
}
.p-school-info__body {
  padding: 0.35rem 0 0 0.2rem;
}
.p-school-info__map {
  margin-top: 1rem;
}
.p-school-info__button {
  min-width: 24rem;
}
.p-school-info__tel .tel-link[href] {
  color: currentColor;
}
@media screen and (min-width: 1100px), print {
  .p-school-info__row {
    padding: 0 1.5rem 1.5rem;
  }
  .p-school-info__row + .p-school-info__row {
    padding-top: 1.5rem;
  }
  .p-school-info__head {
    width: 9rem;
  }
  .p-school-info__title {
    font-size: 2rem;
  }
  .p-school-info__body {
    padding-left: 0;
  }
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html, body {
    width: var(--inner-width);
    background: none;
  }
}
/* --------------------------------

  修正・追加用

-------------------------------- *//*# sourceMappingURL=styles.css.map */