@charset "UTF-8";
/* CSS Document */
/*
Theme Name: Wordpressの場合はここに案件名（テーマの名前）
Author: 株式会社ジャンプス

*/
/*

Irohamaru Mikami

Regular 400
Medium 500

Aptly

Medium 500
Bold 700

*/
/* 水玉ピンク */
/* 水玉青 */
/* 水玉青（少し透明） */
/* 欧文フォント */
.eg {
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* 日本語フォント */
.jp {
  font-family: irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* 文字寄せ */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

/* ノートパソコン改行 */
@media screen and (max-width: 1350px) {
  .npbr {
    display: block;
  }
}

/* タブレット改行 */
@media screen and (max-width: 768px) {
  .tbbr {
    display: block;
  }
}

/* スマホ改行 */
@media screen and (max-width: 480px) {
  .spbr {
    display: block;
  }
}

/* スマホ非表示 */
@media screen and (max-width: 480px) {
  .spnone {
    display: none;
  }
}

/* 見出し */
/* 段落 */
p {
  padding-bottom: 2em;
}

/* 注釈 */
.note {
  padding-left: 1em;
  text-indent: -1em;
  color: #e95383;
  font-size: 0.85em;
  line-height: 1.25em;
}
.note::before {
  content: "※";
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
img.img100 {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.imgbox {
  line-height: 0;
}

.rd {
  border-radius: 1em;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* =======================================================================================================================
　　　　　　　　　SVG
======================================================================================================================= */
/* リンク */
a {
  display: block;
  text-decoration: none;
  color: #1d2c59;
  transition: 0.3s ease;
  backface-visibility: hidden;
}
a .thumb {
  overflow: hidden;
}
a img {
  transition: 0.3s ease;
  backface-visibility: hidden;
}
a:hover {
  color: #e95383;
}
a:hover .thumb {
  overflow: hidden;
}
a:hover img {
  transform: scale(1.1);
}

/* ボタン */
.btn {
  width: 10em;
  height: 3.75em;
  line-height: 3.75em;
  background-color: #e95383;
  border-radius: 3.75em;
  text-align: center;
  margin: 0 auto;
  transition: all 0.4s;
}
.btn a {
  display: block;
  color: #ffffff;
}
.btn:hover {
  transform: scale(1.1);
}

/* ================= 新着記事 ============================================================ */
/*記事一覧*/
.news_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1em;
  margin-bottom: 3.75em;
  /* タブレットの並び */
  /* スマホの並び */
  /*各記事*/
}
@media screen and (max-width: 768px) {
  .news_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .news_list {
    grid-template-columns: 1fr;
  }
}
.news_list li {
  border-radius: 1em;
  position: relative;
  transition: background-color 0.4s;
  /*BLOGの場合*/
  /*NEWSの場合*/
  /*サムネイル画像*/
  /*テキストエリア*/
}
.news_list li.blog {
  background-color: #fcedef;
}
.news_list li.blog:hover {
  background-color: #e95383;
}
.news_list li.blog:hover a {
  color: #fff;
}
.news_list li.blog::after {
  content: "BLOG";
  width: 3.75em;
  height: 3.75em;
  border-radius: 50%;
  background-color: #fff;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #e95383;
  cursor: pointer;
}
.news_list li.news {
  background-color: #e1e5f1;
}
.news_list li.news:hover {
  background-color: #1d2c59;
}
.news_list li.news:hover a {
  color: #fff;
}
.news_list li.news::after {
  content: "NEWS";
  width: 3.75em;
  height: 3.75em;
  border-radius: 50%;
  background-color: #fff;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
}
.news_list li .thumb {
  border-radius: 1em 1em 0 0;
}
.news_list li .thumb:hover {
  border-radius: 1em 1em 0 0;
}
.news_list li .thumb img {
  width: 100%;
  border-radius: 1em 1em 0 0;
}
.news_list li .txtbox {
  line-height: 1;
  letter-spacing: 0;
  padding: 1.25em 1em;
}
.news_list li .txtbox h3 {
  width: 100%;
  max-width: 16em;
  font-size: 1em;
  font-weight: 500;
  padding-bottom: 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
@media screen and (max-width: 1350px) {
  .news_list li .txtbox h3 {
    max-width: 11em;
  }
}
@media screen and (max-width: 768px) {
  .news_list li .txtbox h3 {
    max-width: 20em;
  }
}
@media screen and (max-width: 480px) {
  .news_list li .txtbox h3 {
    max-width: 22em;
  }
}
.news_list li .txtbox .news_date {
  font-size: 2em;
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 0.25em;
}
.news_list li .txtbox p {
  font-size: 0.8em;
  font-weight: 400;
  padding-bottom: 0;
}

/* ================= 保育園一覧 ============================================================ */
.school_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2em;
  /* タブレットの並び */
  /* スマホの並び */
  /*各保育園*/
}
@media screen and (max-width: 768px) {
  .school_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .school_list {
    grid-template-columns: 1fr;
  }
}
.school_list li {
  background-color: #fff;
  border-radius: 1em;
  position: relative;
  transition: background-color 0.4s;
  /*サムネイル画像*/
  /*テキストエリア*/
}
.school_list li:hover {
  background-color: #1d2c59;
}
.school_list li:hover.pink {
  background-color: #e95383;
}
.school_list li a {
  padding: 0.5em 0.5em 0 0.5em;
}
.school_list li a:hover {
  color: #fff;
}
.school_list li .ribbon {
  display: inline-block;
  position: absolute;
  top: 1.5em;
  right: -0.5em;
  height: 2.2em;
  line-height: 2.2em;
  text-align: center;
  padding: 0 1.5em 0 1.6em;
  color: #ffffff;
  -webkit-clip-path: polygon(100vw 0, 0 0, 0.6em 50%, 0 100%, 100vw 100%);
          clip-path: polygon(100vw 0, 0 0, 0.6em 50%, 0 100%, 100vw 100%);
  z-index: 1;
}
.school_list li .ribbon.blue {
  background: #1d2c59;
}
.school_list li .ribbon.pink {
  background: #e95383;
}
.school_list li .thumb {
  border-radius: 0.5em 0.5em 0 0;
}
.school_list li .thumb img {
  width: 100%;
  aspect-ratio: 686/419;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5em 0.5em 0 0;
}
.school_list li .txtbox {
  line-height: 1;
  letter-spacing: 0;
  padding: 1.25em 1em;
}
.school_list li .txtbox h3 {
  font-size: 1em;
  font-weight: 500;
  padding-bottom: 0.5em;
}
.school_list li .txtbox p {
  font-size: 0.8em;
  font-weight: 400;
  padding-bottom: 0;
}

* {
  margin: 0;
  padding: 0;
}

body,
html {
  scroll-behavior: smooth;
}

body {
  display: none;
}

/* =======================================================================================================================
　　　　　　　　　全体
======================================================================================================================= */
body {
  font-family: irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1vw;
  line-height: 2em;
  letter-spacing: 0.05em;
  background: #fff;
  color: #1d2c59;
  overflow-x: hidden;
}
@media screen and (max-width: 1350px) {
  body {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 3.5vw;
  }
}

/* =======================================================================================================================
　　　　　　　　　レイアウト
======================================================================================================================= */
.sec {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 10em 0;
}

.innerbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0 10em;
}
@media screen and (max-width: 1350px) {
  .innerbox {
    padding: 0 5em;
  }
}
@media screen and (max-width: 768px) {
  .innerbox {
    padding: 0 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .innerbox {
    padding: 0 1.5em;
  }
}

#header {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 5em;
  line-height: 5em;
  position: fixed;
  padding: 0 10em;
  z-index: 999;
}

#footer {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 5em;
}
@media screen and (max-width: 1350px) {
  #footer {
    padding: 5em 2.5em;
  }
}
#footer .innerbox2 {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0 5em;
}
@media screen and (max-width: 1350px) {
  #footer .innerbox2 {
    padding: 0 5em;
  }
}
@media screen and (max-width: 768px) {
  #footer .innerbox2 {
    padding: 0 2.5em;
  }
}
@media screen and (max-width: 480px) {
  #footer .innerbox2 {
    padding: 0 1.5em;
  }
}

/* =======================================================================================================================
　　　　　　　　　ヘッダー
======================================================================================================================= */
#header {
  /* 保育士募集 */
}
@media screen and (max-width: 1350px) {
  #header {
    padding: 0 10em 0 2.5em;
  }
}
@media screen and (max-width: 768px) {
  #header {
    padding: 0;
  }
}
#header .gnavbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-items: center;
  padding: 0 1.5em;
  border-radius: 0 0 1em 1em;
  /* アニメーション */
}
@media screen and (max-width: 768px) {
  #header .gnavbox {
    background-color: transparent;
    display: block;
    padding: 0;
  }
}
#header .gnavbox .logo {
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #header .gnavbox .logo {
    display: grid;
    place-items: center;
    width: 9em;
    height: 100%;
    background-color: #fff;
    border-radius: 0 0 0.5em 0;
  }
}
#header .gnavbox .logo a {
  display: flex;
  align-items: center;
}
#header .gnavbox .logo a span {
  display: inline-block;
}
#header .gnavbox .logo a span img {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
#header .gnavbox .logo a .logoimg1 {
  width: 1.75em;
}
#header .gnavbox .logo a .logotxt {
  width: 2.6em;
  padding: 0 0.25em;
}
#header .gnavbox .logo a .logoimg2 {
  width: 2em;
}
@media screen and (max-width: 768px) {
  #header .gnavbox .gnav {
    display: none;
  }
}
#header .gnavbox .gnav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none inside;
  align-items: center;
  /* お問い合わせボタン */
}
#header .gnavbox .gnav ul li {
  padding: 0 1em;
}
@media screen and (max-width: 1350px) {
  #header .gnavbox .gnav ul li {
    padding: 0 0.8em;
  }
}
#header .gnavbox .gnav ul .btn {
  padding: 0;
}
#header .rec_btn {
  display: grid;
  place-items: center;
  width: 9em;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1d2c59;
  border-radius: 0 0 0 1em;
  transition: width 0.4s, height 0.4s, background-color 0.4s;
}
#header .rec_btn:hover {
  width: 9.5em;
  height: calc(100% + 0.5em);
  background-color: #e95383;
}
#header .rec_btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  z-index: 9;
}
#header .rec_btn a span {
  display: block;
  line-height: 1;
  font-size: 1.7em;
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}
#header .rec_btn a p {
  line-height: 1;
  font-size: 0.9em;
  text-align: center;
  padding: 0;
}

