ttl-01/* ##############################################################################

    KEYFRAMES

############################################################################## */
@keyframes bounce {
  0% {
    transform: translate(0, 0);
  }
  16.6% {
    transform: translate(0, -20px);
    animation-timing-function: ease-in;
  }
  33.3% {
    transform: translate(0, 0);
  }
  49.8% {
    transform: translate(0, -14px);
    animation-timing-function: ease-in;
  }
  66.4% {
    transform: translate(0, 0);
  }
  83% {
    transform: translate(0, -4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes jumpFadeIn {
  0% {
    opacity: 0;
  }
  50% {
    transform: scale(1.02) translateY(-20px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes jump {
  50% {
    transform: scale(1.02) translateY(-20px);
  }
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes shine {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.shine {
  -webkit-animation: shine 0.6s steps(4) alternate infinite;
  -moz-animation: shine 0.6s steps(4) alternate infinite;
  animation: shine 0.6s steps(4) alternate infinite;
}
.delay-1s {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
.delay-15s {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.delay-2s {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}

.fadein-up {
  opacity: 0;
  transition: all 0.4s ease-out;
  transform: translateY(20px);
}
.fadein-up.animated {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .star {
    width: 8px;
  }
}

/* ##############################################################################

    COMMON

############################################################################## */

html {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
body {
  height: 100%;
  padding-top: 120px;
}
@media screen and (max-width: 1080px) {
  body {
    padding-top: 64px;
  }
}

/* layout
**************************************** */

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.inner-sm {
  max-width: 880px;
}
.inner-lg {
  max-width: 1440px;
}
.inner-xl {
  max-width: calc(100% - 112px);
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section_pdg-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}
body:not(.home) .section_pdg:nth-child(1) {
  padding-top: 40px;
}

@media print, screen and (max-width: 1080px) {
  /* --- inner --- */
  .inner {
    width: 90%;
  }
  .inner-xl {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  /* --- inner --- */
  .inner {
    width: 86%;
  }
  .inner-xl {
    max-width: 86%;
  }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section_pdg-sm {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .section_pdg:first-child {
    padding-top: 0;
  }
}

/* flex
**************************************** */

/* --- ざっくりflexレイアウト --- */
.flex-col1 {
  display: block;
}
.flex-col2,
.flex-col3,
.flex-col4 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-col2 > * {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col2 > *:nth-child(even) {
  margin-right: 0;
}
.flex-col3 > * {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col3 > *:nth-child(3n) {
  margin-right: 0;
}
.flex-col4 > * {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.flex-col4 > *:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  /* --- ざっくりflexレイアウト - sp --- */
  .flex-col2.flex-sp-block > *,
  .flex-col3.flex-sp-block > *,
  .flex-col4.flex-sp-block > * {
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
  }
  .flex-col2.flex-sp-block > *:last-child,
  .flex-col3.flex-sp-block > *:last-child,
  .flex-col4.flex-sp-block > *:last-child {
    margin-bottom: 0;
  }
  .flex-sp-col2 > *,
  .flex-sp-col2.flex-col3 > *:nth-child(3n) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col2 > *:nth-child(even) {
    margin-right: 0;
  }
  .flex-sp-col3 > *,
  .flex-sp-col3.flex-col4 > *:nth-child(4n) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col3 > *:nth-child(3n) {
    margin-right: 0;
  }
}

/* bg
********************************************** */
.lps_sec:nth-child(2n) {
  background-color: #f1fff8;
  margin-top: -60px;
}
.lps_sec:nth-child(2n) > .ttl-01 {
  padding-top: 20px;
}
.lps_sec:nth-child(odd) {
  z-index: 2;
}
.lps_sec:nth-child(odd)::after {
  content: "";
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 200px;
  border-bottom-right-radius: 2000px 300px;
  border-bottom-left-radius: 2000px 300px;
  margin-left: -150px;
  margin-right: -150px;
  padding-left: 150px;
  padding-right: 150px;
  padding-bottom: 200px;
  z-index: -1;
}
.bg-main {
  background-color: #00693e;
}
.bg-sub {
  background-color: #eee;
}
.bg-wh {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .lps_sec:nth-child(2n) {
    padding-top: 240px;
    margin-top: -180px;
  }
}

/* img
********************************************** */
.img-ctr {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.img-trim {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-trim.pos_rel::before {
  content: "";
  display: block;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.img-cover.pos_ab {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.img-contain {
  object-fit: contain;
  font-family: "object-fit: contain;";
}

/* ttl
********************************************** */
/* --- page_ttl --- */
.page_ttl {
  position: relative;
  overflow: hidden;
  height: 200px;
  color: #fff;
  width: 96%;
  margin: 10px auto 0;
  border-radius: 10px;
  background-color: #00623a;
}
.page_ttl--bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #eee;
  background-size: cover;
  background-position: center;
}
.page_ttl-jp {
  display: block;
  font-size: 2.2222222222222rem; /* 40px */
  transform: rotate(0.05deg);
}
.page_ttl-en {
  display: inline-block;
  text-transform: uppercase;
  font-size: 1rem; /* 18px */
  color: #f8b400;
}

/* --- ttl --- */
.ttl-01,
.ttl-02,
.ttl-03 {
  position: relative;
}
.ttl-01 {
  position: relative;
  font-size: 2rem;
  color: #333;
  line-height: 1.6;
  padding-bottom: 0.6em;
  text-align: center;
}
.ttl-01::after {
  content: "";
  position: absolute;
  background: url(../images/common/header--left-line.png);
  width: 147px;
  height: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.ttl-02,
.lps_parts--img_text .inner-lg .ttl-03 {
  font-size: 1.7777777777778rem;
  line-height: 1.56;
  color: #00693e;
  padding-bottom: 0.6em;
}
.ttl-02::after,
.lps_parts--img_text .inner-lg .ttl-03::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 6px;
  border-top: 2px solid #f8b400;
  border-bottom: 2px solid #f8b400;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.lps_parts--img_text .inner-lg .ttl-03::after {
  right: auto;
}
.ttl-03 {
  font-size: 1.5555555555556rem; /* 28px */
}
.lps_sec .ttl-01,
.lps_sec .ttl-02,
.lps_sec .ttl-03 {
  z-index: 1;
}
.lps_sec .ttl-01,
.lps_sec .ttl-02,
.lps_sec .ttl-03:not(:last-child) {
  margin-bottom: 1em;
}
.lps_sec .column-3 .ttl-03,
.lps_sec .column-4 .ttl-03 {
  font-size: 1.3333333333333rem; /* 24px */
}
.lps_sec .ttl-03:not(:first-child) {
  margin-top: 2em;
}

@media screen and (max-width: 767px) {
  /* --- page_ttl --- */
  .page_ttl {
    height: 120px;
  }
  .page_ttl-jp {
    font-size: 1.5555555555556rem; /* 28px */
  }
  .page_ttl-en {
    font-size: 0.88888888888889rem; /* 16px */
  }

  /* --- ttl --- */
  .ttl-01 {
    font-size: 1.857rem; /* 24px */
  }
  .ttl-02 {
    font-size: 1.429rem; /* 20px */
  }
  .ttl-03,
  .lps_sec .column-3 .ttl-03,
  .lps_sec .column-4 .ttl-03,
  .lps_parts--img_text .inner-lg .ttl-03 {
    font-size: 1.3333333333333rem; /* 24px */
    text-align: center;
  }
}

/* breadcrumbs
**************************************** */
.breadcrumbs {
  padding: 16px 0;
}
.breadcrumbs a {
  color: #00693e;
  text-decoration: underline;
}
.breadcrumbs a:hover {
  text-decoration: none;
}
.breadcrumbs .breadcrumb_last {
  display: table-cell;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* txt
**************************************** */
.txt-lg {
  font-size: 1.1111111111111rem; /* 20px */
}
.txt-sm {
  font-size: 0.88888888888889rem; /* 16px */
}
.txt-wh,
.txt-wh * {
  color: #fff;
}
.txt-main,
.txt-main * {
  color: #00693e;
}
.txt-sub,
.txt-sub * {
  color: #eee;
}

/* --- font --- */
.font-jp {
  font-family: 秀英丸ゴシック B !important;
}

@media screen and (max-width: 767px) {
  .txt-lg {
    font-size: 1.0714285714286rem; /* 15px */
  }
  .txt-sm {
    font-size: 0.92857142857143rem; /* 13px */
  }
}

/* btn
********************************************** */
.btn + .btn {
  margin-top: 8px;
}
.btn a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 14px 40px;
  border-radius: 60px;
  width: 100%;
  max-width: 360px;
  color: #333;
  text-align: center;
  background-color: #fffbf0;
  border: 1px solid #ece3cc;
}
.btn svg {
  fill: #f8b400;
}
.btn a:hover svg {
  fill: #fff;
}
.btn a:hover {
  background-color: #00693e;
  border-color: #00693e;
  color: #fff;
}
.btn a:not([target="_blank"]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"])::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 40px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1px;
  border-right: solid 1px;
  transform: rotate(45deg);
  transition: all 0.4s ease-out;
}
.btn a:not([target="_blank"]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"]):hover::before {
  border-color: #00693e;
  z-index: 1;
}
.btn a:not([target="_blank"]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"]):hover::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 30px;
  display: block;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 12px;
}
.btn.file a::before,
.btn.file a::after {
  display: none !important;
}
.btn.btn-next_page a {
  max-width: 100%;
  text-align: left;
}
.btn.btn_relate a {
  max-width: 500px;
}

/* --- btn-wh --- */
.btn-wh a {
  color: #333;
  background-color: #fff;
}
.btn-wh svg {
  fill: #333;
}
.btn-wh a:hover {
  color: #fff;
}
.btn-wh a:hover svg {
  fill: #fff;
}

@media screen and (max-width: 767px) {
  .btn a {
    max-width: 100%;
    padding: 10px 40px;
  }
}

/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-color: #fff;
  z-index: 9990;
  transition: all 0.4s ease-out;
  border-top: 4px solid #00693e;
}
.header::after {
  content: "";
  position: absolute;
  background: url(../images/common/header--left-line.png);
  width: 440px;
  height: 4px;
  top: -4px;
}
.header.header-sm {
  height: 90px;
}
.header > .inner {
  width: 100%;
  max-width: 90%;
  height: 100%;
  padding-left: 24px;
}
.header--logo a,
.footer--logo a {
  display: block;
}
.header--logo a:hover,
.footer--logo a:hover {
  opacity: 0.7;
}
.footer--logo a svg {
  max-width: 365px;
  height: auto;
}
.header--logo a svg {
  transition: all 0.4s;
  width: 420px;
  height: auto;
}
.header-sm .header--logo a svg {
  width: 300px;
  height: auto;
}

@media print, screen and (min-width: 1081px) {
  .header--nav,
  .gnav,
  .gnav > .flex,
  .gnav ul,
  .gnav li,
  .gnav a {
    height: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .header {
    height: 64px;
  }
  .header::after {
    width: 147px;
  }
  .header.header-sm {
    height: 64px;
  }
  .header > .inner {
    padding-left: 15px;
  }
  .header--logo a svg {
    width: 200px;
    max-height: 40px;
  }
  .header-sm .header--logo a svg {
    width: auto;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer--logo a svg {
    max-width: 100%;
  }
}

/* gnav
********************************************** */
.gnav a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 8.9vw;
}
.gnav--link {
  padding: 0 18px;
}
.gnav--menu .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  min-height: 38px;
}
.gnav--menu .icon svg {
  transition: all 0.4s;
  width: 40px !important;
  height: 38px !important;
  fill: #f8b400;
}
.header-sm .gnav--menu .icon {
  height: 28px;
  min-height: 28px;
  transition: all 0.4s;
}
.header-sm .gnav--menu .icon svg {
  width: 35px !important;
  height: 24px !important;
}
.gnav--menu .menu-image-title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  transition: all 0.4s;
}
.header-sm .gnav--menu .menu-image-title-wrap {
  height: 34px;
}
.header-sm .gnav--menu li:nth-child(4) .menu-image-title-wrap {
  height: 45px;
}
.gnav--menu > li > .gnav--link {
  transition: all 0.4s;
  transform: rotate(0.05deg);
}
.gnav--menu > li > .gnav--link:hover {
  background: #f5fffb;
}
.gnav--menu > li > .gnav--link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #00693e;
  transform: scale(0, 1);
  transition: 0.4s;
}
.gnav--menu > li > .gnav--link:hover::after {
  transform: scale(1);
}
.gnav--menu .menu-image-title-after {
  padding-left: 0;
  font-size: 0.88888888888889rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.head_sub_nav--wrap {
  display: block;
  width: 100%;
  position: absolute;
  z-index: 100;
  transition: all 0.4s ease-out;
  opacity: 0;
  pointer-events: none;
}
.menu-item-has-children {
  position: relative;
}
.head_sub_nav li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.head_sub_nav a {
  display: block;
  padding: clamp(12px, 0.833vw, 14px);
  font-size: clamp(12px, 0.833vw, 14px);
}
@media screen and (min-width: 1081px) {
  .gnav--menu > li > .gnav--link .icon::before {
    content: "";
    position: absolute;
    background: #d9d9d9;
    height: 54%;
    width: 1px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnav--menu > li:last-child > .gnav--link .icon::after {
    content: "";
    position: absolute;
    background: #d9d9d9;
    height: 54%;
    width: 1px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (max-width: 1080px) {
  .gnav--menu .icon {
    height: 24px;
    min-height: 24px;
    width: 15%;
  }
  .gnav--menu .icon svg {
    height: 24px;
    width: auto;
  }
  .gnav--menu .menu-image-title-wrap {
    width: 80%;
    justify-content: flex-start;
    height: 45px;
  }
  .header-sm .gnav--menu .menu-image-title-wrap {
    height: 45px;
  }
  .gnav--menu > li > .gnav--link::after {
    display: none;
  }
  .header .gnav--menu .icon svg,
  .header-sm .gnav--menu .icon svg {
    width: auto !important;
    height: 24px !important;
  }
}

/* ---CTA --- */
.cta_tel a {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
}
.cta_tel a > span {
  display: block;
}
.cta_tel .tel {
  font-size: 1.3333333333333rem; /* 24px */
}
.cta_tel .num {
  font-size: 1.6666666666667rem; /* 30px */
}
.gnav--tel,
.gnav--contact {
  margin-left: 8px;
}
.gnav--tel a {
  display: flex !important;
  flex-direction: column;
}
.gnav--contact a {
  padding: 24px;
}
.gnav--contact svg {
  fill: #fff;
  margin-right: 8px;
}
.gnav--cta .tel {
  font-size: 1.1111111111111rem; /* 20px */
}
.gnav--cta .num {
  font-size: 1.3333333333333rem; /* 24px */
}
.gnav--cta .hours {
  font-size: 0.77777777777778rem; /* 14px */
}

@media screen and (max-width: 1560px) and (min-width: 1080px) {
  .header--logo {
    margin: 0 20px 0 0;
  }
  .gnav--menu .icon {
    height: 26px;
    min-height: 26px;
  }
  .gnav--menu .icon svg {
    height: 28px !important;
  }
  .gnav--menu .icon {
    height: 26px;
    min-height: 26px;
  }
  .gnav--menu .menu-image-title-wrap {
    height: 42px;
  }
  .gnav--menu .menu-image-title-after {
    line-height: 1.2;
    white-space: nowrap;
  }
  .gnav--link {
    padding: 0 12px;
  }
  .header-sm .gnav--menu .icon svg {
    height: 100%;
  }
}
@media screen and (max-width: 1580px) and (min-width: 1300px) {
  body {
    padding-top: 100px;
  }
  .header {
    height: 100px;
  }
  .header--logo a svg {
    width: 350px;
  }
  .gnav a {
    min-width: 8.9vw;
  }
  .header.header-sm {
    height: 80px;
  }
  .header-sm .gnav--menu .icon {
    height: 26px;
    min-height: 26px;
  }
  .header-sm .gnav--menu .icon {
    height: 20px;
    min-height: 20px;
  }
  .gnav--menu .menu-image-title-after {
    font-size: 0.77777777777778rem;
  }
  .gnav--menu .menu-image-title-after small {
    font-size: 0.66666666666667rem;
  }
  .header-sm .gnav--menu li .menu-image-title-wrap {
    height: 28px;
  }
  .header-sm .gnav--menu li:nth-child(4) .menu-image-title-wrap {
    height: 36px;
  }
}
@media screen and (max-width: 1299px) and (min-width: 1081px) {
  body {
    padding-top: 90px;
  }
  .header {
    height: 90px;
  }
  .header--logo a svg {
    width: 280px;
  }
  .header.header-sm {
    height: 70px;
  }
  .header-sm .gnav--menu .icon {
    height: 26px;
    min-height: 26px;
  }
  .header-sm .gnav--menu .icon {
    height: 20px;
    min-height: 20px;
  }
  .gnav--menu .menu-image-title-after {
    font-size: 0.66666666666667rem;
  }
  .gnav--menu .menu-image-title-after small {
    font-size: 0.55555555555556rem;
  }
  .header-sm .gnav--menu li .menu-image-title-wrap {
    height: 28px;
  }
  .header-sm .gnav--menu li:nth-child(4) .menu-image-title-wrap {
    height: 36px;
  }
}

@media print, screen and (min-width: 1081px) {
  .gnav {
    display: flex;
  }
  .gnav_btn,
  .tel_btn {
    display: none;
  }
  .gnav--link {
    text-align: center;
  }
  .gnav--menu > li > .gnav--link:not([href="javascript:void(0);"]):hover::after,
  .gnav--menu > li.current_page_item > .gnav--link::after {
    right: 0;
    transform: scale(1);
  }
  .gnav--menu > li > .gnav--link {
    flex-direction: column;
  }
  .head_sub_nav a {
    background-color: #fff;
  }
  .gnav_sub_toggle {
    display: none;
  }
  .gnav--contact a {
    border-radius: 0;
  }
  /* hover */
  .gnav--menu .menu-item-has-children:hover .head_sub_nav--wrap {
    opacity: 1;
    pointer-events: auto;
  }
  .head_sub_nav a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1080px) {
  .gnav,
  .gnav_overlay {
    position: fixed;
    top: 64px;
    right: 0;
    height: calc(100% - 64px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-out;
  }
  .gnav {
    width: 80%;
    margin: 0;
    padding: 24px 7%;
    overflow: scroll;
    background-color: #f1fff8;
    z-index: 300;
    transform: translateX(100%);
    -webkit-overflow-scrolling: touch;
  }
  .gnav_overlay {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .gnav.active,
  .gnav_overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  .gnav.active {
    transform: translateX(0);
  }
  .gnav--menu,
  .gnav--cta {
    display: block;
  }
  .gnav--menu li {
    position: relative;
    display: block;
    width: 100%;
  }
  .gnav--menu li:not(:last-child) {
    border-bottom: 1px dotted #00693e;
  }
  .gnav--menu a {
    padding: 18.5px 16px;
  }
  .gnav--menu li:not(.menu-item-has-children) a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 1px solid #00693e;
    border-right: 1px solid #00693e;
    transform: rotate(45deg);
  }
  .head_sub_nav--wrap {
    position: relative;
    width: 100%;
    border-top: 1px dotted #00693e;
    transition: none;
    opacity: 1;
    pointer-events: inherit;
    display: none;
  }
  .menu-item-has-children.active .head_sub_nav--wrap {
    opacity: 1;
    pointer-events: auto;
  }
  .head_sub_nav a {
    padding-left: 32px;
  }
  .gnav_sub_toggle {
    position: absolute;
    top: 0;
    right: -20px;
    width: 64px;
    height: 64px;
    transition: all 0.4s ease-out;
    color: #00693e;
  }
  .gnav_sub_toggle::before,
  .gnav_sub_toggle::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 11px;
    height: 1px;
    border-bottom: 1px solid;
  }
  .gnav_sub_toggle::after {
    transform: rotate(90deg);
  }
  .gnav_sub_toggle.active {
    transform: rotate(180deg);
  }
  .current_page_item .gnav_sub_toggle {
    color: #fff;
  }
  .head_sub_nav {
    position: relative;
  }
  .tel_btn,
  .gnav_btn {
    position: fixed;
    top: 0;
    width: 64px;
    height: 64px;
    border-left: 1px solid #e7e5e4;
    z-index: 9999;
  }
  .tel_btn {
    right: 64px;
  }
  .tel_btn a {
    display: flex !important;
    width: 100%;
    height: 100%;
  }
  .tel_btn svg {
    fill: #00693e;
  }
  .gnav_btn {
    right: 0;
    transition: all 0.4s ease-out;
  }
  .gnav_btn.active {
    background-color: #f1fff8;
  }
  .gnav_btn--lines {
    position: relative;
    width: 24px;
    height: 16px;
  }
  .gnav_btn--lines span {
    transition: all 0.4s ease-out;
    box-sizing: border-box;
  }
  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00693e;
  }
  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }
  .gnav_btn--lines span:nth-of-type(2) {
    top: 7px;
  }
  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 0;
  }
  .active .gnav_btn--lines span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  .active .gnav_btn--lines span:nth-of-type(2) {
    opacity: 0;
  }
  .active .gnav_btn--lines span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }

  /* ---CTA --- */
  .gnav--cta li:not(:last-child) {
    margin-bottom: 16px;
  }
  .gnav--tel {
    margin-left: 0;
    text-align: center;
  }
  .gnav--contact {
    margin-left: 0;
  }
  .gnav--contact a {
    padding: 10px 16px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .gnav--menu a {
    padding: 5px 0;
    justify-content: space-between;
  }
  .gnav--contact svg {
    width: 16px;
    height: 11px;
  }
}

/* header--search_box
********************************************** */
.header--search_box label {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .header--search_box {
    position: absolute;
    right: 0;
    top: 100%;
    background: #f1fff8;
    padding: 10px 20px;
    border-bottom-left-radius: 10px;
  }
  .header--search_box input {
    border: 1px solid #333;
    padding: 8px 16px;
    width: 266px;
    letter-spacing: 0.05em;
    border-radius: 5px;
  }
  .header--search_box button {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 8px 16px;
    appearance: none;
    background: #00693e;
    color: #fff;
    letter-spacing: 0.05em;
    border-radius: 5px;
  }
}
@media screen and (max-width: 767px) {
  .header--search_box input {
    border: 1px solid #333;
    padding: 8px 16px;
    width: 100%;
    border-radius: 5px;
    margin: 10px 0 5px;
  }
  .header--search_box button {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 8px 16px;
    appearance: none;
    background: #00693e;
    color: #fff;
    letter-spacing: 0.05em;
    border-radius: 5px;
    width: 100%;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */

.footer {
  position: relative;
  background-color: #cbecdd;
  margin-top: 55px;
}
.footer::before {
  content: "";
  background: url(../images/common/footer--line-ptn-01.png) top / 189px 71px repeat-x;
  height: 71px;
  width: 100%;
  position: absolute;
  top: -71px;
  z-index: 3;
}

/* sns_area
********************************************** */
.sns_area {
  text-align: center;
  margin: 0 0 20px;
}
.sns--list li {
  display: inline-block;
  margin: 0 8px;
}
.sns--list li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  border-radius: 3px;
  color: #fff;
}
.sns--list li a.twitter {
  background-color: #55acee;
}
.sns--list li a.facebook {
  background-color: #3b5998;
}
.sns--list li a.instagram {
  background-color: #cf2e92;
}

@media screen and (max-width: 767px) {
  .sns--list li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    padding: 0;
  }
  .sns--list li a:hover::before {
    display: none;
  }
}

/* footer_top
********************************************** */
.footer_top {
  padding-top: 15px;
}
.fnav {
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
  padding: 35px 5%;
}
.fnav--menu .fnav--menu--cat {
  padding-left: 1.5em;
}
.fnav--menu li .fnav--menu--child {
  padding-left: 1em;
}
.fnav--menu a {
  display: block;
  padding: 0 1em;
}
.fnav--menu a:hover {
  color: #00693e;
}
.fnav--menu li a {
  font-size: 0.83333333333333rem;
  position: relative;
}
.fnav--menu > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 6px solid #94d1c9;
  top: 10px;
  margin: auto;
  transition: 0.2s;
}
.fnav--menu--child > li > a {
  padding-left: 1.4em;
}
.fnav--menu--child > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  box-sizing: border-box;
  width: 10px;
  height: 1px;
  background: #94d1c9;
  top: 14px;
  margin: auto;
  transition: 0.2s;
}
.fnav--menu .fnav--menu--cat > li {
  font-size: 0.83333333333333rem;
}
.fnav_sub--menu li a {
  font-size: 0.83333333333333rem;
  position: relative;
  padding: 0 15px;
}
.fnav_sub--menu li a:hover {
  color: #00693e;
}
.fnav--menu > li > a:hover::before {
  border-left: 6px solid #00693e;
}
.fnav--menu--child > li > a:hover::before {
  background: #00693e;
}
.fnav_sub--menu li:not(:last-child) a::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 100%;
  background: #333;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 1300px) and (min-width: 768px) {
  .fnav {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer_top {
    padding-top: 0;
  }
  .fnav--menu li {
    width: 100%;
  }
  .fnav--menu li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .fnav--menu li a {
    position: relative;
    padding: 0.4em 0.4em 0.4em 1.2em;
    font-size: 1rem;
  }
  .fnav--menu a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 1px solid;
    border-right: 1px solid;
  }
  .fnav_sub--menu li:not(:last-child) a::after {
    display: none;
  }
  .fnav--menu > li > a::before {
    top: 0;
  }
  .fnav--menu--child > li > a::before {
    top: 2px;
  }
}

/* footer_btm
*************************************************** */
.footer_btm {
  padding: 8px 0;
}
.pbl a {
  opacity: 0.5;
}
.pbl a:hover {
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  .copyright {
    margin-right: 1em;
  }
}

/* ##############################################################################

    INDEX

############################################################################## */

/* hero
********************************************** */
.hero {
  position: relative;
  height: 752px;
  background: url(../images/top/hero_bg.jpg);
  background-size: auto 100%;
  background-position: bottom center;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1vw;
  background: url(../images/top/hero--bottom.png);
  background-size: auto 100%;
  background-position: bottom center;
  width: 100vw;
  height: 5.6vw;
}
.hero--catch {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url(../images/top/fv-circle.svg) no-repeat center / contain;
  width: 697px;
  height: 591px;
  margin: auto;
  line-height: 1.4;
}
.hero--catch.zoom {
  animation: zoomIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
.hero--catch p {
  padding: 0 0 20px 0;
}
.hero--catch p span {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 3.2s;
}
.hero--icons_around li:nth-child(1) svg {
  position: absolute;
  top: 145px;
  left: 0;
  width: 158px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2.9s;
}
.hero--icons_around li:nth-child(2) svg {
  position: absolute;
  bottom: 20px;
  left: 100px;
  width: 144px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2.6s;
}
.hero--icons_around li:nth-child(3) svg {
  position: absolute;
  bottom: 140px;
  right: -15px;
  width: 147px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2.3s;
}
.hero--icons_around li:nth-child(4) svg {
  position: absolute;
  top: 0;
  right: 170px;
  width: 101px;
  opacity: 0;
  transform: rotate(15deg);
  animation: fadeIn 1s ease forwards;
  animation-delay: 2s;
}
.hero--icons_around li:nth-child(5) .imgarea {
  position: absolute;
  bottom: 20px;
  right: 170px;
  width: 101px;
  opacity: 0;
  animation: jumpFadeIn 1s ease forwards;
  animation-delay: 3.8s;
}
.hero--catch .label {
  background: #00693e;
  border-radius: 5px;
  color: #fff;
  padding: 0 10px;
  margin-right: 5px;
}
.hero--catch .marker {
  background: linear-gradient(transparent 70%, #fff390 70%);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 3.5s;
}
.hero--catch .narrow {
  line-height: 1.3;
}
.hero_slide {
  overflow: hidden;
}
.hero_slide-sp {
  display: none !important;
}
.hero_slides,
.hero_slide,
.hero_slide .slick-list,
.hero_slide .slick-track,
.hero_slide .slick-slider,
.hero_slide .slick-slide {
  width: 100%;
  height: 100% !important;
}
.hero_slide .slick-list {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1601px) {
  .hero {
    height: 45vw;
    background-size: 100% auto;
  }
}
@media screen and (min-width: 768px) {
  .hero--icons_around li:nth-child(1) svg {
    width: 158px;
    height: 165px;
  }
  .hero--icons_around li:nth-child(2) svg {
    width: 144px;
    height: 153px;
  }
  .hero--icons_around li:nth-child(3) svg {
    width: 147px;
    height: 119px;
  }
  .hero--icons_around li:nth-child(4) svg {
    width: 136px;
    height: 168px;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    height: 420px;
  }
  .hero_slide-pc {
    display: none !important;
  }
  .hero_slide-sp {
    display: block !important;
  }
  .hero--catch {
    width: 374px;
    height: 318px;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 1.143rem;
  }
  .hero--catch p {
    padding: 0;
  }
  .hero--catch .fz-40 {
    font-size: 1.429rem;
  }
  .hero--icons_around li:nth-child(1) svg {
    width: 90px;
    top: 25px;
    left: 12px;
  }
  .hero--icons_around li:nth-child(2) svg {
    width: 80px;
    bottom: 5px;
    left: 45px;
  }
  .hero--icons_around li:nth-child(3) svg {
    width: 90px;
    right: 5px;
    bottom: 70px;
  }
  .hero--icons_around li:nth-child(4) svg {
    width: 60px;
    right: 80px;
  }
  .hero--icons_around li:nth-child(5) .imgarea {
    width: 54px;
    right: 100px;
    bottom: -24px;
  }
}

/* home_news
********************************************** */
.home_news {
  padding: 120px 0 120px;
  background-color: #fff;
}
.home_news .news_list {
  flex: 1;
}
.news_list--ttl {
  display: block;
  position: relative;
  margin-right: 40px;
  padding: 0;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .home_news {
    padding: 20px 5%;
  }
  .news_list--ttl {
    width: auto;
    float: none;
    height: auto;
    margin-bottom: 16px;
  }
}

/* home_sitenav
********************************************** */
.home_sitenav {
  background: #f1fff8;
  padding-top: 35px;
  padding-bottom: 40px;
}
.home_sitenav .sitenav--left {
  max-width: 640px;
  width: 54%;
}
.home_sitenav .sitenav--btns li a {
  position: relative;
  height: 148px;
  padding: 0 10px 0 65px;
  border-radius: 16px;
  font-size: 1.2222222222222rem;
}
.home_sitenav .sitenav--btns .single-btn {
  width: calc(50% - 15px);
}
.home_sitenav .sitenav--btns .single-btn:nth-child(odd) {
  margin-right: 30px;
}
.home_sitenav .sitenav--btns .single-btn:nth-child(1),
.home_sitenav .sitenav--btns .single-btn:nth-child(2) {
  margin-bottom: 25px;
}
.home_sitenav .sitenav--btns li a::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #00693e;
  border-radius: 20px;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
.home_sitenav .sitenav--btns li a:hover::before {
  left: 25px;
  background: #fff;
}
.home_sitenav .sitenav--btns li a::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.2s;
}
.home_sitenav .sitenav--btns li a:hover::after {
  left: 35px;
}
.home_sitenav .sitenav--btns li a {
  border: 2px solid #b2b2b2;
  background: #fff;
  box-shadow: 5px 5px 0 #d9e6e0;
}
.home_sitenav .sitenav--btns li.btn-try a:hover {
  color: #fff;
  background-color: #00693e;
}
.home_sitenav .sitenav--btns li.btn-try a:hover::after {
  border-color: #00693e;
}
.home_sitenav .sitenav--btns li.btn-study a:hover {
  border: 4px solid #ec6a06;
  color: #fff;
  background: #ec6a06;
}
.home_sitenav .sitenav--btns li.btn-study a:hover {
  color: #fff;
  background-color: #ec6a06;
}
.home_sitenav .sitenav--btns li.btn-study a:hover::after {
  border-color: #ec6a06;
}
.home_sitenav .sitenav--btns li.btn-study a::before {
  background: #ec6a06;
}
.home_sitenav .sitenav--btns li.btn-study a:hover::before {
  background: #fff;
}
.home_sitenav .sitenav--btns li.btn-study a:hover::after {
  border-top: 2px solid #ec6a06;
  border-right: 2px solid #ec6a06;
}

.home_sitenav .sitenav--btns li.btn-join a:hover {
  border: 4px solid #00a6d9;
  color: #fff;
  background: #00a6d9;
}
.home_sitenav .sitenav--btns li.btn-join a:hover {
  color: #fff;
  background-color: #00a6d9;
}
.home_sitenav .sitenav--btns li.btn-join a:hover::after {
  border-color: #00a6d9;
}
.home_sitenav .sitenav--btns li.btn-join a::before {
  background: #00a6d9;
}
.home_sitenav .sitenav--btns li.btn-join a:hover::before {
  background: #fff;
}
.home_sitenav .sitenav--btns li.btn-join a:hover::after {
  border-top: 2px solid #00a6d9;
  border-right: 2px solid #00a6d9;
}
.home_sitenav .sitenav--btns li.btn-kids a {
  background-color: #fefcd6;
}
.home_sitenav .sitenav--btns li.btn-kids a:hover {
  border: 2px solid #00a6d9;
  color: #333;
  background: #fff20b;
}
.home_sitenav .sitenav--btns li.btn-kids a:hover::before {
  background: #00a6d9;
}
.home_sitenav .sitenav--btns li.btn-kids .star_1 {
  left: -10px;
  top: 40px;
}
.home_sitenav .sitenav--btns li.btn-kids .star_2 {
  left: 10px;
  top: 15px;
}
.home_sitenav .sitenav--btns li.btn-kids .star_3 {
  left: 40px;
  top: 10px;
}
.home_sitenav .sitenav--btns li.btn-kids .star_4 {
  right: 30px;
  top: 10px;
}
.home_sitenav .sitenav--btns li.btn-kids .star_5 {
  right: 12px;
  top: 35px;
}
.home_sitenav .sitenav--btns li.btn-kids a .stars {
  transition: 0.2s;
}
.home_sitenav .sitenav--btns li.btn-kids a:hover .stars {
  opacity: 0;
}
.home_sitenav .sitenav--btns li.btn-kids a::before {
  background: #00a6d9;
}
.home_sitenav .sitenav--btns li.btn-kids a span::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -16px;
  right: -20px;
  background: url(../images/top/cr-minamo-01.png) no-repeat left / 73px 77px,
    url(../images/top/cr-minamo-02.png) no-repeat right / 60px 90px;
  height: 90px;
}
.home_sitenav .sitenav--right {
  width: 40%;
}
/* .home_sitenav .sitenav--right .imgarea {
    width: 26%;
  } */
.home_sitenav .sitenav--right .balloon-cont {
  position: absolute;
  width: 194px;
  height: 140px;
  left: 128px;
  transform: rotate(8deg);
  color: #fff;
  top: 34px;
}

@media screen and (max-width: 1180px) and (min-width: 768px) {
  .home_sitenav .sitenav--btns .single-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .home_sitenav .sitenav--btns li a {
    height: 84px;
    font-size: 1rem;
    text-align: center;
  }
  .home_sitenav .sitenav--btns .single-btn:nth-child(odd) {
    margin-right: 0;
  }
  .home_sitenav .sitenav--left {
    width: 45%;
  }
  .home_sitenav .sitenav--right {
    width: 50%;
  }
  .home_sitenav .sitenav--btns li.btn-kids a span::after {
    left: -48px;
    bottom: -50px;
  }
}

@media screen and (max-width: 767px) {
  .home_sitenav {
    padding-top: 40px !important;
  }
  .home_sitenav .sitenav--btns .single-btn {
    width: 100%;
  }
  .home_sitenav .sitenav--btns .single-btn:not(:last-child) {
    margin-bottom: 10px;
  }
  .home_sitenav .sitenav--btns li a {
    height: 54px;
    border-radius: 10px;
    font-size: 1rem;
    padding: 0 30px 0 50px;
  }
  .home_sitenav .sitenav--btns .single-btn:nth-child(odd) {
    margin-right: 0;
  }
  .home_sitenav .sitenav--left {
    width: 100%;
  }
  .home_sitenav .sitenav--btns li.btn-kids a span::after {
    left: -48px;
    bottom: -50px;
  }
  .home_sitenav .sitenav--btns li.btn-try a,
  .home_sitenav .sitenav--btns li.btn-kids a {
    border-width: 2px;
  }
  .home_sitenav .sitenav--btns li a::before {
    width: 20px;
    height: 20px;
  }
  .home_sitenav .sitenav--btns li a::after {
    left: 26px;
    width: 6px;
    height: 6px;
  }
  .home_sitenav .sitenav--btns li.btn-kids a span::before {
    height: 24px;
    top: -12px;
    left: -15px;
    right: -15px;
    background-size: contain;
  }
  .home_sitenav .sitenav--btns li.btn-kids a span::after {
    height: 54px;
    bottom: -32px;
    left: -6%;
    right: -6%;
    background-size: contain;
  }
  .home_sitenav .sitenav--btns li.btn-kids a {
    background-color: #fff;
  }
  .home_sitenav .sitenav--btns li.btn-kids .star_1 {
    left: -12px;
    top: 15px;
  }
  .home_sitenav .sitenav--btns li.btn-kids .star_2 {
    left: 5px;
    top: 3px;
  }
  .home_sitenav .sitenav--btns li.btn-kids .star_3 {
    left: 5px;
    top: 3px;
  }
  .home_sitenav .sitenav--btns li.btn-kids .star_4 {
    left: 20px;
    top: 5px;
  }
  .home_sitenav .sitenav--btns li.btn-kids .star_5 {
    right: 5px;
    top: 15px;
  }
}

/* sec-head
********************************************** */
.home .sec-head {
  opacity: 0;
}
.home .sec-head.on {
  opacity: 1;
  animation: jump 0.4s linear;
}
.sec-head-01 {
  margin-bottom: 18px;
}
.sec-head-01 .ttl-wrap {
  margin-top: 38px;
  margin-left: 36px;
  padding-top: 20px;
}
.sec-head-01 .ttl-wrap::after {
  content: "";
  position: absolute;
  background: url(../images/common/header--left-line.png);
  width: 147px;
  height: 4px;
  top: 0;
  left: 0;
  margin: auto;
}
.sec-head-01 .heading-jp {
  font-size: 2rem;
}
.sec-head-02 {
  margin-bottom: 2em;
}
.sec-head-02 .heading-jp {
  position: relative;
  color: #00693e;
  font-size: 1.7777777777778rem;
  padding-bottom: 0.6em;
}
.sec-head-02 .heading-jp::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 6px;
  border-top: 2px solid #f8b400;
  border-bottom: 2px solid #f8b400;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.sec-head-03 .heading-jp {
  position: relative;
  font-size: 2rem;
  padding-bottom: 0.6em;
}
.sec-head-03 .ttl-wrap::after {
  content: "";
  position: absolute;
  background: url(../images/common/header--left-line.png);
  width: 147px;
  height: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .sec-head-01 .heading-jp {
    font-size: 1.429rem;
  }
  .sec-head-01 .imgarea img {
    height: 100px;
    width: auto;
  }
  .sec-head-02 .heading-jp {
    font-size: 1.429rem;
  }
  .sec-head-03 .heading-jp {
    font-size: 1.429rem;
  }
  .sec-head-03 .imgarea svg {
    height: 12vw;
    width: auto;
  }
}

.home .maincont {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s;
}
.home .maincont.on {
  opacity: 1;
  transform: translate(0, 0);
}

/* link
********************************************** */
.link a.pos_ab {
  position: absolute;
  top: -50px;
  right: 0;
}
.link a {
  position: relative;
  padding-left: 30px;
  color: #00693e;
  font-size: 0.88888888888889rem;
}
.link a::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #00693e;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
.link a:hover::before {
  left: 5px;
}
.link a::after {
  content: "";
  position: absolute;
  left: 4px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
.link a:hover::after {
  left: 9px;
}
@media screen and (max-width: 767px) {
  .link a.pos_ab {
    top: auto;
    right: 0;
    bottom: -32px;
  }
}

/* home_try
********************************************** */
.home .common_try {
  background: #f1fff8;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .home .common_try {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

/* home_news
********************************************** */
.home_news {
  background: #f1fff8;
}
.home_news .maincont--news {
  width: 53.5%;
  background: #fff;
  padding: 50px 60px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #b6cfc2;
}
.home_news .cont-fb {
  position: relative;
  width: 43.5%;
  background: #06c655;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 0 10px #b6cfc2;
}
.home_news .cont-fb .line-minamo {
  position: absolute;
  right: -184.49px;
  bottom: 0;
}

.home_news .cont-fb-txt {
  background-color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
}
.home_news .cont-fb-txt span {
  color: #00693e;
}
.home_news .cont-fb-txt small {
  display: block;
  margin-bottom: 13px;
}
.home_news .cont-fb-cont {
  margin-bottom: 20px;
}
.home_news .cont-fb-cont .heading-jp {
  position: relative;
}
.home_news .cont-fb-cont .heading-jp .line-star {
  position: absolute;
  top: 0;
  right: -25px;
}
.home_news .cont-fb-txt .btn a {
  font-size: 15px;
}
.home_news .cont-fb-txt .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 40px;
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 1px;
  border-right: solid 1px;
  transform: rotate(45deg);
  transition: all 0.4s ease-out;
}
.home_news .cont-fb .heading-jp {
  font-size: 2rem;
  color: #fcf37a;
}
.home_news .cont-fb .fb-page {
  overflow: hidden;
}
.home_news .cont-fb iframe {
  width: 100%;
}
.home_news .cont-fb .btn a {
  max-width: 100%;
  border-radius: 5px;
  padding: 8px 40px;
}
.home_news .single_news {
  border-top: 1px solid #d9d9d9;
}
.home_news .news_list .single_news:last-child {
  border-bottom: 1px solid #d9d9d9;
}
.home_news .single_news a {
  padding: 1em 0.5em;
  display: block;
  line-height: 1.5;
  transition: 0.4s;
}
.home_news .single_news a:hover {
  background: #f5fffb;
}
.home_news .single_news .time {
  color: #555;
  font-size: 0.77777777777778rem;
}

/* home_program
********************************************** */
.home_program {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 120px;
  background: #f1fff8;
}
.home_program .inner {
  padding: 80px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 10px 0 #b6cfc2;
}
.home_program .sec-head-02 {
  margin-bottom: 52px;
}
.home_program .single_program {
  border-top: 1px dotted #d9d9d9;
  width: 45%;
}
.home_program .program_list {
  height: auto;
  overflow: hidden;
}
.home_program .program_list .single_program:nth-child(5),
.home_program .program_list .single_program:nth-child(6) {
  border-bottom: 1px dotted #d9d9d9;
}
.home_program .program_list .single_program:nth-child(odd) {
  margin: 0 10% 0 0;
}
.home_program .single_program {
  position: relative;
}
.home_program .single_program a {
  padding: 0.5em 0.8em 0.5em 0;
  line-height: 1.5;
  transition: 0.4s;
  height: 100%;
}
.home_program .single_program a:hover {
  background: #f5fffb;
}
.home_program .single_program .ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 8px;
}
.home_program .single_program .time,
.home_program .single_program .supportedby {
  color: #555;
  font-size: 0.77777777777778rem;
}
.home_program .single_program .post--img {
  width: 134px;
  height: 100px;
  margin: 0 30px 0 0;
  background-color: #f1fff8;
}
.home_program .single_program .post--img::before {
  padding-top: 75%;
}
.home_program .single_program .post--img .noimg_wrap img {
  padding: 0 10px;
}
.home_program .single_program .txtbox {
  width: calc(100% - 164px);
}

@media screen and (max-width: 1080px) and (min-width: 768px) {
  .home_program .single_program {
    border-top: 1px solid #d9d9d9;
    width: 100%;
  }
  .home_program .program_list {
    overflow: scroll;
  }
  .home_program .program_list .single_program:nth-child(3) {
    border-bottom: 0;
  }
  .home_program .program_list .single_program:nth-child(5) {
    border-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .home_program {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .home_program .inner {
    padding: 40px;
  }
  .home_program .sec-head-02 {
    margin-bottom: 24px;
  }
  .home_program .single_program {
    width: 100%;
  }
  .home_program .single_program .post--img {
    margin: 0 5% 0 0;
    width: 32%;
  }
  .home_program .single_program .txtbox {
    width: calc(100% - 37%);
  }
  .home_program .program_list .single_program:nth-child(3) {
    border-bottom: 0;
  }
  .home_program .program_list .single_program:nth-child(5) {
    border-bottom: 0;
  }
  .home_program .program_list .single_program:nth-child(odd) {
    margin: 0;
  }
}

/* common_search
********************************************** */
.common_search {
  position: relative;
  background-color: #f1fff8;
  padding-top: 245px;
  margin-top: -150px;
  overflow: hidden;
  padding-bottom: 115px;
}
.common_search::after {
  content: "";
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  height: 200px;
  border-bottom-right-radius: 2000px 300px;
  border-bottom-left-radius: 2000px 300px;
  margin-left: -150px;
  margin-right: -150px;
  padding-left: 150px;
  padding-right: 150px;
}
.common_search .sec-head-03 .imgarea {
  width: 107px;
  margin: auto;
}
.common_search .sec-head-03 .imgarea .star_1 {
  right: -40px;
  top: 74px;
}
.common_search .sec-head-03 .minamo {
  right: 10px;
  bottom: -60px;
  margin: auto;
  z-index: 1;
}
.common_search .minamo .star_1 {
  right: -35px;
  top: 80px;
}
.common_search .minamo .star_2 {
  top: 125px;
  left: -5px;
}
.common_search .minamo .star_3 {
  top: 95px;
  left: -35px;
}
.common_search .maincont--search {
  background: #fff;
  padding: 60px 95px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #b6cfc2;
}
.common_search .ttl-searchby {
  font-size: 0.83333333333333rem;
  margin: 0 0 15px;
}
.common_search .ttl-searchby::before {
  content: "";
  position: absolute;
  height: 1px;
  background: #e5e5e5;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.common_search .search-block-category .ttl-searchby::before {
  left: -30px;
}
.common_search .ttl-searchby span {
  position: relative;
  background: #fff;
  padding: 0 10px 0 0;
}
.common_search .search-block-category .ttl-searchby span {
  padding: 0 10px;
}
.common_search .ttl-searchby span::before {
  content: "●";
  color: #00693e;
  margin: 0 5px 0 0;
}
.common_search .search-block-theme .term_list {
  padding-right: 35px;
}
.common_search .term_list li {
  margin: 0 0 10px;
}
.common_search .term_list li input {
  display: none;
}
.common_search .search-block-theme .term_list a {
  padding: 10px 16px 14px 84px;
}
.common_search .search-block-category .term_list a {
  padding: 8px 0;
  font-size: 0.88888888888889rem;
  letter-spacing: 0;
}
.common_search .term_list a {
  border: 1px solid #ece3cc;
  background: #fffbf0;
  border-radius: 5px;
  transition: 0.4s;
  height: 100%;
}
.common_search .term_list a:hover {
  background: #00693e;
  color: #fff;
}
.common_search .term_list a small {
  display: block;
  line-height: 1.4;
}
.common_search .search-block-theme .term_list li:nth-child(1) a {
  background: #fffbf0 url(../images/common/icn-theme-1.svg) no-repeat center left 20px / 43px 29px;
}
.common_search .search-block-theme .term_list li:nth-child(2) a {
  background: #fffbf0 url(../images/common/icn-theme-2.svg) no-repeat center left 24px / 33px 29px;
}
.common_search .search-block-theme .term_list li:nth-child(3) a {
  background: #fffbf0 url(../images/common/icn-theme-3.svg) no-repeat center left 20px / 40px 39px;
}
.common_search .search-block-theme .term_list li:nth-child(4) a {
  background: #fffbf0 url(../images/common/icn-theme-4.svg) no-repeat center left 26px / 34px 36px;
}
.common_search .search-block-theme .term_list li:nth-child(5) a {
  background: #fffbf0 url(../images/common/icn-theme-5.svg) no-repeat center left 24px;
}
.common_search .search-block-theme .term_list li:nth-child(1) a:hover {
  background: #00693e url(../images/common/icn-theme-1_hv.svg) no-repeat center left 20px / 43px 29px;
}
.common_search .search-block-theme .term_list li:nth-child(2) a:hover {
  background: #00693e url(../images/common/icn-theme-2_hv.svg) no-repeat center left 24px / 33px 29px;
}
.common_search .search-block-theme .term_list li:nth-child(3) a:hover {
  background: #00693e url(../images/common/icn-theme-3_hv.svg) no-repeat center left 20px / 40px 39px;
}
.common_search .search-block-theme .term_list li:nth-child(4) a:hover {
  background: #00693e url(../images/common/icn-theme-4_hv.svg) no-repeat center left 26px / 34px 36px;
}
.common_search .search-block-theme .term_list li:nth-child(5) a:hover {
  background: #00693e url(../images/common/icn-theme-5_hv.svg) no-repeat center left 24px;
}
.common_search .search-block-theme {
  width: 39%;
}
.common_search .search-block-theme::after {
  content: "";
  position: absolute;
  border-right: 1px solid #e5e5e5;
  bottom: 0;
  top: 10px;
  right: 0;
}
.common_search .search-block-category {
  width: 61%;
  padding-left: 30px;
}
.common_search .term_list.flex-col3 > * {
  width: 32.4%;
}
.common_search .term_list.flex-col3 li:not(:nth-child(3n)) {
  margin-right: 1.4%;
}
.common_search .term_list.flex-col2 > * {
  width: 49%;
}
.common_search .term_list.flex-col2 li:nth-child(odd) {
  margin-right: 2%;
}
.common_search .search-block-freeword input {
  width: calc(100% - 350px);
  padding: 8px 10px;
  letter-spacing: 0.05em;
  font-size: 0.88888888888889rem;
  border: 1px solid #bcbcbc;
  border-radius: 4px;
}
.common_search .search-block-freeword label {
  display: none;
}
.common_search .search-block-freeword .submit {
  background: #00693e;
  color: #fff;
  font-size: 1.1111111111111rem;
  padding: 10px;
  width: 320px;
  border-radius: 5px;
  margin-right: 20px;
  transition: 0.4s;
}
.common_search .search-block-freeword .submit:hover {
  opacity: 0.8;
}
.common_search button,
.common_search input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
.common_search input {
  font-family: "YuGothic", "游ゴシック";
}
.common_search .search-block-freeword .submit span {
  padding-left: 30px;
  letter-spacing: 0.15em;
}
.common_search .search-block-freeword .submit span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 19px;
  background: url(../images/common/icn-search.png) no-repeat center right;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.common_search .search-block-date .schedule_wrap {
  background: #b1dfc8;
  padding: 14px 24px 35px;
  border-radius: 5px;
}
.common_search .search-block-date .schedule--ttl_box {
  background: #00693e;
  border-radius: 5px;
}
.common_search .search-block-date .schedule--ttl {
  font-size: 1.4444444444444rem;
  color: #fff;
  padding: 2px 6px 6px;
}
.common_search .search-block-date .thismonth {
  font-size: 2rem;
  color: #ffe297;
  display: inline-block;
  vertical-align: bottom;
  line-height: 1.2;
  margin: 0 2px;
}
.common_search .search-block-date .read {
  font-size: 0.77777777777778rem;
}
.common_search .search-block-sdgs .ttl-searchby {
  margin-bottom: 28px;
}
.common_search .search-block-sdgs .sdgs_list .single-sdgs:not(:nth-child(6n)) {
  margin-right: 2%;
}
.common_search .search-block-sdgs .single-sdgs {
  width: 15%;
  margin-bottom: 2%;
}
.common_search .search-block-sdgs .single-sdgs a {
  transition: 0.4s;
  display: block;
}
.common_search .search-block-sdgs .single-sdgs a:hover {
  -webkit-transform: translateY(-0.5em);
  transform: translateY(-0.5em);
}
.common_search .search-block-sdgs .single-sdgs .imgarea {
  position: relative;
}
.common_search .search-block-sdgs .single-sdgs:hover .imgarea {
  box-shadow: 0 0 10px #b6cfc2;
}
.common_search .search-block-sdgs .sdgs_list {
  margin-bottom: 96px;
}
.common_search .search-block-sdgs .sdgs_list::after {
  content: "";
  position: absolute;
  background: url(../images/top/cr-minamo-07.png) no-repeat center right / contain;
  width: 22%;
  height: 39.5%;
  bottom: -8%;
  right: -7%;
}
.common_search .search-block-howtolearn,
.common_search .search-block-howtojoin {
  width: 47%;
}
.common_search .search-block-howtolearn .ttl-searchby,
.common_search .search-block-howtojoin .ttl-searchby {
  margin-bottom: 40px;
}
.common_search .search-block-howtolearn .btn a,
.common_search .search-block-howtojoin .btn a {
  max-width: 100%;
  border-radius: 5px;
  padding: 8px 40px;
}

@media screen and (max-width: 1250px) and (min-width: 768px) {
  .common_search .sec-head-03 .minamo {
    bottom: -160px;
    right: -40px;
  }
}

@media screen and (max-width: 767px) {
  .common_search {
    padding-top: 240px;
    padding-bottom: 56px;
  }
  .common_search .sec-head-03 .minamo {
    display: none;
  }
  .common_search .sec-head-03 .imgarea .star_1 {
    right: 15px;
    top: 32px;
  }
  .common_search .maincont--search {
    padding: 30px 20px 0;
  }
  .common_search .ttl-searchby {
    font-size: 1rem;
  }
  .common_search .search-block-theme {
    width: 100%;
    margin: 0 0 24px;
  }
  .common_search .search-block-theme::after {
    display: none;
  }
  .common_search .search-block-theme .term_list {
    padding-right: 0;
  }
  .common_search .search-block-category .ttl-searchby::before {
    left: 0;
  }
  .common_search .search-block-category {
    width: 100%;
    padding-left: 0;
  }
  .common_search .term_list-target.flex-col3 li {
    width: 100%;
  }
  .common_search .term_list-target.flex-col3 li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .common_search .search-block-freeword input {
    width: 100%;
    margin: 0 0 8px;
  }
  .common_search .search-block-freeword .submit {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
  }
  .common_calendar > .cat_calendar {
    padding: 0;
  }
  .common_search .search-block-date .schedule_wrap {
    padding: 14px 10px;
  }
  .common_search .search-block-date .schedule--ttl {
    font-size: 1.286rem;
  }
  .common_search .search-block-sdgs .single-sdgs {
    width: 32%;
  }
  .common_search .search-block-sdgs .sdgs_list {
    margin-bottom: 32px;
  }
  .common_search .search-block-sdgs .sdgs_list .single-sdgs:not(:nth-child(6n)) {
    margin-right: 0;
  }
  .common_search .search-block-sdgs .sdgs_list .single-sdgs:not(:nth-child(3n)) {
    margin-right: 2%;
  }
  .common_search .search-block-sdgs .sdgs_list::after {
    bottom: -2%;
    right: -5%;
    width: 36%;
    height: 18%;
    background-size: contain;
  }
  .common_search .search-block-howtolearn,
  .common_search .search-block-howtojoin {
    width: 100%;
  }
  .common_search .search-block-category .term_list a {
    font-size: 0.81rem;
  }
  .common_search .search-block-howtolearn .ttl-searchby,
  .common_search .search-block-howtojoin .ttl-searchby {
    margin-bottom: 16px;
  }
}

/* home_topics
  ********************************************** */
.home_topics {
  padding-top: 120px;
  z-index: 2;
  position: relative;
  padding-bottom: 120px;
  background: #f1fff8;
}
.home_topics .topic--ttl {
  font-size: 0.83333333333333rem;
  margin: 10px 0;
}
.home_topics .single-topic {
  width: 24%;
  transition: 0.4s;
}
.home_topics .single-topic:hover {
  -webkit-transform: translateY(-0.5em);
  transform: translateY(-0.5em);
}

@media screen and (max-width: 767px) {
  .home_topics .topics_list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .home_topics .single-topic {
    width: 48%;
  }
}

/* ##############################################################################

    COMMON

############################################################################## */

.flash {
  animation-name: flash;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
  animation-delay: 0.05s;
}

/* common_try
  ********************************************** */
.common_try {
  position: relative;
  z-index: 1;
}
.common_try .try--scenes {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px #b6cfc2;
  overflow: hidden;
}
.common_try .single-scene {
  width: 100%;
  position: relative;
  height: 480px;
  padding: 25px;
}
.common_try .single-scene::before {
  bottom: -6px;
}

.common_try .single-scene::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.common_try .single-scene:hover::before {
  top: -10px;
  bottom: 10px;
}
.common_try .try--scene--home::before {
  background: url(../images/top/fg-try-home.png) no-repeat center center;
  background-size: contain;
}
.common_try .try--scene--city::before {
  background: url(../images/top/fg-try-city.png) no-repeat center center;
  background-size: contain;
}
.common_try .try--scene--shopping::before {
  background: url(../images/top/fg-try-shopping.png) no-repeat center center;
  background-size: contain;
}
.common_try .try--scene--school::before {
  background: url(../images/top/fg-try-school.png) no-repeat center center;
  background-size: contain;
}
.common_try .single-scene .btn a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  max-width: 190px;
  padding: 7px 14px;
  margin: auto;
  border-radius: 5px;
}
.common_try .single-scene .btn a::before {
  right: 20px !important;
  width: 6px !important;
  height: 6px !important;
  border-color: #fff !important;
  z-index: 1;
}
.common_try .single-scene .btn a:hover::before {
  border-color: #00693e !important;
}
.common_try .single-scene .btn a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 14px !important;
  width: 16px !important;
  height: 16px !important;
  display: block;
  background: #00693e;
  border-radius: 12px;
}
.common_try .single-scene .btn a:hover::after {
  background: #fff !important;
}
.common_try .single-scene:hover .btn a {
  background-color: #00693e;
  border-color: #00693e;
  color: #fff;
}
.common_try .single-scene:hover .btn a::before {
  border-color: #00693e !important;
  z-index: 1;
}
.common_try .single-scene:hover .btn a::after {
  background: #fff !important;
}
@media all and (-ms-high-contrast: none) {
  .common_try .try--scene--school::before {
    background-position: top 20px center;
  }
}
@media screen and (max-width: 1250px) and (min-width: 1081px) {
  .common_try .try--scene--home a {
    background-size: 45% auto;
  }
  .common_try .try--scene--city a {
    background-size: 45% auto;
  }
  .common_try .try--scene--shopping a {
    background-size: 45% auto;
  }
  .common_try .try--scene--school a {
    background-size: 45% auto;
  }
}

@media screen and (max-width: 1080px) {
  .common_try .try--scenes {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .common_try .single-scene {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .common_try .single-scene {
    width: 50%;
    height: 154px;
  }
  .common_try .single-scene .btn a {
    width: 84%;
    padding: 5px 30px 5px 10px;
    bottom: 10px;
  }
  .common_try .try--scene--home a {
    background-size: 90px auto;
    background-position: right bottom;
  }
  .common_try .try--scene--city a {
    background-size: 90px auto;
    background-position: right bottom;
  }
  .common_try .try--scene--shopping a {
    background-size: 95px auto;
    background-position: right bottom;
  }
  .common_try .try--scene--school a {
    background-size: 65px auto;
    background-position: right bottom;
  }
  .common_try .try--scenes .single-scene:not(:last-child) a::after {
    height: 100px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .common_try .try--scenes .single-scene:nth-child(2)::after {
    display: none;
  }
  .common_try .try--scenes .single-scene:not(:last-child) .btn::before {
    content: "";
    position: absolute;
    width: 84%;
    height: 1px;
    background: #d9d9d9;
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    margin: auto;
  }
}

/* common_study
  ********************************************** */
.home .common_study {
  background: #f1fff8;
  padding-top: 120px;
  padding-bottom: 120px;
}
.home .common_study .sec-head-01 {
  margin-bottom: 25px;
}
.common_study {
  position: relative;
  z-index: 1;
}
.common_study .scene--ttl {
  font-size: 0.88888888888889rem;
  color: #00693e;
  margin: 10px 0;
}

.common_study .single-genre:not(:last-child) {
  margin: 0 2% 0 0;
}
.common_study .single-genre {
  width: 15%;
  transition: 0.4s;
}
.common_study .single-genre:hover {
  -webkit-transform: translateY(-0.5em);
  transform: translateY(-0.5em);
}
.common_study .single-genre .imgarea svg {
  width: 54%;
  height: auto;
}
.common_study .single-genre .imgarea {
  max-width: 150px;
  max-height: 150px;
  height: 11vw;
  background: #fff;
  border-radius: 175px;
  box-shadow: 0 0 7px #b6cfc2;
  transition: 0.4s;
}
.common_study .single-genre:hover .imgarea {
  background: #fffbf0;
}

@media screen and (max-width: 767px) {
  .common_study .study--genres {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .common_study .single-genre {
    width: 30%;
  }
  .common_study .single-genre:nth-child(1),
  .common_study .single-genre:nth-child(2),
  .common_study .single-genre:nth-child(3),
  .common_study .single-genre:nth-child(4) {
    width: 38%;
  }
  .common_study .single-genre .imgarea {
    height: 26vw;
  }
  .common_study .single-genre:nth-child(1) .imgarea,
  .common_study .single-genre:nth-child(2) .imgarea,
  .common_study .single-genre:nth-child(3) .imgarea,
  .common_study .single-genre:nth-child(4) .imgarea {
    width: 80%;
    margin: auto;
  }
  .common_study .single-genre:nth-child(5),
  .common_study .single-genre:nth-child(6) {
    margin-right: 5%;
  }
}

/* common_news
  ********************************************** */
.common_news .sec-head-02 {
  margin-bottom: 1.2em;
  margin-right: 40px;
}
.common_news .maincont--news {
  background: #fff;
  padding: 40px 60px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #b6cfc2;
}
.common_news .cont-fb {
  width: 42%;
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px #b6cfc2;
}
.common_news .cont-fb iframe {
  width: 100%;
}
.common_news .single_news {
  border-top: 1px solid #d9d9d9;
}
.common_news .news_list .single_news:last-child {
  border-bottom: 1px solid #d9d9d9;
}
.common_news .single_news a {
  padding: 1em 0;
  line-height: 1.5;
}
.common_news .single_news .time {
  color: #555;
  font-size: 0.88888888888889rem;
  line-height: 1.8;
  margin-right: 16px;
  min-width: 8rem;
}
.common_news {
  position: relative;
  padding: 40px 0;
  background-color: #fff;
  width: 80%;
  margin: auto;
  z-index: 1;
}
.common_news .news_list {
  flex: 1;
}
@media screen and (max-width: 1500px) and (min-width: 768px) {
  .common_news .single_news > .flex {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .common_news .sec-head-02 .heading-jp::after {
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .common_news .sec-head-02 {
    margin-right: 0;
  }
  .common_news .news_list {
    width: 100%;
  }
  .home_news {
    padding: 20px 0 120px !important;
  }
  .home_news .maincont--news {
    width: 100%;
    padding: 30px 20px;
    margin: 0 0 24px;
  }
  .home_news .cont-fb {
    width: 100%;
    padding: 30px 20px;
  }
  .common_news {
    width: 100%;
    padding: 20px 0;
  }
  .common_news .maincont--news {
    padding: 30px 20px 20px;
  }
  .home_news .cont-fb-cont .heading-jp .line-star {
    width: 56px;
  }
  .home_news .cont-fb .heading-jp {
    font-size: 1.5rem;
  }
  .home_news .cont-fb .line-qr {
    width: 86px;
    object-fit: contain;
  }
  .home_news .cont-fb-txt {
    padding: 12px;
  }
  .home_news .cont-fb .line-minamo {
    width: 164px;
    right: -39px;
    bottom: -110px;
  }
  .home_news .cont-fb .btn a {
    padding: 8px 0;
    font-size: 12px;
  }
  .home_news .cont-fb .btn a::before {
    right: 8px;
  }
}
/* common_calendar
  ********************************************** */
.common_calendar > .cat_calendar {
  background: #fff;
  padding: 16px 0 0;
  border-radius: 5px;
}
.calendar_p-list {
  width: calc(100% - 415px);
}
.p-list_date {
  padding: 0.5em 1em;
  transform: none;
  margin-bottom: 24px;
  line-height: 1.4;
  font-size: 1.3333333333333rem;
}
.p-list_date .top-none {
  display: none;
}
#posts-calendar .news_list {
  min-height: inherit;
  max-height: 480px;
  overflow-x: scroll;
  height: 435px;
}
#posts-calendar .post {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  transition: 0.4s;
}
#posts-calendar .post:hover {
  background: #f5fffb;
}
#posts-calendar .post .post--img::before {
  padding-top: 75%;
}
#posts-calendar .post .post--img {
  width: 134px;
  margin-right: 20px;
}
#posts-calendar .post .txtbox {
  width: calc(100% - 154px);
}
#posts-calendar .post .time,
#posts-calendar .post .supportedby {
  color: #555;
  font-size: 0.77777777777778rem;
}
#posts-calendar .i-date {
  display: none;
}
#posts-calendar .i-week {
  display: none;
}
#posts-calendar .cat_list {
  width: 160px;
}
#posts-calendar .cat_list a {
  width: calc(100% - 2px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
#posts-calendar .post--ttl {
  margin: 8px 0 16px;
  font-size: 1.1111111111111rem;
}
.child_site #wp-catcalendarajax td#prev a::before {
  left: calc(50% - 6px);
}
.child_site #wp-catcalendarajax td#next a::before {
  right: calc(50% - 6px);
}
.child_site #wp-catcalendarajax td#prev a::after,
.child_site #wp-catcalendarajax td#next a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.6em;
  height: 0.6em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.child_site #wp-catcalendarajax td#prev a::after {
  left: 50%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.child_site #wp-catcalendarajax td#next a::after {
  right: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#wp-catcalendarajax thead .week th:nth-child(1) {
  color: #c72d2d;
}
#wp-catcalendarajax thead .week th:nth-child(7) {
  color: #225ab7;
}

@media screen and (max-width: 767px) {
  .p-list_date .top-none {
    display: block;
  }
}

@media screen and (max-width: 1080px) and (min-width: 768px) {
  .calendar_wrap {
    display: block;
  }
  .common_calendar > .cat_calendar {
    width: 410px;
    margin: 0 auto 40px;
  }
  .calendar_p-list {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .common_calendar > .cat_calendar {
    padding: 0;
    margin-bottom: 24px;
  }
  #wp-catcalendarajax thead tr:first-child {
    border-bottom: 0;
  }
  #wp-catcalendarajax {
    width: 100%;
  }
  .calendar_p-list {
    width: 100%;
  }
  #posts-calendar .post .post--img {
    width: 100%;
    margin: 0 0 8px;
  }
  #posts-calendar .post .txtbox {
    width: 100%;
  }
  #posts-calendar .news_list {
    height: 340px;
  }
}

