@charset "UTF-8";
/* destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* ↓ パッケージ導入せず直書きも可能、必要に応じてnpm管理も可 */
@import url("https://unpkg.com/destyle.css/destyle.css");
/* ----------------------------------------
Foundation - base -
プロジェクトにおける基本的なスタイルを定義します。
ページの下地としての全体の背景や、基本的なタイポグラフィなどが該当します。
---------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap");

* {
  box-sizing: border-box;
  font-size: inherit;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #EFFAE4;
  color: #464646;
  font-size: clamp(15px, 15px + (18 - 15) * (100vw - 375px) / (1280 - 375), 18px);
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  word-wrap: break-word;
  font-feature-settings: "palt"1;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  font-size: 1.5vw;
}

@media only screen and (max-width: 1400px) {
  body {
    font-size: 1.4vw;
  }
}

@media only screen and (max-width: 960px) {
  body {
    font-size: 2.2vw;
  }
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 3.25vw;
  }
}

@media only screen and (min-width: 1401px) {
  body {
    font-size: 1.8rem;
  }
}

body.is-page {
  position: relative;
  background-color: #EFFAE4;
}

body.is-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 100%;
  background: url(../images/common/page-repeat-leaf-left.svg) repeat-y top 16em left;
  z-index: 10;
}

body.is-page::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 100%;
  background: url(../images/common/page-repeat-leaf-right.svg) repeat-y top 55em right;
  z-index: 10;
}

@media only screen and (max-width: 1400px) {

  body.is-page::before,
  body.is-page::after {
    width: 8vw;
    background-size: 8vw auto;
  }
}

@media only screen and (max-width: 960px) {
  body.is-page::before {
    background-image: url(../images/common/page-repeat-leaf-left-sp.svg);
  }

  body.is-page::after {
    background-image: url(../images/common/page-repeat-leaf-right-sp.svg);
  }
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

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

img {
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

iframe {
  vertical-align: bottom;
}

svg {
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

a {
  text-decoration: none;
}

/* ----------------------------------------
form style
---------------------------------------- */
input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0;
}

textarea {
  width: 100%;
  resize: vertical;
}

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

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

input[type=text],
input[type=passwprd],
input[type=search],
input[type=email],
input[type=tel],
input[type=url],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=number],
textarea {
  width: 100%;
  padding: 5px;
  border: solid 1px #D3CDBD;
  background-color: #fff;
}

select {
  width: 100%;
  border: solid 1px #D3CDBD;
  padding: 5px;
}

html::before,
html::after {
  display: block;
  content: "";
  -webkit-transition: all 1s 0s ease;
  transition: all 1s 0s ease;
  visibility: visible;
  opacity: 1;
}

html::before {
  width: 100vw;
  height: 100vh;
  background-color: #539045;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
}

html::after {
  width: 60px;
  height: 60px;
  background: url(../images/loading.svg) no-repeat center/60px 60px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 99999;
}

html.wf-active::before,
html.wf-active::after {
  visibility: hidden;
  opacity: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 1.5em 2.5em 1em;
  position: relative;
  z-index: 999;
}

.header-logo {
  max-width: 400px;
  width: 30%;
}

.header-gnavItem.is-hidden {
  display: none;
}

.header-gnavLink {
  margin: 0 1.5vw;
  display: block;
  position: relative;
  padding-top: 2.8em;
  font-size: 115%;
}

.header-gnavLink .imgBox {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.header-gnavLink:hover {
  color: #3ab11f;
}

.header-gnavLink:hover .imgBox {
  animation: updown 0.8s ease-in-out infinite;
}

@keyframes updown {
  0% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

.header-Inner {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 1400px) {
  .header-logo {
    width: 30%;
  }

  .header-gnavLink {
    font-size: 100%;
  }

  .header-gnavLink .imgBox {
    width: 3.4vw;
  }
}

@media only screen and (max-width: 960px) {
  .header {
    padding: 2em;
  }

  .header-logo {
    text-align: center;
  }

  .header-logo img {
    width: 32vw;
  }

  .header-gnav {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
    padding: 50px 0;
    background: #EFFAE4;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    transition: right 600ms 0s ease;
  }

  .header-gnav.is-enable {
    right: 0;
  }

  .header-gnavItem {
    width: 50%;
  }

  .header-gnavItem.is-hidden {
    display: block;
  }

  .header-gnavLink {
    padding: 1.5em 1em 1.5em 1em;
    border-radius: 2em;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1280 - 375), 18px);
    width: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 135%;
  }

  .header-gnavLink .imgBox {
    width: 12vw;
    position: relative;
    order: 0;
    margin-bottom: 1em;
  }

  .header-gnavLink span {
    order: 1;
  }

  .header-Inner {
    min-width: auto;
    width: 100%;
    height: auto;
    overflow-y: auto;
    margin: 0;
    padding: 0 2em;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1em 0;
  }
}

@media only screen and (max-width: 768px) {
  .header-logo img {
    min-width: 220px;
  }
}

@media only screen and (max-width: 480px) {
  .header-logo img {
    min-width: 180px;
  }
}

.header-hamburger {
  display: none;
  flex-flow: column;
  justify-content: space-between;
  width: 50px;
  height: 50px;
  padding: 17px 15px;
  background-color: #D65252;
  cursor: pointer;
  position: fixed;
  border-radius: 100%;
  top: 3%;
  right: 3%;
  z-index: 10000;
}

@media only screen and (max-width: 960px) {
  .header-hamburger {
    display: flex;
  }
}

.header-hamburger::before,
.header-hamburger::after {
  display: block;
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  transition: all 200ms 0s ease;
  transform-origin: 0 0;
}

.header-hamburger.is-close::before,
.header-hamburger.is-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
}

.header-hamburger.is-close::before {
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
}

.header-hamburger.is-close::after {
  transform: rotate(-45deg) translateX(-50%) translateY(-50%);
}

.footer {
  padding-top: 14vw;
  padding-bottom: 1em;
  padding-left: 2em;
  padding-right: 2em;
  background: url(../images/common/bg-texture.svg) repeat center;
  position: relative;
  z-index: 100;
}

.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1600/277;
  top: 0;
  left: 0;
  background: url(../images/home/top-value-bg-top.svg) no-repeat bottom/cover;
  z-index: -1;
}

.footer .c-inner1280 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}

.footer__left {
  width: 40%;
}

.footer__left .imgBox {
  width: 100%;
  max-width: 398px;
  display: block;
}

.footer__left .address {
  margin-top: 1.5em;
}

.footer__left .telBox {
  margin-top: 0.5em;
}

.footer__right {
  width: 50%;
}

.footer__right ul {
  display: flex;
  flex-wrap: wrap;
}

.footer__right__navItem {
  width: 25%;
  margin-bottom: 1em;
}