/* =======================================================================================================================
　　　　　　　　　スマートフォンナビゲーション
======================================================================================================================= */
/* ================= 格納ナビゲーション ============================================================ */
.hm_btn,
.hm_menu_wrap {
  display: none;
}
@media screen and (max-width: 768px) {
  .hm_btn,
  .hm_menu_wrap {
    display: block;
  }
}

.hm_menu_check {
  /* チェックボックスを隠す */
  display: none;
}

/* -------------------------- メニューボタン ------------------------------------------- */
.hm_btn {
  width: 2em;
  height: 2em;
  cursor: pointer;
  border: transparent solid 1.5em;
  position: fixed;
  top: auto;
  left: 1em;
  right: auto;
  bottom: 1em;
  background: #e95383;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
}
.hm_btn::before, .hm_btn::after {
  width: 2em;
  height: 0.2em;
  background: #fff;
  display: block;
  content: "";
  position: absolute;
  transition: background 0.2s linear, box-shadow 0.2s linear, transform 0.2s 0.2s;
}
.hm_btn::before {
  box-shadow: #fff 0 0.9em 0;
}
.hm_btn::after {
  bottom: 0;
}

/* 開閉時のアニメーション */
.hm_menu_check:checked ~ .hm_btn::before {
  background: rgba(0, 0, 0, 0);
  box-shadow: #fff 0 0.9em 0;
  transform: rotate(45deg) translate3d(0.7em, -0.2em, 0);
}
.hm_menu_check:checked ~ .hm_btn::after {
  background: #fff;
  transform: rotate(-45deg) translate3d(0.6em, -0.6em, 0);
}

/* -------------------------- 格納領域 ------------------------------------------- */
.hm_menu_wrap {
  width: 100%;
  background-color: rgba(125, 144, 201, 0.85);
  background-image: radial-gradient(#b0c4f4 16%, transparent 16%);
  background-size: 25px 25px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: 0.7s;
  box-sizing: border-box;
  overflow: hidden;
  visibility: hidden;
  z-index: 9999;
}
.hm_menu_wrap .hm_inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  display: grid;
  place-items: center;
}
.hm_menu_wrap .hm_inner .menucontent {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  transition: all 1s;
  border: none;
  transform: scale(0);
  /* 中身デザイン */
  /* 装飾 */
}
.hm_menu_wrap .hm_inner .menucontent .gnav {
  width: 40em;
  height: 100%;
  aspect-ratio: 1/1;
  background: #fcedef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .hm_menu_wrap .hm_inner .menucontent .gnav {
    width: 27.5em;
  }
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul {
  list-style: none inside;
  text-align: center;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li {
  font-size: 1.4em;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li:not(:last-child) {
  margin-bottom: 1.4em;
}
.hm_menu_wrap .hm_inner .menucontent .hm_ani {
  position: absolute;
}
.hm_menu_wrap .hm_inner .menucontent .hm_ani.top {
  top: 0;
  right: 2.5em;
}
.hm_menu_wrap .hm_inner .menucontent .hm_ani.down {
  bottom: 0;
  left: 2.5em;
}
.hm_menu_wrap .hm_inner .menucontent .hm_ani img {
  width: 8em;
  height: auto;
}
@media screen and (max-width: 480px) {
  .hm_menu_wrap .hm_inner .menucontent .hm_ani img {
    width: 6em;
  }
}

/* 開閉時のアニメーション */
.hm_menu_check:checked ~ .hm_menu_wrap {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}
.hm_menu_check:checked ~ .hm_menu_wrap .menucontent {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: scale(1);
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

/* タブレット以下用お問い合わせボタン */
.tb_con_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .tb_con_btn {
    display: block;
    position: fixed;
    bottom: 1em;
    right: 1em;
    width: 15em;
    height: 5em;
    line-height: 5em;
    padding: 0;
    background-color: #e95383;
    border-radius: 3.75em;
    text-align: center;
    transition: all 0.4s;
    z-index: 99999;
  }
  .tb_con_btn a {
    font-size: 1.2em;
    color: #ffffff;
  }
  .tb_con_btn:hover {
    transform-origin: center center;
    transform: scale(1.1);
  }
}

/* =======================================================================================================================
　　　　　　　　　トップページメインカラム
======================================================================================================================= */
body#front-page {
  /* ================= メイン画像 ============================================================ */
  /* ================= 見出し共通 ============================================================ */
  /* ================= 保育園のご紹介 ============================================================ */
  /* ================= お知らせ・ブログ ============================================================ */
  /* ================= 保育理念・代表挨拶・志道館について ============================================= */
  /* ================= みんなが笑顔で。 ============================================================ */
  /* ================= 全体の装飾（） ============================================================ */
}
body#front-page #mainimg {
  /* ファーストビュー */
  /* キャッチコピー */
}
body#front-page #mainimg .imgbox {
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: #e1e5f1;
  /* PCとスマホ画像切替 */
  /* Meta Slider */
  /* スライダー画像フルスクリーン表示 */
}
@media screen and (min-aspect-ratio: 1/0.4) {
  body#front-page #mainimg .imgbox {
    min-height: 40vw;
  }
}
body#front-page #mainimg .imgbox.slider_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  body#front-page #mainimg .imgbox.slider_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) and (min-aspect-ratio: 1/1) {
  body#front-page #mainimg .imgbox.slider_pc {
    display: block;
  }
}
@media screen and (max-aspect-ratio: 1/1) {
  body#front-page #mainimg .imgbox.slider_pc {
    display: none;
  }
}
body#front-page #mainimg .imgbox.slider_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  body#front-page #mainimg .imgbox.slider_sp {
    display: block;
  }
}
@media screen and (max-width: 768px) and (min-aspect-ratio: 1/1) {
  body#front-page #mainimg .imgbox.slider_sp {
    display: none;
  }
}
@media screen and (max-aspect-ratio: 1/1) {
  body#front-page #mainimg .imgbox.slider_sp {
    display: block;
  }
}
body#front-page #mainimg .imgbox .metaslider,
body#front-page #mainimg .imgbox #metaslider_container_17,
body#front-page #mainimg .imgbox #metaslider_container_25,
body#front-page #mainimg .imgbox .slider-wrapper,
body#front-page #mainimg .imgbox .nivoSlider,
body#front-page #mainimg .imgbox .nivo-slice {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  margin: auto !important;
  height: auto !important;
  min-height: inherit !important;
  width: auto !important;
  min-width: auto !important;
}
@media screen and (min-aspect-ratio: 1/0.4) {
  body#front-page #mainimg .imgbox .metaslider,
  body#front-page #mainimg .imgbox #metaslider_container_17,
  body#front-page #mainimg .imgbox #metaslider_container_25,
  body#front-page #mainimg .imgbox .slider-wrapper,
  body#front-page #mainimg .imgbox .nivoSlider,
  body#front-page #mainimg .imgbox .nivo-slice {
    top: auto !important;
    bottom: auto !important;
  }
}
body#front-page #mainimg .imgbox .metaslider .nivoSlider img,
body#front-page #mainimg .imgbox .metaslider .nivoSlider .nivo-slice img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: 15% 50% !important;
     object-position: 15% 50% !important;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-aspect-ratio: 1/1) {
  body#front-page #mainimg .imgbox .metaslider .nivoSlider img,
  body#front-page #mainimg .imgbox .metaslider .nivoSlider .nivo-slice img {
    -o-object-position: 50% 70% !important;
       object-position: 50% 70% !important;
  }
}
body#front-page #mainimg .copybox {
  width: 35em;
  height: 25em;
  position: absolute;
  top: 50%;
  right: 10em;
  transform: translateY(-50%);
  transition: all 1s;
  /* SVG */
}
@media screen and (max-width: 1350px) {
  body#front-page #mainimg .copybox {
    font-size: 1.15vw;
    right: 5em;
  }
}
@media screen and (max-aspect-ratio: 1/0.5) {
  body#front-page #mainimg .copybox {
    top: auto;
    bottom: 12em;
    transform: translateY(0);
  }
}
@media screen and (max-aspect-ratio: 1/1) {
  body#front-page #mainimg .copybox {
    font-size: 1.6vw;
    top: 5em;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-aspect-ratio: 1/1) and (max-width: 768px) {
  body#front-page #mainimg .copybox {
    font-size: 2vw;
  }
}
@media screen and (max-aspect-ratio: 1/1) and (max-width: 480px) {
  body#front-page #mainimg .copybox {
    font-size: 2.6vw;
    top: 10em;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
body#front-page #mainimg .copybox .svgall {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
body#front-page #mainimg .copybox .svgall svg {
  width: 100%;
}
body#front-page #mainimg .copybox .txtbox {
  position: absolute;
  bottom: 0;
  right: 15%;
}
@media screen and (max-width: 480px) {
  body#front-page #mainimg .copybox .txtbox {
    width: 100%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}
