@charset "UTF-8";
/* css start */
/************************************************
	Setting
************************************************ */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700;900&display=swap");
* {
  transition: opacity 0.3s ease-out, color 0.3s ease-out, background-color 0.3s ease-out, border-radius 0.3s ease-out, box-shadow 0.3s ease-out, text-shadow 0.3s ease-out, transform 0.3s ease-out;
  -webkit-transition: opacity 0.3s ease-out, color 0.3s ease-out, background-color 0.3s ease-out, border-radius 0.3s ease-out, box-shadow 0.3s ease-out, text-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

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

html {
  font-size: 14px;
}

body {
  color: #3C3531;
  font-size: 1.143rem;
  font-family: "Noto Sans JP", "genju" sans-serif;
  font-family: "Zen Maru Gothic", serif;
  background: #f5fbfb;
  line-height: 2;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 1.071rem;
    line-height: 1.7;
  }
}
/* link */
a {
  text-decoration: none;
  color: #3C3531;
}

a:hover {
  text-decoration: none;
  color: #3a89e6;
}

a img {
  background-color: rgba(255, 255, 255, 0.01);
}

a:hover img {
  opacity: 0.8;
}

/* clear */
.cf {
  zoom: 1;
}

.cf, .cf:before {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.clear {
  clear: both;
}

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

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

input[type=text], input[type=email], input[type=tel], input[type=submit], input[type=button], textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/************************************************

	common.scss

************************************************ */
/************************************************
	カラー
************************************************ */
.color_green {
  color: #3a89e6;
}

.color_black {
  color: #3C3531;
}

.color_white {
  color: #fff;
}

/************************************************
	見出し　font関係
************************************************ */
.basicHl {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .basicHl {
    font-size: 1.429rem;
    line-height: 1.5;
  }
}
.basicHl_S {
  font-size: 1.429rem;
  margin-top: 26px;
  margin-bottom: 6px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .basicHl_S {
    font-size: 1.286rem;
  }
}
.subHl {
  font-size: 1.714rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-top: 27px;
}

@media screen and (max-width: 768px) {
  .subHl {
    font-size: 1.143rem;
    margin-top: 18px;
  }
}
.dashedHl {
  color: #3a89e6;
  font-size: 2.857rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  position: relative;
}
.dashedHl:after {
  content: "";
  width: 100%;
  display: block;
  position: relative;
  border-bottom: 4px dashed #3a89e6;
  top: 12px;
}
.dashedHl span {
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.dashedHl.color_black {
  color: #3C3531;
}
.dashedHl.color_black:after {
  border-bottom: 4px dashed #3C3531;
}

.dashedHl.color_white {
  color: #fff;
}
.dashedHl.color_white:after {
  border-bottom: 4px dashed #fff;
}

@media screen and (max-width: 768px) {
  .dashedHl {
    font-size: 1.429rem;
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .dashedHl:after {
    border-bottom: 2px dashed #3a89e6;
    top: 14px;
  }
  .dashedHl span {
    font-size: 1.071rem;
  }
  .dashedHl.color_black:after {
    border-bottom: 2px dashed #3C3531;
  }
  .dashedHl.color_white:after {
    border-bottom: 2px dashed #fff;
  }
}
.font-middle {
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .font-middle {
    font-size: 1.286rem;
    margin-bottom: 35px;
  }
}
.pageTitle {
  font-size: 3.429rem;
  color: #3a89e6;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  text-align: center;
  margin: 90px 0 0;
}
.pageTitle:after {
  content: "";
  width: 138px;
  display: block;
  position: relative;
  border-bottom: 6px dashed #85BDE6;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .pageTitle {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0;
    padding-bottom: 20px;
  }
  .pageTitle:after {
    border-bottom: 4px dashed #85BDE6;
    top: 25px;
  }
}
.leadTxt {
  margin-top: 42px;
}

/************************************************
	コンテナー
************************************************ */
.inner {
  max-width: 1040px !important;
  padding: 0 20px;
  margin: auto;
}

#container.container-subpage {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: url(../images/bg_header.png) no-repeat top center;
  background-size: 100% auto;
  padding-top: 135px;
}

@media screen and (max-width: 768px) {
  #container.container-subpage {
    padding-top: 110px;
    margin-top: 70px;
  }
}
.containerHead {
  position: relative;
}
.containerHead .bg_header {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 300;
  top: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .containerHead {
    margin-top: 70px;
  }
}
.pageTitle + .sectionWrap {
  padding-top: 210px;
}

.sectionWrap {
  padding-top: 130px;
}

@media screen and (max-width: 768px) {
  .pageTitle + .sectionWrap {
    padding-top: 60px;
  }
  .sectionWrap {
    padding-top: 100px;
  }
}
/************************************************
	ぱんくずリスト
************************************************ */
.breadcrumb {
  background: #fff;
  margin: 35px 0 0;
  padding-bottom: 40px;
  display: flex;
  justify-content: flex-end;
  line-height: 1;
}
.breadcrumb a {
  padding-right: 46px;
  position: relative;
}
.breadcrumb a:before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 9px; /* くの字を山なりに見た時、左側の長さ */
  height: 9px; /* くの字を山なりに見た時、右側の長さ */
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    margin: 9px 0 0;
    padding-bottom: 40px;
    font-size: 1rem;
    line-height: 1.3;
  }
  .breadcrumb a {
    padding-right: 26px;
  }
  .breadcrumb a:before {
    right: 12px;
    width: 7px; /* くの字を山なりに見た時、左側の長さ */
    height: 7px; /* くの字を山なりに見た時、右側の長さ */
  }
}
/************************************************
	リンク・ボタン
************************************************ */
.simpleArrowLink_l a {
  position: relative;
  margin-left: 36px;
}
.simpleArrowLink_l a:before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: #3a89e6;
  -webkit-mask-image: url(../images/ico_arrow01.svg);
  mask-image: url(../images/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 14px auto;
  mask-size: 14px auto;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .simpleArrowLink_l a {
    margin-left: 18px;
  }
  .simpleArrowLink_l a:before {
    width: 12px;
    height: 12px;
    left: -18px;
    -webkit-mask-size: 12px auto;
    mask-size: 12px auto;
  }
}
.btn_arrow_circle {
  color: #3C3531;
  display: inline-block;
}
.btn_arrow_circle .btnTxt {
  position: relative;
}
.btn_arrow_circle .btnDeco {
  content: "";
  display: block;
  width: 84px;
  height: 84px;
  background: #3a89e6;
  border-radius: 42px;
  position: relative;
  margin-left: 18px;
}
.btn_arrow_circle .btnDeco:before {
  content: "";
  width: 35px;
  height: 35px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
  background-color: #fff;
  -webkit-mask-image: url(../images/ico_arrow01.svg);
  mask-image: url(../images/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 35px auto;
  mask-size: 35px auto;
  transition: 0.3s;
}

.btn_arrow_circle:hover {
  color: #2b5288;
}
.btn_arrow_circle:hover .btnTxt:after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  border-bottom: 2px dashed #3a89e6;
  bottom: 1px;
}
.btn_arrow_circle:hover .btnDeco {
  background: #2b5288;
}

@media screen and (max-width: 768px) {
  .btn_arrow_circle .btnDeco {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-left: 20px;
  }
  .btn_arrow_circle .btnDeco:before {
    width: 20px;
    height: 20px;
    right: 11px;
    -webkit-mask-size: 20px auto;
    mask-size: 20px auto;
  }
}
.basicBtn a {
  background: #3a89e6;
  border-radius: 20px;
  font-size: 1.714rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  width: 400px !important;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.basicBtn a:hover {
  background: #2b5288;
}

@media screen and (max-width: 768px) {
  .basicBtn {
    width: 100%;
  }
  .basicBtn a {
    border-radius: 10px;
    font-size: 1.143rem;
    width: 100% !important;
    height: 60px;
    margin: 0 auto;
  }
}
.basicBtn.newWindow a {
  position: relative;
}
.basicBtn.newWindow a:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  -webkit-mask-image: url(../images/ico_download.svg);
  mask-image: url(../images/ico_download.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 30px auto;
  mask-size: 30px auto;
}

@media screen and (max-width: 768px) {
  .basicBtn.newWindow a:before {
    width: 20px;
    height: 20px;
    right: 18px;
    -webkit-mask-size: 20px auto;
    mask-size: 20px auto;
  }
}
.downloadBtn.dl_pdf a {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #3a89e6;
  font-size: 1.714rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: bold;
  color: #3a89e6;
  width: 400px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 50px;
}
.downloadBtn.dl_pdf p {
  position: relative;
}
.downloadBtn.dl_pdf p:before {
  content: "";
  background: url(../images/ico_pdf.svg) no-repeat;
  width: 60px;
  height: 46px;
  position: absolute;
  left: -58px;
  top: 2px;
}
.downloadBtn.dl_pdf a:after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3a89e6;
  -webkit-mask-image: url(../images/ico_download.svg);
  mask-image: url(../images/ico_download.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 25px auto;
  mask-size: 25px auto;
}
.downloadBtn.dl_pdf a:hover {
  background: #FFFDC3;
}

@media screen and (max-width: 768px) {
  .downloadBtn.dl_pdf {
    width: 100%;
  }
  .downloadBtn.dl_pdf a {
    border-radius: 10px;
    font-size: 1.143rem;
    width: 100%;
    height: 60px;
    margin-top: 40px;
  }
  .downloadBtn.dl_pdf p:before {
    width: 44px;
    height: 40px;
    left: -60px;
    top: 36%;
    transform: translateY(-50%);
  }
  .downloadBtn.dl_pdf a:after {
    width: 20px;
    height: 20px;
    right: 18px;
    -webkit-mask-size: 20px auto;
    mask-size: 20px auto;
  }
}
.arrowBtn-r a {
  background: #3a89e6;
  border-radius: 20px;
  font-size: 1.714rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  width: 400px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.arrowBtn-r a:before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  background-color: #fff;
  -webkit-mask-image: url(../images/ico_arrow01.svg);
  mask-image: url(../images/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 24px auto;
  mask-size: 24px auto;
}
.arrowBtn-r a:hover {
  background: #2b5288;
}

@media screen and (max-width: 768px) {
  .arrowBtn-r a {
    border-radius: 10px;
    font-size: 1.143rem;
    width: 100%;
    height: 60px;
  }
  .arrowBtn-r a:before {
    width: 15px;
    height: 15px;
    right: 18px;
    -webkit-mask-size: 15px auto;
    mask-size: 15px auto;
  }
}
/************************************************
	テーブル
************************************************ */
table th {
  font-weight: bold;
  letter-spacing: 0.1em;
}
table td {
  border: none;
}

figure.basicTable {
  margin: 0;
}
figure.basicTable table {
  width: 100%;
  line-height: 2;
}
figure.basicTable table tr {
  border-bottom: 1px solid #ccc;
}
figure.basicTable table td {
  border: 0;
  letter-spacing: 0.05em;
  padding: 14px 0 14px 34px;
}
figure.basicTable table td:first-child {
  font-size: 1.143rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 14px 0 14px;
}
figure.basicTable table td:first-child.lightFonts {
  font-weight: normal;
  font-size: 1.143rem;
}

@media screen and (max-width: 768px) {
  figure.basicTable table td {
    padding: 14px 0 14px 34px;
  }
  figure.basicTable table td:first-child {
    width: 80px;
  }
}
figure.scheduleTable {
  border-radius: 20px;
  padding: 16px 40px;
  margin: 0;
  background: #F8F36E;
}
figure.scheduleTable table {
  width: 100%;
  line-height: 2;
}
figure.scheduleTable table tr {
  border: none;
}
figure.scheduleTable table td {
  border: 0;
  font-size: 1.143rem;
  letter-spacing: 0.05em;
  padding: 14px 0 14px 34px;
  background: none;
}
figure.scheduleTable table td strong {
  font-size: 1.714rem;
  margin-bottom: 10px;
  display: inline-block;
}
figure.scheduleTable table td:first-child {
  font-size: 1.429rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding: 14px 0 14px;
  vertical-align: top;
}
figure.scheduleTable table td:first-child.lightFonts {
  font-weight: normal;
  font-size: 1.143rem;
}
figure.scheduleTable table td:nth-of-type(n+2) {
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  figure.scheduleTable {
    padding: 15px 25px;
  }
  figure.scheduleTable table td {
    font-size: 1.071rem;
    padding: 14px 0 14px 34px;
  }
  figure.scheduleTable table td strong {
    font-size: 1.429rem;
    margin-bottom: 10px;
  }
  figure.scheduleTable table td:first-child {
    font-size: 1.286rem;
    padding: 14px 0 14px;
  }
  figure.scheduleTable table td:first-child.lightFonts {
    font-size: 1rem;
  }
}
figure.simpleTable {
  margin: 14px 0 0;
}
figure.simpleTable table {
  width: 100%;
  font-size: 1.286rem;
  letter-spacing: 0.05em;
  background: #fff;
}
figure.simpleTable table tr, figure.simpleTable table th {
  border: #ccc 1px solid !important;
}
figure.simpleTable table th {
  background: #F8F36E;
}
figure.simpleTable table td {
  text-align: center;
  padding: 12px 20px !important;
  border: #ccc 1px solid !important;
}

@media screen and (max-width: 768px) {
  figure.simpleTable table {
    font-size: 1.071rem;
  }
  figure.simpleTable table td {
    text-align: center;
    padding: 10px 12px !important;
  }
}
.kakukaku {
  animation-name: kakukaku_animation;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps(2);
}

@keyframes kakukaku_animation {
  0% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0);
  }
}
/************************************************
	ノットフォンドセクション
************************************************ */
#notfoundSec01 {
  padding: 100px 0 100px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #notfoundSec01 {
    padding: 50px 0 0;
    width: 100%;
    text-align: left;
  }
  #notfoundSec01 h3 {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 15px;
  }
}
/************************************************
	cta
************************************************ */
#cta {
  padding-top: 100px;
  margin-top: 180px;
  text-align: center;
}
#cta .dashedHl {
  font-size: 2.143rem;
}
#cta .ctaList {
  margin-top: 53px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  #cta {
    padding-top: 50px;
    margin-top: 55px;
  }
  #cta .dashedHl {
    font-size: 1.429rem;
  }
  #cta .ctaList {
    margin-top: 40px;
  }
}
.ctaList li {
  margin: 0 20px;
}
.ctaList li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 80px;
  border: 1px solid #3a89e6;
  border-radius: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: bold;
}
.ctaList li:first-child a {
  font-size: 1.714rem;
  background: #fff;
  color: #3a89e6;
  pointer-events: none;
}
.ctaList li:first-child a:hover {
  background: #2b5288;
}
.ctaList li:nth-child(2) a {
  font-size: 1.429rem;
  background: #3a89e6;
  color: #fff;
}
.ctaList li:nth-child(2) a:hover {
  background: #2b5288;
}