/* ##############################################################################

    PAGE

############################################################################## */

/* sitemap
*************************************************** */
.sitemap--menu {
  column-count: 2;
  column-gap: 40px;
  z-index: 1;
}
.sitemap--menu a,
.sitemap--menu span {
  display: block;
}
.sitemap--menu a {
  position: relative;
}
.sitemap--menu a:hover {
  color: #00693e;
}
.sitemap--menu > li {
  break-inside: avoid;
  margin-bottom: 40px;
}
.sitemap--menu > li > a {
  font-size: 1rem; /* 18px */
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 0.5em;
  margin-bottom: 1.25em;
}
.sitemap_sub_nav--wrap {
  padding-left: 1.25em;
  margin-bottom: 1.5em;
}
.sitemap_sub_nav a {
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1.25em;
  display: inline-block;
}
.sitemap_sub_nav a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #00693e;
  border-right: 1px solid #00693e;
  transform: rotate(45deg);
}

@media print, screen and (min-width: 768px) {
  .sitemap--menu:not(:last-child) {
    margin-right: 7.41%; /* 80px */
  }
}
@media screen and (max-width: 767px) {
  .sitemap--menu:not(:last-child) {
    margin-bottom: 24px;
  }
}

/* contact
********************************************** */
.page-contact .cta_tel {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.page-contact .cta_tel a {
  padding: 24px 40px;
}

@media screen and (max-width: 767px) {
  .page-contact .cta_tel a {
    display: block;
    padding: 16px;
  }
}

.page-join .common_search {
  background-color: #fff;
  padding-top: 80px;
  margin-top: 0;
}
.page-join .common_search::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-join .common_search {
    padding-top: 40px;
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
.main_column {
  flex: 1;
  margin-right: 80px;
  overflow: hidden;
}

/* --- post --- */
.post {
  position: relative;
}
.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.post--date,
.post--area {
  color: #555;
}
.post--info.flex .post--date + .cat_list {
  margin-left: 16px;
}
.cat_list {
  position: relative;
  overflow: hidden;
}
.cat_list a {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.66666666666667rem; /* 12px */
  background-color: #00693e;
  color: #fff;
  padding: 0.25em 1em;
  float: left;
  white-space: nowrap;
  margin: 2px;
  border-radius: 20px;
  transform: rotate(0.05deg);
}
.cat_list a:hover {
  opacity: 0.7;
}

/* --- facility --- */
.facility--info table,
.facility--info iframe {
  width: 100%;
}
.facility--info .txtbox {
  padding: 24px 32px;
  background-color: #f1fff8;
}
.facility--info .txtbox p {
  letter-spacing: 0.1em;
  font-size: 0.88888888888889rem;
  line-height: 2;
}
.facility--info table th {
  white-space: nowrap;
}

/* --- municipalities --- */
.municipalities--info th,
.municipalities--info td,
.posts-municipalities th,
.posts-municipalities td {
  border-bottom: 2px solid #00693e !important;
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
  background-color: transparent !important;
  word-break: break-word;
}
.municipalities--info th {
  color: #00693e;
  width: 248px;
}
.municipalities--info td,
.posts-municipalities td {
  border-bottom: 2px solid #d3d3d3 !important;
}
.posts-municipalities th {
  color: #00693e;
  padding: 12px;
  white-space: nowrap;
}

.posts-municipalities table,
.municipalities--info table {
  border-collapse: separate;
  border-spacing: 4px 0;
  width: 100%;
}
.company-list {
  gap: 8px;
}
.municipalities-cat,
.company-list li {
  padding: 8px 11px;
  border-radius: 5px;
  border: 1px solid #ece3cc;
  background: #fffbf0;
  font-size: clamp(13px, 0.73vw, 14px);
}
/* --- program --- */
.program--info th,
.program--info td {
  text-align: left;
  padding: 1em;
  border: 1px solid #d3d3d3;
  line-height: 1.5;
  vertical-align: middle;
}
.program--info th p:not(:last-child),
.program--info td p:not(:last-child) {
  margin-bottom: 15px;
}
.program--info th {
  min-width: 240px;
}
.program--info .lps_sec {
  background: none;
  padding-top: 40px;
  padding-bottom: 80px;
  margin-top: 0;
}
.program--info .lps_sec:nth-child(2n)::after {
  display: none;
}
.program--info #formy_form th {
  background: rgb(254 240 167);
  font-weight: bold;
  text-align: center;
  width: 240px;
}
.program--info .p-slider li {
  height: 480px;
  margin: 0 10px;
}
.program--info .p-slider button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 1;
}
.program--info .p-slider .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
.program--info .p-slider .prev-arrow {
  left: 8%;
}
.program--info .p-slider .prev-arrow::after {
  content: "";
  position: absolute;
  right: 3px;
  width: 32px;
  height: 32px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.program--info .p-slider .next-arrow {
  right: 8%;
}
.program--info .p-slider .next-arrow::after {
  content: "";
  position: absolute;
  left: 3px;
  width: 32px;
  height: 32px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .program--info #formy_form th {
    width: 100%;
  }
  .program--info table {
    table-layout: fixed;
  }
  .program--info th {
    width: 35%;
  }
  .program--info td {
    width: 65%;
  }
  .program--info .p-slider li {
    height: 48vw;
  }
}
/* --- promoter --- */
.archive-promoter .main_column {
  margin-right: 0;
}
.archive-promoter .side_column,
.single-promoter .side_column {
  display: none;
}
.archive-promoter .post {
  transition: all ease-in-out 0.4s;
}
.archive-promoter .post:hover {
  opacity: 0.7;
}
.promoter-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
.promoter-list li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #00693e;
  background-color: #00693e;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .promoter--info td {
    border-bottom: none !important;
  }
}
/* --- t-materials --- */
.t-materials--list li {
  width: 31.5%;
  margin-bottom: 5%;
}
.t-materials--list li:not(:nth-child(3n)) {
  margin-right: 2.75%;
}
.t-materials--list .imgarea,
.t-materials--list .mvarea {
  height: 264px;
  overflow: hidden;
}
.t-materials--list .imgarea img,
.t-materials--list .mvarea img {
  top: 0;
}
.t-materials--list .mvarea iframe {
  width: 100%;
  height: 264px;
}
.t-materials--list li .tm_ttl {
  transition: 0.4s;
}
.t-materials--list li:hover .tm_ttl {
  color: #00693e;
}

