@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap');
/*---------------------- リセット */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}
ul[role="list"], ol[role="list"] {
  list-style: none;
}
body {
  min-height: 100vh;
  line-height: 1.5;
}
h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}
h1, h2, h3, h4 {
  text-wrap: balance;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}
img, picture {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font: inherit;
}
textarea:not([rows]) {
  min-height: 10em;
}
:target {
  scroll-margin-block: 5ex;
}
/*---------------------- フォントサイズ */
/*html {
  font-size: 62.5%;
}*/
@media screen and (orientation: portrait) and (max-width: 320px), screen and (orientation: landscape) and (max-height: 320px) {
  html {
    font-size: 8px;
  }
}
@media screen and (orientation: portrait) and (min-width: 321px) and (max-width: 375px), screen and (orientation: landscape) and (min-height: 321px) and (max-height: 375px) {
  html {
    font-size: 10px;
  }
}
@media screen and (orientation: portrait) and (min-width: 376px) and (max-width: 414px), screen and (orientation: landscape) and (min-height: 376px) and (max-height: 414px) {
  html {
    font-size: 11px;
  }
}
@media screen and (orientation: portrait) and (min-width: 415px) and (max-width: 768px), screen and (orientation: landscape) and (min-height: 415px) and (max-height: 768px) {
  html {
    /*font-size: 12px;*/
    font-size: 12px;
  }
}
@media screen and (orientation: portrait) and (min-width: 769px) and (max-width: 1440px), screen and (orientation: landscape) and (min-height: 769px) and (max-height: 1440px) {
  html {
    /*font-size: 13px;*/
    font-size: 10px;
  }
}
@media screen and (min-width: 1441px) {
  html {
    /*font-size: 13px;*/
    font-size: 10px;
  }
}
/* 画面サイズが1280px以上の時はスマホ用メニューは非表示 
@media screen and (min-width: 1280px) {

*/
@media screen and (min-width: 880px) {
  .sp-menu {
    display: none;
  }
}
/* 以下は前回までの内容 */
html {
  scroll-behavior: smooth;
}
header {}
.main-menu {
  margin: 0 auto;
  display: flex;
}
.sp-menu__box {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  z-index: 90;
  width: 6rem;
  display: block;
  background-image: url("../img/mn_1.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.sp-menu__box span {
  display: block;
  padding-top: calc(252 / 244 * 100%);
  height: 0;
}
#sp-menu__check {
  display: none;
}
/*#sp-menu__check:checked ~ .sp-menu__box span {
  background-image: url("../img/mn_2.png");
  background-size: contain;
  background-repeat: no-repeat;
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}*/
.sp-menu__box.active span {
  background-image: url("../img/mn_2.png");
  background-size: contain;
  background-repeat: no-repeat;
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sp-menu__content {
  display: none;
}
/*#sp-menu__check:checked ~ .sp-menu__content {
  display: block;
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}*/
.sp-menu__content.active {
  display: block;
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.sp-menu__content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #fffdf1;
  transition: all 0.5s;
  padding: 9.5rem 0 0;
}
.main-menu ul {
  list-style: none;
  padding: 0 2rem;
}
.main-menu ul a {
  text-decoration: none;
}
.m_menu {
  margin-bottom: 4rem;
}
.m_menu li {
  margin-bottom: 2rem;
  line-height: 1;
}
.m_menu a {
  background-image: url("../img/arrow_0.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0.8rem auto;
  padding-left: 1.85rem;
  list-style: none;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1.7rem;
}
.sv_menu {}
.sv_menu .a_info {
  margin-bottom: 1.5rem;
}
.sv_menu .a_info a {
  text-align: center;
  margin: auto;
  display: block;
  color: #fff;
  background-image: url("../img/mail.png");
  background-repeat: no-repeat;
  background-color: #66bd79;
  line-height: 1;
  font-size: 1.5rem;
  padding: 1.3rem 0;
  border-radius: 100rem;
  text-decoration: none;
  font-weight: bold;
  background-position: right 1.5rem center;
  background-size: 1.65rem auto;
}
.sv_menu .a_tel {
  display: flex;
  justify-content: center;
}
.sv_menu .a_tel a {
  text-align: center;
  margin: auto;
  color: #6a3f06;
  background-image: url("../img/a_tel.png");
  background-repeat: no-repeat;
  line-height: 1;
  font-size: 1.8rem;
  padding-left: 2.35rem;
  text-decoration: none;
  font-weight: bold;
  background-position: left center;
  background-size: 1.5rem auto;
}
.sp-menu__list {}
.sp-menu__item {}
.sp-menu__link {}
html {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans", Meiryo, sans-serif;
}
.font_rounded, h2, h3, h4, .section_concept, .section_entry .text_area_1, .section_entry .text_area_2 .text_box p, .section_entry .text_area_2 .text_box h5, .section_entry .ma_2 .text_area_1 ul, .section_info .box_l .t1, footer .cpl, .main-menu, .main_vi .cpl_pc, .section_entry .ma_2 .text_area .t_box .a_pdf {
  font-family: "M PLUS Rounded 1c", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans", Meiryo, sans-serif;
}
.font_rounded, h2, h3, h4, .section_concept, .section_entry .text_area_1, .section_entry .text_area_2 .text_box p, .section_entry .text_area_2 .text_box h5, .section_entry .ma_2 .text_area_1 ul, .section_info .box_l .t1, footer .cpl, .main-menu a, .main_vi .cpl_pc, .section_entry .ma_2 .text_area .t_box .a_pdf {
  transform: rotate(0.05deg);
}
/*---------------------- レイアウト */
body {
  background-color: #fffdf1;
  background-image: url("../img/br_1.png"), url("../img/bl_2.png");
  background-repeat: repeat-y, repeat-y;
  background-size: 17.85rem auto, 17.85rem auto;
  background-position: right -50% top, left -50% top;
}
.red {
  color: #ff0000;
}
header {
  margin-bottom: 1.5rem;
}
header .h1_out {
  width: 15rem;
  margin: 0 0 0 2rem;
}
header h1 {
  text-indent: -999px;
  overflow: hidden;
  padding-top: calc(228 / 380 * 100%);
  height: 0;
  position: relative;
}
header h1 a {
  background-image: url("../img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.lpgo_2_out {
  width: 15rem;
  margin: 0 0 0 2rem;
}
.main_vi_out {
  margin: 0 2rem;
  text-align: center;
}
.main_vi {
  background-image: url("../img/main.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: calc(1103 / 1957 * 100%);
  height: 0;
  position: relative;
  display: flex;
  border-radius: 1.2rem;
}
.main_vi p {
  position: absolute;
  bottom: 4.47%;
  left: 4.47%;
  width: 67.91%;
}
.main_vi p span {
  display: block;
  background-image: url("../img/cc.png");
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: calc(124 / 771 * 100%);
  height: 0;
  text-indent: -999px;
  overflow: hidden;
}
.main_vi .a_access_out {
  position: absolute;
  bottom: 4.47%;
  right: 4.47%;
  width: 21.94%;
}
.main_vi .a_access_out #a_access {
  display: block;
  background-image: url("../img/a_access.png");
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: calc(400 / 407 * 100%);
  height: 0;
  text-indent: -999px;
  overflow: hidden;
}
.main_vi_botm {
  padding: 1.3rem 0 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-bottom: 4rem;
}
.main_vi_botm:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.4rem;
  border-radius: 100rem;
  background-color: #66bd79;
}
.main_vi_botm p {
  color: #66bd79;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.main_vi_botm p span {
  display: block;
}
.main_vi_botm #g_access {
  display: block;
  color: #fff;
  background-image: url("../img/a_gmap.png");
  background-repeat: no-repeat;
  background-color: #66bd79;
  line-height: 1;
  font-size: 1.6rem;
  padding: 1rem 4.4rem;
  border-radius: 100rem;
  text-decoration: none;
  font-weight: bold;
  background-position: right 1rem center;
  background-size: 1.5rem;
}
h2 {
  background-image: url("../img/h2.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 1.65rem;
  padding-top: 2.05rem;
  color: #6a3f06;
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
.section_entry h3, .section_info h3 {
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 0.2rem, rgba(233, 247, 236, 1) 0.2rem, rgba(233, 247, 236, 1) 0.6rem);
  font-size: 2.1rem;
  padding: 1.3rem;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  line-height: 1;
  text-shadow: 0.2rem 0 0 #ffffff, 0 0.2rem 0 #ffffff, -0.2rem 0 0 #ffffff, 0 -0.2rem 0 #ffffff;
  /* 文字の影 */
}
section {
  margin-bottom: 4.5rem;
}
.section_concept .text {
  margin: 0 2rem 1rem;
  font-size: 1.6rem;
  font-weight: bold;
}
.section_concept .text_2 {}
.section_concept .box_l {
  width: 26.15rem;
  margin: 0 auto -4rem;
  position: relative;
}
.section_concept .box_l .inu_1 {
  background-image: url("../img/inu_1.png");
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: calc(1000 / 1026 * 100%);
  height: 0;
}
.attention {
  font-size: 1.8rem;
  margin-top: 1rem;
}
.section_concept .box_r {
  color: #6a3f06;
  background-image: url("../img/back_2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 4.5rem 0 2rem;
}
.section_concept .box_r ul {
  padding: 0 2rem;
}
.section_concept .box_r li {
  background-image: url("../img/asiato_2.png");
  background-repeat: no-repeat;
  background-position: left top 0.5rem;
  background-size: 1.45rem auto;
  padding-left: 1.85rem;
  list-style: none;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.7rem;
}
.section_concept .box_r li span {
  background: linear-gradient(transparent 58%, #fff600 0%);
  display: inline;
  padding: 0 0.4rem;
}
.section_info {}
.section_info ul {
  border-top: dotted 0.1rem #65bd78;
  margin: 1.4rem 2rem 0;
  padding: 0;
}
.section_info li {
  padding: 2rem 0;
  border-bottom: dotted 0.1rem #65bd78;
  list-style: none;
}
.section_info li p + p,
.section_info li table + p,
.section_info li table {
  margin-top: 1em;
}
.section_info li strong {
  font-size: 1.6rem;
  font-weight: bold;
  color: #65bd78;
  line-height: 1;
  margin-bottom: 0.6rem;
  display: block;
}
.section_info li .lr_l {
  padding-bottom: 10px;
}
.section_info li .lr_r img {
  display: inline-block;
  border: 1px solid #65bd78;
}
.section_info li a {
  color: #65bd78;
}
.section_info li p {
  font-size: 1.5rem;
}
.section_info li table {
  border-collapse:  collapse;
}
.section_info li th,
.section_info li td {
  border: 1px dotted #65bd78;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 5px 10px;
}
.section_info .box_in_bn {
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  width: 100%;
}
.ma_1, .ma_2, .section_info .box_l {
  margin: 1.4rem 2rem 0;
  border-radius: 1rem;
  border: solid 0.4rem #65bd78;
  overflow: hidden;
}
.section_entry .ma_1 .text_area_1 {
  background-color: #fff;
  text-align: center;
}
.section_entry .ma_1 .text_area_1 p {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 0.4rem 0.2rem;
}
.section_entry .ma_1 .text_area_1 p strong {
  display: block;
}
.section_entry .ma_1 .text_area_1 p span {
  color: #ea1515;
}
.section_entry .ma_1 .text_area_2 {
  background-color: #e2f6e6;
  padding: 0 2rem 1rem;
}
.section_entry .ma_1 .text_area_2:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-radius: 100rem;
  background-image: url("../img/back_3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: calc(72 / 1200 * 100%);
  margin-bottom: 1.5rem;
}
.section_entry .ma_1 .text_area_2 .text_box {}
.section_entry .ma_1 .text_area_2 .text_box {
  background-color: #fff;
  padding: 0 2rem 2rem;
  border-radius: 0.5rem;
}
.section_entry .ma_1 .text_area_2 .text_box h4 {
  text-align: center;
  color: #ff9600;
  font-size: 1.5rem;
  padding: 0.6rem;
  margin: 0 -1rem;
  line-height: 1;
  border-bottom: solid 0.2rem #e2f6e6;
}
.section_entry .ma_1 .text_area_2 .text_box h4 strong {
  color: #ff9600;
  font-size: 2.3rem;
  margin-left: -0.2rem;
}
.section_entry .ma_1 .text_area_2 .text_box p {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 0;
}
.section_entry .ma_1 .text_area_2 .text_box h5 {
  background-color: #ffedd3;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 0.2rem;
  line-height: 1;
  padding: 0.8rem;
}
.section_entry .ma_1 .text_area_2 .text_box ul {
  background-color: #ffedd3;
  font-size: 1.5rem;
  padding: 1rem 1rem 2rem 3rem;
  margin: 0;
}
.section_entry .ma_1 .text_area_2 .text_box li {
  line-height: 1.4;
  margin: 0.5rem 0;
}
.section_entry .ma_1 .text_area_2 .text_box li {
  line-height: 1.4;
  margin: 0.5rem 0;
}
.section_entry .ma_1 .text_area_2 .text_box ul.ul2 {
  list-style-position: inside;
  padding: 1rem 1rem 2rem 1rem;
}
.section_entry .ma_1 .text_area_2 .text_box ul.ul2 li {
  border-bottom: 1px dotted #ffb64f;
  margin: 0.5rem 0 1rem;
}
.section_entry .ma_1 .text_area_2 .text_box ul.ul2 li:last-child {
  border-bottom: none;
  margin: 0.5rem 0;
}
.tb_2_lr {
  padding: 1rem 0 0;
  margin-bottom: 1rem;
}
.tb_2_c {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.tb_2_c img {
  width: 33%;
  border: 2px solid #fff;
  display: block;
}
.tb_2_c h6 {
  font-size: 1.4rem;
  margin: 0;
}
.tb_2_c_t {
  padding-left: 1rem;
  width: 100%;
}
.section_entry .ma_1 .text_area_2 .text_box .tb_2_c p {
  font-size: 1.4rem;
  font-weight: normal;
  padding: 0;
}
.section_entry .ma_1 .text_area_2 .text_box .tb_1_mbtn {
  list-style: none;
  margin: 1rem 0 0.5rem -2rem;
}
.section_entry .ma_1 .text_area_2 .text_box .tb_1_mbtn a {
  display: block;
  background-color: #65bd78;
  border-radius: 100rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 0 0.3rem #65bd78;
  border: dashed 0.1rem #fff;
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  background-image: url("../img/arrow_4.png");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.5rem auto;
  line-height: 1;
  padding: 0.8rem 2rem;
  padding-left: 2.7rem;
  padding-right: 2.7rem;
  margin: auto;
  max-width: 27rem;
}
.section_entry .ma_1 .text_area_2 .text_box_arrow {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem 0.5rem;
}
.section_entry .ma_1 .text_area_2 .text_box_arrow:before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
}
.section_entry .ma_1 .text_area_2 .text_box .tb_3_mvi {
  margin-bottom: 1rem;
}
.section_entry .ma_1 .text_area_2 .text_box .tb_3_mvi img {
  border-radius: 0.5rem;
  width: 100%;
}
.section_entry .ma_1 .text_area_2 .text_box .tb_3_mbtn {}
.section_entry .ma_1 .text_area_2 .text_box .tb_3_mbtn a {
  display: block;
  background-color: #65bd78;
  border-radius: 100rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 0 0.3rem #65bd78;
  border: dashed 0.1rem #fff;
  margin: 0.3rem;
  font-size: 1.5rem;
  background-image: url("../img/arrow_2.png");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 0.85rem auto;
  line-height: 1;
  padding: 0.8rem 0;
}
.section_entry .ma_1 .text_area_3 {
  padding: 1.5rem 2rem;
  background-color: #e2f6e6;
}
.section_entry .ma_1 .text_area_3 .box_l {
  background-image: url("../img/setumei_1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: calc(1108 / 1220 * 100%);
  height: 0;
  text-indent: -999px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.section_entry .ma_1 .text_area_3 .box_r {
  border: solid 0.4rem #65bd78;
  border-radius: 0.5rem;
  overflow: hidden;
}
.section_entry .ma_1 .text_area_3 .box_r:before {
  content: "";
  display: block;
  background-image: url("../img/map_1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: calc(774 / 1188 * 100%);
  height: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}
.section_entry .ma_2 {
  background-color: #fff;
}
.section_entry .ma_2 .text_area h4 {
  background-image: url("../img/asiato.png");
  background-size: 1.45rem auto;
  background-repeat: no-repeat;
  background-position: left center;
  line-height: 1;
  font-size: 1.6rem;
  padding-left: 2.4rem;
}
.section_entry .ma_2 .text_area {
  margin: 1.5rem;
  border-bottom: dotted 0.1rem #cecece;
}
.section_entry .ma_2 .text_area_1 ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.section_entry .ma_2 .text_area_1 li {
  border-radius: 0.5rem;
  font-size: 1.4rem;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  width: 48.36%;
  margin-bottom: 1rem;
  line-height: 1;
}
.section_entry .ma_2 .text_area_1 li .tuki {
  color: #fff;
  margin-bottom: 0.6rem;
}
.section_entry .ma_2 .text_area_1 li .jikan {
  border-radius: 0.5rem;
  padding: 0.9rem 0;
  background-color: #fff;
}
.section_entry .ma_2 .text_area_1 #nitiji_1 {
  background-color: #ff9bbc;
}
.section_entry .ma_2 .text_area_1 #nitiji_2 {
  background-color: #a0d303;
}
.section_entry .ma_2 .text_area_1 #nitiji_3 {
  background-color: #ff973a;
}
.section_entry .ma_2 .text_area_1 #nitiji_4 {
  background-color: #327ce2;
}
.section_entry .ma_2 .text_area_1 #nitiji_1 .jikan {
  color: #ff9bbc;
}
.section_entry .ma_2 .text_area_1 #nitiji_2 .jikan {
  color: #a0d303;
}
.section_entry .ma_2 .text_area_1 #nitiji_3 .jikan {
  color: #ff973a;
}
.section_entry .ma_2 .text_area_1 #nitiji_4 .jikan {
  color: #327ce2;
}
.section_entry .ma_2 .text_area .t_box {
  padding: 1rem 0 1rem 2.4rem;
  font-size: 1.4rem;
}
.section_entry .ma_2 .text_area .t_box p {}
.section_entry .ma_2 .text_area .t_box ul, .section_entry .ma_2 .text_area .t_box ol {
  padding: 0 0 0 2.4rem;
  margin: 0;
}
.section_entry .ma_2 .text_area .t_box h5 {
  margin: 1.5rem 0 0.2rem;
  font-size: 1.4rem;
  font-weight: bold;
}
.section_entry .ma_2 .text_area .t_box li {
  margin-bottom: 0.5rem;
}
.section_entry .ma_2 .text_area .t_box .a_pdf {
  display: block;
  background-color: #65bd78;
  border-radius: 100rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 0 0.3rem #65bd78;
  border: dashed 0.1rem #fff;
  margin: 0.5rem 0 0;
  font-size: 1.4rem;
  background-image: url("../img/arrow_4.png");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.5rem auto;
  line-height: 1;
  padding: 0.8rem 2rem;
  width: fit-content;
}
.section_entry .ma_2 .text_area .t_box .a_eria_blank .a_pdf {
  background-image: url("../img/opn.png");
  background-position: right 1rem center;
  background-size: 2.05rem auto;
  padding: 0.8rem 3.8rem;
  line-height: 1.2;
  margin-top: 2rem;
}
.main_vi .a_access_out #a_access:hover, .section_entry .ma_2 .text_area .t_box .a_pdf:hover, .section_info .box_l a:hover, .facility_info a:hover, .main_vi_botm #g_access:hover, .section_entry .ma_1 .text_area_2 .text_box .tb_1_mbtn a:hover, .section_entry .ma_1 .text_area_2 .text_box .tb_3_mbtn a:hover, footer .tp_btn a:hover, .section_info .box_r a:hover, header h1 a:hover, header ul li a:hover {
  opacity: 0.6;
  transition: 0.8s;
}
.section_entry .ma_2 .text_area:last-child {
  border-bottom: none;
}
.section_access {}
.section_access .box_l {
  margin: 0 2rem 2rem;
}
.section_access h3 {
  background-image: url("../img/asiato.png");
  background-size: 1.45rem auto;
  background-repeat: no-repeat;
  background-position: left center;
  line-height: 1;
  font-size: 1.7rem;
  padding-left: 2.4rem;
  margin: 1.5rem 0 0.6rem;
}
.section_access .box_l p {
  padding-left: 2.4rem;
  font-size: 1.5rem;
}
.section_access .tyui {
  margin: 2rem 0 0;
}
.section_access .tyui:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  border-radius: 100rem;
  background-color: #66bd79;
  margin: 0 0 2rem;
}
.section_access .tyui p {
  padding: 0;
  font-size: 1.2rem;
}
.section_access .tyui p span {
  color: #ea1515;
  font-size: 1.2rem;
}
.section_access .box_r {
  margin: 0 2rem 0;
  border-radius: 1rem;
  border: solid 0.4rem #65bd78;
  aspect-ratio: 1;
  max-width: 100%;
  overflow: hidden;
}
.section_access .box_r iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.section_contact {
  background-image: url("../img/sp_back_2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.section_contact .box_l {
  font-size: 1.5rem;
  padding: 0 2rem;
}
.section_contact .box_l span {
  display: block;
}
.section_contact .box_l .a_mail a {
  display: block;
  background-color: #fba807;
  border-radius: 100rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 0 0.3rem #fba807;
  border: dashed 0.1rem #fff;
  margin: 2rem 0 0;
  font-size: 1.9rem;
  background-image: url("../img/mail.png");
  background-repeat: no-repeat;
  background-position: right 1.8rem center;
  background-size: 2.25rem auto;
  line-height: 1;
  padding: 1.4rem 0;
  font-weight: bold;
}
.section_contact .box_l .a_tel {
  margin-top: 1rem;
}
.section_contact .box_l .a_tel a {
  text-align: center;
  margin: auto;
  color: #6a3f06;
  background-image: url("../img/a_tel.png");
  background-repeat: no-repeat;
  line-height: 1;
  font-size: 2.6rem;
  padding-left: 2.25rem;
  text-decoration: none;
  font-weight: bold;
  background-position: left top 1rem;
  background-size: 1.8rem auto;
}
.section_contact .box_r {
  margin: 1.5rem 3.5rem 0;
}
.section_contact .box_r:before {
  content: "";
  display: block;
  background-image: url("../img/inu_2.png");
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: calc(799 / 831 * 100%);
  height: 0;
}
.section_info .box_l {
  background-color: #fff;
  font-size: 1.5rem;
}
.section_info .box_l:after {
  content: "";
  display: block;
  background-image: url("../img/hito.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding-bottom: calc(386 / 960 * 100%);
  height: 0;
}
.section_info .box_l .t1 {
  text-align: center;
  color: #6a3f06;
  font-weight: bold;
  padding: 2rem 0;
}
.section_info .box_l .t2 {
  margin: 0 1.5rem;
}
.section_info .box_l .t2:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  border-radius: 100rem;
  background-color: #66bd79;
  margin: 0 0 2rem;
}
.section_info .box_l {}
.section_info .box_l a {
  display: block;
  background-color: #65bd78;
  border-radius: 100rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 0 0.3rem #65bd78;
  border: dashed 0.1rem #fff;
  margin: 2rem 1.5rem;
  font-size: 1.9rem;
  background-image: url("../img/opn.png");
  background-repeat: no-repeat;
  background-position: right 1.8rem center;
  background-size: 2.05rem auto;
  line-height: 1;
  padding: 1.4rem 0;
  font-weight: bold;
}
.facility_info {
  text-align: center;
}
.facility_info a {
  background-color: #65bd78;
  border-radius: 100rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 0 0.3rem #65bd78;
  border: dashed 0.1rem #fff;
  font-size: 1.5rem;
  background-image: url("../img/opn.png");
  background-repeat: no-repeat;
  background-position: right 1.8rem center;
  background-size: 2.05rem auto;
  line-height: 1;
  padding: 1.4rem 5rem;
  display: inline-block;
  margin: 0;
}
.section_info .box_r {
  margin: 2rem;
}
.section_info .box_r a {
  display: block;
  margin-bottom: 1rem;
}
footer {
  background-color: #fff;
  padding-top: 4rem;
}
footer .tp_btn {}
footer .tp_btn a {
  text-align: center;
  margin: auto;
  width: 16.5rem;
  display: block;
  color: #fff;
  background-image: url("../img/arrow_3.png");
  background-repeat: no-repeat;
  background-color: #66bd79;
  line-height: 1;
  font-size: 1.5rem;
  padding: 1rem 0;
  border-radius: 100rem;
  text-decoration: none;
  font-weight: bold;
  background-position: right 1.8rem center;
  background-size: 0.8rem auto;
}
footer .bn_area {
  margin: 2rem;
}
footer .bn_area ul {
  align-content: center;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}
footer .bn_area li {
  width: 47.76%;
  margin-bottom: 1.5rem;
}
footer .bn_area li a, footer .bn_area li img {
  width: 100%;
  display: block;
}
.bn_s {
  max-width: 16rem;
  margin: auto;
}
footer .a_text_out {
  text-align: center;
  margin: 2rem auto 0;
  font-size: 1.3rem;
}
footer .a_text_out a {
  color: #6a3f06;
}
footer .cpl {
  padding-bottom: 3.5rem;
  text-align: center;
  font-size: 1.2rem;
  color: #6b4006;
  font-weight: bold;
  margin-top: 2rem;
}
.cpl_pc {
  display: none;
}
/* デザインB（タブレット） */
@media screen and (min-width: 600px) {
  /* タブレット用レイアウト 600px以上の範囲に収めるデザインはこの中に記述 */
}
/* デザインC(PC) 

@media screen and (min-width: 1025px) {
*/
@media screen and (min-width: 880px) {
  /* PC用レイアウト 1,025px以上の範囲に収めるデザインはこの中に記述 */
  body {
    background-size: 35.7rem auto, 35.7rem auto;
    background-position: right -17.85rem top, left -17.85rem top;
  }
  header {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 100;
  }
  .h1_out_out {
    display: flex;
    max-width: 120rem;
  }
  header .h1_out {
    border-radius: 1rem;
    background-color: #fffdf1;
    padding: 0rem 2rem 1rem;
    width: 27rem;
    margin: 0;
    height: fit-content;
  }
  .lpgo_2_out {
    width: 28rem;
    padding: 0;
    margin: 2rem 0 0;
  }
  .lpgo_2_out a {}
  .lpgo_2_out img {}
  header .main-menu {
    margin: 1.4rem 4rem 0 0;
  }
  header .pc-menu {
    width: 100%;
  }
  header .pc-menu ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0 0 1.7rem;
    flex-wrap: wrap;
  }
  header .pc-menu ul li {}
  header .pc-menu ul li a {}
  header .pc-menu ul li a:hover {}
  .sv_menu .a_info {
    margin: 0 2rem 0 0;
  }
  .sv_menu .a_info a {
    font-size: 1.8rem;
    padding: 1rem 4.1rem;
    background-size: 2.1rem auto;
  }
  .sv_menu .a_tel a {
    margin: 0;
    font-size: 3.2rem;
    background-size: 2.1rem auto;
    display: flex;
    align-items: center;
  }
  header .pc-menu .m_menu {
    margin: 0 -1rem 0 0;
  }
  .m_menu li {
    margin-left: 2rem;
    margin-bottom: 1rem;
  }
  .m_menu a {
    font-size: 1.8rem;
    margin-bottom: 0;
    border-radius: 100rem;
    background-color: #fffdf1;
    background-position: left 1rem center;
    padding: 0.4rem 1rem 0.4rem 2.2rem;
  }
  .main_vi_out {
    margin: -6.2rem 4rem 0;
  }
  .main_vi_in {
    position: absolute;
    bottom: 0;
    justify-content: space-between;
    vertical-align: bottom;
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 102rem;
    align-items: end;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 4rem;
  }
  .main_vi p {
    position: relative;
    max-width: 77rem;
    width: 100%;
    bottom: 4.73%;
    left: auto;
  }
  .main_vi .a_access_out {
    position: relative;
    width: 100%;
    max-width: 20.4rem;
    bottom: 6.28%;
    right: auto;
  }
  .main_vi_botm {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }
  .main_vi_botm p {
    font-size: 2.2rem;
    margin: 0 1rem 0 0;
  }
  .main_vi_botm p span {
    display: inline;
  }
  .main_vi_botm #g_access {
    font-size: 1.8rem;
    background-size: 1.9rem;
  }
  h2 {
    background-size: auto 2.3rem;
    padding-top: 4.2rem;
    font-size: 4.6rem;
    margin-bottom: 4rem;
  }
  .ma_1, .ma_2, .section_info .box_l {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .section_info .box_in_bn a {
    display: block;
    max-width: 48rem;
    margin: auto;
  }
  section {
    margin-bottom: 8rem;
  }
  .section_concept .text {
    font-size: 2.2rem;
    margin-bottom: 5.2rem;
    padding: 0 4rem;
  }
  .section_concept .text span {
    display: block;
  }
  .section_concept .box_out_out {
    color: #6a3f06;
    background-image: url("../img/back_2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0 4rem;
  }
  .section_concept .box_out {
    display: flex;
    flex-direction: row-reverse;
    max-width: 100rem;
    margin: auto;
    align-items: center;
    justify-content: space-between;
  }
  .section_concept .box_r {
    background-image: none;
    width: 59rem;
  }
  .section_concept .box_r ul {
    padding: 0;
  }
  .section_concept .box_r li {
    background-position: left top 1.1rem;
    background-size: 1.6rem auto;
    padding-left: 1.85rem;
    list-style: none;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 1.7rem;
  }
  .section_concept .box_l {
    width: 40.8rem;
    margin: -2rem 0;
    position: relative;
  }
  .section_info, .section_entry, .section_access, .section_contact .box_out, .section_info, .section_concept .text {
    max-width: 108rem;
    margin-left: auto;
    margin-right: auto;
  }
  .section_info {
    margin-left: auto;
    margin-right: auto;
  }
  .section_info ul {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .section_info li {
    padding: 3rem 0;
  }
  .section_info li strong {
    font-size: 1.8rem;
  }
  .section_info li p {
    font-size: 1.8rem;
  }
  .section_info li th,
  .section_info li td {
    font-size: 1.8rem;
  }
  .section_entry h3, .section_info h3 {
    font-size: 3.2rem;
    text-shadow: 0.4rem 0 0 #ffffff, 0 0.4rem 0 #ffffff, -0.4rem 0 0 #ffffff, 0 -0.4rem 0 #ffffff;
    padding: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section_entry {
    margin-left: auto;
    margin-right: auto;
  }
  .section_entry .ma_1 .text_area_1 p {
    font-size: 3.2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .section_entry .ma_1 .text_area_1 p strong {
    display: inline;
  }
  .section_entry .ma_1 .text_area_1 p strong:last-child {
    display: block;
  }
  .section_entry .ma_1 .text_area_2 .text_box h4 {
    font-size: 2rem;
    padding: 1.4rem;
  }
  .section_entry .ma_1 .text_area_2 .text_box h4 strong {
    font-size: 2.8rem;
  }
  .section_entry .ma_1 .text_area_2 .text_box p {
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
    padding: 1.4rem 0;
  }
  .section_entry .ma_1 .text_area_2 .text_box h5 {
    font-size: 2rem;
  }
  .section_entry .ma_1 .text_area_2 .text_box ul {
    font-size: 1.6rem;
    list-style-position: inside;
    padding: 3rem;
    height: 100%;
    font-weight: bold;
  }
  ul.ul1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .tb_2_lr {
    padding: 1.5rem 0 0;
  }
  .section_entry .ma_1 .text_area_2 .text_box_arrow {
    padding: 2rem 0.5rem;
  }
  .section_entry .ma_1 .text_area_2 .text_box ul.ul2 {
    padding: 3rem;
  }
  .section_entry .ma_1 .text_area_2 .text_box h5 {
    padding: 1.4rem;
  }
  .tb_2_lr {
    display: flex;
    justify-content: space-between;
  }
  .tb_2_c {
    width: calc(50% - 1rem);
  }
  .tb_2_c2 {
    width: 100%;
  }
  .tb_2_c img {
    width: 130px;
  }
  .section_entry .ma_1 .text_area_2 .text_box .tb_2_c p {
    text-align: left;
  }
  .section_entry .ma_1 .text_area_2_fl {}
  .section_entry .ma_1 .text_area_2 {
    padding: 0 2rem 3rem;
  }
  .section_entry .ma_1 .text_area_2 .text_box {}
  .section_entry .ma_1 .text_area_2 .text_box_arrow:before {
    transform: rotate(90deg);
  }
  .section_entry .ma_1 .text_area_2 .text_box_arrow {
    align-items: center;
  }
  .section_entry .ma_1 .text_area_2 .text_box .tb_3_mbtn a {
    font-size: 1.6rem;
    background-size: 0.8rem auto;
    padding-left: 2.7rem;
    padding-right: 2.7rem;
    line-height: 1.2;
    width: fit-content;
    margin: auto;
    min-width: 27rem;
  }
  .section_entry .ma_1 .text_area_3 {
    padding-top: 3rem;
  }
  .section_entry .ma_1 .text_area_3 .box_l {
    background-image: url("../img/pc/setumei_1.png");
    padding-top: calc(308 / 940 * 100%);
  }
  .section_entry .ma_1 .text_area_3 .box_r {
    display: none;
  }
  .section_entry .ma_2 {
    background-color: #fff;
    margin-top: 3rem;
  }
  .section_entry .ma_2 .text_area h4 {
    font-size: 2.2rem;
    background-size: 1.6rem auto;
  }
  .section_entry .ma_2 .text_area .t_box {
    font-size: 1.8rem;
  }
  .section_entry .ma_2 .text_area .t_box h5 {
    font-size: 1.9rem;
  }
  .section_entry .ma_2 .text_area_1 li {
    font-size: 2rem;
    display: flex;
    gap: 0 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    width: 48.93%;
    margin-bottom: 2rem;
  }
  .section_entry .ma_2 .text_area_1 li .tuki {
    text-align: right;
  }
  .section_entry .ma_2 .text_area_1 li .jikan {
    width: 46.95%;
  }
  .section_entry .ma_2 .text_area {
    margin: 3rem;
  }
  .section_entry .ma_2 .text_area_1 ul {
    margin-top: 2rem;
  }
  .section_entry .ma_2 .text_area .t_box {
    padding: 1rem 0 2.5rem 2.4rem;
  }
  .section_access .box_l {
    margin: 0 4rem 2rem;
  }
  .section_access .box_r {
    margin: 0 4rem 0;
  }
  .section_access h3 {
    background-size: 1.6rem auto;
    font-size: 2.2rem;
  }
  .section_access .box_l p {
    font-size: 1.8rem;
  }
  .section_access .tyui p {
    font-size: 1.4rem;
  }
  .section_access .tyui p span {
    color: #ea1515;
    font-size: 1.8rem;
  }
  .section_access .box_out {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
    padding: 0 4rem;
    position: relative;
  }
  .section_access .box_l {
    height: 100%;
    width: 50%;
    margin: 0;
  }
  .section_access .box_r {
    height: 100%;
    width: 47%;
    margin: 0;
    height: 100%;
    aspect-ratio: auto;
    position: absolute;
    top: 0;
    right: 0;
  }
  .section_access .box_r iframe {
    height: revert-layer;
    position: absolute;
    height: 100%;
  }
  .section_contact {
    padding: 0;
  }
  .section_contact .box_out {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
    padding: 0 4rem;
  }
  .section_contact .box_r {
    width: 40.7rem;
    margin: -1.7rem 0 -1.8rem;
  }
  .section_contact .box_l {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section_contact .box_l p {
    font-size: 1.8rem;
  }
  .section_contact .box_l span {
    display: inline;
  }
  .section_contact .box_l h2 {
    margin-bottom: 2rem;
  }
  .section_contact .box_l a {
    margin: 3rem auto 0;
    font-size: 2.2rem;
    padding: 1.4rem 5rem;
  }
  .section_contact .box_l .a_tel {
    margin-top: 1rem;
  }
  .section_contact .box_l .a_tel a {
    font-size: 4rem;
    background-size: 2.7rem auto;
    background-position: left top 1.6rem;
    padding: 0 0 0 3.15rem;
  }
  .section_info .box_out {
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding: 0 4rem;
    margin: 0;
  }
  .section_info .box_out .box_l {
    width: 48%;
    margin: 0;
  }
  .section_info .box_out .box_r {
    width: 48%;
    margin: 0;
    /*display: flex;*/
    flex-direction: column;
    justify-content: space-between;
  }
  .section_info .box_r a {
    /*margin-bottom: 0;*/
    margin-bottom: 3rem;
  }
  .section_info .box_l {
    font-size: 2.2rem;
  }
  .section_info .box_l .t2 {
    font-size: 1.8rem;
  }
  footer .tp_btn {
    margin-bottom: 4rem;
  }
  footer .tp_btn a {
    font-size: 1.4rem;
  }
  footer .bn_area {
    margin: auto;
    max-width: 108rem;
  }
  footer .bn_area ul {
    margin: 0 3rem;
    justify-content: center;
  }
  footer .bn_area li {
    max-width: 32rem;
    margin: 0 1rem 2rem;
  }
  .bn_s {
    max-width: 32rem;
    margin: 0 auto 5rem;
  }
  footer .cpl {
    font-size: 1.4rem;
  }
  .section_entry .ma_2 .text_area .t_box .a_pdf {
    margin: 1rem 0 0;
    font-size: 1.6rem;
  }
  .section_entry .ma_1 .text_area_2 .text_box .tb_1_mbtn {
    list-style: none;
    margin: 2rem 0 0 -2.8rem;
    width: 100%;
  }
  .section_contact {
    background-image: url("../img/back_2.jpg");
  }
  .section_info li .lr {
    display: flex;
    justify-content: space-between;
  }
  .section_info li .lr_l {
    padding-right: 10px;
    padding-bottom: 0;
  }
  .section_info li .lr_r {
  }
  /*-----------
    -------------- */
  /*----------------
    --------- */
  /*------------------------- */
  /*------------------------- */
  /*------------------------- */
}
/* デザインA（スマートフォン） */
/* メディアクエリ の記述なし。 */
/* 画面サイズが1279px以下の時はPC用メニューは非表示 
@media screen and (max-width: 1279px) {
*/
@media screen and (max-width: 879px) {
  .pc-menu {
    display: none;
  }
  .facility_info {
    text-align: center;
  }
  .facility_info a {
    background-color: #65bd78;
    border-radius: 100rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 0 0 0.3rem #65bd78;
    border: dashed 0.1rem #fff;
    font-size: 1.1rem;
    background-image: url("../img/opn.png");
    background-repeat: no-repeat;
    background-position: right 1.8rem center;
    background-size: 2.05rem auto;
    line-height: 1;
    padding: 1.4rem 5rem;
  }
}


.list-tab {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  justify-content: center;
  margin-left: 2rem;
  margin-right: 2rem;
}
@media screen and (min-width: 880px) {
  .list-tab {
    grid-template-columns: repeat(6, 1fr);
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
.list-tab .tab-label {
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 12px 5px;
  
  color: #65bd78;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.8s;
  cursor: pointer;
}
.list-tab .tab-label input {
  display: none;
}
.list-tab .tab-label:hover {
  opacity: 0.6;
}
.list-tab .tab-label:has(:checked) {
  background-color: #65bd78;
  color: #fff;
}
.section_info ul.tab-content {
  margin-top: 0;
}
.tab-content {
  display: none;
}
.list-tab:has(#TAB-1:checked) ~ #TAB-content1,
.list-tab:has(#TAB-2:checked) ~ #TAB-content2 {
    display: block;
}