@charset "UTF-8";
img {
  width: 100%;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #464646;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 2rem;
}
.wrap {
  position: relative;
  background: #4BB572;
}
.head {
  background: url(../images/bg.png) top center no-repeat;
  background-size: cover;
  text-align: center;
  padding: 0px 0 10px;
}
.head h1 {
  padding: 350px 0 0;
  width: 40%;
  display: block;
  margin: auto;
}
.head h2 {
  margin: 80px auto 60px;
  font-size: 2rem;
  color: #1B783E;
}
.head h2 span {
  font-size: 3rem;
  font-weight: 900;
}
.inner {
  padding: 0 8%;
}
section.shou {
  background: #fff;
  padding-bottom: 200px;
}
.shou-area {
  padding: 140px 0 0;
}
.shou-area h2 {
  width: 27%;
  margin: 0 auto 80px;
}
.shou-box-flex {
  display: flex;
  flex-flow: column;
  gap: 40px;
}
.shou-box {
  border: 8px solid #2B935E;
  background: #E7F5D7;
  border-radius: 30px;
  padding: 50px;
}
.shou-box-img {
  width: 60%;
  margin: auto;
}
.shou-box h3 {
  background: #2B935E;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  display: block;
  width: 20%;
  margin: 50px auto 20px;
  padding: 5px 0;
}
.shou-box-detail {
  width: 50%;
  margin: auto;
}
.shou-box-place {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  margin: 50px auto 0;
  position: relative;
}
.shou-box-place-img {
  position: absolute;
  width: 21%;
  right: -23px;
  top: -140px;
}
.shou-box-place ul {
  display: flex;
  flex-wrap: wrap;
  color: #2B935E;
  justify-content: space-between;
  margin: auto;
}
.shou-box-place ul li {
  width: 48%;
}
section.other {
  padding: 100px 0 30px;
  background: url(../images/footer_bg.png) top center no-repeat;
  background-size: contain;
  margin: -80px auto 0;
}
section.other h2 {
  text-align: center;
  color: #fff;
  padding: 130px 0 0;
  margin: auto;
}
.other-btn-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px auto;
  gap: 20px 0;
}
.other-btn-flex label {
  background: #fff;
  border-radius: 30px;
  width: 32%;
  color: #2B935E;
  text-align: center;
  padding: 10px 0;
}
.popup .shou-box {display: flex;justify-content: space-between;align-items: end;}
.popup .shou-box-img {
  width: 45%;
  margin: 0;
}
.popup .shou-box-place {width: 45%;margin: 0;padding: 20px;}
.popup .shou-box-place-img {
  position: absolute;
  width: 40%;
  right: 0px;
  top: -130px;
}
.popup .shou-box-place ul {flex-flow: column;}
.popup .shou-box-place ul li {
  width: 100%;
  text-align: start;
}


/*popup template design*/
.popup-background{
  /*position size*/
  position: fixed;
  z-index : 100;
  top : 0;
  left : 0;
  height : 100vh;
  width : 100vw;

  /*design*/
  background-color: #000;
  opacity: 0.7;
}
.popup{
  /*position size*/
  --height: 90%;
  --width: 80%;
  z-index : 101;
  position: fixed;
  top : calc(50vh - calc(var(--height) / 2));
  left : calc(50vw - calc(var(--width) / 2));
  height : var(--height);
  width : var(--width);

  /*design*/
  overflow: hidden;
}
.popup > .close-button{
  /*position size*/
  --size: 70px;
  position:absolute;
  top: 17px;
  /*css variables are available in children*/
  right: 20px;
  height : var(--size);
  width : var(--size);

  /*design*/
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #464646;
  font-size: var(--size);
  border-radius: calc(var(--size)/5);
}
/*hide popup*/
.popup-flag{
    display:none;
}
.popup-flag:not(:checked) + .popup-background{
    display:none;
}
.popup-flag:not(:checked) + * + .popup{
    display:none;
}
.foot-logo {
  width: 20%;
  margin: auto;
}
aside {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 0 40px;
}

.head-rbn {
    width: 20%;
    margin: auto;
}