@media screen and (max-width: 768px) {
  .ctaList li {
    margin: 20px 20px 0;
  }
  .ctaList li a {
    width: 100%;
    height: 70px;
    border-radius: 10px;
  }
  .ctaList li:first-child a {
    font-size: 21px;
    pointer-events: visible;
  }
  .ctaList li:nth-child(2) a {
    font-size: 1.429rem;
  }
}
.subCtaWrap {
  margin-top: 26px;
  border: 1px solid #ccc;
  padding: 35px 30px;
  width: 100%;
  background: #fff;
}
.subCtaWrap .mainBlock {
  margin: 0;
  gap: 68px;
}
.subCtaWrap .mainBlock .contactInfo p {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  position: relative;
  display: inline;
}
.subCtaWrap .mainBlock .contactInfo p:before {
  position: absolute;
  content: "";
  width: 100%;
  display: inline-block;
  border-bottom: 2px dashed #3a89e6;
  bottom: -10px;
}
.subCtaWrap .mainBlock .tel {
  font-size: 2.857rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
}
.subCtaWrap .mainBlock .tel small {
  font-size: 2rem;
  margin-right: 8px;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .subCtaWrap .mainBlock .contactInfo p {
    font-size: 2.6vw;
  }
  .subCtaWrap .mainBlock .tel {
    font-size: 3.2vw;
  }
  .subCtaWrap .mainBlock .tel small {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 768px) {
  .subCtaWrap {
    margin-top: 26px;
    padding: 25px 20px;
  }
  .subCtaWrap .mainBlock {
    gap: 30px;
  }
  .subCtaWrap .mainBlock .contactInfo {
    text-align: center;
  }
  .subCtaWrap .mainBlock .contactInfo p {
    font-size: 1.286rem;
    letter-spacing: 0.05em;
  }
  .subCtaWrap .mainBlock .contactInfo p:before {
    display: inline-block;
  }
  .subCtaWrap .mainBlock .tel {
    text-align: center;
    font-size: 1.571rem;
    pointer-events: auto;
  }
  .subCtaWrap .mainBlock .tel small {
    font-size: 0.929rem;
  }
}
/************************************************

	header.scss

************************************************ */
/************************************************
	header
************************************************ */
#header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
}
#header .topheader {
  display: flex;
  position: relative;
}
#header .topheader .logo {
  display: block;
  margin: 0;
}
#header .topheader .logo a {
  display: block;
  width: 380px;
  height: 140px;
  background: #fff;
  border-radius: 0 0 40px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  padding-top: 25px;
}

@media screen and (max-width: 768px) {
  #header {
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  #header .topheader {
    display: flex;
    position: relative;
  }
  #header .topheader .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
  }
  #header .topheader .logo a {
    display: flex;
    width: initial;
    align-items: center;
    height: 70px;
    border-radius: 0 0 0 0;
    box-shadow: initial;
    padding-top: 0;
  }
  #header .topheader .logo a img {
    height: 40px;
    width: auto;
  }
}
/************************************************
	header メニューボタン
************************************************ */
#menuBtn {
  width: 95px;
  height: 95px;
  background: #374572;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 27px;
  right: 30px;
  z-index: 9999;
}
#menuBtn span {
  color: #fff;
  display: block;
  width: 38px;
  height: 5px;
  position: relative;
  top: 30px;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  border-radius: 3px;
}
#menuBtn span::before {
  content: "";
  display: block;
  width: 38px;
  height: 5px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  top: 12px;
  right: 0;
}
#menuBtn p {
  margin-top: 8px;
  color: #fff;
  position: relative;
  display: inline-block;
  line-height: 1;
  bottom: -40px;
}

#menuBtn.open span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#menuBtn.open span::before {
  transform: rotate(90deg);
  top: 0;
}
#menuBtn.open p {
  display: none;
}

#menuBtn:hover {
  transform: scale(1.1); /* 拡大 */
}

@media screen and (max-width: 768px) {
  #menuBtn {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    top: 5px;
    right: 4px;
  }
  #menuBtn span {
    width: 28px;
    height: 3px;
    top: 18px;
  }
  #menuBtn span::before {
    width: 28px;
    height: 3px;
    top: 8px;
  }
  #menuBtn p {
    margin-top: 8px;
    bottom: -16px;
    font-size: 0.786rem;
  }
  #menuBtn:hover {
    transform: initial;
  }
}
/************************************************
	header ナビ
************************************************ */
#gNavi {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding-bottom: 55px;
  height: 95%;
}
#gNavi .gnaviTop {
  height: 155px;
  align-items: center;
  justify-content: space-between;
}
#gNavi .gnaviTop .logo {
  display: block;
  padding-left: 30px;
}
#gNavi .gnaviTop .ctaList {
  width: 100%;
  max-width: 540px;
  margin-right: 160px;
}
#gNavi .gnaviTop .ctaList li {
  width: 50%;
}
#gNavi .gnaviTop .ctaList li a {
  width: 100%;
  height: 60px;
}
#gNavi .gnaviTop .ctaList li:first-child {
  margin: 0 10px 0 0;
}
#gNavi .gnaviTop .ctaList li:first-child a {
  font-size: 1.571rem;
}
#gNavi .gnaviTop .ctaList li:nth-child(2) {
  margin: 0 0 0 10px;
}
#gNavi .gnaviTop .ctaList li:nth-child(2) a {
  font-size: 1.286rem;
}

#gNavi.open {
  display: block;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  #gNavi {
    border-radius: 0 0 25px 25px;
    padding-bottom: 55px;
    height: 95%;
  }
  #gNavi .gnaviTop {
    height: 155px;
    align-items: center;
    justify-content: space-between;
  }
  #gNavi .gnaviTop .logo {
    padding-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
  }
  #gNavi .gnaviTop .logo a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #gNavi .gnaviTop .logo img {
    height: 40px;
    width: auto;
  }
  #gNavi .gnaviTop .ctaList {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
    padding: 0 5.3vw;
  }
  #gNavi .gnaviTop .ctaList li:first-child {
    margin: 0 5px 0 0;
  }
  #gNavi .gnaviTop .ctaList li:first-child a {
    font-size: 1.143rem;
  }
  #gNavi .gnaviTop .ctaList li:nth-child(2) {
    margin: 0 0 0 5px;
  }
  #gNavi .gnaviTop .ctaList li:nth-child(2) a {
    font-size: 3.4vw;
  }
}
#gNavi {
  display: none;
}
#gNavi .gnaviMain {
  justify-content: center;
  padding-top: 25px;
}
#gNavi .gnaviMain .dashedHl {
  font-size: 1.143rem;
}
#gNavi .gnaviMain .navMenu {
  flex-basis: 545px;
}
#gNavi .gnaviMain .navBlock {
  width: 50%;
}
#gNavi .gnaviMain .navBlock ul {
  font-size: 1.071rem;
  line-height: 1;
  padding-top: 24px;
}
#gNavi .gnaviMain .navBlock li a {
  padding: 12px 0;
  display: inline-block;
}
#gNavi .gnaviMain .subnavi {
  margin-top: 38px;
}
#gNavi .gnaviMain .subnavi li {
  width: 50%;
}
#gNavi .gnaviMain .subnavi li a {
  padding: 12px 0;
  display: inline-block;
}
#gNavi .gnaviMain .header_address {
  font-size: 1rem;
  line-height: 1.85;
  margin-top: 32px;
  margin-bottom: 5px;
}
#gNavi .gnaviMain .otherLink {
  margin-top: 50px;
  font-size: 1rem;
  line-height: 1;
}
#gNavi .gnaviMain .otherLink a {
  position: relative;
}
#gNavi .gnaviMain .otherLink a:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3C3531;
  -webkit-mask-image: url(../images/ico_download.svg);
  mask-image: url(../images/ico_download.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 16px auto;
  mask-size: 16px auto;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  #gNavi .gnaviMain {
    padding: 45px 20px 0;
  }
  #gNavi .gnaviMain .dashedHl {
    font-size: 1.286rem;
  }
  #gNavi .gnaviMain .navMenu {
    display: flex;
    flex-wrap: wrap;
  }
  #gNavi .gnaviMain .gnavi {
    width: 100%;
    order: 1;
  }
  #gNavi .gnaviMain .navBlock {
    width: 100%;
    text-align: center;
  }
  #gNavi .gnaviMain .navBlock ul {
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    padding-top: 20px;
  }
  #gNavi .gnaviMain .navBlock li {
    width: 50%;
  }
  #gNavi .gnaviMain .navBlock li a {
    padding: 12px 0;
  }
  #gNavi .gnaviMain .navBlock:nth-of-type(n+2) {
    margin-top: 40px;
  }
  #gNavi .gnaviMain .navBlock:nth-of-type(n+2) ul {
    padding-top: 10px;
  }
  #gNavi .gnaviMain .navBlock:nth-of-type(n+2) .arrowBtn-r {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  #gNavi .gnaviMain .navBlock:nth-of-type(n+2) .arrowBtn-r a {
    max-width: 160px;
    font-size: 1rem;
    height: 40px;
    border-radius: 10px;
  }
  #gNavi .gnaviMain .navBlock:nth-of-type(n+2) .arrowBtn-r a:before {
    width: 12px;
    height: 12px;
    right: initial;
    left: 15px;
    -webkit-mask-size: 12px auto;
    mask-size: 12px auto;
  }
  #gNavi .gnaviMain .subnavi {
    margin-top: 38px;
    font-size: 1rem;
    width: 100%;
    order: 4;
  }
  #gNavi .gnaviMain .subnavi li {
    width: 100%;
  }
  #gNavi .gnaviMain .subnavi li a {
    padding: 7px 0;
    line-height: 1;
  }
  #gNavi .gnaviMain .header_address {
    margin-bottom: 0;
    width: 100%;
    order: 3;
  }
  #gNavi .gnaviMain .otherLink {
    margin-top: 30px;
    width: 100%;
    order: 5;
  }
  #gNavi .gnaviMain .latest_blog {
    margin-top: 30px;
    order: 2;
  }
  #gNavi .gnaviMain .latest_blog .imageHl {
    font-size: 1.071rem;
  }
  #gNavi .gnaviMain .latest_blog .imageHl a {
    padding: 30px 60px 30px 0;
  }
  #gNavi .gnaviMain .latest_blog .imageHl a:before {
    width: 12px;
    height: 12px;
    -webkit-mask-size: 12px auto;
    mask-size: 12px auto;
  }
}
#gNavi .latest_blog {
  flex-basis: 440px;
}
#gNavi .latest_blog .imageHl {
  font-size: 1.571rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  text-align: right;
}
#gNavi .latest_blog .imageHl a {
  color: #3a89e6;
  display: inline-block;
  position: relative;
  background: url(../images/bnr_blog01.png) no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 35px 70px 35px 0;
  width: 100%;
}
#gNavi .latest_blog .imageHl a:before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  background-color: #3a89e6;
  -webkit-mask-image: url(../images/ico_arrow01.svg);
  mask-image: url(../images/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 24px auto;
  mask-size: 24px auto;
  transition: 0.3s;
}
#gNavi .latest_blog .imageHl a:hover {
  color: #3C3531;
}
#gNavi .latest_blog .imageHl a:hover:before {
  right: 12px;
}
#gNavi .latest_article li {
  margin-top: 15px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