.search-none-container > .inner {
  max-width: 100%;
  width: 100%;
}
.search-none-container .main_column {
  margin-right: 0;
}
.search-none-container .common_search {
  margin-top: -220px;
}

@media screen and (min-width: 1081px) {
  .main_column_spilit .lps_sec {
    padding-left: calc(305px + 5%);
    padding-right: 3%;
  }
}

@media screen and (min-width: 768px) {
  .archive-program .container-main,
  .single-program .container-main,
  .archive-group .container-main,
  .single-group .container-main,
  .archive-municipalities .container-main,
  .single-municipalities .container-main,
  .archive-company .container-main,
  .single-company .container-main,
  .search-container {
    padding-left: calc(305px + 5%);
    padding-right: 3%;
  }
  .archive-program .container-main .main_column,
  .single-program .container-main .main_column,
  .archive-group .container-main .main_column,
  .single-group .container-main .main_column,
  .archive-municipalities .container-main .main_column,
  .single-municipalities .container-main .main_column,
  .archive-company .container-main .main_column,
  .single-company .container-main .main_column,
  .search-container .main_column {
    margin-right: 0;
  }
}

@media screen and (max-width: 1100px) {
  .container > .inner.flex {
    display: block;
  }
  .main_column {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }
  .t-materials--list .imgarea,
  .t-materials--list .mvarea {
    height: 20vw;
  }

  .archive-municipalities .container > .inner.flex,
  .archive-company .container > .inner.flex,
  .archive-group .container > .inner.flex {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
  .side_column form[name="searchform"],
  .side_column .search-block-top,
  .side_column .term_list-area {
    margin-bottom: 0;
  }
}

/* side_column
**************************************** */
.side_section:not(:last-child) {
  margin-bottom: 64px;
}
.side--ttl {
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 16px;
}
.side--ttl small {
  opacity: 0.5;
  letter-spacing: 0.15em;
  display: block;
  line-height: 1;
  margin-top: 8px;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}
.posts-side .post--img {
  margin-right: 16px;
  width: 64px;
  height: 64px;
}
.posts-side .txtarea {
  flex: 1;
}
.posts-side .post--date {
  margin-bottom: 0;
}
.posts-side .post--ttl {
  line-height: 1.4;
}

/* --- archive --- */
.side_column .sec-head-03 .heading-jp {
  font-size: 1.3333333333333rem;
}
.side_column .archive_list--ttl {
  cursor: pointer;
  font-weight: 500;
  line-height: 1.8;
}
.side_column .archive_list--ttl::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(135deg);
  transition: all 0.4s ease-out;
}
.side_column .archive_list--ttl.active::after {
  transform: rotate(315deg);
}
.side_column .archive_month {
  display: none;
}

