@charset "UTF-8";
/******************************* Preface ***************************************/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
a:hover {
  color: #009183;
}

/********************************* body ***************************************/
html {
  scroll-behavior: smooth;
}

body {
  /******************************** header **************************************/
  /********************************  Main Content ******************************/
  /***********************************  footer ********************************/
  /******************************** nav modal **************************************/
}
body header {
  position: relative;
}
body header.header.top {
  height: 100vh;
}
body header.header .inner {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 1rem;
  background-color: #009183;
  transition: all linear 0.2s;
  z-index: 999;
}
body header.header .inner .logo {
  width: 350px;
  padding: 0.5rem 0;
}
body header.header .inner .logo a {
  display: block;
  transition: 0.2s;
}
body header.header .inner .logo a img {
  max-width: 100%;
  height: auto;
}
body header.header .inner .menu-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
body header.header .inner .menu-wrapper .sub-nav {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  width: 240px;
}
body header.header .inner .menu-wrapper .sub-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 0.8rem 0.4rem;
  color: #005DA1;
  background-color: white;
  border: 1px solid white;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
  line-height: 1;
}
body header.header .inner .menu-wrapper .sub-nav a .material-symbols-outlined {
  font-size: 1.5rem;
  margin-right: 0.3rem;
}
body header.header .inner .menu-wrapper .sub-nav a:hover {
  opacity: 0.8;
}
body header.header .inner .menu-wrapper .sub-nav a.lock, body header.header .inner .menu-wrapper .sub-nav a.logout {
  background: #005DA1;
  border-color: #005DA1;
  color: white;
}
body header.header .inner .menu-wrapper nav.gnav {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem 0;
  margin-right: 1.5rem;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item {
  position: relative;
  height: 100%;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item:nth-child(n+2) {
  margin-left: 1.5rem;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item a {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  transform: scale(1);
  transition: transform linear 0.2s;
  height: 100%;
  cursor: pointer;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item a span {
  position: relative;
  transform: scale(1);
  transition: all linear 0.2s;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item a span::before {
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 100%;
  height: 3px;
  content: "";
  background: white;
  border-radius: 999px;
  transform: scale(0);
  transition: all linear 0.3s;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item a:hover {
  opacity: 1;
  color: white;
  transform: scale(1.1);
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item a:hover span::before {
  transform: scale(1);
}
body header.header .mainvi {
  height: 95%;
  width: 100%;
  position: relative;
}
body header.header .mainvi .slider {
  height: 100%;
}
body header.header .mainvi .slider div {
  height: 100%;
  background-image: url(../img/mv_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: brightness(85%);
}
body header.header .mainvi .copy {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  width: 100%;
}
body header.header .mainvi .copy h1 {
  width: 100%;
  max-width: 1180px;
  text-shadow: 4px 0px 3px rgba(0, 0, 0, 0.5);
}
body header.header .mainvi .copy h1 span {
  display: block;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: white;
}
body header.header .mainvi .copy h1 span.sub {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.8;
  padding-top: 1rem;
}
body header.header .mainvi .slogan {
  background: -moz-linear-gradient(left, rgb(0, 145, 131), rgb(0, 93, 161));
  background: -webkit-linear-gradient(left, rgb(0, 145, 131), rgb(0, 93, 161));
  background: linear-gradient(to right, rgb(0, 145, 131), rgb(0, 93, 161));
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
}
body header.header .mainvi .slogan h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}
@media screen and (max-width: 1040px) {
  body header.header .mainvi .copy h1 {
    width: 100%;
    padding-left: 40px;
  }
  body header.header .mainvi .copy h1 span {
    font-size: 5vw;
  }
  body header.header .mainvi .copy h1 span.sub {
    font-size: 2vw;
  }
}
body .breadcrumb-wrap {
  padding: 0 60px;
}
body .breadcrumb-wrap ul {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1em 0;
}
body .breadcrumb-wrap ul li {
  font-size: 0.9rem;
}
body .breadcrumb-wrap ul li::after {
  padding: 0 1em;
  content: url(../img/arrow_black.svg);
  vertical-align: text-top;
}
body .breadcrumb-wrap ul li:last-child::after {
  content: "";
}
body .breadcrumb-wrap ul li:first-child {
  color: #009183;
}
body .breadcrumb-wrap ul li a {
  text-decoration: none;
}
@media screen and (min-width: 678px) and (max-width: 1180px) {
  body .breadcrumb-wrap {
    padding: 0 40px;
  }
}
body .mypage-post-wrap #info_online,
body .mypage-post-wrap #report_carbon,
body .mypage-post-wrap #report_meeting,
body .mypage-post-wrap #interview {
  display: none;
}
body .mypage-post-wrap .content-wrap {
  position: relative;
}
body .mypage-post-wrap .content-wrap:nth-of-type(even)::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/bg_repeat.svg);
  background-repeat: repeat;
  background-size: 34px;
  background-position: center;
  z-index: -1;
}
body .content-wrap {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  /********************************* WP-mem parts style ***************************************/
  /********************************* MW-WP parts style ***************************************/
}
@media screen and (min-width: 678px) and (max-width: 1180px) {
  body .content-wrap {
    padding: 4rem 0;
  }
}
body .content-wrap .inner.inner-l {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
body .content-wrap .inner.inner-m {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
body .content-wrap .inner.inner-s {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
}
@media screen and (min-width: 678px) and (max-width: 1150px) {
  body .content-wrap .inner.inner-s {
    padding: 0 40px;
  }
  body .content-wrap .inner.inner-m {
    padding: 0 40px;
  }
  body .content-wrap .inner.inner-l {
    padding: 0 40px;
  }
}
body .content-wrap.bg-repeat {
  position: relative;
}
body .content-wrap.bg-repeat::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/bg_repeat.svg);
  background-repeat: repeat;
  background-size: 34px;
  background-position: center;
  z-index: -1;
}
body .content-wrap .header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
body .content-wrap .header-row .section-title {
  width: 100%;
  margin-right: -20%;
}
body .content-wrap h1.section-title span,
body .content-wrap h2.section-title span,
body .content-wrap h3.section-title span,
body .content-wrap h4.section-title span,
body .content-wrap h5.section-title span,
body .content-wrap h6.section-title span {
  display: block;
}
body .content-wrap h1.section-title span.main,
body .content-wrap h2.section-title span.main,
body .content-wrap h3.section-title span.main,
body .content-wrap h4.section-title span.main,
body .content-wrap h5.section-title span.main,
body .content-wrap h6.section-title span.main {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
}
body .content-wrap h1.section-title span.sub,
body .content-wrap h2.section-title span.sub,
body .content-wrap h3.section-title span.sub,
body .content-wrap h4.section-title span.sub,
body .content-wrap h5.section-title span.sub,
body .content-wrap h6.section-title span.sub {
  font-size: 0.9rem;
  font-weight: 500;
  color: #009183;
  line-height: 1.4;
}
body .content-wrap h1.section-title-02 span,
body .content-wrap h2.section-title-02 span,
body .content-wrap h3.section-title-02 span,
body .content-wrap h4.section-title-02 span,
body .content-wrap h5.section-title-02 span,
body .content-wrap h6.section-title-02 span {
  display: block;
}
body .content-wrap h1.section-title-02 span.main,
body .content-wrap h2.section-title-02 span.main,
body .content-wrap h3.section-title-02 span.main,
body .content-wrap h4.section-title-02 span.main,
body .content-wrap h5.section-title-02 span.main,
body .content-wrap h6.section-title-02 span.main {
  font-size: 2rem;
  font-weight: bold;
  color: #009183;
  line-height: 1.8;
}
body .content-wrap h1.content-title,
body .content-wrap h2.content-title,
body .content-wrap h3.content-title,
body .content-wrap h4.content-title,
body .content-wrap h5.content-title,
body .content-wrap h6.content-title {
  margin-bottom: 3rem;
}
body .content-wrap h1.content-title.boder-left-01,
body .content-wrap h2.content-title.boder-left-01,
body .content-wrap h3.content-title.boder-left-01,
body .content-wrap h4.content-title.boder-left-01,
body .content-wrap h5.content-title.boder-left-01,
body .content-wrap h6.content-title.boder-left-01 {
  font-size: 1.4rem;
  font-weight: bold;
  border-left: 6px solid #009183;
  padding-left: 0.7rem;
}
body .content-wrap h1.content-title.boder-left-02,
body .content-wrap h2.content-title.boder-left-02,
body .content-wrap h3.content-title.boder-left-02,
body .content-wrap h4.content-title.boder-left-02,
body .content-wrap h5.content-title.boder-left-02,
body .content-wrap h6.content-title.boder-left-02 {
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid #009183;
}
body .content-wrap h1.content-title.boder-left-02 .main,
body .content-wrap h2.content-title.boder-left-02 .main,
body .content-wrap h3.content-title.boder-left-02 .main,
body .content-wrap h4.content-title.boder-left-02 .main,
body .content-wrap h5.content-title.boder-left-02 .main,
body .content-wrap h6.content-title.boder-left-02 .main {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.5rem 0;
}
body .content-wrap h1.content-title.boder-left-02::after,
body .content-wrap h2.content-title.boder-left-02::after,
body .content-wrap h3.content-title.boder-left-02::after,
body .content-wrap h4.content-title.boder-left-02::after,
body .content-wrap h5.content-title.boder-left-02::after,
body .content-wrap h6.content-title.boder-left-02::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 0;
  width: 3px;
  height: 40%;
  background-color: #005DA1;
}
body .content-wrap h1.lead-text,
body .content-wrap h2.lead-text,
body .content-wrap h3.lead-text,
body .content-wrap h4.lead-text,
body .content-wrap h5.lead-text,
body .content-wrap h6.lead-text {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.6;
}
body .content-wrap .top-bg-img {
  background-image: url(../img/top_bg_01.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 5rem 1.5rem;
  border-radius: 30px;
}
body .content-wrap .top-bg-img .text {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  color: #136725;
}
body .content-wrap .top-bg-img .text h4 {
  font-size: 1.2rem;
  font-weight: bold;
}
body .content-wrap .top-company-wrap {
  position: relative;
  padding: 5rem 0;
  background-image: url(../img/top_company_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  border-radius: 20px;
  z-index: 0;
}
body .content-wrap .top-company-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  z-index: -1;
}
body .content-wrap .top-company-wrap .header-title {
  display: flex;
  padding-bottom: 3rem;
}
body .content-wrap .top-company-wrap .header-title .section-title {
  width: 40%;
}
body .content-wrap .top-company-wrap .header-title .text {
  width: 60%;
}
body .content-wrap .top-company-wrap .text-link {
  display: flex;
  justify-content: space-between;
}
body .content-wrap .top-company-wrap .text-link a {
  display: block;
  width: 40%;
  color: white;
}
body .content-wrap .top-company-wrap .text-link a span {
  display: block;
  line-height: 2;
}
body .content-wrap .top-company-wrap .text-link a span.main {
  font-size: 1.1rem;
  font-weight: bold;
}
body .content-wrap .top-company-wrap .text-link a span.sub {
  border-bottom: 2px solid white;
}
body .content-wrap .news-list-wrap.news-list-01 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
body .content-wrap .news-list-wrap.news-list-01 li {
  width: calc((100% - 4rem) / 3);
  margin-right: 2rem;
  margin-bottom: 2rem;
}
body .content-wrap .news-list-wrap.news-list-01 li:nth-child(3n) {
  margin-right: 0;
}
body .content-wrap .news-list-wrap.news-list-01 li a {
  display: block;
  transition: all 0.3s;
}
body .content-wrap .news-list-wrap.news-list-01 li a:hover {
  text-decoration: none;
  color: black;
  opacity: 0.7;
}
body .content-wrap .news-list-wrap.news-list-01 li a .thumb img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
body .content-wrap .news-list-wrap.news-list-01 li a .text {
  padding: 1.5rem;
  background: #F6F6F7;
  border-bottom: 4px solid #009183;
}
body .content-wrap .news-list-wrap.news-list-01 li a .text .date {
  font-size: 0.8rem;
  padding-bottom: 1rem;
  line-height: 1;
}
body .content-wrap .news-list-wrap.news-list-01 li a .text .date > span {
  display: inline-block;
  color: #009183;
  font-size: 1rem;
  font-weight: bold;
  margin-right: 0.5rem;
}
body .content-wrap .news-list-wrap.news-list-01 li a .text .title {
  font-size: 1.1rem;
  font-weight: bold;
  min-height: 6em;
}
body .content-wrap .news-list-wrap.news-list-02 li {
  border-bottom: solid 1px #e9e9e9;
}
body .content-wrap .news-list-wrap.news-list-02 li:first-child {
  border-top: solid 1px #e9e9e9;
}
body .content-wrap .news-list-wrap.news-list-02 li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  padding-right: 3em;
}
body .content-wrap .news-list-wrap.news-list-02 li a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
body .content-wrap .news-list-wrap.news-list-02 li a .date {
  font-size: 0.9rem;
  margin-right: 1em;
}
body .content-wrap .news-list-wrap.news-list-02 li a .category {
  display: flex;
  align-items: center;
}
body .content-wrap .news-list-wrap.news-list-02 li a .category span {
  display: block;
  margin-right: 0.5em;
}
body .content-wrap .news-list-wrap.news-list-02 li a .title {
  width: 100%;
  font-weight: 500;
}
body .content-wrap .article-detail .ttl h2 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}
body .content-wrap .article-detail .ttl .date {
  font-family: "Montserrat", sans-serif;
}
body .content-wrap .article-detail .ttl .date > span {
  display: inline-block;
  border: 1px solid #009183;
  color: #009183;
  padding: 0 2rem;
  border-radius: 1rem;
  margin-left: 1rem;
  font-size: 0.9rem;
}
body .content-wrap .article-detail .artcle img {
  display: block;
  width: 100%;
  padding: 2rem 0;
}
body .content-wrap .article-detail .artcle a {
  text-decoration: underline;
  color: #009183;
}
body .content-wrap .mypage-news-detail h1 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}
body .content-wrap .mypage-news-detail .post-date {
  font-family: "Montserrat", sans-serif;
}
body .content-wrap .mypage-news-detail .post-date > span {
  display: inline-block;
  border: 1px solid #009183;
  color: #009183;
  padding: 0 2rem;
  border-radius: 1rem;
  margin-left: 1rem;
  font-size: 0.9rem;
}
body .content-wrap .mypage-news-detail .post-content img {
  display: block;
  width: 100%;
  padding: 1rem 0;
}
body .content-wrap .mypage-news-detail .post-content a {
  text-decoration: underline;
  color: #009183;
}
body .content-wrap .text-list-wrap {
  border: 1px solid #009183;
  border-radius: 5px;
  padding: 2rem 3rem;
  margin-bottom: 2rem;
}
body .content-wrap .text-list-wrap li {
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
}
body .content-wrap .text-list-wrap li:last-child {
  padding-bottom: 0;
}
body .content-wrap .text-list-wrap li .main {
  position: relative;
  display: inline-block;
  width: 20%;
  font-weight: bold;
  color: #009183;
  margin-right: 1em;
}
body .content-wrap .text-list-wrap li .main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background-color: #009183;
}
body .content-wrap .text-list-wrap li .detail {
  width: 80%;
  font-weight: bold;
}
body .content-wrap .about-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
body .content-wrap .about-nav-list li {
  width: calc(20% - 20px);
  margin-right: 20px;
}
body .content-wrap .about-nav-list li:nth-child(5n) {
  margin-right: 0;
}
body .content-wrap .about-nav-list li a {
  position: relative;
  display: block;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding-left: 40px;
}
body .content-wrap .about-nav-list li a::before {
  content: "↓";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #009183;
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
}
body .content-wrap .footer-info-wrap {
  position: relative;
  padding: 5rem 0;
  background-image: url(../img/footer_info_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  border-radius: 20px;
  z-index: 0;
}
body .content-wrap .footer-info-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  z-index: -1;
}
body .content-wrap .footer-info-wrap .header-title {
  display: flex;
  padding-bottom: 3rem;
}
body .content-wrap .footer-info-wrap .header-title .section-title {
  width: 35%;
}
body .content-wrap .footer-info-wrap .header-title .text {
  width: 65%;
}
body .content-wrap .footer-info-wrap .text-link {
  display: flex;
  justify-content: space-between;
}
body .content-wrap .footer-info-wrap .text-link a {
  position: relative;
  display: block;
  padding: 1rem;
  width: calc(33.3333333333% - 1em);
  color: #009183;
  background: white;
  border-radius: 5px;
}
body .content-wrap .footer-info-wrap .text-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
}
body .content-wrap .footer-info-wrap .text-link a span {
  display: block;
}
body .content-wrap .footer-info-wrap .text-link a span.main {
  font-size: 1.1rem;
  font-weight: 500;
}
body .content-wrap .text-content-wrap h4 {
  font-weight: 500;
  font-size: 1.3rem;
}
body .content-wrap .text-content-wrap p {
  font-weight: 500;
}
body .content-wrap .point-text-list {
  margin-top: 2rem;
  padding: 1rem 2rem;
  border-radius: 10px;
}
body .content-wrap .point-text-list li {
  margin-bottom: 1rem;
}
body .content-wrap .point-text-list li:last-child {
  margin-bottom: 0;
}
body .content-wrap .point-text-list li p.main {
  padding-left: 20px;
  position: relative;
}
body .content-wrap .point-text-list li p.main::after {
  position: absolute;
  content: "●";
  font-size: 15px;
  color: #009183;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
body .content-wrap .point-text-list li p.font-l {
  font-size: 1.3rem;
  line-height: 2;
}
body .content-wrap .point-text-list li p.ttl {
  font-weight: 500;
  font-size: 1.3rem;
  color: #009183;
}
body .content-wrap .point-text-list li p.detail {
  font-weight: 500;
}
body .content-wrap .point-text-list li .check-box {
  display: flex;
  gap: 40px;
  padding-bottom: 2rem;
}
body .content-wrap .point-text-list li .check-box p {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1;
}
body .content-wrap .point-text-list li .check-box p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid black;
  border-radius: 50%;
  line-height: 1;
}
body .content-wrap .point-text-list li .check-box p.check-active::before {
  background: black;
}
body .content-wrap .point-text-list li .arrow {
  margin-bottom: 0.5rem;
  padding-left: 3em;
}
body .content-wrap .point-text-list li .arrow img {
  display: block;
  width: 100%;
  max-width: 40px;
}
body .content-wrap .point-text-list.support-list li {
  margin-bottom: 0;
  background: white;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #eee;
}
body .content-wrap .link-list {
  display: flex;
  flex-wrap: wrap;
}
body .content-wrap .link-list li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 4%;
}
body .content-wrap .link-list li:nth-child(3n) {
  margin-right: 0;
}
body .content-wrap .link-list li a {
  display: flex;
  align-items: center;
  position: relative;
}
body .content-wrap .link-list li a::before {
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #009183;
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  margin-right: 1rem;
}
body .content-wrap .link-list li a::after {
  content: "";
  background-image: url(../img/icon_tab.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: 3px;
  display: block;
  width: 18px;
  height: 22px;
  margin-left: 1rem;
}
body .content-wrap .link-list li a span {
  text-decoration: underline;
  font-size: 0.85rem;
}
body .content-wrap .sup-text-list {
  padding: 1.5rem;
  border-radius: 10px;
}
body .content-wrap .sup-text-list li {
  display: flex;
  padding: 1rem;
  background: white;
  border-bottom: 1px solid #EBEBEB;
}
body .content-wrap .sup-text-list li .main {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #EBEBEB;
}
body .content-wrap .sup-text-list li p {
  width: 80%;
  padding: 0 1em;
}
body .content-wrap .privacy-text-wrap h4 {
  font-weight: bold;
  padding-bottom: 0.5rem;
  color: #009183;
}
body .content-wrap .company-list-row .item a {
  background-color: white;
  border: 1px solid #C5C5C5;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.5rem;
  aspect-ratio: 1;
  display: block;
}
body .content-wrap .company-list-row .item a img {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
body .content-wrap .company-list-row .item a > p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
body .content-wrap .company-list-row .item p {
  font-size: 0.9rem;
}
body .content-wrap .company-list-row .item p.com-name {
  font-weight: 500;
}
body .content-wrap .company-list-row .item p .badge {
  color: white;
  font-size: 0.8rem;
}
body .content-wrap .company-list-row .item p .badge.challenger {
  background: #de7272;
}
body .content-wrap .company-list-row .item p .badge.supporter {
  background: #2995f4;
}
body .content-wrap .hexagon-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 5rem;
}
body .content-wrap .hexagon-wrap .hexagon-box {
  width: 25%;
  margin-right: 1rem;
}
body .content-wrap .hexagon-wrap .hexagon-box:nth-child(4n) {
  margin-right: 0;
}
body .content-wrap .hexagon-wrap .hexagon-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 320/240;
  background-image: url(../img/hexagon_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
body .content-wrap .hexagon-wrap .hexagon-box .icon img {
  display: block;
  width: 80px;
  margin: 0 auto;
}
body .content-wrap .block-panel-wrap .block-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
body .content-wrap .block-panel-wrap .block-panel .item {
  display: block;
  position: relative;
  margin-right: 3px;
  margin-bottom: 3px;
  transition: all 0.3s;
}
body .content-wrap .block-panel-wrap .block-panel .item:hover {
  opacity: 0.7;
}
body .content-wrap .block-panel-wrap .block-panel .item .thumb img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/11;
  overflow: hidden;
  filter: brightness(70%);
}
body .content-wrap .block-panel-wrap .block-panel .item .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
body .content-wrap .block-panel-wrap .block-panel .item .text .icon {
  padding-bottom: 0.5rem;
}
body .content-wrap .block-panel-wrap .block-panel .item .text .icon img {
  display: block;
  width: 80px;
  margin: 0 auto;
  object-fit: contain;
}
body .content-wrap .block-panel-wrap .block-panel .item .text .ttl {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}
body .content-wrap .block-panel-wrap .block-panel .item .text .ttl span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
body .content-wrap .block-panel-wrap .block-panel.col2 .item {
  width: calc(50% - 2px);
}
body .content-wrap .block-panel-wrap .block-panel.col2 .item:nth-child(2n) {
  margin-right: 0;
}
body .content-wrap .block-panel-wrap .block-panel.col3 .item {
  width: calc(33.333% - 2px);
}
body .content-wrap .block-panel-wrap .block-panel.col3 .item:nth-child(3n) {
  margin-right: 0;
}
body .content-wrap .block-panel-wrap .block-panel.col3 .item .thumb img {
  aspect-ratio: 1/1;
}
body .content-wrap .box-1col.box-1col-01 {
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
body .content-wrap .box-1col.box-1col-01.reverse {
  flex-direction: row;
}
body .content-wrap .box-1col.box-1col-01.reverse .text {
  padding-right: 0;
  padding-left: 3rem;
}
body .content-wrap .box-1col.box-1col-01 .thumb {
  width: 50%;
}
body .content-wrap .box-1col.box-1col-01 .thumb img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
body .content-wrap .box-1col.box-1col-01 .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 3rem;
}
body .content-wrap .box-1col.box-1col-01 .text > p {
  font-size: 1rem;
  line-height: 1.8;
}
body .content-wrap .box-1col.top-message {
  align-items: flex-start;
}
body .content-wrap .box-1col.top-message .thumb {
  width: 30%;
}
body .content-wrap .box-1col.top-message .thumb img {
  aspect-ratio: 350/420;
}
body .content-wrap .box-1col.top-message .text {
  width: 70%;
}
body .content-wrap .box-1col.box-1col-02 {
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
body .content-wrap .box-1col.box-1col-02.reverse {
  flex-direction: row-reverse;
}
body .content-wrap .box-1col.box-1col-02.reverse .text {
  padding-left: 0;
  padding-right: 3rem;
}
body .content-wrap .box-1col.box-1col-02 .thumb {
  width: 40%;
}
body .content-wrap .box-1col.box-1col-02 .thumb img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  border-radius: 10px;
}
body .content-wrap .box-1col.box-1col-02 .text {
  width: 60%;
  padding-left: 3rem;
}
body .content-wrap .box-1col.box-1col-02 .text > p {
  font-size: 1rem;
  line-height: 1.8;
}
body .content-wrap .thumb-1col-wrap img {
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
body .content-wrap .thumb-1col-wrap img.pdf {
  max-width: 650px;
}
body .content-wrap .mypage-prof .card-body {
  font-size: 0.9rem;
}
body .content-wrap .mypage-prof .card-body .thumb {
  padding: 1rem;
  background-color: #eee;
}
body .content-wrap .mypage-prof .card-body .thumb img {
  display: block;
}
body .content-wrap .mypage-prof .card-body p {
  font-size: 0.9rem;
}
body .content-wrap .mypage-prof .card-body p .badge {
  color: white;
  font-size: 0.8rem;
}
body .content-wrap .mypage-prof .card-body p .badge.challenger {
  background: #de7272;
}
body .content-wrap .mypage-prof .card-body p .badge.supporter {
  background: #2995f4;
}
body .content-wrap .box.box-2 .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .content-wrap .box.box-2 .item.reverse {
  flex-direction: row-reverse;
}
body .content-wrap .box.box-2 .item.reverse .text {
  padding-right: 2rem;
  padding-left: 0;
}
body .content-wrap .box.box-2 .item > * {
  width: calc(50% - 20px);
}
body .content-wrap .box .thumb img {
  display: block;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}
body .content-wrap .box .text p {
  font-size: 1rem;
}
body .content-wrap .box .text .main {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
body .content-wrap .box-2col.box-2col-01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body .content-wrap .box-2col.box-2col-01 .item {
  width: 48%;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}
body .content-wrap .box-2col.box-2col-01 .item:nth-child(2n) {
  margin-right: 0;
}
body .content-wrap .box-2col.box-2col-01 .item .title {
  border-left: 3px solid #009183;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: bold;
}
body .content-wrap .box-2col.box-2col-01 .item .thumb img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/11;
  overflow: hidden;
}
body .content-wrap .box-2col.box-2col-01 .item .text {
  padding: 1rem 0;
  line-height: 1.6;
}
body .content-wrap .box-3col.box-3col-01 ul.list {
  display: flex;
  flex-wrap: wrap;
}
body .content-wrap .box-3col.box-3col-01 ul.list li {
  width: 31%;
  margin-right: 3%;
  margin-bottom: 3%;
  border: 1px solid #009183;
  border-radius: 10px;
  padding: 1rem;
}
body .content-wrap .box-3col.box-3col-01 ul.list li:nth-child(3n) {
  margin-right: 0;
}
body .content-wrap .box-3col.box-3col-01 ul.list li .num {
  display: inline-block;
  background: #009183;
  color: white;
  border-radius: 2em;
  padding: 0 1em;
  font-weight: bold;
  margin-bottom: 1em;
}
body .content-wrap .box-3col.box-3col-01 ul.list li .thumb {
  padding: 1em;
}
body .content-wrap .box-3col.box-3col-01 ul.list li .thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
}
body .content-wrap .box-3col.box-3col-01 ul.list li .text .main {
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  color: #009183;
  padding-bottom: 1em;
}
body .content-wrap .link-btn {
  width: 100%;
  max-width: 280px;
}
body .content-wrap .link-btn.main-color a {
  display: block;
  background-color: #009183;
  border: 1px solid #009183;
  color: #fff;
}
body .content-wrap .link-btn.main-color a:hover {
  background-color: #fff;
  color: #009183;
}
body .content-wrap .link-btn.main-color a:hover::after {
  border-color: #009183;
}
body .content-wrap .link-btn.main-color a::after {
  border-color: #fff;
}
body .content-wrap .link-btn.reverse-color a {
  background-color: #fff;
  border: 1px solid #009183;
  color: #009183;
}
body .content-wrap .link-btn.reverse-color a:hover {
  background-color: #009183;
  color: #fff;
}
body .content-wrap .link-btn.reverse-color a:hover::after {
  border-color: #fff;
}
body .content-wrap .link-btn a {
  display: block;
  transition: 0.3s;
}
body .content-wrap .link-btn.link-btn-01 a {
  position: relative;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
}
body .content-wrap .link-btn.link-btn-01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
}
body .content-wrap .link-btn.page-back a::after {
  content: "";
  display: none;
}
body .content-wrap .link-btn.page-back a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: rotate(-135deg) translateY(50%);
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
}
body .content-wrap .link-btn.center {
  margin: 0 auto;
}
body .content-wrap .link-btn.right {
  margin-left: auto;
}
body .content-wrap .table tr th {
  width: 20%;
  padding: 1.5rem 0;
}
body .content-wrap .table tr td {
  padding: 1.5rem 0;
}
body .content-wrap .table tr td .table-thumb {
  margin: 1rem 0;
}
body .content-wrap .table tr td .table-thumb img {
  display: block;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 16/11;
  object-fit: cover;
}
body .content-wrap .table tr td .table-thumb img.abot_table_01 {
  aspect-ratio: 1/1;
}
body .content-wrap .table tr td .pdf-link {
  background: #eee;
  padding: 1rem;
  margin-top: 1rem;
}
body .content-wrap .table tr td .pdf-link a {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
body .content-wrap .table tr td .pdf-link a .thumb img {
  display: block;
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
body .content-wrap .table tr td .pdf-link a .text {
  display: flex;
  align-items: flex-end;
}
body .content-wrap .table tr td .pdf-link a .text p {
  text-decoration: underline;
}
body .content-wrap .table tr td .pdf-link a .text span {
  display: block;
}
body .content-wrap .table tr td .pdf-link a .text span.material-symbols-outlined {
  font-size: 1.5rem;
  margin-left: 0.5rem;
}
body .content-wrap #wpmem_reg {
  margin: 0 auto;
  width: 100%;
}
body .content-wrap #wpmem_reg h3 {
  position: relative;
  font-size: 1.2rem;
  border-bottom: 3px solid #d8d8d8;
  padding: 1rem 0;
}
body .content-wrap #wpmem_reg h3::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 10%;
  height: 3px;
  content: "";
  background: #009183;
}
body .content-wrap #wpmem_reg .form-control {
  height: auto;
}
body .content-wrap #wpmem_reg .form_custom {
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
body .content-wrap #wpmem_reg .form_custom .col-md-6 {
  padding-left: 0;
}
body .content-wrap #wpmem_reg .form_custom .col-md-6 input.textbox {
  margin-top: 0.5rem;
}
body .content-wrap #wpmem_reg .form_custom label.text,
body .content-wrap #wpmem_reg .form_custom label.multicheckbox,
body .content-wrap #wpmem_reg .form_custom label.textarea {
  width: 35%;
}
body .content-wrap #wpmem_reg .form_custom label.multicheckbox_custom {
  width: 100%;
}
body .content-wrap #wpmem_reg .form_custom .div_text,
body .content-wrap #wpmem_reg .form_custom .div_textarea {
  width: 65%;
  margin: 0;
}
body .content-wrap #wpmem_reg .form_custom .custom-zipcode-wrap {
  display: flex;
  align-items: center;
}
body .content-wrap #wpmem_reg .form_custom .custom-zipcode-wrap #entry_branch_postcode {
  width: 20%;
}
body .content-wrap #wpmem_reg .form_custom .custom-zipcode-wrap .btn {
  width: 20%;
  height: 100%;
  margin-right: 0.5rem;
}
body .content-wrap #wpmem_reg .form_custom select,
body .content-wrap #wpmem_reg .form_custom input,
body .content-wrap #wpmem_reg .form_custom textarea {
  width: 100%;
  background-color: #F8F9F9;
  border: 1px solid #C5C5C5;
  padding: 1em;
  border-radius: 0.25rem;
}
body .content-wrap #wpmem_reg .form_custom select:not([readonly]):hover, body .content-wrap #wpmem_reg .form_custom select:not([readonly]):focus, body .content-wrap #wpmem_reg .form_custom select:not([readonly]):active,
body .content-wrap #wpmem_reg .form_custom input:not([readonly]):hover,
body .content-wrap #wpmem_reg .form_custom input:not([readonly]):focus,
body .content-wrap #wpmem_reg .form_custom input:not([readonly]):active,
body .content-wrap #wpmem_reg .form_custom textarea:not([readonly]):hover,
body .content-wrap #wpmem_reg .form_custom textarea:not([readonly]):focus,
body .content-wrap #wpmem_reg .form_custom textarea:not([readonly]):active {
  outline: 2px solid #009183;
  border-color: transparent !important;
  box-shadow: none !important;
}
body .content-wrap #wpmem_reg .form_custom select::placeholder,
body .content-wrap #wpmem_reg .form_custom input::placeholder,
body .content-wrap #wpmem_reg .form_custom textarea::placeholder {
  color: #ccc;
}
body .content-wrap #wpmem_reg .form_custom select[readonly],
body .content-wrap #wpmem_reg .form_custom input[readonly],
body .content-wrap #wpmem_reg .form_custom textarea[readonly] {
  background-color: #ddd;
}
body .content-wrap #wpmem_reg .form_custom input[type=checkbox] {
  position: relative;
  width: 16px;
  height: 16px;
  line-height: 1;
  padding: 0;
  margin-right: 10px;
  display: inline-block;
  background: white;
  outline: 1px solid #009183;
}
body .content-wrap #wpmem_reg .form_custom input[type=checkbox]:checked:after {
  content: "✓";
  font-weight: bold;
}
body .content-wrap #wpmem_reg .form_custom label.checkbox {
  width: 60%;
}
body .content-wrap #wpmem_reg .form_custom .div_checkbox {
  margin: 0 auto;
}
body .content-wrap #wpmem_reg .form_custom .div_checkbox input[type=checkbox]::before {
  content: "同意する";
  display: block;
  position: absolute;
  top: 50%;
  left: 2em;
  transform: translateY(-50%);
  width: 5em;
}
body .content-wrap #wpmem_reg .form_custom .div_radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
body .content-wrap #wpmem_reg .form_custom .div_radio label {
  display: flex;
  align-items: center;
  width: 10%;
  padding-bottom: 0;
  margin-bottom: 0;
}
body .content-wrap #wpmem_reg .form_custom .div_radio input[type=radio] {
  position: relative;
  background: white;
  padding: 0;
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body .content-wrap #wpmem_reg .form_custom .div_radio input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
  content: "";
}
body .content-wrap #wpmem_reg .button_div input[type=submit] {
  display: block;
  background-color: #009183;
  color: white;
  position: relative;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  width: 350px;
  margin: 0 auto;
  border-radius: 100rem;
}
body .content-wrap #wpmem_reg .button_div input[type=submit]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
}
body .content-wrap .confirm-page-wrap h3 {
  position: relative;
  font-size: 1.2rem;
  border-bottom: 3px solid #d8d8d8;
  padding: 1rem 0;
}
body .content-wrap .confirm-page-wrap h3::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 10%;
  height: 3px;
  content: "";
  background: #009183;
}
body .content-wrap .confirm-page-wrap h3.section-title {
  border-bottom: none;
}
body .content-wrap .confirm-page-wrap h3.section-title::before {
  display: none;
}
body .content-wrap .confirm-page-wrap dl {
  display: flex;
}
body .content-wrap .confirm-page-wrap dl dt {
  width: 30%;
  font-weight: 500;
}
body .content-wrap .confirm-page-wrap dl dd {
  width: 70%;
}
body .content-wrap .confirm-page-wrap .confirm-btn-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
body .content-wrap .confirm-page-wrap .confirm-btn-wrap .btn {
  display: block;
  background-color: #009183;
  color: white;
  position: relative;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  width: 350px;
  margin: 0 auto;
  border-radius: 10px;
  border: none;
}
body .content-wrap .confirm-page-wrap .confirm-btn-wrap .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
}
body .content-wrap .confirm-page-wrap .confirm-btn-wrap .btn.btn-secondary {
  background: gray;
}
body .content-wrap .confirm-page-wrap .confirm-btn-wrap .btn.btn-secondary::after {
  content: "";
  display: none;
}
body .content-wrap .confirm-page-wrap .confirm-btn-wrap .btn.btn-secondary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: rotate(-135deg) translateY(50%);
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
}
body .content-wrap .mw_wp_form form .form-control {
  height: auto;
}
body .content-wrap .mw_wp_form form .row {
  margin-left: 0;
  margin-right: 0;
}
body .content-wrap .mw_wp_form form .row .col-12,
body .content-wrap .mw_wp_form form .row .col-6 {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}
body .content-wrap .mw_wp_form form .row .col-12 label,
body .content-wrap .mw_wp_form form .row .col-6 label {
  width: 25%;
  font-size: 1rem;
  font-weight: 500;
}
body .content-wrap .mw_wp_form form .row .col-12 label.reqire::after,
body .content-wrap .mw_wp_form form .row .col-6 label.reqire::after {
  content: "*";
  color: red;
  font-size: 1.2rem;
}
body .content-wrap .mw_wp_form form .row .col-12 .radio-wrap,
body .content-wrap .mw_wp_form form .row .col-6 .radio-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
}
body .content-wrap .mw_wp_form form .row .col-12 .radio-wrap label,
body .content-wrap .mw_wp_form form .row .col-6 .radio-wrap label {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 0.5rem;
}
body .content-wrap .mw_wp_form form .row .col-12 .radio-wrap input[type=radio],
body .content-wrap .mw_wp_form form .row .col-6 .radio-wrap input[type=radio] {
  position: relative;
  background: white;
  padding: 0;
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body .content-wrap .mw_wp_form form .row .col-12 .radio-wrap input[type=radio]:checked:before,
body .content-wrap .mw_wp_form form .row .col-6 .radio-wrap input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
  content: "";
}
body .content-wrap .mw_wp_form form .row .col-12 select,
body .content-wrap .mw_wp_form form .row .col-12 input,
body .content-wrap .mw_wp_form form .row .col-12 textarea,
body .content-wrap .mw_wp_form form .row .col-6 select,
body .content-wrap .mw_wp_form form .row .col-6 input,
body .content-wrap .mw_wp_form form .row .col-6 textarea {
  width: 75%;
  background-color: #F8F9F9;
  border: 1px solid #C5C5C5;
  padding: 1em;
  border-radius: 0.25rem;
}
body .content-wrap .mw_wp_form form .row .col-12 select:hover, body .content-wrap .mw_wp_form form .row .col-12 select:focus, body .content-wrap .mw_wp_form form .row .col-12 select:active,
body .content-wrap .mw_wp_form form .row .col-12 input:hover,
body .content-wrap .mw_wp_form form .row .col-12 input:focus,
body .content-wrap .mw_wp_form form .row .col-12 input:active,
body .content-wrap .mw_wp_form form .row .col-12 textarea:hover,
body .content-wrap .mw_wp_form form .row .col-12 textarea:focus,
body .content-wrap .mw_wp_form form .row .col-12 textarea:active,
body .content-wrap .mw_wp_form form .row .col-6 select:hover,
body .content-wrap .mw_wp_form form .row .col-6 select:focus,
body .content-wrap .mw_wp_form form .row .col-6 select:active,
body .content-wrap .mw_wp_form form .row .col-6 input:hover,
body .content-wrap .mw_wp_form form .row .col-6 input:focus,
body .content-wrap .mw_wp_form form .row .col-6 input:active,
body .content-wrap .mw_wp_form form .row .col-6 textarea:hover,
body .content-wrap .mw_wp_form form .row .col-6 textarea:focus,
body .content-wrap .mw_wp_form form .row .col-6 textarea:active {
  outline: 2px solid #009183;
  border-color: transparent !important;
  box-shadow: none !important;
}
body .content-wrap .mw_wp_form form .checkbox-consent {
  text-align: center;
}
body .content-wrap .mw_wp_form form .checkbox-consent input[type=checkbox] {
  position: relative;
  width: 16px;
  height: 16px;
  line-height: 1;
  padding: 0;
  margin-right: 10px;
  display: inline-block;
  background: white;
  outline: 1px solid #009183;
}
body .content-wrap .mw_wp_form form .checkbox-consent input[type=checkbox]:checked:after {
  content: "✓";
  font-weight: bold;
}
body .content-wrap .mw_wp_form form .checkbox-consent .form-group .form-check {
  width: 100%;
  justify-content: center;
}
body .content-wrap .mw_wp_form form .checkbox-consent .form-group .form-check label {
  width: auto;
}
body .content-wrap .mw_wp_form form .checkbox-consent .form-group .form-check label > a {
  text-decoration: underline;
}
body .content-wrap .mw_wp_form form .checkbox-consent .form-group .form-check span.error {
  margin-left: 1rem;
}
body .content-wrap .mw_wp_form form .link-btn a,
body .content-wrap .mw_wp_form form .link-btn input[type=submit] {
  display: block;
  background-color: #009183;
  color: white;
  position: relative;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  width: 350px;
  margin: 0 auto;
  border-radius: 100rem;
}
body .content-wrap .mw_wp_form form .link-btn a::after,
body .content-wrap .mw_wp_form form .link-btn input[type=submit]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
}
body .content-wrap .scroll-wrap {
  height: 300px;
  overflow: auto;
  border: 1px solid #D6D6D6;
  padding: 1.5rem;
  background: white;
}
body .content-wrap .scroll-wrap h5 {
  padding-bottom: 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
}
body .content-wrap .scroll-wrap p {
  padding-bottom: 1rem;
  line-height: 1.8;
}
body .content-wrap .accordion-wrap .card {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #009183;
}
body .content-wrap .accordion-wrap .card-header {
  border: none;
  padding: 1rem 0;
  background: white;
  justify-content: center;
}
body .content-wrap .accordion-wrap .card-header .btn-link {
  position: relative;
  width: 100%;
  color: black;
  font-size: 1.1rem;
  text-align: left;
  font-weight: 500;
  text-decoration: none;
  padding: 0;
}
body .content-wrap .accordion-wrap .card-header .btn-link > span {
  font-family: "Outfit", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5em;
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  background: #009183;
  border-radius: 100rem;
  line-height: 1;
  width: 40px;
  height: 40px;
}
body .content-wrap .accordion-wrap .card-header .btn-link:focus {
  box-shadow: none;
}
body .content-wrap .accordion-wrap .card-header .btn-link::before, body .content-wrap .accordion-wrap .card-header .btn-link::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 2px;
  background-color: #009183;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
