@charset "utf-8";
/* CSS Information========

Table of Contents:
 * info
 
========================== */
#container {
  margin-bottom: 80px;
}
#container .topicpath {
  width: 90%;
  margin: 10px auto 0;
}
img {
  height: auto;
}
h2 {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #063641;
  margin: 35px 0 8px;
}
h2 img {
  width: auto;
  height: 75px;
  margin: 0 auto 10px;
}
#container .heading {
  width: 90%;
  margin: 0 auto 30px;
  padding: 30px 0 0;
}
/* ========================
　mainvisual
========================== */
.sub_fv .head_tit {
  width: 100%;
  text-align: center;
}

/* ========================
　con_plan
========================== */
.con_plan {
  background-color: #f0f0f0;
}
.con_plan h2 {
  margin: 16px 0 14px;
}
.con_plan .inner {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
}
.con_plan .wrap_img {
  position: relative;
}
.con_plan .wrap_img .slick-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  color: #fff;
}
.con_plan .wrap_img .slick-list,
.con_plan .wrap_img .slick-track {
  height: 100%;
  max-height: 700px;
}
.con_plan .wrap_img .slick-content p {
  position: absolute;
  width: 90%;
  color: #fff;
  -ms-transform: translate(-50%, -110%);
  -webkit-transform: translate(-50%, -110%);
  transform: translate(-50%, -110%);
}
.con_plan .wrap_img .slick-content > p img {
  height: auto;
  width: 80%;
  margin-left: -5px;
  opacity: 0.6;
}
.con_plan .wrap_img .slick-dots {
  position: static;
}
.con_plan .wrap_img .slick-prev,
.con_plan .wrap_img .slick-next {
  top: min(50%, 350px);
  transform: translateY(-50%);
}
.con_plan .wrap_plan .text {
  margin-bottom: 15px;
}
.con_plan .wrap_plan dl {
  display: flex;
  padding: 12px 4px;
  border-top: 1px solid #fff;
  flex-direction: column;
  row-gap: 4px;
}
.con_plan .wrap_plan dl:last-of-type {
  border-bottom: 1px solid #fff;
  margin-bottom: 15px;
}
.con_plan .wrap_plan dl dt {
  font-weight: 600;
}
.con_plan .wrap_plan dl dd {
  padding-left: 4px;
}
.con_plan .wrap_plan dl dd ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.con_plan .wrap_plan dl dd ul li + li {
  margin-top: 4px;
}
/* ========================
con_benefit
========================== */
.con_benefit .inner {
  width: 90%;
  margin: auto;
}
.section_column_item + .section_column_item {
  margin-top: 65px;
}
.con_benefit .benefit_text h3 {
  font-weight: 600;
  font-size: 18px;
  color: #063641;
  margin: 24px auto 16px;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: break-word;
  gap: 4px;
}
.con_benefit .benefit_text h3::before,
.con_benefit .benefit_text h3::after {
  content: "";
  width: 15%;
  height: 1px;
  background-color: #063641;
}
.con_benefit .benefit_text h3 .sub_header {
  font-size: 80%;
}
.benefit_body + .benefit_body {
  margin-top: 16px;
}
.con_benefit .benefit_img {
  margin-top: 16px;
}
.menu_list {
  margin-top: 8px;
}
.con_benefit .benefit_text .benefit_body.benefit_details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 8px;
  margin-bottom: 1em;
  line-height: 1.8;
  border-block: 1px solid #ccc;
  padding: 10px;
}
.benefit_text .link_text img {
  width: 0.8em;
}
.benefit_text .link_text {
  padding-inline: 0.5em;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .benefit_text .link_text:hover {
    text-decoration: none;
    opacity: 1;
  }
}
.benefit_text .menu_list_item {
  padding-inline: 0.5em;
}
/* =======================
		Accordion details summary
========================== */
.accordion_js-summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}

.accordion_js-summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

.accordion_js-summary_inner {
  cursor: pointer;
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: left;
  padding-right: 1.2em;
  position: relative;
  justify-content: space-between;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .accordion_js-summary_inner:hover {
    text-decoration: none;
  }
}
.accordion_js-icon {
  display: block;
  position: absolute;
  width: 11px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
  right: 0;
}

/* is-openedクラスが付与されたときのスタイル */
.accordion_js-details.is-opened .accordion_js-icon {
  transform: rotate(180deg);
}

/* アイコンのバーのスタイル */
.accordion_js-icon::before,
.accordion_js-icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 1px;
  background-color: #000;
}
.accordion_js-icon::before {
  left: 0;
  transform: rotate(45deg);
}
.accordion_js-icon::after {
  right: 0;
  transform: rotate(-45deg);
}

/* --------アコーディオンの中身のスタイル-------- */
.accordion_js-content {
  overflow: hidden;
}