.footer__right__navLink {
  display: block;
}

.footer__right__navLink:hover {
  color: #3ab11f;
}

.footer__copy {
  width: 100%;
  margin-top: 6em;
  text-align: right;
  font-size: 80%;
}

@media only screen and (max-width: 960px) {
  .footer {
    flex-wrap: wrap;
    padding-bottom: 6em;
  }

  .footer__left {
    margin-top: 3em;
    width: 100%;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__right {
    order: 0;
    width: 100%;
  }

  .footer__right__navLink {
    text-align: center;
  }

  .footer__copy {
    order: 2;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .footer__left .imgBox {
    max-width: 60vw;
  }

  .footer__right__navItem {
    width: 33%;
  }
}

/* ----------------------------------------
Component
再利用できるパターンとして、小さな単位のモジュールを定義します。
grid/button/form/media...
---------------------------------------- */
.c-section {
  padding: 5em 3.25em;
}

@media only screen and (max-width: 960px) {
  .c-section {
    padding: 4em 2em;
  }
}

@media only screen and (max-width: 768px) {
  .c-section {
    padding: 3em 2em;
  }
}

.c-inner960 {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.c-inner1280 {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.c-colorGreen {
  color: #45763A;
}

.c-colorRed {
  color: #D65252;
}

.c-colorBlue {
  color: #3B6488;
}

.c-colorYellow {
  color: #A9A420;
}

.c-txtCenter {
  text-align: center;
}

.c-txtSmaller {
  font-size: 63%;
}

.c-brTablet {
  display: none;
}

@media only screen and (max-width: 960px) {
  .c-brTablet {
    display: block;
  }
}

.c-linkEx {
  padding: 0 1.5em 0 0;
  text-decoration: underline;
  position: relative;
  font-size: 135%;
}

.c-linkEx::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon-external.svg) no-repeat center/cover;
}

.c-linkEx:hover {
  color: #55a144;
  text-decoration: none;
}

.c-table {
  width: 100%;
  letter-spacing: 0.01em;
}

.c-table tr {
  font-size: 115%;
}

.c-table tr th {
  font-weight: normal;
  text-align: center;
  width: 30%;
  padding-bottom: 0.5em;
}

@media only screen and (max-width: 960px) {
  .c-table tr {
    display: flex;
    flex-wrap: wrap;
  }

  .c-table tr th {
    width: 100%;
    padding: 0.5em 0;
    background: #DFF9C7;
    border-radius: 0.5em;
  }

  .c-table tr td {
    padding: 1em 0 2em 0;
    width: 100%;
  }
}

.c-bgColorGreen {
  background-color: #539045;
}

.c-bgColorGreen.hover:hover {
  background-color: #3ab11f;
}

.c-bgColorRed {
  background-color: #D65252;
}

.c-bgColorRed.hover:hover {
  background-color: #dc2121;
}

.c-bgPageTexture {
  padding-top: 12vw;
  padding-bottom: 12vw;
  background: url(../images/common/bg-texture.svg) repeat center;
  position: relative;
}

.c-bgPageTexture::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1600/108;
  top: 0;
  left: 0;
  background: url(../images/common/page-top-wave.svg) no-repeat bottom/cover;
}

.c-bgPageTexture::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1600/100;
  bottom: 0;
  left: 0;
  background: url(../images/common/section-arch.svg) no-repeat top/cover;
}

.c-title {
  font-size: 278%;
  margin-bottom: 1em;
}

.c-title br {
  display: none;
}

@media only screen and (max-width: 768px) {
  .c-title {
    font-size: 200%;
  }

  .c-title br {
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  .c-title {
    font-size: 240%;
  }
}

.c-titleSub {
  font-size: 180%;
  position: relative;
}

.c-titleSub.center {
  padding: 0 1.2em;
  display: table;
  margin: 0 auto;
}

.c-titleSub.center::before,
.c-titleSub.center::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon-leaf.svg) no-repeat center/cover;
}

.c-titleSub.center::before {
  left: 0;
}

.c-titleSub.center::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.c-titleSub.left {
  padding: 0 0 0 1.2em;
}

.c-titleSub.left::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon-leaf.svg) no-repeat center/cover;
}

.c-titleKiriFontSvg {
  height: 7vw;
  max-height: 42px;
  min-height: 24.95px;
  margin-bottom: 3.4em;
}

.c-titleKiriFontSvg img {
  height: 100%;
  width: auto;
}

@media only screen and (max-width: 768px) {
  .c-titleKiriFontSvg {
    max-height: 64px;
    margin-top: 2em;
    text-align: center;
  }
}

.c-titleFreo {
  font-size: 114%;
}

.c-titlePage {
  font-size: 330%;
}

.c-fontKiri {
  font-family: "ab-kirigirisu", sans-serif;
}

.c-normalContainer {
  margin-bottom: 4.5em;
}

.c-normalContainer:last-of-type {
  margin-bottom: 0;
}

.c-normalContainer p {
  font-size: 115%;
  line-height: 2;
  margin-bottom: 2em;
}

.c-normalContainer .c-cvBtnBox {
  margin-bottom: 2em;
}

.c-normalContainer .c-titleSub {
  margin-bottom: 1em;
}

.c-normalContainer .c-whiteBox {
  margin-bottom: 2em;
}

@media only screen and (max-width: 960px) {
  .c-normalContainer p br {
    display: none;
  }
}

.c-freoContainer {
  background: inherit;
}

.c-freoContainer #freo-container .entry {
  padding: 2em;
  border-bottom: 1px solid #E0D9CA;
  margin-bottom: inherit;
}

.c-freoContainer #freo-container .entry:first-of-type {
  padding-top: 0;
}

.c-freoContainer #freo-container .entry .information {
  text-align: left;
  color: #B5A991;
  font-size: 75%;
  margin-bottom: 1.5em;
}

.c-freoContainer #freo-container .entry .c-titleFreo {
  margin-bottom: 1.2em;
}

.c-freoContainer #freo-container .entry .content p {
  font-size: 85%;
  line-height: 1.6;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

.c-freoContainer #freo-container #page {
  margin-top: 1.5em;
}

@media only screen and (max-width: 960px) {
  .c-freoContainer #freo-container .entry {
    padding: 2em 1em 1em 1em;
  }
}

@media only screen and (max-width: 768px) {
  .c-freoContainer #freo-container .entry {
    padding: 2em 0em 1em 0em;
  }
}

@media only screen and (max-width: 480px) {
  .c-freoContainer #freo-container .entry .c-titleFreo {
    font-size: 124%;
  }

  .c-freoContainer #freo-container .entry .information {
    font-size: 100%;
  }

  .c-freoContainer #freo-container .entry .content p {
    font-size: 100%;
  }
}

