@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

html {
  color: #000;
  background: #ecffdf;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
}

body {
  background: #ecffdf;
  margin: 0;
}

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

figure {
  margin: 0;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  width: 100%;
  height: auto;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

.inner-block {
  position: relative;
  max-width: 1000px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

#wrapper {
  position: relative;
  z-index: 1;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  padding: 1em 0;
}
.c-header__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header__logo {
  width: 46%;
}
.c-header__btn {
  width: 26%;
}

/* --------------------------------
c-footer
----------------------------------- */
.c-footer {
  margin-top: 260px;
  padding-top: 4em;
  padding-bottom: 2em;
  background-image: url(../img/common/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  text-align: center;
}
.c-footer a {
  color: inherit;
}
.c-footer__nav {
  margin-bottom: 8em;
}
.c-footer__nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-footer__nav ul li {
  width: 33%;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  margin-bottom: 1.5em;
}
.c-footer__company {
  margin-bottom: 2em;
}
.c-footer__tel {
  font-size: 2em;
}

/* --------------------------------
c-pagetop
----------------------------------- */
.c-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  -webkit-animation: fuwa2 5s linear infinite;
          animation: fuwa2 5s linear infinite;
  max-width: 60px;
}
.c-pagetop:hover {
  opacity: 1;
}

@-webkit-keyframes fuwa2 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fuwa2 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-breadcrumb {
  background-color: #8e9091;
}

.c-hamburger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 70px;
  /* メニューを閉じるための要素のデザイン*/
}
.c-hamburger .menu__boxHolder .menu__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
}
.c-hamburger .menu__item {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8181818182;
  letter-spacing: 0em;
  margin: 0 0.5em;
  position: relative;
  padding: 0.25em 1em;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.c-hamburger .menu__item.nav-current {
  color: #0042a8;
}
.c-hamburger .menu__item.nav-current::after {
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  background-color: #0042a8;
}
.c-hamburger .menu__item:hover {
  background-color: #03b16d;
  border-radius: 10px;
  color: #fff;
  padding: 0.25em 1em;
}
.c-hamburger .menu__item:hover::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 0 70px;
  background-color: #9dc337;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  left: -15px;
  bottom: -15px;
}
.c-hamburger #menu__toggle {
  opacity: 0;
}
.c-hamburger #menu__toggle:checked ~ .menu__btn > span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-hamburger #menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  background: #00a5d4;
}
.c-hamburger #menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #00a5d4;
}
.c-hamburger #menu__toggle:checked ~ .menu__boxHolder {
  visibility: visible;
  /* left: 0; */
  right: 0;
  margin: 0;
  -webkit-transition: 0.3s opacity 0.1s, 0.3s -webkit-transform;
  transition: 0.3s opacity 0.1s, 0.3s -webkit-transform;
  transition: 0.3s opacity 0.1s, 0.3s transform;
  transition: 0.3s opacity 0.1s, 0.3s transform, 0.3s -webkit-transform;
  opacity: 1;
}
.c-hamburger .menu__btn {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  bottom: 10px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  z-index: 2;
}
.c-hamburger .menu__btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #00a5d4;
  border-radius: 2px;
}
.c-hamburger .menu__btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #00a5d4;
  border-radius: 2px;
  content: "";
  top: -10px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
.c-hamburger .menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #00a5d4;
  border-radius: 2px;
  content: "";
  top: 10px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
.c-hamburger .drawer-close {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 100%;
  /* 閉じるための要素を画面外へ */
  z-index: -1;
  /* 重なり順をメニューより下に*/
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-hamburger #menu__toggle:checked ~ .drawer-close {
  left: 0;
  /* 閉じるための要素を画面内へ */
}

