@charset "UTF-8";

/* レイアウトの共通部分 */
html {
  font-size: 62.5%;
  color: #333;
  line-height: 2;
  font-feature-settings: "palt";
}

body {
  width: 100%;
  margin: 0 auto;
  font-size: 1.6rem;
  font-family: "dnp-shuei-mgothic-std", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  background-color: #fffbf2;
}

.inner {
  width: 1000px;
  margin: 0 auto;
  padding: 40px 0 140px;
}

.inner-m {
  width: 800px;
  margin: 0 auto;
  padding: 40px 0 140px;
}

.inner-s {
  width: 600px;
  margin: 0 auto;
  padding: 40px 0 140px;
}

.ly-onecol {
  text-align: center;
  margin: 80px 0;
}

.ly-twocol {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.ly-twocol-childcare {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.ly-twocol-r,
.ly-twocol-l {
  width: 480px;
}

.btn {
  width: 240px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border: 2px solid #e6718f;
  background-color: #fff;
  color: #e6718f;
  text-decoration: none;
  position: relative;
  padding: 20px 50px;
  font-weight: bold;
  font-size: 1.6rem;
}

.btn::before {
  content: "";
  position: absolute;
  top: 47%;
  right: 50px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #e6718f;
  border-right: 2px solid #e6718f;
  transform: translateY(-50%) rotate(45deg);
}

.btn::after {
  content: "";
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: #e6718f;
}

.btn:hover {
  background-color: #e6718f;
  color: #fff;
  transition: all 0.4s ease;
}

.btn:hover::before {
  content: "";
  position: absolute;
  top: 47%;
  right: 50px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.btn:hover::after {
  content: "";
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: #fff;
}

.btn-small {
  width: 220px;
  height: 40px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  margin: 40px 0 0;
}

.btn-small:hover {
  opacity: 0.6;
  transition: all 0.2s ease;
}

.btn-large {
  width: 460px;
  height: 64px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  font-size: 2rem;
}

.btn-large:hover {
  transform: translate(10px, 10px);
  transition: all 0.2s ease;
}

.btn-radius {
  width: 400px;
  height: 100px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-radius img {
  display: inline-block;
  margin-left: 10px;
}

.btn-radius:hover {
  transform: translate(10px, 10px);
  transition: all 0.2s ease;
}

.el-card-large {
  width: 100%;
  height: auto;
  border-radius: 40px;
  background-color: #fff;
  padding: 60px;
  margin-bottom: 60px;
}

.hp-shadow-yellow {
  box-shadow: 10px 10px 0 #ffe200;
}

.hp-shadow-yellow:hover {
  box-shadow: none;
}

.hp-shadow-green {
  box-shadow: 10px 10px 0 #9cce8d;
}

.hp-shadow-green:hover {
  box-shadow: none;
}

.hp-faqShadow-green {
  box-shadow: 10px 10px 0 #9cce8d;
}

.hp-shadow-red {
  box-shadow: 10px 10px 0 #FF2F65;
}

.hp-shadow-blue {
  box-shadow: 10px 10px 0 #6c9ed3;
}

.hp-shadow-orange {
  box-shadow: 10px 10px 0 #f2aa3c;
}

.ly-btnTwo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl-stacke-box {
  position: relative;
  background-color: #fff;
  border: 1px solid #8FBE52;
  width: 100%;
  height: auto;
  padding: 16px 80px 40px;
}

.bl-stacke-box::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #8FBE52;
  z-index: -1;
}

.bl-picture-box {
  margin-bottom: 80px;
}

.ly-media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 680px;
  margin-inline: auto;
  padding: 20px 40px;
  border: #9d651c 1px solid;
  margin-top: 80px;
}

.ly-media-img {
  width: 240px;
  height: auto;
  margin-right: 40px;
}

/*---------------------------------------
タブレット対応
---------------------------------------*/
@media screen and (max-width: 1000px) {
  .inner {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 100px;
  }

  .inner-m {
    width: 85%;
    margin: 0 auto;
    padding: 30px 0 100px;
  }

  .page-inner {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 100px;
  }

  .inner-s {
    width: 80%;
    margin: 0 auto;
    padding: 30px 0 100px;
  }

  .ly-onecol {
    text-align: center;
    margin: 60px 0;
  }

  .ly-twocol {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .ly-twocol-childcare {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 40px;
  }

  .ly-twocol-childcare .ly-twocol-r,
  .ly-twocol-childcare .ly-twocol-l {
    width: 100%;
    text-align: center;
  }

  .ly-twocol-childcare .ly-twocol-r img,
  .ly-twocol-childcare .ly-twocol-l img {
    width: 70%;
    height: auto;
  }

  .ly-twocol-childcare .ly-twocol-r {
    margin-bottom: 60px;
  }

  .ly-twocol-r,
  .ly-twocol-l {
    width: 48%;
  }

  .ly-twocol-r img,
  .ly-twocol-l img {
    width: 100%;
    height: auto;
  }

  .ly-btnTwo {
    flex-direction: column;
    justify-content: center;
  }

  .ly-btnTwo .hp-btTwo-item {
    margin-bottom: 40px;
  }

  .hp-listStar-icon {
    width: 1.6rem !important;
  }

  .hp-center {
    margin: 0 auto;
  }

  .btn-radius {
    margin: 0 auto;
  }
}

/*---------------------------------------
スマホ対応
---------------------------------------*/
@media screen and (max-width: 819px) {
  .inner {
    width: 100%;
    margin: 0 auto;
    padding: 20px 16px 70px;
  }

  .inner-m {
    width: 100%;
    margin: 0 auto;
    padding: 20px 16px 70px;
  }

  .inner-s {
    width: 100%;
    margin: 0 auto;
    padding: 20px 16px 70px;
  }

  .ly-onecol {
    text-align: left;
    margin: 40px 0;
  }

  .ly-onecol iframe {
    width: 100%;
    height: 220px;
  }

  .ly-twocol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 40px;
  }

  .ly-twocol-r,
  .ly-twocol-l {
    width: 100%;
  }

  .ly-twocol-childcare .ly-twocol-r,
  .ly-twocol-childcare .ly-twocol-l {
    text-align: left;
  }

  .ly-twocol-childcare .ly-twocol-r {
    margin-bottom: 40px;
  }

  .ly-twocol-childcare .ly-twocol-r {
    text-align: center;
  }

  .btn-large {
    width: 100%;
    height: 47px;
    border-radius: 4px;
    font-size: 1.6rem;
  }

  .btn-large:hover {
    transform: translate(4px, 4px);
  }

  .btn-radius {
    width: 100%;
    height: 85px;
    font-size: 1.6rem;
  }

  .btn-radius img {
    display: inline-block;
    margin-left: 4px;
  }

  .btn-radius:hover {
    transform: translate(4px, 4px);
  }

  .el-card-large {
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .hp-shadow-yellow {
    box-shadow: 4px 4px 0 #ffe200;
  }

  .hp-shadow-yellow:hover {
    box-shadow: none;
  }

  .hp-shadow-green {
    box-shadow: 4px 4px 0 #9cce8d;
  }

  .hp-shadow-green:hover {
    box-shadow: none;
  }

  .hp-shadow-red {
    box-shadow: 4px 4px 0 #FF2F65;
  }

  .hp-shadow-blue {
    box-shadow: 4px 4px 0 #6c9ed3;
  }

  .hp-faqShadow-green {
    box-shadow: 4px 4px 0 #9cce8d;
  }

  .hp-shadow-orange {
    box-shadow: 4px 4px 0 #f2aa3c;
  }

  .ly-btnTwo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .bl-stacke-box {
    padding: 16px 20px 40px;
  }

  .bl-stacke-box::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 1px solid #8FBE52;
    z-index: -1;
  }

  .bl-picture-box {
    margin-bottom: 60px;
  }

  .ly-media {
    flex-direction: column;
    width: 100%;
    padding: 40px 20px 20px;
    margin-top: 60px;
  }

  .ly-media-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

/*----- fadeUp -----*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUpTrigger {
  opacity: 0;
}

/* fadeUp ここまで */
/* テキスト関係 */
.bl-txt-wrap {
  margin-bottom: 60px;
  width: 480px;
  height: auto;
}

.el-cont-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 40px;
}

.el-cont-txt {
  font-size: 1.6rem;
  line-height: 2;
}

.bl-tel-link {
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.bl-tel-link span {
  font-size: 1.4rem;
}

.bl-tel-link img {
  display: inline-block;
  margin-right: 10px;
}

.hp-ttl-large {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 20px;
}

.hp-ttl-midium {
  font-size: 1.8rem;
  font-weight: bold;
}

.hp-txt-sm {
  font-size: 1.3rem;
  color: #e6718f;
}

/*---------------------------------------
タブレット対応
---------------------------------------*/
@media screen and (max-width: 1000px) {
  .bl-txt-wrap {
    width: 100%;
  }
}

/*---------------------------------------
スマホ対応
---------------------------------------*/
@media screen and (max-width: 819px) {
  .bl-txt-wrap {
    width: 100%;
    margin-bottom: 40px;
  }

  .el-cont-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .el-cont-txt {
    letter-spacing: 0.2px;
  }

  .bl-tel-link {
    font-size: 2rem;
  }

  .bl-tel-link span {
    font-size: 1.4rem;
  }

  .bl-tel-link img {
    margin-right: 4px;
  }
}

/* ユーティリティ */
.bg-blue {
  background-color: #6c9ed3;
}

.bg-pink {
  background-color: #e6718f;
}

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

.bg-green {
  background-color: #9cce8d;
}

.txt-pink {
  color: #e6718f;
}

.txt-blue {
  color: #6c9ed3;
}

.txt-green {
  color: #9cce8d;
}

.txt-purple {
  color: #BE71E6;
}

.txt-orange {
  color: #f2aa3c;
}

.info-bg-red {
  background-color: #FF2F65;
  color: #fff;
}

.info-bg-blue {
  background-color: #0373E3;
  color: #fff;
}

.info-bg-yellow {
  background-color: #ffe200;
  color: #333;
}

.sp {
  display: none;
}

.bl-wave-begie {
  position: relative;
}

.bl-wave-begie::before {
  content: "";
  background: url(../img/wave-beige-pc.png) center center repeat-x;
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
}

.bl-wave-white {
  position: relative;
}

.bl-wave-white::before {
  content: "";
  background: url(../img/wave-white-pc.png) center center repeat-x;
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
}

/*---------------------------------------
スマホ対応
---------------------------------------*/
@media screen and (max-width: 820px) {
  .bl-wave-begie {
    position: relative;
  }

  .bl-wave-begie::before {
    content: "";
    background: url(../img/wave-beige-sp.png) center center repeat-x;
    position: absolute;
    top: -7px;
    left: 0;
    width: 100%;
    height: 8px;
  }

  .bl-wave-white {
    position: relative;
  }

  .bl-wave-white::before {
    content: "";
    background: url(../img/wave-white-sp.png) center center repeat-x;
    position: absolute;
    top: -7px;
    left: 0;
    width: 100%;
    height: 8px;
  }

  .hp-ttl-large {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 20px;
  }

  .hp-ttl-midium {
    font-size: 1.6rem;
    font-weight: bold;
  }
}

.mt_60 {
  margin-top: 60px;
}

.mr_50 {
  margin-right: 50px !important;
}

.ml_50 {
  margin-left: 50px !important;
}

.mt_0 {
  margin-top: 0 !important;
}

.mb_0 {
  margin-bottom: 0 !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.nml_3em {
  margin-left: -3.1em;
}

.pb_40 {
  padding-bottom: 40px !important;
}

.pb_0 {
  padding-bottom: 0 !important;
}

.pl_10 {
  padding-left: 10px;
}

.hp-ta-c {
  text-align: center;
}

.hp-recruit-ttl {
  text-align: center;
}

.hp-txt-bold {
  font-weight: bold;
}

.hp-center {
  margin: 0 auto;
}

.btn-box {
  display: flex;
  justify-content: center;
}

.hp-position-re {
  position: relative;
}

.lh-s {
  line-height: 1.1;
}

.hl-lsp-small {
  letter-spacing: 0.01em;
  font-weight: normal;
}

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

  .sp {
    display: block;
  }
}

/*---------------------------------------
スマホ対応
---------------------------------------*/
@media screen and (max-width: 819px) {
  .mr_50 {
    margin-right: 20px !important;
  }

  .ml_50 {
    margin-left: 20px !important;
  }

  .hp-recruit-ttl {
    text-align: left;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
Breadcrumbs
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.breadcrumbs-warp {
  width: 1000px;
  margin: 0 auto;
  padding: 80px 0 0;
}

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

.breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-weight: bold;
  /*太字*/
}

.breadcrumb li:after {
  /* >を表示*/
  content: ">";
  padding: 0 0.2em;
  color: #ccc;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li a {
  text-decoration: none;
  color: #e6718f;
  /*色*/
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/*--------------------
タブレット対応
--------------------*/
@media screen and (max-width: 1000px) {
  .breadcrumbs-warp {
    width: 90%;
    margin: 40px auto 0;
    padding: 40px 0 0;
    font-size: 1.5rem;
  }
}

/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 819px) {
  .breadcrumbs-warp {
    width: 100%;
    margin: 0 auto 0;
    padding: 20px 16px 0;
    font-size: 1.3rem;
  }
}

.bl-pageHeading-box {
  display: flex;
  justify-content: center;
  align-items: start;
  margin: 40px 0 80px;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
about page 
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bl-table-style-600 {
  width: 600px;
  height: auto;
  margin: 0 auto;
}

.bl-table-style-600 tr {
  position: relative;
}

.bl-table-style-600 tr th,
.bl-table-style-600 td {
  padding: 20px 0;
  background-image: linear-gradient(to right, #707070, #707070 6px, transparent 6px);
  background-size: 10px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.bl-table-style-600 tr th {
  width: 110px;
  -moz-text-align-last: left;
  text-align-last: left;
}

.hp-facility-img {
  width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hp-facility-img img {
  width: 100%;
  height: auto;
}

.bl-schoolList-box {
  margin: 0;
  padding: 0;
}

.bl-schoolList-box li {
  list-style-type: none;
  background-color: #fffbf2;
  border-radius: 0 10px 10px 0;
  margin-bottom: 20px;
}

.bl-schoolList-box li a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.bl-schoolList-box .el-schoolList-img {
  width: 168px;
  height: auto;
  border-radius: 10px 0 0 10px;
}

.bl-schoolList-txtBox {
  padding: 20px 20px 18px 40px;
}

.el-schoolList-ttl {
  margin: 0;
  line-height: 1.1;
  margin-bottom: 14px;
  font-size: 1.8rem;
  font-weight: bold;
}

.el-schoolList-txt {
  margin: 0;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.5;
}

.bl-company-box {
  width: 600px;
  height: auto;
  border-radius: 40px;
  padding: 40px;
  margin: 0 auto;
  background-color: #fff;
}

.el-company-box-txt {
  font-size: 1.6rem;
  margin: 0;
}

/*--------------------
タブレット対応
--------------------*/
@media screen and (max-width: 1000px) {
  .hp-about-picture img {
    width: 100%;
    height: auto;
  }

  .bl-about-map {
    width: 100%;
    height: 400px;
  }

  .bl-schoolList-box li a {
    display: block;
  }

  .bl-schoolList-box .el-schoolList-img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }

  .bl-schoolList-txtBox {
    padding: 20px 10px;
    border-radius: 0 0 10px 10px;
  }
}

/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 819px) {
  .hp-facility-img {
    width: 100%;
    padding: 0 16px;
  }

  .bl-facility-slide {
    width: 300px;
    height: auto;
  }

  .bl-table-style-600 {
    width: 100%;
  }

  .bl-table-style-600 tr {
    position: relative;
  }

  .bl-table-style-600 tr th,
  .bl-table-style-600 td {
    padding: 10px 0;
    width: 100%;
    display: block;
  }

  .bl-table-style-600 tr th {
    width: 100%;
    display: block;
    background-image: none;
    padding: 20px 0 0;
  }

  .bl-table-style-600 tr td {
    padding: 0 0 20px;
  }

  .bl-schoolList-box .el-schoolList-img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }

  .bl-schoolList-txtBox {
    padding: 10px;
    border-radius: 0 0 10px 10px;
  }

  .el-schoolList-ttl {
    margin: 0;
    line-height: 1.1;
    margin-bottom: 14px;
    font-size: 1.6rem;
    font-weight: bold;
  }

  .bl-company-box {
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 20px;
  }

  .el-company-box-txt {
    font-size: 1.4rem;
    margin: 0;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
childcare page
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.number-list-style {
  margin: 0;
  padding: 0;
  margin-left: 3.5em;
}

.number-list-style li {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
  margin-bottom: 40px;
}

.number-list-style li::before {
  content: "(" counter(cnt) ") ";
  display: inline-block;
  margin-left: -3.5em;
  /* サイトに合せて調整 */
  width: 3em;
  /* サイトに合せて調整 */
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}

.number-list-style li:last-child {
  margin-bottom: 0;
}

.el-oneday-image {
  width: 75%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.el-oneday-ttl {
  font-weight: bold;
  font-size: 1.6rem;
  color: #fff;
  background-color: #e6718f;
  border-radius: 50px;
  padding: 12px 0;
  text-align: center;
  width: 80%;
  margin-bottom: 30px;
  margin: 0 auto 40px;
}

.bl-event-box {
  display: flex;
  align-items: center;
  width: 85%;
  margin: 0 auto;
  margin-bottom: 100px;
}

.bl-event-box-l {
  width: 160px;
  margin-right: 20px;
}

.bl-event-box-list {
  margin: 0;
  padding: 0;
  margin-left: 40px;
}

.bl-event-box-list li {
  list-style-type: none;
  margin-bottom: 10px;
  font-weight: bold;
}

/*--------------------
タブレット対応
--------------------*/
/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 819px) {
  .number-list-style {
    margin: 0;
    padding: 0;
    margin-left: 3em;
  }

  .bl-event-box {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 100px;
  }

  .bl-event-box-l {
    width: 120px;
    margin-right: 0;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
education page
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bl-edu-txt {
  width: 800px;
  margin: 0 auto;
  line-height: 2;
  margin-bottom: 80px;
}

.bl-edu-imgBox {
  display: flex;
  justify-content: space-between;
  width: 800px;
  height: auto;
  margin: 0 auto;
}

.bl-edu-imgBox img {
  width: 380px;
  height: auto;
  display: block;
}

.ly-sseMovie-box {
  margin-top: 80px;
}

.ly-movie-item {
  width: 450px;
  height: auto;
}

/*--------------------
タブレット対応
--------------------*/
@media screen and (max-width: 1000px) {
  .bl-edu-txt {
    width: 100%;
    margin: 0 auto;
    line-height: 2;
    margin-bottom: 60px;
  }

  .bl-edu-imgBox {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .bl-edu-imgBox img {
    width: 340px;
    height: auto;
    display: block;
  }

  .bl-edu-imgBox-all {
    width: 100%;
    height: auto;
  }

  .ly-movie-item {
    width: 45%;
    height: auto;
  }

  .ly-movie-item iframe {
    width: 100%;
    height: 200px;
  }
}

/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 819px) {
  .bl-edu-txt {
    margin-bottom: 20px;
  }

  .bl-edu-imgBox {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .bl-edu-imgBox img {
    width: 48%;
    height: auto;
    display: block;
  }

  .ly-sseMovie-box {
    margin-top: 40px;
  }

  .ly-movie-item {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }

  .ly-movie-item iframe {
    width: 350px;
    height: auto;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
enter page 
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bl-box-100 {
  width: 100%;
  height: auto;
  border-radius: 40px;
  background-color: #fff;
  padding: 10px 40px 30px;
}

.bl-flow-itemBox {
  width: 680px;
  height: auto;
  margin: 0 auto 80px;
  display: flex;
  align-items: center;
}

.bl-flow-itemBox:last-child {
  margin-bottom: 0;
}

.el-flow-item-l {
  width: 120px;
  height: auto;
  display: block;
  margin-right: 30px;
}

.el-flow-item-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0;
  margin-bottom: 30px;
  line-height: 1.1;
}

.bl-flow-goalBox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bl-flow-goalBox .bl-flow-goal-icon {
  width: 82px;
  height: auto;
}

.bl-flow-goalBox .bl-flow-goal {
  width: 320px;
  border-radius: 20px;
  background-color: #ff1d25;
  color: #fff;
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  margin: 0 10px;
  padding: 30px;
  line-height: 1.1;
}

.bl-g-calendar {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.bl-g-calendar iframe {
  width: 100%;
  height: 800px;
}

.bl-sw {
  width: 500px;
  margin: 0 auto 0 !important;
}

.info-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/*--------------------
タブレット対応
--------------------*/
/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 670px) {
  .bl-box-100 {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background-color: #fff;
    padding: 15px;
    font-size: 1.4rem;
  }

  .bl-flow-itemBox {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding: 16px;
  }

  .bl-flow-itemBox:last-child {
    margin-bottom: 0;
  }

  .hp-flow-item-purple {
    background-color: #f9f2fd;
    height: 250px;
  }

  .hp-flow-item-purple::before {
    content: " ";
    display: block;
    width: 240px;
    height: 40px;
    background-color: #eaf5ff;
    transform: rotate(13deg);
    transform-origin: left top;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .hp-flow-item-purple::after {
    content: " ";
    display: block;
    width: 240px;
    height: 40px;
    background-color: #eaf5ff;
    transform: rotate(-13deg);
    transform-origin: right top;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .hp-flow-item-lightblue {
    background-color: #eaf5ff;
    height: 250px;
  }

  .hp-flow-item-lightblue::before {
    content: " ";
    display: block;
    width: 240px;
    height: 40px;
    background-color: #f3ffe6;
    transform: rotate(13deg);
    transform-origin: left top;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .hp-flow-item-lightblue::after {
    content: " ";
    display: block;
    width: 240px;
    height: 40px;
    background-color: #f3ffe6;
    transform: rotate(-13deg);
    transform-origin: right top;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .hp-flow-item-lightgreen {
    background-color: #f3ffe6;
    height: 260px;
  }

  .hp-flow-item-lightgreen::before {
    content: " ";
    display: block;
    width: 240px;
    height: 40px;
    background-color: #fff6e5;
    transform: rotate(13deg);
    transform-origin: left top;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .hp-flow-item-lightgreen::after {
    content: " ";
    display: block;
    width: 240px;
    height: 40px;
    background-color: #fff6e5;
    transform: rotate(-13deg);
    transform-origin: right top;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .hp-flow-item-lightorange {
    background-color: #fff6e5;
    height: 200px;
  }

  .hp-flow-item-lightorange::before {
    content: " ";
    display: block;
    width: 240px;
    height: 40px;
    background-color: #fff2f5;
    transform: rotate(13deg);
    transform-origin: left top;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .hp-flow-item-lightorange::after {
    content: " ";
    display: block;
    width: 240px;
    height: 40px;
    background-color: #fff2f5;
    transform: rotate(-13deg);
    transform-origin: right top;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .hp-flow-item-lightred {
    background-color: #FFF2F5;
    height: 200px;
  }

  .hp-flow-item-lightred::before {
    content: " ";
    display: block;
    width: 240px;
    height: 40px;
    background-color: #fff;
    transform: rotate(13deg);
    transform-origin: left top;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .hp-flow-item-lightred::after {
    content: " ";
    display: block;
    width: 240px;
    height: 40px;
    background-color: #fff;
    transform: rotate(-13deg);
    transform-origin: right top;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .el-flow-item-l {
    width: 56px;
    margin-right: 20px;
  }

  .el-flow-item-ttl {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 18px;
    line-height: 1.1;
  }

  .el-flow-item-txt {
    font-size: 1.4rem;
    position: absolute;
    width: 310px;
    height: auto;
    top: 80px;
    left: 16px;
  }

  .bl-flow-goalBox .bl-flow-goal-icon {
    width: 60px;
    height: auto;
  }

  .bl-flow-goalBox .bl-flow-goal {
    width: 100%;
    border-radius: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 15px;
    line-height: 1.1;
  }

  .bl-g-calendar iframe {
    width: 100%;
    height: 400px;
  }

  .bl-sw {
    width: 100%;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
faq page 
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#acMenu .el-acmenu {
  cursor: pointer;
  background: url(../img/icon-arrow-down.svg) right center no-repeat;
  padding-right: 15px;
}

#acMenu .el-faq-details {
  display: none;
}

#acMenu .el-acmenu.active {
  background: url(../img/icon-arrow-up.svg) right center no-repeat;
}

#en-acMenu .el-en-acmenu {
  cursor: pointer;
  background: url(../img/icon-arrow-down.svg) right center no-repeat;
  padding-right: 15px;
}

#en-acMenu .el-faq-details {
  display: none;
}

#en-acMenu .el-en-acmenu.active {
  background: url(../img/icon-arrow-up.svg) right center no-repeat;
}

.bl-faqBox {
  width: 800px;
  margin: 0 auto 40px;
  background-color: #fff;
  border-radius: 40px;
  padding: 20px 30px;
}

.el-question-txt {
  margin: 0;
  font-weight: bold;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}

.el-faq-icon {
  display: inline-block;
  margin-right: 10px;
}

.el-faq-details {
  width: 100%;
  margin-top: 30px;
}

.el-faq-details .el-faq-details-item {
  display: flex;
  align-items: flex-start;
}

.el-faq-details .el-answer-icon {
  display: block;
  margin-right: 15px;
}

.el-faq-details .el-faq-answer {
  margin: 0;
  vertical-align: top;
  font-size: 1.6rem;
}

.bl-contact-box {
  width: 600px;
  height: auto;
  border-radius: 40px;
  padding: 40px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 10px 10px #ffeb00;
}

.el-contact-link {
  font-size: 3rem;
  font-weight: bold;
  color: #e6718f;
}

/*--------------------
タブレット対応
--------------------*/
/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 819px) {
  .bl-faqBox {
    width: 100%;
    margin: 0 auto 24px;
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
  }

  .el-faq-icon {
    width: 25px;
    height: auto;
    margin-right: 8px;
  }

  .el-question-txt {
    align-items: flex-start;
    font-size: 1.4rem;
  }

  .el-faq-details .el-answer-icon {
    width: 25px;
    height: auto;
    margin-right: 8px;
    margin-top: 4px;
  }

  .bl-contact-box {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 4px 4px #ffeb00;
  }

  .el-contact-link {
    font-size: 2rem;
  }

  .el-faq-details .el-faq-answer {
    font-size: 1.4rem;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
privacy policy page 
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.number-list-style-policy {
  margin: 0;
  padding: 0;
  margin-left: 3.5em;
}

.number-list-style-policy li {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
  margin-bottom: 0;
}

.number-list-style-policy li::before {
  content: "(" counter(cnt) ") ";
  display: inline-block;
  margin-left: -3.5em;
  /* サイトに合せて調整 */
  width: 3em;
  /* サイトに合せて調整 */
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}

/*--------------------
タブレット対応
--------------------*/
/*--------------------
スマホ対応
--------------------*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
recruit page
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bl-recruit-lead {
  text-align: center;
  font-weight: bold;
  margin-bottom: 80px;
}

.bl-table-style-800 {
  width: 800px;
  margin: 0 auto 80px;
}

.bl-table-style-800 tr {
  position: relative;
}

.bl-table-style-800 tr th,
.bl-table-style-800 td {
  padding: 20px 0;
  background-image: linear-gradient(to right, #707070, #707070 6px, transparent 6px);
  background-size: 10px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.bl-table-style-800 tr th {
  text-align: left;
  padding: 20px 40px;
}

.btn-recruit img {
  display: inline-block;
  margin-left: 10px;
}

/*--------------------
タブレット対応
--------------------*/
/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 819px) {
  .bl-recruit-lead {
    text-align: left;
  }

  .bl-table-style-800 {
    width: 100%;
    margin: 0 auto 40px;
  }

  .bl-table-style-800 tr {
    position: relative;
  }

  .bl-table-style-800 tr th,
  .bl-table-style-800 td {
    padding: 10px 0 20px;
    background-image: linear-gradient(to right, #707070, #707070 6px, transparent 6px);
    background-size: 10px 2px;
    background-position: left bottom;
    background-repeat: repeat-x;
    width: 100%;
    display: block;
  }

  .bl-table-style-800 tr th {
    text-align: left;
    padding: 20px 0 0;
    background-image: none;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
info page
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bl-page-infoBox {
  width: 800px;
  height: auto;
  margin: 0 auto;
}

.el-card-large {
  width: 100%;
  height: auto;
  border-radius: 40px;
  background-color: #fff;
  padding: 60px;
  margin-bottom: 60px;
}

.ly-page-info-ttl {
  font-size: 2.4rem;
  font-weight: bold;
}

.bl-page-info-txt {
  text-align: justify;
}

.bl-infotbl th {
  vertical-align: top;
}

/*--------------------
タブレット対応
--------------------*/
@media screen and (max-width: 1000px) {
  .bl-pageHeading-box {
    margin: 80px 0 60px;
  }

  .bl-page-infoBox {
    width: 100%;
    height: auto;
  }
}

/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 820px) {
  .bl-pageHeading-box {
    margin: 40px 0 30px;
  }

  .el-card-large {
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .ly-page-info-ttl {
    font-size: 1.8rem;
  }

  .bl-infotbl th,
  .bl-infotbl td {
    display: block;
    text-align: left;
  }

  .bl-infotbl td {
    margin-bottom: 20px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
Header
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
header {
  background-color: #fff;
  position: relative;
}

header::after {
  content: "";
  display: block;
  width: 100%;
  height: 48px;
  background: url(../img/header-crowd-pc.png) center bottom repeat-x;
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 1000px) {
  header::after {
    height: 40px;
  }
}

@media screen and (max-width: 420px) {
  header::after {
    height: 9px;
    background: url(../img/header-crowd-sp.png) center bottom repeat-x;
  }
}

.ly-header-wrap {
  width: 100%;
  height: 200px;
}

@media screen and (max-width: 1000px) {
  .ly-header-wrap {
    height: auto;
  }
}

.ly-header-inner {
  width: 1000px;
  height: 200px;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .ly-header-inner {
    width: 100%;
    height: 70px;
    padding: 0 16px;
    display: block;
    flex: none;
    margin: 0;
  }
}

.bl-header-logo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: -10%;
  transform: translateX(-50%);
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1000px) {
  .bl-header-logo {
    width: 170px;
    height: 70px;
    position: static;
    transform: none;
    left: 0;
    top: 0;
    margin: 0;
    padding: 16px 0;
    background-color: transparent;
    border-radius: unset;
    box-shadow: none;
  }
}

.bl-header-logo a {
  text-decoration: none;
  display: block;
  position: relative;
}

.bl-header-logo img {
  width: 140px;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 25%);
}

@media screen and (max-width: 1000px) {
  .bl-header-logo img {
    width: auto;
    height: 36px;
    position: static;
    top: 0;
    left: 0;
    transform: none;
  }
}

.ly-header-nav {
  position: absolute;
  z-index: 10;
  width: 100%;
}

.ly-header-nav ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
}

.ly-header-nav ul li {
  margin-right: 40px;
  line-height: 1.3;
  text-align: center;
}

.ly-header-nav ul li:nth-child(3) {
  margin-right: 300px;
}

.ly-header-nav ul li:last-child {
  margin-right: 0;
}

.ly-header-nav ul a {
  text-decoration: none;
  color: #333;
}

.ly-headerNav-icon-warp {
  position: absolute;
  top: 0;
  right: 100px;
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 1600px) {
  .ly-headerNav-icon-warp {
    right: 0;
  }
}

@media screen and (max-width: 1000px) {
  .ly-headerNav-icon-warp {
    display: none;
  }
}

.ly-headerNav-icon-item {
  width: 100px;
  height: 100px;
  border-radius: 0 0 50% 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
}

@media screen and (max-width: 1330px) {
  .ly-headerNav-icon-item {
    width: 80px;
    height: 70px;
  }
}

.ly-headerNav-icon-item img {
  width: 16px;
  height: auto;
}

.ly-header-nav-sm {
  display: none;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
Toggle menu
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width: 1000px) {
  .ly-header-nav {
    display: none;
  }

  .ly-header-nav-sm {
    display: block;
    position: relative;
  }

  #sm-toggle {
    opacity: 0;
    position: fixed;
  }

  label .toggle-line {
    position: fixed;
    top: 1.8rem;
    right: 1.4rem;
    z-index: 200;
    width: 2.4rem;
    height: 2.4rem;
  }

  label .toggle-line::before,
  label .toggle-line::after,
  label .toggle-line .bar {
    position: absolute;
    right: 0;
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background-color: #9d651c;
    content: "";
    transition: all 0.5s;
  }

  label .toggle-line::before {
    top: 0;
    transform-origin: top right;
  }

  label .toggle-line::after {
    bottom: 0;
    transform-origin: bottom right;
  }

  label .toggle-line .bar {
    top: 45%;
  }

  #menu {
    position: fixed;
    top: 8%;
    left: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    width: 100%;
  }

  #menu p {
    width: 33.3333333333%;
    margin: 0 auto;
    padding: 8px 0 10px;
    text-align: center;
    height: 80px;
    border-right: dotted 2px #9d651c;
    border-bottom: dotted 2px #9d651c;
    background-color: #fffbf2;
    transform: translateX(-100%);
    transition: all 0.15s, transform 0.5s;
  }

  #menu p:nth-child(-n+3) {
    border-top: 2px dotted #9d651c;
  }

  #menu p:nth-of-type(n+7) {
    width: 50%;
  }

  #menu p:nth-of-type(3n) {
    border-right: none;
  }

  #menu p:last-of-type {
    border-right: none;
  }

  #menu::before {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100rem;
    background-color: #fff;
    content: "";
    transform: translateY(-200%);
    transform-origin: top left;
    transition: transform 0.3s;
  }

  #menu a {
    margin: 0;
    padding: 0.2rem 0;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #474645;
    font-weight: bold;
    text-decoration: none;
    transform: translateX(-100%);
    transition: all 0.15s, transform 0.5s;
  }

  #menu #menu #menu #menu .flex-colum a {
    line-height: 1.5;
  }

  #sm-toggle:checked+label .toggle-line::before,
  #sm-toggle:checked+label .toggle-line::after {
    width: 130%;
    background-color: #9d651c;
  }

  #sm-toggle:checked+label .toggle-line::before {
    transform: rotate(-45deg);
  }

  #sm-toggle:checked+label .toggle-line::after {
    transform: rotate(45deg);
  }

  #sm-toggle:checked+label .toggle-line .bar {
    transform: scale(0);
  }

  #sm-toggle:checked~#menu {
    opacity: 1;
    visibility: visible;
  }

  #sm-toggle:checked~#menu::before {
    transform: translateX(0);
  }

  #sm-toggle:checked~#menu a {
    transform: translateX(0);
  }

  #sm-toggle:checked~#menu p {
    transform: translateX(0);
  }
}

.cta-wrap {
  width: 100%;
  text-align: center;
  margin: 10px auto 0;
  transform: translateX(-100%);
  transition: all 0.15s, transform 0.5s;
}

.cta-wrap .cta-txt {
  font-weight: bold;
}

.cta-wrap img {
  width: 80%;
  height: auto;
}

@media screen and (min-width: 820px) {
  .cta-wrap img {
    width: 50%;
  }
}

#sm-toggle:checked~#menu div {
  transform: translateX(0);
}

