@charset "UTF-8";
/* reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* base styles */
:root {
  color-scheme: light;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  font-size: 62.5%;
  /* 游ゴシック体 */
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
}

body {
  color: #222;
  margin: 0;
  line-height: inherit;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  background: #fff;
}
@media (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.u-center {
  text-align: center;
}
.u-right {
  text-align: right;
}

.u-br-pc {
  display: none;
}
@media (min-width: 768px) {
  .u-br-pc {
    display: inline;
  }
  .u-br-sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
  
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-mt-lg {
  margin-top: 3rem;
}

.u-list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.u-list-reset li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.u-over {
  transition: 0.3s ease;
}

.u-over:hover {
  opacity: 0.7;
}

.u-color-green {
  color: #48bb6b !important;
}

.u-color-blue {
  color: #2484a0 !important;
}

.u-color-lightblue {
  color: #3ed2e3 !important;
}

.u-color-yellow {
  color: #dba000 !important;
}

.u-color-pink {
  color: #ff677a !important;
}
.u-color-brown {
  color: #dba000 !important;
}

.u-bg-white {
  background: #fff;
}

.u-bg-blue {
  background: #eef9fa;
}

.u-bg-pat {
  background: url(../img/bg-pat.png) left bottom repeat-x;
  background-size: 1400px 330px;
  padding-bottom: 380px;
}
@media (max-width: 767px) {
  .u-bg-pat {
    background-size: 700px 165px;
  }
}

.u-bg-pat-up {
  background: url(../img/bg-pat.png) left top repeat-x;
  background-size: 1400px 330px;
  padding-bottom: 380px;
}
@media (max-width: 767px) {
  .u-bg-pat-up {
    background-size: 700px 165px;
  }
}

.u-font-lg {
  font-size: 2.4rem !important;
}

.l-wrap {
  position: relative;
  overflow: hidden;
}

.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  height: 170px;
  box-sizing: border-box;
  padding-top: 1px;
  z-index: 20;
}
@media (max-width: 767px) {
  .l-header {
    height: 80px;
  }
}

.l-main {
  position: relative;
  padding-top: 170px;
}
@media (max-width: 767px) {
  .l-main {
    padding-top: 80px;
  }
}

.l-sidebar {
  background: #ddd;
}

.l-footer {
  position: relative;
  background: #6e93c5;
  color: #fff;
}

.l-container {
  position: relative;
}

.l-content {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .l-content {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.c-ic-contact {
  background: url(../img/ic-contact.png) 0 0 no-repeat;
  background-size: contain;
  width: 40px;
  height: 27px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

@keyframes stick-pop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.c-stick {
  position: absolute;
}
@media (max-width: 767px) {
  .c-stick {
    transform: scale(0.5) !important;
  }
}
.c-stick--grape {
  background: url(../img/stick-grape.png) 0 0 no-repeat;
  background-size: contain;
  width: 67px;
  height: 79.5px;
}
.c-stick--sun {
  background: url(../img/stick-sun.png) 0 0 no-repeat;
  background-size: contain;
  width: 126px;
  height: 126px;
}
.c-stick--tree-3 {
  background: url(../img/stick-tree-3.png) 0 0 no-repeat;
  background-size: contain;
  width: 128px;
  height: 115px;
}
.c-stick--flower-1 {
  background: url(../img/stick-flower-1.png) 0 0 no-repeat;
  background-size: contain;
  width: 59.5px;
  height: 130px;
}
.c-stick--chara-2 {
  background: url(../img/stick-chara-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 108px;
  height: 119px;
}
.c-stick--chara-2-r {
  background: url(../img/stick-chara-2-r.png) 0 0 no-repeat;
  background-size: contain;
  width: 124px;
  height: 124px;
}
.c-stick--butter {
  background: url(../img/stick-butter.png) 0 0 no-repeat;
  background-size: contain;
  width: 76.5px;
  height: 71px;
}
.c-stick--tree-grass {
  background: url(../img/stick-tree-grass.png) 0 0 no-repeat;
  background-size: contain;
  width: 242px;
  height: 128px;
}
.c-stick--tree-grass-2 {
  background: url(../img/stick-tree-grass-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 298px;
  height: 137.5px;
}
.c-stick--bug {
  background: url(../img/stick-bug.png) 0 0 no-repeat;
  background-size: contain;
  width: 66.5px;
  height: 70.5px;
}
.c-stick--footer-l {
  background: url(../img/stick-footer-l.png) 0 0 no-repeat;
  background-size: contain;
  width: 222px;
  height: 135px;
  left: 0;
  top: -85px;
}
@media (max-width: 767px) {
  .c-stick--footer-l {
    transform-origin: left top;
    top: -42px;
  }
}
.c-stick--footer-r {
  background: url(../img/stick-footer-r.png) 0 0 no-repeat;
  background-size: contain;
  width: 262px;
  height: 131px;
  right: 0;
  top: -131px;
}
@media (max-width: 767px) {
  .c-stick--footer-r {
    transform-origin: right top;
    top: -65px;
  }
}
.c-stick--footer-bottom-l {
  background: url(../img/footer-stick-bottom-l.png) 0 0 no-repeat;
  background-size: contain;
  width: 183px;
  height: 151px;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .c-stick--footer-bottom-l {
    transform-origin: left bottom;
    bottom: 0;
  }
}
.c-stick--footer-bottom-r {
  background: url(../img/footer-stick-bottom-r.png) 0 0 no-repeat;
  background-size: contain;
  width: 306px;
  height: 169px;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .c-stick--footer-bottom-r {
    transform-origin: right bottom;
    bottom: 0;
  }
}
.c-stick--cloud-1 {
  background: url(../img/stick-cloud-1.png) 0 0 no-repeat;
  background-size: contain;
  width: 282.5px;
  height: 67.5px;
  right: 0;
  bottom: 0;
}
.c-stick--cloud-2 {
  background: url(../img/stick-cloud-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 260px;
  height: 120px;
  right: 0;
  bottom: 0;
}
.c-stick--page-header-l {
  background: url(../img/page-header-stick-l.png) 0 0 no-repeat;
  background-size: contain;
  width: 294px;
  height: 233px;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .c-stick--page-header-l {
    transform-origin: left bottom;
  }
}
.c-stick--page-header-r {
  background: url(../img/page-header-stick-r.png) 0 0 no-repeat;
  background-size: contain;
  width: 409px;
  height: 346px;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .c-stick--page-header-r {
    transform-origin: right bottom;
  }
}
.c-stick--castle {
  background: url(../img/stick-castle.png) 0 0 no-repeat;
  background-size: contain;
  width: 548px;
  height: 233px;
}
.c-stick--mi-1 {
  background: url(../img/stick-mi-1.png) 0 0 no-repeat;
  background-size: contain;
  width: 86px;
  height: 82px;
}
.c-stick--mi-2 {
  background: url(../img/stick-mi-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 161px;
  height: 122px;
}
.c-stick--mi-2-r {
  background: url(../img/stick-mi-2-r.png) 0 0 no-repeat;
  background-size: contain;
  width: 165px;
  height: 179px;
}
.c-stick--abc {
  background: url(../img/stick-abc.png) 0 0 no-repeat;
  background-size: contain;
  width: 389px;
  height: 295px;
}
.c-stick--lunch {
  background: url(../img/stick-lunch.png) 0 0 no-repeat;
  background-size: contain;
  width: 569px;
  height: 135px;
}
.c-stick--orange {
  background: url(../img/stick-orange.png) 0 0 no-repeat;
  background-size: contain;
  width: 63.5px;
  height: 63.5px;
}
.c-stick--coli {
  background: url(../img/stick-coli.png) 0 0 no-repeat;
  background-size: contain;
  width: 94.5px;
  height: 94.5px;
}
.c-stick--tomato {
  background: url(../img/stick-tomato.png) 0 0 no-repeat;
  background-size: contain;
  width: 101px;
  height: 124px;
}
.c-stick--fac-l {
  background: url(../img/stick-fac-l.png) 0 0 no-repeat;
  background-size: contain;
  width: 130px;
  height: 233px;
}
.c-stick--fac-r {
  background: url(../img/stick-fac-r.png) 0 0 no-repeat;
  background-size: contain;
  width: 277px;
  height: 188.5px;
}
.c-stick--blue {
  background: url(../img/stick-blue.png) 0 0 no-repeat;
  background-size: contain;
  width: 76px;
  height: 72px;
}
.c-stick--blue-2 {
  background: url(../img/stick-blue-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 74px;
  height: 57px;
}
.c-stick--tulip {
  background: url(../img/stick-tulip.png) 0 0 no-repeat;
  background-size: contain;
  width: 62px;
  height: 63px;
}
.c-stick--bird {
  background: url(../img/stick-bird.png) 0 0 no-repeat;
  background-size: contain;
  width: 148px;
  height: 131px;
}
.c-stick--bird-2 {
  background: url(../img/stick-bird-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 157px;
  height: 142px;
}
.c-stick--ham {
  background: url(../img/stick-ham.png) 0 0 no-repeat;
  background-size: contain;
  width: 48px;
  height: 56px;
}
.c-stick--mi-3 {
  background: url(../img/stick-mi-3.png) 0 0 no-repeat;
  background-size: contain;
  width: 157px;
  height: 124px;
}
.c-stick--mi-4 {
  background: url(../img/stick-mi-4.png) 0 0 no-repeat;
  background-size: contain;
  width: 179px;
  height: 149px;
}
.c-stick--pre {
  background: url(../img/c-stick--pre.png) 0 0 no-repeat;
  background-size: contain;
  width: 515px;
  height: 248px;
}
.c-stick--ohisama {
  background: url(../img/stick-ohisama.png) 0 0 no-repeat;
  background-size: contain;
  width: 540px;
  height: 270px;
}
.c-stick--ohisama-l {
  background: url(../img/c-stick--ohisama-l.png) 0 0 no-repeat;
  background-size: contain;
  width: 159px;
  height: 186px;
}
.c-stick--ohisama-r {
  background: url(../img/c-stick--ohisama-r.png) right bottom no-repeat;
  background-size: contain;
  width: 151px;
  height: 137.5px;
}
.c-stick--single-l {
  background: url(../img/stick-single-l.png) left top repeat-y;
  background-size: 116px 1218px;
  width: 116px;
  height: 100%;
}
.c-stick--single-r {
  background: url(../img/stick-single-r.png) right top repeat-y;
  background-size: 171px 1186px;
  width: 171px;
  height: 100%;
}
.c-stick--pat-1 {
  background: url(../img/stick-pat-1.png) 0 0 no-repeat;
  background-size: contain;
  width: 502px;
  height: 236px;
}
.c-stick--pat-2 {
  background: url(../img/stick-pat-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 422px;
  height: 236px;
}
.c-stick--flower-tree {
  background: url(../img/stick-flower-tree.png) 0 0 no-repeat;
  background-size: contain;
  width: 196.5px;
  height: 130px;
}

.c-list-news > li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cae4e7;
  padding: 25px 0;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .c-list-news > li {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.c-list-news__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.c-list-news__link:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  background: url(../img/bullet-circle-blue.png) 0 0 no-repeat;
  background-size: contain;
  width: 51px;
  height: 51px;
  margin-top: -25.5px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-list-news__link:after {
    width: 35px;
    height: 35px;
    margin-top: -17.5px;
  }
}
.c-list-news__link:hover:after {
  opacity: 0.7;
}
.c-list-news__link:hover ~ .c-list-news__title a {
  text-decoration: underline;
}
.c-list-news__time {
  font-size: 1.5rem;
  font-weight: 50;
  flex: 0 0 100px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .c-list-news__time {
    margin-right: 15px;
  }
}
.c-list-news__category {
  flex-shrink: 0;
  margin-right: 30px;
  z-index: 3;
}
@media (max-width: 767px) {
  .c-list-news__category {
    margin-right: 0;
  }
}
.c-list-news__category > a {
  background: #48bb6b;
  color: #fff;
  border-radius: 6px;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 140px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .c-list-news__category > a {
    font-size: 1.3rem;
    padding-top: 3px;
    padding-bottom: 3px;
    min-width: 140px;
    width: auto;
  }
}
.c-list-news__title {
  flex-grow: 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  padding-right: 65px;
}
@media (max-width: 767px) {
  .c-list-news__title {
    width: 100%;
    margin-top: 15px;
    padding-right: 35px;
  }
}
.c-list-news__title > a {
  color: #222222;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
  width: 100%;
  line-height: 1.5em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.c-list-news__title > a:hover {
  text-decoration: underline;
}

/*
<li v-for="post in posts" :key="post.id">
      <time class="c-list-news__time" :datetime="post.date">
        {{ formatDate(post.date) }}
      </time>
      <div class="c-list-news__category">
        <a :href="'/category/' + getPrimaryCategory(post)">
          {{ getPrimaryCategory(post) }}
        </a>
      </div>
      <h3 class="c-list-news__title">
        <a :href="post.link" v-html="post.title.rendered"></a>
      </h3>
    </li>
*/
.c-list-entry {
  position: relative;
}
.c-list-entry__item {
  padding: 25px 0 !important;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .c-list-entry__item {
    display: block;
    padding: 15px 0 !important;
  }
}
.c-list-entry__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.c-list-entry__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -25.5px;
  background: url(../img/bullet-circle-lightblue.png) 0 0 no-repeat;
  background-size: contain;
  width: 51px;
  height: 51px;
}
@media (max-width: 767px) {
  .c-list-entry__link::after {
    content: none;
  }
}
.c-list-entry__link:hover {
  background: #cae4e7;
  opacity: 0.3;
}
.c-list-entry__pic {
  flex: 0 0 360px;
  position: relative;
  margin-right: 40px;
}
.c-list-entry__pic img {
  width: 100%;
  height: 226px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .c-list-entry__pic {
    margin-right: 0;
  }
}
.c-list-entry__content {
  position: relative;
  padding-right: 90px;
}
@media (max-width: 767px) {
  .c-list-entry__content {
    padding-right: 0;
    padding-top: 20px;
  }
}
.c-list-entry__cat {
  display: inline-block;
  min-width: 140px;
}
.c-list-entry__cat a {
  display: block;
  text-align: center;
  color: white;
  background: #48bb6b;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 0;
}
.c-list-entry__date {
  position: absolute;
  right: 90px;
  top: 0;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-list-entry__date {
    position: relative;
    right: auto;
    margin-left: 15px;
  }
}
.c-list-entry__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222222;
  border-bottom: 1px solid #cae4e7;
  margin-top: 30px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.c-list-entry__title a {
  text-decoration: none;
  color: #222222;
}

.c-pagination {
  position: relative;
  border-top: 1px solid #cae4e7;
  padding-top: 75px;
  margin-top: 50px;
}
.c-pagination ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}
.c-pagination ul li {
  font-size: 1.8rem;
}
.c-pagination ul li a {
  color: #222222;
  text-decoration: none;
}
.c-pagination ul .current {
  color: #48bb6b;
  font-weight: bold;
}
.c-pagination ul .next {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -25.5px;
  text-indent: -9999px;
  display: block;
  background: url(../img/next.png) 0 0 no-repeat;
  background-size: contain;
  width: 51px;
  height: 51px;
  position: absolute;
}
.c-pagination ul .next:hover {
  opacity: 0.7;
}
.c-pagination ul .prev {
  position: absolute;
  left: 0;
  top: 50%;
  margin: 0;
  margin-top: -25.5px;
  text-indent: -9999px;
  display: block;
  background: url(../img/prev.png) 0 0 no-repeat;
  background-size: contain;
  width: 51px;
  height: 51px;
  position: absolute;
}
.c-pagination ul .prev:hover {
  opacity: 0.7;
}

.c-media-block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .c-media-block {
    display: block;
    margin: 35px auto;
  }
}
.c-media-block__pic {
  width: 500px;
  flex-shrink: 0;
  margin-left: -180px;
  position: relative;
}
@media (max-width: 767px) {
  .c-media-block__pic {
    width: 75%;
    margin-left: -20px;
  }
}
.c-media-block__pic--sub {
  width: 270px;
  position: absolute;
  /* right: -150px; */
  right: 0;
  top: 71%;
}
.c-media-block__pic--sub-2 {
  width: 270px;
  position: absolute;
  right: 650px;
  top: 64%;
}
@media ((min-width: 768px) and (max-width: 1090px)) {
  .c-media-block__pic--sub {
   right: 0; 
  }
  
}
@media (max-width: 767px) {
  .c-media-block__pic--sub {
    width: 135px;
    right: -35%;
    top: auto;
    bottom: -15px;
  }
  .c-media-block__pic--sub-2 {
    width: 135px;
    position: absolute;
    right: auto;
    left: 5%;
   top: auto;
   bottom: -95px;
  }
}
.c-media-block__content {
  flex-grow: 1;
  padding-left: 70px;
  width: calc(100% - 500px - 40px);
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .c-media-block__content {
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 3;
  }
}
.c-media-block__title {
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.333em;
  margin-bottom: 30px;
}
.c-media-block__title span {
  padding-left: 2em;
}
.c-media-block p {
  font-size: 1.5rem;
  line-height: 2em;
  margin-bottom: 25px;
}
.c-media-block--reverse {
  align-items: flex-start;
}
.c-media-block--reverse .c-media-block__pic {
  order: 2;
  margin-left: 0px;
  margin-right: -180px;
}
.c-media-block--reverse .c-media-block__pic--sub {
  right: auto;
  left: -150px;
  top: 85%;
}
@media (max-width: 767px) {
  .c-media-block__title {
    font-size: 2rem; 
  }
  .c-media-block--reverse .c-media-block__pic--sub {
    width: 135px;
    right: -35%;
    left: auto;
    top: auto;
    bottom: -15px;
  }
}
.c-media-block--reverse .c-media-block__content {
  order: 1;
  padding-top: 300px;
  padding-left: 0px;
  padding-right: 70px;
}
@media (max-width: 767px) {
  .c-media-block--reverse .c-media-block__content {
    padding: 0;
  }
}

.c-banner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
@media (max-width: 767px) {
  .c-banner-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
}

.c-banner {
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  z-index: 5;
  box-sizing: border-box;
  transition: 0.3s ease;
  height: 240px;
}
.c-banner__inner {
  background: rgba(110, 147, 197, 0.9);
  display: block;
  text-align: center;
  padding-top: 1px;
  padding-bottom: 30px;
  box-sizing: border-box;
  width: 50%;
  height: 90px;
  transition: 0.3s ease;
  margin: 0 auto;
}
.c-banner__inner img {
  width: 82px;
  display: block;
  margin: 0 auto;
  margin-top: -35px;
  transition: 0.3s ease;
}
.c-banner:hover .c-banner__inner {
  width: 100%;
  height: 100%;
}
.c-banner:hover .c-banner__inner img {
  margin-top: 25px;
}
.c-banner:hover {
  padding: 0;
}
.c-banner--qna {
  background: url(../img/banner-qna-2.jpg) center center no-repeat;
  background-size: cover;
}
.c-banner--contact {
  background: url(../img/banner-contact-2.jpg) center center no-repeat;
  background-size: cover;
}
.c-banner--contact .c-banner__inner {
  background: rgba(83, 187, 115, 0.9);
}

.c-section-block {
  position: relative;
}
.c-section-block--about {
  background: url(../img/top-about-1-5.jpg) center center no-repeat;
  background-size: cover;
}
.c-section-block--about .c-stick--flower-1 {
  right: -20px;
  bottom: 0;
}
.c-section-block--life {
  background: url(../img/top-about-2-3.jpg) center center no-repeat;
  background-size: cover;
}
.c-section-block--life .c-stick--tree-3 {
  right: -70px;
  bottom: 0;
}
.c-section-block--feature {
  background: url(../img/section-block-feature-3.jpg) center center no-repeat;
  background-size: cover;
}
.c-section-block--reverse .l-content {
  display: flex;
  justify-content: flex-end;
}
.c-section-block .c-stick--chara-2 {
  right: -20px;
  bottom: -30px;
  z-index: 3;
}
.c-section-block__content {
  background: #fff;
  width: 370px;
  padding-top: 22px;
  padding-bottom: 55px;
  padding-left: 35px;
  padding-right: 35px;
  position: relative;
  min-height: 520px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .c-section-block__content {
    width: 85%;
    padding-left: 20px;
    padding-right: 20px;
    background: rgba(255, 255, 255, 0.9);
  }
}
.c-section-block__title {
  text-align: left;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.33em;
}
@media (max-width: 767px) {
  .c-section-block__title {
    text-align: center;
  }
}
.c-section-block__title img {
  display: inline-block;
  width: 78px;
  vertical-align: middle;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .c-section-block__title img {
    width: 50px;
    display: block;
    margin: 0 auto 5px;
  }
}
.c-section-block__title + p {
  font-size: 1.5rem;
  line-height: 2em;
}
@media (max-width: 767px) {
  .c-section-block__title + p br {
    display: none;
  }
}
.c-section-block__btns {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .c-section-block__btns {
    margin-top: 15px;
  }
}
input.c-btn {
  appearance: none;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 15px;
  margin: 15px auto;
  font: inherit;
  color: inherit;
  cursor: pointer;
  color: #fff;
  background: #48bb6b;
  display: block;
}
.c-btn {
  position: relative;
  width: 270px;
  border-bottom: 1px solid #222;
  display: block;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  padding-left: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.c-btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  background: url(../img/bullet-circle-black.png) 0 0 no-repeat;
  background-size: contain;
  width: 51px;
  height: 51px;
  margin-top: -25.5px;
  transition: 0.3s ease;
}
.c-btn:hover {
  opacity: 0.7;
}
.c-btn:hover::after {
  right: 0;
}
.c-btn--green {
  color: #48bb6b;
  border-color: #48bb6b;
}
.c-btn--green::after {
  background: url(../img/bullet-circle-green.png) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--yellow {
  color: #dba000;
  border-color: #dba000;
}
.c-btn--yellow::after {
  background: url(../img/bullet-circle-yellow.png) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--lightblue {
  color: #3ed2e3;
  border-color: #3ed2e3;
}
.c-btn--lightblue::after {
  background: url(../img/bullet-circle-lightblue.png) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--noborder {
  border-bottom: none !important;
}

.c-bubble {
  display: inline-flex;
  overflow: visible;
}
.c-bubble__char {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 52px;
  line-height: 52px;
  margin-right: -1.3rem;
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-bubble__char {
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 2.2rem;
  }
}
.c-bubble__char::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}
.c-bubble__char__char:last-child {
  margin-right: 0;
}

.c-title-2 {
  text-align: center;
  font-weight: bold;
  color: #2484a0;
  font-size: 3rem;
  margin-bottom: 30px;
}
.c-title-2__ic {
  display: block;
  width: 78px;
  margin: 60px auto 40px;
  position: relative;
}
.c-title-2--minus .c-title-2__ic {
  margin: -60px auto 40px;
}

.c-title-3 {
  font-weight: bold;
  font-size: 2.4rem;
  margin: 70px 0 40px;
  line-height: 1.6em;
}

.c-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.c-card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  margin: 60px auto;
}
@media (max-width: 767px) {
  .c-card-grid--3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .c-card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-card__pic {
  position: relative;
  margin-bottom: 30px;
}
.c-card__pic .swiper-slide {
  width: 100% !important;
}
.c-card__pic .swiper-pagination-bullet {
  background: #fff;
}
.c-card__title {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  color: #2484a0;
}

.c-col-2 {
  display: flex;
  justify-content: space-between;
  margin: 40px auto;
}
@media (max-width: 767px) {
  .c-col-2 {
    display: block;
  }
}
.c-col-2__pic {
  position: relative;
  width: 48%;
}
@media (max-width: 767px) {
  .c-col-2__pic {
    width: 100%;
  }
}
.c-col-2__content {
  width: 48%;
}
.c-col-2__content table th {
  border-bottom: 1px solid #cae4e7;
  padding: 25px 10px;
  white-space: nowrap;
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}
.c-col-2__content table td {
  border-bottom: 1px solid #cae4e7;
  padding: 25px 10px;
}
@media (max-width: 767px) {
  .c-col-2__content {
    width: 100%;
  }
}

.c-box-border {
  background: #fff;
  border: 4px solid #ffb0d2;
  padding: 30px 40px;
}
.c-box-border--sc {
  border-width: 2px;
  padding: 5px 20px;
}
.c-box-border__title {
  font-weight: bold;
  color: #2484a0;
  font-size: 1.8rem;
}
.c-box-border p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .c-box-border {
    padding: 20px;
  }
  .c-box-border--sc {
    border-width: 2px;
    padding: 5px 20px;
  }
}

.c-tab-list {
  background: #d8eff1;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .c-tab-list {
    padding-top: 35px;
  }
}
.c-tab-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-tab-list ul li a {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  color: #3ed2e3;
  background: #f3fafb;
  display: block;
  padding: 30px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .c-tab-list ul li a {
    padding: 15px;
  }
}
.c-tab-list ul li a:hover {
  opacity: 0.7;
}
.c-tab-list ul li.is-active a {
  background: #fff;
  pointer-events: none;
}

.c-list-qna__q {
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 1px solid #cae4e7;
  position: relative;
  padding: 25px 40px;
}
@media (max-width: 767px) {
  .c-list-qna__q {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .c-list-qna__q {
    line-height: 1.6em;
  }
}
.c-list-qna__q::before {
  content: "";
  display: block;
  background: url(../img/q.png) 0 0 no-repeat;
  background-size: contain;
  width: 28.5px;
  height: 32px;
  position: absolute;
  left: 0;
  top: 15px;
}
.c-list-qna__a {
  padding: 15px 40px;
}
@media (max-width: 767px) {
  .c-list-qna__a {
    padding-right: 0;
  }
}

.c-table {
  width: 100%;
}
.c-table th {
  border-bottom: 1px solid #cae4e7;
  padding: 25px 10px;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: top;
  text-align: left;
}
.c-table--flow th {
  width: 130px;
}
.c-table td {
  border-bottom: 1px solid #cae4e7;
  padding: 25px 10px;
  font-weight: 500;
}
.c-table td iframe {
  display: block;
  width: 100%;
  margin-top: 30px;
  height: 350px;
}
.c-table td a {
  color: #2484a0;
}
.c-table__qr {
  width: 150px;
}

.c-insta {
  position: relative;
}
.c-insta__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0 55px;
}
@media (max-width: 767px) {
  .c-insta__header {
    display: block;
  }
}
.c-insta__title {
  text-align: left;
  font-weight: bold;
  font-size: 3rem;
  color: #2484a0;
}
.c-insta .c-btn {
  margin: 0;
}

.c-headline {
  font-size: 2rem;
}

.c-info-category {
  font-style: italic;
}

.p-header__text {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 767px) {
  .p-header__text {
    display: none;
  }
}
.p-header__logo {
  width: 209px;
  margin: 10px auto 0;
  position: absolute;
  left: 50%;
  margin-left: -104.5px;
  z-index: 20;
}
@media (max-width: 767px) {
  .p-header__logo {
    width: 150px;
    margin: 0 auto;
    position: relative;
    left: auto;
  }
}

.p-nav {
  position: relative;
}
@media (max-width: 767px) {
  .p-nav {
    transform: translateX(100%);
  }
}
@media (max-width: 767px) {
  .p-nav.is-active {
    transform: translateX(0%);
  }
}
.p-nav__list {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .p-nav__list {
    display: block;
  }
}
.p-nav__list > li {
  position: relative;
}
@media (max-width: 767px) {
  .p-nav__list > li {
    border-bottom: 1px solid #cae4e7;
  }
}
.p-nav__list > li a {
  color: #222;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  text-align: center;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .p-nav__list > li a {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
  }
}
.p-nav__list > li a img {
  display: block;
  width: 78px;
  margin: 0 auto 10px;
}
@media (max-width: 767px) {
  .p-nav__list > li a img {
    width: 50px;
    margin: 0 15px 0 0;
  }
}
.p-nav__list > li a:hover {
  color: #2484a0;
}
.p-nav__list > li a:hover img {
  animation: poyopoyo 2s ease-out infinite;
  animation-delay: 0;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.p-nav__list > li:nth-child(3) {
  margin-right: 150px;
}
@media (max-width: 767px) {
  .p-nav__list > li:nth-child(3) {
    margin: 0;
  }
}
.p-nav__list > li:nth-child(4) {
  margin-left: 150px;
}
@media (max-width: 767px) {
  .p-nav__list > li:nth-child(4) {
    margin: 0;
  }
}
.p-nav__child {
  position: absolute;
  left: -70%;
  top: 99%;
  background: #fff;
  padding: 30px;
  width: 250px;
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(-10px);
}
@media (max-width: 767px) {
  .p-nav__child {
    position: relative;
    left: 0;
    top: 0;
    padding: 0;
    width: 100%;
    opacity: 1;
    max-height: 100%;
    background: none;
    overflow: initial;
    transform: none;
  }
}
.p-nav__child li {
  border-bottom: 1px solid #eeeeee;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767px) {
  .p-nav__child li {
    opacity: 1;
    transform: none;
    border-top: 1px solid #cae4e7;
    border-bottom: none;
  }
}
.p-nav__child li a {
  color: #2484a0;
  display: block;
  text-align: left;
  padding: 20px 5px;
  position: relative;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-nav__child li a {
    padding: 15px;
    padding-left: 65px;
  }
}
.p-nav__child li a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/bullet-circle-blue.png) 0 0 no-repeat;
  background-size: contain;
  width: 51px;
  height: 51px;
}
@media (max-width: 767px) {
  .p-nav__child li a::after {
    content: none;
  }
}
.p-nav__child li a:hover {
  opacity: 0.7;
}
.p-nav__list > li:hover > .p-nav__child {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}
.p-nav__list > li:hover > .p-nav__child li {
  opacity: 1;
  transform: translateY(0);
}
.p-nav__fix {
  position: absolute;
  right: 0;
  top: -36px;
  display: flex;
  justify-content: flex-end;
}
.p-nav__fix li a {
  display: block;
  text-align: center;
  background: #ff677a;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px;
  transition: 0.3s ease;
}
.p-nav__fix li a:hover {
  opacity: 0.7;
}
.p-nav__toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 80px;
  height: 80px;
  position: fixed;
  right: 0;
  top: 0;
  background: #6e93c5;
}
.p-nav__toggle span {
  background: #fff;
  width: 40px;
  height: 2px;
  position: absolute;
  left: 20px;
  top: 25px;
  transition: 0.3s ease;
}
.p-nav__toggle span:nth-child(2) {
  top: 40px;
}
.p-nav__toggle span:nth-child(3) {
  top: 55px;
}
.p-nav__toggle.is-active span:nth-child(1) {
  top: 40px;
}
.p-nav__toggle.is-active span:nth-child(3) {
  top: 40px;
}
@media (max-width: 767px) {
  .p-nav {
    position: fixed;
    left: 0;
    top: 80px;
    width: 100%;
    height: 100%;
    background: #eef9fa;
    overflow: scroll;
    height: calc(100vh - 80px);
    padding-bottom: 80px;
  }
}

.p-sp-nav {
  display: none;
}

.l-footer .l-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .l-footer .l-content {
    display: block;
    padding-top: 35px;
  }
}

.p-footer-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-footer-content {
    display: block;
  }
}
.p-footer-content__title {
  font-size: 1.4rem;
  color: #fff;
}
.p-footer-content__title a {
  text-decoration: none;
  line-height: 2.5em;
}
.p-footer-content__title img {
  max-width: 311px;
}
.p-footer-content__addr {
  text-align: left;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 50px;
}
.p-footer-content__addr a {
  font-weight: bold;
  font-size: 1.2em;
}
.p-footer-content__addr i {
  font-size: 1.5em;
}
@media (max-width: 767px) {
  .p-footer-content__addr {
    margin-top: 25px;
  }
}

.p-footer-contact {
  position: relative;
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px; */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 50px;
}
@media (max-width: 767px) {
  .p-footer-contact {
    padding-left: 0;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 35px;
  }
}
.p-footer-contact__item {
  background: #fff;
  padding: 20px 30px;
  margin-bottom: 20px;
}
.p-footer-contact__item:last-child {
  width: 100%;
}
.p-footer-contact__item:last-child .c-btn {
  margin-left: auto;
  margin-right: auto;
}
.p-footer-contact__title {
  color: #222;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-footer-contact .c-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-footer-contact .c-btn--tel {
  font-size: 2.4rem;
}
.p-footer-contact .c-btn--contact {
  font-size: 1.5rem;
  padding-top: 27px;
  padding-bottom: 27px;
}

.l-footer .p-footer-copyright {
  text-align: center;
  color: white;
  font-size: 1.3rem;
  line-height: 100px;
}

.p-page {
  position: relative;
}

.p-page-header {
  text-align: center;
  margin-bottom: 3rem;
  height: 400px;
  background: url(../img/page-header-about.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
}
@media (max-width: 767px) {
  .p-page-header {
    height: 300px;
  }
}
.p-page-header--activity {
  background: url(../img/page-header-activity-2.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--feature {
  background: url(../img/page-header-feature-2.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--about {
  background: url(../img/page-header-about-4.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--education {
  background: url(../img/page-header-education.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--day {
  background: url(../img/page-header-day-3.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--event {
  background: url(../img/page-header-day-3.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--entry {
  background: url(../img/page-header-entry-2.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--qna {
  background: url(../img/page-header-qna-2.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--pre {
  background: url(../img/page-header-pre-3.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--ohisama {
  background: url(../img/page-header-ohisama.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--news {
  background: url(../img/page-header-news-3.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--contact {
  background: url(../img/page-header-contact-2.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--lunch {
  background: url(../img/page-header-lunch.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header--document {
  background: url(../img/page-header-doc.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header__title {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
}
.p-page-header__entry {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 67.5px;
  z-index: 3;
  transition: 0.3s ease;
}
.p-page-header__entry :hover {
  opacity: 0.7;
}

.p-page__content {
  position: relative;
  line-height: 2em;
}
.p-page__content section {
  position: relative;
  padding-top: 1px;
  padding-bottom: 75px;
}
.p-page__content section p {
  margin-bottom: 1em;
}
/*# sourceMappingURL=style.css.map */


.toggle-title {
  cursor: pointer;
  text-decoration: underline;
}
.toggle-hidden {
  display: none;
}