.accordion_js-content_inner {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
/* ========================
　con_day
========================== */
.con_day {
  margin-top: 80px;
}
.con_day .inner {
  width: 90%;
  margin: 24px auto 0;
}
.wrap_schedule {
  background-color: #f0f0f0;
  padding: 25px 20px;
}
.schedule_header {
  font-size: 18px;
  color: #063641;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
  text-align: center;
}
.schedule_body {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 8px;
  margin-bottom: 1em;
  line-height: 1.8;
  margin-top: 20px;
  padding-inline: 2px;
  justify-content: center;
}
.wrap_schedule + .wrap_schedule {
  margin-top: 15px;
}
.con_day .link_plan {
  margin-top: 40px;
}
/*タブレット*/
@media screen and (min-width: 768px) {
  .sub_fv {
    height: 165px;
  }
  .sub_fv .head_bg img {
    height: auto;
  }
  /* ========================
　con_plan
========================== */
  .con_plan .wrap_plan dl {
    display: grid;
    grid-template-columns: min(32%, 150px) auto;
  }
  /* ========================
　con_benefit 
========================== */
  .con_benefit .benefit_text h3 .sub_header {
    padding-left: 15px;
  }
  /* ========================
　con_day
========================== */
  .con_day .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2%;
    max-width: 1200px;
  }
  .wrap_schedule + .wrap_schedule {
    margin-top: 0;
  }
}

/*タブレット(横)*/
@media screen and (min-width: 1024px) {
  .sub_fv {
    height: auto;
  }
  #container .topicpath {
    width: 1000px;
  }
  h2 {
    font-size: 22px;
    margin: 10px 0 5px;
    letter-spacing: 2px;
  }
  .container {
    width: 1000px;
    margin: 0 auto;
  }
  #container .heading {
    text-align: center;
    margin: 0 auto 50px;
    padding: 80px 0 0;
  }
  /* ========================
　con_plan
========================== */
  .con_plan h2 {
    margin-top: 0;
  }
  .con_plan .inner {
    width: 100%;
    display: flex;
    gap: 45px;
    padding-block: 50px;
  }
  .con_plan .inner .wrap_img {
    margin-left: 0;
    align-self: stretch;
    width: 50%;
  }
  .con_plan .inner .wrap_img .slick-track .slider-img > img {
    height: 100%;
    object-fit: cover;
  }
  .con_plan .inner .wrap_plan {
    padding-right: 5%;
  }
  .con_plan .wrap_faci .text {
    margin-bottom: 20px;
  }
  .con_plan .wrap_faci dl {
    padding: 8px 0;
  }
  /* ========================
　con_benefit
========================== */
  .con_benefit {
    margin-top: 64px;
  }
  .con_benefit h2 {
    font-size: 38px;
    margin-bottom: 24px;
  }
  .con_benefit .inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
  }
  .con_benefit .benefit_text h3 {
    margin-top: 0;
  }
  .con_benefit .inner .section_column_item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .section_column_item {
    display: flex;
  }
  .con_benefit .benefit_text h3 {
    text-align: left;
    font-size: 22px;
  }
  .con_benefit .benefit_text h3::before,
  .con_benefit .benefit_text h3::after {
    content: none;
  }
  .con_benefit .benefit_text h3 .sub_header {
    display: inline-block;
    padding-left: 4px;
  }
  .benefit_text {
    padding: 5px min(5%, 40px);
    width: 95%;
  }
  .con_benefit .benefit_text .benefit_body,
  .con_benefit .benefit_img {
    padding-inline: 4px;
  }
  .con_benefit .benefit_img {
    margin: 0;
    padding: 0;
  }
  .con_day h2 {
    font-size: 38px;
    margin-bottom: 24px;
  }
  .con_day h3 {
    font-size: 22px;
  }
  .schedule_body {
    gap: 8px 16px;
  }
  .wrap_schedule > * {
    max-width: 400px;
    margin-inline: auto;
  }
}
/* PCページ */
@media screen and (min-width: 1440px) {
  .container {
    margin-bottom: 100px;
  }
  h2 img {
    width: auto;
    height: 75px;
  }
  /* ========================
　con_plan
========================== */
  .con_plan .inner {
    justify-content: center;
  }
  .con_plan .inner .wrap_img {
    width: 48%;
  }
  .con_plan .inner .wrap_img .slider-img > img {
    max-height: unset;
    width: 100%;
  }
  .con_plan .inner .wrap_plan {
    width: 70%;
    max-width: 860px;
  }
  .section_column_item {
    column-gap: 50px;
  }
  .benefit_text {
    padding: 10px 0 0 0;
    max-width: 520px;
  }
}
@media screen and (min-width: 1920px) {
  .con_plan .inner .wrap_img {
    width: 53%;
    max-width: 1000px;
  }
}
