@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Text+Me+One&family=Zen+Kurenaido&display=swap');
:root {
  --color-dark: #000000;
  --color-light: #FFFFFF;
  --color-point: #CEA669; /*gold*/
  --color-point2: #56294a; /*purple*/
  --color-sub: #929292; /*gray*/
  --color-sub2: #5f5f5f; /*dark gray*/
  --color-link: #000000;
  --color-linkHover: #CEA669;
  --bg-light: #F2F2F2;
  --anim-bg: #000000;
}
/* <weight>: Use a value from 100 to 900*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.text-me-one-regular {
  font-family: "Text Me One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zen-kurenaido-regular {
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*animation
************************************************************************************/
.anim {
  opacity: 0;
}
.anim-up {
  opacity: 0;
}
.anim-slide-left {
  opacity: 0;
}
.anim-slide-right {
  opacity: 0;
}
.delay-1s {
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
  -webkit-animation-delay: calc(var(--animate-delay)*.1);
  animation-delay: calc(var(--animate-delay)*.1)
}
.delay-2s {
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
  -webkit-animation-delay: calc(var(--animate-delay)*.2);
  animation-delay: calc(var(--animate-delay)*.2)
}
.delay-3s {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
  -webkit-animation-delay: calc(var(--animate-delay)*.3);
  animation-delay: calc(var(--animate-delay)*.3)
}
.delay-4s {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
  -webkit-animation-delay: calc(var(--animate-delay)*.4);
  animation-delay: calc(var(--animate-delay)*.4)
}
.delay-5s {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-delay: calc(var(--animate-delay)*.5);
  animation-delay: calc(var(--animate-delay)*.5)
}
.delay-6s {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
  -webkit-animation-delay: calc(var(--animate-delay)*.6);
  animation-delay: calc(var(--animate-delay)*.6)
}
.delay-7s {
  -webkit-animation-delay: .7s;
  animation-delay: .7s;
  -webkit-animation-delay: calc(var(--animate-delay)*.7);
  animation-delay: calc(var(--animate-delay)*.7)
}
.delay-8s {
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
  -webkit-animation-delay: calc(var(--animate-delay)*.8);
  animation-delay: calc(var(--animate-delay)*.8)
}
.delay-9s {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  -webkit-animation-delay: calc(var(--animate-delay)*.9);
  animation-delay: calc(var(--animate-delay)*.9)
}
@media screen and (max-width: 1024px) {
  .delay-1s, .delay-2s, .delay-3s, .delay-4s, .delay-5s, .delay-6s, .delay-7s, .delay-8s, .delay-9s {
    transition-delay: .1s;
  }
}
@media screen and (max-width: 768px) {
  .delay-1s, .delay-2s, .delay-3s, .delay-4s, .delay-5s, .delay-6s, .delay-7s, .delay-8s, .delay-9s {
    transition-delay: 0;
  }
}
.passing-text, .passing-photo figure {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.passing-text::before, .passing-photo figure::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  background: var(--anim-bg);
}
.passing-text.move-in::before, .passing-photo.move-in figure::before {
  animation: barAnime forwards 1.5s 1 0.1s normal;
}
.passing-text *, .passing-photo figure img {
  opacity: 0;
  transform: scale(1.1);
}
.passing-text.move-in *, .passing-photo.move-in figure img {
  animation: photoAnime forwards 1.5s 1 0.5s normal;
}
@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  68% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes photoAnime {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  50% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (min-width: 1025px) {
  .over-fade, .menu-list li, .menu-list .image img {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
}
/*header
************************************************************************************/
.header.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 500;
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid #FFF;
  padding-bottom: 0;
  height: 100px;
}
.fv_wrap {
  position: relative;
  padding-top: 10px;
  z-index: 9999;
}
.fv_wrap .header_wrap {
  width: 100%;
  position: relative;
  height: 80px;
}
.fv_wrap .header_wrap .contact {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.55);
  position: absolute;
  top: 0;
  right: 1%;
  z-index: 20;
  border-radius: 50px;
}
.fv_wrap .header_wrap .contact a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv_wrap .header_wrap .contact img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.fv_wrap .header_wrap .logo {
  width: 450px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  top: 0;
  left: 1%;
  box-sizing: border-box;
  padding: .5em 2em;
  z-index: 20;
  border-radius: 50px;
}
.fv_wrap .header_wrap .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.fv_wrap .header_wrap .logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.fv_wrap .header_wrap .menu-header-menu-container {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  padding: 0 120px 0 480px;
  box-sizing: border-box;
}
.fv_wrap .header_wrap .menu-header-menu-container ul.header-menu {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 50px;
  padding: 0 1em;
  width: auto;
  display: table;
  margin-left: auto;
}
.header-menu > li {
  display: table-cell;
  vertical-align: middle;
}
.header-menu > li a {
  color: var(--color-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0 1.5em;
  border-right: 0;
}
#mobile-nav.panelactive {}
@media screen and (min-width: 1025px) {
  .mobile-nav-wrap {
    display: none;
  }
  #mobile-nav {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  body.body-scroll-lock .fv_wrap .header_wrap .logo {
    display: none;
  }
  #mobile-nav.panelactive {
    display: block;
  }
  .fv_wrap .header_wrap .contact, .fv_wrap .header_wrap .menu-header-menu-container {
    display: none;
  }
  .mobile-nav-wrap, .mobile-nav-wrap .menu-header-menu-container {
    display: block !important;
  }
  .fv_wrap {
    padding-top: 0;
  }
  .mobile-btn {
    width: 80px;
    height: 80px;
    background: #FFF;
    top: 0;
    right: 0;
    border-radius: 0 0 0 30px;
    z-index: 9999;
  }
  #hamburger {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
  }
  .fv_wrap .header_wrap .logo {
    width: calc(99% - 95px);
    max-width: calc(99% - 95px);
    height: 70px;
    top: 5px;
    left: 1%;
    z-index: 888;
  }
  .mobile-logo img {
    max-width: 280px;
  }
  .mobile-nav-wrap .mobile-menu-list > li > a {
    color: var(--color-point2);
    border-top: 1px solid var(--color-point2)
  }
  .mobile-sub-nav li a {
    color: var(--color-point2);
  }
  #mobile-nav {
    background: none;
    background-color: var(--color-point2);
  }
  #hamburger span {
    background-color: var(--color-point2);
  }
}
@media screen and (max-width: 600px) {
  .fv_wrap .header_wrap .logo {
    height: 40px;
  }
  .mobile-btn {
    width: 60px;
    height: 60px;
  }
}
.sub-header {
  margin-top: -90px;
}
.sub-header-txt {
  /*color: var(--color-point2);
	padding: .5em 1.5em;
	border-radius: 40px;*/
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*footer
************************************************************************************/
.footer {
  background-color: #FFF;
  border-top: 1px solid #707070;
  color: #000;
}
.footer a {
  color: #000;
}
.footer-menu-title {
  display: none;
}
.footer-logo {
  border: 0;
  padding-bottom: 0;
}
.footer-nav-wrap {
  width: 40%;
}
.footer-address .name, .footer-address .tel, .footer-address .address, .footer .copyright p {
  color: #000;
}
@media screen and (max-width: 1024px) {
  .footer-nav-wrap {
    display: none;
  }
}
/*home
************************************************************************************/
.sliderWrap {
  position: relative;
  padding: 0;
  margin-top: -90px;
  z-index: 888;
}
.sliderWrap .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 55555;
  padding: 0;
  margin: 0;
  line-height: 0;
}
.sliderWrap .mask img {
  width: 100%;
  height: 100%;
}
.sliderWrap .copy {
  /*color: var(--color-point);*/
  color: #ffffff;
  font-size: 4rem;
  line-height: 1.6;
  position: absolute;
  bottom: 5%;
  left: 3%;
  z-index: 66666;
}
.sliderWrap p.copy {
  margin-bottom: 0;
}
.sliderWrap .n2-ss-slide {
  z-index: 44444;
  position: absolute;
}
body.home .titleBox {
  margin-bottom: 3em;
}
body.home .titleBox .eng_title {
  font-size: 2.5rem;
  margin: 0;
  line-height: 1;
  font-weight: 600;
}
body.home .titleBox h1.jp_title {
  /*font-size: 1.8rem;
	margin: 1em 0 0;*/
  font-size: 5rem;
  margin: 0;
  line-height: 2;
  font-weight: 600;
}
body.home .titleBox .cmt {
  margin-top: 2em;
  padding-right: 4em;
}
@media screen and (max-width: 1024px) {
  body.home .titleBox .eng_title {
    font-size: 4.8rem;
  }
  body.home .titleBox h1.jp_title {
    font-size: 1.4rem;
  }
  body.home section {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  body.home .titleBox .eng_title {
    font-size: 3.6rem;
  }
  .sliderWrap .copy {
    font-size: 2rem;
    bottom: 10%;
  }
}
/*greeting
----------------------------------------------------------------------*/
body.home #greeting {
  position: relative;
}
body.home #greeting .width1200 {
  display: flex;
  flex-wrap: wrap;
}
body.home #greeting .photo {
  width: 250px;
  padding-top: 4em;
}
body.home #greeting .photo img {
  max-width: 100%;
  height: auto;
  border-radius: 50px;
}
body.home #greeting .textBox {
  width: calc(100% - 250px);
  padding-right: 3em;
  box-sizing: border-box;
}
.wrap_animCircle .wrap {
  position: absolute;
  width: 100%;
  height: 300px;
  top: 0;
  left: 0;
  z-index: 0;
  padding: 0% 0 50%;
  overflow: hidden;
  z-index: -1;
}
.wrap_animCircle .item {
  position: absolute;
  top: 30%;
  left: 50%;
  transition: all 0.2s;
  mix-blend-mode: multiply;
}
.wrap_animCircle .interior {
  transform: translate(-50%, -50%);
  background: url("../img/stripe.png") repeat;
  opacity: .08;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.wrap_animCircle .interior-01 {
  width: 300px;
  height: 300px;
}
.wrap_animCircle .interior-02 {
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 768px) {
  body.home #greeting .width1200 {
    display: block;
  }
  body.home #greeting .photo {
    width: auto;
    padding-top: 0em;
    text-align: center;
  }
  body.home #greeting .photo img {
    max-width: 70%;
    display: block;
    margin: auto;
  }
  body.home #greeting .textBox {
    width: 100%;
    padding: 2em 0;
  }
}
/*about
----------------------------------------------------------------------*/
body.home #about {
  margin-top: 50px;
}
body.home #about .width1200 {
  position: relative;
}
body.home #about .width1200:before {
  content: "";
  z-index: -1;
  background: url("/wp-content/uploads/2025/05/minami.jpg") no-repeat right top 3em;
  background-size: 100% auto;
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
body.home #about .about_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body.home #about .about_header .titleBox {
  width: 40%;
  padding-top: 50px;
}
body.home #about .about_header .btnBox {}
body.home ul.about_infor {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  column-gap: 30px;
  row-gap: 30px;
  align-items: stretch;
  margin-top: 250px;
}
body.home ul.about_infor li {
  box-shadow: 0px 0px 20px #00000029;
  border-radius: 30px;
  padding: 30px;
  position: relative;
  background: var(--color-light);
}
body.home ul.about_infor li .title {
  background: url("../img/fukidashi_left.svg") no-repeat left bottom, url("../img/fukidashi_right.svg") no-repeat right bottom;
  padding: 0 35px;
  font-size: 2.4rem;
  font-weight: 600;
  width: 12em;
  margin: auto;
  text-align: center;
}
body.home ul.about_infor li a {
  color: var(--color-dark);
}
body.home ul.about_infor li .photo {
  margin: 1.5em 0;
}
body.home ul.about_infor li .photo img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}
body.home ul.about_infor li .text {}
body.home ul.about_infor li .btn {
  width: 95px;
  height: 95px;
  position: absolute;
  right: -35px;
  bottom: -35px;
}
body.home ul.about_infor li .btn img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1025px) {
  body.home ul.about_infor li:hover {
    box-shadow: 0px 0px 3px #00000029;
  }
  body.home ul.about_infor li:hover .btn {
    right: -25px;
  }
}
@media screen and (max-width: 1024px) {
  body.home ul.about_infor {
    margin-top: 160px;
  }
  body.home #about {
    margin-top: 0px;
  }
  body.home #about .width1200:before {
    background: url("../img/aboutus_photo.jpg") no-repeat right top 2em;
    background-size: 100% auto;
  }
  body.home ul.about_infor li .btn {
    right: 0;
    bottom: -50px;
  }
}
@media screen and (max-width: 768px) {
  body.home ul.about_infor {
    grid-template-columns: 1fr;
    margin-top: 120px;
  }
  body.home ul.about_infor li .photo {
    margin: 1.5em 0;
    text-align: center;
  }
  body.home ul.about_infor li .photo img {
    max-width: 60%;
    display: block;
    margin: auto;
  }
}
@media screen and (max-width: 599px) {
  body.home #about .width1200 {
    padding-bottom: 150px;
  }
  body.home #about .width1200:before {
    background: url("../img/aboutus_photo.jpg") no-repeat right bottom;
    background-size: 100% auto;
  }
  body.home #about .about_header {
    display: block;
  }
  body.home #about .about_header .titleBox {
    width: 100%;
    padding-top: 0;
  }
  body.home ul.about_infor {
    margin-top: 30px;
  }
}
/*gallery
----------------------------------------------------------------------*/
body.home #gallery {
  margin-top: 90px;
  position: relative;
}
body.home #gallery .btn_viewmore {
  text-align: right;
  margin-top: 50px;
}
body.home #gallery ul li img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home .loopSliderWrap {
  height: 250px;
  overflow: hidden;
  width: 100%;
  position: relative;
}
body.home .loopSlider {
  margin: 0 auto;
  width: 100%;
  height: 250px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
body.home .loopSlider ul {
  height: 250px;
  float: left;
  overflow: hidden;
}
body.home .loopSlider ul li {
  width: 400px;
  height: 250px;
  padding: 10px;
  box-sizing: border-box;
  float: left;
  display: inline;
  overflow: hidden;
}
body.home .loopSliderWrap:after {
  content: "";
  display: none;
  clear: none;
}
/*admission
----------------------------------------------------------------------*/
body.home #admission {
  margin-top: 50px;
}
body.home #admission .width1200 {
  position: relative;
}
body.home #admission .width1200:before {
  content: "";
  z-index: -1;
  background: url("../img/admission_photo.jpg") no-repeat right top 17em;
  background-size: 100% auto;
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
body.home #admission .btn_line a {
  margin-left: auto;
  margin-right: 3em;
}
body.home #admission .text {
  width: 50%;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px #00000029;
  border-radius: 30px;
  padding: 50px;
  position: relative;
  background: var(--color-light);
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  body.home #admission .width1200:before {
    background: url("../img/admission_photo.jpg") no-repeat right top 15em;
    background-size: 100% auto
  }
}
@media screen and (max-width: 768px) {
  body.home #admission .width1200:before {
    background: url("../img/admission_photo.jpg") no-repeat right top 13em;
    background-size: 100% auto
  }
  body.home #admission .text {
    width: 90%;
  }
  body.home #admission .btn_line a {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  body.home #admission .text {
    margin-top: 50px;
    padding: 30px;
  }
}
/*menuBanner
----------------------------------------------------------------------*/
body.home #menuBanner {
  margin-top: 50px;
  position: relative;
  padding: 60px 0;
}
body.home #menuBanner:after {
  content: "";
  background: url("../img/stripe.png") repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .08;
  z-index: -1;
}
body.home #menuBanner ul.banner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  column-gap: 40px;
  row-gap: 40px;
  align-items: stretch;
}
body.home #menuBanner ul.banner li {
  background: var(--color-light);
  position: relative;
  border-radius: 50px;
}
body.home #menuBanner ul.banner li:before {
  content: "";
  padding-top: 100%;
  display: block;
}
body.home #menuBanner ul.banner li a img {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 auto 1.5em;
}
body.home #menuBanner ul.banner li a {
  color: var(--color-dark);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  display: block;
}
@media screen and (min-width: 600px) {
  body.home #menuBanner ul.banner li a span {
    overflow: hidden;
    color: transparent;
    text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
    transition: text-shadow 0.3s;
    display: block;
    text-decoration: none;
    font-size: 2.4rem;
  }
  body.home #menuBanner ul.banner li a:hover span {
    text-shadow: 0 0 0 var(--color-sub), 0 1.5em 0 var(--color-sub);
  }
}
@media screen and (max-width: 768px) {
  body.home #menuBanner ul.banner {
    column-gap: 20px;
    row-gap: 20px;
  }
  body.home #menuBanner ul.banner li a span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  body.home #menuBanner ul.banner {
    grid-template-columns: 1fr;
    column-gap: 20px;
    row-gap: 20px;
  }
  body.home #menuBanner ul.banner li {
    box-shadow: 0px 0px 20px #00000029;
    position: static;
  }
  body.home #menuBanner ul.banner li:before {
    display: none;
  }
  body.home #menuBanner ul.banner li a {
    position: static;
    text-align: center;
    transform: none;
    padding: 2em 1em;
  }
  body.home #menuBanner ul.banner li a img {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: auto;
    margin: 0;
  }
  body.home #menuBanner ul.banner li a span {
    display: inline;
    padding-left: 1em;
  }
}
/*news
----------------------------------------------------------------------*/
body.home section#news {
  padding: 60px 0;
}
body.home section#news .width1200 {
  background: url("../img/bg_circle_right.png") no-repeat right top;
  background-size: auto 90%;
}
#news .news_header {
  display: flex;
  flex-wrap: wrap;
}
#news .news_header .btnBox {
  padding: 1em 0 0 3em;
}
body.home section#news .wrap_list li {
  display: table;
  width: 100%;
  padding: 1em 0;
}
body.home section#news .wrap_list li .date, body.home section#news .wrap_list li .category, body.home section#news .wrap_list li .title {
  display: table-cell;
  vertical-align: top;
}
body.home section#news .wrap_list li .date {
  width: 8em;
  text-align: center;
  background: var(--bg-light);
  padding: .2em 1em;
  border-radius: 30px;
  box-sizing: border-box;
}
body.home section#news .wrap_list li .category {
  width: 12em;
  padding: 0 1em;
}
body.home section#news .wrap_list li .category span {
  display: block;
  border: 1px solid var(--color-sub2);
  padding: .2em 1em;
  border-radius: 30px;
  text-align: center;
  font-size: 1.3rem;
}
body.home section#news .wrap_list li .title {
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  body.home section#news .wrap_list li {
    display: flex;
    flex-wrap: wrap;
    padding: 1em 0;
    border-bottom: 1px solid var(--color-sub);
  }
  body.home section#news .wrap_list li:last-child {
    border-bottom: 0;
  }
  body.home section#news .wrap_list li .date, body.home section#news .wrap_list li .category, body.home section#news .wrap_list li .title {
    display: block;
    margin-bottom: 0;
  }
  body.home section#news .wrap_list li .date {
    width: auto;
    padding-right: 1em;
  }
  body.home section#news .wrap_list li .category {
    width: auto;
  }
  body.home section#news .wrap_list li .category span {
    padding: .1em 1em;
    font-size: 1.2rem;
  }
  body.home section#news .wrap_list li .title {
    padding: .4em 0 0;
    width: 100%;
  }
  body.home section#news .btns_wrap {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 599px) {
  #news .news_header {
    display: block;
  }
  #news .news_header .titleBox {
    margin-bottom: 1em;
  }
  #news .news_header .btnBox {
    padding: 0;
    text-align: right;
    margin-bottom: 2em;
  }
}
/*info
----------------------------------------------------------------------*/
body.home section#info {
  padding: 60px 0;
  background: #FBF9F9;
}
body.home section#info .width1200 {
  display: flex;
  flex-wrap: wrap;
}
body.home section#info .inforbox {
  width: 50%;
  padding-right: 30px;
  box-sizing: border-box;
}
body.home section#info #map {
  width: 50%;
  height: 500px;
}
body.home section#info #map iframe {
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  body.home section#info .inforbox {
    display: block;
  }
  body.home section#info .inforbox .infor {
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  body.home section#info .inforbox th {
    width: 8em;
  }
}
@media screen and (max-width: 768px) {
  body.home section#info .width1200 {
    display: block;
  }
  body.home section#info .inforbox {
    width: 100%;
    padding: 0 0 10px;
  }
  body.home section#info #map {
    width: 100%;
    height: 400px;
  }
}
/*instagram
----------------------------------------------------------------------*/
body.home #instagram {
  margin: 60px 0;
}
body.home #instagram .instagram_header {
  display: flex;
  flex-wrap: wrap;
}
body.home #instagram .instagram_header .btnBox {
  padding: 1em 0 0 3em;
}
body.home #instagram .feed { /*フィード埋め込み後は削除してしまってください*/
  border: 1px solid #000;
  padding: 100px;
}
@media screen and (max-width: 599px) {
  body.home #instagram .instagram_header {
    display: block;
  }
  body.home #instagram .instagram_header .titleBox {
    margin-bottom: 1em;
  }
  body.home #instagram .instagram_header .btnBox {
    padding: 0;
    text-align: right;
    margin-bottom: 2em;
  }
}
/*aboutus
************************************************************************************/
body.aboutus #educational-policy li {
  padding: 1em;
  border: 1px solid #ededed;
}
body.aboutus #educational-policy li .title {
  background: url("../img/stripe_gry.png") repeat;
  padding: 1em;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  height: 5em;
  box-sizing: border-box;
  border-radius: 15px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  body.aboutus #educational-policy li .title {
    height: auto;
  }
}
body.aboutus #characteristics #forest {
  margin-top: 40px;
}
body.aboutus #characteristics #forest .flex {
  align-items: flex-end;
}
body.aboutus #characteristics #forest .flex .photo {
  width: 500px;
  text-align: center;
}
body.aboutus #characteristics #forest .flex .photo img {
  width: 100%;
  height: auto;
  border-radius: 50px 0 50px;
}
body.aboutus #characteristics #forest .flex .text {
  padding-left: 3em;
  width: calc(100% - 500px);
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  body.aboutus #characteristics #forest .flex .photo {
    width: 400px;
  }
  body.aboutus #characteristics #forest .flex .text {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 768px) {
  body.aboutus #characteristics #forest .flex {
    display: block;
  }
  body.aboutus #characteristics #forest .flex .photo, body.aboutus #characteristics #forest .flex .text {
    width: auto;
  }
  body.aboutus #characteristics #forest .flex .text {
    padding: 1.5em 0 0;
  }
}
body.aboutus #characteristics #important {
  margin-top: 40px;
}
body.aboutus #characteristics #important dl {
  display: flex;
  flex-wrap: wrap;
}
body.aboutus #characteristics #important dl dt {
  width: 200px;
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 1em;
}
body.aboutus #characteristics #important dl dt .no {
  display: block;
  color: var(--color-point);
  font-size: 1.3rem;
  font-weight: 400;
}
body.aboutus #characteristics #important dl dd {
  width: calc(100% - 210px);
  padding-left: 1em;
  border-left: 1px solid var(--color-point2);
  box-sizing: border-box;
  margin-bottom: 1em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 599px) {
  body.aboutus #characteristics #important dl {
    display: block;
  }
  body.aboutus #characteristics #important dl dt {
    width: auto;
    margin-bottom: 0;
    padding: .5em 0 0;
    border-top: 1px solid var(--color-point2);
  }
  body.aboutus #characteristics #important dl dd {
    width: auto;
    padding: .5em 0 0;
    border: 0;
    border-top: 1px solid var(--color-point2);
    margin-bottom: 2em;
    display: block;
  }
  body.aboutus #characteristics #important dl dt .no {
    display: inline-block;
    padding-right: 1em;
    vertical-align: middle;
  }
}
body.aboutus #others ul.photos li .image img {
  max-width: 100%;
  height: auto;
  border-radius: 40px;
}
body.aboutus #others ul.photos li .title {
  margin-top: 1em;
  text-align: center;
}
/*gallery
************************************************************************************/
body.gallery ul.galleryList li {
  border: 1px solid var(--color-point2);
  padding: 15px;
  border-radius: 30px 0 30px;
  background: var(--color-light);
}
body.gallery ul.galleryList li .photo {
  position: relative;
  overflow: hidden;
  width: 100%;
}
body.gallery ul.galleryList li .photo:before {
  padding-top: 60%;
  content: "";
  display: block;
}
body.gallery ul.galleryList li .photo img {
  height: 100%;
  width: auto;
  border-radius: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.gallery ul.galleryList li .title {
  margin: 1em 0;
  font-size: 1.9rem;
  font-weight: 600;
  background: var(--color-point2);
  padding: 15px;
  border-radius: 30px 0 30px;
  color: var(--color-light);
}
body.gallery ul.galleryList li .txt {}
@media screen and (max-width: 768px) {
  body.gallery ul.galleryList.grid3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 599px) {
  body.gallery ul.galleryList.grid3 {
    grid-template-columns: 1fr;
  }
}
/*entering
************************************************************************************/
body.entering .first_view {
  position: static;
  margin: 50px auto;
  height: auto; /*20250523 700px修正*/
}
body.entering .first_view .image {
  width: auto;
  height: 800px; /*20250523 700px修正*/
  position: static;
  top: 0;
  right: 0;
  z-index: 1;
  margin-bottom: 60px;
}
body.entering .first_view .image img {
  border-radius: 50px 0 0 50px;
  width: auto;
  height: 100%;
  margin-left: auto; /*20250523修正*/
}
body.entering .first_view .width1200 {
  position: static; /*20250523修正*/
  z-index: 20;
  top: 15%;
  left: 50%;
  transform: translateX(0%); /*20250523-50%修正*/
}
body.entering .first_view .width1200 .message {
  background-color: rgba(255, 255, 255, 0.75);
  padding: 30px;
  border-radius: 0 40px 40px 0;
  width: 70%;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  body.entering .first_view {
    position: static;
    /*height: auto;20250523修正*/
    /*background: url("/wp-content/uploads/2025/05/21-yuugi-2.jpg") no-repeat center center;
    background-size: cover;20250523修正*/
  }
  /*body.entering .first_view .image {
    display: none;
  }20250523修正*/
  body.entering .first_view .width1200 {
    position: static;
    transform: none;
  }
  body.entering .first_view .width1200 .message {
    width: 90%;
    border-radius: 40px;
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  body.entering .first_view .image {
    height: 300px; /*20250523 600px*/
  }
}
.contactWrap {
  margin-top: 30px;
}
.contactBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--contactbox-color);
  width: 90%;
  max-width: 1000px;
  text-align: center;
  margin: auto;
}
.contactBox_phone {
  border: 1px solid var(--color-point2);
  background-color: rgba(255, 255, 255, 0.75);
  padding: 2em;
  box-sizing: border-box;
  width: 48%;
  border-radius: 30px;
}
.contactBox_title {
  font-weight: 600;
  font-size: 1.25em;
  margin-bottom: 1em;
}
.contactBox_telNo {
  font-size: 3.6rem;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  color: var(--color-point2);
}
#contactBoxt_telCmt {
  margin-top: .5em;
}
.contactBox_form {
  border: 1px solid var(--color-point2);
  background-color: rgba(255, 255, 255, 0.75);
  padding: 2em;
  box-sizing: border-box;
  width: 48%;
  border-radius: 30px;
}
.contactBox_form_btn a {
  background: url("../img/icon_send.svg") no-repeat right 1em top 1.2em var(--color-point2);
  background-size: 25px auto;
  color: var(--color-light);
  text-decoration: none;
  display: block;
  padding: 1.2em 5em 1.2em 2em;
}
.contactBox_telNo a {
  color: #FFF;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .contactBox {
    display: block;
  }
  .contactBox_phone, .contactBox_form {
    width: 98%;
    margin-bottom: 10px;
  }
}
body.entering .ichiji_wrap {
  border: 1px solid var(--color-point2);
  padding: 25px;
  margin: 40px 0;
  border-radius: 40px;
}
body.entering .ichiji_wrap .title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-point2);
}
body.entering #pre-school .flex .photo {
  width: 500px;
  text-align: center;
}
body.entering #pre-school .flex .photo img {
  width: 100%;
  height: auto;
  border-radius: 50px 0 50px;
}
body.entering #pre-school .flex .text {
  padding-left: 3em;
  padding-right: 3em; /*250711追加*/
  width: calc(100% - 500px);
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  body.entering #pre-school .flex .photo {
    width: 400px;
  }
  body.entering #pre-school .flex .text {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 768px) {
  body.entering #pre-school .flex {
    display: block;
  }
  body.entering #pre-school .flex .photo, body.entering #pre-school .flex .text {
    width: auto;
  }
  body.entering #pre-school .flex .text {
    padding: 1.5em 0 0;
  }
}
/*guardian
************************************************************************************/
body.parent-page {}
body.parent-page #lunch .lunchWrap {
  position: relative;
}
body.parent-page #lunch .lunchWrap:before {
  padding-top: 50%;
  content: "";
  display: block;
}
body.parent-page #lunch .lunchWrap .image {
  width: 60%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