.c-cvBtnBox {
  display: flex;
  justify-content: center;
  gap: 0 1.25em;
}

.c-cvBtnBox .tel {
  max-width: 400px;
  background: #fff;
  border-radius: 100px;
  padding: 1em 2em;
  display: flex;
  flex-direction: column;
  border: 1px solid #E4EFDC;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.c-cvBtnBox .tel .time {
  font-size: 80%;
  text-align: center;
  margin-top: 0.5em;
}

.c-cvBtnBox .tel img {
  max-width: 276px;
}

.c-cvBtnBox .contact {
  max-width: 400px;
  border-radius: 100px;
  padding: 1em 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
}

.c-cvBtnBox .contact br {
  display: none;
}

.c-cvBtnBox .contact .txt {
  position: relative;
  font-size: 120%;
  padding-left: 1.5em;
}

.c-cvBtnBox .contact .txt::before {
  content: "";
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/common/icon-mail.svg) no-repeat center/cover;
}

@media only screen and (max-width: 1400px) {
  .c-cvBtnBox .tel img {
    max-width: 20vw;
  }
}

@media only screen and (max-width: 960px) {
  .c-cvBtnBox {
    gap: 0 1em;
  }

  .c-cvBtnBox .contact,
  .c-cvBtnBox .tel {
    width: 49%;
    max-width: inherit;
  }

  .c-cvBtnBox .contact {
    line-height: 1.6;
  }

  .c-cvBtnBox .contact br {
    display: block;
  }

  .c-cvBtnBox .tel img {
    max-width: 30vw;
  }
}

@media only screen and (max-width: 768px) {
  .c-cvBtnBox {
    flex-wrap: wrap;
  }

  .c-cvBtnBox .tel {
    width: 100%;
  }

  .c-cvBtnBox .tel img {
    max-width: 50vw;
  }

  .c-cvBtnBox .contact {
    margin-top: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
    width: 100%;
  }

  .c-cvBtnBox .contact br {
    display: none;
  }
}

.c-pageHeader {
  padding-top: 0;
  padding-bottom: 0;
}

.c-pageHeader .c-titlePage {
  position: relative;
  display: table;
  margin: 0 auto;
  padding-top: 1.2em;
  white-space: nowrap;
}

.c-pageHeader .c-titlePage .imgBox {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.15em;
  height: 1.15em;
}

.c-whiteBox {
  background: #fff;
  border-radius: 2em;
  padding: 2.2em;
  line-height: 2;
}

@media only screen and (max-width: 960px) {
  .c-whiteBox {
    padding: 2em;
  }
}

@media only screen and (max-width: 768px) {
  .c-whiteBox {
    padding: 1.8em;
  }

  .c-whiteBox .c-cvBtnBox {
    flex-wrap: wrap;
  }

  .c-whiteBox .c-cvBtnBox .tel,
  .c-whiteBox .c-cvBtnBox .contact {
    width: 100%;
  }

  .c-whiteBox .c-cvBtnBox .contact {
    padding-top: 2em;
    padding-bottom: 2em;
    margin-top: 1em;
  }
}

.c-pointDl {
  margin-top: 1em;
}

.c-pointDl dt {
  font-weight: normal;
  padding-left: 0.8em;
  font-size: 155%;
  position: relative;
  margin-bottom: 0.25em;
}

.c-pointDl dt::before {
  content: "";
  position: absolute;
  max-width: 9px;
  width: 2.2vw;
  max-height: 9px;
  height: 2.2vw;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 100%;
}

.c-pointDl dt.c-colorBlue::before {
  background: #73B8DA;
}

.c-pointDl dt.c-colorGreen::before {
  background: #53B23C;
}

.c-pointDl dd {
  padding-left: 0.8em;
  letter-spacing: 0.05em;
  font-size: 115%;
}

.c-timelineContainer .switchBox {
  display: flex;
  padding: 0 3em;
  max-width: 80%;
  margin: 0 auto;
}

.c-timelineContainer .switchBox--item {
  width: 50%;
  color: #fff;
  font-size: 155%;
  line-height: 1.4;
  text-align: center;
  padding: 0.6em 1em;
  border-radius: 1em 1em 0 0;
  cursor: pointer;
}

.c-timelineContainer .switchBox--item.switch01 {
  background: #8BD878;
}

.c-timelineContainer .switchBox--item.switch02 {
  background: #73B8DA;
}

.c-timelineContainer__table {
  line-height: 1.8;
}

.c-timelineContainer__table table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 2em;
}

.c-timelineContainer__table table tr {
  position: relative;
  z-index: 5;
  line-height: 2;
}

.c-timelineContainer__table table tr th {
  padding: 1.5em 0;
  text-align: center;
  z-index: 1;
  position: relative;
}

.c-timelineContainer__table table tr td {
  padding: 1.5em 0;
  text-align: center;
  z-index: 1;
  position: relative;
}

.c-timelineContainer__table .txt {
  margin-top: 2em;
  padding: 0 2em;
}

.c-timelineContainer__table.table01 table tr:first-child th {
  color: #fff;
  background: #8BD878;
  border-right: 1px solid #71AE63;
}

.c-timelineContainer__table.table01 table tr:first-child th,
.c-timelineContainer__table.table01 table tr:first-child td {
  border-bottom: 1px solid #71AE63;
  padding: 0.5em 0;
}

.c-timelineContainer__table.table01 table tr:last-child th,
.c-timelineContainer__table.table01 table tr:last-child td {
  border-bottom: none;
}

.c-timelineContainer__table.table01 table tr th {
  color: #45763A;
  background: #DFF9C7;
  vertical-align: middle;
  font-weight: normal;
  border-right: 1px solid #71AE63;
  border-bottom: 1px solid #71AE63;
  font-size: 135%;
}

.c-timelineContainer__table.table01 table tr th.last {
  border-right: none;
}

.c-timelineContainer__table.table01 table tr th:first-child {
  width: 20%;
}

.c-timelineContainer__table.table01 table tr td {
  font-size: 115%;
  background: #fff;
  border-bottom: 1px solid #71AE63;
}

.c-timelineContainer__table.table02 {
  display: none;
}

.c-timelineContainer__table.table02 table tr:first-child th {
  color: #fff;
  background: #73B8DA;
  border-right: 1px solid #639CAE;
}

.c-timelineContainer__table.table02 table tr:first-child th,
.c-timelineContainer__table.table02 table tr:first-child td {
  padding: 0.5em 0;
}

.c-timelineContainer__table.table02 table tr:last-child th,
.c-timelineContainer__table.table02 table tr:last-child td {
  border-bottom: none;
}

.c-timelineContainer__table.table02 table tr th {
  color: #3B6488;
  background: #d6f1ff;
  vertical-align: middle;
  font-weight: normal;
  border-right: 1px solid #639CAE;
  border-bottom: 1px solid #639CAE;
  font-size: 135%;
}

.c-timelineContainer__table.table02 table tr th.last {
  border-right: none;
}

.c-timelineContainer__table.table02 table tr th:first-child {
  width: 20%;
}

.c-timelineContainer__table.table02 table tr td {
  font-size: 115%;
  background: #fff;
  border-bottom: 1px solid #639CAE;
}

@media only screen and (max-width: 960px) {
  .c-timelineContainer tbody tr td {
    text-align: left;
    padding-left: 1.5em;
  }
}

@media only screen and (max-width: 768px) {
  .c-timelineContainer .switchBox {
    max-width: 100%;
    padding: 0 2em;
  }

  .c-timelineContainer .switchBox--item {
    white-space: nowrap;
  }
}

.c-followBanner {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 999;
}

.c-followBanner .bannerBox {
  display: flex;
  padding: 1.5em 0.8em;
  margin-bottom: 0.5em;
  font-size: 125%;
  border-radius: 1em 0 0 1em;
}

.c-followBanner .bannerBox span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  letter-spacing: 0.25em;
  position: relative;
  padding-bottom: 1.4em;
  width: fit-content;
  writing-mode: vertical-rl;
}

.c-followBanner .bannerBox span::before {
  content: "";
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c-followBanner .bannerBox span.guide::before {
  background: url(../images/common/icon-guide.svg) no-repeat center/cover;
}

.c-followBanner .bannerBox span.recruit::before {
  background: url(../images/common/icon-recruit.svg) no-repeat center/cover;
}

@media only screen and (max-width: 1400px) {
  .c-followBanner .bannerBox {
    padding: 1.5em 0.5em;
  }
}

@media only screen and (max-width: 960px) {
  .c-followBanner {
    display: flex;
    top: inherit;
    bottom: 0;
    width: 100%;
  }

  .c-followBanner .bannerBox {
    width: 50%;
    padding: 0.75em 1em;
    margin-bottom: inherit;
    font-size: 115%;
    border-radius: inherit;
    display: flex;
    justify-content: center;
    border-radius: 1em 1em 0 0;
  }

  .c-followBanner .bannerBox span {
    padding-bottom: 0;
    padding-right: 1.4em;
    writing-mode: inherit;
  }

  .c-followBanner .bannerBox span::before {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: inherit;
  }
}

/* ----------------------------------------
Project
プロジェクト固有のパターンであり、いくつかのComponentと、
それに該当しない要素によって構成されるものを定義します。
例えば、記事一覧や、ユーザープロフィール、画像ギャラリーなどコンテンツを構成する要素などが該当します。
articles/ranking/promo...
---------------------------------------- */
.p-pagetop {
  position: absolute;
  right: 10%;
  bottom: 12%;
  z-index: 100;
}

.p-pagetop:hover {
  cursor: pointer;
  bottom: 20%;
  transition-duration: 0.5s;
  opacity: 0.8;
}

@media only screen and (max-width: 960px) {
  .p-pagetop {
    bottom: 15%;
  }
}

@media only screen and (max-width: 768px) {
  .p-pagetop {
    width: 5vw;
  }
}

/* ----------------------------------------
Utility
ComponentとProjectレイヤーのObjectのモディファイアで
解決することが難しい・適切では無い、わずかなスタイルの調整のための便利クラスなどを定義します。
clearfix/display/margin...
---------------------------------------- */
@media only screen and (max-width: 1400px) {
  .u-display-mobile {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .u-display-pc {
    display: none;
  }
}

.u-link-disabled {
  pointer-events: none;
  text-decoration: none;
}

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

.u-align-left {
  text-align: left;
}

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

@media only screen and (max-width: 960px) {
  #home {
    overflow-x: hidden;
  }
}

#home .top-visual {
  margin-top: 1em;
  display: flex;
  justify-content: space-between;
  position: relative;
}

#home .top-visual::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1600/1242;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/home/top-fv-bg.svg) no-repeat center/cover;
  background-blend-mode: multiply;
  z-index: -1;
}

#home .top-visual .catchBox {
  width: 30%;
  display: flex;
  justify-content: center;
  position: relative;
}

#home .top-visual .catchBox::before {
  content: "";
  position: absolute;
  width: 30vw;
  height: 30vw;
  top: -5%;
  left: 0;
  background: url(../images/home/top-fv-illust-leaf.svg) no-repeat center/cover;
  z-index: -1;
}

#home .top-visual .catchBox::after {
  content: "";
  position: absolute;
  width: 25vw;
  height: 25vw;
  bottom: -35%;
  left: 0;
  background: url(../images/home/top-fv-illust-kids.svg) no-repeat center/cover;
  z-index: -1;
}

#home .top-visual .catchBox .imgBox {
  width: 13vw;
  position: relative;
  left: 15%;
  top: 12%;
}

#home .top-visual .swiper {
  width: 68%;
  margin: 0;
  position: relative;
}

#home .top-visual .swiper .swiper-wrapper {
  padding-bottom: 4em;
}

#home .top-visual .swiper .swiper-wrapper .swiper-slide>img {
  width: 100%;
  height: auto;
  mask-image: url(../images/home/firstView_visual_mask-animation.svg);
  mask-size: 100%;
  mask-position: 0 0;
  mask-repeat: no-repeat;
}

#home .top-visual .swiper .swiper-button-prev,
#home .top-visual .swiper .swiper-button-next {
  position: absolute;
  top: inherit;
  right: inherit;
  transform: inherit;
  bottom: 0;
  display: block;
  width: 60px;
  height: 60px;
}

#home .top-visual .swiper .swiper-button-prev::before,
#home .top-visual .swiper .swiper-button-prev::after,
#home .top-visual .swiper .swiper-button-next::before,
#home .top-visual .swiper .swiper-button-next::after {
  content: none;
}

#home .top-visual .swiper .swiper-button-prev {
  background: url(../images/common/swiper-button-prev.svg) no-repeat center/cover;
}

#home .top-visual .swiper .swiper-button-next {
  left: 4.5em;
  background: url(../images/common/swiper-button-next.svg) no-repeat center/cover;
}

@media only screen and (max-width: 1400px) {
  #home .top-visual .catchBox .imgBox {
    width: 16vw;
    left: 12%;
  }

  #home .top-visual .swiper .swiper-button-prev,
  #home .top-visual .swiper .swiper-button-next {
    width: 4vw;
    height: 4vw;
  }
}

@media only screen and (max-width: 960px) {
  #home .top-visual {
    flex-wrap: wrap;
    margin-top: 0;
  }

  #home .top-visual::before {
    top: -20%;
  }

  #home .top-visual .catchBox {
    width: 100%;
    margin: 0 auto 2em;
  }

  #home .top-visual .catchBox::before {
    width: 60vw;
    height: 60vw;
    z-index: 10;
  }

  #home .top-visual .catchBox:after {
    content: none;
  }

  #home .top-visual .catchBox .imgBox {
    width: 40vw;
    left: inherit;
    top: inherit;
  }

  #home .top-visual .swiper {
    width: 100%;
    padding: 0 2em;
    margin: 0 auto;
    position: relative;
  }

  #home .top-visual .swiper::after {
    content: "";
    position: absolute;
    width: 35vw;
    height: 35vw;
    bottom: 0;
    right: 0;
    background: url(../images/home/top-fv-illust-kids.svg) no-repeat center/cover;
    z-index: 10;
  }

  #home .top-visual .swiper .swiper-button-prev,
  #home .top-visual .swiper .swiper-button-next {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  #home .top-visual .catchBox {
    margin-top: 1em;
  }

  #home .top-visual .catchBox .imgBox {
    width: 55vw;
  }
}

#home .news {
  padding-top: 14vw;
  position: relative;
  z-index: 2;
}

#home .news::before {
  content: "";
  position: absolute;
  width: 70vw;
  max-width: 1001px;
  height: 70vw;
  max-height: 1001px;
  top: 62%;
  right: 0;
  transform: translateY(-50%);
  background: url(../images/home/top-news-bg.svg) no-repeat center/cover;
  z-index: -1;
}

#home .news::after {
  content: "";
  position: absolute;
  width: 30vw;
  max-width: 370px;
  height: 30vw;
  max-height: 370px;
  bottom: -10%;
  left: 0;
  background: url(../images/home/top-news-illust-kids.svg) no-repeat center/cover;
  z-index: -1;
}

@media only screen and (max-width: 1400px) {
  #home .news::after {
    width: 25vw;
    height: 25vw;
  }
}

@media only screen and (max-width: 960px) {
  #home .news {
    padding-top: 4vw;
  }
}

@media screen and (max-width: 842px) {
  #home .news::after {
    bottom: -6%;
  }
}

#home .value {
  padding-top: 14vw;
  padding-bottom: 14vw;
  background: url(../images/common/bg-texture.svg) repeat center;
  position: relative;
  z-index: 1;
}

#home .value::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1600/277;
  top: 0;
  left: 0;
  background: url(../images/home/top-value-bg-top.svg) no-repeat bottom/cover;
  z-index: -1;
}

#home .value::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1600/410;
  bottom: 0;
  left: 0;
  background: url(../images/home/top-value-bg-bottom.svg) no-repeat top/cover;
  z-index: -1;
}

#home .value__flexBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.5em;
}

#home .value__flexBox__img {
  width: 50%;
}

#home .value__flexBox__txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
}

#home .value__flexBox__txt .num {
  font-size: 135%;
  padding-left: 1.5em;
  position: relative;
}

#home .value__flexBox__txt .num::before {
  content: "";
  position: absolute;
  width: 1.25em;
  height: 1.25em;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/common/icon-leaf.svg) no-repeat center/cover;
  z-index: -1;
}

#home .value__flexBox__txt .title {
  font-size: 200%;
  margin: 0.4em 0;
}

#home .value__flexBox__txt .txt {
  font-size: 115%;
  letter-spacing: 0.04em;
  line-height: 2;
}

#home .value__flexBox:nth-of-type(2n) {
  justify-content: right;
}

#home .value__flexBox:nth-of-type(2n) .value__flexBox__img {
  order: 1;
}

#home .value__flexBox:nth-of-type(2n) .value__flexBox__txt {
  order: 0;
}

@media only screen and (max-width: 768px) {
  #home .value__flexBox__img {
    margin-top: 1em;
    width: 100%;
    order: 1;
  }

  #home .value__flexBox__txt {
    width: 100%;
    order: 0;
  }

  #home .value__flexBox__txt .num {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  #home .value__flexBox__txt .title {
    font-size: 160%;
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  #home .value__flexBox__txt .txt {
    font-size: 100%;
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  #home .value__flexBox:nth-of-type(2n) {
    justify-content: inherit;
  }
}

#home .cv {
  padding-top: 3em;
}

#home .cv .c-cvBtnBox {
  margin-top: 3em;
}

#home .cv__txt {
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

#home .cv__txt::before {
  content: "";
  position: absolute;
  width: 10em;
  height: 10em;
  top: -165%;
  left: -55%;
  background: url(../images/common/cv-illust.svg) no-repeat bottom/cover;
  z-index: -1;
}

@media only screen and (max-width: 960px) {
  #home .cv__txt {
    display: block;
  }

  #home .cv__txt::before {
    width: 8em;
    height: 8em;
    left: inherit;
    right: 0;
    transform: scaleX(-1);
  }
}

@media only screen and (max-width: 768px) {
  #home .cv__txt::before {
    width: 5em;
    height: 5em;
  }

  #home .cv .c-cvBtnBox {
    margin-top: 2em;
  }
}

#home .map {
  padding-top: 2em;
  padding-bottom: 4.5em;
  position: relative;
}

#home .map::before {
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55vw;
  height: 1px;
  background: #E0D9CA;
  position: absolute;
}

#home .map::after {
  content: "";
  position: absolute;
  max-width: 301px;
  width: 30vw;
  max-height: 301px;
  height: 30vw;
  top: -20%;
  left: 0;
  background: url(../images/home/top-map-illust-leaf.svg) no-repeat center/cover;
  z-index: -1;
}

#home .map .c-inner1280 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#home .map__img {
  width: 30%;
}

#home .map__googleMap {
  width: 65%;
}

#home .map__googleMap iframe {
  width: 100%;
  overflow: hidden;
  border-radius: 2em;
}

#home .map__googleMap__txtBox {
  padding: 0 2em;
}

#home .map__googleMap__txtBox .name {
  margin-top: 1em;
  font-size: 135%;
}

#home .map__googleMap__txtBox .name br {
  display: none;
}

#home .map__googleMap__txtBox .address {
  margin-top: 1em;
}

#home .map__googleMap__txtBox .telBox {
  margin-top: 1em;
}

@media only screen and (max-width: 960px) {
  #home .map__img {
    width: 100%;
    order: 1;
    margin-top: 2em;
  }

  #home .map__googleMap {
    width: 100%;
    order: 0;
  }
}

@media only screen and (max-width: 768px) {
  #home .map {
    padding-bottom: 0;
  }

  #home .map__googleMap__txtBox .name br {
    display: block;
  }

  #home .map::before {
    content: none;
  }
}

#home .recruitBanner {
  padding-top: 4.5em;
  padding-bottom: 1em;
}

#home .recruitBanner:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 960px) {
  #home .recruitBanner {
    padding-top: 4em;
    padding-bottom: 2em;
  }
}

#information .guide__inner::before {
  content: "";
  position: absolute;
  width: 35vw;
  max-width: 408px;
  height: 35vw;
  max-height: 408px;
  bottom: 0;
  right: 0;
  background: url(../images/information/illust-trip.svg) no-repeat center/cover;
  z-index: 1;
}

#information .recruit__message__tit {
  font-size: 180%;
  margin-bottom: 1em;
}

#information .recruit__message__tit br {
  display: none;
}

#information .recruit__message__txt {
  font-size: 115%;
  line-height: 2;
  position: relative;
}

#information .recruit__message__txt::before,
#information .recruit__message__txt::after {
  content: "";
  position: absolute;
  width: 7.8em;
  height: 7.8em;
  bottom: 0;
  z-index: -1;
}

#information .recruit__message__txt::before {
  background: url(../images/information/illust-message01.svg) no-repeat center/cover;
  left: 5%;
}

#information .recruit__message__txt::after {
  background: url(../images/information/illust-message02.svg) no-repeat center/cover;
  right: 5%;
}

#information .recruit__voice {
  margin-top: 4em;
}

#information .recruit__voice__tit {
  font-size: 180%;
  margin-bottom: 1em;
}

#information .recruit__voice__flex {
  display: flex;
  gap: 0 1.2em;
}

#information .recruit__voice__flex__item {
  border-radius: 2em;
  width: 34%;
}

#information .recruit__voice__flex__item .imgBox {
  text-align: center;
}

#information .recruit__voice__flex__item .imgBox img {
  width: 6em;
}

#information .recruit__voice__flex__item .tit {
  margin-top: 0.5em;
  font-size: 155%;
  line-height: 1.6;
}

#information .recruit__voice__flex__item .txt {
  margin-top: 0.5em;
  letter-spacing: 0;
  font-size: 115%;
}

@media only screen and (max-width: 960px) {
  #information .recruit__message__tit br {
    display: block;
  }

  #information .recruit__message__txt {
    font-size: 115%;
    line-height: 2;
    position: relative;
  }

  #information .recruit__message__txt::before,
  #information .recruit__message__txt::after {
    width: 6em;
    height: 6em;
    bottom: -30%;
  }

  #information .recruit__message__txt::before {
    left: 0;
  }

  #information .recruit__message__txt::after {
    right: 0;
  }

  #information .recruit__voice__flex {
    flex-wrap: wrap;
    gap: 1em 0;
  }

  #information .recruit__voice__flex__item {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  #information .recruit__message__txt {
    text-align: left;
  }
}

#information .cv {
  padding-top: 0;
  padding-bottom: 0;
}

#information .cv__txt {
  font-size: 115%;
  margin-bottom: 2em;
}

#event .schedule {
  overflow-x: hidden;
}

#event .schedule__container {
  display: flex;
  flex-direction: column;
}

#event .schedule__box {
  width: 85%;
  margin-bottom: 4em;
  background: #fff;
  border-radius: 2em;
  display: flex;
  justify-content: center;
  gap: 0 2em;
  padding: 3.3em;
  position: relative;
  z-index: 1;
}

#event .schedule__box::before {
  content: "";
  max-width: 214px;
  width: 20vw;
  max-height: 214px;
  height: 20vw;
  bottom: 0;
  position: absolute;
  z-index: -1;
}

#event .schedule__box:nth-child(odd) {
  align-self: flex-end;
  position: relative;
}

#event .schedule__box:nth-child(odd) .imgBox {
  position: absolute;
  top: 0;
  left: -40%;
  z-index: -1;
  width: 30vw;
  max-width: 459px;
}

#event .schedule__box:nth-child(even) {
  position: relative;
}

#event .schedule__box:nth-child(even) .imgBox {
  position: absolute;
  top: 0;
  right: -40%;
  z-index: -1;
  width: 30vw;
  max-width: 459px;
}

#event .schedule__box__item {
  width: 30%;
}

#event .schedule__box__item .month {
  border-radius: 100px;
  padding: 0.25em 1em;
  line-height: 1;
  font-size: 230%;
}

#event .schedule__box__item .month .small {
  font-size: 58%;
}

#event .schedule__box__item ul {
  padding-left: 2em;
  margin-top: 1em;
}

#event .schedule__box__item ul li {
  margin-top: 0.25em;
  padding-left: 0.8em;
  font-size: 115%;
  position: relative;
}

#event .schedule__box__item ul li::before {
  content: "";
  position: absolute;
  width: 0.32em;
  height: 0.32em;
  top: 0.6em;
  left: 0;
  border-radius: 100%;
}

#event .schedule__box.spring::before {
  left: 2%;
  background: url(../images/event/spring.svg) no-repeat center/cover;
}

#event .schedule__box.spring .month {
  background: #FFE3EC;
  color: #DB658A;
}

#event .schedule__box.spring ul li::before {
  background: #DB658A;
}

#event .schedule__box.summer::before {
  right: 2%;
  background: url(../images/event/summer.svg) no-repeat center/cover;
}

#event .schedule__box.summer .month {
  background: #E2FFDB;
  color: #45763A;
}

#event .schedule__box.summer ul li::before {
  background: #45763A;
}

#event .schedule__box.autumn::before {
  left: 2%;
  background: url(../images/event/autumn.svg) no-repeat center/cover;
}

#event .schedule__box.autumn .month {
  background: #FFFDDC;
  color: #A9A420;
}

#event .schedule__box.autumn ul li::before {
  background: #A9A420;
}

#event .schedule__box.winter::before {
  right: 2%;
  background: url(../images/event/winter.svg) no-repeat center/cover;
}

#event .schedule__box.winter .month {
  background: #E3F2FF;
  color: #3B6488;
}

#event .schedule__box.winter ul li::before {
  background: #3B6488;
}

#event .schedule__remark {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1600px) {
  #event .schedule__box {
    width: 78%;
  }
}

@media only screen and (max-width: 1400px) {
  #event .schedule__box:nth-child(odd) .imgBox {
    left: -25vw;
  }

  #event .schedule__box:nth-child(even) .imgBox {
    right: -25vw;
  }
}

@media only screen and (max-width: 960px) {
  #event .schedule__box {
    width: 70%;
    flex-wrap: wrap;
    gap: 2em 0;
  }

  #event .schedule__box:nth-child(odd) .imgBox {
    width: 40vw;
    left: -35vw;
  }

  #event .schedule__box:nth-child(even) .imgBox {
    width: 40vw;
    right: -35vw;
  }

  #event .schedule__box__item {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  #event .schedule__box {
    width: 100%;
    padding: 3em 2em;
  }

  #event .schedule__box:nth-child(odd) .imgBox,
  #event .schedule__box:nth-child(even) .imgBox {
    margin-top: 1em;
    position: relative;
    z-index: inherit;
    top: inherit;
    width: 100%;
    left: inherit;
    right: inherit;
    max-width: inherit;
    order: 4;
  }

  #event .schedule__box__item {
    width: 100%;
  }
}

