@charset "utf-8";
/*共通CSS*/
:root {
  --black: #3B3B3B;
  --red: #c25067;
  --primary: #98C46C;
  --primary_sub: #df9397;
  --primary_bg01: #F3F6EE;
  --primary_bg02: #FAFAFA;
  --sub01: #b7d0a1;
  --sub02: #f2ddd5;
  --notes: #B3AAAA;
  --line: #DBDBDB;
  --pictx: "Zen Kaku Gothic New", sans-serif;
  --entx: "Montserrat", sans-serif;
  --transition: all .5s;
  --opacity: .6;
}

/*---contents parts---*/
body {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
}
.pictx,
h1,h2,h3,h4,h5 {
  font-family: var(--pictx);
}
.entx {
  font-family: var(--entx);
}
figure img {
  border-radius: 30px;
}
main {
  position: relative;
  z-index: 1;
}
.contents {
  position: relative;
  min-height: 300px;
  padding-top: 50px;
  padding-bottom: 80px;
  background-color: var(--primary_bg01);
}
.wave {
  position: absolute;
  top: 1px;
  transform: translateY(-99%);
  left: -8px;
  width: calc(100% + 16px);
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}
.wave img {
  width: 100%;
  height: auto;
  display: block;
}
.wave.-white img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.con {
  display: block;
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.breadcrumb-list {
  /* position: absolute; */
  /* top: 10px; */
  /* left: 10px; */
  /* z-index: 10; */
}
/* .breadcrumb-item.active {
  font-weight: bold;
}
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-item a {
  color: #fff;
} */
.main_title_con {
  position: relative;
  min-height: 400px;
  /* background: url(../img/common/bg_main_title.jpg) no-repeat center; */
  /* background-size: cover; */
  /*overflow: hidden;*/
}
.main_title_con::before {
  /* position: absolute; */
  /* content: ""; */
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .3);
  top: 0;
}
.main_title_con .main_title {
  padding: 20px;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* z-index: 10; */
  width: 80%;
  max-width:600px;
  font-size: clamp(25px,calc(25px + 10 * (100vw - 480px)/1024), 35px);
  line-height: 1.5;
  text-align: center;
  /* background-color: #fff; */
}
.nav_jump.con {
  padding-bottom: 1em;
  background-color: var(--primary_bg02);
  /* border-radius: 5px; */
  padding: 1em;
  margin-bottom: 100px;
}
.nav_jump .ul_jump {
  display: flex;
  gap: 1.25em;
  flex-wrap: wrap;
}
.nav_jump .ul_jump > li a {
  display: inline-flex;
  -moz-column-gap: 10px;
  column-gap: .5em;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.nav_jump .ul_jump > li a .text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.nav_jump .ul_jump > li a .arrow {
  position: relative;
  display: inline-grid;
  flex-shrink: 0;
  align-items: center;
  justify-items: center;
  place-items: center;
  width: 21px;
  aspect-ratio: 1/1;
  border: 1px solid var(--black);
  border-radius: 100vmax
}
.nav_jump .ul_jump > li a .arrow::before {
  content:'';
  position: absolute;
  width: .3em;
  height: .3em;
  border-top: 2px solid var(
    --black);
  border-right:2px solid var(
    --black);
  transform: translateY(-1px) rotate(135deg);
  transition: var(--transition);
}
.nav_jump .ul_jump > li a:hover .arrow:before {
  transform: translateY(1px) rotate(135deg);
}
.title01,.title02 {
  line-height: 1.6;
}
.title01_wrap {
  margin-bottom: 80px;
  text-align: center;
}
.title01 {
  position: relative;
  margin-bottom: 20px;
  font-family: var(--pictx);
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
  /* white-space: nowrap; */
}
.title01_wrap .subtitle {
  color: var(--primary);
  font-family: var(--entx);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
}
.title02 {
  position: relative;
  font-family: var(--pictx);
  margin-top: 100px;
  margin-bottom: 60px;
}
.title02 .tt {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 500;
  background-color: #fff;
  padding-right: 1.5em;
  position: relative;
  z-index: 1;
}
.title02::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: var(--line);
  z-index: 1;
}
.bgcp_bg01 .title02 .tt {
  background-color: var(--primary_bg01);
}
.ic_arrow {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ic_arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: translate(-50%, -50%) rotate(45deg);
}
.ic_arrow.-type02 {
  border: 2px solid var(--primary_sub);
}
.ic_arrow.-type02::after {
  border-top: 2px solid var(--primary_sub);
  border-right: 2px solid var(--primary_sub);
}
a:hover .ic_arrow {
  opacity: 0.8;
  transform: translateX(4px);
}
.link01 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  text-decoration: none;
  font-family: var(--pictx);
  font-weight: bold;
  font-size: clamp(16px, 2vw, 18px);
  letter-spacing: 0.05em;
}
.link02 {
  display: block;
  width: fit-content;
  margin: auto;
  padding: 1em 3em;
  font-family: var(--pictx);
  font-size: 2em 1em;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: var(--primary);
  border-radius: 50px;
}
.link02 {
  display: block;
  width: fit-content;
  margin: auto;
  padding: 1em 3em;
  font-family: var(--pictx);
  font-size: 2em 1em;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: var(--primary);
  border-radius: 50px;
}
.link02:hover {
  background-color: var(--primary_sub);
}
.link {
  display: inline-block;
  padding: 0 .25em;
  text-decoration: underline;
  color: var(--black);
  font-weight: 500;
  line-height: 1.5;
}
.link:hover {
  color: var(--primary);
}
.link_out {
  display: inline;
  position: relative;
  padding-right: 2em;
  padding-bottom: .25em;
  border-bottom: 1px solid;
}
.link_out:hover {
  border-bottom: 1px solid var(--line);
}
.link_out::after {
  content: "";
  position: absolute;
  width: 1.25em;
  height: 1.25em;
  margin-top: .4em;
  margin-left: .5em;
  background: url(
    ../img/common/ic_blank.svg) no-repeat center;
  background-size: contain;
}
.link_pdf {
  display: block;
  max-width: 350px;
  margin: .5em 0;
  padding: .75em 2.75em .75em 1.75em;
  border: 1px solid var(--line);
  background-color: #fff;
  border-radius: 100px;
  font-weight: 500;
  line-height: 1;
}
.link_pdf:hover {
  background-color: var(--primary_bg03)
}
.link_pdf::before {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  right: .75em;
  top: 50%;
  transform: translateY(-50%);
  background: url(
    ../img/common/ic_pdf.svg) no-repeat center;
  background-size: contain;
}
.ul01 {
  padding-left: 1.5em;
}
.ul01 > li {
  position: relative;
}
.ul01 > li+li {
  margin-top: .5em;
}
.ul01 > li::before {
  content: "";
  position: absolute;
  width: .5em;
  height: .5em;
  left: -1.25em;
  top: .7em;
  /* transform: translateY(-50%); */
  background-color: var(
    --primary);
  border-radius: 1em;
}
.ul02 > li {
  display: inline-block;
  float: left;
  margin-right: 5px;
}
.ul02 > li:not(:last-of-type):before {
  content: "/";
  display: block;
  float: right;
  padding: 0 5px;
}
.ol01 {
  list-style: none;
  counter-reset: number;
}