.side_column .sec-head-03 svg {
  width: 48px;
  height: auto;
}
.side_column .maincont--search {
  background: #fff;
  padding: 30px 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px #b6cfc2;
}
.side_column .ttl-searchby {
  font-size: 0.83333333333333rem;
  margin: 0 0 15px;
}
.side_column .ttl-searchby::before {
  content: "";
  position: absolute;
  height: 1px;
  background: #e5e5e5;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.side_column .ttl-searchby span {
  position: relative;
  background: #fff;
  padding: 0 10px 0 0;
}
.side_column .search-block-category .ttl-searchby span {
  padding: 0 10px;
}
.side_column .ttl-searchby span::before {
  content: "●";
  color: #00693e;
  margin: 0 5px 0 0;
}
.side_column .term_list li {
  margin: 0 0 10px;
}
.side_column .term_list li input {
  display: none;
}
.side_column .search-block-theme .term_list a {
  padding: 8px 16px 8px 64px;
  font-size: 0.88888888888889rem;
}
.side_column .search-block-category .term_list a {
  padding: 5px 10px;
  font-size: 0.77777777777778rem;
}
.side_column .term_list a {
  border: 1px solid #ece3cc;
  background: #fffbf0;
  display: block;
  border-radius: 5px;
  transition: 0.4s;
}
.side_column .term_list a:hover {
  background: #00693e;
  color: #fff;
}
.side_column .term_list a small {
  display: block;
  line-height: 1.4;
  font-size: 0.66666666666667rem;
}
.side_column .search-block-theme .term_list li:nth-child(1) a {
  background: #fffbf0 url(../images/common/icn-theme-1.svg) no-repeat center left 14px / 43px 29px;
}
.side_column .search-block-theme .term_list li:nth-child(2) a {
  background: #fffbf0 url(../images/common/icn-theme-2.svg) no-repeat center left 18px / 33px 29px;
}
.side_column .search-block-theme .term_list li:nth-child(3) a {
  background: #fffbf0 url(../images/common/icn-theme-3.svg) no-repeat center left 14px / 40px 39px;
}
.side_column .search-block-theme .term_list li:nth-child(4) a {
  background: #fffbf0 url(../images/common/icn-theme-4.svg) no-repeat center left 20px / 34px 36px;
}
.side_column .search-block-theme .term_list li:nth-child(5) a {
  background: #fffbf0 url(../images/common/icn-theme-5.svg) no-repeat center left 18px;
}
.side_column .search-block-theme .term_list li:nth-child(1) a:hover {
  background: #00693e url(../images/common/icn-theme-1_hv.svg) no-repeat center left 14px / 43px 29px;
}
.side_column .search-block-theme .term_list li:nth-child(2) a:hover {
  background: #00693e url(../images/common/icn-theme-2_hv.svg) no-repeat center left 18px / 33px 29px;
}
.side_column .search-block-theme .term_list li:nth-child(3) a:hover {
  background: #00693e url(../images/common/icn-theme-3_hv.svg) no-repeat center left 14px / 40px 39px;
}
.side_column .search-block-theme .term_list li:nth-child(4) a:hover {
  background: #00693e url(../images/common/icn-theme-4_hv.svg) no-repeat center left 20px / 34px 36px;
}
.side_column .search-block-theme .term_list li:nth-child(5) a:hover {
  background: #00693e url(../images/common/icn-theme-5_hv.svg) no-repeat center left 18px;
}
.side_column .term_list.flex-col3 li:not(:nth-child(3n)) {
  margin-right: 1.4%;
}
.side_column .term_list.flex-col2 > * {
  width: 49%;
}
.side_column .term_list.flex-col2 li:nth-child(odd) {
  margin-right: 2%;
}
.side_column .search-block-freeword input {
  width: 100%;
  padding: 8px 10px;
  letter-spacing: 0.05em;
  font-size: 0.77777777777778rem;
  border: 1px solid #bcbcbc;
  border-radius: 4px;
  margin-bottom: 10px;
}
.side_column .search-block-freeword label {
  display: none;
}
.side_column .search-block-freeword .submit {
  background: #00693e;
  color: #fff;
  font-size: 0.77777777777778rem;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  margin-right: 20px;
}
.side_column button,
.side_column input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
.side_column .search-block-freeword .submit span {
  padding-left: 25px;
  letter-spacing: 0.15em;
}
.side_column .search-block-freeword .submit span::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 15px;
  background: url(../images/common/icn-search.png) no-repeat center right;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-size: contain;
}
.side_column .search-block-date .schedule_wrap {
  background: #b1dfc8;
  padding: 14px 24px;
  border-radius: 5px;
}
.side_column .search-block-date .schedule--ttl_box {
  background: #00693e;
  border-radius: 5px;
}
.side_column .search-block-date .schedule--ttl {
  font-size: 1.4444444444444rem;
  color: #fff;
  padding: 2px 6px 6px;
}
.side_column .search-block-date .thismonth {
  font-size: 2rem;
  color: #f8b400;
  display: inline-block;
  vertical-align: bottom;
  line-height: 1.2;
  margin: 0 2px;
}
.side_column .search-block-date .read {
  font-size: 0.77777777777778rem;
}
.side_column .search-block-sdgs .sdgs_list .single-sdgs:nth-child(odd) {
  margin-right: 4%;
}
.side_column .search-block-sdgs .single-sdgs {
  width: 48%;
  margin-bottom: 4%;
}
.side_column .search-block-sdgs .single-sdgs a {
  display: block;
  transition: 0.2s;
}
.side_column .search-block-sdgs .single-sdgs a:hover {
  box-shadow: 0 0 20px #b6cfc2;
}
.side_column .search-block-howtolearn .btn a,
.side_column .search-block-howtojoin .btn a {
  max-width: 100%;
  border-radius: 5px;
  padding: 12px 10px;
  font-size: 0.77777777777778rem;
  padding-right: 40px;
}
.side_column .toc_list li {
  margin-bottom: 16px;
}
.side_column .toc_list li a {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  transition: 0.2s;
}
.side_column .toc_list li a::before {
  content: "";
  position: absolute;
  left: 0;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 6px solid #94d1c9;
  top: 12px;
  margin: auto;
  transition: 0.2s;
}
.side_column .toc_list li a:hover {
  color: #00693e;
}
.side_column .toc_list li a:hover::before {
  border-left: 6px solid #00693e;
}
.side--list li {
  transform: rotate(0.05deg);
}
.side--list li a {
  border-bottom: 1px solid #dedede;
  display: block;
  padding: 8px 0;
  transition: 0.4s;
}
.side--list li a:hover {
  color: #00693e;
}