/* --------------------------------
c-btn
----------------------------------- */
.c-btn {
  /* btn 基本 */
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1.25em 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0;
  color: #fff;
  border-radius: 0;
}
.c-btn span {
  position: relative;
}
.c-btn__cta {
  border: solid 1px #0042a8;
  background: #0042a8;
  width: 380px;
}
.c-btn__cta.large {
  background-color: #000;
  border: solid 1px #000;
  width: 480px;
  font-size: 24px;
}
.c-btn__cta.large:hover {
  background-color: #fff;
  color: #000;
}
.c-btn__cta.large:hover::before {
  border-bottom: solid 15px #000;
}
.c-btn__cta::before {
  position: absolute;
  content: "";
  display: block;
  height: 0;
  width: 0;
  bottom: 1px;
  right: 1px;
  border-left: solid 15px transparent;
  border-bottom: solid 15px #fff;
}
.c-btn__cta.small {
  background-color: #fff;
  color: #000;
  border: solid 1px #000;
  width: 200px;
  font-size: 16px;
  padding: 0.5em 0;
}
.c-btn__cta.small::before {
  content: none;
}
.c-btn__cta.small:hover {
  background-color: #000;
  color: #fff;
  border: solid 1px #fff;
}
.c-btn__cta.mvBtn {
  font-size: 20px;
}
.c-btn__cta:hover::before {
  border-bottom: solid 15px #0042a8;
}
.c-btn.more {
  background-color: #03b16d;
  padding: 0.1em 1.5em 0.25em 1em;
  border-radius: 10px;
  position: relative;
  line-height: 1;
}
.c-btn.more::after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  position: absolute;
  top: calc(50% - 0.3em);
  right: 0.25em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.4em solid transparent;
  border-left: 0.5em solid #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-btn.category {
  font-size: 22px;
  padding: 0.75em 3.3em 0.75em 1.3em;
  border-radius: 30px;
}
.c-btn.category:not(:last-child) {
  margin-right: 0.5em;
}
.c-btn.category::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: calc(50% - 0.3em);
  right: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.4em solid transparent;
  border-left: 0.5em solid #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-btn:hover {
  color: #0042a8;
  background-color: #fff;
}
.c-btn__wrapper {
  text-align: center;
}

/* --------------------------------
c-pagetitle
----------------------------------- */
.c-pagetitle {
  background-image: url(../img/about/bg-main__title.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0em;
  padding: 1.2em 0;
  margin-bottom: 60px;
}

.c-pagesubtitle {
  text-align: center;
  margin-bottom: 50px;
}
.c-pagesubtitle h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5357142857;
  letter-spacing: 0em;
  margin-top: 0.5em;
}
.c-pagesubtitle img {
  max-width: 73px;
  max-height: 69px;
}

/* --------------------------------
c-bgmove
----------------------------------- */
.move_bg {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
  /* .m_bg3 {
    content: '';
    width: 121px;
    height: 122px;
    margin: 0 auto;
    background: url(img/bird3.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 662px;
    right: -70px;
    animation: piyo2 4s linear infinite;
  } */
}
.move_bg .m_bg1 {
  content: "";
  width: 83px;
  height: 93px;
  margin: 0 auto;
  background: url(../img/common/move_flower-l.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: 20px;
  -webkit-animation: fuwa 10s linear infinite;
          animation: fuwa 10s linear infinite;
  z-index: -1;
}
@-webkit-keyframes fuwa {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20% {
    -webkit-transform: translate(-20px, -10px);
            transform: translate(-20px, -10px);
  }
  60% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
  80% {
    -webkit-transform: translate(20px, -10px);
            transform: translate(20px, -10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes fuwa {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20% {
    -webkit-transform: translate(-20px, -10px);
            transform: translate(-20px, -10px);
  }
  60% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
  80% {
    -webkit-transform: translate(20px, -10px);
            transform: translate(20px, -10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.move_bg .m_bg2 {
  content: "";
  width: 118px;
  height: 91px;
  margin: 0 auto;
  background: url(../img/common/move_flower-r.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 10px;
  -webkit-animation: fuwa 10s linear infinite;
          animation: fuwa 10s linear infinite;
  z-index: -1;
}
@-webkit-keyframes piyo {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-10px, -5px);
            transform: translate(-10px, -5px);
  }
  50% {
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }
  75% {
    -webkit-transform: translate(10px, -5px);
            transform: translate(10px, -5px);
  }
}
@keyframes piyo {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-10px, -5px);
            transform: translate(-10px, -5px);
  }
  50% {
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }
  75% {
    -webkit-transform: translate(10px, -5px);
            transform: translate(10px, -5px);
  }
}
@-webkit-keyframes piyo2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-15px, -5px);
            transform: translate(-15px, -5px);
  }
  50% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
  75% {
    -webkit-transform: translate(15px, -5px);
            transform: translate(15px, -5px);
  }
}
@keyframes piyo2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-15px, -5px);
            transform: translate(-15px, -5px);
  }
  50% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
  75% {
    -webkit-transform: translate(15px, -5px);
            transform: translate(15px, -5px);
  }
}