#gNavi .latest_article li:first-child {
  margin-top: 17px;
}
#gNavi .latest_article .imgClm {
  width: 37%;
}
#gNavi .latest_article .imgClm figure {
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  max-width: 160px;
  border-radius: 10px 0 0 10px;
}
#gNavi .latest_article .imgClm img {
  width: 100%;
  max-width: initial;
  height: auto;
  transition: transform 0.8s ease; /* ゆっくり変化させる */
}
#gNavi .latest_article .txtClm {
  width: 64%;
  padding: 12px 12px;
}
#gNavi .latest_article .cate {
  color: #254f8d;
  font-size: 0.929rem;
  font-weight: lighter;
}
#gNavi .latest_article .cate:before {
  content: "●";
}
#gNavi .latest_article .article_title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 9px 0 0;
}
#gNavi .latest_article .date {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1;
}
#gNavi .latest_article li:hover .txtClm {
  color: #3a89e6;
  transition: transform 0.3s ease; /* ゆっくり変化させる */
}
#gNavi .latest_article li:hover .imgClm img {
  opacity: initial;
  transform: scale(1.1); /* 拡大 */
}

/************************************************

	footer.scss

************************************************ */
/************************************************
	footer
************************************************ */
#footer {
  background: linear-gradient(180deg, #FFFDF7 0%, #C4E7ED 85%, #98E17E 85%, #98E17E 100%);
  position: relative;
  padding: 0 0 40px;
}
#footer .footerBody {
  background: url(../images/bg_footer.png) no-repeat 54% 96%;
  background-size: contain;
}
#footer .footerWrap {
  text-align: center;
  color: #3a89e6;
  padding-top: 150px;
  margin-top: 200px;
}
#footer .addressTxt {
  margin-top: 60px;
  line-height: 1.6;
  font-weight: bold;
}
#footer .footerLink {
  margin-top: 60px;
  justify-content: center;
}
#footer .footerLink li {
  margin: 0;
}
#footer .footerLink li:nth-of-type(n+2) {
  margin: 0 0 0 15px;
}
#footer .footerLink .otherLink {
  padding: 0 25px 0 0;
}
#footer .footerLink .otherLink a {
  position: relative;
}
#footer .footerLink .otherLink a:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3a89e6;
  -webkit-mask-image: url(../images/ico_download.svg);
  mask-image: url(../images/ico_download.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 16px auto;
  mask-size: 16px auto;
  transition: 0.3s;
}
#footer .footerLink a {
  color: #3a89e6;
  text-decoration: underline;
}
#footer .copyrightArea {
  color: #3a89e6;
  margin: 0;
  padding: 200px 0 0;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  #footer {
    background: linear-gradient(180deg, #FFFDF7 0%, #FFFDF7 30%, #C4E7ED 36%, #C4E7ED 95%, #98E17E 95%, #98E17E 100%);
    padding: 0 0 20px;
  }
  #footer .footerBody {
    background: url(../images/bg_footer_sp.png) no-repeat center bottom;
    background-size: contain;
  }
  #footer .footerWrap {
    padding-top: 50px;
    margin-top: 100px;
  }
  #footer .addressTxt {
    margin-top: 35px;
    font-size: 1.071rem;
    font-weight: lighter;
  }
  #footer .footerLink {
    margin-top: 30px;
  }
  #footer .footerLink li {
    padding: 36px 0 0;
    line-height: 1;
  }
  #footer .footerLink li:nth-of-type(n+2) {
    margin: 30px 0 0 0;
  }
  #footer .footerLink .otherLink {
    padding: initial;
  }
  #footer .copyrightArea {
    padding: 80px 0 220px;
    font-size: 0.929rem;
  }
}
#footer .goTop {
  position: fixed;
  right: 25px;
  bottom: 30%;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#footer .goTop.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  #footer .goTop {
    right: 10px;
    bottom: 20%;
  }
  #footer .goTop img {
    width: 50px;
    height: auto;
  }
}
/************************************************

	top.scss

************************************************ */
/************************************************
	MV
************************************************ */
#mv {
  margin-bottom: 210px;
  position: relative;
}
#mv .imgClm {
  text-align: right;
  width: 100%;
}
#mv .mv_image {
  width: 66%;
  border-radius: 0 0 0 300px;
}
#mv .txtClm {
  width: 100%;
}
#mv .txtClm img {
  width: 36%;
  position: absolute;
  bottom: 50px;
  left: 4.97vw;
  z-index: 500;
}

@media screen and (max-width: 768px) {
  #mv {
    margin-bottom: 140px;
  }
  #mv .mv_image {
    width: 100%;
    border-radius: 0 0 0 0;
  }
  #mv .txtClm {
    width: 100%;
    padding: 20px 0 0 20px;
  }
  #mv .txtClm img {
    width: 58%;
    position: initial;
  }
}
#topNewsSec {
  padding: 60px 0 110px;
  position: relative;
}
#topNewsSec .fixDeco {
  position: absolute;
  top: -70px;
  left: 3%;
  transform: translateY(-50%);
  z-index: 500;
}
#topNewsSec .fixDeco img {
  width: 60.61vw;
}
#topNewsSec .dashedHl {
  font-size: 1.714rem;
  margin-top: 60px;
}
#topNewsSec .importantWrap {
  margin-top: 34px;
  margin-bottom: 10px;
  border-radius: 15px;
  background: #fff;
  border: 2px solid #EA2E2E;
  padding: 24px 40px;
}
#topNewsSec .importantWrap a {
  display: block;
  color: #F86E6E;
}
#topNewsSec .importantWrap a:hover {
  color: #F86E6E;
  text-decoration: underline;
}
#topNewsSec .importantWrap h3 {
  margin: 0;
  font-size: 1.143rem;
  font-weight: bold;
  position: relative;
  padding-left: 17px;
  letter-spacing: 0.05em;
}
#topNewsSec .importantWrap h3:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 10px;
  border-color: transparent transparent transparent #F86E6E;
  position: absolute;
  top: 9.5px;
  left: 0;
}
#topNewsSec .toNewsAll {
  margin-top: 17px;
  font-size: 1.143rem;
}

@media screen and (max-width: 768px) {
  #topNewsSec {
    padding: 30px 0 80px;
  }
  #topNewsSec .fixDeco {
    top: -60px;
    left: 0;
    text-align: right;
  }
  #topNewsSec .fixDeco img {
    width: 87%;
  }
  #topNewsSec .dashedHl {
    font-size: 1.429rem;
    margin-top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #topNewsSec .importantWrap {
    margin-top: 30px;
    margin-bottom: 17px;
    border: 1px solid #EA2E2E;
    padding: 19px 15px;
  }
  #topNewsSec .importantWrap h3 {
    font-size: 1.071rem;
  }
  #topNewsSec .importantWrap h3:before {
    border-width: 6px 0 6px 10px;
    top: 7.5px;
  }
  #topNewsSec .toNewsAll {
    margin-top: 20px;
    font-size: 1rem;
  }
}
#topAboutSec {
  padding: 110px 0 100px;
  background: url(../images/bg_top_about.jpg) no-repeat left bottom;
  background-size: cover;
}
#topAboutSec .inner {
  text-align: center;
}
#topAboutSec .lead {
  margin-top: 66px;
  font-size: 1.429rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 2.1;
}
#topAboutSec .aboutList {
  margin-top: 72px;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
#topAboutSec .aboutList li {
  width: 46%;
  position: relative;
}
#topAboutSec .aboutList li a {
  display: flex;
  background: #f5fbfb;
  font-size: 1.714rem;
  color: #3C3531;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 20px;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: center;
}
#topAboutSec .aboutList li:before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  background-color: #3a89e6;
  -webkit-mask-image: url(../images/ico_arrow01.svg);
  mask-image: url(../images/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 24px auto;
  mask-size: 24px auto;
  transition: 0.3s;
}
#topAboutSec .aboutList li:hover a {
  color: #3a89e6;
}
#topAboutSec .aboutList li:hover a img {
  opacity: 1;
}
#topAboutSec .aboutList li.onePoint a {
  height: 140px;
}
#topAboutSec .aboutList li.onePoint .ico_school {
  position: absolute;
  left: 0;
  top: 0;
}
#topAboutSec .aboutList li.onePoint .ico_cherryblossom {
  position: absolute;
  left: 0;
  top: -23px;
}
#topAboutSec .aboutList li:nth-child(n+3) {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  #topAboutSec {
    padding: 55px 0 50px;
    background: url(../images/bg_top_about.jpg) no-repeat center bottom;
    background-size: cover;
  }
  #topAboutSec .lead {
    margin-top: 35px;
    font-size: 1.071rem;
    line-height: 2;
    text-align: left;
  }
  #topAboutSec .aboutList {
    margin-top: 55px;
    width: 100%;
  }
  #topAboutSec .aboutList li {
    width: 100%;
  }
  #topAboutSec .aboutList li a {
    font-size: 1.143rem;
    border-radius: 10px;
    height: 50px;
  }
  #topAboutSec .aboutList li:before {
    width: 15px;
    height: 15px;
    right: 16px;
    -webkit-mask-size: 15px auto;
    mask-size: 15px auto;
  }
  #topAboutSec .aboutList li.onePoint {
    margin-top: 20px;
  }
  #topAboutSec .aboutList li.onePoint a {
    height: 80px;
  }
  #topAboutSec .aboutList li.onePoint .ico_school {
    left: 5px;
    top: -18px;
    width: 78px;
    height: auto;
  }
  #topAboutSec .aboutList li.onePoint .ico_cherryblossom {
    left: 10px;
    top: initial;
    bottom: -15px;
    width: 75px;
    height: auto;
  }
  #topAboutSec .aboutList li:nth-child(n+3) {
    margin-top: 20px;
  }
}
#topblogSec {
  padding: 45px 0 70px;
  background: url("../images/bg_wp_orange.png");
}
#topblogSec .midashiArea {
  text-align: center;
}
#topblogSec .midashiArea .imageHl {
  position: relative;
  margin: 0 auto;
  max-width: 1040px;
  text-align: left;
}
#topblogSec .midashiArea .ico_photoframe {
  position: absolute;
  left: 125px;
  bottom: 0;
}
#topblogSec .normalHl {
  font-size: 1.429rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
