@charset "UTF-8";
/* =========================
   Base / Reset / Variables
========================= */
/* init */
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, 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, main, summary, time, mark, audio, video, a, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  background: transparent;
  box-sizing: border-box;
}

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

ul li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

pre, code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

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

img {
  border: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
  font-size: 75%;
}

sub {
  vertical-align: text-bottom;
  font-size: 75%;
}

input, textarea, select {
  z-index: auto;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  vertical-align: middle;
}

audio:not([controls]) {
  display: none;
}

time {
  display: inline;
}

[hidden] {
  display: none;
}

input::-ms-clear, input::-ms-reveal, input:focus::-ms-clear, input:focus::-ms-reveal {
  visibility: hidden;
  display: none;
}

button::-moz-focus-inner, input[type=reset]::-moz-focus-inner, input[type=button]::-moz-focus-inner, input[type=submit]::-moz-focus-inner, input[type=file] > input[type=button]::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  outline: none;
}

button,
input[type=submit],
input[type=button],
input[type=reset] {
  cursor: pointer;
}

small {
  font-size: 85%;
}

i, em {
  font-weight: normal;
  font-style: normal;
}

b {
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Breakpoints --- */
/* --- Colors --- */
/* shade */
/* anchor */
a {
  color: #3a3a3a;
  text-decoration: underline;
}
@media (hover: hover) {
  a:hover {
    color: #e9508d;
    text-decoration: none;
  }
}

a i.icn {
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-left: 0.25em;
}

/* --- Radius --- */
/* --- Font Base Settings --- */
body, input, button, select, textarea {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #3a3a3a;
  line-height: 1;
}

input, button, select, textarea {
  color: #3a3a3a;
}

/* --- Force alignment --- */
.aCt {
  text-align: center;
}

.aLt {
  text-align: left;
}

.aRt {
  text-align: right;
}

/* --- Force display propaty --- */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .spBr {
    display: inline;
  }
  .pcBr {
    display: none;
  }
}
@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
  .spBr {
    display: none;
  }
}
html {
  scroll-padding-top: 150px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}

/* =========================
   Component
========================= */
/* 全体のコンテナ */
.pageWrapper {
  min-width: 0;
  margin: 0 auto;
  clear: both;
  line-height: 1.5;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .pageWrapper {
    padding-top: 60px;
    overflow: hidden;
  }
}

/* ===== ヘッダ（基礎） ===== */
.siteHeader {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
}
.siteHeader header {
  padding: 10px 40px;
  max-width: 1280px;
  margin: 0 auto;
  transition: all 0.3s ease;
  height: 100%;
}
.siteHeader header .siteLogo {
  display: flex;
  width: 180px;
  height: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}
.siteHeader header .siteLogo img {
  display: block;
  width: 100%;
  height: auto;
}
.siteHeader header .toggleNav {
  display: none;
}
@media (max-width: 768px) {
  .siteHeader {
    height: 60px;
  }
  .siteHeader header {
    padding: 10px 20px;
  }
  .siteHeader header .siteLogo {
    display: block;
    width: 140px;
    margin: 5px 0 0;
  }
  .siteHeader header .toggleNav {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 900;
    cursor: pointer;
    z-index: 11;
    background: none #e9508d;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
  .siteHeader header .toggleNav::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .siteHeader header .toggleNav button {
    display: block;
    text-indent: -9999px;
    background: none transparent;
    border: 0 none;
    width: 40px;
    height: 40px;
    padding: 0;
    position: relative;
  }
  .siteHeader header .toggleNav button::before, .siteHeader header .toggleNav button::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.5s ease;
  }
  .siteHeader header .toggleNav button::before {
    top: 30%;
  }
  .siteHeader header .toggleNav button::after {
    bottom: 30%;
  }
  .siteHeader header .toggleNav button.open::before, .siteHeader header .toggleNav button.open::after {
    opacity: 0;
  }
}

body.isTop .pageWrapper {
  padding-top: 150px;
}
body.isTop .siteHeader {
  height: 150px;
  box-shadow: none;
}
body.isTop .siteHeader header {
  padding: 37px 40px;
}
body.isTop .siteHeader .siteLogo {
  width: 300px;
}
body.isTop nav.globalNav {
  top: -150px;
  opacity: 0;
}
@media (max-width: 768px) {
  body.isTop .pageWrapper {
    padding-top: 60px;
  }
  body.isTop .siteHeader {
    height: 60px;
  }
  body.isTop .siteHeader header {
    padding: 10px 20px;
  }
  body.isTop .siteHeader .siteLogo {
    width: 140px;
  }
  body.isTop nav.globalNav {
    top: 60px;
    opacity: 1;
  }
}