body.parent-page #lunch .lunchWrap .image img {
  width: 100%;
  height: 100%;
  border-radius: 40px 0 40px;
  object-fit: contain;
}
body.parent-page #lunch .lunchWrap .title {
  position: absolute;
  bottom: 5%;
  right: 0;
  width: 50%;
  background: #FFF;
  border-radius: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  padding: 1em;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  body.parent-page #lunch .lunchWrap {
    position: static;
  }
  body.parent-page #lunch .lunchWrap:before {
    display: none;
  }
  body.parent-page #lunch .lunchWrap .image {
    width: 100%;
    height: auto;
    position: static;
  }
  body.parent-page #lunch .lunchWrap .image img {
    width: 100%;
    height: auto;
    border-radius: 40px 0 40px;
    object-fit: none;
  }
  body.parent-page #lunch .lunchWrap .title {
    position: static;
    width: 100%;
    font-size: 1.6rem;
  }
}
body.parent-page .wrap_list li {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 1em 0;
  border-bottom: 1px solid var(--color-sub);
}
body.parent-page .wrap_list li .date {
  width: 8em;
  text-align: center;
  background: var(--bg-light);
  padding: .2em 1em;
  border-radius: 30px;
  box-sizing: border-box;
}
body.parent-page .wrap_list li .category {
  width: 12em;
  padding: 0 1em;
}
body.parent-page .wrap_list li .category span {
  display: block;
  border: 1px solid var(--color-sub2);
  padding: .2em 1em;
  border-radius: 30px;
  text-align: center;
  font-size: 1.3rem;
}
body.parent-page .wrap_list li .title {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.parent-page .wrap_list li {
    display: flex;
    flex-wrap: wrap;
    padding: 1em 0;
    border-bottom: 1px solid var(--color-sub);
  }
  body.parent-page .wrap_list li:last-child {
    border-bottom: 0;
  }
  body.parent-page .wrap_list li .date, body.parent-page .wrap_list li .category, body.parent-page .wrap_list li .title {
    display: block;
    margin-bottom: 0;
  }
  body.parent-page .wrap_list li .date {
    width: auto;
    padding-right: 1em;
  }
  body.parent-page .wrap_list li .category {
    width: auto;
  }
  body.parent-page .wrap_list li .category span {
    padding: .1em 1em;
    font-size: 1.2rem;
  }
  body.parent-page .wrap_list li .title {
    padding: .4em 0 0;
    width: 100%;
  }
  body.parent-page #archive .grid2 {
    grid-template-columns: 1fr;
  }
}
/*recruit
************************************************************************************/
body.recruit .menusWrap {
  border-bottom: 1px solid var(--color-point2);
  margin-bottom: 30px;
}
body.recruit .menusWrap ul.menus#tab {
  display: table;
  border-spacing: 10px 0;
}
body.recruit .menusWrap ul.menus#tab li {
  display: table-cell;
  vertical-align: middle;
}
body.recruit .menusWrap ul.menus#tab li span {
  background: #FFF;
  border: 1px solid var(--color-point2);
  display: block;
  width: 15em;
  text-align: center;
  color: var(--color-light);
  text-decoration: none;
  padding: 1em 3em;
  border-radius: 20px 0 0 0;
  color: var(--color-point2);
  cursor: pointer;
  border-bottom: 0;
}
body.recruit .menusWrap ul.menus#tab li.select span {
  background: var(--color-point2);
  color: var(--color-light);
}
.content_wrap.disnon {
  display: none;
}
body.recruit .first_view {
  position: static; /*20250523修正*/
  margin: 50px auto;
  height: auto; /*20250523 700px*/
}
body.recruit .first_view .image {
  width: auto;
  height: 800px; /*20250523 700px*/
  position: static; /*20250523修正*/
  top: 0;
  right: 0;
  z-index: 1;
  margin-bottom: 60px;
}
body.recruit .first_view .image img {
  border-radius: 50px 0 0 50px;
  width: auto;
  height: 100%;
  margin-left: auto; /*20250523修正*/
}
body.recruit .first_view .width1200 {
  position: static; /*20250523修正*/
  z-index: 20;
  top: 15%;
  left: 50%;
  transform: translateX(0%); /*20250523 -50%修正*/
}
body.recruit .first_view .width1200 .message {
  background-color: rgba(255, 255, 255, 0.75);
  padding: 30px;
  border-radius: 0 40px 40px 0;
  width: 70%;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  body.recruit .first_view {
    position: static;
    /*height: auto;20250523*/
    /*background: url("/wp-content/uploads/2025/05/21-tosyositu.jpg") no-repeat center center;
    background-size: cover;20250523*/
  } /*../img/recruit_ph.jpg*/
  /*body.recruit .first_view .image {
    display: none;20250523修正
  }*/
  body.recruit .first_view .width1200 {
    position: static;
    transform: none;
  }
  body.recruit .first_view .width1200 .message {
    width: 90%;
    border-radius: 40px;
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  body.recruit .first_view .image {
    height: 300px; /*20250523 600px*/
  }
}
body.recruit ul li.recruit-box {
  border: 1px solid var(--color-point2);
  background: var(--color-light);
  margin-bottom: 10px;
  padding: 40px;
  border-radius: 30px;
  position: relative;
}
body.recruit ul li.recruit-box .recruit-img {
  width: 35%;
}
body.recruit ul li.recruit-box .recruit-img img {
  border-radius: 30px 0 0 0;
  width: 100%;
  height: auto;
}
body.recruit ul li.recruit-box .recruit-content {
  width: 65%;
  padding-left: 40px;
  box-sizing: border-box;
}
body.recruit ul li.recruit-box .recruit-content .time-cat.flex {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1em;
}
body.recruit ul li.recruit-box .recruit-content .time-cat.flex .cat {
  background: var(--color-point);
  padding: 3px 1em;
  color: var(--color-light);
  border-radius: 3px;
  margin-left: 2em;
margin-right: 1em;
}
body.recruit ul li.recruit-box .recruit-content h3 {
  font-weight: 600;
  font-size: 2.1rem;
  border-bottom: 1px solid var(--color-point2);
  padding: 0 0 .7em 0;
  margin-bottom: 1em;
  color: var(--color-point2);
}
body.recruit ul li.recruit-box .recruit-content .recruit-sub.flex {
  justify-content: flex-start;
}
body.recruit ul li.recruit-box .recruit-content .recruit-sub li {
  margin: 0 2em .5em 0;
}
body.recruit ul li.recruit-box .recruit-content .recruit-sub li span {
  display: inline-block;
  background: var(--bg-light);
  padding: 0 1em;
  margin-right: .5em;
  border-radius: 3px;
  color: var(--color-dark);
}
body.recruit ul li.recruit-box .recruit-content .recruit-feed-intro {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  body.recruit ul li.recruit-box {
    padding: 20px;
  }
  body.recruit ul li.recruit-box .recruit-content .time-cat.flex .cat {
    margin-left: 1em;
  }
}
@media screen and (max-width: 599px) {
  body.recruit .menusWrap ul.menus#tab li span {
    display: inline-block;
    width: auto;
    padding: 1em;
  }
  body.recruit ul li.recruit-box.flex {
    display: block;
  }
  body.recruit ul li.recruit-box .recruit-img {
    text-align: center;
    width: auto;
    margin-bottom: 30px;
  }
  body.recruit ul li.recruit-box .recruit-img img {
    width: 70%;
    height: auto;
    display: block;
    margin: auto;
  }
  body.recruit ul li.recruit-box .recruit-content {
    width: auto;
    padding: 0 0 20px;
  }
  body.recruit ul li.recruit-box .recruit-content .recruit-sub li {
    margin: 0 1em .5em 0;
    font-size: 1.3rem;
  }
  body.recruit ul li.recruit-box .recruit-content .recruit-sub li span {
    padding: 0 .5em;
    font-size: 1.2rem;
  }
  body.recruit ul li.recruit-box .recruit-content .recruit-feed-intro {
    margin-top: 1em;
  }
}
/*************************************************************************************/
/*************************************************************************************/
/*************************************************************************************/
/*************************************************************************************/
/*parts
************************************************************************************/
/*title
----------------------------------------------------------------------*/
.pagetitle {
  position: relative;
  width: 98%;
  margin: 0 auto;
}
.pagetitle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pagetitle .titlebox {
  position: absolute;
  bottom: 1%;
  left: 1%;
}
.pagetitle .titlebox h1 {
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 4.6rem;
}
.pagetitle .titlebox .eng {
  font-size: 1.8rem;
}
/**/
.headlineBox {
  margin-bottom: 3em;
}
.headlineBox .eng_title {
  font-size: 6rem;
  margin: 0;
  line-height: 1;
  font-weight: 600;
}
.headlineBox h1.jp_title {
  /* font-size: 1.8rem; */
  margin: 1em 0 0;
  font-weight: 600;
  font-size: 6rem;
  margin: 0;
  line-height: 2;
  font-weight: 600;
}
.lv_h2 {
  background: url("../img/stripe.png") repeat #454545;
  color: var(--color-light);
  font-size: 2.4rem;
  padding: .4em 1em;
  margin-bottom: 1em;
  font-weight: 600;
}
.lv_h3 {
  position: relative;
  font-size: 2.4rem;
  margin-bottom: 1em;
  padding: 0 0 0 60px;
  font-weight: 600;
}
.lv_h3:before {
  content: "";
  background: #000;
  width: 50px;
  height: 1px;
  position: absolute;
  top: .8em;
  left: 0;
  font-size: 2.4rem;
}
.catch_copy {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
  color: var(--color-point2);
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    margin-bottom: 50px;
  }
  .pagetitle .titlebox h1 {
    font-size: 3.6rem;
  }
  .pagetitle .titlebox .eng {
    font-size: 1.4rem;
  }
  .headlineBox .eng_title {
    font-size: 4rem;
  }
  .headlineBox h1.jp_title {
    font-size: 1.4rem;
  }
  .lv_h2 {
    font-size: 2.1rem;
  }
  .lv_h3 {
    font-size: 2.1rem;
  }
  .catch_copy {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 768px) {
  .pagetitle .titlebox {
    position: absolute;
    bottom: -5%;
    left: 0;
    width: 90%;
    background: #FFF;
    border-radius: 0 40px 0 0;
  }
}
/*JS
----------------------------------------------------------------------*/
.accordion_title {
  position: relative;
  cursor: pointer;
}
.accordion_title:after {
  content: "＋";
  font-weight: normal;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accordion_title.active:after {
  content: "－";
}
.accordion_content {
  padding: 2em 0 0;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .accordion_title {
    padding-right: 1.5em;
  }
}
/*btn
----------------------------------------------------------------------*/
.btn_line a {
  border: 1px solid var(--color-dark);
  background: url("../img/ar_black_small.svg") no-repeat center right 2.5em var(--color-light);
  line-height: 4em;
  padding: 0 4em 0 2em;
  display: block;
  width: 360px;
  box-sizing: border-box;
  text-decoration: none;
  border-radius: 2em;
  color: var(--color-dark);
}
.btn_viewmore a {
  font-weight: 700;
  background: url("../img/ar_black_middle.svg") no-repeat center right 7px;
  border: 1px solid var(--color-dark);
  border-left: 0;
  border-right: 0;
  padding: .7em 4em .7em 0em;
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--color-dark);
}
.entry-btn {
  text-align: center;
}
.entry-btn a {
  display: inline-block;
  font-size: 1.7rem;
  background: var(--color-point2);
  color: var(--color-light);
  padding: 1em 3em;
  border: 1px solid var(--color-point2);
  border-radius: 40px;
}
.entry-btn a:hover {
  color: var(--color-point2);
}
/*table
----------------------------------------------------------------------*/
table.table_line {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  border-top: 1px solid #000;
  margin: 30px auto 50px;
}
table.table_line th {
  font-weight: bold;
  padding: 1em;
  border: 0;
  border-bottom: 1px solid #000;
  text-align: left;
  background: none;
  color: #000;
}
table.table_line td {
  padding: 1em;
  border: 0;
  border-bottom: 1px solid #000;
  background: none;
}
@media screen and (min-width: 1025px) {
  .btn_line a, .btn_viewmore a, .hover-anim {
    transition: all .3s ease-in-out;
  }
  .btn_line a:hover {
    border: 1px solid var(--color-dark);
    background: url("../img/ar_black_small.svg") no-repeat center right 2em var(--color-light);
  }
  .btn_viewmore a:hover {
    background: url("../img/ar_black_middle.svg") no-repeat center right 0;
  }
}
/*layout & text
----------------------------------------------------------------------*/
.gryBg, .gryBgRight {
  position: relative;
}
.gryBg:before {
  content: "";
  width: 95%;
  height: 98%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 50px 50px 0;
  background: url("../img/stripe_gry.png") repeat;
}
.gryBgRight:before {
  content: "";
  width: 95%;
  height: 98%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 50px 0 0 50px;
  background: url("../img/stripe_gry.png") repeat;
}
.gryBg.flat:before, .gryBgRight.flat:before {
  background: #f7f7f7;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  column-gap: 20px;
  row-gap: 20px;
  align-items: stretch;
}
.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  column-gap: 20px;
  row-gap: 20px;
  align-items: stretch;
}
.grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  column-gap: 20px;
  row-gap: 20px;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .grid4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .grid3 {
    grid-template-columns: 1fr;
  }
}
.text {
  padding: 2em 0;
}
.text p {
  padding-bottom: 1em;
  margin: 0;
}
.text p:last-child {
  padding-bottom: 0;
}
.textCenter {
  text-align: center;
}
.textLight {
  text-align: right;
}
.textLeft {
  text-align: left;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 1px;
  overflow: hidden;
}
* html .clearfix {
  height: 1em;
}
.clearfix {
  display: block;
}
*:first-child + html .clearfix {
  zoom: 1;
}
/**/
.sizeLarge {
  font-size: 2.1rem;
}
.sizeMedium {
  font-size: 1.8rem;
}
.sizeSmall {
  font-size: 1.3rem;
}
/*btns
----------------------------------------------------------------------*/
.btn_line {
  text-align: center;
}
.btn_line a {
  border: 1px solid var(--color-dark);
  background: url("../img/ar_black_small.svg") no-repeat center right 2.5em var(--color-light);
  line-height: 4em;
  padding: 0 4em 0 2em;
  display: block;
  width: 360px;
  box-sizing: border-box;
  text-decoration: none;
  border-radius: 2em;
  color: var(--color-dark);
  text-align: left;
}
.btn_viewmore {
  text-align: right;
}
.btn_viewmore a {
  font-weight: 700;
  background: url("../img/ar_black_middle.svg") no-repeat center right 7px;
  border: 1px solid var(--color-dark);
  border-left: 0;
  border-right: 0;
  padding: .7em 4em .7em 0em;
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--color-dark);
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .btn_line a, .btn_viewmore a, .hover-anim {
    transition: all .3s ease-in-out;
  }
  .btn_line a:hover {
    border: 1px solid var(--color-dark);
    background: url("../img/ar_black_small.svg") no-repeat center right 2em var(--color-light);
  }
  .btn_viewmore a:hover {
    background: url("../img/ar_black_middle.svg") no-repeat center right 0;
  }
}
/*form
************************************************************************************/
.required {
  padding: 5px 10px;
  color: #f3f3f3;
  background-color: var(--color-point2);
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 10px;
}
input[type="submit"], input[type="button"] {
  padding: 15px 20px;
  background: var(--color-point2);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 auto;
  border: 1px solid var(--color-point2);
  margin: 0 auto;
}
input[type="submit"]:hover, input[type="button"]:hover {
  color: var(--color-point2);
  background: #fff;
  cursor: pointer;
}
input[type="checkbox"] {
  vertical-align: -8px;
  -webkit-appearance: none;
  position: relative;
  margin-right: 5px;
  border-radius: 3px;
  width: 22px !important;
  height: 22px !important;
  background: #dedede;
  border: none !important;
}
input[type="checkbox"]:checked {
  background: var(--color-point2);
  border: none !important;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  left: 1px;
  top: 16px;
  display: block;
  content: "";
  width: 10px;
  height: 3px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: right center;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
input[type="checkbox"]:checked:after {
  display: block;
  position: absolute;
  left: 9px;
  top: 16px;
  content: "";
  width: 15px;
  height: 3px;
  background: #fff;
  -webkit-transform: rotate(-53deg);
  -webkit-transform-origin: left center;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
input[type="radio"] {
  -webkit-appearance: none;
  position: relative;
  margin-right: 2px;
  border-radius: 50%;
  width: 18px !important;
  height: 18px !important;
  background: #dedede;
  border: none !important;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
input[type="radio"]:checked:before {
  position: absolute;
  left: 3px;
  top: 3px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-point2);
}
.privacy-check {
  text-align: center;
  margin-bottom: 30px;
}
.privacy-check .wpcf7-list-item-label {
  font-size: 1.6rem;
  vertical-align: -3px;
}
.privacy-check .wpcf7-list-item {
  margin-bottom: 10px;
}
.privacy-check a {
  font-size: 1.4rem;
  color: var(--color-point2);
}
.privacy-check a:hover {
  text-decoration: underline;
}
.complete-txt {
  text-align: center;
  margin-bottom: 60px;
}
.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  background-color: #ebf9fe;
  padding: 15px;
  color: var(--color-point2);
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 10px;
  line-height: 1.75em;
}
.privacy-head {
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: solid 3px var(--color-point2);
  margin-top: 40px;
  color: var(--color-point2);
  font-weight: 700;
}
.privacy-head:nth-of-type(1) {
  margin-top: 0;
}
.privacy-head span {
  color: var(--color-point2);
  margin-left: 5px;
  font-weight: 700;
  font-size: 1.4rem;
}
/*archive
************************************************************************************/
.sidebar {
  padding-top: 80px;
}
.sidebar h3 {
  background: var(--color-point2);
}
.archive-info-title a:hover {
  color: var(--color-dark);
}
.archive-info-cat a, .single-info-date-cat span a {
  background-color: var(--color-light);
  color: var(--color-dark);
  border-radius: 30px;
  border: 1px solid var(--color-dark);
}
.archive-info-cat a:hover, .single-info-date-cat span a:hover {
  background-color: var(--color-light);
  color: var(--color-dark);
}
.single-info-title {
  color: var(--color-dark);
}
.file-list a {
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  background: var(--color-light);
}
.file-list a:hover {
  color: var(--color-light);
  background-color: var(--color-dark);
}
.page-nav div span {
  color: var(--color-dark);
}
.side-box li, .widget_archive li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-dark);
}
.side-box li a:hover, .widget_archive li a:hover {
  color: var(--color-point2);
}
.search-txt01 {
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
}
/*WordPress
************************************************************************************/
.file-list a {
  display: block;
  padding: 15px 20px;
  text-align: center;
  color: var(--color-point2);
  background-color: var(--color-light);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.file-list a:hover {
  color: #fff;
  background-color: var(--color-point2);
}
.file-list svg {
  margin-right: 10px;
}
.single-info-article h2 {
  font-size: 22px;
  padding: 10px 15px;
  color: var(--color-dark);
  font-weight: 700;
  background: var(--color-light);
  border-left: solid 5px var(--color-point2);
  margin-bottom: 20px;
}
.single-info-article h3 {
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: var(--color-point2);
  font-weight: 700;
  border-bottom: solid 2px var(--color-point2);
}
.search-icon:hover {
  fill: var(--color-point2);
}
.tablepress {
  padding: 10px 15px;
  font-weight: 700;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  background-color: transparent;
}
.tablepress > * + tbody > * > *, .tablepress > tbody > * ~ * > *, .tablepress > tfoot > * > * {
  border-top: 1px solid #000 !important;
}
table.tablepress {
  border: 0;
  border-bottom: 1px solid #000;
}
.tablepress tbody th, .tablepress tbody td {
  padding: 17px;
  background-color: #ffff;
}
table.tablepress thead th {
  background-color: #000;
  color: #fff;
  text-align: center;
}
#tablepress-7 tbody td.column-2 {
  width: 12%;
  background-color: #fff;
  text-align: center;
}
.tablepress tbody td.column-1, .tablepress tbody th.column-1 {
  width: 20%;
  font-weight: 700;
  color: #000;
  background-color: #fff;
	text-align: center;
}
table.tablepress thead th {
    border-right: 1px solid #ffffff;
}
#tablepress-9-description {
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  background-color: #f1f1f1;
}
.tablepress-table-description {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #f1f1f1;
}
.table-wrap02 table.tablepress tbody th, .table-wrap02 table.tablepress tbody td {
  width: 20%;
  text-align: center;
}
.table-wrap02 table.tablepress tbody th.column-1 {
  background-color: #fff;
}
.table-wrap02 table.tablepress tbody td {
  border-left: 1px solid #000;
}