.ol01 > li {
  position: relative;
  padding-left: 1.5em;
}
.ol01 > li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: .3em;
  left: 0;
  width: 1.25em;
  height: 1.25em;
  border: 1px solid;
  border-radius: 50%;
  font-size: .8em;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.ol01 > li+li {
  margin-top: .25em;
}
.ul_notice,
.text_notice {
  position: relative;
  display: inline-block;
  margin-left: 1.5em;
  color: var(--notes);
  font-size: .9em;
  line-height: 1.5;
}
.ul_notice > li {
  position: relative;
}
.ul_notice > li:not(:last-of-type) {
  margin-bottom: .25em;
}
.ul_notice > li::before,
.text_notice::before {
  content: "\0203B";
  position: absolute;
  top: 0;
  left: -1.3em;
}
.text_st01 {
  font-family: var(--pictx);
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 30px;
}
.table01 {
  border: 1px solid var(--line);
  /* border-radius: 30px; */
  /* overflow: hidden; */
}
.table01 tr+tr {
  border-top: 1px solid var(--line);
}
.table01 th,.table01 td {

  font-size: 14px;
  line-height: 1.5;
}
.table01 th {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: .5em;
  font-weight: 600;
  border-right: 1px solid var(--line);
  background-color: var(--primary_bg02);
  text-wrap: balance;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.table01 tbody th {
  width: 30%;
}
.table01 td {
  background-color: #fff;
  padding: 20px
}
.table01.-type02 th {
  background-color: var(--primary);
  color: #fff;
}
.table01.-type02 th ,.table01.type02 td {
  border: 1px solid var(--primary_bg03);
}
.table_schedule {
  width: 100%;
}
.table_schedule th {
  font-weight: 600;
  background-color: var(--primary_bg02);
  text-align: center;
}
.table_schedule th,
.table_schedule td {
  font-size: 14px;
  line-height: 1.3;
  padding: 1em .5em;
  border: 1px solid var(--line);
  vertical-align: middle;
  text-align: center;
}
.table_schedule tbody th {
  width: 25%;
}
.table_schedule tbody td {
  width: calc(75%/7);
}
dl > dt {
  line-height: 1.5;
}
.dl01 {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1em;
}
.dl01 > dt {
  grid-column: 1;
  font-weight: bold;
}
.dl01 > dd {
  grid-column: 2;
}
.dl02 > dt {
  float: left;
  clear: left;
  min-width: 6em;
  letter-spacing: -.5px;
  padding: 3px 10px;
  border: 1px solid var(--black);
  font-weight: 600;
  text-align: center;
}
.dl02 > dd {
  margin-bottom: .5em;
  margin-left: 7em;
  padding: 3px;
}
.dl03 > dt {
  margin-bottom: 1em;
  padding: 1em;
  font-weight: 800;
  border-top: 1px solid;
  border-bottom: 1px dashed;
}
.dl03 > dd {
  padding: 0 1em 1em;
}
.box01,.box02 {
  width: 100%;
  border-radius: 30px;
  padding: 50px;
}
.box01 {
  background-color: #fff;
}
.box02 {
  background-color: var(--primary_bg02);
  border: 1px solid var(--line);
  border-radius: 30px;
}
.box02 .tt {
  font-weight: bold;
  font-size: 1.2em;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.box03 {
  padding: 1em;
  margin: .5em 0;
  background-color: var(--primary_bg02);
}
/*check*/
.tx_check,
.ul_check > li strong {
  display: block;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: .5em;
  position: relative;
  padding-left: 2em;
}
.tx_check::before,
.ul_check > li strong::before {
  content: "";
  position: absolute;
  width: 1.75em;
  height: 1.75em;
  left: 0;
  top: 0;
  /* transform: translateY(-50%); */
  background: url(
    ../img/common/ic_chuck_p.svg) no-repeat center;
  background-size: contain;
}
.tx_check {
  color: var(--primary);
}
.tx_check::before {
  background: url(
    ../img/common/ic_chuck_g.svg) no-repeat center;
  background-size: contain;
}
.ul_check > li strong {
  color: var(--primary_sub);
}
.ul_check > li+li {
  margin-top: 1em;
}
.ul_check > li strong::before {
  background: url(
    ../img/common/ic_chuck_p.svg) no-repeat center;
  background-size: contain;
}
/*flow*/
.flow_design {
  margin-left: 20px;
}
.flow_design ol {
  padding: 0;
}
.flow_design li {
  list-style-type: none;
}
.flow_design > dd {
  margin-left: 0;
}
.flow_design .flow {
  position: relative;
}
.flow_design .flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: var(--primary_bg02);
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}
.flow_design .flow > li {
  position: relative;
}
.flow_design .flow > li:not(:last-child) {
  margin-bottom: 60px;
}
.flow_design .flow > li .icon {
  font-size: 0.8em;
  width: 1.8em;
  height: 1.8em;
  line-height: 2em;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: var(--primary);
  display: inline-block;
  margin-right: 0.3em;
}
.flow_design .flow > li > dl {
  padding-left: 1.5em;
  position: relative;
}
.flow_design .flow > li > dl::before,
.flow_design .flow > li > dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 1em;
}
.flow_design .flow > li > dl::before {
  width: 7px;
  height: 7px;
  margin-top: 0px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateY(-50%);
  left: -4px;
}
.flow_design .flow > li > dl::after {
  width: 1em;
  border-bottom: 1px dashed var(--notes);
  position: absolute;
  left: 5px;
}
.flow_design .flow > li > dl > dt {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
/*tab*/
.ul_tab {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.ul_tab > li a {
  border: 1px solid var(--primary);
  background-color: #fff;
  color: var(--primary);
  font-size: 15px;
  font-family: var(--pictx);
  font-weight: 500;
  padding: .5em .75em;
  border-radius: 50px;
}
.ul_tab > li a:hover,
.ul_tab > li.active a{
  background-color: var(--primary);
  color: #fff;
}
.ul_tab > li a.off {
  color: var(--notes);
  border: 1px solid var(--notes);
}
.ul_tab > li a.off:hover,
.ul_tab > li.active a.off {
  background-color: var(--line);
}
.tab_area_wrap {
  background-color: var(--primary_bg01);
  border-radius: 30px;
  padding: 50px;
}
.tab_area_wrap .area {
  display: none;
  width: 100%;
}
.tab_area_wrap .area.is-show {
  animation: fade 0.5s ease;
}
.tab_area_wrap .area_tt {
  font-size: 1.1em;
  font-family: var(--pictx);
  font-weight: 800;
  text-align: center;
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* modaal */
.modaal-inner-wrapper {
  max-width: 800px;
  width: 100% !important;
  margin: 0 auto;
}
.modaal-container {
  height: 100%;
}
/*news-投稿内容はpost.css-*/
.news_list > li {
  border-bottom: 1px solid var(--line);
}
.news_list > li a {
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
}
.news_list > li a:hover {
  background-color: var(--primary_bg02);
}
.news_list > li time {
  display: block;
  font-family: var(--entx);
  font-weight: 500;
}
/*色、背景*/
.white {
  color: #fff;
}
.black {
  color: var(--black);
}
.red {
  color: var(--red);
}
.primary {
  color: var(--primary);
}
.primary_sub {
  color: var(--primary_sub); 
}
.primary_sub02 {
  color: var(--primary_sub02); 
}
.notes {
  color: var(--notes);
}
.bgcw {
  background-color: #fff;
}
.bgcb {
  background-color: var(--black);
}
.bgcp {
  background-color: var(--primary);
}
.bgcg_sub {
  background-color: var(--primary_sub);
}
.bgcp_bg01 {
  background-color: var(--primary_bg01);
}
.bgcp_bg02 {
  background-color: var(--primary_bg02);
}

@media (min-width: 1024px) {

}
@media (min-width: 769px) {
  .table_schedule tbody th span {
    word-break: keep-all;
  }
}
@media screen and (max-width:1024px) {
  main {
    /* margin-top: 90px; */
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .contents {
    padding-top: 30px;
    /* padding-bottom: 80px; */
  }
  .title01_wrap {
    margin-bottom: 50px;
  }
  .title02 {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .box01,.box02 {
    padding: 30px;
  }
  .box02 .tt {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .ul_tab {
    gap: .75em .5em;
  }
  .ul_tab > li a {
    font-size: 12px;
    padding: 5px 10px;
  }
  .table01 td {
    padding: .5em;
  }
  .tab_area_wrap {
    padding: 30px 15px;
  }
  .tab_area_wrap .box01 {
    border-radius: 15px;
  }
  .table_schedule th,
  .table_schedule td {
    padding: .5em .25em;
  }
  .table_schedule tbody th {
    width: 10%;
    min-width: 5em;
    letter-spacing: -1px;
  }
  .modaal-inner-wrapper {
    height: 90vh !important;
  }
  /* 横スクロール*/
  .mob_scroll {
    width: 90%;
    margin: auto;
    overflow-x: scroll;
    position: relative;
    z-index: 10;
  }
}
@media screen and (max-width: 480px) {
  main {
    /* margin-top: 60px; */
  }
  .main_title_con {
    min-height: 300px;
  }
.main_title_con .main_title {
  top: 65%;
}
  .sec_news .ul_link > li .category {
    line-height: 1;
  }
}

/*---menu-------------------------
----------------------------------*/

/*header*/
.header {
  position: absolute;
  width: 100%;
}
.header_con {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  gap: 1em;
}
.header_con .logo {
  width: 35%;
  height: auto;
  max-width: 400px;
}
.header_con .nav_main {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  box-shadow: 0 4px 10px rgb(12 129 39 / 20%), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.header_con .nav_main ul.ul_menu {
  color: var(--primary);
  font-weight: 500;
  font-size: clamp(12px, 2vw, 18px);
  display: flex;
  justify-content: space-between;
  padding: 1em 3em;
  column-gap: 3em;
}

/*footer*/
.footer_con {
  padding-bottom: 30px;
}
.footer_img {
  position: relative;
  width: 100%;
  height: clamp(250px, 40vh, 750px);
  background-image: url(../img/provisional/footer_img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer_subnav {
  margin-top: 50px;
  margin-bottom: 50px;
}
.footer_subnav ul.flex {
  justify-content: center;
  gap: 1em 2em;
}
.footer_subnav ul.flex li+li {
  /* margin-left: 2em; */
}
@media (min-width: 1024px) {

}
@media screen and (max-width:1024px) {

}
@media (min-width: 769px) {
  .header_con .nav_main ul.ul_menu {
    padding: 1em 3em;
    column-gap: 3em;
  }
}

@media (max-width: 768px) {
  .header_con {
    flex-wrap: wrap;
    /* justify-content: center; */
    padding: 10px 7%;
  }
  .header_con > * {
    /* flex: 0 0 80%; */
  }
  .header_con .logo {
    width: 80%;
  }	
  .header_con .nav_main {/* border-radius: 5px; *//* max-width: 500px; */width: 100%;}
  .header_con .nav_main ul.ul_menu {
    column-gap: 2em;
  }

}
@media screen and (max-width: 480px) {

}
/*---.nav_main menu end---*/