body .content-wrap .accordion-wrap .card-header .btn-link::after {
  transform: translateY(-50%) rotate(90deg);
}
body .content-wrap .accordion-wrap .card-header .btn-link.collapsed::before {
  opacity: 1;
}
body .content-wrap .accordion-wrap .card-header .btn-link.collapsed::after {
  transform: translateY(-50%) rotate(90deg);
}
body .content-wrap .accordion-wrap .card-header .btn-link:not(.collapsed)::before {
  opacity: 1;
}
body .content-wrap .accordion-wrap .card-header .btn-link:not(.collapsed)::after {
  transform: translateY(-50%) rotate(0deg);
}
body .content-wrap .accordion-wrap .card-body {
  border: none;
  border-radius: 0;
  background: #F9F9F9;
  padding: 1rem 4rem;
  font-weight: 500;
}
body .content-wrap .accordion-wrap .card-body .text a {
  text-decoration: underline;
}
body .content-wrap .map {
  aspect-ratio: 16/8;
}
body .content-wrap .map iframe {
  width: 100%;
  height: 100%;
  max-height: 500px;
}
body #sticky-wrapper {
  transition: all 0.3s ease-in-out;
}
body #sticky-wrapper.fixed {
  position: fixed;
  top: 10%;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
}
body #sticky-wrapper .card-header .btn-link {
  color: #005DA1;
}
body #sticky-wrapper .card-header .btn-link:focus {
  box-shadow: none;
}
body #sticky-wrapper .card-body .navbar {
  display: block;
  width: 100%;
}
body #sticky-wrapper .card-body .navbar .navbar-nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  opacity: 0.9;
}
body #sticky-wrapper .card-body .navbar .navbar-nav .nav-item {
  margin-right: 1rem;
}
body #sticky-wrapper .card-body .navbar .navbar-nav .nav-link.active {
  font-weight: bold;
  color: #005DA1 !important;
  border-bottom: 2px solid #005DA1;
}
body #wpmem_login {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
body #wpmem_login fieldset legend {
  text-align: center;
  color: #009183;
  padding-bottom: 2em;
}
body #wpmem_login fieldset label {
  display: block;
  margin-bottom: 0.5rem;
}
body #wpmem_login .div_text {
  margin-bottom: 2rem;
}
body #wpmem_login .div_text input {
  width: 100%;
  background-color: #F8F9F9;
  border: 1px solid #C5C5C5;
  padding: 1em;
  border-radius: 0.25rem;
}
body #wpmem_login .div_text input:hover, body #wpmem_login .div_text input:focus, body #wpmem_login .div_text input:active {
  outline: 2px solid #009183;
  border-color: transparent !important;
  box-shadow: none !important;
}
body #wpmem_login .button_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body #wpmem_login .button_div label {
  margin-bottom: 0;
}
body #wpmem_login .button_div input[type=checkbox] {
  position: relative;
  width: 16px;
  height: 16px;
  line-height: 1;
  padding: 0;
  margin-right: 10px;
  display: inline-block;
  background: white;
  outline: 1px solid #009183;
}
body #wpmem_login .button_div input[type=checkbox]:checked:after {
  content: "✓";
  font-weight: bold;
}
body #wpmem_login .button_div input[type=submit] {
  display: block;
  background-color: #009183;
  color: white;
  position: relative;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  width: 250px;
  margin-left: auto;
  border-radius: 10px;
}
body #wpmem_login .button_div input[type=submit]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
}
body .wpmem_msg {
  width: 100%;
}
body .ancor {
  overflow: visible;
}
body .ancor a {
  display: block;
  padding-top: 8rem;
  margin-top: -8rem;
}
body footer.footer {
  background: #009183;
}
body footer.footer .inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (min-width: 678px) and (max-width: 1180px) {
  body footer.footer .inner.inner {
    padding: 4rem 40px;
  }
}
body footer.footer .inner .logo {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid white;
}
body footer.footer .inner .logo img {
  display: block;
  width: 100%;
  max-width: 450px;
}
body footer.footer .inner .flex-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2rem;
}
body footer.footer .inner .flex-wrap .tail {
  width: 65%;
}
body footer.footer .inner .flex-wrap .tail nav .menu-footer-container {
  display: flex;
  width: 100%;
}
body footer.footer .inner .flex-wrap .tail nav .menu-footer-container .list-wrap {
  width: 33.3333333333%;
  margin-left: 2rem;
  padding-top: 1rem;
}
body footer.footer .inner .flex-wrap .tail nav .menu-footer-container .list-wrap:first-child {
  margin-left: 0;
}
body footer.footer .inner .flex-wrap .tail nav .menu-footer-container .list-wrap .menu .menu-item {
  padding-bottom: 1rem;
}
body footer.footer .inner .flex-wrap .tail nav .menu-footer-container .list-wrap .menu .menu-item a {
  display: block;
  padding-bottom: 0.5rem;
  transition: all 0.3s;
  color: white;
  font-weight: bold;
}
body footer.footer .inner .flex-wrap .tail nav .menu-footer-container .list-wrap .menu .menu-item a:hover {
  opacity: 0.7;
}
body footer.footer .inner .flex-wrap .tail nav .menu-footer-container .list-wrap .menu .menu-item.menu-item-has-children .sub-menu {
  padding-bottom: 1rem;
}
body footer.footer .inner .flex-wrap .tail nav .menu-footer-container .list-wrap .menu .menu-item.menu-item-has-children .sub-menu a {
  display: block;
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
  padding-left: 1.5em;
  padding-bottom: 0;
}
body footer.footer .inner .flex-wrap .tail nav .menu-footer-container .list-wrap .menu .menu-item.menu-item-has-children .sub-menu a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 0.8px solid white;
  width: 1em;
}
body footer.footer .inner .flex-wrap .link-wrap {
  width: 35%;
}
body footer.footer .inner .flex-wrap .link-wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  width: 100%;
  max-width: 280px;
  padding: 1rem 0;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
  border: 2px solid white;
  border-radius: 100rem;
  color: white;
  transition: all 0.3s;
}
body footer.footer .inner .flex-wrap .link-wrap a .material-symbols-outlined {
  font-size: 1.8rem;
  margin-right: 0.3rem;
}
body footer.footer .inner .flex-wrap .link-wrap a.contact {
  margin-bottom: 5rem;
}
body footer.footer .inner .flex-wrap .link-wrap a.person, body footer.footer .inner .flex-wrap .link-wrap a.mypage {
  background: white;
  color: #005DA1;
}
body footer.footer .inner .flex-wrap .link-wrap a.lock, body footer.footer .inner .flex-wrap .link-wrap a.logout {
  background: #005DA1;
  border-color: #005DA1;
  color: white;
}
body footer.footer .inner .flex-wrap .link-wrap a:hover {
  opacity: 0.8;
}
body footer.footer .copyright {
  background: #146157;
  padding: 1.5rem 50px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body footer.footer .copyright .footer-copy-nav {
  display: flex;
}
body footer.footer .copyright .footer-copy-nav a {
  margin-right: 1em;
}
body footer.footer .copyright a,
body footer.footer .copyright p {
  display: block;
  font-size: 0.9rem;
  transition: all 0.3s;
}
body footer.footer .copyright a:hover,
body footer.footer .copyright p:hover {
  color: white;
  opacity: 0.7;
}
body .modal-dialog-centered {
  max-width: 800px;
}
body .modal-content {
  padding: 0 2rem;
}
body .modal-content .modal-header .close:focus {
  outline: none;
}
body .modal-content .modal-body > h5 {
  border-left: 5px solid #009183;
  padding-left: 0.5rem;
  font-size: 1.2rem;
}
body .modal-content .modal-body > ul {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0 2rem;
}
body .modal-content .modal-body > ul li {
  width: calc(50% - 15px);
}
body .modal-content .modal-body > ul li a {
  display: block;
  position: relative;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #009183;
  border-radius: 100rem;
  font-weight: 600;
  color: #4C4948;
  transition: all 0.3s;
}
body .modal-content .modal-body > ul li a:hover {
  background-color: #009183;
  color: white !important;
}