span.”cl01” {
  color: #f30808;
}
p.name001 {
  text-align: right;
}
/*20250523修正*/
.sliderWrap .mask {
  display: none;
}

/*20250523-02修正*/
body.home #about .about_header .titleBox {
  width: calc(100% - 250px);
  padding-top: 10vw;
}
body.home #about .width1200::before{
  content: "";
  z-index: -1;
  background: url("/wp-content/uploads/2025/05/home-gaikan.png") no-repeat right top 3em;
  background-size: auto;
  background-size: 100% auto;
  width: 60%;
  height: 100%;
  position: absolute;
  top: -130px;
  right: 0;
}
body.home #about .about_header .titleBox .cmt{
background-color:#fff;	
}

@media screen and (max-width: 768px) {
	body.home #about .width1200::before{
		top: -30vw;
		right: 10px;
		width:55%;
	}
	body.home .titleBox .cmt {
  margin-top: 2em;
  padding-right: 0;
}
  body.home #about {
    margin-top: 10vw;
  }
body.home #about .about_header .titleBox {
  width: 100%;
  padding-top: 10vw;
}
	body.home .titleBox .cmt {
  margin-top: 2em;
  padding-right: 0;
}
}
@media screen and (max-width: 599px) {
  body.home #about .about_header .titleBox {
    width: 100%;
    padding-top: 0;
  }
}


/*20250528修正
１.subheaderのテキスト位置変更
２.H1テキストを小さく
３文章と写真を並列に.
*/

/*１. subheaderのテキスト位置変更*/
.sub-header-title {
    position: relative;
}

.sub-header-title:before {
    content: "";
    position: absolute;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.sub-header-txt {
    color: #333;
    font-weight: 100;
    background-color: #fff;
    width: auto;
    height: auto;
    position: absolute;
    bottom: -70px;
    border-radius: 5px;
    padding: 20px 80px;
}


@media screen and (max-width: 768px) {
	.sub-header-txt {
  color: #333;
  font-weight: 100;
  background-color: #fff;
  width: auto;
  height: auto;
  position: absolute;
  bottom: -14vw;
  border-radius: 5px;
  padding: 20px 50px;
  right: 0;
}
}




/*２. H1を小さく*/
body.home .titleBox h1.jp_title {
	font-size: 3rem;
}
.headlineBox h1.jp_title {
	font-size: 3rem;
}
/*３. 文章と写真を並列に*/
    .about_header {
    width: 80vw;
    margin: 0 auto;
}

body.home #about .about_header .titleBox {
    padding-top: 0;
}

body.home #about .width1200::before {
    display: none;
}

body.home #about .about_header .titleBox {
    width: 100%;
}