#topblogSec .txt {
  font-weight: bold;
  letter-spacing: 0;
  margin-top: 12px;
}
#topblogSec .blogList {
  margin-top: 30px;
  padding-top: 0;
  padding-bottom: 47px;
}

@media screen and (max-width: 768px) {
  #topblogSec {
    padding: 15px 0 50px;
  }
  #topblogSec .midashiArea .imageHl {
    text-align: center;
  }
  #topblogSec .midashiArea .ico_photoframe {
    left: 42%;
    bottom: initial;
    top: 20px;
    width: 90px;
    height: auto;
  }
  #topblogSec .normalHl {
    font-size: 1.286rem;
    margin-top: 20px;
  }
  #topblogSec .txt {
    margin-top: 15px;
  }
  #topblogSec .blogList {
    margin-top: 45px;
    padding-bottom: 20px;
  }
}
#topGuidanceSec {
  padding: 160px 0 60px;
  background: #f5fbfb;
  position: relative;
}
#topGuidanceSec .fixDeco {
  position: absolute;
  top: 40px;
  left: -22px;
  transform: translateY(-50%);
}
#topGuidanceSec .fixDeco img {
  width: 60.61vw;
}
#topGuidanceSec .inner {
  text-align: center;
}

@media screen and (max-width: 768px) {
  #topGuidanceSec {
    padding: 66px 0 0;
  }
  #topGuidanceSec .fixDeco {
    top: 0;
    left: 0;
  }
  #topGuidanceSec .fixDeco img {
    width: 100%;
  }
}
.firstGuidanceList {
  margin-top: 80px;
  position: relative;
}
.firstGuidanceList a figure {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  margin: 0;
  border-radius: 40px;
}
.firstGuidanceList a figure img {
  height: auto;
  transition: transform 0.8s ease; /* ゆっくり変化させる */
}
.firstGuidanceList a .arrowBox_r {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 640px;
  height: 120px;
  background: #3a89e6;
  border-radius: 20px;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
}
.firstGuidanceList a .arrowBox_r:before {
  content: "";
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  background-color: #fff;
  -webkit-mask-image: url(../images/ico_arrow01.svg);
  mask-image: url(../images/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 40px auto;
  mask-size: 40px auto;
  transition: 0.3s;
}
.firstGuidanceList a .arrowBox_r p {
  position: relative;
  font-size: 2.143rem;
  color: #fff;
  font-weight: bold;
}
.firstGuidanceList a .arrowBox_r .ico_note {
  position: absolute;
  top: -12px;
  left: -130px;
}
.firstGuidanceList a:hover .arrowBox_r {
  background: #2b5288;
}
.firstGuidanceList a:hover .ico_note {
  opacity: 1;
}
.firstGuidanceList a:hover img {
  opacity: initial;
  transform: scale(1.1); /* 拡大 */
}

@media screen and (max-width: 768px) {
  .firstGuidanceList {
    margin-top: 34px;
  }
  .firstGuidanceList a figure {
    border-radius: 10px;
  }
  .firstGuidanceList a .arrowBox_r {
    width: 81%;
    max-width: 272px;
    height: 60px;
    border-radius: 10px;
    bottom: -30px;
  }
  .firstGuidanceList a .arrowBox_r:before {
    width: 15px;
    height: 15px;
    right: 18px;
    -webkit-mask-size: 15px auto;
    mask-size: 15px auto;
  }
  .firstGuidanceList a .arrowBox_r p {
    font-size: 1.143rem;
  }
  .firstGuidanceList a .arrowBox_r .ico_note {
    top: -20px;
    left: -55px;
    width: 50px;
    height: auto;
  }
}
.GuidanceList {
  height: 90vh;
  max-height: 900px;
  position: relative;
  margin-top: 140px;
}
.GuidanceList li {
  width: 46%;
  height: auto;
  text-align: right;
}
.GuidanceList li:nth-child(2) {
  position: absolute;
  top: 120px;
  right: 0;
}
.GuidanceList li:nth-child(3) {
  position: absolute;
  top: 434px;
}
.GuidanceList li:nth-child(4) {
  position: absolute;
  top: 554px;
  right: 0;
}

@media screen and (max-width: 1024px) {
  .GuidanceList {
    height: 75vh;
    margin-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  .GuidanceList {
    height: 70vh;
    max-height: initial;
    min-height: 350px;
    margin-top: 64px;
  }
  .GuidanceList li {
    width: 47%;
  }
  .GuidanceList li:nth-child(2) {
    top: 60px;
  }
  .GuidanceList li:nth-child(3) {
    top: initial;
    margin-top: 60px;
  }
}
@media screen and (max-width: 428px) {
  .GuidanceList {
    height: 40vh;
  }
}
.GuidanceList a .simpleArrow_r {
  font-size: 1.714rem;
  font-weight: bold;
  text-align: right;
  position: relative;
  display: inline-block;
  margin-top: 18px;
  margin-left: 0;
  margin-right: 52px;
}
.GuidanceList a .simpleArrow_r .ico_map {
  position: absolute;
  left: -114px;
  top: -50px;
  width: 114px;
}
.GuidanceList a .simpleArrow_r::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  background-color: #3a89e6;
  -webkit-mask-image: url(../images/ico_arrow01.svg);
  mask-image: url(../images/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 24px auto;
  mask-size: 24px auto;
  transition: 0.3s;
}
.GuidanceList a figure {
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;
  width: 100%;
  border-radius: 40px;
  margin: 0;
}
.GuidanceList a img {
  height: auto;
  transition: transform 0.8s ease; /* ゆっくり変化させる */
  width: 100%;
}
.GuidanceList a:hover {
  color: #3a89e6;
}
.GuidanceList a:hover .simpleArrow_r span:after {
  position: absolute;
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  border-bottom: 2px dashed #3a89e6;
  bottom: 1px;
}
.GuidanceList a:hover img {
  transform: scale(1.1); /* 拡大 */
  opacity: initial;
}

@media screen and (max-width: 768px) {
  .GuidanceList a .simpleArrow_r {
    font-size: 3.215vw;
    margin-top: 10px;
    margin-left: 0;
    margin-right: 20px;
  }
  .GuidanceList a .simpleArrow_r .ico_map {
    left: -8.51vw;
    top: -10px;
    width: 8.51vw;
    height: auto;
  }
  .GuidanceList a .simpleArrow_r::before {
    width: 12px;
    height: 12px;
    right: -20px;
    -webkit-mask-size: 12px auto;
    mask-size: 12px auto;
  }
  .GuidanceList a figure {
    border-radius: 10px;
  }
  .GuidanceList a img {
    width: 58.59vw;
  }
}
#topGuardianSec {
  padding: 60px 0 70px;
  background: #cddff3;
}
#topGuardianSec .inner {
  text-align: center;
}
#topGuardianSec .downloadList {
  margin-top: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}
#topGuardianSec .downloadList li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 460px;
  height: 100px;
  border: 1px solid #3a89e6;
  border-radius: 20px;
  background: #fff;
  font-size: 2rem;
  font-weight: bold;
  color: #3a89e6;
  position: relative;
}
#topGuardianSec .downloadList li a span {
  font-size: 1.286rem;
  font-weight: lighter;
}
#topGuardianSec .downloadList li a:after {
  content: "";
  background: url(../images/ico_download.svg) no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
#topGuardianSec .downloadList li a.dl_pdf p {
  position: relative;
}
#topGuardianSec .downloadList li a.dl_pdf p:before {
  content: "";
  background: url(../images/ico_pdf.svg) no-repeat;
  width: 60px;
  height: 46px;
  position: absolute;
  left: -52px;
  top: 2px;
}
#topGuardianSec .downloadList li .revision {
  text-align: center;
  font-size: 1.286rem;
  line-height: 1.6;
  margin-top: 12px;
}
#topGuardianSec .downloadList li:hover a {
  background: #FFFDC3;
}
#topGuardianSec .downloadList li:nth-of-type(n+3) {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  #topGuardianSec {
    padding: 50px 0 50px;
  }
  #topGuardianSec .downloadList {
    margin-top: 40px;
  }
  #topGuardianSec .downloadList li a {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    font-size: 1.286rem;
  }
  #topGuardianSec .downloadList li a span {
    font-size: 0.929rem;
  }
  #topGuardianSec .downloadList li a:after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    position: absolute;
    top: 40%;
    right: 18px;
    transform: rotate(90deg) translateY(-50%);
    background-color: #3a89e6;
    -webkit-mask-image: url(../images/ico_arrow01.svg);
    mask-image: url(../images/ico_arrow01.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 16px auto;
    mask-size: 16px auto;
    transition: 0.3s;
  }
  #topGuardianSec .downloadList li a.dl_pdf p:before {
    width: 44px;
    height: 40px;
    left: -52px;
    top: 36%;
    transform: translateY(-50%);
  }
  #topGuardianSec .downloadList li .revision {
    font-size: 1rem;
    margin-top: 10px;
  }
  #topGuardianSec .downloadList li:nth-of-type(n+2) {
    margin-top: 35px;
  }
}
.txtClm p, .txtWrap p {
  margin-top: 0;
}
.txtClm p:nth-of-type(n+2), .txtWrap p:nth-of-type(n+2) {
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .txtClm p:nth-of-type(n+2), .txtWrap p:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
.firstTxt {
  margin-top: 40px;
}
.firstTxt strong {
  font-size: 1.429rem;
}

@media screen and (max-width: 768px) {
  .firstTxt {
    margin-top: 26px;
  }
  .firstTxt strong {
    font-size: 1.286rem;
  }
}
.kadomaru figure {
  margin-bottom: 0;
}
.kadomaru img {
  border-radius: 20px;
}

.kadomaru30 figure {
  margin-bottom: 0;
}
.kadomaru30 img {
  border-radius: 30px;
}

.contentBlock {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .contentBlock {
    margin-top: 60px;
  }
}
.wrap01 .firstBlock {
  margin-top: 40px;
}

.onesidewideWrap {
  width: 100%;
}
.onesidewideWrap .txtWrap {
  max-width: 640px;
  width: 60%;
}
.onesidewideWrap .imgWrap {
  position: absolute;
  right: 0;
  top: 260px;
}
.onesidewideWrap .imgWrap figure {
  margin: 0;
}
.onesidewideWrap .imgWrap figure img {
  border-radius: 20px 0 0 20px;
  max-width: 475px;
  width: 34.77vw;
}
.onesidewideWrap .imgWrap figure:nth-child(n+2) {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .onesidewideWrap .txtWrap {
    max-width: initial;
    width: 100%;
  }
  .onesidewideWrap .imgWrap {
    position: initial;
  }
  .onesidewideWrap .imgWrap figure img {
    border-radius: 20px;
    max-width: initial;
    width: 100%;
  }
  .onesidewideWrap .imgWrap figure:nth-child(n+2) {
    margin-top: 35px;
  }
}
.guideOutlineWrap {
  padding-top: 120px;
}
.guideOutlineWrap .contentBlock:first-of-type {
  margin-top: 40px;
}
.guideOutlineWrap .contentBlock:first-of-type .basicHl_S {
  margin-top: 4px;
}
.guideOutlineWrap .contentBlock:first-of-type .activityDay {
  padding-bottom: 65px;
}
.guideOutlineWrap .contentBlock:first-of-type .activityDay p {
  font-size: 1.286rem;
}
.guideOutlineWrap .contentBlock:first-of-type .activityDay .note {
  font-size: 1rem;
}
.guideOutlineWrap .contentBlock:first-of-type .activityDay .basicHl_S + p {
  margin-top: 15px;
}
.guideOutlineWrap .contentBlock:first-of-type .note {
  font-size: 1rem;
}
.guideOutlineWrap .onesideRelativeWrao {
  position: relative;
}
.guideOutlineWrap .onesideRelativeWrao .onesidewideWrap .txtWrap {
  width: 48%;
}
.guideOutlineWrap .onesideRelativeWrao .onesidewideWrap .imgWrap {
  top: 0;
  right: 0;
}
.guideOutlineWrap .onesideRelativeWrao .onesidewideWrap .imgWrap figure img {
  max-width: 620px;
  width: 45.38vw;
  margin-top: 100px;
}
.guideOutlineWrap .item {
  margin-top: 100px;
}
.guideOutlineWrap .otherInfo {
  margin-top: 80px;
  font-size: 1.429rem;
}

@media screen and (max-width: 768px) {
  .guideOutlineWrap {
    padding-top: 100px;
  }
  .guideOutlineWrap .contentBlock:first-of-type .basicHl_S {
    margin-top: 4px;
  }
  .guideOutlineWrap .contentBlock:first-of-type .activityDay {
    padding-bottom: 60px;
  }
  .guideOutlineWrap .contentBlock:first-of-type .activityDay p {
    font-size: 1.143rem;
  }
  .guideOutlineWrap .contentBlock:first-of-type .activityDay .basicHl_S + p {
    margin-top: 15px;
  }
  .guideOutlineWrap .contentBlock:first-of-type .note {
    font-size: 1rem;
    margin-top: 10px;
  }
  .guideOutlineWrap .onesideRelativeWrao .onesidewideWrap {
    display: block;
  }
  .guideOutlineWrap .onesideRelativeWrao .onesidewideWrap .txtWrap {
    width: 100%;
  }
  .guideOutlineWrap .onesideRelativeWrao .onesidewideWrap .imgWrap {
    position: initial;
  }
  .guideOutlineWrap .onesideRelativeWrao .onesidewideWrap .imgWrap figure img {
    max-width: initial;
    width: 100%;
    margin-top: 30px;
  }
  .guideOutlineWrap .item {
    margin-top: 60px;
  }
  .guideOutlineWrap .otherInfo {
    margin-top: 40px;
    font-size: 1.286rem;
  }
}
/************************************************

	about.scss

************************************************ */
/************************************************
	園の紹介 about
************************************************ */
#aboutSec .imgHeadline {
  margin-top: 196px;
}
#aboutSec .objectiveWrap {
  margin-top: 50px;
  width: 100%;
  flex-wrap: wrap;
  gap: 1rem;
}
#aboutSec .objectiveWrap .item {
  width: 48%;
  border-radius: 20px;
  padding: 38px 54px 26px;
  min-height: 230px;
}
#aboutSec .objectiveWrap .item.kadomaru {
  overflow: hidden;
  padding: 0;
}
#aboutSec .objectiveWrap .item.kadomaru figure {
  margin: 0;
}
#aboutSec .wrap01 {
  position: relative;
}
#aboutSec .onesidewideWrap {
  margin-top: 40px;
  width: 100%;
}
#aboutSec .onesidewideWrap .txtClm {
  max-width: 640px;
}
#aboutSec .onesidewideWrap .txtWrap {
  max-width: 640px;
  width: 60%;
}
#aboutSec .onesidewideWrap .imgWrap {
  position: absolute;
  right: 0;
  top: 300px;
}
#aboutSec .onesidewideWrap .imgWrap figure {
  margin: 0;
}
#aboutSec .onesidewideWrap .imgWrap figure img {
  border-radius: 20px 0 0 20px;
  max-width: 475px;
  width: 34.77vw;
}
#aboutSec .onesidewideWrap .imgWrap figure:nth-child(n+2) {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #aboutSec .imgHeadline {
    margin-top: 100px;
  }
  #aboutSec .objectiveWrap {
    margin-top: 40px;
    gap: 1rem;
  }
  #aboutSec .objectiveWrap .item {
    width: 100%;
    padding: 20px 20px;
    min-height: initial;
  }
  #aboutSec .objectiveWrap .item.kadomaru {
    order: 6;
  }
  #aboutSec .onesidewideWrap {
    margin-top: 40px;
    display: block;
  }
  #aboutSec .onesidewideWrap .txtWrap {
    width: 100%;
  }
  #aboutSec .onesidewideWrap .imgWrap {
    position: initial;
  }
  #aboutSec .onesidewideWrap .imgWrap figure {
    margin-top: 40px;
  }
  #aboutSec .onesidewideWrap .imgWrap figure img {
    border-radius: 20px;
    max-width: initial;
    width: 100%;
  }
  #aboutSec .onesidewideWrap .imgWrap figure:nth-child(n+2) {
    margin-top: 35px;
  }
}
/************************************************
	園の概要・沿革 outline
************************************************ */
#outlineSec .halfWrap {
  margin-top: 40px;
}
#outlineSec figure {
  margin: 0;
}
#outlineSec figcaption {
  text-align: right;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: 16px;
}
#outlineSec .wrap02 .basicTable {
  margin-top: 40px;
}
#outlineSec .wrap03 .gettingHere {
  margin-top: 40px;
  font-size: 1.429rem;
}
#outlineSec .wrap03 .mapArea {
  margin: 40px 0 0;
}
#outlineSec .wrap03 .basicBtn {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  #outlineSec .halfWrap {
    margin-top: 26px;
  }
  #outlineSec .wrap01 .firstBlock {
    margin-top: 26px;
  }
  #outlineSec .wrap02 .basicTable {
    margin-top: 26px;
  }
  #outlineSec .wrap02.sectionWrap {
    padding-top: 75px;
  }
  #outlineSec .wrap03 .gettingHere {
    font-size: 1.286rem;
  }
  #outlineSec .wrap03 .mapArea {
    margin: 30px 0 0;
  }
  #outlineSec .wrap03 .basicBtn {
    margin-top: 40px;
  }
}
/************************************************
	園の特色 feature
************************************************ */
#featureSec .halfWrap {
  margin-top: 40px;
}
#featureSec .halfWrap figure {
  margin: 0;
}
#featureSec .halfWrap figure:nth-of-type(n+2) {
  margin-top: 30px;
}
#featureSec .activityList .halfWrap {
  margin-top: 80px;
  margin-bottom: 0;
}
#featureSec .activityList .voiceTxt {
  font-size: 1.429rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
#featureSec .activityList .voiceTxt + p {
  margin-top: 16px;
}
#featureSec .wrap02 .contentBlock:first-of-type {
  margin-top: 40px;
}
#featureSec .wrap02 .supportList {
  margin-bottom: 40px;
}
#featureSec .classList {
  gap: 0;
}
#featureSec .classList .arrowBtn-r a {
  width: 458px;
  height: 100px;
}

@media screen and (max-width: 768px) {
  #featureSec .halfWrap {
    margin-top: 40px;
  }
  #featureSec .halfWrap figure {
    margin: 0;
  }
  #featureSec .halfWrap figure:nth-of-type(n+2) {
    margin-top: 35px;
  }
  #featureSec .halfWrap .imgClm {
    order: 2;
  }
  #featureSec .activityList .halfWrap {
    margin-top: 60px;
  }
  #featureSec .activityList .voiceTxt {
    font-size: 1.143rem;
  }
  #featureSec .classList {
    gap: 2rem;
  }
  #featureSec .classList .arrowBtn-r {
    width: 100%;
  }
  #featureSec .classList .arrowBtn-r a {
    width: 100%;
    height: 60px;
  }
}
/************************************************
	園の生活
************************************************ */
#lifeSec .oneday-flow {
  margin-top: 40px;
}
#lifeSec .otherEventWrap .leftClm .contentBlock:first-child {
  margin-top: 50px;
}
#lifeSec .otherEventWrap .kadomaru figure {
  margin-top: 35px;
}
#lifeSec .otherEventWrap .kadomaru figure:nth-of-type(n+2) {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  #lifeSec .oneday-flow {
    margin-top: 30px;
  }
  #lifeSec .otherEventWrap .halfWrap {
    gap: 10px;
  }
  #lifeSec .otherEventWrap .leftClm .contentBlock:first-child {
    margin-top: 40px;
  }
  #lifeSec .otherEventWrap .kadomaru figure {
    margin-top: 30px;
  }
  #lifeSec .otherEventWrap .kadomaru figure:nth-of-type(n+2) {
    margin-top: 35px;
  }
}
.seasonsWrap .season_row {
  justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 45px;
}
.seasonsWrap .season_row:nth-of-type(n+2) {
  border-top: 2px dashed #ccc;
}
.seasonsWrap .season_icon {
  width: 20%;
}
.seasonsWrap .season_month_list {
  width: 80%;
}
.seasonsWrap .season_month_list li {
  width: 100%;
}
.seasonsWrap .season_month_list li:nth-of-type(n+2) {
  margin-top: 50px;
}
.seasonsWrap .season_month_list .month_num {
  width: 20%;
  text-align: right;
}
.seasonsWrap .season_month_list .month_num p {
  line-height: 1;
  margin-top: 80px;
  font-weight: bold;
  font-size: 3.143rem;
}
.seasonsWrap .season_month_list .month_num p span {
  font-size: 2.286rem;
}
.seasonsWrap .modal_card_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.seasonsWrap .modal_card_wrap .modal_card_item {
  margin-left: 30px;
}
.seasonsWrap .modal_card_wrap .modal_card_item .item_title {
  font-weight: bold;
  font-size: 1.286rem;
  margin-top: 6px;
}
.seasonsWrap .modal_card_wrap .modal_card_item .item_photo {
  position: relative;
}
.seasonsWrap .modal_card_wrap .modal_card_item .item_photo:before {
  content: "";
  background: url(../images/ico_check.png) no-repeat;
  background-size: contain;
  width: 95px;
  height: 95px;
  position: absolute;
  right: -13px;
  bottom: -23px;
  transition: 0.3s transform ease-out, 0.3s opacity ease-out;
}
.seasonsWrap .modal_card_wrap .modal_card_item .item_photo:hover {
  cursor: pointer;
}
.seasonsWrap .modal_card_wrap .modal_card_item .item_photo:hover:before {
  transform: scale(1.1); /* 拡大 */
}
.seasonsWrap .modal_card_wrap .modal_card_item:nth-of-type(n+4) {
  margin-top: 30px;
}
.seasonsWrap .modal-article {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.seasonsWrap .modal_bg_gray {
  background: rgba(0, 0, 0, 0.4);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.seasonsWrap .modal_content_main {
  border-radius: 30px;
  border: 1px solid #707070;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: #fff;
  left: 50%;
  padding: 40px 4.7%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
.seasonsWrap .modal_content_main .halfWrap {
  justify-content: space-between;
  margin-top: 45px;
}
.seasonsWrap .modal_content_main .imgClm {
  width: 47%;
}
.seasonsWrap .modal_content_main .imgClm img {
  width: 100%;
}
.seasonsWrap .modal_content_main .txtClm {
  width: 47%;
}
.seasonsWrap .modal_content_main .close_button {
  line-height: 1;
  margin: 0;
  padding: 10.3px 11.49px;
  border-radius: 20px;
  border: 1.5px solid #000;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .seasonsWrap {
    margin-top: 20px;
  }
  .seasonsWrap .season_row {
    padding-top: 40px;
  }
  .seasonsWrap .season_icon {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .seasonsWrap .season_icon img {
    width: 150px;
  }
  .seasonsWrap .season_month_list {
    width: 100%;
  }
  .seasonsWrap .season_month_list li {
    width: 100%;
  }
  .seasonsWrap .season_month_list li:nth-of-type(n+2) {
    margin-top: 20px;
  }
  .seasonsWrap .season_month_list .month_num {
    width: 30%;
    text-align: center;
  }
  .seasonsWrap .season_month_list .month_num p {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 2.857rem;
  }
  .seasonsWrap .season_month_list .month_num p span {
    font-size: 1.857rem;
  }
  .seasonsWrap .modal_card_wrap {
    width: 100%;
  }
  .seasonsWrap .modal_card_wrap .modal_card_item {
    margin-left: 10px;
    margin-top: 20px;
  }
  .seasonsWrap .modal_card_wrap .modal_card_item .item_title {
    font-size: 1.143rem;
  }
  .seasonsWrap .modal_card_wrap .modal_card_item .item_photo:before {
    width: 80px;
    height: 80px;
    right: -12px;
    bottom: -15px;
  }
  .seasonsWrap .modal_card_wrap .modal_card_item:nth-of-type(n+4) {
    margin-top: 20px;
  }
  .seasonsWrap .modal_content_main {
    border-radius: 20px;
    padding: 20px 5.3vw 24px;
    top: 55%;
    width: 90%;
  }
  .seasonsWrap .modal_content_main .halfWrap {
    margin-top: 30px;
  }
  .seasonsWrap .modal_content_main .imgClm {
    width: 100%;
  }
  .seasonsWrap .modal_content_main .txtClm {
    width: 100%;
    margin-top: 20px;
    max-height: 35vh;
    overflow-y: scroll;
  }
  .seasonsWrap .modal_content_main .close_button {
    padding: 9px 10.2px;
    border-radius: 20px;
    top: 15px;
    right: 17px;
  }
}
/************************************************

    privacy.scss

************************************************ */
#privacypolicySec .leadTxt {
  font-size: 1.286rem;
}
#privacypolicySec .termsWrap .basicHl_S {
  margin-top: 36px;
}
#privacypolicySec .termsWrap p {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  #privacypolicySec .leadTxt {
    font-size: 1.143rem;
  }
  #privacypolicySec .termsWrap p {
    margin-top: 15px;
  }
}
/************************************************

    guidance.scss 各種ご案内

************************************************ */
/************************************************
	募集要項
************************************************ */
#gaiyouSec .wp-block-columns {
  margin-bottom: 8px;
}
#gaiyouSec .wrap01 .contentBlock:first-of-type {
  margin-top: 40px;
}
#gaiyouSec .wrap01 figure.simpleTable {
  margin-top: 46px;
}
#gaiyouSec .wrap02 {
  padding-top: 210px;
  position: relative;
}
#gaiyouSec .wrap02 figure.simpleTable {
  margin-top: 40px;
}
#gaiyouSec .wrap02 .fixDeco {
  margin: 0;
  position: absolute;
  top: 15px;
  right: -22.62vw;
  transform: translateY(-50%);
}
#gaiyouSec .wrap02 .fixDeco img {
  width: 60.68vw;
}
#gaiyouSec .wrap02 .noteWrap p {
  margin-top: 10px;
  text-indent: -1rem;
  padding-left: 1rem;
}
#gaiyouSec .wrap02 .noteWrap p:nth-of-type(n+2) {
  margin-top: 14px;
}
#gaiyouSec .wrap03 .importantTxt {
  margin-top: 40px;
  font-size: 1.286rem;
  background: #F8F36E;
  padding: 12px 28px;
}
#gaiyouSec .wrap03 .note {
  margin-top: 7px;
  padding-left: 32px;
}
#gaiyouSec .wrap03 .howtoFillout {
  margin-top: 40px;
  line-height: 2.5;
}
#gaiyouSec .wrap03 .howtoFillout .note {
  padding-left: 1rem;
}

@media screen and (max-width: 768px) {
  #gaiyouSec .wp-block-columns {
    margin-bottom: 0;
    gap: 0;
  }
  #gaiyouSec .wrap01 figure.simpleTable {
    margin-top: 40px;
  }
  #gaiyouSec .wrap02 {
    padding-top: 90px;
    overflow: hidden;
  }
  #gaiyouSec .wrap02 .fixDeco {
    position: relative;
    top: 15px;
    right: 0;
    left: 0;
    text-align: right;
    display: inline-block;
  }
  #gaiyouSec .wrap02 .fixDeco img {
    width: 80%;
  }
  #gaiyouSec .wrap02 .noteWrap p {
    margin-top: 14px;
  }
  #gaiyouSec .wrap02 figure.simpleTable {
    overflow-x: scroll;
  }
  #gaiyouSec .wrap02 figure.simpleTable table {
    width: 100%;
    min-width: 670px;
  }
  #gaiyouSec .wrap03 .importantTxt {
    font-size: 1.143rem;
    padding: 25px 20px;
  }
  #gaiyouSec .wrap03 .note {
    margin-top: 10px;
    padding-left: 0;
  }
  #gaiyouSec .wrap03 .howtoFillout {
    margin-top: 20px;
    line-height: 2;
  }
  #gaiyouSec .wrap03 .howtoFillout li {
    text-indent: -1.1rem;
    padding-left: 1rem;
    margin-top: 10px;
  }
  #gaiyouSec .wrap03 .howtoFillout .note {
    text-indent: 0;
    padding-left: 1rem;
  }
}
/************************************************
	預かり保育
************************************************ */
#azukariSec .scheduleWrap {
  padding: 30px 40px;
  border-radius: 20px;
}
#azukariSec .scheduleWrap .leftClm {
  font-size: 1.714rem;
}
#azukariSec .scheduleWrap .rightClm {
  font-size: 1.429rem;
}
#azukariSec .sectionWrap:nth-of-type(n+2) {
  padding-top: 100px;
}
#azukariSec .halfWrap {
  margin-top: 50px;
  margin-bottom: 0;
  padding-bottom: 10px;
}
#azukariSec .subCtaWrap .mainBlock {
  gap: 1rem;
  justify-content: space-between;
}
#azukariSec .subCtaWrap .tel {
  text-align: center;
}
#azukariSec .subCtaWrap .wp-block-buttons {
  width: 100%;
}
#azukariSec .subCtaWrap .arrowBtn-r {
  width: 100%;
}
#azukariSec .subCtaWrap .arrowBtn-r a {
  font-size: 1.571rem;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  color: #fff;
}
#azukariSec .subCtaWrap .arrowBtn-r a:before {
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  right: 18px;
  -webkit-mask-size: 15px auto;
  mask-size: 15px auto;
}

@media screen and (max-width: 1024px) {
  #azukariSec .subCtaWrap .arrowBtn-r a {
    font-size: 1.46vw;
  }
}
@media screen and (max-width: 768px) {
  #azukariSec .sectionWrap:nth-of-type(n+2) {
    padding-top: 90px;
  }
  #azukariSec .halfWrap {
    margin-top: 40px;
    gap: 30px;
  }
  #azukariSec .halfWrap:nth-of-type(2) .imgClm {
    order: 2;
  }
  #azukariSec .halfWrap:nth-of-type(2) .txtClm {
    order: 1;
  }
  #azukariSec .subCtaWrap .mainBlock {
    gap: 30px;
  }
  #azukariSec .subCtaWrap .arrowBtn-r a {
    font-size: 1.143rem;
  }
}
/************************************************
	体操クラブ
************************************************ */
/************************************************
	英語クラス
************************************************ */
/************************************************

    form.scss

************************************************ */
/************************************************
	contactform 共通
************************************************ */
#contactSec .subCtaWrap {
  margin-top: 42px;
}
#contactSec .subCtaWrap .receptionTime {
  font-size: 1.286rem;
  text-align: center;
  font-weight: bold;
  margin-top: 25px;
}
#contactSec .subCtaWrap .tel a {
  color: #3a89e6;
}
#contactSec .subCtaWrap .tel a small {
  color: #3C3531;
}
#contactSec .contentBlock {
  margin-top: 124px;
}
#contactSec .bgGreenArea {
  background: #cddff3;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  #contactSec .subCtaWrap {
    margin-top: 30px;
  }
  #contactSec .subCtaWrap .receptionTime {
    font-size: 0.857rem;
    margin-top: 25px;
  }
  #contactSec .contentBlock {
    margin-top: 80px;
  }
}
.formSec, .contactSec {
  font-size: 1.286rem;
  letter-spacing: 0.1em;
  padding-bottom: 50px;
}
.formSec .ajax-loader, .contactSec .ajax-loader {
  display: block;
  margin: 0 auto;
}
.formSec .txtWrap, .contactSec .txtWrap {
  width: 100%;
}
.formSec .txtWrap .checkArea, .contactSec .txtWrap .checkArea {
  width: 80%;
  padding-top: 44px;
  margin: 0 auto;
}
.formSec .txtWrap .checkArea p, .contactSec .txtWrap .checkArea p {
  font-size: 1.143rem;
}
.formSec .txtWrap .checkArea .agreementCheck, .contactSec .txtWrap .checkArea .agreementCheck {
  margin-top: 12px;
}
.formSec .txtWrap .checkArea .agreementCheck a, .contactSec .txtWrap .checkArea .agreementCheck a {
  text-decoration: underline;
}
.formSec .basicBtn, .contactSec .basicBtn {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 0;
}
.formSec .basicBtn input[type=submit], .contactSec .basicBtn input[type=submit] {
  border: none;
  border-radius: 20px;
  display: inline-block;
  color: #fff;
  font-size: 1.714rem;
  background: #3a89e6;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 9px 20px;
  width: 400px;
  height: 80px;
  text-align: center;
}
.formSec .basicBtn input[type=submit]:hover, .contactSec .basicBtn input[type=submit]:hover {
  background: #2b5288;
}
.formSec .basicBtn .wpcf7-spinner, .contactSec .basicBtn .wpcf7-spinner {
  display: none;
}
.formSec .basicBtn .wpcf7-spinner:before, .contactSec .basicBtn .wpcf7-spinner:before {
  display: none;
}

@media screen and (max-width: 768px) {
  .formSec, .contactSec {
    font-size: 1.071rem;
    padding-bottom: 0px;
  }
  .formSec .txtWrap .checkArea, .contactSec .txtWrap .checkArea {
    width: 100%;
    padding-top: 20px;
  }
  .formSec .txtWrap .checkArea p, .contactSec .txtWrap .checkArea p {
    font-size: 1rem;
  }
  .formSec .txtWrap .checkArea .agreementCheck, .contactSec .txtWrap .checkArea .agreementCheck {
    margin-top: 12px;
  }
  .formSec .txtWrap .checkArea .wpcf7-list-item label, .contactSec .txtWrap .checkArea .wpcf7-list-item label {
    text-indent: -1rem;
  }
  .formSec .basicBtn, .contactSec .basicBtn {
    margin-top: 70px;
  }
  .formSec .basicBtn input[type=submit], .contactSec .basicBtn input[type=submit] {
    border-radius: 10px;
    font-size: 1.143rem;
    padding: 9px 20px;
    width: 100%;
    height: 60px;
  }
}
.bgGreenArea {
  background: #cddff3;
  padding: 25px 70px 58px;
  margin-top: 42px;
}

@media screen and (max-width: 768px) {
  .bgGreenArea {
    padding: 15px 20px 40px;
  }
}
.formTable {
  width: 100%;
  margin: 0 auto;
}
.formTable tr input, .formTable tr textarea {
  width: 100%;
  margin: 15px 0 0;
  border: 1px solid #ddd;
  padding: 28px 30px;
}
.formTable tr td {
  padding-top: 38px;
  width: 100%;
}
.formTable tr td .itemName {
  font-size: 1.429rem;
  font-weight: bold;
}
.formTable tr td .required {
  font-size: 1.143rem;
  font-weight: lighter;
  color: #fff;
  line-height: 1;
  background: #F86E6E;
  padding: 8px 10px;
  border-radius: 5px;
  margin-left: 30px;
}
.formTable tr td .note {
  font-size: 1.143rem;
  font-weight: lighter;
  margin-left: 30px;
}
.formTable tr td .supplement {
  font-size: 1.143rem;
  margin-top: 7px;
}
.formTable tr td .radio {
  margin-top: 21px;
}
.formTable tr td input[type=checkbox] {
  margin-right: 0px;
  width: 15px;
  height: 15px;
}
.formTable tr td .wpcf7-radio {
  display: flex;
  justify-content: space-between;
}
.formTable tr td .wpcf7-radio label {
  display: flex;
  align-items: center;
  margin: 0;
}
.formTable tr td input[type=radio] {
  margin-right: 10px;
  margin-top: 0;
  width: 10px;
}
.formTable tr td .menuSubject {
  padding: 10px 20px;
  border: 1px solid #ccc;
  width: 100%;
  height: 52px;
  position: relative;
}
.formTable tr td .menuSubject:after {
  content: "▼";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.formTable tr td .wpcf7-list-item {
  margin: 0 1rem 0 0;
}
.formTable tr td .wpcf7-checkbox {
  display: flex;
}
.formTable tr td .zip {
  display: flex;
  align-items: center;
}
.formTable tr td .zip span:first-child {
  font-weight: bold;
  margin-top: 11px;
}
.formTable tr td .zip .wpcf7-form-control-wrap {
  width: 260px;
  margin-left: 20px;
}
.formTable tr td label {
  display: block;
}
.formTable tr td input[type=radio] {
  display: none;
  opacity: 0;
  width: 1px;
  position: absolute;
  height: 1px;
}
.formTable tr td input[type=radio] + span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  padding: 0 0 0 36px;
  border-radius: 3px;
}
.formTable tr td input[type=radio] + span::before,
.formTable tr td input[type=radio] + span::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  margin: auto 10px auto 0;
  box-sizing: border-box;
}
.formTable tr td input[type=radio] + span::before {
  width: 25px;
  height: 25px;
  background: #fff;
  border: 1px solid #ddd;
  left: 0px;
}
.formTable tr td input[type=radio] + span::after {
  width: 17px;
  height: 17px;
  background: #000;
  left: 4px;
  opacity: 0;
}
.formTable tr td input[type=radio]:checked + span::before {
  border: 2px solid #ddd;
}
.formTable tr td input[type=radio]:checked + span::after {
  background: #3a89e6;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .formTable tr input, .formTable tr textarea {
    margin: 10px 0 0;
    padding: 18px 20px;
  }
  .formTable tr td {
    padding-top: 25px;
    padding-bottom: 15px;
  }
  .formTable tr td .itemName {
    font-size: 1.143rem;
  }
  .formTable tr td p {
    position: relative;
  }
  .formTable tr td .required {
    font-size: 1rem;
    padding: 7px 10px;
    margin-left: 10px;
    position: absolute;
    right: 0;
    display: inline-block;
  }
  .formTable tr td .note {
    font-size: 1rem;
    margin-left: 0;
  }
  .formTable tr td .supplement {
    font-size: 1rem;
  }
  .formTable tr td .radio {
    margin-top: 11px;
  }
  .formTable tr td input[type=checkbox] {
    margin-right: 0px;
    width: 15px;
    height: 15px;
  }
  .formTable tr td .wpcf7-radio {
    display: block;
    justify-content: flex-start;
  }
  .formTable tr td .wpcf7-radio .wpcf7-list-item {
    width: 100%;
  }
  .formTable tr td .wpcf7-radio .wpcf7-list-item:nth-child(n+2) {
    margin-top: 10px;
  }
  .formTable tr td input[type=radio] {
    margin-right: 10px;
    margin-top: 0;
    width: 10px;
  }
  .formTable tr td .menuSubject {
    padding: 10px 20px;
    border: 1px solid #ccc;
    width: 100%;
    height: 52px;
    position: relative;
  }
  .formTable tr td .menuSubject:after {
    content: "▼";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }
  .formTable tr td .wpcf7-list-item {
    margin: 0 0 0 0;
  }
  .formTable tr td .wpcf7-checkbox {
    display: flex;
  }
  .formTable tr td .zip .wpcf7-form-control-wrap {
    width: 100%;
  }
}
/************************************************

    news.scss

************************************************ */
/************************************************
    news
************************************************ */
.newsList {
  margin-top: 10px;
}
.newsList .item {
  line-height: 1.75;
  padding: 13px 0;
  border-bottom: 1px dashed #ccc;
  transition: 0.3s;
}
.newsList .item:hover a {
  color: #3a89e6;
  transition: 0.3s; /* ゆっくり変化させる */
}
.newsList .date {
  flex: 1 0 12%;
}
.newsList .newsTitle {
  flex: 0 1 88%;
}
.newsList .newsTitle h3 {
  font-size: 1.143rem;
  line-height: 1.75;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .newsList {
    margin-top: 10px;
  }
  .newsList .item {
    padding: 15px 0 10px;
    font-size: 1.071rem;
  }
  .newsList .newsInfo {
    flex-direction: column;
  }
  .newsList .date {
    line-height: 1;
  }
  .newsList .newsTitle h3 {
    font-size: 1.071rem;
    margin-top: 6px;
  }
}
/************************************************
    news/archive
************************************************ */
#newsSec {
  padding-top: 40px;
  padding-bottom: 0px;
}
#newsSec .newsList {
  margin-top: 195px;
}

@media screen and (max-width: 768px) {
  #newsSec .newsList {
    margin-top: 60px;
  }
}
/************************************************
    news/single
************************************************ */
#newsSingleSec {
  padding-bottom: 0px;
  padding-top: 40px;
}
#newsSingleSec .articleArea {
  margin-top: 205px;
}
#newsSingleSec .articleArea p {
  line-height: 2.75;
  letter-spacing: 0;
}
#newsSingleSec .articleArea .date {
  font-weight: bold;
  font-size: 1.429rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
}
#newsSingleSec .newsContent {
  padding: 50px 0 50px;
}
#newsSingleSec .newsContent p {
  margin-bottom: 30px;
}
#newsSingleSec .newsContent a {
  text-decoration: underline;
}
#newsSingleSec .newsContent figure {
  margin-bottom: 30px;
}
#newsSingleSec .arrowBtn-r a:before {
  right: initial;
  left: 20px;
  transform: rotate(180deg) translateY(50%);
}
#newsSingleSec .articleHeadline {
  font-size: 2.857rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  line-height: 1.85;
}

@media screen and (max-width: 768px) {
  #newsSingleSec .articleArea {
    margin-top: 60px;
  }
  #newsSingleSec .articleArea p {
    line-height: 2;
  }
  #newsSingleSec .articleArea .date {
    font-size: 1.286rem;
    line-height: 1.6;
    margin: 0;
  }
  #newsSingleSec .newsContent {
    padding: 30px 0 70px;
  }
  #newsSingleSec .newsContent p {
    margin-bottom: 20px;
  }
  #newsSingleSec .newsContent a {
    word-break: break-all;
  }
  #newsSingleSec .newsContent figure {
    margin-bottom: 20px;
  }
  #newsSingleSec .arrowBtn-r a:before {
    left: 25px;
  }
  #newsSingleSec .articleHeadline {
    font-size: 1.429rem;
    margin-bottom: 10px;
    line-height: 1.6;
  }
}
/************************************************
    pager
************************************************ */
#pager {
  text-align: center;
  margin-top: 70px;
  font-size: 1.286rem;
}
#pager .current {
  color: #fff;
  font-size: 1.286rem;
  font-weight: bold;
  width: 45px;
  display: inline-block;
  line-height: 35px;
  height: 45px;
  text-align: center;
  margin: 0 7px;
  border-radius: 50%;
  border: none;
  background: #3a89e6;
}
#pager .page {
  color: #3C3531;
  border: none;
  padding: 0 15px;
  margin: 0 7px;
  position: relative;
  display: inline-block;
  height: 38px;
}
#pager .page:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #3a89e6;
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
}
#pager .page:hover {
  color: #3a89e6;
  background: none;
}
#pager .pages {
  display: none;
}
#pager .nextpostslink {
  position: relative;
  border: none;
  margin: 0 0 0 19px;
  padding: 0;
}
#pager .nextpostslink:before {
  content: "";
  width: 17px;
  height: 17px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: #3a89e6;
  -webkit-mask-image: url(../images/ico_arrow01.svg);
  mask-image: url(../images/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 17px auto;
  mask-size: 17px auto;
}
#pager .previouspostslink {
  position: relative;
  border: none;
  margin: 0 19px 0 0;
  padding: 0;
}
#pager .previouspostslink:before {
  content: "";
  width: 17px;
  height: 17px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%) rotate(180deg);
  background-color: #3a89e6;
  -webkit-mask-image: url(../images/ico_arrow01.svg);
  mask-image: url(../images/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 17px auto;
  mask-size: 17px auto;
}