@media screen and (max-width: 850px) {
  .wrap {
  position: relative;
  background: #4BB572;
}
.head {
  background: url(../images/bg.png) top center no-repeat;
  background-size: contain;
  text-align: center;
  padding: 0px 0 10px;
  background-color: #fff;
}
.head h1 {
  padding: 120px 0 0;
  width: 70%;
  display: block;
  margin: auto;
}
.head h2 {
  margin: 30px auto;
  font-size: 1.2rem;
  color: #1B783E;
}
.head h2 span {
  font-size: 1.5rem;
  font-weight: 900;
}
.inner {
  padding: 0 8%;
}
section.shou {
  background: #fff;
  padding-bottom: 80px;
}
.shou-area {
  padding: 50px 0 0;
}
.shou-area h2 {
  width: 50%;
  margin: 0 auto 20px;
}
.shou-box-flex {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.shou-box {
  border: 3px solid #2B935E;
  background: #E7F5D7;
  border-radius: 30px;
  padding: 20px;
}
.shou-box-img {
  width: 100%;
  margin: auto;
}
.shou-box h3 {
  background: #2B935E;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  display: block;
  width: 60%;
  margin: 20px auto 20px;
  padding: 0px 0;
  font-size: 1rem;
}
.shou-box-detail {
  width: 90%;
  margin: auto;
}
.shou-box-place {
  background: #fff;
  border-radius: 30px;
  padding: 90px 20px 20px 10px;
  margin: 60px auto 0;
  position: relative;
}
.shou-box-place-img {
  position: absolute;
  width: 38%;
  right: -13px;
  top: -50px;
}
.shou-box-place ul {
  display: flex;
  flex-wrap: wrap;
  color: #2B935E;
  justify-content: space-between;
  margin: auto;
  flex-flow: column;
}
.shou-box-place ul li {
  width: 100%;
}
section.other {
  padding: 20px 0 10px;
  background: url(../images/footer_bg.png) top center no-repeat;
  background-size: contain;
  margin: -40px auto 0;
}
section.other h2 {
  text-align: center;
  color: #fff;
  padding: 60px 0 0;
  margin: auto;
  font-size: 1.4rem;
}
.other-btn-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px auto;
  gap: 20px 0;
  flex-flow: column;
}
.other-btn-flex label {
  background: #fff;
  border-radius: 30px;
  width: 100%;
  color: #2B935E;
  text-align: center;
  padding: 10px 0;
}
.popup .shou-box {display: flex;justify-content: space-between;align-items: center;flex-flow: column;gap: 20px;}
.popup .shou-box-img {
  width: 100%;
  margin: 0;
}
.popup .shou-box-place {width: 90%;margin: 0;padding: 80px 10px 10px;}
.popup .shou-box-place-img {
  position: absolute;
  width: 38%;
  right: -20px;
  top: -50px;
}
.popup .shou-box-place ul {flex-flow: column;}
.popup .shou-box-place ul li {
  width: 100%;
  text-align: start;
}


/*popup template design*/
.popup-background{
  /*position size*/
  position: fixed;
  z-index : 100;
  top : 0;
  left : 0;
  height : 100vh;
  width : 100vw;

  /*design*/
  background-color: #000;
  opacity: 0.7;
}
.popup{
  /*position size*/
  --height: 90%;
  --width: 80%;
  z-index : 101;
  position: fixed;
  top : calc(50vh - calc(var(--height) / 2));
  left : calc(50vw - calc(var(--width) / 2));
  height : var(--height);
  width : var(--width);

  /*design*/
  overflow: hidden;
}
.popup > .close-button{
  /*position size*/
  --size: 40px;
  position:absolute;
  top: 0px;
  /*css variables are available in children*/
  right: 0px;
  height : var(--size);
  width : var(--size);

  /*design*/
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #464646;
  font-size: var(--size);
  border-radius: calc(var(--size)/5);
}
/*hide popup*/
.popup-flag{
    display:none;
}
.popup-flag:not(:checked) + .popup-background{
    display:none;
}
.popup-flag:not(:checked) + * + .popup{
    display:none;
}
.foot-logo {
  width: 50%;
  margin: auto;
}
aside {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 0 40px;
}
}