.side_column .fixed--page--box .toc_list li {
  margin-bottom: 10px;
}
.side_column .fixed--page--box .toc_list li a {
  padding: 8px 12px;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fffbf0;
  border: 1px solid #ece3cc;
  border-radius: 5px;
}
.side_column .fixed--page--box .toc_list li a::before {
  content: none;
}
@media screen and (min-width: 1081px) {
  .side_column {
    padding-bottom: 40px;
  }
  .side_column .fixed {
    width: 305px;
    padding: 10px 15px 10px 10px;
    transition: 0.4s;
    height: calc(100vh - 140px);
    overflow-y: auto;
  }
  .side_column .fixed:has(.fixed--page--box) {
    padding: 8px;
  }
  .side_column .fixed:has(.fixed--page--box) {
    overflow-y: inherit;
  }
  .side_column .fixed--program {
    position: sticky;
    top: 120px;
    overflow: scroll;
  }
  .side_column .fixed.is-fixed {
    position: fixed;
    top: 120px;
  }
  .fixed--page .toc-btn {
    display: none;
  }
  .fixed--page--box {
    padding: 24px 16px;
    max-height: calc(100vh - 160px);
    border-radius: 10px;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0 0 8px #b6cfc2;
  }
}
@media screen and (min-width: 768px) {
  .side_column #wp-catcalendarajax td#next a {
    padding: 2px 15px 2px 10px;
    font-size: 0.66666666666667rem;
  }
  .side_column #wp-catcalendarajax td#prev a {
    padding: 2px 10px 2px 15px;
    font-size: 0.66666666666667rem;
  }
  .side_column #wp-catcalendarajax td#caption_copy span {
    padding: 5px 0;
    font-size: 1rem;
  }
  #wp-catcalendarajax td#next {
    padding: 0.4em 1em 0.4em 0.4em;
  }
  #wp-catcalendarajax td#prev {
    padding: 0.4em 0.4em 0.4em 1em;
  }
  .side_column #wp-catcalendarajax th,
  .side_column #wp-catcalendarajax td {
    font-size: 0.66666666666667rem;
  }
  .side_column #wp-catcalendarajax td a {
    font-size: 0.66666666666667rem;
  }
  .side_column #wp-catcalendarajax td > a,
  .side_column #wp-catcalendarajax td > span {
    padding: 5px 0;
  }
  .side_column #wp-catcalendarajax {
    width: 222px;
  }
  .side_column #wp-catcalendarajax thead tr:first-child td {
    padding-bottom: 0;
  }
  .side_column .common_calendar > .cat_calendar {
    padding: 0 0 20px;
    width: 100%;
  }
  .side_column .search-block-date .schedule_wrap {
    background: none;
    padding: 0;
  }
  .side_column .calendar_p-list {
    width: 100%;
  }
  .side_column #posts-calendar .post {
    display: block;
    border-radius: 0;
    padding: 0 0 10px;
  }
  .side_column #posts-calendar .post a {
    display: block;
  }
  .side_column .p-list_date {
    font-size: 1.1111111111111rem;
  }
  .side_column .p-list_date .top-none {
    display: block;
  }
  .side_column #posts-calendar .post .post--img {
    width: 134px;
    margin-right: 20px;
    width: 100%;
    margin-right: 0;
  }
  .side_column #posts-calendar .post .txtbox {
    width: 100%;
  }
  .side_column #posts-calendar .post--ttl {
    font-size: 1rem;
  }
  .side_column {
    width: 305px;
    position: absolute;
    top: 0;
    left: 65px;
    bottom: 0;
    z-index: 100;
    margin-top: 32px;
  }
  .archive-news .side_column {
    position: relative;
    width: 264px;
    margin: 0;
    left: auto;
  }
}
@media screen and (max-width: 1080px) {
  .fixed--page {
    position: fixed;
    right: -300px;
    bottom: 20px;
    z-index: 1;
    background: #f1fff8;
    padding: 20px;
    width: 300px;
    transition: 0.4s;
  }
  .fixed--page.is-show {
    right: 0;
  }
  .fixed--page .toc-btn {
    position: absolute;
    left: -30px;
    bottom: 0;
    z-index: 1;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background: #00693e;
    padding: 10px 5px;
    height: 100px;
    text-align: center;
    color: #fff;
    font-size: 0.77777777777778rem;
    cursor: pointer;
    width: 30px;
  }
  .fixed--page--box {
    max-height: calc(100svh - 140px);
    overflow-y: auto;
  }
  .side_column .fixed--page--box .toc_list li a {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .side_column {
    position: relative;
    z-index: 3;
  }
  .side_column .ttl-searchby {
    font-size: 1rem;
  }
  .side_column .search-block-category .term_list-area {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .side_column .search-block-category .term_list-area li {
    width: 32.4%;
  }
  .side_column .search-block-category li:not(:nth-child(3n)) {
    margin-right: 1.4%;
  }
  .side_column .search-block-category .term_list a {
    font-size: 0.857rem;
  }
  .side_column .search-block-category .term_list-target li {
    width: 100%;
  }
  .side_column .search-block-category .term_list a {
    padding: 10px;
  }
  .side_column .search-block-category .term_list-fee {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .side_column .search-block-category .term_list-fee li {
    width: 49%;
  }
  .side_column .search-block-category .term_list-fee:nth-child(odd) {
    margin-right: 2%;
  }
  .side_column #wp-catcalendarajax {
    width: 100%;
    table-layout: fixed;
  }
  .side_column .search-block-date .schedule_wrap {
    padding: 14px 10px;
  }
  .side_column .search-block-sdgs .single-sdgs {
    width: 32%;
  }
  .side_column .search-block-sdgs .sdgs_list .single-sdgs:nth-child(odd) {
    margin-right: 0;
  }
  .side_column .search-block-sdgs .sdgs_list .single-sdgs:not(:nth-child(3n)) {
    margin-right: 2%;
  }
  .side_column .search-block-sdgs .sdgs_list::after {
    content: "";
    position: absolute;
    background: url(../images/top/cr-minamo-07.png) no-repeat center right / contain;
    bottom: -2%;
    right: -4%;
    width: 36%;
    height: 18%;
    background-size: contain;
  }
  .side_column .search-block-howtolearn .btn a,
  .side_column .search-block-howtojoin .btn a {
    max-width: 100%;
    border-radius: 5px;
    font-size: 1rem;
    padding: 14px 40px;
  }
}

/* --- archive-pulldown --- */
.archive-pulldown {
  position: relative;
  margin-left: auto;
  z-index: 1;
}
.archive-pulldown .archive_list {
  position: relative;
}
.archive-pulldown .archive_list:not(:last-child) {
  margin-right: 24px;
}
.archive-pulldown .archive_list a {
  display: block;
  padding: 0.25em 1em;
  text-align: left;
  font-size: 0.88888888888889rem;
}
.archive-pulldown .archive_list a:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.archive-pulldown .archive_list a:hover {
  background-color: #eee;
}
.archive-pulldown .archive_list--label {
  margin-right: 8px;
}
.archive-pulldown .archive_list--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 0.25em 4em 0.25em 1em;
  background-color: #fff;
  border: 1px solid #ccc;
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.88888888888889rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: left;
}
.archive-pulldown .archive_list--btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.4em;
  right: 0.8em;
  margin: auto;
  width: 0.6em;
  height: 0.6em;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
  transition: all 0.2s ease-out;
}
.archive-pulldown .active .archive_list--btn::after {
  bottom: -0.2em;
  transform: rotate(225deg);
}
.archive-pulldown .archive_list--menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  visibility: hidden;
  margin-top: -1px;
  opacity: 0;
  transition: all 0.2s ease-out;
}
.archive-pulldown .active .archive_list--menu {
  visibility: visible;
  opacity: 1;
}

/* blog
**************************************** */
.posts-blog .post {
  padding-bottom: 48px;
  padding-top: 48px;
  border-bottom: 1px solid #e5e5e5;
}
.posts-blog .post:first-child {
  border-top: 1px solid #e5e5e5;
}
.posts-blog .post--txtarea {
  flex: 1;
}
.posts-blog .post--img {
  width: 280px;
  margin-right: 40px;
}
.posts-blog .post--img::before {
  padding-top: 75%;
}

@media screen and (max-width: 767px) {
  .posts-blog .post {
    display: block;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .posts-blog .post--img {
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 16px;
    text-align: center;
  }
  .posts-blog .post--img img {
    width: auto;
    max-width: 100%;
  }
  .archive-pulldown .archive_list--btn {
    width: 140px;
  }
}

/* program
**************************************** */
.posts-program .post {
  padding-top: 24px;
}
.posts-program .post--img::before {
  padding-top: 75%;
}
.posts-program .post .post--ttl a {
  transition: 0.2s;
}
.posts-program .post:hover .post--ttl a {
  color: #00693e;
}
.posts-program .post .post--img {
  overflow: hidden;
  background-color: #f1fff8;
}
.posts-program .post .post--img img {
  transition: 0.4s;
}
.posts-program .post:hover .post--img img {
  transform: scale(1.2, 1.2);
  left: 0;
}
.posts-program .post .post--img .noimg_wrap img {
  padding: 0 24px;
}
.post--img-end {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 1.125rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .posts-program .post {
    display: block;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .posts-program .post--img {
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 16px;
    text-align: center;
  }
  .posts-program .post--img img {
    width: auto;
    max-width: 100%;
  }
}

/* company
**************************************** */
.post--btn {
  color: #00623a;
  position: relative;
  font-size: clamp(13px, 0.73vw, 14px);
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
}
.post--btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -18px;
  display: block;
  width: 5px;
  height: 5px;
  border-top: solid 1px;
  border-right: solid 1px;
  transform: rotate(45deg);
  transition: all 0.4s ease-out;
  border-color: #fff;
  z-index: 1;
}
.post--btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -23px;
  display: block;
  width: 16px;
  height: 16px;
  background: #00623a;
  border-radius: 12px;
}
/* facility
**************************************** */
.posts-facility .post {
  padding-top: 24px;
}
.posts-facility .post--img::before,
.posts-municipalities .post--img::before {
  padding-top: 75%;
}
.posts-facility .post .post--ttl a {
  transition: 0.2s;
}
.posts-facility .post:hover .post--ttl a {
  color: #00693e;
}
.posts-facility .post .post--img,
.posts-municipalities .post--img {
  overflow: hidden;
  background-color: #f1fff8;
}

.posts-facility .post .post--img img,
.posts-municipalities .post .post--img img {
  transition: 0.4s;
}
.posts-facility .post:hover .post--img img,
.posts-municipalities .post:hover .post--img img {
  transform: scale(1.2, 1.2);
  left: 0;
}
.posts-facility .post .post--img .noimg_wrap img {
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .posts-facility .post {
    display: block;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .posts-facility .post--img {
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 16px;
    text-align: center;
  }
  .posts-facility .post--img img {
    width: auto;
    max-width: 100%;
  }
}

/* news
**************************************** */

/* --- news--archive --- */
.news--archive {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #111;
}
.news--archive li {
  margin-left: 8px;
  margin-right: 8px;
}
.news--archive a {
  color: #fff;
}

/* --- news_list --- */
.news_list .post {
  padding-bottom: 16px;
  padding-top: 16px;
  border-bottom: 1px solid #dedede;
}
.news_list .post--info {
  margin-right: 16px;
}
.news_list .post--link:not([href="javascript:void(0);"]):hover {
  color: #00693e;
}
.news_list .post--link:hover svg {
  fill: #00693e;
}

@media screen and (max-width: 767px) {
  .news_list .post {
    display: block;
  }
  .news_list .post--info {
    margin-bottom: 8px;
    margin-right: 0;
  }
}

/* ##############################################################################

    SINGLE

############################################################################## */

/* pass
**************************************** */
#pass p {
  margin-bottom: 1em;
}
#pass input[name="post_password"] {
  padding: 5px;
  border: solid 1px #555;
  outline: none;
}
#pass input[type="submit"] {
  padding: 4px 16px;
  letter-spacing: 0.15em;
  background-color: #ddd;
  border-radius: 4px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease-out;
}
#pass input[type="submit"]:hover {
  opacity: 0.7;
}