.sm-menuBtn-wrap {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.sm-menuBtn {
  width: 50%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
}

.sm-menuBtn img {
  width: 16px;
  height: auto;
  display: inline-block;
  margin-right: 10px;
}

.el-toggle-etc {
  display: block;
  margin-top: 20px !important;
  text-decoration: underline !important;
  color: #6c9ed3 !important;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
MV
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bl-mv {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url(../img/mv-pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -10;
}

.ly-mv-txt {
  position: absolute;
  bottom: 80px;
  left: 10vw;
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ly-mv-txt .hp-txt-line {
  background-color: #FFFF00;
  font-size: 3rem;
  font-weight: bold;
  color: #9d651c;
  display: inline-block;
  margin-bottom: 20px;
  padding: 0 10px;
}

/*--------------------
タブレット対応
--------------------*/
@media screen and (max-width: 1000px) {
  .bl-mv {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url(../img/mv-pc.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -10;
  }

  .ly-mv-txt {
    position: absolute;
    bottom: 80px;
    left: 8vw;
  }

  .ly-mv-txt .hp-txt-line {
    font-size: 2.4rem;
  }
}

/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 820px) {
  .bl-mv {
    background-image: url(../img/mv-sp.png);
    z-index: -10;
  }

  .ly-mv-txt {
    bottom: 80px;
    left: 4vw;
  }

  .ly-mv-txt .hp-txt-line {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
heading 
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bl-heading-box {
  display: flex;
  justify-content: center;
  align-items: start;
  margin: 80px 0;
}

.bl-headingThree-box {
  display: flex;
  justify-content: center;
  align-items: start;
  margin: 40px 0;
}

.hp-heading {
  font-size: 3.6rem;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.12em;
  margin: 0;
}

.hp-heading-three {
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.12em;
  margin: 0;
}

.hp-heading-en {
  font-size: 1.4rem;
  color: #e6718f;
}

.heading-icon {
  width: auto;
  height: 60px;
  display: block;
}

.headingThree-icon {
  width: auto;
  height: 32px;
  display: block;
}

/*--------------------
タブレット対応
--------------------*/
@media screen and (max-width: 1000px) {
  .bl-heading-box {
    margin: 40px 0 60px;
  }

  .bl-headingThree-box {
    display: flex;
    justify-content: center;
    align-items: start;
    margin: 40px 0;
  }

  .bl-headingThree-box .headingThree-icon {
    height: 24px;
    width: auto;
  }

  .hp-heading {
    font-size: 3rem;
  }

  .hp-heading-three {
    font-size: 2rem;
  }

  .heading-icon {
    height: 40px;
  }
}

/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 819px) {
  .bl-heading-box {
    margin: 40px 0;
  }

  .bl-headingThree-box {
    display: flex;
    justify-content: center;
    align-items: start;
    margin: 40px 0 20px;
  }

  .bl-headingThree-box .headingThree-icon {
    height: 20px;
    width: auto;
  }

  .hp-heading {
    font-size: 2rem;
  }

  .hp-heading-three {
    font-size: 1.8rem;
  }

  .heading-icon {
    height: 24px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
banner
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bl-banner-wrap {
  width: 800px;
  height: auto;
  margin: 0 auto;
  text-align: center;
  padding-top: 80px;
}

/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 819px) {
  .bl-banner-wrap {
    width: 350px;
    padding-top: 40px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
top infomation 
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bl-infoBox {
  margin-bottom: 40px;
}

.bl-infoBox .bl-infoBox-item {
  background-color: #fff;
  border-radius: 50px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  padding: 16px 60px;
  text-decoration: none;
  color: #333;
}

.bl-infoBox-txt {
  margin: 0;
  display: flex;
  align-items: flex-start;
}

.bl-infoBox-txt .hp-tab {
  font-size: 1.4rem;
  border-radius: 20px;
  padding: 0 16px;
  margin-right: 40px;
  width: 160px;
  text-align: center;
  display: inline-block;
}

.bl-infoBox-txt .hp-date {
  margin-right: 40px;
}

.bl-infoBox-txt .hp-arrow {
  text-align: right;
}

.bl-infoBox-txt .ly-info-ttl {
  white-space: normal;
  padding-right: 40px;
}

.ly-info-img {
  width: 100%;
  height: auto;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}

/*--------------------
タブレット対応
--------------------*/
@media screen and (max-width: 1000px) {
  .bl-infoBox {
    margin-bottom: 40px;
  }

  .bl-infoBox .bl-infoBox-item {
    padding: 16px 30px;
  }

  .bl-infoBox-txt .hp-tab {
    margin-right: 30px;
  }

  .bl-infoBox-txt .hp-date {
    margin-right: 30px;
  }
}

/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 820px) {
  .bl-infoBox-txt {
    flex-wrap: wrap;
  }

  .bl-infoBox-txt .hp-tab {
    margin-right: 20px;
    width: 140px;
  }

  .bl-infoBox-txt .hp-date {
    margin-right: 20px;
  }

  .bl-infoBox-txt .ly-info-ttl {
    display: inline-block;
    margin: 10px 20px 0 0;
    text-align: justify;
    padding-right: 0;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
top childcare
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bg-illust-t {
  position: absolute;
  top: -160px;
  right: -30px;
  width: 100px;
  height: auto;
}

.bg-illust-b {
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 130px;
  height: auto;
}

.bl-topChildcare-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.bl-topChildcare-list img {
  display: inline-block;
  margin-right: 10px;
}

.bl-topChildcare-list li {
  margin-bottom: 20px;
}

/*--------------------
タブレット対応
--------------------*/
@media screen and (max-width: 1000px) {
  .bg-illust-t {
    position: absolute;
    top: -100px;
    right: -20px;
    width: 120px;
    height: auto;
  }

  .bg-illust-b {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 120px;
    height: auto;
  }
}

/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 819px) {
  .bg-illust-t {
    top: 350px;
    right: 0;
    width: 72px;
    height: auto;
  }

  .bg-illust-b {
    position: absolute;
    bottom: -50px;
    right: -20px;
    width: 80px;
    height: auto;
  }

  .bl-topChildcare-list img {
    margin-right: 4px;
  }

  .bl-topChildcare-list li {
    margin-bottom: 20px;
  }

  .bl-topChildcare-list {
    margin-bottom: 60px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
top how to enter
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bg-img-wrap {
  display: flex;
  justify-content: space-around;
  align-items: baseline;
  margin-bottom: 80px;
}

.ly-topTxt-wrap {
  margin-bottom: 80px;
}

.bl-topSw {
  width: 500px;
  margin: 0 auto 160px !important;
}

.bl-topEnter-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}

.bl-topEnter-list li {
  margin-bottom: 20px;
  text-align: center;
}

.el-enterCard-large {
  width: 600px;
  height: auto;
  border-radius: 40px;
  background-color: #fff;
  padding: 20px 60px 10px;
  margin: 0 auto 100px;
  text-align: center;
}

.el-Enter-cardTxt {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

.el-Enter-cardTxt-tel {
  text-decoration: none;
}

.el-Enter-cardTxt-large {
  font-size: 4rem;
  font-weight: bold;
}

.bl-field-trip-wrap {
  width: 650px;
  height: auto;
  margin: 0 auto 80px;
}

.ly-field-trip-list {
  margin: 0;
  padding: 0;
  padding-left: 2rem;
}

.bg-sakuraL-01 {
  position: absolute;
  top: 420px;
  left: -200px;
  width: 60px;
  height: auto;
}

.bg-sakuraL-02 {
  position: absolute;
  top: 880px;
  left: 0;
  width: 20px;
  height: auto;
}

.bg-sakuraL-03 {
  position: absolute;
  top: 1200px;
  left: -100px;
  width: 65px;
  height: auto;
}

.bg-sakuraR-01 {
  position: absolute;
  top: 220px;
  right: -80px;
  width: 20px;
  height: auto;
}

.bg-sakuraR-02 {
  position: absolute;
  top: 500px;
  right: -150px;
  width: 70px;
  height: auto;
}

.bg-sakuraR-03 {
  position: absolute;
  top: 1000px;
  right: -100px;
  width: 20px;
  height: auto;
}

.bg-sakuraR-04 {
  position: absolute;
  top: 1400px;
  right: -40px;
  width: 70px;
  height: auto;
}

.bl-slideShow-wrap {
  display: flex;
  align-items: center;
  height: 400px;
  overflow: hidden;
}

.bl-slideShow {
  display: flex;
  animation: loop-slide 20s infinite linear 1s both;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.el-slideShow-item {
  width: 600px;
  height: 400px;
}

.bl-banner-txt {
  width: 400px;
  height: 130px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*--------------------
タブレット対応
--------------------*/
@media screen and (max-width: 1000px) {
  .bg-img-wrap img {
    width: auto;
    height: 200px;
  }

  .bg-sakuraL-01 {
    top: 100px;
    left: -80px;
  }

  .bg-sakuraL-02 {
    top: 800px;
  }

  .bg-sakuraL-03 {
    top: 1100px;
    left: -60px;
  }

  .bg-sakuraR-02 {
    top: 500px;
    right: -60px;
  }

  .bg-sakuraR-03 {
    right: -40px;
  }

  .bg-sakuraR-04 {
    top: 1150px;
    right: -40px;
  }
}

/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 820px) {
  .el-enterCard-large {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background-color: #fff;
    padding: 20px 20px 10px;
    margin: 0 auto 60px;
  }

  .el-Enter-cardTxt {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
  }

  .el-Enter-cardTxt-large {
    font-size: 2.4rem;
  }

  .bl-field-trip-wrap {
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
  }

  .ly-g-calendar iframe {
    width: 100%;
  }

  .bl-slideShow-wrap {
    display: flex;
    align-items: center;
    height: 200px;
    overflow: hidden;
  }

  .bl-slideShow {
    display: flex;
    animation: loop-slide 20s infinite linear 1s both;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  @keyframes loop-slide {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-100%);
    }
  }

  .el-slideShow-item {
    width: 300px;
    height: 200px;
  }

  .ly-topTxt-wrap {
    margin-bottom: 20px;
  }

  .bl-topSw {
    width: 100%;
    margin: 0 auto 80px !important;
  }

  .mb_40 {
    margin-bottom: 40px;
  }

  .bg-sakuraL-01 {
    top: 100px;
    left: 0;
    width: 40px;
    height: auto;
  }

  .bg-sakuraL-02 {
    top: 650px;
    left: 20px;
  }

  .bg-sakuraL-03 {
    top: 1150px;
    left: 10px;
    width: 30px;
    height: auto;
  }

  .bg-sakuraR-01 {
    top: 160px;
    right: 40px;
  }

  .bg-sakuraR-02 {
    top: 430px;
    right: 20px;
    width: 30px;
    height: auto;
  }

  .bg-sakuraR-03 {
    top: 750px;
    right: 20px;
  }

  .bg-sakuraR-04 {
    top: 1100px;
    right: 40px;
    width: 20px;
    height: auto;
  }

  .bl-topEnter-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
top banner
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.ly-twocol-banner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.ly-twocol-banner .ly-twocol-r,
.ly-twocol-banner .ly-twocol-l {
  width: 480px;
}

.bl-banner-ttl {
  font-size: 3rem;
  font-weight: bold;
  color: #6c9ed3;
}

.cm-banner {
  text-align: center;
  display: inline-block;
}

.cm-banner img {
  width: 480px;
  height: auto;
}

.cm-banner:hover {
  transform: translate(10px, 10px);
}

/*--------------------
タブレット対応
--------------------*/
@media screen and (max-width: 1000px) {
  .ly-twocol-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .ly-twocol-banner .ly-twocol-r,
  .ly-twocol-banner .ly-twocol-l {
    width: 480px;
  }

  .bl-banner-txt {
    width: 400px;
    height: 100px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .link-blank {
    width: 2rem !important;
  }
}

/*--------------------
スマホ対応
--------------------*/
@media screen and (max-width: 819px) {
  .ly-twocol-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .ly-twocol-banner .ly-twocol-r,
  .ly-twocol-banner .ly-twocol-l {
    width: 100%;
  }

  .bl-banner-ttl {
    font-size: 2rem;
    text-align: center;
  }

  .bl-banner-txt {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cm-banner img {
    width: 100%;
    height: auto;
  }

  .cm-banner:hover {
    transform: none;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
footer 
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
footer {
  position: relative;
  background: url(../img/bg-beige.png) center center repeat;
}

footer::before {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  content: "";
  background: url(../img/wave-footer-pc.png) center center repeat;
}

@media screen and (max-width: 1000px) {
  footer::before {
    background: url(../img/wave-footer-pad.png) center center repeat;
    top: -17px;
    width: 100%;
    height: 17px;
  }
}

@media screen and (max-width: 820px) {
  footer::before {
    background: url(../img/wave-footer-sp.png) center center repeat;
    top: -8px;
    width: 100%;
    height: 8px;
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 819px) {
  footer {
    margin-bottom: 90px;
    padding-bottom: 20px;
  }
}

.ly-footer-body {
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

@media screen and (max-width: 1000px) {
  .ly-footer-body {
    width: 100%;
    padding: 0 16px;
  }
}

.ly-footer-inner {
  width: 1000px;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  .ly-footer-inner {
    width: 100%;
    padding: 0 16px;
  }
}

.ly-footer-logo-box {
  width: 320px;
  height: auto;
  margin: 0 80px 40px 0;
}

@media screen and (max-width: 1525px) {
  .ly-footer-logo-box {
    bottom: 70px;
    left: 60px;
  }
}

@media screen and (max-width: 1000px) {
  .ly-footer-logo-box {
    left: 16px;
    margin-right: 60px;
  }
}

@media screen and (max-width: 820px) {
  .ly-footer-logo-box {
    display: none;
  }
}

.ly-footer-logo {
  width: 180px;
  height: auto;
  margin: 0 0 10px;
}

@media screen and (max-width: 1000px) {
  .ly-footer-logo {
    width: 140px;
  }
}

.ly-footer-logo img {
  width: 100%;
  height: auto;
}

.bl-footer-adress {
  color: #9d651c;
  margin: 0;
}

.bl-footer-cta {
  display: block;
  width: 600px;
  height: auto;
  margin: 0 auto 40px;
  padding-top: 40px;
}

.bl-footer-cta img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1000px) {
  .bl-footer-cta {
    width: 50%;
    padding-top: 20px;
  }
}

@media screen and (max-width: 820px) {
  .bl-footer-cta {
    padding-bottom: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }
}

.ly-footer-nav {
  margin-top: 20px;
  font-size: 1.6rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.ly-footer-nav ul {
  margin: 0;
  padding: 0;
}

.ly-footer-nav li {
  margin-bottom: 30px;
}

.ly-footer-nav li a {
  display: block;
  line-height: 1.2;
  text-decoration: none;
  color: #333;
}

@media screen and (max-width: 420px) {
  .ly-footer-nav {
    display: none;
  }
}

.ly-footer-bottom {
  position: absolute;
  bottom: -30px;
  width: 100%;
  height: 40px;
  background: url(../img/ptn-footer-bottom-pc.png) center center repeat;
  color: #9d651c;
  font-weight: bold;
  text-align: center;
  z-index: 30;
}

@media screen and (max-width: 640px) {
  .ly-footer-bottom {
    position: absolute;
    height: 35px;
    background: url(../img/ptn-footer-bottom-sp.png) center center repeat;
    bottom: -20px;
  }
}

.ly-footer-subNav {
  display: none;
}

@media screen and (max-width: 420px) {
  .ly-footer-subNav {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fffbf2;
    display: block;
    height: 70px;
    width: 100%;
  }

  .ly-footer-subNav ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style-type: none;
    margin: 0;
    padding: 16px 0 0 24px;
  }

  .ly-footer-subNav ul li {
    margin-right: 24px;
    text-align: center;
  }

  .ly-footer-subNav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
    display: block;
  }

  .ly-footer-subNav ul li a img {
    width: auto;
    height: 24px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
トップに戻る 
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#back-to-top {
  position: fixed;
  right: 80px;
  bottom: 80px;
  text-align: right;
  width: 80px;
  height: 80px;
  z-index: 30;
}

@media screen and (max-width: 1000px) {
  #back-to-top {
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 640px) {
  #back-to-top {
    position: fixed;
    right: 16px;
    bottom: 0;
    text-align: right;
    width: 48px;
    height: 48px;
    z-index: 30;
    margin-bottom: 10px;
  }
}

#back-to-top a {
  display: block;
}

#back-to-top img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1000px) {
  #back-to-top img {
    width: 80%;
  }
}

@media screen and (max-width: 640px) {
  #back-to-top img {
    width: 100%;
  }
}

.back-to-btn {
  opacity: 0;
  visibility: hidden;
}

.back-to-btn-active {
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=style.css.map */