body#front-page #mainimg .copybox .txtbox .main_copy {
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4em;
  line-height: 0.9;
  padding-bottom: 0.3em;
}
body#front-page #mainimg .copybox .txtbox span {
  display: block;
  line-height: 1;
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75em;
  font-weight: 500;
  padding-bottom: 2.6em;
}
body#front-page #mainimg .copybox .txtbox .smile_jp {
  width: 19.2em;
  padding-bottom: 1.5em;
}
@media screen and (max-width: 480px) {
  body#front-page #mainimg .copybox .txtbox .smile_jp {
    margin: 0 auto;
  }
}
body#front-page #mainimg .copybox .txtbox .smile_jp img {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
body#front-page #mainimg .copybox .txtbox .sub_copy {
  font-size: 1.2em;
  color: #fff;
  letter-spacing: 0.1em;
  padding-bottom: 0;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  body#front-page #mainimg .copybox .txtbox .sub_copy {
    line-height: 1.5em;
  }
}
body#front-page .ttlbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
body#front-page .ttlbox span {
  display: inline-block;
  line-height: 1;
  font-size: 5em;
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 0.4em;
}
@media screen and (max-width: 480px) {
  body#front-page .ttlbox span {
    padding-bottom: 0.2em;
  }
}
body#front-page .ttlbox h2 {
  font-size: 2em;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-bottom: 1.9em;
}
@media screen and (max-width: 480px) {
  body#front-page .ttlbox h2 {
    padding-bottom: 1em;
  }
}
body#front-page #top_school {
  background-color: #fcedef;
  background-image: radial-gradient(#f4b0b8 16%, transparent 16%);
  background-size: 25px 25px;
  /* 装飾 */
}
body#front-page #top_school .innerbox {
  /*見出し*/
}
body#front-page #top_school .innerbox .ttlbox {
  text-align: center;
}
body#front-page #top_school .innerbox .ttlbox p {
  padding-bottom: 3.85em;
}
body#front-page #top_school .schoolani1 {
  position: absolute;
  top: 15em;
  right: 0;
}
body#front-page #top_school .schoolani1 img {
  width: 7em;
}
body#front-page #top_school .schoolani2 {
  position: absolute;
  bottom: 0;
  left: 0;
}
body#front-page #top_school .schoolani2 img {
  width: 6.25em;
}
body#front-page #top_news {
  background-color: #fff;
}
body#front-page #top_news .innerbox {
  /*見出し*/
}
body#front-page #top_news .innerbox .ttlbox {
  text-align: center;
}
body#front-page #top_msg {
  background-color: #e95383;
  /* 装飾 */
}
@media screen and (max-width: 480px) {
  body#front-page #top_msg .innerbox {
    padding: 0 2.5em;
  }
}
body#front-page #top_msg .innerbox .msg_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2.8em;
  /* スマホの並び */
  /*各エリア*/
}
@media screen and (max-width: 1350px) {
  body#front-page #top_msg .innerbox .msg_list {
    grid-gap: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  body#front-page #top_msg .innerbox .msg_list {
    grid-gap: 1em;
  }
}
@media screen and (max-width: 480px) {
  body#front-page #top_msg .innerbox .msg_list {
    grid-template-columns: 1fr;
    grid-gap: 3em;
  }
}
body#front-page #top_msg .innerbox .msg_list li {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  /*サムネイル画像*/
  /*テキストエリア*/
}
body#front-page #top_msg .innerbox .msg_list li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
}
body#front-page #top_msg .innerbox .msg_list li a:hover {
  transform: scale(1.1);
}
body#front-page #top_msg .innerbox .msg_list li a:hover img {
  transform: scale(1);
}
body#front-page #top_msg .innerbox .msg_list li .thumb img {
  width: 100%;
  height: 10em;
  border-radius: 1em 1em 0 0;
}
@media screen and (max-width: 1350px) {
  body#front-page #top_msg .innerbox .msg_list li .thumb img {
    height: 8em;
  }
}
@media screen and (max-width: 768px) {
  body#front-page #top_msg .innerbox .msg_list li .thumb img {
    height: 6em;
  }
}
@media screen and (max-width: 480px) {
  body#front-page #top_msg .innerbox .msg_list li .thumb img {
    height: 10em;
  }
}
body#front-page #top_msg .innerbox .msg_list li .txtbox {
  line-height: 1;
  padding: 1.25em 0;
  text-align: center;
}
@media screen and (max-width: 1350px) {
  body#front-page #top_msg .innerbox .msg_list li .txtbox {
    padding: 0.75em 0;
  }
}
body#front-page #top_msg .innerbox .msg_list li .txtbox span {
  display: inline-block;
  font-size: 2.5em;
  letter-spacing: 0;
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 0.35em;
}
@media screen and (max-width: 1350px) {
  body#front-page #top_msg .innerbox .msg_list li .txtbox span {
    font-size: 2em;
    padding-bottom: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  body#front-page #top_msg .innerbox .msg_list li .txtbox span {
    font-size: 2em;
  }
}
@media screen and (max-width: 480px) {
  body#front-page #top_msg .innerbox .msg_list li .txtbox span {
    font-size: 2.5em;
  }
}
body#front-page #top_msg .innerbox .msg_list li .txtbox h3 {
  font-size: 1.5em;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 1350px) {
  body#front-page #top_msg .innerbox .msg_list li .txtbox h3 {
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  body#front-page #top_msg .innerbox .msg_list li .txtbox h3 {
    font-size: 1.5em;
  }
}
body#front-page #top_msg .msgani1 {
  position: absolute;
  bottom: -0.6em;
  left: 10em;
  z-index: 1;
}
@media screen and (max-width: 1350px) {
  body#front-page #top_msg .msgani1 {
    left: 5em;
  }
}
@media screen and (max-width: 768px) {
  body#front-page #top_msg .msgani1 {
    left: 2.5em;
  }
}
body#front-page #top_msg .msgani1 img {
  width: 17em;
}
body#front-page #top_about {
  background-color: #fff;
  /*画像エリア*/
  /* 装飾 */
}
@media screen and (max-width: 480px) {
  body#front-page #top_about {
    padding-bottom: 5em;
  }
}
body#front-page #top_about .innerbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  /*画像エリア*/
  /* テキストエリア */
}
@media screen and (max-width: 768px) {
  body#front-page #top_about .innerbox {
    flex-direction: column;
  }
}
body#front-page #top_about .innerbox .imgbox {
  width: 50%;
}
@media screen and (max-width: 768px) {
  body#front-page #top_about .innerbox .imgbox {
    width: 100%;
    padding-bottom: 5em;
  }
}
@media screen and (max-width: 480px) {
  body#front-page #top_about .innerbox .imgbox {
    padding-bottom: 2.5em;
  }
}
body#front-page #top_about .innerbox .imgbox img {
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  body#front-page #top_about .innerbox .imgbox img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 1em;
    aspect-ratio: 16/9;
  }
}
body#front-page #top_about .innerbox header {
  width: 50%;
  padding: 5em 0 0 5em;
}
@media screen and (max-width: 1350px) {
  body#front-page #top_about .innerbox header {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  body#front-page #top_about .innerbox header {
    width: 100%;
    padding: 0;
  }
}
body#front-page #top_about .innerbox header h2 {
  padding-bottom: 1.6em;
}
body#front-page #top_about .innerbox header .txtbox p {
  letter-spacing: 0.1em;
}
body#front-page #top_about .innerbox header .txtbox p:last-child {
  padding-bottom: 0;
}
body#front-page #top_about .abtani1 {
  position: absolute;
  top: 3.75em;
  right: 7.5em;
}
@media screen and (max-width: 1350px) {
  body#front-page #top_about .abtani1 {
    right: 45em;
  }
}
@media screen and (max-width: 768px) {
  body#front-page #top_about .abtani1 {
    top: 40em;
    right: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  body#front-page #top_about .abtani1 {
    display: none;
  }
}
body#front-page #top_about .abtani1 img {
  width: 7.35em;
}
body#front-page #top_about .abtani2 {
  position: absolute;
  top: 7em;
  right: 14.35em;
}
@media screen and (max-width: 1350px) {
  body#front-page #top_about .abtani2 {
    top: 5em;
    right: 2.5em;
  }
}
@media screen and (max-width: 768px) {
  body#front-page #top_about .abtani2 {
    top: 45em;
    right: 9.5em;
  }
}
@media screen and (max-width: 480px) {
  body#front-page #top_about .abtani2 {
    top: 15em;
    right: 2.5em;
  }
}
body#front-page #top_about .abtani2 img {
  width: 9.25em;
}
body#front-page #top_about .abtani3 {
  position: absolute;
  bottom: 10em;
  left: 5em;
}
@media screen and (max-width: 768px) {
  body#front-page #top_about .abtani3 {
    top: 5em;
    bottom: auto;
  }
}
@media screen and (max-width: 480px) {
  body#front-page #top_about .abtani3 {
    display: none;
  }
}
body#front-page #top_about .abtani3 img {
  width: 7.95em;
}
body#front-page #top_about .abtani4 {
  position: absolute;
  bottom: -0.4em;
  right: 10em;
  z-index: 1;
}
@media screen and (max-width: 1350px) {
  body#front-page #top_about .abtani4 {
    right: 5em;
  }
}
@media screen and (max-width: 768px) {
  body#front-page #top_about .abtani4 {
    right: 2.5em;
  }
}
body#front-page #top_about .abtani4 img {
  width: 15em;
}
@media screen and (max-width: 1350px) {
  body#front-page .decoanime {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  body#front-page .decoanime {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 480px) {
  body#front-page .decoanime {
    font-size: 2.6vw;
  }
}

.cls-2 {
  fill: none;
  stroke: #fff;
  stroke-width: 1em;
}