body.is-scroll .siteHeader {
  height: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
body.is-scroll .siteHeader header {
  padding: 10px 40px;
  height: 100%;
}
body.is-scroll .siteHeader .siteLogo {
  width: 180px;
  height: 100%;
}
body.is-scroll nav.globalNav {
  top: 0;
  opacity: 1;
}
@media (max-width: 768px) {
  body.is-scroll .siteHeader {
    height: 60px;
  }
  body.is-scroll .siteHeader header {
    padding: 10px 20px;
  }
  body.is-scroll .siteHeader .siteLogo {
    width: 200px;
  }
  body.is-scroll nav.globalNav {
    top: 60px;
    opacity: 1;
  }
}

/* ===== グローバルナビ ===== */
nav.globalNav {
  height: 80px;
  margin-top: -80px;
  position: relative;
  top: 0;
  opacity: 1;
  transition: top 0.75s ease 0.3s, opacity 1s ease 0.3s;
}
nav.globalNav ul.primary {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-top: -80px;
  border-left: 1px #959595 dotted;
}
nav.globalNav ul.primary li {
  width: calc((100% - 240px) / 5);
  text-align: center;
  height: 100%;
  font-weight: 900;
  border-right: 1px #959595 dotted;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
}
nav.globalNav ul.primary li:nth-child(3) {
  margin-right: 240px;
}
nav.globalNav ul.primary li:nth-child(4) {
  border-left: 1px #959595 dotted;
}
nav.globalNav ul.primary li a {
  display: block;
  padding-top: 60px;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 56% auto;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #3a3a3a;
}
nav.globalNav ul.primary li a:hover {
  color: #e9508d;
}
nav.globalNav ul.primary li a.profile {
  background-image: url("/hoikuen/_assets/img/symbols/sun.svg");
}
nav.globalNav ul.primary li a.facility {
  background-image: url("/hoikuen/_assets/img/symbols/shoolhouse.svg");
}
nav.globalNav ul.primary li a.program {
  background-image: url("/hoikuen/_assets/img/symbols/sketch.svg");
}
nav.globalNav ul.primary li a.life {
  background-image: url("/hoikuen/_assets/img/symbols/flowers.svg");
}
nav.globalNav ul.primary li a.information {
  background-image: url("/hoikuen/_assets/img/symbols/baloon.svg");
}
nav.globalNav ul.primary li a.gallery {
  background-image: url("/hoikuen/_assets/img/symbols/bird.svg");
}
nav.globalNav ul.secondary {
  display: none;
}
@media (max-width: 768px) {
  nav.globalNav {
    position: fixed;
    top: 60px;
    margin-top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    z-index: 9;
    opacity: 1;
    padding: 20px;
    height: calc(100dvh - 60px);
    display: none;
  }
  nav.globalNav ul.primary {
    height: auto;
    margin-top: 0;
    border: 0;
    height: auto;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 20px;
  }
  nav.globalNav ul.primary li {
    width: 33.3333333333%;
    border: none;
    font-size: 1.2rem;
  }
  nav.globalNav ul.primary li:nth-child(3) {
    margin-right: 0;
  }
  nav.globalNav ul.primary li:nth-child(4) {
    border-left: none;
    letter-spacing: -0.075em;
  }
  nav.globalNav ul.primary li a {
    padding: 10vw 0px 15px 0px;
    background-size: 50% auto;
  }
  nav.globalNav ul.secondary {
    display: block;
    margin-top: 0px;
    border-top: 1px #959595 dotted;
    padding: 20px 0 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  nav.globalNav ul.secondary li {
    text-align: center;
    font-weight: 900;
  }
  nav.globalNav ul.secondary li a {
    font-size: 1.2rem;
    text-decoration: none;
    color: #3a3a3a;
  }
  nav.globalNav ul.secondary li a:hover {
    color: #e9508d;
  }
}

/* ===== フッタ ===== */
.siteFooter {
  background: url(/hoikuen/_assets/img/footBg.webp) no-repeat center top;
  margin-top: 40px;
  padding-top: 160px;
}
.siteFooter footer {
  border-top: 2px #e9508d solid;
}
.siteFooter footer ul.utils {
  padding: 15px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.siteFooter footer ul.utils li {
  margin: 0 20px;
  font-weight: 900;
}
.siteFooter footer ul.utils li a {
  text-decoration: none;
  color: #e9508d;
}
.siteFooter footer ul.utils li a:hover {
  text-decoration: underline;
}
.siteFooter footer .siteMap {
  background-color: #e9508d;
  padding: 20px 40px;
  color: #fff;
}
.siteFooter footer .siteMap .head {
  max-width: 1200px;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: 900;
}
.siteFooter footer .siteMap ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}
.siteFooter footer .siteMap ul li {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6rem 20px 0;
}
.siteFooter footer .siteMap ul li a {
  color: #fff;
  text-decoration: none;
}
.siteFooter footer .siteMap ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
.siteFooter footer .bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.siteFooter footer .bottom .copyright {
  font-size: 1.2rem;
  color: #3a3a3a;
}
.siteFooter footer .bottom .groupLogo {
  width: 100px;
}
@media (max-width: 768px) {
  .siteFooter {
    background: url(/hoikuen/_assets/img/footBg_sp.webp) no-repeat center top;
    background-size: contain;
    padding-top: 25vw;
    margin-top: 20px;
  }
  .siteFooter footer ul.utils {
    padding: 15px 5px;
    flex-wrap: wrap;
  }
  .siteFooter footer ul.utils li {
    margin: 5px 10px;
    font-size: 1.2rem;
  }
  .siteFooter footer .siteMap {
    padding: 20px;
  }
  .siteFooter footer .siteMap .head {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: center;
  }
  .siteFooter footer .siteMap ul {
    justify-content: center;
    gap: 1.5em;
  }
  .siteFooter footer .siteMap ul li {
    margin: 0;
    font-size: 1.2rem;
  }
  .siteFooter footer .bottom {
    padding: 15px 20px;
  }
  .siteFooter footer .bottom .copyright {
    font-size: 1rem;
  }
  .siteFooter footer .bottom .groupLogo {
    width: 50px;
  }
}

/* ===== Page top ===== */
.pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
  z-index: 10;
  cursor: pointer;
  display: none;
}
.pageTop:hover {
  transform: rotate(10deg);
}
@media (max-width: 768px) {
  .pageTop {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
}

/* ===== Animated class ===== */
.js-inview {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 0.75s ease;
}
.js-inview.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.mainVisual {
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}
.mainVisual img {
  display: block;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .mainVisual {
    max-width: none;
    padding: 0;
  }
  .mainVisual img {
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .pageBody .mainVisual {
    padding: 0;
    margin: -30px -20px 40px;
  }
  .pageBody .mainVisual img {
    width: 100%;
  }
}
main.pageBody {
  max-width: 1280px;
  padding: 60px 40px;
  margin: 0 auto;
}
main.pageBody h1 {
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 140px auto;
  padding-top: 85px;
  margin: 80px auto 60px;
}
main.pageBody h1.profile {
  background-image: url(/hoikuen/_assets/img/symbols/sun.svg);
}
main.pageBody h1.facility {
  background-image: url(/hoikuen/_assets/img/symbols/shoolhouse.svg);
  margin-bottom: 0;
}
main.pageBody h1.program {
  background-image: url(/hoikuen/_assets/img/symbols/sketch.svg);
}
main.pageBody h1.life {
  background-image: url(/hoikuen/_assets/img/symbols/flowers.svg);
}
main.pageBody h1.information {
  background-image: url(/hoikuen/_assets/img/symbols/baloon.svg);
}
main.pageBody h1.gallery {
  background-image: url(/hoikuen/_assets/img/symbols/bird.svg);
}
main.pageBody section {
  padding: 60px 0;
}
main.pageBody section header.regularTitle {
  position: relative;
}
main.pageBody section header.regularTitle::before {
  content: "";
  width: 100%;
  height: 4px;
  background: #e9508d;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
main.pageBody section h2 {
  font-size: 3.2rem;
  font-weight: 900;
  text-align: center;
  margin: 0 auto 60px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 2.5em;
  background: #fff;
  position: relative;
}
main.pageBody section h3.marker {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin: 50px auto 30px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5em;
  z-index: 1;
}
main.pageBody section h3.marker::before {
  content: "";
  display: block;
  width: calc(100% + 1em);
  height: 20px;
  background: #f5bdb8;
  position: absolute;
  bottom: -2px;
  left: -0.5em;
  z-index: -1;
}
main.pageBody section h3.marker:first-child {
  margin-top: 0;
}
main.pageBody section h3.plain {
  font-size: 2.8rem;
  margin: 50px auto 40px;
  font-weight: 900;
}
main.pageBody section h3.plain:first-child {
  margin-top: 0;
}
main.pageBody section h3.regular {
  font-size: 2.8rem;
  margin: 50px auto 20px;
  color: #e9508d;
  font-weight: 900;
}
main.pageBody section h3.regular:first-child {
  margin-top: 0;
}
main.pageBody section h3.activities {
  font-size: 2.8rem;
  margin: 50px auto 0;
  font-weight: 900;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  line-height: 1.4;
}
main.pageBody section h3.activities img {
  width: 100px;
  height: auto;
}
main.pageBody section h4.regular {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 900;
  color: #e9508d;
}
main.pageBody section h4.marker {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin: 50px auto 30px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5em;
  z-index: 1;
}
main.pageBody section h4.marker::before {
  content: "";
  display: block;
  width: calc(100% + 1em);
  height: 20px;
  background: #f5bdb8;
  position: absolute;
  bottom: -2px;
  left: -0.5em;
  z-index: -1;
}
main.pageBody section h4.marker:first-child {
  margin-top: 0;
}
main.pageBody section.capacitySection {
  background: url(/hoikuen/profile/img/bg01.webp) no-repeat center bottom;
  background-size: contain;
}
main.pageBody section.staffSection {
  background: url(/hoikuen/profile/img/bg02.webp) no-repeat center bottom;
  background-size: contain;
}
main.pageBody section.historySection {
  background: url(/hoikuen/profile/img/bg03.webp) no-repeat center bottom;
  background-size: contain;
}
main.pageBody section .fitCtr {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
main.pageBody section ul.fitCtr {
  text-align: left;
}
main.pageBody section ul.ind1 li {
  text-indent: -1em;
  padding-left: 1em;
}
@media (max-width: 768px) {
  main.pageBody {
    padding: 30px 20px;
  }
  main.pageBody h1 {
    font-size: 3rem;
    background-size: 100px auto;
    padding-top: 60px;
    margin: 60px auto 40px;
  }
  main.pageBody section {
    padding: 30px 0;
  }
  main.pageBody section header.regularTitle::before {
    height: 2px;
  }
  main.pageBody section h2 {
    font-size: 2.2rem;
    margin: 0 auto 30px;
    padding: 0 1em;
  }
  main.pageBody section h3.regular {
    font-size: 2.2rem;
    margin: 30px auto 20px;
  }
  main.pageBody section h3.plain {
    font-size: 2.2rem;
    margin: 30px auto 20px;
  }
  main.pageBody section h3.marker {
    font-size: 2.2rem;
    margin: 30px auto 20px;
  }
  main.pageBody section h3.activities {
    font-size: 2rem;
    margin: 40px auto 0;
    gap: 10px;
  }
  main.pageBody section h3.activities img {
    width: 60px;
    height: auto;
  }
  main.pageBody section h4.regular {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  main.pageBody section h4.marker {
    font-size: 2.2rem;
    margin: 30px auto 20px;
  }
  main.pageBody section.capacitySection {
    background: url(/hoikuen/profile/img/bg01_sp.webp) no-repeat center bottom;
    background-size: contain;
  }
  main.pageBody section.staffSection {
    background: url(/hoikuen/profile/img/bg02_sp.webp) no-repeat center bottom;
    background-size: contain;
    padding-bottom: 15vw;
  }
  main.pageBody section.historySection {
    background: url(/hoikuen/profile/img/bg03_sp.webp) no-repeat center bottom;
    background-size: contain;
  }
}

.mc {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.mc.duo .col {
  width: calc(50% - 20px);
}
.mc.trio .col {
  width: calc((100% - 80px) / 3);
}
.mc.hCtr {
  align-items: center;
}
@media (max-width: 768px) {
  .mc {
    display: block;
    margin: 20px 0;
  }
  .mc.duo .col, .mc.trio .col {
    width: 100%;
    margin-bottom: 30px;
  }
}

.panel {
  background-color: #fff;
  padding: 40px 60px;
  border: 1px #959595 solid;
  max-width: 840px;
  margin: 0 auto 40px;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.panel p:last-child {
  margin-bottom: 0;
}
.panel.highlighted {
  border: 2px #e9508d solid;
  box-shadow: none;
}
@media (max-width: 768px) {
  .panel {
    width: 100%;
    padding: 20px;
  }
}

.offset {
  max-width: 840px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .offset {
    width: 100%;
  }
}

main p {
  font-size: 1.8rem;
  line-height: 1.75;
  margin-bottom: 1.5em;
}
main p.lg {
  font-size: 2.2rem;
}
main p.highlight {
  font-weight: 900;
  font-size: 2.4rem;
}
main p.feed {
  text-align: center;
  font-size: 2rem;
  position: relative;
  padding: 0 100px;
  margin: 0 auto 40px;
  width: -moz-fit-content;
  width: fit-content;
}
main p.feed::before, main p.feed::after {
  content: "";
  width: 60px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  color: #e9508d;
}
main p.feed::before {
  left: 0;
  content: "＼";
}
main p.feed::after {
  right: 0;
  content: "／";
}
@media (max-width: 768px) {
  main p {
    font-size: 1.6rem;
  }
  main p.lg {
    font-size: 1.8rem;
  }
  main p.highlight {
    font-size: 2rem;
  }
  main p.feed {
    padding: 0 30px;
    font-size: 1.4rem;
    margin: 0 -10px 30px;
    width: calc(100% + 20px);
  }
  main p.feed::before, main p.feed::after {
    font-size: 3rem;
    width: 30px;
  }
}

main .link, main ul.links li {
  margin-bottom: 0;
}
main .link a, main ul.links li a {
  padding: 20px 0 20px 50px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: url(/hoikuen/_assets/img/arrowRed.svg) no-repeat left center;
  background-size: 40px auto;
  font-weight: 900;
  color: #3a3a3a;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  main .link a:hover, main ul.links li a:hover {
    color: #e9508d;
    background-position: 10px center;
  }
}
main .link a.accent, main ul.links li a.accent {
  background-image: url(/hoikuen/_assets/img/arrowBlue.svg);
}
@media (hover: hover) {
  main .link a.accent:hover, main ul.links li a.accent:hover {
    color: #6fb7d1;
  }
}
main .link a.viewMore, main ul.links li a.viewMore {
  background-image: url(/hoikuen/_assets/img/arrowRedDn.svg);
}
@media (hover: hover) {
  main .link a.viewMore:hover, main ul.links li a.viewMore:hover {
    color: #e9508d;
    background-position: left 60%;
  }
}
main .link a.viewLess, main ul.links li a.viewLess {
  background-image: url(/hoikuen/_assets/img/arrowRedUp.svg);
}
@media (hover: hover) {
  main .link a.viewLess:hover, main ul.links li a.viewLess:hover {
    color: #e9508d;
    background-position: left 40%;
  }
}
main .link.ctr a, main ul.links li.ctr a {
  margin: 0 auto;
}
main ul.links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  main .link a, main ul.links li a {
    padding: 15px 0 15px 40px;
    background-size: 30px auto;
  }
  main ul.links {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
main ul.pageAnchor {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
main ul.pageAnchor li {
  width: calc((100% - 60px) / 4);
}
main ul.pageAnchor li a {
  display: block;
  padding: 5px 5px 6px;
  text-align: center;
  background-color: #e9508d;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  transition: all 0.3s ease;
  border: 1px solid #e9508d;
}
@media (hover: hover) {
  main ul.pageAnchor li a:hover {
    background-color: #fff;
    color: #e9508d;
  }
}
@media (max-width: 768px) {
  main ul.pageAnchor {
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding: 0 10px;
    justify-content: flex-start;
  }
  main ul.pageAnchor li {
    width: calc(50% - 5px);
    font-size: 1.4rem;
  }
}

.newsList {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 1.5;
}
.newsList dt {
  width: 8em;
  margin: 0 0 1.5em 0;
}
.newsList dd {
  width: calc(100% - 8em);
  margin: 0 0 1.5em 0;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .newsList {
    display: block;
    font-size: 1.4rem;
  }
  .newsList dt, .newsList dd {
    width: 100%;
  }
  .newsList dt {
    margin-bottom: 0;
  }
  .newsList dd {
    padding-left: 0;
  }
}

.splide__track#photoGallery-track {
  overflow: visible;
}

ul.photoList,
.splide.is-initialized:not(.is-active) ul.splide__list.photoList {
  max-width: 1280px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 40px;
}
ul.photoList li,
.splide.is-initialized:not(.is-active) ul.splide__list.photoList li {
  width: calc((100% - 80px) / 3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 25px 60px 25px 25px;
}
ul.photoList li a,
.splide.is-initialized:not(.is-active) ul.splide__list.photoList li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  background-color: #fff;
  border-radius: 25px 60px 25px 25px;
  overflow: hidden;
  color: #e9508d;
  height: 100%;
}
ul.photoList li a .img,
.splide.is-initialized:not(.is-active) ul.splide__list.photoList li a .img {
  height: 350px;
  overflow: hidden;
}
ul.photoList li a .img img,
.splide.is-initialized:not(.is-active) ul.splide__list.photoList li a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
ul.photoList li a .content,
.splide.is-initialized:not(.is-active) ul.splide__list.photoList li a .content {
  padding: 20px;
  height: calc(100% - 350px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
ul.photoList li a .content .title,
.splide.is-initialized:not(.is-active) ul.splide__list.photoList li a .content .title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 10px;
}
ul.photoList li a .content .date,
.splide.is-initialized:not(.is-active) ul.splide__list.photoList li a .content .date {
  font-size: 1.2rem;
  text-align: right;
}
@media (hover: hover) {
  ul.photoList li a:hover .img img,
  .splide.is-initialized:not(.is-active) ul.splide__list.photoList li a:hover .img img {
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  ul.photoList,
  .splide.is-initialized:not(.is-active) ul.splide__list.photoList {
    max-width: calc(100% - 40px);
    -moz-column-gap: 0;
         column-gap: 0;
  }
  ul.photoList li,
  .splide.is-initialized:not(.is-active) ul.splide__list.photoList li {
    width: 100%;
  }
  ul.photoList li a .img,
  .splide.is-initialized:not(.is-active) ul.splide__list.photoList li a .img {
    height: 64vw;
  }
  ul.photoList li a .content,
  .splide.is-initialized:not(.is-active) ul.splide__list.photoList li a .content {
    height: calc(100% - 64vw);
  }
}

ul.photoList {
  flex-wrap: wrap;
}

div.photoGallery ul.photoList {
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .splide.photoGallery {
    margin-left: 20px;
  }
  .splide__arrows {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 40px;
    z-index: 1;
    pointer-events: none;
  }
  .splide__arrows .splide__arrow {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 0 none;
    position: absolute;
    z-index: 100;
    pointer-events: auto;
  }
  .splide__arrows .splide__arrow::before {
    font-size: 20px;
    color: #fff;
  }
  .splide__arrows .splide__arrow.splide__arrow--prev {
    left: -30px;
    transform: rotate(180deg);
  }
  .splide__arrows .splide__arrow.splide__arrow--next {
    right: 10px;
  }
  .splide__arrows .splide__arrow svg {
    fill: #6fb7d1;
  }
}
table.regularTable {
  width: 100%;
  line-height: 1.5;
  border-top: 1px #959595 solid;
  margin-bottom: 40px;
  font-size: 1.8rem;
}
table.regularTable th, table.regularTable td {
  border-bottom: 1px #959595 solid;
  padding: 15px;
  vertical-align: top;
}
table.regularTable th {
  font-weight: 900;
  padding-left: 0;
}
table.regularTable.narrow {
  width: 600px;
  margin: 0 auto 40px;
}
table.regularTable.history {
  width: 840px;
  margin: 0 auto 40px;
}
table.regularTable.history th {
  white-space: nowrap;
}
@media (max-width: 768px) {
  table.regularTable {
    font-size: 1.6rem;
  }
  table.regularTable th, table.regularTable td {
    padding: 10px;
  }
  table.regularTable th {
    padding-left: 0;
  }
  table.regularTable td {
    padding-right: 0;
  }
  table.regularTable.narrow, table.regularTable.history {
    width: 100%;
  }
}

.capacity {
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin: 0 auto 40px;
}
.capacity table {
  border-top: 1px #bdbdbd solid;
  width: 100%;
}
.capacity table th, .capacity table td {
  border-bottom: 1px #bdbdbd solid;
  padding: 15px;
  font-size: 1.8rem;
  vertical-align: top;
}
.capacity table th {
  padding-left: 0;
  text-align: left;
}
.capacity table th b {
  font-weight: 900;
}
@media (max-width: 768px) {
  .capacity {
    display: block;
    padding: 0 30px;
  }
  .capacity table {
    width: 100%;
  }
  .capacity table th, .capacity table td {
    padding: 10px 0;
    font-size: 1.6rem;
  }
  .capacity table td {
    text-align: right;
  }
  .capacity table + table {
    border-top: 0;
  }
}

ul.regular {
  margin: 0 0 40px 1.5em;
}
ul.regular li {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
  list-style: disc;
}
ul.imgArray {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
ul.imgArray li {
  width: calc(50% - 20px);
}
ul.imgArray li img {
  display: block;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
ul.imgArray li p {
  text-align: center;
  margin-top: 10px;
}
ul.imgArray li h3.point {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 2.2rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
  margin-bottom: -10px;
  padding-left: 10px;
}
ul.imgArray li h3.point img {
  border-radius: 0;
  box-shadow: none;
  width: 80px;
}
@media (max-width: 768px) {
  ul.imgArray {
    display: block;
  }
  ul.imgArray li {
    width: 100%;
    margin-bottom: 30px;
  }
  ul.imgArray li img {
    width: 100%;
    height: auto;
  }
  ul.imgArray li h3.point {
    font-size: 1.8rem;
    margin-bottom: 5px;
    padding-left: 5px;
    line-height: 1.2;
    gap: 5px;
  }
  ul.imgArray li h3.point img {
    width: 50px;
  }
}

ol {
  margin: 0 0 40px 1.5em;
}
ol li {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
ol.parenthesis {
  counter-reset: paren;
  margin-left: 0;
}
ol.parenthesis li {
  position: relative;
  list-style: none;
  padding-left: 2em;
}
ol.parenthesis li::before {
  counter-increment: paren;
  content: "(" counter(paren) ")";
  position: absolute;
  left: 0;
  top: 0;
}

img.round {
  border-radius: 25px;
}
img.shade {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pageBody article.terms {
  max-width: 840px;
  margin: 0 auto 40px;
}
.pageBody article.terms h1 {
  margin: 0 0 40px;
  padding: 0;
}
.pageBody article.terms h2 {
  font-size: 2.4rem;
  text-align: left;
  margin: 0 0 20px;
  padding: 0;
  width: auto;
}
.pageBody article.terms h3 {
  font-size: 2rem;
  margin: 0 0 20px;
  font-weight: 900;
}
.pageBody article.terms p {
  margin-bottom: 1.5em;
}
.pageBody article.terms p:last-child {
  margin-bottom: 0;
}
.pageBody article.terms p b {
  font-weight: 900;
}
@media (max-width: 768px) {
  .pageBody article.terms h1 {
    font-size: 2.4rem;
    margin: 0 0 30px;
  }
  .pageBody article.terms h2 {
    font-size: 2rem;
    margin: 0 0 15px;
  }
  .pageBody article.terms h3 {
    font-size: 1.8rem;
    margin: 0 0 15px;
  }
  .pageBody article.terms p {
    font-size: 1.6rem;
    margin-bottom: 1.2em;
  }
  .pageBody article.terms li {
    font-size: 1.6rem;
  }
}

.aboutMontessori {
  background: url(/hoikuen/program/img/bg01.webp) no-repeat center center;
  background-size: 90%;
  margin-bottom: 80px;
}

ol.montessoriFeatures {
  margin: 80px 0;
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
ol.montessoriFeatures li {
  list-style: none;
  width: calc(50% - 20px);
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 25px;
}
ol.montessoriFeatures li h4 {
  margin-bottom: 10px;
}
ol.montessoriFeatures li h4 img {
  height: 60px;
  width: auto;
}
ol.montessoriFeatures li p {
  margin-bottom: 0.75em;
}
ol.montessoriFeatures li p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  ol.montessoriFeatures {
    margin: 40px 0;
    display: block;
  }
  ol.montessoriFeatures li {
    width: 100%;
    margin-bottom: 30px;
    padding: 15px;
  }
  ol.montessoriFeatures li h4 {
    margin-bottom: 5px;
  }
  ol.montessoriFeatures li h4 img {
    height: 40px;
  }
}

div.photo {
  margin-bottom: 10px;
}

.pageBody section.timetable {
  background: url(/hoikuen/life/img/bg01.webp) no-repeat center bottom;
  background-size: contain;
  padding-bottom: 120px;
  margin-bottom: 40px;
}
.pageBody section.timetable table {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 40px;
  border-top: 2px #e9508d solid;
  font-size: 1.8rem;
}
.pageBody section.timetable table th, .pageBody section.timetable table td {
  border-bottom: 2px #e9508d solid;
  padding: 20px 30px;
  vertical-align: middle;
}
.pageBody section.timetable table th {
  font-weight: 900;
  background-color: #f8e4e7;
  color: #e9508d;
  font-size: 2rem;
  width: 35%;
  padding: 20px;
}
.pageBody section.timetable table th img {
  width: 70px;
  height: auto;
  vertical-align: middle;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .pageBody section.timetable {
    background: url(/hoikuen/life/img/bg01_sp.webp) no-repeat center 80px, url(/hoikuen/life/img/bg01-2_sp.webp) no-repeat center bottom;
    background-size: contain;
    padding: 12vw 0;
    margin-bottom: 0;
  }
  .pageBody section.timetable table {
    margin-top: 80px;
  }
  .pageBody section.timetable table th, .pageBody section.timetable table td {
    padding: 10px 0 10px 10px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .pageBody section.timetable table th {
    width: 33%;
    position: relative;
    font-size: 1.6rem;
    padding: 10px 5px 10px 45px;
  }
  .pageBody section.timetable table th img {
    width: 30px;
    margin-right: 0;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.mc.guideline .col {
  padding-left: 120px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100px auto;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mc.guideline .col.age0 {
  background-image: url(/hoikuen/information/img/age0.webp);
}
.mc.guideline .col.age1 {
  background-image: url(/hoikuen/information/img/age1.webp);
}
.mc.guideline .col.age2 {
  background-image: url(/hoikuen/information/img/age2.webp);
}
.mc.guideline .col.age3 {
  background-image: url(/hoikuen/information/img/age3.webp);
}
.mc.guideline .col h4 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0;
}
.mc.guideline .col p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .mc.guideline .col {
    padding-left: 105px;
    background-size: 90px auto;
    min-height: 90px;
  }
  .mc.guideline .col h4 {
    font-size: 1.8rem;
  }
  .mc.guideline .col p {
    line-height: 1.5;
  }
}

.infoBgInner {
  background: url(/hoikuen/information/img/bg01.webp) no-repeat center center;
  background-size: contain;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .infoBgInner {
    background: url(/hoikuen/information/img/bg01_sp.webp) no-repeat center 15vw, url(/hoikuen/information/img/bg01-2_sp.webp) no-repeat center 200vw;
    background-size: contain;
    padding: 80px 0 0;
  }
}

.viewBtns p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.pageBody.photoGalleryDetail .catLabel {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.pageBody.photoGalleryDetail h1 {
  margin-bottom: 40px;
  margin: 0;
  padding: 0;
}
.pageBody.photoGalleryDetail .eventDate {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
  font-weight: 900;
}
.pageBody.photoGalleryDetail ul.galleryImages {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}
.pageBody.photoGalleryDetail ul.galleryImages li {
  width: calc(50% - 20px);
}
.pageBody.photoGalleryDetail ul.galleryImages li .img {
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: #eee;
}
.pageBody.photoGalleryDetail ul.galleryImages li .img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.pageBody.photoGalleryDetail ul.galleryImages li p {
  margin-top: 10px;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .pageBody.photoGalleryDetail ul.galleryImages {
    margin-bottom: 30px;
  }
  .pageBody.photoGalleryDetail ul.galleryImages li {
    width: 100%;
  }
}
.pageBody.photoGalleryDetail h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0 auto 40px;
}
.pageBody.photoGalleryDetail .return {
  text-align: center;
  margin-top: 60px;
}
.pageBody.photoGalleryDetail .return p a {
  margin: 0 auto;
}

main.toppage .mainVisual {
  margin-bottom: 40px;
  width: 100%;
  overflow: hidden;
  position: relative;
  max-width: none;
  padding: 0;
}
main.toppage .mainVisual .mainSlide {
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 40px;
  z-index: 1;
}
main.toppage .mainVisual::before {
  content: "";
  display: block;
  width: 100%;
  height: 140px;
  background: #e9508d;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
main.toppage h1 {
  padding: 0 100px;
  max-width: 1280px;
  margin: 0 auto;
}
main.toppage article {
  margin: 0 auto;
}
main.toppage article h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: center;
}
main.toppage article section {
  padding: 60px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
main.toppage article section .mc {
  align-items: center;
}
main.toppage article section.program {
  background: url(/hoikuen/img/bg01.webp) no-repeat right bottom;
}
main.toppage article section.program .col.img {
  position: relative;
}
main.toppage article section.program .col.img h2.v {
  position: absolute;
  left: 60px;
  top: 0;
  height: 100%;
  font-size: 2.8rem;
  font-weight: 900;
  writing-mode: vertical-rl;
}
main.toppage article section.news {
  background: url(/hoikuen/img/bg02.webp) no-repeat 40px 90%;
  padding-bottom: 200px;
}
main.toppage article section.news h2 {
  margin-bottom: 40px;
  background: url(/hoikuen/_assets/img/symbols/trumpet.svg) no-repeat center top;
  padding-top: 60px;
  background-size: 80px auto;
  text-align: center;
}
main.toppage article section.gallery h2 {
  margin-bottom: 60px;
  background: url(/hoikuen/_assets/img/symbols/bird.svg) no-repeat center top;
  padding-top: 60px;
  background-size: 80px auto;
  text-align: center;
  color: #6fb7d1;
}
main.toppage article section.life h2 {
  margin-bottom: 60px;
  background: url(/hoikuen/_assets/img/symbols/flowers.svg) no-repeat center top;
  padding-top: 60px;
  background-size: 80px auto;
  text-align: center;
  color: #e9508d;
}
main.toppage article section.life p.img img {
  width: 60%;
  height: auto;
}
main.toppage article section.information h2 {
  margin-bottom: 60px;
  background: url(/hoikuen/_assets/img/symbols/baloon.svg) no-repeat center top;
  padding-top: 60px;
  background-size: 80px auto;
  text-align: center;
  color: #6fb7d1;
}
main.toppage article section.information p.img img {
  width: 60%;
  height: auto;
}
main.toppage article .link a {
  margin-top: 40px;
}
main.toppage .accessmap {
  width: 100%;
  padding: 60px 0 0;
}
main.toppage .accessmap h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: center;
}
main.toppage .accessmap iframe {
  width: 100%;
  height: 500px;
  border: 0;
}
main.toppage .accessmap .address {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 40px;
}
main.toppage .bgBlock {
  background-color: #e8f5fd;
}
@media (max-width: 768px) {
  main.toppage .topMain {
    display: flex;
    flex-direction: column-reverse;
  }
  main.toppage .mainVisual {
    margin-bottom: 0;
    margin-top: -5vw;
  }
  main.toppage .mainVisual .mainSlide {
    width: auto;
    margin: 0 auto;
    padding: 0;
  }
  main.toppage .mainVisual .mainSlide img {
    border-radius: 0;
  }
  main.toppage .mainVisual::before {
    content: none;
  }
  main.toppage h1 {
    padding: 0;
    max-width: none;
    position: relative;
    z-index: 2;
    margin-top: 30px;
  }
  main.toppage article h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  main.toppage article section {
    padding: 40px 20px;
    max-width: none;
  }
  main.toppage article section.program {
    background: url(/hoikuen/img/bg01_sp.webp) no-repeat center bottom;
    background-size: 90vw auto;
    padding-bottom: 20vw;
  }
  main.toppage article section.program .col.img {
    margin-bottom: 20px;
  }
  main.toppage article section.program .col.img h2.v {
    position: absolute;
    left: 30px;
    top: 0;
    height: 100%;
    font-size: 2rem;
  }
  main.toppage article section.news {
    background: none;
    padding-bottom: 40px;
  }
  main.toppage article section.news h2 {
    margin-bottom: 20px;
    padding-top: 40px;
    background-size: 60px auto;
    text-align: center;
  }
  main.toppage article section.gallery h2 {
    margin-bottom: 30px;
    padding-top: 40px;
    background-size: 60px auto;
    text-align: center;
    color: #6fb7d1;
  }
  main.toppage article section.life h2 {
    margin-bottom: 30px;
    padding-top: 40px;
    background-size: 60px auto;
    text-align: center;
    color: #e9508d;
  }
  main.toppage article section.life p.img img {
    width: 100%;
  }
  main.toppage article section.information h2 {
    margin-bottom: 30px;
    background: url(/hoikuen/_assets/img/symbols/baloon.svg) no-repeat center top;
    padding-top: 40px;
    background-size: 60px auto;
    text-align: center;
    color: #6fb7d1;
  }
  main.toppage article section.information p.img img {
    width: 100%;
  }
  main.toppage article .link a {
    margin-top: 20px;
  }
  main.toppage .accessmap {
    padding: 40px 0;
  }
  main.toppage .accessmap h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  main.toppage .accessmap iframe {
    height: 350px;
  }
  main.toppage .accessmap .address {
    width: auto;
    padding: 20px;
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */