@charset "UTF-8";
/* -------------------------------------------------------------------
　共通（FONT etc）
------------------------------------------------------------------- */
html {
  scroll-padding-top: 100px;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #333;
}

a {
  text-decoration: none;
}

.mt25rem {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 0 2%;
  }
  .sp_none-img {
    display: none;
  }
  .pc_none-img {
    display: block;
  }
}
@media screen and (min-width: 767px) {
  .pc_none-img {
    display: none;
  }
  .sp_none {
    display: block;
  }
  .pc_none {
    display: none;
  }
}
main {
  padding-top: 100px;
}
main .inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  main .inner {
    padding: 0 2%;
  }
}
.ttl01 h2 {
  font-size: 36px;
  margin: 65px auto;
  line-height: 6rem;
  letter-spacing: 2px;
  font-weight: 900;
}
.ttl01 h2 span {
  font-size: 26.48px;
  font-weight: 500;
}
.ttl01 p {
  line-height: 2;
}

h2 {
  font-size: 35px;
  line-height: 1.5em;
  margin: 0 0 50px 0;
  text-align: center;
}
h2 span.ttl {
  font-size: 26.48px;
  font-weight: 500;
  display: block;
}

.ttlbox p {
  text-align: center;
  font-size: 18px;
}

#page .ttlbox,
#single-page .ttlbox {
  padding: 80px 0;
  position: relative;
}

#page .ttlbox::after,
#single-page .ttlbox::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

#page .ttlbox h2,
#single-page .ttlbox h2 {
  color: #fff;
  position: relative;
  z-index: 10;
}

p.center {
  text-align: center;
}

.text-bold {
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.9rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  h2 span.ttl {
    font-size: 1.4rem;
  }
  .sp_none {
    display: none !important;
  }
  .pc_none {
    display: block;
  }
  #page .ttlbox,
  #single-page .ttlbox {
    padding: 30px 0;
  }
}
/* -------------------------------------------------------------------
　ヘッダー
------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
.header__box {
  max-width: 1440px;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}
.header__box .logo_box {
  margin-right: auto;
  padding-right: 1rem;
}
.header__box nav > ul > li {
  position: relative;
  float: left;
  margin-right: 45px;
}
.header__box nav a {
  color: #204731;
  text-decoration: none;
}
.header__box nav a:hover {
  border-bottom: 2px solid #204731;
  padding-bottom: 0.5em;
}
.header__box nav .sub-menu {
  position: absolute;
  width: 15rem;
  background: #204731;
  top: 3em;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  font-size: 0.875rem;
}
.header__box nav .sub-menu a {
  color: #fff;
  padding: 0.62rem 1rem;
  display: block;
}
.header__box nav .sub-menu a:hover {
  background: #fff;
}
.header__box nav .menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
}
.header__box nav li.menu-item-has-children li a:hover {
  background: #638C77;
  border-bottom: none;
}
.header__box .nav_box {
  margin-left: 3.8rem;
}
.header__box .nav_box ul {
  display: flex;
  gap: 0.5rem;
}
.header__box .nav_box ul li {
  width: 9.8rem;
  height: 2.4rem;
  border-radius: 0.25rem;
  line-height: 2.4rem;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 800;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.16);
  transition: all 0.5s ease;
}
.header__box .nav_box ul li.download {
  background-color: #F1A039;
}
.header__box .nav_box ul li.contact {
  background-color: #204731;
}
.header__box .nav_box ul li:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .header__box nav,
  .header__box .nav_box {
    display: none;
  }
}

@media (max-width: 768px) {
  .header_hum {
    width: 30px;
    height: 15px;
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 100;
    display: block;
  }
  .header_hum span {
    position: absolute;
    left: 0;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #0c482f;
    transition: 0.3s all;
  }
  .header_hum span:nth-of-type(1) {
    top: 0;
  }
  .header_hum span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header_hum span:nth-of-type(3) {
    bottom: 0;
  }
  .header_hum.is-open span {
    background-color: #fff;
  }
  .header_hum.is-open span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header_hum.is-open span:nth-of-type(2) {
    display: none;
  }
  .header_hum.is-open span:nth-of-type(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .header_gnav.pc_none {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    z-index: 80;
    transition: 0.3s all;
    background-color: #0c482f;
    padding: 60px 20px;
  }
  .header_gnav.is-open {
    right: 0;
  }
  .header_gnavBg.is-open {
    opacity: 1;
    visibility: visible;
  }
  .header_gnavBg {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.76);
    z-index: 70;
    transition: 0.3s all;
    visibility: hidden;
  }
  .header_gnavWrap {
    position: relative;
    z-index: 75;
    height: 100%;
    overflow: hidden;
  }
  .header_gnavWrap .header_gnavHaschild {
    color: #fff;
  }
  .header_gnavWrap .header_gnavChild {
    padding-left: 20px;
    margin-top: 10px;
  }
  .header_gnavWrap .header_gnavChild li {
    font-size: 1.4rem;
  }
  .header_gnavWrap .header_gnavChild li a {
    padding: 5px 0;
  }
  .header_gnavWrap li {
    color: #fff;
    padding: 10px 0;
  }
  .header_gnavWrap li a {
    display: flex;
  }
  .header_gnavWrap li a:hover {
    opacity: 0.6;
  }
  .header_gnavWrap li.header_gnav_dl {
    margin-bottom: 10px;
  }
  .header_gnavWrap li.header_gnav_dl a {
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 3px;
    justify-content: center;
  }
  .header_gnavWrap li.header_gnav_ct a {
    background-color: #fff;
    color: #0c482f;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #fff;
    justify-content: center;
  }
}
/* -------------------------------------------------------------------
　フッター
------------------------------------------------------------------- */
.footer {
  background: #4D4D4D;
  color: #fff;
}
.footer__link {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 4.37rem 0 6.68rem;
}
.footer__link > ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3em;
}
.footer__link > ul li {
  font-size: 1.125rem;
}
.footer__link > ul li > ul {
  margin-top: 0.5em;
}
.footer__link > ul li > ul li {
  font-size: 1rem;
  margin-left: 1em;
  line-height: 1.8;
}
.footer__link > ul li > ul li a:after {
  background-color: #fff;
}
.footer__bottom {
  margin-top: 3.5rem;
}
.footer__bottom ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3em;
}
.footer__bottom ul a:after {
  background-color: #fff;
}
.footer p {
  text-align: center;
  font-size: 0.812rem;
  margin-top: 2.25rem;
}