/* =======================================================================================================================
　　　　　　　　　フッター
======================================================================================================================= */
#footer {
  background-color: #1d2c59;
  letter-spacing: 0;
  line-height: 1;
}
#footer .innerbox2 {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 1em;
  padding: 5em;
  /* 会社情報 */
  /*保育園リンク*/
  /*フッターナビ*/
}
@media screen and (max-width: 1350px) {
  #footer .innerbox2 {
    padding: 2.5em;
    row-gap: 2.5em;
  }
}
#footer .innerbox2 .info_box {
  width: 24%;
}
@media screen and (max-width: 1350px) {
  #footer .innerbox2 .info_box {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #footer .innerbox2 .info_box {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  #footer .innerbox2 .info_box {
    width: 100%;
    text-align: center;
  }
}
#footer .innerbox2 .info_box h2 {
  width: 12.4em;
  padding-bottom: 0.65em;
}
@media screen and (max-width: 480px) {
  #footer .innerbox2 .info_box h2 {
    margin: 0 auto;
  }
}
#footer .innerbox2 .info_box h2 a .logo {
  display: block;
  width: 68%;
}
@media screen and (max-width: 480px) {
  #footer .innerbox2 .info_box h2 a .logo {
    width: 100%;
  }
}
#footer .innerbox2 .info_box h2 a .logo img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
#footer .innerbox2 .info_box .comp_name {
  padding-bottom: 0.5em;
}
#footer .innerbox2 .info_box .ad {
  font-size: 0.8em;
  padding-bottom: 1em;
}
#footer .innerbox2 .info_box .tel {
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 0.5em;
}
#footer .innerbox2 .info_box .tel a {
  font-size: 2em;
  font-weight: 500;
}
#footer .innerbox2 .info_box .b_time {
  font-size: 0.8em;
  padding-bottom: 0;
}
#footer .innerbox2 .info_box .b_time span {
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 500;
}
#footer .innerbox2 .school_link {
  width: 26%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style: none inside;
}
@media screen and (max-width: 1350px) {
  #footer .innerbox2 .school_link {
    width: 50%;
    align-items: flex-end;
  }
}
@media screen and (max-width: 480px) {
  #footer .innerbox2 .school_link {
    width: 100%;
    align-items: center;
    row-gap: 1.5em;
  }
}
#footer .innerbox2 .school_link li a span {
  font-size: 0.9em;
}
#footer .innerbox2 .r_box {
  width: 50%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*ナビメニュー*/
  /*コピーライト*/
}
@media screen and (max-width: 1350px) {
  #footer .innerbox2 .r_box {
    width: 100%;
  }
}
#footer .innerbox2 .r_box nav {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
#footer .innerbox2 .r_box nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none inside;
}
@media screen and (max-width: 1350px) {
  #footer .innerbox2 .r_box nav ul {
    padding: 2.5em 0 5em;
    border-top: solid #e1e5f1;
  }
}
@media screen and (max-width: 768px) {
  #footer .innerbox2 .r_box nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 1.5em;
  }
}
@media screen and (max-width: 480px) {
  #footer .innerbox2 .r_box nav ul {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
}
#footer .innerbox2 .r_box nav ul li a span {
  font-size: 0.8em;
}
#footer .innerbox2 .r_box .copyright {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 0;
  text-align: right;
}
@media screen and (max-width: 480px) {
  #footer .innerbox2 .r_box .copyright {
    text-align: center;
  }
}
#footer .innerbox2 .r_box .copyright small {
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.7em;
}

/* =======================================================================================================================
　　　　　　　　　下層ページ（共通）
======================================================================================================================= */
body #page-header {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  color: #fff;
  padding: 7.5em 0 3em;
  background-color: rgba(125, 144, 201, 0.05);
  /* 背景スライドショー ------------------------------------------- */
  /* 英語タイトル */
  /* 日本語タイトル */
}
body #page-header .innerbox {
  z-index: 10;
}
body #page-header .eg_ttl {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 6em;
  line-height: 1em;
  padding-bottom: 0.25em;
  color: #e95383;
}
@media screen and (max-width: 480px) {
  body #page-header .eg_ttl {
    font-size: 4em;
  }
}
body #page-header .page_ttl {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2em;
  line-height: 1.25em;
  color: #1d2c59;
}
@media screen and (max-width: 480px) {
  body #page-header .page_ttl {
    font-size: 1.25em;
  }
}