body.home section#about .flex {
    align-items: flex-start;
    flex-direction: row-reverse;
    margin-top: 3em;
}

body.home section#about .flex .photo {
    width: 40vw;
    text-align: center;
}

body.home section#about .flex .photo img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

body.home section#about .flex .text {
    padding-right: 3em;
    width: calc(100% - 40vw);
    box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
    body.aboutus #characteristics #forest .flex .photo {
        width: 400px;
    }
    body.aboutus #characteristics #forest .flex .text {
        width: calc(100% - 400px);
    }
}

@media screen and (max-width: 768px) {
    body.home section#about .flex {
        display: block;
    }
    body.home section#about .flex .photo,
    body.home section#about .flex .text {
        width: auto;
    }
    body.home section#about .flex .text {
        padding: 1.5em 0 0;
    }
}


/*入園案内*/

body.entering .flex {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

body.entering .flex {
    position: static;
    z-index: 20;
    top: 15%;
    left: 50%;
    transform: translateX(0%);
}

body.entering .first_view .image {
    margin-left: auto;
}

body.entering .first_view .message {
    max-width: 90%;
}

@media screen and (max-width: 1024px) {
    body.entering .flex .message {
        width: 90%;
        padding: 30px;
        border-radius: 40px;
        margin: auto;
    }
    body.entering .first_view .image {}
}

@media screen and (max-width: 600px) {
    body.entering .first_view .image {
        height: 300px;
        margin-left: auto;
    }
}


/*採用について*/

body.recruit .flex {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

body.recruit .first_view {
    position: static;
    z-index: 20;
    top: 15%;
    left: 50%;
    transform: translateX(0%);
}

body.recruit .first_view .image {
    margin-left: auto;
	height:auto;
}
body.recruit .first_view .image img {
	width: 100%;
}
@media screen and (max-width: 2000px) {
body.recruit .first_view .image {
  margin-left: auto;
  width: 50vw;
}
body.recruit .first_view .width900{
		margin:unset;
	width: auto;
}
body.recruit .first_view .width900 .message{
	width:45vw;
	margin:unset;
}
}
@media screen and (max-width: 1024px) {
	body.recruit .first_view .width900 .message{
        width: 90%;
        padding: 30px;
        border-radius: 40px;
        margin: auto;
    }
 }	
 @media screen and (max-width: 600px) {
       body.recruit .first_view .image {
		   width: 95vw;
		   height: auto;
           margin-left: auto;
        }
    }


/*2025-0703　タイトル（h1）サイズ調整*/
body.home .titleBox h1.jp_title
 {
    font-size: 4rem;
}

body.home .titleBox .eng_title {
    font-size: 2rem;
}

@media screen and (max-width: 768px) {
    body.home .titleBox .eng_title {
        font-size: 2rem;
    }
}

.headlineBox h1.jp_title {
    font-size: 4rem;
}

.headlineBox .eng_title
 {
    font-size: 2rem;
}
p.btn_line01 {
    text-align: center;
    border: 1px solid var(--color-dark);
    line-height: 4em;
    display: block;
    width: 283px;
    border-radius: 2em;
	margin: auto;
}

/*2025-0703　TOPMENU項目調整*/
@media screen and (min-width: 600px) {
  body.home #menuBanner ul.banner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 35rem));
    justify-content: center;
    grid-template-rows: auto;
    column-gap: 40px;
    row-gap: 40px;
    align-items: stretch;
  }
}