#event .introduction {
  padding-top: 0;
  padding-bottom: 0;
}

#event .introduction__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2;
  margin-bottom: 3em;
}

#event .introduction__flex:nth-of-type(even) .introduction__flex__txt {
  order: 1;
}

#event .introduction__flex:nth-of-type(even) .introduction__flex__img {
  order: 0;
}

#event .introduction__flex:last-child {
  margin-bottom: 0;
}

#event .introduction__flex__txt {
  width: 68%;
}

#event .introduction__flex__txt .tit {
  font-size: 180%;
  position: relative;
  padding-left: 3em;
  margin-bottom: 0.5em;
  line-height: 1.4;
}

#event .introduction__flex__txt .tit br {
  display: none;
}

#event .introduction__flex__txt .tit .month {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 70%;
  background: #fff;
  padding: 0.5em 0.8em;
  line-height: 1;
  border-radius: 100px;
  text-align: center;
}

#event .introduction__flex__txt .txt {
  font-size: 115%;
}

#event .introduction__flex__img {
  width: 30%;
}

@media only screen and (max-width: 960px) {
  #event .introduction__flex {
    flex-wrap: wrap;
  }

  #event .introduction__flex:nth-of-type(even) .introduction__flex__txt {
    order: 0;
  }

  #event .introduction__flex:nth-of-type(even) .introduction__flex__img {
    order: 1;
  }

  #event .introduction__flex__txt {
    width: 100%;
  }

  #event .introduction__flex__txt .tit br {
    display: block;
  }

  #event .introduction__flex__txt .c-pointDl dd br {
    display: none;
  }

  #event .introduction__flex__txt .txt br {
    display: none;
  }

  #event .introduction__flex__img {
    width: 100%;
    margin-top: 2em;
  }

  #event .introduction__flex__img .svg {
    max-width: 80%;
    margin: -15vw auto -10vw;
  }
}

#daily .timeline {
  overflow: hidden;
}

#daily .timeline .c-inner960 {
  position: relative;
}

#daily .timeline .c-inner960 .imgBox01,
#daily .timeline .c-inner960 .imgBox02,
#daily .timeline .c-inner960 .imgBox03 {
  position: absolute;
  max-width: 439px;
  width: 30vw;
  z-index: 20;
}

#daily .timeline .c-inner960 .imgBox01 {
  top: 10%;
  right: -40%;
}

#daily .timeline .c-inner960 .imgBox02 {
  top: 40%;
  left: -40%;
}

#daily .timeline .c-inner960 .imgBox03 {
  top: 70%;
  right: -40%;
}

@media only screen and (max-width: 1400px) {
  #daily .timeline .c-inner960 .imgBox01 {
    right: -15%;
  }

  #daily .timeline .c-inner960 .imgBox02 {
    left: inherit;
    right: -15%;
  }

  #daily .timeline .c-inner960 .imgBox03 {
    right: -15%;
  }
}

@media only screen and (max-width: 960px) {
  #daily .timeline .c-inner960 .imgBox01 {
    top: 8%;
    right: -5%;
  }

  #daily .timeline .c-inner960 .imgBox02 {
    top: 35%;
    left: inherit;
    right: -5%;
  }

  #daily .timeline .c-inner960 .imgBox03 {
    top: 65%;
    right: -5%;
  }
}

@media only screen and (max-width: 768px) {
  #daily .timeline .c-inner960 .imgBox01 {
    top: 10%;
  }

  #daily .timeline .c-inner960 .imgBox02 {
    top: 40%;
  }
}

#daily .childcareCont__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

#daily .childcareCont__flex__item {
  width: calc((100% - 2em) / 2);
}

#daily .childcareCont__flex__item .txt {
  margin-top: 1.5em;
  font-size: 115%;
}

#daily .childcareCont__flex__item .imgBox img {
  max-height: 295px;
}

#daily .childcareCont__container {
  margin-top: 2em;
}

#daily .childcareCont__container .txt {
  margin-top: 1em;
}

#daily .childcareCont__container p {
  font-size: 115%;
}

#daily .childcareCont__container__flex {
  margin-top: 2em;
  display: flex;
  justify-content: space-between;
}

#daily .childcareCont__container__flex__img {
  width: 41%;
}

#daily .childcareCont__container__flex__txt {
  width: 55%;
}

@media only screen and (max-width: 768px) {
  #daily .childcareCont__flex__item {
    width: 100%;
  }

  #daily .childcareCont__flex__item .imgBox {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  #daily .childcareCont__container .txt {
    text-align: left;
  }

  #daily .childcareCont__container__flex {
    flex-wrap: wrap;
  }

  #daily .childcareCont__container__flex__img {
    margin-top: 0;
    width: 100%;
  }

  #daily .childcareCont__container__flex__txt {
    margin-top: 2em;
    width: 100%;
  }
}

#daily .lunch {
  padding-top: 0;
  padding-bottom: 0;
}

#daily .lunch__flex {
  display: flex;
  justify-content: space-between;
}

#daily .lunch__flex__img {
  width: 46%;
}

#daily .lunch__flex__txt {
  width: 50%;
  font-size: 115%;
  line-height: 2;
}

@media only screen and (max-width: 768px) {
  #daily .lunch__flex {
    flex-wrap: wrap;
  }

  #daily .lunch__flex__img {
    width: 100%;
  }

  #daily .lunch__flex__txt {
    margin-top: 1em;
    width: 100%;
  }
}

#contact .form form#mailformpro {
  color: #464646;
}

#contact .form form#mailformpro dl dt {
  width: 250px;
  font-weight: normal;
}

#contact .form form#mailformpro dl dd {
  width: calc(100% - 250px);
}

#contact .form form#mailformpro input,
#contact .form form#mailformpro textarea {
  border-radius: 0.25em;
  border: 1px solid #CCC;
}

#contact .form form#mailformpro input,
#contact .form form#mailformpro button,
#contact .form form#mailformpro select,
#contact .form form#mailformpro textarea {
  font-size: 115%;
}

#contact .form form#mailformpro .mfp_ruby {
  color: #A5D29A;
}

#contact .form form#mailformpro .mfp_must {
  color: #FF0000;
}

#contact .form form#mailformpro .mfp_buttons {
  display: flex;
  justify-content: center;
  gap: 0 1.25em;
  max-width: 650px;
}

#contact .form form#mailformpro .mfp_buttons button {
  border-radius: 100px;
  min-height: 90px;
  padding: 0.8em 2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  margin: inherit;
  min-width: inherit;
  width: 100%;
}

#contact .form form#mailformpro .mfp_buttons .sub {
  background-color: #D65252;
}

#contact .form form#mailformpro .mfp_buttons .sub:hover {
  background-color: #dc2121;
}

#contact .form form#mailformpro .mfp_buttons .sub .txt {
  position: relative;
  padding-left: 1.6em;
}

#contact .form form#mailformpro .mfp_buttons .sub .txt::before {
  content: "";
  position: absolute;
  width: 1.4em;
  height: 1.4em;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/common/icon-submit.svg) no-repeat center/cover;
}

#contact .form #mfp_content {
  max-width: inherit;
}

@media only screen and (max-width: 960px) {
  #contact .form form#mailformpro dl dt {
    width: 30%;
  }

  #contact .form form#mailformpro dl dd {
    width: 68%;
  }

  #contact .form form#mailformpro .mfp_buttons {
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  #contact .form form#mailformpro dl dt {
    width: 100%;
  }

  #contact .form form#mailformpro dl dd {
    width: 100%;
  }

  #contact .form form#mailformpro .mfp_buttons {
    flex-direction: column;
  }
}

@media only screen and (max-width: 480px) {
  #contact .form form#mailformpro .mfp_buttons button {
    min-height: 60px;
  }
}

#childcare .club__inner::before {
  content: "";
  position: absolute;
  width: 35vw;
  max-width: 408px;
  height: 35vw;
  max-height: 408px;
  bottom: -6%;
  right: 0;
  background: url(../images/childcare/illust-family.svg) no-repeat center/cover;
  z-index: 1;
}

#childcare .club__inner .c-cvBtnBox {
  margin-top: 2em;
}

@media only screen and (max-width: 960px) {
  #childcare .club__inner::before {
    bottom: -2%;
  }
}

#childcare .entei {
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
  #childcare .entei .c-title {
    text-align: center;
  }

  #childcare .club .c-table tr td br {
    display: none;
  }
}

#about .philosophy {
  position: relative;
}

#about .philosophy__inner::before {
  content: "";
  position: absolute;
  max-width: 252px;
  width: 20vw;
  max-height: 252px;
  height: 20vw;
  bottom: 0;
  right: 0;
  background: url(../images/about/illust-sunrise.svg) no-repeat center/cover;
  z-index: 1;
}

#about .philosophy__message {
  font-size: 180%;
  line-height: 2;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}

#about .philosophy__message::before {
  content: "";
  position: absolute;
  max-width: 243px;
  width: 20vw;
  max-height: 243px;
  height: 20vw;
  top: -180%;
  right: 5%;
  background: url(../images/about/about-philosophy-illust-crown.svg) no-repeat center/cover;
  z-index: -1;
}

#about .philosophy__main {
  margin-top: 6.5em;
}

#about .philosophy__main__flex {
  display: flex;
  justify-content: center;
  gap: 0 2em;
}

#about .philosophy__main__item .imgBox {
  margin: 0 auto;
  width: 7.2em;
  height: 7.2em;
}

#about .philosophy__main__item .txt {
  margin-top: 0.5em;
  text-align: center;
  font-size: 135%;
  line-height: 2;
  letter-spacing: 0;
}

#about .philosophy__main__container {
  margin-top: 3em;
  font-size: 115%;
}

@media only screen and (max-width: 1400px) {
  #about .philosophy__message::before {
    right: 0;
  }
}

@media only screen and (max-width: 960px) {
  #about .philosophy__message::before {
    bottom: -30%;
  }

  #about .philosophy__main__flex {
    flex-wrap: wrap;
    gap: 2em 1em;
  }

  #about .philosophy__main__item {
    width: 45%;
  }

  #about .philosophy__main__container br {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  #about .philosophy__message {
    font-size: 160%;
  }

  #about .philosophy__main__item {
    width: 100%;
  }

  #about .philosophy__main__container br {
    display: none;
  }
}

#about .target {
  padding-top: 0;
}

#about .target__flex {
  display: flex;
  justify-content: space-between;
}

#about .target__flex.second {
  margin-top: 3em;
}

#about .target__flex.second .target__flex__img {
  order: 1;
}

#about .target__flex.second .target__flex__txt {
  order: 0;
}

#about .target__flex__img {
  width: 45%;
}

#about .target__flex__txt {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#about .target__flex__txt .imgBox {
  max-width: 260px;
  width: 40vw;
}

#about .target__flex__txt ol {
  counter-reset: item;
}

#about .target__flex__txt ol li {
  margin-top: 1.8em;
  font-size: 115%;
  padding-left: 2.5em;
  position: relative;
  z-index: 1;
  line-height: 2;
}

#about .target__flex__txt ol li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0.3em;
  top: 0.3em;
  color: #fff;
  font-family: "ab-kirigirisu", sans-serif;
  font-size: 120%;
  line-height: 1;
}

#about .target__flex__txt ol li::after {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  border-radius: 100%;
  width: 1.7em;
  height: 1.7em;
  z-index: -1;
}

#about .target__flex__txt ol.green li::after {
  background: #53B23C;
}

#about .target__flex__txt ol.blue li::after {
  background: #5EB9CF;
}

#about .target__container {
  margin-top: 3em;
}

#about .target__container .tit {
  font-size: 180%;
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 0.25em;
}

#about .target__container .tit::before {
  content: "";
  position: absolute;
  width: 0.98em;
  height: 0.98em;
  top: 0.5em;
  left: 0;
}

#about .target__container .tit.nyuji::before {
  background: url(../images/about/icon-nyuji.svg) no-repeat center/cover;
}

#about .target__container .tit.yoji::before {
  background: url(../images/about/icon-yoji.svg) no-repeat center/cover;
}

#about .target__container .txt {
  font-size: 115%;
}

@media only screen and (max-width: 960px) {
  #about .target__flex {
    flex-wrap: wrap;
  }

  #about .target__flex.second .target__flex__img {
    order: 0;
  }

  #about .target__flex.second .target__flex__txt {
    order: 1;
  }

  #about .target__flex__img {
    width: 100%;
  }

  #about .target__flex__txt {
    margin-top: 2em;
    width: 100%;
  }

  #about .target__container br {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  #about .target__container .tit {
    line-height: 1.6;
    font-size: 160%;
  }
}

#about .detail {
  padding-top: 0;
  padding-bottom: 0;
}

#about .detail__container {
  position: relative;
  z-index: 1;
}

#about .detail__container::before {
  content: "";
  position: absolute;
  max-width: 288px;
  width: 20vw;
  max-height: 288px;
  height: 20vw;
  bottom: 0;
  right: -10%;
  background: url(../images/about/about-detal-illust-hunting.svg) no-repeat center/cover;
  z-index: -1;
}

#about .detail__container .c-table {
  width: 100%;
}

@media only screen and (max-width: 1400px) {
  #about .detail__container::before {
    right: 0;
  }
}