/* =======================================================================================================================
　　　　　　　　　お問い合わせ
======================================================================================================================= */
.contactpage-ctt {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  /* 見出し */
  /* 段落 */
  /* =============== 電話 ========================================================= */
  /* =============== WEB ========================================================= */
}
.contactpage-ctt .parts-h3 {
  text-align: left;
  padding-bottom: 1.5em;
  color: #e95383;
}
@media screen and (max-width: 768px) {
  .contactpage-ctt .parts-h3 span {
    text-align: left;
  }
}
.contactpage-ctt p {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.contactpage-ctt p.contact_info {
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  .contactpage-ctt p {
    text-align: left;
  }
}
.contactpage-ctt .contact_tel {
  /* -------------------------- 電話セット ------------------------------------------- */
}
.contactpage-ctt .contact_tel .innercolor {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4em 2em;
  box-sizing: border-box;
  border-radius: 1em;
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .contactpage-ctt .contact_tel .innercolor {
    padding: 4em;
  }
}
.contactpage-ctt .contact_tel .tel_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
  display: flex;
  flex-wrap: wrap;
  margin-top: -2em;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contactpage-ctt .contact_tel .tel_list {
    justify-content: flex-start;
  }
}
.contactpage-ctt .contact_tel .tel_list li {
  padding-right: 2.5em;
  margin-top: 2em;
  /* 支店 ------------------------------------------- */
  /* 番号 ------------------------------------------- */
  /* 受付時間・定休日 ------------------------------------------- */
}
.contactpage-ctt .contact_tel .tel_list li:last-child {
  padding-right: 0;
}
.contactpage-ctt .contact_tel .tel_list li .contacttel_shop {
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.2em;
  padding-bottom: 0.25em;
  text-align: center;
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 3em;
  line-height: 1em;
  padding-bottom: 0.1em;
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel img {
  height: 1em;
  width: auto;
  margin-right: 0.25em;
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel a {
  color: #e95383;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contactpage-ctt .contact_tel .tel_list li p.contacttel_tel a {
    text-align: left;
  }
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel a:hover {
  transform: scale(1.1);
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel a .eg {
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.contactpage-ctt .contact_tel .tel_list li p.contacttel_tel a .eg::before {
  font-size: 0.8em;
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1;
  content: "\f095";
  padding-right: 0.2em;
}
.contactpage-ctt .contact_tel .tel_list li p.time_holiday {
  color: #1d2c59;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  line-height: 1.5em;
  padding-bottom: 0;
  /* 受付時間 */
  /* 定休日 */
}
@media screen and (max-width: 480px) {
  .contactpage-ctt .contact_tel .tel_list li p.time_holiday {
    line-height: 1.2em;
  }
}
.contactpage-ctt .contact_tel .tel_list li p.time_holiday .contacttel_time {
  display: inline-block;
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-size: 1.5em;
  font-style: normal;
  padding-bottom: 0;
  bottom: -0.05em;
}
.contactpage-ctt .contact_tel .tel_list li p.time_holiday .contacttel_time::before {
  display: inline-block;
  width: auto;
  position: relative;
  box-sizing: border-box;
  font-family: irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.67em;
  content: "受付時間";
  padding-right: 0.5em;
  bottom: 0.05em;
}
@media screen and (max-width: 480px) {
  .contactpage-ctt .contact_tel .tel_list li p.time_holiday .contacttel_time {
    font-size: 1.25em;
  }
}
.contactpage-ctt .contact_tel .tel_list li p.time_holiday .contacttel_holiday {
  display: inline-block;
  font-size: 1em;
}
@media screen and (max-width: 480px) {
  .contactpage-ctt .contact_tel .tel_list li p.time_holiday .contacttel_holiday {
    font-size: 0.8em;
  }
}
.contactpage-ctt .webcontact .ct_info {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contactpage-ctt .webcontact .ct_info {
    text-align: left;
  }
}
.contactpage-ctt .webcontact a {
  color: #fff;
  text-decoration: underline;
}

/* =======================================================================================================================
　　　　　　　　　フリーページ（カスタムフィールド）
======================================================================================================================= */
.freepage-ctt {
  padding-top: 0;
  padding-bottom: 0;
}

/* 最大幅800px */
.max800px {
  max-width: 800px;
  margin: 0 auto;
}

/* =============== 背景色 ========================================================= */
.sec_bg1 {
  background: #fff;
}

.sec_bg2 {
  background-color: #fcedef;
  background-image: radial-gradient(rgba(244, 176, 184, 0.3) 16%, transparent 16%);
  background-size: 25px 25px;
}

.sec_bg3 {
  background: #f19ca6;
  color: #fff;
}

/* 同じ背景色のセクションが続いたときに余白をなくす */
.sec_bg1 + .sec_bg1, .sec_bg2 + .sec_bg2, .sec_bg3 + .sec_bg3 {
  padding-top: 0 !important;
}

/* =============== テキスト ========================================================= */
/* ------------ 見出し -------------------------------- */
.parts-h3 {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1em;
  padding-bottom: 6em;
  /* 大きな数字 */
}
.parts-h3 .jpttl {
  font-family: irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  font-size: 2em;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .parts-h3 .jpttl {
    font-size: 1.6em;
  }
}
.parts-h3 .lnmb {
  display: block;
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 5em;
  letter-spacing: 0;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .parts-h3 .lnmb {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .parts-h3 .lnmb {
    font-size: 2em;
  }
}
.parts-h3 .lnmb + .jpttl {
  font-size: 2em;
  padding-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .parts-h3 .lnmb + .jpttl {
    font-size: 1.5em;
  }
}

.parts-h4 {
  font-size: 1.25em;
  line-height: 1.5em;
  padding-top: 3em;
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .parts-h4 {
    font-size: 1.15em;
  }
}

/* 左寄せ・幅指定中央配置テキスト */
.centerbox {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .centerbox {
    width: 100%;
  }
}

.max1500px {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .max1500px {
    width: 100%;
  }
}

/* ------------ 段落 -------------------------------- */
.freepage-ctt a {
  text-decoration: underline;
}
.freepage-ctt .sec p {
  padding-bottom: 2.5em;
  /* 余白小さめ */
  /* 強調 */
  /* 注釈 */
}
.freepage-ctt .sec p.btmmin {
  padding-bottom: 2em;
}
.freepage-ctt .sec p.parts-copy {
  font-size: 2em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 480px) {
  .freepage-ctt .sec p.parts-copy {
    font-size: 1.6em;
  }
}
.freepage-ctt .sec p.note {
  font-size: 0.9em;
  line-height: 1.7em;
  padding-bottom: 2.5em;
  padding-left: 1.2em;
  text-indent: -0.65em;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  color: #e95383;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.freepage-ctt .sec p.note::before {
  display: inline-block;
  content: "※";
  padding-right: 0.2em;
}
.freepage-ctt .sec .imgtxt_txtbox p:last-child {
  padding-bottom: 0;
}

/* やや小さめ強調 */
.strong {
  font-size: 1.2em;
  line-height: 2em;
}

/* =============== ブロック ========================================================= */
.freepage-ctt .sec {
  /* ------------ 背景色つきテキストボックス -------------------------------- */
  /* ------------ Googleマップ ------------------------------------------- */
}
.freepage-ctt .sec .bbox {
  width: 100%;
  box-sizing: border-box;
  padding: 2.5em;
  margin-bottom: 5em;
  background: #fcedef;
  color: #1d2c59;
  border-radius: 1em;
}
@media screen and (max-width: 768px) {
  .freepage-ctt .sec .bbox {
    padding: 2em;
  }
}
@media screen and (max-width: 480px) {
  .freepage-ctt .sec .bbox {
    padding: 1.5em;
  }
}
.freepage-ctt .sec .bbox h3,
.freepage-ctt .sec .bbox h4 {
  font-family: aptly, irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .freepage-ctt .sec .bbox h3,
  .freepage-ctt .sec .bbox h4 {
    font-size: 1.3em;
  }
}
.freepage-ctt .sec .bbox p {
  padding-bottom: 2em;
}
.freepage-ctt .sec .bbox p:last-child {
  padding-bottom: 0;
}
.freepage-ctt .sec .access_map {
  display: block;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 5em;
}
.freepage-ctt .sec .access_map iframe,
.freepage-ctt .sec .access_map .acf-map {
  width: 100%;
  height: 20em;
}
@media screen and (max-width: 768px) {
  .freepage-ctt .sec .access_map iframe,
  .freepage-ctt .sec .access_map .acf-map {
    height: 15em;
  }
}
@media screen and (max-width: 480px) {
  .freepage-ctt .sec .access_map iframe,
  .freepage-ctt .sec .access_map .acf-map {
    height: 12em;
  }
}
.freepage-ctt .sec .access_map .acf-map img {
  max-width: inherit !important;
}

/* =============== 画像 ========================================================= */
.parts-100img {
  width: 100%;
  position: relative;
  padding-bottom: 5em;
  text-align: center;
}
.parts-100img.center {
  text-align: center;
}
.parts-100img.left {
  text-align: left;
}
.parts-100img.right {
  text-align: right;
}
.parts-100img img {
  max-width: inherit;
  height: auto;
}
@media screen and (max-width: 768px) {
  .parts-100img img {
    width: 100%;
  }
}

/* ------------ 画像＋テキスト -------------------------------- */
.box_imglefttxt,
.box_imgrighttxt {
  width: 100%;
  position: relative;
  overflow: hidden;
  zoom: 1;
  padding-bottom: 5em;
}
.box_imglefttxt .imgtxt_imgbox,
.box_imgrighttxt .imgtxt_imgbox {
  width: 40%;
  position: relative;
  padding-bottom: 1em;
  /* 画像 */
}
@media screen and (max-width: 1350px) {
  .box_imglefttxt .imgtxt_imgbox,
  .box_imgrighttxt .imgtxt_imgbox {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .box_imglefttxt .imgtxt_imgbox,
  .box_imgrighttxt .imgtxt_imgbox {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .box_imglefttxt .imgtxt_imgbox,
  .box_imgrighttxt .imgtxt_imgbox {
    width: 100%;
    padding-bottom: 2.5em;
  }
}
.box_imglefttxt .imgtxt_imgbox img,
.box_imgrighttxt .imgtxt_imgbox img {
  width: 100%;
  height: auto;
}

/* 画像左 -------------------------------- */
.box_imglefttxt .imgtxt_imgbox {
  float: left;
  padding-right: 3%;
}

/* 画像右 -------------------------------- */
.box_imgrighttxt .imgtxt_imgbox {
  float: right;
  padding-left: 3%;
}

@media screen and (max-width: 480px) {
  .box_imglefttxt .imgtxt_imgbox,
  .box_imgrighttxt .imgtxt_imgbox {
    float: none;
    padding-right: 0;
    padding-left: 0;
  }
}

/* テキスト -------------------------------- */
/* 見出し */
.imgtxt_txtbox h4 {
  font-size: 1.75em;
  font-weight: 900;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .imgtxt_txtbox h4 {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 480px) {
  .imgtxt_txtbox h4 {
    font-size: 1.5em;
    padding-bottom: 0.67em;
  }
}

/* ------------ 2～6つ並び画像テキストボックス -------------------------------- */
/* テキスト */
.imgbox_txtarea {
  display: block;
  width: 100%;
  z-index: 1;
  position: relative;
  box-sizing: border-box;
}
.imgbox_txtarea h3,
.imgbox_txtarea h4 {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.5em;
  padding-top: 0.25em;
  margin-bottom: 0.5em;
}
.imgbox_txtarea p {
  padding-bottom: 0;
  line-height: 1.5em;
}

/* 横並び画像テキストボックス共通設定 -------------------------------- */
.img2box,
.img3txtbox,
.img4txtbox,
.img5txtbox,
.img6txtbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 5em;
  /* リスト */
}
.img2box ul,
.img3txtbox ul,
.img4txtbox ul,
.img5txtbox ul,
.img6txtbox ul {
  list-style: none inside;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: -2em;
}
@media screen and (max-width: 768px) {
  .img2box ul,
  .img3txtbox ul,
  .img4txtbox ul,
  .img5txtbox ul,
  .img6txtbox ul {
    margin-top: -3em;
  }
}
.img2box ul li,
.img3txtbox ul li,
.img4txtbox ul li,
.img5txtbox ul li,
.img6txtbox ul li {
  width: auto;
  position: relative;
  box-sizing: border-box;
  margin-top: 2em;
  /* 画像 */
}
@media screen and (max-width: 768px) {
  .img2box ul li,
  .img3txtbox ul li,
  .img4txtbox ul li,
  .img5txtbox ul li,
  .img6txtbox ul li {
    margin-top: 3em;
  }
}
.img2box ul li img,
.img3txtbox ul li img,
.img4txtbox ul li img,
.img5txtbox ul li img,
.img6txtbox ul li img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

/* 2つ並び画像テキストボックス -------------------------------- */
.img2box {
  /* リスト */
}
@media screen and (min-width: 769px) {
  .img2box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (max-width: 768px) {
  .img2box ul:has(.youtube_box) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.img2box ul li {
  width: 47%;
}
@media screen and (max-width: 480px) {
  .img2box ul li:has(.youtube_box) {
    width: 100%;
  }
}
.img2box.imghbox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 480px) {
  .img2box.imghbox ul li {
    width: 47%;
  }
}

/* 3つ並び画像テキストボックス -------------------------------- */
.img3txtbox {
  /* リスト */
}
.img3txtbox ul {
  margin-top: -3em;
}
.img3txtbox ul li {
  width: 31%;
  margin-right: 3.5%;
  margin-top: 3em;
}
@media screen and (min-width: 769px) {
  .img3txtbox ul li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .img3txtbox ul li:has(.youtube_box) {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .img3txtbox.imghbox ul li {
    width: 31%;
    margin-right: 3.5%;
  }
  .img3txtbox.imghbox ul li:nth-child(3n) {
    margin-right: 0;
  }
}

/* 4つ並び画像テキストボックス -------------------------------- */
.img4txtbox {
  /* リスト */
}
.img4txtbox ul li {
  width: 23.5%;
  margin-right: 2%;
}
@media screen and (min-width: 769px) {
  .img4txtbox ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1350px) and (min-width: 481px) {
  .img4txtbox.imghbox ul li {
    width: 23.5%;
  }
  .img4txtbox.imghbox ul li:nth-child(2n) {
    margin-right: 2%;
  }
  .img4txtbox.imghbox ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .img4txtbox.imghbox ul li {
    width: 23.5%;
  }
  .img4txtbox.imghbox ul li:nth-child(4n) {
    margin-right: 0;
  }
}

/* 5つ並び画像テキストボックス -------------------------------- */
.img5txtbox {
  /* リスト */
}
.img5txtbox ul li {
  width: 18.4%;
  margin-right: 2%;
}
@media screen and (min-width: 769px) {
  .img5txtbox ul li:nth-child(5n) {
    margin-right: 0;
  }
}

/* 6つ並び画像テキストボックス -------------------------------- */
.img6txtbox {
  /* リスト */
}
.img6txtbox ul li {
  width: 15%;
  margin-right: 2%;
}
@media screen and (min-width: 769px) {
  .img6txtbox ul li:nth-child(6n) {
    margin-right: 0;
  }
}

/* タブレットの時 -------------------------------- */
@media screen and (max-width: 768px) {
  /* 1つ並び */
  .img1txt_tb {
    /* リスト */
  }
  .img1txt_tb ul li {
    width: 100%;
    margin-right: 0;
  }
  /* 2つ並び */
  .img2txt_tb {
    /* リスト */
  }
  .img2txt_tb ul li {
    margin-right: 2%;
  }
  /* 3つ並び */
  /* 4つ並び */
  /* 5つ並び */
  /* 6つ並び */
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .img2txt_tb ul li {
    width: 49%;
  }
  .img2txt_tb ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .img3txt_tb {
    /* リスト */
  }
  .img3txt_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .img3txt_tb ul li {
    width: 32%;
  }
  .img3txt_tb ul li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .img4txt_tb {
    /* リスト */
  }
  .img4txt_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .img4txt_tb ul li {
    width: 23.5%;
  }
  .img4txt_tb ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .img5txt_tb {
    /* リスト */
  }
  .img5txt_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .img5txt_tb ul li {
    width: 18.4%;
  }
  .img5txt_tb ul li:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .img6txt_tb {
    /* リスト */
  }
  .img6txt_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .img6txt_tb ul li {
    width: 15%;
  }
  .img6txt_tb ul li:nth-child(6n) {
    margin-right: 0;
  }
}
/* スマートフォンの時 -------------------------------- */
@media screen and (max-width: 480px) {
  /* 1つ並び */
  .img1txt_sp {
    /* リスト */
  }
  .img1txt_sp ul li {
    width: 100%;
    margin-right: 0;
  }
  /* 2つ並び */
  .img2txt_sp {
    /* リスト */
  }
  .img2txt_sp ul li {
    margin-right: 2%;
    width: 49%;
  }
  .img2txt_sp ul li:nth-child(2n) {
    margin-right: 0;
  }
  /* 3つ並び */
  .img3txt_sp {
    /* リスト */
  }
  .img3txt_sp ul li {
    margin-right: 2%;
    width: 32%;
  }
  .img3txt_sp ul li:nth-child(3n) {
    margin-right: 0;
  }
  /* 4つ並び */
  .img4txt_sp {
    /* リスト */
  }
  .img4txt_sp ul li {
    margin-right: 2%;
    width: 23.5%;
  }
  .img4txt_sp ul li:nth-child(4n) {
    margin-right: 0;
  }
  /* 5つ並び */
  .img5txt_sp {
    /* リスト */
  }
  .img5txt_sp ul li {
    margin-right: 2%;
    width: 18.4%;
  }
  .img5txt_sp ul li:nth-child(5n) {
    margin-right: 0;
  }
  /* 6つ並び */
  .img6txt_sp {
    /* リスト */
  }
  .img6txt_sp ul li {
    margin-right: 2%;
    width: 15%;
  }
  .img6txt_sp ul li:nth-child(6n) {
    margin-right: 0;
  }
}
/* =============== リスト ========================================================= */
/* ノーマルリストマークつき -------------------------------- */
.no_list {
  width: 100%;
  box-sizing: border-box;
  padding: 2.5em;
  margin: 0 auto;
  margin-bottom: 2.5em;
  position: relative;
  background: #fcedef;
  color: #1d2c59;
  border-radius: 1em;
  /* 見出し */
  /* リスト */
}
.sec_bg2 .no_list {
  background: #fff;
}
@media screen and (max-width: 1350px) {
  .no_list {
    padding: 3em;
  }
}
@media screen and (max-width: 768px) {
  .no_list {
    padding: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .no_list {
    padding: 1.5em;
  }
}
.no_list h3, .no_list h4 {
  font-family: aptly, irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
  color: #e95383;
}
@media screen and (max-width: 768px) {
  .no_list h3, .no_list h4 {
    font-size: 1.3em;
  }
}
.no_list ul {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.no_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.7em;
  padding-left: 2em;
  padding-bottom: 1.5em;
  list-style: none inside;
}
.no_list ul li:last-child {
  padding-bottom: 0;
}
.no_list ul li::before {
  content: "・";
  position: relative;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-size: 2em;
  color: #e95383;
  text-align: center;
  vertical-align: bottom;
}

/* チェックボックスマークつき -------------------------------- */
.check_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 2.5em;
  margin: 0 auto;
  margin-bottom: 2.5em;
  background: #fcedef;
  color: #1d2c59;
  border-radius: 1em;
  /* 見出し */
  /* リスト */
}
.sec_bg2 .check_list {
  background: #fff;
}
@media screen and (max-width: 1350px) {
  .check_list {
    padding: 3em;
  }
}
@media screen and (max-width: 768px) {
  .check_list {
    padding: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .check_list {
    padding: 1.5em;
  }
}
.check_list h3, .check_list h4 {
  font-family: aptly, irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
  color: #e95383;
}
@media screen and (max-width: 768px) {
  .check_list h3, .check_list h4 {
    font-size: 1.3em;
  }
}
.check_list ul {
  list-style: none inside;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.check_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.7em;
  padding-left: 2em;
  padding-bottom: 1.5em;
}
.check_list ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  color: #e95383;
  position: relative;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-size: 2em;
  color: #e95383;
  text-align: center;
  vertical-align: bottom;
}
.check_list ul li:last-child {
  padding-bottom: 0;
}

/* 番号つき -------------------------------- */
.order_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 2.5em;
  margin: 0 auto;
  margin-bottom: 2.5em;
  position: relative;
  background: #fcedef;
  color: #1d2c59;
  border-radius: 1em;
  /* 見出し */
  /* リスト */
}
.sec_bg2 .order_list {
  background: #fff;
}
@media screen and (max-width: 1350px) {
  .order_list {
    padding: 3em;
  }
}
@media screen and (max-width: 768px) {
  .order_list {
    padding: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .order_list {
    padding: 1.5em;
  }
}
.order_list h3, .order_list h4 {
  font-family: aptly, irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
  color: #e95383;
}
@media screen and (max-width: 768px) {
  .order_list h3, .order_list h4 {
    font-size: 1.3em;
  }
}
.order_list ol {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
  counter-reset: number;
}
.order_list ol li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.7em;
  padding-left: 2em;
  padding-bottom: 1.5em;
}
.order_list ol li::before {
  position: relative;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2em;
  color: #e95383;
  text-align: center;
  vertical-align: bottom;
}
.order_list ol li:nth-child(n+10) {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.order_list ol li:last-child {
  padding-bottom: 0;
}

/* 表型 -------------------------------- */
.table_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 2.5em;
  /* 見出し */
  /* リスト */
}
.table_list h3, .table_list h4 {
  display: inline-block;
  font-family: aptly, irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .table_list h3, .table_list h4 {
    font-size: 1.3em;
  }
}
.table_list ul {
  list-style: none inside;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  text-align: left;
}
.table_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 0.5em;
  border-radius: 1em;
  background: #fcedef;
  margin-bottom: 0.5em;
}
.sec_bg2 .table_list ul li {
  background: #fff;
}
.table_list ul li:last-child {
  margin-bottom: 0;
}
.table_list ul li .tablelist_th,
.table_list ul li .tablelist_td {
  font-family: aptly, irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  padding: 1.5em;
  font-size: 1em;
  line-height: 1.5em;
  width: auto;
  position: relative;
  box-sizing: border-box;
  color: #1d2c59;
}
@media screen and (max-width: 768px) {
  .table_list ul li .tablelist_th,
  .table_list ul li .tablelist_td {
    display: block;
    padding: 1em;
  }
}
.table_list ul li .tablelist_th {
  width: 30%;
  font-weight: 500;
  border-right: #1d2c59 dashed 0.15em;
}
@media screen and (max-width: 768px) {
  .table_list ul li .tablelist_th {
    width: 100%;
    border-right: none;
    border-bottom: #1d2c59 dashed 0.15em;
  }
}
.table_list ul li .tablelist_td {
  width: 70%;
  font-weight: 400;
}
.table_list ul li .tablelist_td strong {
  font-family: aptly, irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 768px) {
  .table_list ul li .tablelist_td {
    width: 100%;
  }
}
.table_list ul li:last-child {
  border-bottom: none;
}

/* 注釈マークつき -------------------------------- */
.note_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 2.5em;
  padding: 2.5em;
  background: #e1e5f1;
  color: #1d2c59;
  border-radius: 1em;
  opacity: 0.7;
  filter: alpha(opacity=70);
  /* 見出し */
  /* リスト */
}
@media screen and (max-width: 1350px) {
  .note_list {
    padding: 3em;
  }
}
@media screen and (max-width: 768px) {
  .note_list {
    padding: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  .note_list {
    padding: 1.5em;
  }
}
.note_list h3, .note_list h4 {
  font-family: aptly, irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .note_list h3, .note_list h4 {
    font-size: 1.3em;
  }
}
.note_list ul {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
}
.note_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.7em;
  text-indent: -1.2em;
  padding-left: 1.2em;
  padding-bottom: 1.5em;
}
.note_list ul li::before {
  display: inline-block;
  padding-left: 1em;
  padding-right: 0.2em;
  content: "※";
}
.note_list ul li:last-child {
  padding-bottom: 0;
}

/* タイムライン -------------------------------- */
.time_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 2.5em;
  /* 見出し */
  /* リスト */
}
.time_list h3, .time_list h4 {
  display: inline-block;
  font-family: aptly, irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 0.5em;
  color: #e95383;
}
@media screen and (max-width: 768px) {
  .time_list h3, .time_list h4 {
    font-size: 1.3em;
  }
}
.time_list ul {
  list-style: none inside;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  text-align: left;
  /* 最後の点線 */
}
.time_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* 縦線 */
}
.time_list ul li::before, .time_list ul li::after {
  content: "";
  display: block;
}
.time_list ul li::before {
  position: absolute;
  top: 0;
  left: 10em;
  right: auto;
  bottom: 0;
  width: 1px;
  margin: auto;
  border-right: #f19ca6 solid 0.25em;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.time_list ul li:first-child::before {
  top: 2em;
}
.time_list ul li:last-child::before {
  height: 2em;
  bottom: auto;
}
.time_list ul li .time_time,
.time_list ul li .time_ctt {
  font-family: aptly, irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  padding: 1.5em;
  font-size: 1em;
  line-height: 1.5em;
  width: auto;
  position: relative;
  box-sizing: border-box;
}
.time_list ul li .time_time {
  padding-left: 0;
  width: 10em;
  font-weight: 500;
  text-align: right;
  color: #e95383;
}
.time_list ul li .time_ctt {
  padding-right: 0;
  flex: 1;
  font-weight: 500;
  /* 丸 */
}
.time_list ul li .time_ctt strong {
  font-family: aptly, irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
}
.time_list ul li .time_ctt::before {
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: #e95383;
  position: absolute;
  top: 1.9em;
  left: -0.2em;
  right: auto;
  bottom: auto;
  z-index: 2;
}
.time_list ul.on li:last-child::after {
  content: "";
  display: block;
  width: 1px;
  position: absolute;
  top: 2em;
  left: 10em;
  right: auto;
  bottom: 0;
  margin: auto;
  border-right: #f19ca6 dotted 0.25em;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* =============== Youtube動画 ========================================================= */
.videobox .imgtxt_imgbox {
  width: 60%;
}
@media screen and (max-width: 480px) {
  .videobox .imgtxt_imgbox {
    width: 100%;
  }
}

.youtube_box {
  width: 100%;
}
.youtube_box span {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube_box span iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.img2box .youtube_box,
.img3txtbox .youtube_box {
  padding-bottom: 1.5em;
}

/* =============== 余白ゼロ ========================================================= */
.freepage-ctt .sec .innerbox p:last-child,
.freepage-ctt .sec .innerbox p.parts-copy:last-child,
.freepage-ctt .sec .innerbox p.note:last-child,
.freepage-ctt .sec .innerbox .parts-100img:last-child,
.freepage-ctt .sec .innerbox .box_imglefttxt:last-child,
.freepage-ctt .sec .innerbox .box_imgrighttxt:last-child,
.freepage-ctt .sec .innerbox .img2box:last-child,
.freepage-ctt .sec .innerbox .img3txtbox:last-child,
.freepage-ctt .sec .innerbox .img4txtbox:last-child {
  padding-bottom: 0;
}
.freepage-ctt .sec .innerbox .bbox:last-child,
.freepage-ctt .sec .innerbox .no_list:last-child,
.freepage-ctt .sec .innerbox .check_list:last-child,
.freepage-ctt .sec .innerbox .order_list:last-child,
.freepage-ctt .sec .innerbox .table_list:last-child,
.freepage-ctt .sec .innerbox .note_list:last-child,
.freepage-ctt .sec .innerbox .access_map:last-child {
  margin-bottom: 0;
}

.img2box img:last-child,
.img3txtbox img:last-child,
.img4txtbox img:last-child {
  margin-bottom: 0;
}
.img2box a img:last-child,
.img3txtbox a img:last-child,
.img4txtbox a img:last-child {
  margin-bottom: 1em;
}
.img2box a:last-child img,
.img3txtbox a:last-child img,
.img4txtbox a:last-child img {
  margin-bottom: 0;
}
.img2box a:last-child img:last-child,
.img3txtbox a:last-child img:last-child,
.img4txtbox a:last-child img:last-child {
  margin-bottom: 0;
}

li .youtube_box:last-child {
  margin-bottom: 0;
}

.imgtxt_imgbox .youtube_box {
  margin-bottom: 0;
}

/* ===========================================================================================================
　　　　　　　　　新着記事
=========================================================================================================== */
/* ページナビゲーション（共通） */
.pager {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 10em;
}
@media screen and (max-width: 768px) {
  .pager {
    padding-top: 3em;
  }
}
.pager a {
  text-decoration: none;
}
.pager p {
  padding-bottom: 0;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.pager .no-link {
  color: #1d2c59;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.pager .first,
.pager .last {
  transform: scale(0.6);
  transform-origin: 50% 50%;
}
.pager .prev,
.pager .next {
  transform: scale(0.7);
  transform-origin: 50% 50%;
}
.pager .nth-box {
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2em;
}
.pager .nth-box .current {
  font-size: 1.2em;
  display: inline-block;
  color: #1d2c59;
  padding: 0 0.5em;
}
.pager .nth-box .tenten {
  color: #1d2c59;
}
.pager .nth-box a {
  display: inline-block;
  padding: 0 0.5em;
}

/*********************************** 記事パーツ共通 ***********************************/
#post_archive .innerbox,
#footer-post .innerbox,
#footer-school .innerbox {
  /*見出し*/
  /*ボタン*/
}
#post_archive .innerbox .ttlbox,
#footer-post .innerbox .ttlbox,
#footer-school .innerbox .ttlbox {
  text-align: center;
}
#post_archive .innerbox .btn,
#footer-post .innerbox .btn,
#footer-school .innerbox .btn {
  margin: 0;
}

/* ********* 最新記事の背景・余白 ********* */
#footer-post,
#footer-school {
  background-color: rgba(125, 144, 201, 0.05);
  /* 見出し */
  /* 記事一覧 */
}
#footer-post .pf_ttl,
#footer-school .pf_ttl {
  line-height: 1em;
  padding-bottom: 1em;
  color: #1d2c59;
}
@media screen and (max-width: 480px) {
  #footer-post .pf_ttl,
  #footer-school .pf_ttl {
    font-size: 1.5em;
  }
}
#footer-post .news_list,
#footer-school .news_list {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  #footer-post .news_list,
  #footer-school .news_list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ********* 最新記事の配置（記事一覧のとき） ********* */
#footer-post .innerbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
#footer-post .innerbox .post_sec {
  width: auto;
  position: relative;
  box-sizing: border-box;
  width: calc(100% - 15em);
  padding-right: 2.5em;
  border-right: #e95383 solid 0.15em;
}
@media screen and (max-width: 768px) {
  #footer-post .innerbox .post_sec {
    width: 100%;
    padding-right: 0;
    padding-bottom: 2.5em;
    margin-bottom: 2.5em;
    border-right: none;
    border-bottom: #e95383 solid 0.15em;
  }
}
#footer-post .innerbox .archive_sec {
  width: 15em;
  position: relative;
  box-sizing: border-box;
  padding-left: 2.5em;
  /* 最新年月 ------------------------------------------- */
  /* セレクトボックス ------------------------------------------- */
}
@media screen and (max-width: 768px) {
  #footer-post .innerbox .archive_sec {
    width: 100%;
    padding-left: 0;
  }
}
#footer-post .innerbox .archive_sec .m_list {
  list-style: none inside;
  line-height: 1em;
}
#footer-post .innerbox .archive_sec .m_list li {
  padding-bottom: 1em;
}
#footer-post .innerbox .archive_sec select {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1em;
  font-weight: 500;
  line-height: 1em;
  padding: 1em;
  margin-bottom: 1em;
  border: none;
  border-radius: 2em;
  cursor: pointer;
  background-color: #e1e5f1;
}

