@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** SPスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
.pc {
  display: none !important;
}

.sp {
  display: block;
}

a:hover {
  opacity: 0.7;
}

p {
  line-height: 1.8;
}

.tel {
  pointer-events: all;
}

html {
  position: relative;
  font-size: 8px;
  box-sizing: border-box;
}

@media screen and (min-width: 467px) {
  html {
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 620px) {
  html {
    font-size: 1.3333333333vw;
  }
}
body {
  position: relative;
  box-sizing: border-box;
  background: #f7f8f0;
}

/*-------------------------
** nav
---------------------------*/
.nav {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  z-index: 100;
  width: 100%;
  overflow-x: none;
  overflow-y: auto;
  top: 0px;
  right: -100%;
  position: fixed;
  transition: All 0.5s ease;
  padding-top: 80px;
}

.nav_list > li > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: #1a1a1a;
  font-weight: bold;
  display: block;
  text-decoration: none;
  position: relative;
  margin: 0 10px;
  width: calc(100% - 20px);
}
.nav_list > li > a:hover {
  opacity: 0.7;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed;
  top: 15px;
  right: 15px;
  width: 6rem;
  height: 6rem;
  background: #f7f8f0;
}
.sp_nav_trigger.active {
  position: fixed !important;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 2.2rem;
}
.sp_nav_trigger span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 2.2rem;
}
.sp_nav_trigger.active {
  height: 22px;
  background: none;
}
.sp_nav_trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #000;
  top: 0;
}
.sp_nav_trigger.active span:nth-of-type(2) {
  opacity: 0;
  background: #000;
}
.sp_nav_trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #000;
  bottom: 0;
}

/*-------------------------
** header
---------------------------*/
.hd_bg {
  display: flex;
  justify-content: center;
}
.hd_bg .hd {
  width: 100%;
  padding: 0 80px;
}
.hd_bg .hd .top_ttl {
  margin: 40px auto 30px;
  display: flex;
  justify-content: center;
  line-height: 1;
}
.hd_bg .hd .nav_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hd_bg .hd .nav_list li {
  width: 100%;
}
.hd_bg .hd .nav_list li a {
  font-size: 2.4rem;
  display: block;
  padding: 10px 20px;
  color: #1f3642;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
}
.hd_bg .hd .nav_list li a:hover {
  opacity: 0.7;
}