/* --------------------------------
c-sidebar
----------------------------------- */
/* --------------------------------
c-single
----------------------------------- */
.p-single__categoryBtnWapper {
  margin-bottom: 4em;
}
.p-single__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-single__sidebar {
  width: 22%;
}
.p-single__sidebar-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 2.15;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 1em;
}
.p-single__sidebar-list:first-of-type {
  margin-bottom: 5em;
}
.p-single__sidebar-list .day {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
.p-single__sidebar-list .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3333333333;
  letter-spacing: 0em;
}
.p-single__sidebar-list li {
  border-bottom: dotted 1px #8e8e8e;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.p-single__contents {
  width: 72%;
}
.p-single__item {
  padding: 1em 1.5em;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 32px;
}
.p-single__item-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 2em;
}
.p-single__item-header .day-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-single__item-header .day {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3636363636;
  letter-spacing: 0em;
  color: #8b8986;
}
.p-single__item-header .c-btn {
  background-color: #03b16d;
  color: #fff;
  border-radius: 14px;
  padding: 0.25em 1em;
}
.p-single__item-img {
  width: 60px;
  margin-right: 14px;
}
.p-single__item-img:last-child {
  width: 70px;
  margin: 0 0 0 auto;
}
.p-single__item .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 2em;
}
.p-single__item .contents h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3333333333;
  letter-spacing: 0em;
}
.p-single__item .contents p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0em;
  margin-bottom: 2em;
}
.p-single__item .contents figure {
  margin: 1em auto 2em;
  width: 85%;
}
.p-single__item .contents figure figcaption {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 1em;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
.p-home__fv {
  position: relative;
  margin-bottom: 4em;
}
.p-home__fv-child {
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 420px;
}
.p-home__newsHolder {
  margin-bottom: 4em;
}
.p-home__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2em;
}
.p-home__item:not(:last-of-type) {
  margin-bottom: 1.5em;
}
/*
.p-home__item-imgHolder {
  width: 15%;
}
.p-home__item-imgHolder img {
  height: 110px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
*/
.p-home__item-txtHolder {
  width: 100%;
}
.p-home__item-note {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
}
.p-home__item-time::after {
  content: "/";
  padding: 0 0.5em;
}
.p-home__item-text {
  width: 92%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1em;
	font-size: 24px;
}
.p-home .c-btn__wrapper {
  text-align: right;
}
.p-home__philosophy {
  text-align: center;
  margin-bottom: 5em;
}
.p-home__philosophy-subtitle {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  color: #03b16d;
  display: inline-block;
  position: relative;
  margin-bottom: 1.5em;
}
.p-home__philosophy-subtitle::before, .p-home__philosophy-subtitle::after {
  content: "";
  position: absolute;
  background-image: url(../img/top/flower.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1.5em;
  height: 1.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-home__philosophy-subtitle::before {
  left: -1.75em;
}
.p-home__philosophy-subtitle::after {
  right: -1.75em;
}
.p-home__philosophy-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-home__philosophy-imgHolder {
  width: 46%;
}
.p-home__philosophy-txtHolder {
  width: 51%;
  text-align: left;
}
.p-home__philosophy-listtitle {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #03b16d;
  display: inline-block;
  position: relative;
  padding: 0 0.5em;
  margin-bottom: 1em;
}
.p-home__philosophy-listtitle::after {
  position: absolute;
  content: "";
  background-image: url(../img/top/philosophy-balloon.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 3em;
  height: 0.5em;
  bottom: -0.5em;
  left: 0;
}
.p-home__philosophy-list {
  font-size: 22px;
  font-weight: 600;
  line-height: 2.2727272727;
  letter-spacing: 0em;
}
.p-home__philosophy-item {
  width: 33%;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4545454545;
  letter-spacing: 0em;
}
.p-home__philosophy-item figure {
  margin-bottom: 0.5em;
}
.p-home__access-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-home__access-txtHolder {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  width: 50%;
}
.p-home__access-txtHolder > p:not(:last-of-type) {
  margin-bottom: 2em;
}
.p-home__access-mapHolder {
  width: 50%;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8181818182;
  letter-spacing: 0em;
}
.p-home__access-mapHolder .map {
  width: 100%;
  position: relative;
  /* padding-top: 56.25%; */
  padding-top: 110%;
}
.p-home__access-mapHolder .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-news {
  height: 1200px;
}

.p-about__address {
  margin-bottom: 30px;
}
.p-about__address table {
  width: 100%;
  border-radius: 30px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  font-size: 24px;
  font-weight: 600;
  line-height: 2.6666666667;
  letter-spacing: 0em;
}
.p-about__address table tr th,
.p-about__address table tr td {
  border-bottom: solid 2px #005a37;
  background-color: #fff;
}
.p-about__address table tr:last-child th,
.p-about__address table tr:last-child td {
  border-bottom: none;
}
.p-about__address table tr th {
  background-color: #b6fbc2;
  color: #005a37;
  width: 22%;
}
.p-about__address table tr td {
  width: 78%;
  padding-left: 2em;
}
.p-about .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 55%;
  margin-bottom: 60px;
}
.p-about .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.p-about__people {
  margin-bottom: 100px;
}
.p-about__people table {
  width: 100%;
  border-radius: 30px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  font-size: 24px;
  font-weight: 600;
  line-height: 2.6666666667;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 30px;
}
.p-about__people table tr th,
.p-about__people table tr td {
  border-bottom: solid 2px #005a37;
  background-color: #fff;
}
.p-about__people table tr:first-child td {
  background-color: #b6fbc2;
  color: #005a37;
}
.p-about__people table tr:last-child th,
.p-about__people table tr:last-child td {
  border-bottom: none;
}
.p-about__people table tr th {
  background-color: #b6fbc2;
  color: #005a37;
  width: 22%;
}
.p-about__people table tr td {
  width: 39%;
}
.p-about__people table tr td:last-child {
  border-left: solid 2px #005a37;
}
.p-about__others {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 1.5em;
}
.p-about__others-tag {
  padding: 0 0.75em;
  margin-bottom: 1em;
  color: #fff;
  background-color: #005a37;
  display: inline-block;
  border-radius: 10px;
}
.p-about__time table {
  width: 100%;
  border-radius: 30px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  font-size: 24px;
  font-weight: 600;
  line-height: 2.6666666667;
  letter-spacing: 0em;
}
.p-about__time table tr th,
.p-about__time table tr td {
  border-bottom: solid 2px #005a37;
  background-color: #fff;
}
.p-about__time table tr:last-child th,
.p-about__time table tr:last-child td {
  border-bottom: none;
}
.p-about__time table tr th {
  background-color: #b6fbc2;
  color: #005a37;
  width: 22%;
}
.p-about__time table tr td {
  width: 78%;
  padding-left: 2em;
}

.p-event__text {
  font-size: 24px;
  font-weight: 600;
  line-height: 2.5;
  letter-spacing: 0em;
  text-align: right;
}

.p-entry {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.p-entry__item {
  text-align: center;
  border: solid 3px #03b16d;
  border-radius: 30px;
  padding: 1.5em;
  background-color: #fff;
  position: relative;
}
.p-entry__item:not(:last-of-type) {
  margin-bottom: 4em;
}
.p-entry__item:not(:last-of-type)::after {
  position: absolute;
  content: "";
  border-top: 30px solid #03b16d;
  border-right: 100px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 100px solid transparent;
  bottom: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-entry__item-title {
  color: #03b16d;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 1em;
}
.p-entry__item-note {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6363636364;
  letter-spacing: 0em;
}

.p-news {
  height: 1200px;
}

.p-privacy__title {
  margin: 50px 0 15px;
  padding: 0;
  border-bottom: 2px solid #005a37;
  font-size: 20px;
}
.p-privacy__text {
  margin-bottom: 1em;
}
.p-privacy__text.left {
  text-align: right;
}

.p-contact__telHolder {
  text-align: center;
  margin-bottom: 60px;
}
.p-contact__tel {
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
  position: relative;
}
.p-contact__tel::before {
  content: "";
  position: absolute;
  background-image: url(../img/svg/icon_tel.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1em;
  height: 1em;
  left: -1.5em;
}
.p-contact__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-contact__form-left, .p-contact__form-right {
  width: 49%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-contact__form-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-contact__form-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 0.5em;
}
.p-contact__form textarea,
.p-contact__form input[type=text],
.p-contact__form input[type=email],
.p-contact__form input[type=tel],
.p-contact__form input[type=checkbox] {
  background: #fff;
  border: 1px solid #ccc;
  position: relative;
  width: 100%;
  border-radius: 10px;
  padding: 0.5em;
  font-size: 20px;
}
.p-contact__form input[type=checkbox] {
  width: 1em;
  height: 1em;
  border-radius: 4px;
  margin-right: 0.5em;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.p-contact__form-check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-contact__form-wrapper {
  width: 100%;
}
.p-contact__form .btn-submit {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background: #03b16d;
  display: block;
  width: 30%;
  margin: 0 auto;
  text-align: center;
  padding: 1em;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

@media only screen and (min-width: 789px) {
  a:hover {
    opacity: 0.8;
  }
  .inner-block {
    margin: 0 auto;
    padding: 0 40px;
  }
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  a,
a::before,
a::after,
button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-hamburger .menu__btn {
    display: none;
  }
}

@media only screen and (max-width: 786px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .inner-block {
    padding: 0 5%;
    width: auto;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  input,
select,
textarea {
    font-size: 16px !important;
  }
  .pc {
    display: none !important;
  }
  .c-header__btn {
    width: 50%;
  }
  .c-footer {
    margin-top: 100px;
  }
  .c-footer__nav ul li {
    width: 48%;
    font-size: clamp(16px, 2vw, 18px);
  }
  .c-pagetop {
    max-width: unset;
    width: 15%;
  }
  .c-hamburger {
    display: inline;
    position: fixed;
    top: 0;
    right: 2%;
    z-index: 100;
  }
  .c-hamburger .menu__boxHolder {
    position: fixed;
    visibility: hidden;
    top: 0;
    /* left: 0; */
    right: -100vw;
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    padding: 3em 0;
    text-align: center;
    background-color: #ecffdf;
    -webkit-box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    opacity: 0;
    -webkit-transition: 0.3s opacity, 0.3s -webkit-transform 0.1s;
    transition: 0.3s opacity, 0.3s -webkit-transform 0.1s;
    transition: 0.3s opacity, 0.3s transform 0.1s;
    transition: 0.3s opacity, 0.3s transform 0.1s, 0.3s -webkit-transform 0.1s;
  }
  .c-hamburger .menu__boxHolder .menu__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .c-hamburger .menu__boxHolder li {
    width: 100%;
  }
  .c-hamburger .menu__item.nav-current {
    color: #000;
  }
  .c-hamburger .menu__item.nav-current::after {
    content: none;
  }
  .c-hamburger .menu__item {
    display: block;
    padding: 1em 0;
    color: #000;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  .c-btn__cta.mvBtn {
    width: 320px;
    font-size: clamp(16px, 2vw, 20px);
  }
  .c-btn.more {
    font-size: clamp(14px, 2vw, 16px);
  }
  .c-btn {
    font-size: clamp(16px, 3vw, 20px);
    letter-spacing: 0.1em;
  }
  .c-pagetitle {
    font-size: clamp(20px, 2vw, 32px);
  }
  .c-pagesubtitle h3 {
    font-size: clamp(18px, 2vw, 28px);
  }
  .p-single__sidebar {
    display: none;
  }
  .p-single__item .contents figure {
    width: 100%;
  }
  .p-home__fv-child {
    width: 35%;
    right: -5%;
    bottom: -15%;
  }
  /*
  .p-home__item-imgHolder {
    width: 30%;
  }
  */
  .p-home__item-text{
	font-size: 18px;
  }
  .p-home__philosophy-subtitle {
    font-size: clamp(24px, 2vw, 60px);
  }
  .p-home__philosophy-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-home__philosophy-imgHolder {
    width: 100%;
    margin-bottom: 1em;
  }
  .p-home__philosophy-txtHolder {
    width: 100%;
  }
  .p-home__philosophy-listtitle {
    font-size: clamp(20px, 2vw, 32px);
  }
  .p-home__philosophy-list {
    font-size: clamp(16px, 2vw, 22px);
  }
  .p-home__philosophy-item {
    width: 100%;
    font-size: clamp(16px, 2vw, 22px);
  }
  .p-home__access-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-home__access-txtHolder {
    width: 100%;
    font-size: clamp(16px, 2vw, 28px);
    margin-bottom: 1em;
  }
  .p-home__access-mapHolder {
    width: 100%;
    font-size: clamp(16px, 2vw, 22px);
  }
  .p-about__address table {
    font-size: clamp(16px, 2vw, 24px);
  }
  .p-about__people table {
    font-size: clamp(16px, 2vw, 24px);
  }
  .p-about__others {
    font-size: clamp(16px, 2vw, 24px);
  }
  .p-about__time table {
    font-size: clamp(16px, 2vw, 24px);
  }
  .p-event__text {
    font-size: clamp(16px, 2vw, 24px);
  }
  .p-entry__item-title {
    font-size: clamp(22px, 2vw, 32px);
  }
  .p-entry__item-note {
    font-size: clamp(14px, 2vw, 22px);
  }
  .p-contact__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-contact__form-left, .p-contact__form-right {
    width: 100%;
  }
  .p-contact__form-item {
    margin-bottom: 1em;
  }
  .p-contact__form-check {
    text-align: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-contact__form .btn-submit {
    width: 80%;
  }
}

@media all and (max-width: 768px) {
  .c-btn__cta {
    width: 80%;
    max-width: unset;
  }
  .c-btn__cta.large {
    width: 80%;
    max-width: unset;
  }
}

@media all and (max-width: 428px) {
  .c-btn__cta {
    max-width: 280px;
  }
  .c-btn__cta.large {
    max-width: 330px;
    font-size: clamp(18px, 2vw, 20px);
  }
}