/*保育園一覧*/
#post_archive:has(.school_list) {
  background-color: #fcedef;
  background-image: radial-gradient(rgba(244, 176, 184, 0.3) 16%, transparent 16%);
  background-size: 25px 25px;
}

/* ================= 投稿ページ（共通） ============================================================ */
#newspost {
  /* -------------------------- 投稿記事ヘッダー ------------------------------------------- */
  /* -------------------------- ナビゲーション ------------------------------------------- */
  /* フリーパーツの最後のセクションが同じ背景色の時 ------------------------------------------- */
}
#newspost #page-header {
  /*ボタン*/
}
#newspost #page-header .btn {
  /* ポジション */
  position: absolute;
  top: auto;
  left: auto;
  right: 10em;
  bottom: 0;
}
@media screen and (max-width: 1350px) {
  #newspost #page-header .btn {
    right: 5em;
  }
}
@media screen and (max-width: 768px) {
  #newspost #page-header .btn {
    right: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  #newspost #page-header .btn {
    top: auto;
    right: 1.5em;
    bottom: -2em;
  }
}
@media screen and (max-width: 480px) {
  #newspost #page-header .btn a {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}
#newspost #entry-header {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 1.5em 0;
  background: rgba(125, 144, 201, 0.05);
  color: #1d2c59;
}
#newspost #entry-header .innerbox {
  /* 日付 */
  /* カテゴリ */
  /* 記事タイトル */
}
#newspost #entry-header .innerbox .date {
  font-family: aptly, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1em;
  text-align: right;
  padding-bottom: 0.5em;
  color: #e95383;
}
@media screen and (max-width: 768px) {
  #newspost #entry-header .innerbox .date {
    font-size: 1.25em;
  }
}
#newspost #entry-header .innerbox .date .year {
  padding-right: 0.25em;
}
#newspost #entry-header .innerbox .date .md {
  font-size: 2em;
}
@media screen and (max-width: 480px) {
  #newspost #entry-header .innerbox .date .md {
    font-size: 1.6em;
  }
}
#newspost #entry-header .innerbox .wk_cate {
  line-height: 1.25em;
  color: #e95383;
  text-align: right;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #newspost #entry-header .innerbox .wk_cate {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 480px) {
  #newspost #entry-header .innerbox .wk_cate {
    font-size: 0.7em;
  }
}
#newspost #entry-header .innerbox .wk_cate .eg {
  font-size: 1em;
  padding-right: 0.2em;
}
#newspost #entry-header .innerbox .wk_cate .jp {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.25em;
}
#newspost #entry-header .innerbox .entry_ttl {
  font-family: irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8em;
  line-height: 1.5em;
  padding-top: 0.5em;
  border-top: #e95383 solid 0.1em;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  #newspost #entry-header .innerbox .entry_ttl {
    font-size: 1.4em;
  }
}
#newspost .nav_sec {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 2.5em 0;
}
#newspost .nav_sec .innerbox ul.post_nav {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
#newspost .nav_sec .innerbox ul.post_nav li {
  line-height: 1em;
  max-width: 45%;
  width: auto;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  color: #f19ca6;
  transition: 0.3s ease;
  backface-visibility: hidden;
}
#newspost .nav_sec .innerbox ul.post_nav li:hover {
  color: #e95383;
}
#newspost .nav_sec .innerbox ul.post_nav li a {
  flex: 1;
  width: auto;
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  /* Opera9,10対応 */
  color: #f19ca6;
}
@media screen and (max-width: 480px) {
  #newspost .nav_sec .innerbox ul.post_nav li a {
    font-size: 0.8em;
  }
}
#newspost .nav_sec .innerbox ul.post_nav li a:hover {
  color: #e95383;
}
#newspost .nav_sec .innerbox ul.post_nav li.prev:hover {
  transform: translate(-0.2em, 0);
}
#newspost .nav_sec .innerbox ul.post_nav li.prev a {
  padding-left: 0.25em;
}
#newspost .nav_sec .innerbox ul.post_nav li.next {
  justify-content: flex-end;
}
#newspost .nav_sec .innerbox ul.post_nav li.next:hover {
  transform: translate(0.2em, 0);
}
#newspost .nav_sec .innerbox ul.post_nav li.next a {
  padding-right: 0.25em;
}
#newspost article:has(.freepage-ctt .sec_bg1:last-child) + .nav_sec {
  padding-top: 0;
}