/*-------------------------
** TOP
---------------------------*/
.main_mv {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.main_mv .main_mv_left_txt,
.main_mv .main_mv_right_txt {
  width: 4rem;
  writing-mode: vertical-rl;
  color: #1f3642;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
  padding: 0 8px;
}
.main_mv .main_img {
  width: calc(100% - 8rem);
}

.news-block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: calc(100% - 8rem);
  margin: 0 auto;
}
.news-block .news-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 2px solid #046338;
  font-family: sans-serif;
  max-width: 1000px;
  border-radius: 10px;
  overflow: hidden;
}
.news-block .news-label {
  background: #046338;
  color: #fff;
  padding: 10px;
  white-space: nowrap;
  font-size: 1.8rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-block .news-slider {
  flex: 1;
  width: 100%;
  position: relative;
}
.news-block .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.5s;
}
.news-block .news-list li {
  background: #fff;
  overflow: hidden;
}
.news-block .news-list li a {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 10px;
  margin-right: 2.5rem;
  color: #000;
  text-decoration: none;
  background: #fff;
  font-size: 2rem;
}
.news-block .news-list li a:hover {
  background: #f0f0f0;
}
.news-block .news-list li a .txt {
  order: 2;
  width: 100%;
}
.news-block .news-list li a .category {
  color: #046338;
  padding: 3px 5px;
  font-size: 12px;
  border-radius: 4px;
  background: #eef2b2;
  font-size: 1.6rem;
  order: 1;
}
.news-block .news-controls {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-block .news-controls button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px;
}
.news-block .news-controls .prev, .news-block .news-controls .next {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  right: 10px;
  border-top: 2px solid #046338;
  border-right: 2px solid #046338;
}
.news-block .news-controls .prev {
  transform: rotate(-45deg);
  top: 15px;
}
.news-block .news-controls .next {
  transform: rotate(135deg);
  bottom: 15px;
}
.news-block .news-link {
  white-space: nowrap;
  margin-left: 10px;
  margin-top: 1rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.news-block .news-link a {
  color: #046338;
  text-decoration: none;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 5px;
  padding-right: 5rem;
  border-bottom: 2px solid #046338;
  font-weight: 500;
}
.news-block .news-link a::after {
  content: "";
  width: 3.4rem;
  height: 1.5rem;
  background: url(../img/top/arrow.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.container {
  width: 100%;
  max-width: 1490px;
  padding: 0 15px;
  margin: 0 auto;
}

.top_just_right {
  padding: 12rem 0 4rem;
  width: 100%;
}
.top_just_right .top_just_right_block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.top_just_right .top_just_right_block .txt_box {
  width: 100%;
  position: relative;
  padding-top: 17rem;
}
.top_just_right .top_just_right_block .txt_box::before {
  content: "";
  width: 39.4rem;
  height: 35.3rem;
  background: url(../img/top/kama_map.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: -9rem;
  left: -7rem;
}
.top_just_right .top_just_right_block .txt_box .ttl {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 4rem;
  color: #1a1a1a;
  letter-spacing: 0.2em;
  position: relative;
}
.top_just_right .top_just_right_block .txt_box .txt {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
  letter-spacing: 0.25em;
  font-weight: 500;
  position: relative;
}
.top_just_right .top_just_right_block .txt_box .sub_txt {
  font-size: 2.4rem;
  color: #046338;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 3px;
}
.top_just_right .top_just_right_block .txt_box .sub_txt span {
  background: #fff;
  padding: 5px;
}
.top_just_right .top_just_right_block .img_box {
  width: 100%;
  padding-top: 3rem;
  position: relative;
}
.top_just_right .top_just_right_img_flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.top_just_right .top_just_right_img_flex .img_box {
  width: calc((100% - 4rem) / 3);
}

.top_now {
  padding: 4rem 0;
  width: 100%;
}
.top_now .top_now_ttl {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 3rem;
  color: #1a1a1a;
  letter-spacing: 0.2em;
}
.top_now .top_now_txt {
  font-size: 1.8rem;
  margin-bottom: 5rem;
  color: #1a1a1a;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.top_now .top_now_block {
  width: calc(100% - 30px);
  margin: 0 auto;
  background: #d8e15e;
  padding: 6rem 0 6rem;
}
.top_now .top_now_block .top_now_block_ttl {
  width: 100%;
  margin-bottom: 3rem;
}
.top_now .top_now_block .immigrant_population {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  gap: 2rem;
}
.top_now .top_now_block .immigrant_population .box {
  width: 100%;
}
.top_now .top_now_block .now_access_txt {
  color: #1a1a1a;
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
.top_now .top_now_block .now_access_block {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  gap: 2rem;
}
.top_now .top_now_block .now_access_block .txt_box {
  width: 100%;
}
.top_now .top_now_block .now_access_block .txt_box .txt {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.top_now .top_now_block .now_access_block .img_box {
  width: 100%;
}
.top_now .top_now_block .top_now_box {
  background: #fafbf1;
  border-radius: 24px;
  padding: 6rem 6%;
  position: relative;
}
.top_now .top_now_block .top_now_box::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 24px;
  box-shadow: 10px 10px 0 #ccd54d;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.top_now .top_now_block .top_now_box .top_now_box_time {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  gap: 5rem;
  padding-bottom: 12rem;
  margin-bottom: 8rem;
  overflow: hidden;
}
.top_now .top_now_block .top_now_box .top_now_box_time::after {
  content: "";
  width: 1000px;
  height: 48px;
  background: url(../img/top/line01.png) center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top_now .top_now_block .top_now_box .top_now_box_time .hakata, .top_now .top_now_block .top_now_box .top_now_box_time .kokura {
  width: 100%;
}
.top_now .top_now_block .top_now_box .top_now_box_time .hakata .img, .top_now .top_now_block .top_now_box .top_now_box_time .kokura .img {
  margin-bottom: 2rem;
}
.top_now .top_now_block .top_now_box .top_now_box_time .hakata .txt, .top_now .top_now_block .top_now_box .top_now_box_time .kokura .txt {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.top_now .top_now_block .top_now_box .neighborhood {
  position: relative;
  width: 100%;
}
.top_now .top_now_block .top_now_box .neighborhood::before {
  content: "";
  width: 35%;
  height: 16.4rem;
  background: url(../img/top/now_box_iitem01.png) top center no-repeat;
  background-size: contain;
  position: absolute;
  left: -11%;
  top: -10rem;
}
.top_now .top_now_block .top_now_box .neighborhood .neighborhood_ttl {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.top_now .top_now_block .top_now_box .neighborhood .neighborhood_ttl .by_thw_way {
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 500;
  background: #e11120;
  color: #fff;
  border-radius: 50px;
  padding: 0 5rem;
  position: relative;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.top_now .top_now_block .top_now_box .neighborhood .neighborhood_ttl .by_thw_way::after {
  content: "";
  width: 3rem;
  height: 2rem;
  background: #e11120;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
}
.top_now .top_now_block .top_now_box .neighborhood .neighborhood_ttl .txt {
  display: inline-block;
  width: 100%;
  font-size: 2.6rem;
  font-weight: 500;
}
.top_now .top_now_block .top_now_box .neighborhood .neighborhood_access {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6rem;
}
.top_now .top_now_block .top_now_box .good_points {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 4rem;
  color: #1a1a1a;
  letter-spacing: 2px;
  text-align: center;
}
.top_now .top_now_block .top_now_box .good_points .underline {
  background: linear-gradient(transparent 70%, #ffdb5f 70%);
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-top: 10rem;
  flex-wrap: wrap;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box {
  width: 100%;
  padding: 8rem 1.5rem 5rem;
  border: 2px solid #046338;
  border-radius: 20px;
  position: relative;
  background: #fff;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .f_txt {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  border-radius: 50px;
  padding: 0.5rem 5rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 3rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .f_txt::after {
  content: "";
  width: 3rem;
  height: 2rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .f_txt.bg01 {
  background: #f8ba27;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .f_txt.bg01::after {
  background: #f8ba27;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .f_txt.bg02 {
  background: #0488cd;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .f_txt.bg02::after {
  background: #0488cd;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .ttl {
  font-size: 3.6rem;
  color: #046338;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 3px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .ttl .sub {
  font-size: 2.2rem;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .ttl02 {
  font-size: 2.6rem;
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .flex .img {
  width: 180px;
  text-align: center;
  margin: 1rem auto;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .flex .img img {
  margin: 0 auto;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .flex .txt_box {
  width: 100%;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .flex .txt_box .txt {
  font-size: 1.8rem;
  color: #1a1a1a;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .flex .txt_box .comment {
  font-size: 1.6rem;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .common_btn01 {
  max-width: 380px;
  margin: 0 auto;
}
.top_now .top_now_block .top_now_box .top_now_box_btnflex .box .common_btn01 a {
  border-radius: 14px;
}

.top_reason {
  padding: 4rem 0;
  width: 100%;
}
.top_reason .top_reason_ttl {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 3rem;
  color: #1a1a1a;
  letter-spacing: 0.2em;
}
.top_reason .top_reason_txt {
  font-size: 1.8rem;
  margin-bottom: 5rem;
  color: #1a1a1a;
  letter-spacing: 0.25em;
  font-weight: 500;
}
.top_reason .top_reason_block {
  width: calc(100% - 30px);
  margin: 0 auto;
  background: #caebf8;
  padding: 6rem 0 6rem;
}
.top_reason .top_reason_block .top_reason_main {
  width: 100%;
  margin-bottom: 5rem;
}
.top_reason .top_reason_block .top_reason_block_ttl {
  width: 100%;
  margin-bottom: 3rem;
}
.top_reason .top_reason_block .nature_flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 7rem;
  gap: 2rem;
}
.top_reason .top_reason_block .nature_flex .txt_box {
  width: 100%;
}
.top_reason .top_reason_block .nature_flex .txt_box .txt {
  font-size: 1.8rem;
  color: #1a1a1a;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.top_reason .top_reason_block .nature_flex .img {
  width: 100%;
}
.top_reason .top_reason_block .place_flex {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5rem;
}
.top_reason .top_reason_block .place_flex .box {
  width: 100%;
}
.top_reason .top_reason_block .place_flex .box .ttl {
  font-size: 2.6rem;
  color: #1a1a1a;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding-left: 5rem;
  position: relative;
  margin-bottom: 1rem;
}
.top_reason .top_reason_block .place_flex .box .ttl.school::before {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url(../img/top/shool_icon.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top_reason .top_reason_block .place_flex .box .ttl.library::before {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url(../img/top/library_icon.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top_reason .top_reason_block .place_flex .box .ttl.camp::before {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url(../img/top/camp_icon.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top_reason .top_reason_block .place_flex .box .img {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}
.top_reason .top_reason_block .place_flex .box .txt {
  font-size: 1.8rem;
  color: #1a1a1a;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.top_reason .top_reason_block .support_block {
  background: #fff;
  border-radius: 24px;
  padding: 6rem 6%;
  position: relative;
}
.top_reason .top_reason_block .support_block::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 24px;
  box-shadow: 10px 10px 0 #caebf8;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.top_reason .top_reason_block .support_flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 12rem;
  margin-bottom: 5rem;
  overflow: hidden;
  gap: 2rem;
}
.top_reason .top_reason_block .support_flex::after {
  content: "";
  width: 1000px;
  height: 48px;
  background: url(../img/top/line02.png) center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top_reason .top_reason_block .support_flex .left_box, .top_reason .top_reason_block .support_flex .right_box {
  width: 100%;
}
.top_reason .top_reason_block .support_flex .box {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.top_reason .top_reason_block .support_flex .box .img {
  margin-bottom: 2rem;
}
.top_reason .top_reason_block .support_flex .box .txt {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.top_reason .top_reason_block .support_flex .box.box01 {
  border-bottom: 2px solid #ddd;
}
.top_reason .top_reason_block .support_flex .box.box02 {
  border-bottom: 2px solid #ddd;
}
.top_reason .top_reason_block .support_flex .box.box02 .txt {
  text-align: center;
  font-size: 2rem;
}
.top_reason .top_reason_block .support_flex .box .btn_block {
  width: 100%;
  background: #f7f8f0;
  padding: 3rem 1.5rem;
  margin-top: 2rem;
  border-radius: 20px;
}
.top_reason .top_reason_block .support_flex .box .btn_block .btn_block_ttl {
  text-align: center;
  font-size: 2.6rem;
  color: #0488cd;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  letter-spacing: 2px;
}
.top_reason .top_reason_block .support_flex .box .btn_block .common_btn01 {
  max-width: 360px;
  margin: 0 auto;
}
.top_reason .top_reason_block .support_flex .box .btn_block .common_btn01 a {
  border-radius: 14px;
}
.top_reason .top_reason_block .system {
  position: relative;
}
.top_reason .top_reason_block .system .system_ttl {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.top_reason .top_reason_block .system .system_ttl .sub {
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 500;
  background: #e11120;
  color: #fff;
  border-radius: 50px;
  padding: 0 5rem;
  position: relative;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.top_reason .top_reason_block .system .system_ttl .sub::after {
  content: "";
  width: 3rem;
  height: 2rem;
  background: #e11120;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
}
.top_reason .top_reason_block .system .system_ttl .txt {
  display: inline-block;
  width: 100%;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
}
.top_reason .top_reason_block .system .system_block01 {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6rem;
}
.top_reason .top_reason_block .system .system_block02 {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
}
.top_reason .top_reason_block .system .comment {
  text-align: right;
  font-size: 1.8rem;
  color: #4c4c4c;
  margin-top: 1rem;
}
.top_reason .top_reason_block .system.mb {
  margin-bottom: 5rem;
}
.top_reason .top_reason_block .system .btn_block {
  width: 100%;
  background: #f7f8f0;
  padding: 3rem 1.5rem;
  border-radius: 20px;
  margin-top: 3rem;
}
.top_reason .top_reason_block .system .btn_block .btn_block_ttl {
  text-align: center;
  font-size: 2.6rem;
  color: #0488cd;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  letter-spacing: 2px;
}
.top_reason .top_reason_block .system .btn_block .common_btn01 {
  max-width: 360px;
  margin: 0 auto;
}
.top_reason .top_reason_block .system .btn_block .common_btn01 a {
  border-radius: 14px;
}
.top_reason .top_reason_block .good_points {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 4rem;
  color: #1a1a1a;
  letter-spacing: 2px;
  text-align: center;
}
.top_reason .top_reason_block .good_points .underline {
  background: linear-gradient(transparent 70%, #d8e15e 70%);
}

.top_event {
  padding: 4rem 0;
  width: 100%;
  position: relative;
}
.top_event::before {
  content: "";
  width: 30%;
  height: 10rem;
  background: url(../img/top/event_item01.png) top center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
}
.top_event .top_event_ttl {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
.top_event .top_event_txt {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 5rem;
}
.top_event .top_event_block {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.top_event .top_event_block .img_box {
  width: 90%;
  margin-left: 10%;
  margin-bottom: -4rem;
  position: relative;
}
.top_event .top_event_block .img_box img {
  border-radius: 10px;
}
.top_event .top_event_block .txt_box {
  width: 90%;
  background: #fff;
  border-radius: 24px;
  padding: 6rem 3rem 6rem 3rem;
  margin-right: 10%;
}
.top_event .top_event_block .txt_box .ttl {
  font-size: 3.2rem;
  color: #046338;
  margin-bottom: 3rem;
  font-weight: 500;
}
.top_event .top_event_block .txt_box .dl {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.top_event .top_event_block .txt_box .dl dt {
  width: 80px;
  font-size: 1.8rem;
  color: #0488cd;
  margin: 5px 0;
}
.top_event .top_event_block .txt_box .dl dd {
  width: calc(100% - 80px);
  font-size: 2rem;
  color: #1a1a1a;
  margin: 5px 0;
}
.top_event .top_event_block .txt_box .link {
  color: #046338;
  text-decoration: none;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 5px;
  padding-right: 5rem;
  border-bottom: 2px solid #046338;
  font-weight: 500;
}
.top_event .top_event_block .txt_box .link::after {
  content: "";
  width: 3.4rem;
  height: 1.5rem;
  background: url(../img/top/arrow.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.contact_form {
  padding: 4rem 0;
  width: 100%;
}
.contact_form .contact_form_ttl {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 500;
}
.contact_form .current_event {
  margin-bottom: 5rem;
  display: flex;
  justify-content: center;
  padding: 0 15px;
}
.contact_form .current_event dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 2px solid #046338;
  font-family: sans-serif;
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
}
.contact_form .current_event dl dt {
  background: #046338;
  color: #fff;
  padding: 20px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 2.2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.contact_form .current_event dl dt::after {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: #046338;
  clip-path: polygon(0 0, 50% 50%, 100% 0%);
  position: absolute;
  left: 50%;
  bottom: -2.3rem;
  transform: translateX(-50%);
  z-index: 5;
}
.contact_form .current_event dl dd {
  flex: 1;
  width: 100%;
  position: relative;
  padding: 20px;
  background: #fff;
  color: #1a1a1a;
  font-size: 2rem;
  font-weight: 500;
}
.contact_form .contact_form_block {
  width: calc(100% - 30px);
  margin: 0 auto;
  background: #efeee1;
  padding: 6rem 0 6rem;
}
.contact_form .contact_form_block .form_block {
  background: #fff;
  border-radius: 24px;
  padding: 6rem 6%;
  position: relative;
  z-index: 5;
}
.contact_form .contact_form_block .form_block::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 24px;
  box-shadow: 10px 10px 0 rgba(210, 208, 181, 0.4);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.contact_form .contact_form_block .form_block dl {
  width: 100%;
  margin-bottom: 2rem;
}
.contact_form .contact_form_block .form_block dl dt {
  width: 100%;
  font-size: 2.4rem;
  color: #1a1a1a;
  font-weight: 500;
  padding: 10px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contact_form .contact_form_block .form_block dl dt .required {
  color: #fff;
  font-size: 1.4rem;
  background: #e60012;
  padding: 2px 15px;
  margin-left: 15px;
}
.contact_form .contact_form_block .form_block dl dd {
  width: 100%;
  font-size: 2rem;
}
.contact_form .contact_form_block .form_block dl dd input, .contact_form .contact_form_block .form_block dl dd select, .contact_form .contact_form_block .form_block dl dd textarea {
  width: 100%;
  padding: 10px 15px;
  font-size: 2rem;
  border-radius: 5px;
  border: 1px solid #cccccc;
}
.contact_form .contact_form_block .form_block .agree {
  text-align: center;
  font-size: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.contact_form .contact_form_block .form_block .agree .wpcf7-list-item-label {
  color: #1a1a1a;
  padding-left: 1rem;
}
.contact_form .contact_form_block .form_block .form_btn {
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact_form .contact_form_block .form_block .form_btn .input_btn_wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact_form .contact_form_block .form_block .form_btn .input_btn_wrap input {
  display: block;
  width: 100%;
  max-width: 580px;
  padding: 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e60012;
  border-radius: 5px;
  font-size: 2.8rem;
  color: #fff;
}
.contact_form .contact_form_block .form_block .form_btn .input_btn_wrap input:hover {
  opacity: 0.7;
}
.contact_form .wpcf7-response-output {
  font-size: 1.4rem;
}
.contact_form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
}
.contact_form .form_brn_block {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact_form .form_brn_block .form_btn {
  width: 100%;
  max-width: 340px;
}
.contact_form .form_brn_block .form_re_btn {
  width: 100%;
  max-width: 340px;
}
.contact_form .form_brn_block .form_re_btn .input_btn_wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact_form .form_brn_block .form_re_btn .input_btn_wrap input {
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #888;
  border-radius: 5px;
  font-size: 2.8rem;
  color: #fff;
}
.contact_form .wpcf7-spinner {
  display: none;
}
.contact_form .thanks_block {
  width: 100%;
  margin: 0 auto;
}
.contact_form .thanks_block .contact_form_ttl {
  font-size: 3rem;
}
.contact_form .thanks_block p {
  font-size: 1.8rem;
}
.contact_form .thanks_block .common_btn01 {
  max-width: 340px;
  margin: 5rem auto 0;
}

.ft {
  background: #046338;
  padding: 5rem 0;
  display: flex;
  justify-content: center;
}
.ft .ft_contents {
  width: 100%;
  max-width: 1460px;
  padding: 0 15px;
}
.ft .ft_contents .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.ft .ft_contents .ft_copy {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.2em;
}
.ft .ft_contact {
  width: -moz-max-content;
  width: max-content;
  margin: 3rem auto;
}
.ft .ft_contact .txt {
  font-size: 2rem;
  color: #fff;
}
.ft .ft_contact dl {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
}
.ft .ft_contact dl dt {
  font-size: 2rem;
  color: #fff;
  width: 5rem;
}
.ft .ft_contact dl dd {
  font-size: 2rem;
  color: #fff;
}
.ft .ft_contact dl dd a {
  text-decoration: none;
  font-size: 2rem;
  color: #fff;
}

.sub_main {
  width: 100%;
  display: flex;
  justify-content: center;
}
.sub_main.page_404 {
  background: #caebf8;
}
.sub_main .sub_main_ttl {
  padding: 6rem 0;
}
.sub_main .sub_main_ttl .en {
  color: #1a1a1a;
  font-size: 1.6rem;
  text-align: center;
  display: block;
  font-weight: 600;
}
.sub_main .sub_main_ttl .ja {
  display: block;
  text-align: center;
  color: #1a1a1a;
  font-size: 3rem;
  font-weight: 600;
}

.bread_area {
  width: 100%;
  display: flex;
  justify-content: center;
}
.bread_area .bread_list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.bread_area .bread_list li {
  font-size: 1.6rem;
  color: #1a1a1a;
}
.bread_area .bread_list li a {
  margin-right: 10px;
  padding-right: 15px;
  position: relative;
  color: #1a1a1a;
}
.bread_area .bread_list li a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 6px;
  height: 6px;
  border: 0.1em solid #1a1a1a;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
}

.common_btn01 a, .common_btn01 input {
  display: block;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.6rem;
  background: #046338;
  font-weight: bold;
  padding: 2rem;
}
.common_btn01 input {
  width: 90%;
  max-width: 300px;
  margin: 0 10px;
  border: none;
}
.common_btn01 input:disabled {
  opacity: 0.5;
}

.notfound_sec {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 100px 0;
}
.notfound_sec p {
  font-size: 1.8rem;
}
.notfound_sec .common_btn01 {
  margin-top: 50px;
}

/*-------------------------
** 下層
---------------------------*/
.sub_col {
  width: 100%;
  display: flex;
  justify-content: center;
}
.sub_col .sub_left_txt {
  width: 4rem;
  writing-mode: vertical-rl;
  color: #1f3642;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
}
.sub_col .sub_right_txt {
  width: 4rem;
  writing-mode: vertical-rl;
  color: #1f3642;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
}
.sub_col.no_text .sub_content {
  width: 100%;
}

.sub_content {
  width: calc(100% - 8rem);
  flex: 1;
}
.sub_content .sub_main {
  width: 100%;
  height: 200px;
}
.sub_content .sub_main img {
  -o-object-fit: cover;
     object-fit: cover;
}
.sub_content .page_sec {
  width: 100%;
  padding: 4rem 0 6rem;
}
.sub_content .topic_list_sec .topic_list_ttl {
  font-size: 3.2rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 3rem;
}
.sub_content .topic_list_sec .topic_cat_list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  gap: 2rem;
}
.sub_content .topic_list_sec .topic_cat_list li {
  width: calc((100% - 2rem) / 2);
}
.sub_content .topic_list_sec .topic_cat_list li a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0.5rem;
  font-size: 2rem;
  color: #fff;
  background: #046338;
  border-radius: 14px;
}
.sub_content .topic_list_sec .topic_list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.sub_content .topic_list_sec .topic_list li {
  width: 100%;
}
.sub_content .topic_list_sec .topic_list li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  background: #fff;
  padding: 2rem 5rem 2rem 2rem;
  position: relative;
  box-shadow: 7px 7px 0 #e5e6d4;
  border-radius: 20px;
  gap: 2rem;
}
.sub_content .topic_list_sec .topic_list li a::after {
  content: "";
  background: url(../img/common/arrow.png) center no-repeat;
  background-size: contain;
  width: 3rem;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
.sub_content .topic_list_sec .topic_list li a:hover::after {
  right: 1.5rem;
}
.sub_content .topic_list_sec .topic_list li a .date {
  display: block;
  font-size: 1.6rem;
  color: #1a1a1a;
  width: -moz-max-content;
  width: max-content;
}
.sub_content .topic_list_sec .topic_list li a .cate {
  display: block;
  font-size: 1.6rem;
  color: #046338;
  width: -moz-max-content;
  width: max-content;
  padding: 3px 2.5rem;
  background: #eef2b2;
  border-radius: 50px;
  text-align: center;
  min-width: 140px;
}
.sub_content .topic_list_sec .topic_list li a .txt {
  display: block;
  width: 100%;
  font-size: 2rem;
  font-weight: 500;
}

#pagenavi {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
#pagenavi .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}
#pagenavi .wp-pagenavi a {
  text-decoration: none;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 5px;
  color: #222;
  font-size: 2rem;
  margin: 0 10px;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
}
#pagenavi .wp-pagenavi a.first, #pagenavi .wp-pagenavi a.last {
  color: rgba(0, 0, 0, 0.5);
  font-size: 2.6rem;
  padding-bottom: 5px;
}
#pagenavi .wp-pagenavi span.current {
  color: #fff;
  background: #046338;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 2rem;
  line-height: 1;
  margin: 0 10px;
}
#pagenavi .wp-pagenavi .nextpostslink {
  font-size: 0px;
  position: relative;
}
#pagenavi .wp-pagenavi .nextpostslink::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: calc(50% - 4px);
  right: calc(50% - 4px);
  border-top: 2px solid #046338;
  border-right: 2px solid #046338;
  transform: rotate(45deg);
}
#pagenavi .wp-pagenavi .previouspostslink {
  font-size: 0px;
  position: relative;
}
#pagenavi .wp-pagenavi .previouspostslink::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: calc(50% - 4px);
  right: calc(50% - 4px);
  border-top: 2px solid #046338;
  border-right: 2px solid #046338;
  transform: rotate(225deg);
}

.sub_event_contact {
  width: 100%;
  padding: 5rem 0 10rem;
}
.sub_event_contact .sub_event_contact_block {
  width: 100%;
  background: #efeee1;
  padding: 4rem 1.5rem;
  border-radius: 14px;
}
.sub_event_contact .sub_event_contact_block .sub_event_contact_ttl {
  font-size: 2.6rem;
  color: #046338;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}
.sub_event_contact .sub_event_contact_block .sub_event_contact_btn {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.sub_event_contact .sub_event_contact_block .sub_event_contact_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  color: #fff;
  background: #e60012;
  border-radius: 14px;
  font-size: 2.2rem;
}

.topic_detail {
  width: 100%;
  font-size: 1.8rem;
}
.topic_detail .ttl_block {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
.topic_detail .ttl_block .cate {
  display: block;
  font-size: 1.8rem;
  color: #046338;
  width: -moz-max-content;
  width: max-content;
  padding: 3px 2.5rem;
  background: #eef2b2;
  border-radius: 50px;
  text-align: center;
}
.topic_detail .ttl_block .topic_ttl {
  font-size: 4.4rem;
  color: #1a1a1a;
  font-weight: 500;
}
.topic_detail .common_detail_btn {
  display: flex;
  justify-content: center;
  margin-top: 10rem;
  gap: 3rem;
}
.topic_detail .common_detail_btn .prev_btn, .topic_detail .common_detail_btn .next_btn {
  width: 50px;
}
.topic_detail .common_detail_btn .prev_btn a, .topic_detail .common_detail_btn .next_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 3rem;
  font-weight: 500;
  color: #046338;
}
.topic_detail .common_detail_btn .re_btn {
  width: 50%;
  max-width: 300px;
}
.topic_detail .wp-block-heading {
  letter-spacing: 3px;
}
.topic_detail h2.wp-block-heading {
  font-size: 3.2rem;
  color: #046338;
  font-weight: 500;
  margin-top: 5rem;
  margin-bottom: 3rem;
}
.topic_detail h3.wp-block-heading {
  font-size: 2.8rem;
  color: #1a1a1a;
  font-weight: 500;
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #d8e15e;
  display: inline-block;
}
.topic_detail h4.wp-block-heading {
  font-size: 2.4rem;
  color: #1a1a1a;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}
.topic_detail h4.wp-block-heading::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #d8e15e;
  position: absolute;
  top: 0;
  left: 0;
}
.topic_detail p {
  color: #1a1a1a;
  font-size: 1.8rem;
}
.topic_detail table th {
  background: #046338;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  border: none;
}
.topic_detail table td {
  font-size: 1.8rem;
  padding: 1.5rem;
  border: none;
  border-bottom: 1px solid #ccc;
}
.topic_detail .wp-block-table {
  overflow-x: auto;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  margin: 3rem auto;
}
.topic_detail .wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%;
  border-spacing: 5px;
  border-collapse: separate;
}
.topic_detail ul {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.topic_detail ul li {
  font-size: 1.8rem;
  position: relative;
  margin: 0.5rem 0;
  padding-left: 1.5em;
}
.topic_detail ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 2px solid #0488cd;
  border-bottom: 2px solid #0488cd;
  transform: rotate(-45deg);
}
.topic_detail ol {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.topic_detail ol li {
  font-size: 1.8rem;
  margin: 0.5rem 0;
}/*# sourceMappingURL=sp.css.map */