@media (max-width: 768px) {
  .footer__link {
    max-width: initial;
  }
  .footer__link > ul {
    flex-direction: column;
    gap: 1em;
    margin: 0 3rem;
  }
  .footer__bottom {
    margin-top: 3.5rem;
  }
  .footer__bottom ul {
    margin: 0 3rem;
    flex-direction: column;
    gap: 1em;
  }
}
/* -------------------------------------------------------------------
　CTA フローティング
------------------------------------------------------------------- */
#float_wrap {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 50;
  width: 100%;
  max-width: 100%;
  padding: 16px 15% 15px;
  background-color: rgba(255, 255, 255, 0.75);
}
#float_wrap .cta_btn ul {
  justify-content: space-around;
}
#float_wrap .cta_btn ul li {
  font-size: clamp(0.9rem, 1vw, 1.25rem);
  width: 30vw;
  height: 3rem;
  line-height: 3rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  #float_wrap {
    padding: 16px 5px 15px;
  }
  #float_wrap .cta_btn ul li {
    width: 46vw;
    letter-spacing: 0;
  }
}
/* -------------------------------------------------------------------
　CTA お問合せ
------------------------------------------------------------------- */
#cta {
  padding: 3.75rem 0 3.5rem;
  background: #FFFBF2;
  border-top: 1px solid #204731;
  border-bottom: 1px solid #204731;
}
#cta .f-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 9.375rem;
}
#cta .f-container h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #204731;
}
#cta .f-container p {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.875rem;
}
#cta .f-container p span {
  font-size: 1.25rem;
  color: #F1A039;
  font-weight: 800;
}
#cta .f-container .cta_button {
  width: 25.75rem;
  height: 4.75rem;
  border-radius: 0.25rem;
  line-height: 4.75rem;
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.16);
  transition: all 0.5s ease;
  background-color: #204731;
}
#cta .f-container .cta_button:before {
  content: "";
  display: inline-block;
  width: 2.4375rem;
  height: 2.1875rem;
  margin-right: 0.3rem;
  background-image: url("../imgs/common/ico_contact.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
}
#cta .f-container .cta_button:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  #cta .f-container {
    align-items: normal;
    flex-direction: column;
    padding: 0;
  }
  #cta .f-container__ct:first-child {
    background: url("../imgs/common/cta_person.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
  }
  #cta .f-container p {
    margin-bottom: 5rem;
  }
  #cta .f-container p span {
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  }
  #cta .f-container .cta_button {
    width: 90%;
    margin: 7rem auto 0;
  }
}
.cta_btn ul {
  display: flex;
  gap: 1rem;
}
.cta_btn ul.centering {
  justify-content: center;
}
.cta_btn ul li {
  width: 15.44rem;
  height: 4.75rem;
  border-radius: 0.25rem;
  line-height: 4.75rem;
  display: block;
  font-size: 1.25rem;
  font-size: clamp(1rem, 1vw, 1.25rem);
  font-weight: 900;
  text-align: center;
  color: #fff;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.16);
  transition: all 0.5s ease;
}
.cta_btn ul li.download {
  background-color: #F1A039;
}
.cta_btn ul li.download:before {
  content: "";
  display: inline-block;
  width: 1.5625rem;
  height: 2.0625rem;
  margin-right: 0.3rem;
  background-image: url("../imgs/common/ico_download.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
}
.cta_btn ul li.contact {
  background-color: #204731;
}
.cta_btn ul li.contact:before {
  content: "";
  display: inline-block;
  width: 2.4375rem;
  height: 2.1875rem;
  margin-right: 0.3rem;
  background-image: url("../imgs/common/ico_contact.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
}
.cta_btn ul li.downloadsite {
  background-color: #204731;
  width: 28rem;
}
.cta_btn ul li:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .cta_btn ul li.downloadsite {
    width: 16rem;
    height: auto;
    line-height: 1.3;
    padding: 0.5rem;
  }
}
/* -------------------------------------------------------------------
　共通
------------------------------------------------------------------- */
.ico {
  margin-left: 5px;
}

h2 {
  position: relative;
}
h2.midashi {
  width: fit-content;
  font-size: clamp(1.6rem, 1vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.05rem;
  margin: 0 auto;
  padding-bottom: 1.34rem;
  color: #204731;
}
h2.midashi:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5625rem;
  height: 1px;
  background-color: #204731;
}

@media (max-width: 768px) {
  h2.midashi {
    letter-spacing: 0;
  }
}
h4.ttl {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
h4.ttl:before, h4.ttl:after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: #204731;
}
h4.ttl:before {
  left: 0;
  transform: rotate(-35deg);
}
h4.ttl:after {
  right: 0;
  transform: rotate(35deg);
}

a.ico_arrow, div.ico_arrow {
  transition: all 0.3s ease;
}
a.ico_arrow:hover, div.ico_arrow:hover {
  color: #F1A039;
}
a.ico_arrow:before, div.ico_arrow:before {
  content: "";
  display: inline-block;
  margin-right: 0.3rem;
  background-image: url("../imgs/common/ico_arrow-circle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: text-bottom;
}
a.button, div.button {
  display: block;
  width: 16rem;
  height: 3.5rem;
  border-radius: 3.5rem;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 3.5rem;
  color: #204731;
  border: 1px solid #204731;
  background: #fff;
  margin: 4.1875rem auto 3rem;
  text-align: center;
}
a.button:hover, div.button:hover {
  background: #F0F5F3;
}

a.text_link {
  display: inline-block;
  position: relative;
  transition: color 0.3s ease-in-out;
}
a.text_link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
a.text_link:hover:after {
  transform: scaleX(1);
}

/* -------------------------------------------------------------------
　ページネーション
------------------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.wp-pagenavi .current {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0c482f;
  color: #fff;
  border: 1px solid 0c482f;
}
.wp-pagenavi a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #0c482f;
  border: 1px solid #0c482f;
}

.area {
  max-width: 280px;
  margin: 3rem auto;
}
.area .bt-fill-green {
  color: #fff;
  background-color: #0c482f;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border-radius: 50px;
  transition: 0.3s ease;
  border: 1px solid #0c482f;
  margin: 0;
}
.area .bt-fill-green:hover {
  color: #0c482f;
  background-color: #fff;
  border: 1px solid #0c482f;
  text-decoration: none;
}
.area .bt-fill-green:hover span {
  background-color: #0c482f;
}
.area .bt-fill-green:hover span:after {
  background: #fff;
}
.area .bt-fill-green span {
  width: 1.875rem;
  height: 1.875rem;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  margin-left: 15px;
}
.area .bt-fill-green span::after {
  content: "";
  background: #0c482f;
  height: 11.2583302492px;
  width: 7px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-43%, -50%);
}

/* -------------------------------------------------------------------
　404 Not Found
------------------------------------------------------------------- */
#page-404 article {
  padding: 5vh 0;
  text-align: center;
}
#page-404 article img {
  width: 30%;
  margin: 3vh auto;
}
@media (max-width: 768px) {
  #page-404 article img {
    width: 80%;
  }
}

/*# sourceMappingURL=common.css.map */