/* ================= フォーム ============================================================ */
/* ブラウザスタイル解除 */
@keyframes onAutoFillStart {}
input:-webkit-autofill {
  animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

input:-webkit-autofill-selected {
  animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

input:-internal-autofill-selected {
  background-color: rgba(232, 240, 254, 0) !important;
}

.formbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 3.57em 0;
  color: #1d2c59;
  /* -------------------------- Contact Form 7 ------------------------------------------- */
}
@media screen and (max-width: 768px) {
  .formbox {
    padding: 1.5em 0;
  }
}
.formbox h3 {
  font-size: 2em;
  line-height: 1.7em;
  padding-bottom: 0.5em;
}
.formbox p {
  padding-bottom: 2em;
}
.formbox .wpcf7-form {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  /* 項目名（共通） */
  /* ラベルで挟まれた項目 */
  /* fieldsetで挟まれた項目 */
  /* チェックボックス・ラジオボタン */
  /* 承認確認 */
  /*送信ボタン*/
  /* エラーメッセージ */
}
.formbox .wpcf7-form .formname {
  width: 13em;
}
@media screen and (max-width: 480px) {
  .formbox .wpcf7-form .formname {
    width: 100%;
  }
}
.formbox .wpcf7-form label.formctt {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  /* 項目名 */
  /* フォーム内容 */
}
@media screen and (max-width: 480px) {
  .formbox .wpcf7-form label.formctt {
    display: block;
  }
}
.formbox .wpcf7-form label.formctt .formname {
  line-height: 1.7em;
  padding-top: 0.75em;
}
.formbox .wpcf7-form label.formctt .wpcf7-form-control-wrap {
  flex: 1;
}
@media screen and (max-width: 480px) {
  .formbox .wpcf7-form label.formctt .wpcf7-form-control-wrap {
    flex: none;
  }
}
.formbox .wpcf7-form fieldset.formctt {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  border: none;
  padding-left: 13em;
  /* 項目名 */
  /* フォーム内容 */
  /* 改行 */
}
@media screen and (max-width: 480px) {
  .formbox .wpcf7-form fieldset.formctt {
    padding-left: 0;
  }
}
.formbox .wpcf7-form fieldset.formctt .formname {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
}
@media screen and (max-width: 480px) {
  .formbox .wpcf7-form fieldset.formctt .formname {
    position: relative;
  }
}
.formbox .wpcf7-form fieldset.formctt .wpcf7-form-control-wrap {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.formbox .wpcf7-form fieldset.formctt br {
  display: none;
}
.formbox .wpcf7-form p {
  padding: 0 0 2em 0;
}
.formbox .wpcf7-form input[type=text],
.formbox .wpcf7-form input[type=email],
.formbox .wpcf7-form input[type=tel],
.formbox .wpcf7-form input[type=date],
.formbox .wpcf7-form select,
.formbox .wpcf7-form textarea {
  font-family: irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.7em;
  box-sizing: border-box;
  padding: 0.75em 1.5em;
  border-radius: 2em;
  border: none;
  background-color: #e1e5f1;
}
.formbox .wpcf7-form input[type=text]:focus-visible,
.formbox .wpcf7-form input[type=email]:focus-visible,
.formbox .wpcf7-form input[type=tel]:focus-visible,
.formbox .wpcf7-form input[type=date]:focus-visible,
.formbox .wpcf7-form select:focus-visible,
.formbox .wpcf7-form textarea:focus-visible {
  background: #fcedef;
  outline: none;
}
.formbox .wpcf7-form input[type=text],
.formbox .wpcf7-form input[type=email],
.formbox .wpcf7-form input[type=tel],
.formbox .wpcf7-form select,
.formbox .wpcf7-form textarea {
  width: 100% !important;
}
.formbox .wpcf7-form .wpcf7-radio .wpcf7-list-item,
.formbox .wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
  margin-right: 1em;
}
.formbox .wpcf7-form .wpcf7-radio .wpcf7-list-item label,
.formbox .wpcf7-form .wpcf7-checkbox .wpcf7-list-item label {
  cursor: pointer;
  font-weight: 400;
}
.formbox .wpcf7-form .wpcf7-acceptance label {
  cursor: pointer;
}
.formbox .wpcf7-form input[type=submit] {
  font-family: irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1em;
  letter-spacing: 0.1em;
  display: inline-block;
  width: auto;
  position: relative;
  box-sizing: border-box;
  height: 3em;
  position: relative;
  padding: 1em 3em;
  border: none;
  border-radius: 1.5em;
  background: #e95383 url("images/ya_w.svg") no-repeat right 1em top 50%;
  background-size: auto 1em;
  color: #fff;
  transition: 0.3s ease;
  backface-visibility: hidden;
  cursor: pointer;
  text-align: center;
  font-size: 1.2em;
  font-weight: 500;
}
.formbox .wpcf7-form input[type=submit]:hover {
  transform: scale(1.1);
}
.formbox .wpcf7-form input[type=submit]:disabled {
  cursor: not-allowed;
  color: #1d2c59;
  background: transparent;
  font-size: 1.2em;
  font-weight: 500;
  border: 2px dashed #1d2c59;
}
.formbox .wpcf7-form input[type=submit]:disabled:hover {
  background: transparent;
  transform: scale(1);
}
.formbox .wpcf7-form .wpcf7-not-valid-tip {
  color: #e95383;
}
.formbox .wpcf7-form .wpcf7-not-valid-tip::before {
  font-family: "Font Awesome 5 Free";
  content: "\f06a";
  font-weight: 900;
}
.formbox .wpcf7-form .wpcf7-response-output {
  border: none !important;
  padding: 0;
  padding-left: 1em;
  text-indent: -1em;
  color: #e95383;
}
.formbox .wpcf7-form .wpcf7-response-output::before {
  content: "※";
}

/* ================= フォーム確認画面 ============================================================ */
.wpcf7cp-form-hide {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

div#wpcf7cpcnf {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 1em;
  background-color: #fff !important;
  border-radius: 1em;
  /* 入力内容 */
  /* ボタン */
}
div#wpcf7cpcnf table {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
div#wpcf7cpcnf table tr th,
div#wpcf7cpcnf table tr td {
  border-bottom: #1d2c59 dashed 1px;
}
@media screen and (max-width: 480px) {
  div#wpcf7cpcnf table tr th,
  div#wpcf7cpcnf table tr td {
    display: block;
  }
}
.contactpage-ctt .sec div#wpcf7cpcnf table tr th p,
.contactpage-ctt .sec div#wpcf7cpcnf table tr td p {
  padding-top: 1em;
  padding-bottom: 1em;
}
div#wpcf7cpcnf table tr th {
  width: 20em;
  font-weight: normal !important;
  text-align: left;
}
@media screen and (max-width: 480px) {
  div#wpcf7cpcnf table tr th {
    width: 100%;
    border-bottom: none;
  }
}
@media screen and (max-width: 480px) {
  .contactpage-ctt .sec div#wpcf7cpcnf table tr th p {
    padding-bottom: 0;
  }
}
div#wpcf7cpcnf table tr th p::after {
  content: "：";
}
div#wpcf7cpcnf .wpcf7cp-btns {
  text-align: center;
}
div#wpcf7cpcnf .wpcf7cp-btns button {
  font-family: irohamaru-mikami, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1em;
  letter-spacing: 0.1em;
  display: inline-block;
  width: auto;
  position: relative;
  box-sizing: border-box;
  height: 3em;
  position: relative;
  padding: 1em 3em;
  border: none;
  border-radius: 1.5em;
  background: #e95383 url("images/ya_w.svg") no-repeat right 1em top 50%;
  background-size: auto 1em;
  color: #fff;
  transition: 0.3s ease;
  backface-visibility: hidden;
  cursor: pointer;
  text-align: center;
  border-radius: 4em;
  width: 10em !important;
  cursor: pointer;
  /* 修正ボタン */
  /* 送信ボタン */
}
div#wpcf7cpcnf .wpcf7cp-btns button:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 480px) {
  div#wpcf7cpcnf .wpcf7cp-btns button {
    width: auto !important;
    padding-left: 2em;
    padding-right: 2em;
    letter-spacing: 0.5em;
    text-indent: 0.5em;
  }
}
div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background: #1d2c59;
  color: #fff;
  font-size: 1.2em;
  font-weight: 500;
}
div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn:hover {
  background: #1d2c59;
  border: #1d2c59 solid 2px;
}
@media screen and (max-width: 480px) {
  div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
    font-size: 1.1em;
  }
}
div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7-submit {
  width: auto !important;
  letter-spacing: 0;
  text-indent: 0;
  padding-right: 3em;
  font-size: 1.2em;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7-submit {
    font-size: 1.1em;
  }
}/*# sourceMappingURL=style.css.map */