/* wp-pagenavi
**************************************** */
.wp-pagenavi {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 60px;
}
.wp-pagenavi .pages {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 1em;
}
.wp-pagenavi a {
  position: relative;
  padding: 0.5em 1em;
  background-color: #00693e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wp-pagenavi a:hover {
  opacity: 0.7;
}
.wp-pagenavi a {
  color: #fff;
}
.wp-pagenavi > *:not(.pages) {
  max-width: calc(100% / 2.6);
}
.wp-pagenavi:not(.wp-pagenavi-single) > *:not(.pages) {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
.wp-pagenavi-single a[rel="prev"],
.wp-pagenavi-single a[rel="next"] {
  width: 40px;
}
.wp-pagenavi > *:not(.pages) {
  margin-bottom: 4px;
}
.wp-pagenavi > *:not(.pages):not(:last-child) {
  margin-right: 4px;
}
.wp-pagenavi .extend {
  width: 24px !important;
}
.wp-pagenavi a[rel="prev"]::before,
.wp-pagenavi a[rel="next"]::before,
.wp-pagenavi .first::before,
.wp-pagenavi .last::before,
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 2px solid;
  border-right: 2px solid;
}
.wp-pagenavi a[rel="prev"]::before,
.wp-pagenavi a[rel="next"]::before,
.wp-pagenavi .first::before,
.wp-pagenavi .last::before,
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  width: 8px;
  height: 8px;
}
.wp-pagenavi a[rel="prev"]::before,
.wp-pagenavi .first::before,
.wp-pagenavi .first::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.wp-pagenavi a[rel="next"]::before,
.wp-pagenavi .last::before,
.wp-pagenavi .last::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.wp-pagenavi-single a[rel="prev"]::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.wp-pagenavi-single a[rel="next"]::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.wp-pagenavi .first::before,
.wp-pagenavi .last::before {
  left: -6px;
}
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  right: -6px;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 24px;
  }
  .archive .wp-pagenavi > *:not(.pages) {
    width: 32px;
    height: 32px;
  }
  .wp-pagenavi-single a[rel="prev"],
  .wp-pagenavi-single a[rel="next"] {
    width: 32px;
  }
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before {
    left: -5px;
  }
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    right: -5px;
  }
}

/* ##############################################################################

    SEARCH

############################################################################## */

#search-list .section_pdg {
  padding-top: 50px;
  padding-bottom: 50px;
}
#search-list .ttl-01 {
  margin: 70px 0 0;
}

/* ##############################################################################

    FORMY

############################################################################## */
#formy_form {
  font-family: "YuGothic", "游ゴシック";
  font-weight: bold;
}
#formy_form table {
  width: 100%;
}
#formy_form th,
#formy_form td {
  padding: 20px;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
}
#formy_form th {
  white-space: nowrap;
  text-align: left;
  width: 34%;
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form table textarea {
  width: 100%;
  border-radius: 3px;
  vertical-align: bottom;
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form select,
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 1rem;
}
#formy_form textarea {
  height: 100px;
}
#formy_form select {
  height: 40px;
}
#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#formy_form input:hover {
  opacity: 0.7;
}
#formy_form textarea:hover {
  opacity: 0.7;
}
#formy_form input:focus {
  outline: none;
}
#formy_form .parsley-validated {
  background-color: #eee;
}
#formy_form .parsley-error {
  background-color: #fee;
}
#formy_form .parsley-success {
  background-color: #fff;
}
#formy_form .formy_error {
  color: #d80000 !important;
}
.help_text {
  font-size: 0.875rem; /* 14px */
  color: #555;
}
.hidden_help {
  display: none;
}
.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 0.875rem; /* 14px */
  padding: 8px 16px;
}
.requiredIcon {
  background-color: #d80000;
  color: #fff;
  margin: 0 0 0 1em;
  font-size: 0.66666666666667rem; /* 12px */
  padding: 2px 5px;
  border-radius: 3px;
  float: right;
}
#formy_btn {
  padding-top: 32px;
  text-align: center;
}
#formy_btn input {
  font-size: inherit;
  border: none;
  cursor: pointer;
  color: #fff;
  border-radius: 3px;
  padding: 16px 32px;
  -webkit-appearance: none;
  appearance: none;
}
#formy_form ul li input[type="radio"],
#formy_form ul li input[type="checkbox"] {
  display: none !important;
}
#formy_form ul li label {
  position: relative;
  display: inline-block;
  padding: 0.5em 8px 0.5em 40px;
  line-height: 1.6;
  vertical-align: top;
  cursor: pointer;
}
#formy_form ul li label:hover {
  opacity: 0.7;
}
#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #788b93;
  left: 16px;
  top: 12px;
}
#formy_form ul li input[type="radio"] + label::before {
  border-radius: 10px;
}
#formy_form ul li input[type="radio"]:checked + label,
#formy_form ul li input[type="checkbox"]:checked + label {
  color: #e75f5f;
  font-weight: bold;
}
#formy_form ul li input[type="radio"]:checked + label::before,
#formy_form ul li input[type="checkbox"]:checked + label::before {
  border-color: #e75f5f;
}
#formy_form ul li input[type="radio"]:checked + label::after,
#formy_form ul li input[type="checkbox"]:checked + label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 20px;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.formy_confirm {
  background-color: #4dbaff;
}
.formy_submit_disabled {
  background-color: #505050;
}
#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}
.autoConfirmBack {
  background-color: #555;
}
.formy_send {
  background-color: #ff6600;
}
#total_required {
  padding: 16px;
  color: #d80000;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  #formy_form .confirm-message {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
    padding: 10px !important;
  }
  #formy_form th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: normal;
    font-weight: bold;
  }
  #formy_form td {
    padding-top: 0;
  }
  #formy_btn {
    padding-top: 8px;
  }
  #formy_btn input {
    width: 100%;
    background-size: contain;
    background-position: center;
  }
  .autoConfirmBack {
    margin-bottom: 8px;
  }
}

/* ##############################################################################

    TEASER

############################################################################## */

body.page-teaser {
  padding-top: 0;
}
body.page-teaser .header--logo {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  background: #fff;
  padding: 10px 20px;
}
body.page-teaser .balloon--txt {
  text-align: center;
  font-size: 1.5rem;
}
body.page-teaser .lps_sec {
  background-color: #f1fff8;
}
@media screen and (min-width: 1601px) {
  body.page-teaser .hero {
    height: 35vw;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 767px) {
  body.page-teaser .header--logo {
    left: 10px;
    top: 10px;
    padding: 0 10px;
  }
  body.page-teaser .header--logo a svg,
  body.page-teaser .header-sm .header--logo a svg {
    width: 154px;
  }
  body.page-teaser .section_pdg:first-child {
    padding-top: 40px;
  }
}

.common_search .sec-head-03 .minamo {
  display: none;
}
body[class*="page-highschool-"] .wrapper .main_column_spilit img {
  border: 2px solid #00693e;
  border-radius: 8px;
}