/************************************************

    blog.scss

************************************************ */
/************************************************
	blog　共通
************************************************ */
.blog-page-title {
  margin: 0 0;
  text-align: center;
}
.blog-page-title .blackboad {
  background: url(../images/bg_blog_blackboad_02.png) no-repeat;
  background-size: cover;
  display: flex;
  width: 440px;
  height: 192px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.blog-page-title .title-wrap {
  font-weight: bold;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.blog-page-title span {
  display: inline-block;
  line-height: 1;
  width: 100%;
}
.blog-page-title span:first-of-type {
  font-size: 19px;
  letter-spacing: 0.05em;
}
.blog-page-title span:nth-of-type(2) {
  margin-top: 20px;
  font-size: 29px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .blog-page-title {
    padding: 0 20px;
  }
  .blog-page-title .blackboad {
    background: url(../images/bg_blog_blackboad_02.png) no-repeat top center;
    background-size: contain;
    width: auto;
    height: 16vh;
    min-height: 130px;
  }
  .blog-page-title span:first-of-type {
    font-size: 0.929rem;
  }
  .blog-page-title span:nth-of-type(2) {
    margin-top: 10px;
    font-size: 1.429rem;
  }
}
.single_page_links {
  margin-top: 120px;
}
.single_page_links .prev_entry_link, .single_page_links .next_entry_link {
  width: 45%;
  min-height: 158px;
  position: relative;
  padding: 20px 0 20px;
  border-top: 1px solid #3C3531;
  border-bottom: 1px solid #3C3531;
  position: relative;
}
.single_page_links .headline {
  margin-bottom: 0;
}
.single_page_links a {
  display: block;
  font-size: 1.286rem;
  font-weight: bold;
  line-height: 1.5;
}
.single_page_links a:after {
  content: "";
  width: 29px;
  height: 28px;
  -webkit-mask-image: url(../images/ico_arrow01.svg);
  mask-image: url(../images/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #3a89e6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
.single_page_links a:hover {
  color: #2b5288;
}
.single_page_links a:hover:after {
  background-color: #2b5288;
}
.single_page_links .prev_entry_link {
  padding-left: 50px;
}
.single_page_links .prev_entry_link a:after {
  left: 0;
  transform: scale(-1, 1) translateY(-50%);
}
.single_page_links .next_entry_link {
  padding-right: 50px;
  margin-left: auto;
}
.single_page_links .next_entry_link a:after {
  right: 0;
}

@media screen and (max-width: 768px) {
  .single_page_links {
    margin-top: 60px;
    flex-wrap: wrap;
  }
  .single_page_links .prev_entry_link, .single_page_links .next_entry_link {
    width: 100%;
    min-height: initial;
    padding: 20px 0 20px;
  }
  .single_page_links .headline {
    font-size: 1rem;
  }
  .single_page_links a {
    font-size: 1.143rem;
  }
  .single_page_links a:after {
    width: 15px;
    height: 15px;
  }
  .single_page_links .prev_entry_link {
    padding-left: 50px;
  }
  .single_page_links .next_entry_link {
    margin-top: -1px;
    padding-right: 50px;
  }
}
.other_category .category_list_wrap {
  background: url("../images/bg_wp_orange.png");
  padding: 48px 50px;
  border-radius: 20px;
}
.other_category .dashedHl {
  font-size: 2.143rem;
}
.other_category .category_list {
  padding-top: 20px;
}
.other_category .category_list li {
  margin-top: 30px;
  position: relative;
}
.other_category .category_list li:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  background-color: #3a89e6;
  -webkit-mask-image: url(../images/ico_arrow01.svg);
  mask-image: url(../images/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 20px auto;
  mask-size: 20px auto;
  transition: 0.3s;
}
.other_category .category_list a {
  color: #3a89e6;
  background: #f5fbfb;
  font-size: 1.714rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding: 20px 0;
  border: 3px solid #3a89e6;
  border-radius: 20px;
  display: block;
  text-align: center;
}
.other_category .category_list a:hover {
  background: #FFFDC3;
}
.other_category .category_list li.current:before {
  display: none;
}
.other_category .category_list li.current a {
  color: #fff;
  background: #3a89e6;
  display: block;
}
.other_category .category_list li.current a:hover {
  border: 3px solid #2b5288;
  background: #2b5288;
}

@media screen and (max-width: 768px) {
  .other_category .category_list_wrap {
    padding: 40px 20px;
  }
  .other_category .dashedHl {
    font-size: 1.429rem;
  }
  .other_category .category_list {
    padding-top: 20px;
  }
  .other_category .category_list li {
    margin-top: 20px;
  }
  .other_category .category_list li:before {
    width: 15px;
    height: 15px;
    -webkit-mask-size: 15px auto;
    mask-size: 15px auto;
  }
  .other_category .category_list a {
    font-size: 1.143rem;
    padding: 17px 0;
    border: 2px solid #3a89e6;
    border-radius: 10px;
  }
  .other_category .category_list li.current a:hover {
    border: 2px solid #2b5288;
  }
}
/************************************************
    blog
************************************************ */
.blogSec {
  padding-bottom: 145px;
}
.blogSec .blogList {
  padding-top: 110px;
  padding-bottom: 30px;
}
.blogSec .blogList .item {
  padding: 0 12px;
}
.blogSec .blogList .item:nth-of-type(n+4) {
  margin-top: 27px;
}
.blogSec .blogList a {
  overflow: hidden;
  height: 100%;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  background: #fff;
}
.blogSec .blogList a:hover .title_area {
  color: #3a89e6;
  transition: transform 0.3s ease; /* ゆっくり変化させる */
}
.blogSec .blogList a:hover .thumbnail {
  overflow: hidden;
  margin-bottom: 0;
  background: #000;
}
.blogSec .blogList a:hover .thumbnail img {
  opacity: initial;
  transform: scale(1.1); /* 拡大 */
  transition: 0.6s transform ease-out, 0.6s opacity ease-out;
}
.blogSec .blogList .thumbnail {
  overflow: hidden;
  margin-bottom: 0;
  background: #000;
}
.blogSec .blogList .thumbnail img {
  width: 100%;
  opacity: 1;
  transition: 0.6s transform ease-out, 0.6s opacity ease-out;
}
.blogSec .blogList .title_area {
  padding: 20px 20px 0;
  line-height: 1;
}
.blogSec .blogList .title_area .cate {
  color: #254f8d;
  font-size: 1.071rem;
  font-weight: lighter;
}
.blogSec .blogList .title_area .cate:before {
  content: "●";
}
.blogSec .blogList .title_area .cate + .article_title {
  margin-top: 10px;
}
.blogSec .blogList .title_area .article_title {
  font-size: 1.143rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}
.blogSec .blogList .date {
  line-height: 1;
  margin-top: auto;
  margin-left: 20px;
  padding-bottom: 20px;
}
.blogSec .blogList .date time {
  margin-bottom: 0;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .blogSec {
    padding-bottom: 60px;
  }
  .blogSec .blogList {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    margin: 0 auto;
  }
  .blogSec .blogList .item {
    padding: 0 0;
    margin-top: 30px;
  }
  .blogSec .blogList .item:nth-of-type(n+4) {
    margin-top: 30px;
  }
  .blogSec .blogList a {
    height: 100%;
  }
}
/************************************************
    blog archive
************************************************ */
.blog-toppage-title {
  margin: 0 0;
  text-align: center;
}
.blog-toppage-title .blackboad {
  background: url(../images/bg_blog_blackboad_01.png) no-repeat;
  background-size: cover;
  display: flex;
  width: 700px;
  height: 343px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.blog-toppage-title .title-wrap {
  font-weight: bold;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transform: rotate(-2deg);
}
.blog-toppage-title span {
  display: inline-block;
  line-height: 1;
  width: 100%;
}
.blog-toppage-title span:first-of-type {
  font-size: 2.286rem;
  letter-spacing: 0.1em;
}
.blog-toppage-title span:nth-of-type(2) {
  margin-top: 25px;
  font-size: 1.143rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .blog-toppage-title .blackboad {
    background: url(../images/bg_blog_blackboad_01.png) no-repeat top center;
    background-size: contain;
    width: auto;
    height: 20vh;
    min-height: 160px;
  }
  .blog-toppage-title span:first-of-type {
    font-size: 1.143rem;
    letter-spacing: 0.05em;
  }
  .blog-toppage-title span:nth-of-type(2) {
    margin-top: 10px;
    font-size: 0.857rem;
    line-height: 1.4;
  }
}
#blogSec {
  padding-bottom: 0;
}
#blogSec .term-block .arrowBtn-r a {
  background: #f5fbfb;
  border-radius: 10px;
  font-size: 1.429rem;
  color: #3a89e6;
  width: 300px;
  height: 60px;
  border: 3px solid #3a89e6;
}
#blogSec .term-block .arrowBtn-r a:before {
  content: "";
  width: 15px;
  height: 15px;
  right: 50px;
  background-color: #3a89e6;
  -webkit-mask-size: 15px auto;
  mask-size: 15px auto;
}
#blogSec .term-block .arrowBtn-r a:hover {
  background: #FFFDC3;
}
#blogSec .term-block .blogList {
  padding-top: 50px;
  padding-bottom: 0;
}
#blogSec .term-block:first-of-type {
  margin-top: 120px;
}
#blogSec .term-block:nth-of-type(n+2) {
  margin-top: 70px;
  padding-top: 76px;
  border-top: 2px dotted #ccc;
}

@media screen and (max-width: 768px) {
  #blogSec {
    padding-bottom: 0;
  }
  #blogSec .term-block .arrowBtn-r {
    margin-top: 30px;
  }
  #blogSec .term-block .arrowBtn-r a {
    font-size: 1rem;
    width: 100%;
    border: 2px solid #3a89e6;
  }
  #blogSec .term-block .arrowBtn-r a:before {
    width: 12px;
    height: 12px;
    right: 50px;
    -webkit-mask-size: 12px auto;
    mask-size: 12px auto;
  }
  #blogSec .term-block .blogList {
    padding-top: 10px;
    padding-bottom: 0;
  }
  #blogSec .term-block .tit-area {
    text-align: center;
  }
  #blogSec .term-block:first-of-type {
    margin-top: 50px;
  }
  #blogSec .term-block:nth-of-type(n+2) {
    margin-top: 50px;
    padding-top: 56px;
  }
}
/************************************************
	blog single
************************************************ */
#blogSingleSec {
  padding-bottom: 145px;
}
#blogSingleSec .row {
  width: 100%;
  margin: 0 auto;
}
#blogSingleSec .articleArea {
  width: 100%;
  margin-top: 110px;
}
#blogSingleSec #article_blog_single {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  padding: 90px 60px 0;
}
#blogSingleSec #article_blog_single .newsTit {
  font-size: 2.857rem;
  font-weight: bold;
  color: #3a89e6;
  line-height: 1.4;
}
#blogSingleSec #article_blog_single .date {
  font-size: 1.429rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 20px;
}
#blogSingleSec #article_blog_single .eyecatch {
  margin-top: 50px;
  text-align: center;
}
#blogSingleSec .content {
  padding: 0 0 80px;
}
#blogSingleSec .content p {
  margin-top: 45px;
}
#blogSingleSec .content a {
  text-decoration: underline;
}
#blogSingleSec .content figure {
  margin-top: 45px;
  text-align: center;
}
#blogSingleSec .arrowBtn-r {
  margin-top: 100px;
}
#blogSingleSec .arrowBtn-r a:before {
  right: initial;
  left: 20px;
  transform: rotate(180deg) translateY(50%);
}
#blogSingleSec .articleHeadline {
  font-size: 2.857rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  line-height: 1.85;
}
#blogSingleSec .dotHeadline:before {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  top: 11px;
  transform: translateY(0);
}
#blogSingleSec .dotHeadline + .d-flex.mt-3 {
  align-items: center;
}

@media screen and (max-width: 768px) {
  #blogSingleSec {
    padding-bottom: 100px;
  }
  #blogSingleSec .articleArea {
    margin-top: 60px;
  }
  #blogSingleSec #article_blog_single {
    padding: 30px 20px 0;
  }
  #blogSingleSec #article_blog_single .newsTit {
    font-size: 1.429rem;
  }
  #blogSingleSec #article_blog_single .date {
    font-size: 1rem;
    margin-top: 10px;
  }
  #blogSingleSec #article_blog_single .eyecatch {
    margin-top: 30px;
  }
  #blogSingleSec #article_blog_single .eyecatch img {
    width: 100%;
  }
  #blogSingleSec .content {
    padding: 20px 0 40px;
  }
  #blogSingleSec .content p {
    margin-top: 25px;
  }
  #blogSingleSec .content a {
    word-break: break-all;
  }
  #blogSingleSec .content figure {
    margin-top: 40px;
  }
  #blogSingleSec .arrowBtn-r {
    margin-top: 60px;
  }
  #blogSingleSec .arrowBtn-r a:before {
    left: 25px;
  }
  #blogSingleSec .articleHeadline {
    font-size: 2.857rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    line-height: 1.85;
  }
  #blogSingleSec .dotHeadline:before {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    top: 11px;
    transform: translateY(0);
  }
  #blogSingleSec .dotHeadline + .d-flex.mt-3 {
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */