@charset "UTF-8";
/* contents common settings css
*
*/
body {
  overflow-x: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .pc {
    display: none !important;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.tab {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tab {
    display: block !important;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 599px) {
  .sp {
    display: block !important;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.title-box {
  text-align: center;
}
.title-box h2 {
  font-size: 34px;
  font-weight: 700;
}
.title-box p {
  font-size: 18px;
  letter-spacing: 3.6px;
  line-height: 22px;
  color: #B5B5B5;
}
@media screen and (max-width: 599px) {
  .title-box {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .title-box h2 {
    font-size: 26px;
    line-height: 38px;
  }
  .title-box p {
    font-size: 14px;
    letter-spacing: 2.8px;
    line-height: 17px;
  }
}

.contact-form .contact-title h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 46px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .contact-form .contact-title h3 {
    font-size: 22px;
    line-height: 36px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

footer .inner-wrap {
  width: 1080px;
  margin: auto;
  padding: 72px 0;
}

header .header-bottom .header-nav ul li a::before {
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.cta-area {
  width: 280px;
  height: 56px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-area a {
  width: 280px;
  height: 56px;
  font-size: 20px;
  height: 56px;
  border-radius: 30px;
  line-height: 56px;
  color: #ffffff;
  background: transparent linear-gradient(180deg, #63F285 0%, #139834 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 4px 0px #005D00;
  opacity: 1;
  display: block;
  position: absolute;
}
.cta-area a:hover {
  margin-top: 2px;
  box-shadow: none;
  opacity: 0.75;
}
.cta-area a::after {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("../image/common/cta-arrow.svg");
  background-repeat: no-repeat;
  right: 18px;
  bottom: 15px;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .cta-area {
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .cta-area a {
    width: 100%;
  }
}

/* header settings css
*
*/
.wrap {
  margin: 0;
  padding: 0;
}

header {
  width: 100%;
  height: 100px;
  vertical-align: middle;
}
header .inner-wrap {
  width: 100%;
  max-width: 1306px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1024px) {
  header .inner-wrap {
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
header .header-top {
  width: 100%;
  height: 40px;
  background-color: #F4F4F4;
}
header .header-top .inner-wrap {
  background-color: #F4F4F4;
}
header .header-top p {
  font-size: 13px;
  font-family: "normal 13px/19px Noto Sans JP";
  line-height: 40px;
}
@media screen and (max-width: 1024px) {
  header .header-top {
    padding: 0 20px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 599px) {
  header .header-top {
    transition-property: all;
    transition-duration: 0.3s;
  }
  header .header-top p {
    font-size: 11px;
  }
}
header .header-bottom {
  width: 100%;
  height: 80px;
  background-color: #ffffff;
}
header .header-bottom .header-logo {
  max-width: 240px;
  height: 100%;
}
header .header-bottom .header-logo h1 {
  line-height: 80px;
}
header .header-bottom .header-logo img {
  width: 100%;
}
header .header-bottom .header-nav {
  width: 846px;
  display: flex;
  height: 100%;
}
header .header-bottom .header-nav ul {
  display: flex;
  height: 80px;
  margin: 0 auto;
  width: auto;
}
@media screen and (max-width: 1024px) {
  header .header-bottom .header-nav ul {
    display: none;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
header .header-bottom .header-nav ul li {
  line-height: 80px;
  width: 96px;
  text-align: center;
  position: relative;
  font-size: 1rem;
}
header .header-bottom .header-nav ul li a {
  color: #000000;
}
header .header-bottom .header-nav ul li a::before {
  content: "";
  width: 45px;
  height: 4px;
  position: absolute;
  opacity: 0;
  transition: 0.3s ease-out;
  bottom: 20%;
  left: 50%;
}
header .header-bottom .header-nav ul li a:hover {
  color: gray;
}
header .header-bottom .header-nav ul li a:hover::before {
  content: "";
  background-color: #000000;
  opacity: 1;
  transition: 0.3s ease-out;
}
header .header-bottom .header-nav ul li:nth-child(6) {
  width: 110px;
}
header .header-bottom .header-nav ul li:nth-child(7) {
  width: 65px;
}
header .header-bottom .header-cta {
  width: 220px;
  right: 0px;
  margin-top: 14px;
}
@media screen and (max-width: 1024px) {
  header .header-bottom .header-cta {
    display: none;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
header .header-bottom .header-cta p {
  font-size: 16px;
  text-align: center;
  display: block;
}
header .header-bottom .header-cta p a {
  width: 220px;
  height: 44px;
  border-radius: 25px;
  line-height: 44px;
  color: #ffffff;
  background: transparent linear-gradient(180deg, #63F285 0%, #139834 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 4px 0px #005D00;
  opacity: 1;
  display: block;
}
header .header-bottom .header-cta p a:hover {
  margin-top: 4px;
  box-shadow: none;
  opacity: 0.75;
}
@media screen and (max-width: 1024px) {
  header .header-bottom {
    padding: 0 20px;
    height: 40px;
    padding-top: 10px;
    transition-property: all;
    transition-duration: 0.3s;
  }
  header .header-bottom .header-logo {
    width: 180px;
    height: 100%;
  }
  header .header-bottom .header-logo h1 {
    width: 180px;
    line-height: 40px;
    height: 100%;
  }
  header .header-bottom .header-logo h1 img {
    width: 180px;
  }
}
header .sp-menu {
  display: none;
  height: 40px;
  padding-top: 10px;
}
@media screen and (max-width: 1024px) {
  header .sp-menu {
    display: block;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
header .fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 1000; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
  transition-property: none !important;
  transition-duration: unset !important;
}
@media screen and (max-width: 1024px) {
  header .fixed {
    height: 60px;
    transition-property: none !important;
    transition-duration: unset !important;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 599px) {
  header .fixed {
    height: 60px;
    transition-property: none !important;
    transition-duration: unset !important;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

/* footer settings css
*
*/
footer {
  background-color: #1C1D32;
  margin-top: 55px;
}
@media screen and (max-width: 599px) {
  footer {
    margin-top: 35px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 1024px) {
  footer .inner-wrap {
    width: 100%;
    padding: 40px 20px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 599px) {
  footer .inner-wrap {
    width: 100%;
    padding: 40px 20px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
footer .inner-wrap .footer-top-wrap,
footer .inner-wrap .footer-bottom-wrap {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 599px) {
  footer .inner-wrap .footer-top-wrap,
footer .inner-wrap .footer-bottom-wrap {
    display: grid;
    justify-content: normal;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
footer .inner-wrap .footer-top-logo {
  width: 400px;
}
footer .inner-wrap .footer-top-logo .footer-company-info {
  display: none;
}
@media screen and (max-width: 599px) {
  footer .inner-wrap .footer-top-logo .footer-company-info {
    display: inline-block;
    color: #ffffff;
    font-size: 12px;
    line-height: 21px;
    margin-top: 25px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 1024px) {
  footer .inner-wrap .footer-top-logo {
    width: auto;
    padding-right: 5%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 599px) {
  footer .inner-wrap .footer-top-logo {
    text-align: center;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
footer .inner-wrap .footer-top-nav > ul {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  footer .inner-wrap .footer-top-nav > ul {
    display: grid;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 599px) {
  footer .inner-wrap .footer-top-nav > ul {
    display: grid;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
footer .inner-wrap .footer-top-nav {
  width: 360px;
}
@media screen and (max-width: 599px) {
  footer .inner-wrap .footer-top-nav {
    width: 100%;
    margin-top: 20px;
    padding-left: 5%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
footer .inner-wrap .footer-top-nav ul {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  footer .inner-wrap .footer-top-nav ul {
    display: inline-table;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 599px) {
  footer .inner-wrap .footer-top-nav ul {
    display: contents;
    margin: 0 auto;
    margin-top: 40px;
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
footer .inner-wrap .footer-top-nav ul li {
  display: inline;
  padding-right: 30px;
  line-height: 40px;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  footer .inner-wrap .footer-top-nav ul li {
    width: 50%;
    display: inherit;
    padding-right: 12px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 599px) {
  footer .inner-wrap .footer-top-nav ul li {
    width: 30%;
    text-align: center;
    display: inline-flex;
    padding-right: 0px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
footer .inner-wrap .footer-top-nav ul li a {
  color: #ffffff;
}
footer .inner-wrap .footer-top-nav ul li a:hover {
  opacity: 0.5;
}
footer .inner-wrap .footer-top-ad {
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  footer .inner-wrap .footer-top-ad {
    width: 260px;
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
footer .inner-wrap .footer-top-ad ul {
  display: flex;
}
footer .inner-wrap .footer-top-ad ul li :last-child {
  padding-left: 15px;
}
@media screen and (max-width: 599px) {
  footer .inner-wrap .footer-top-ad ul li :last-child {
    padding-left: 10px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
footer .inner-wrap .footer-bottom-wrap {
  margin-top: 40px;
  font-size: 12px;
  color: #ffffff;
  line-height: 21px;
  position: relative;
}
@media screen and (max-width: 599px) {
  footer .inner-wrap .footer-company-info {
    display: none;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
footer .inner-wrap .footer-copyright {
  margin-left: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  footer .inner-wrap .footer-copyright {
    width: 100%;
    text-align: center;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.cta-footer {
  display: none;
}
@media screen and (max-width: 599px) {
  .cta-footer {
    padding: 20px;
    padding-bottom: 30px;
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 100;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.cta-hide {
  display: none;
}

/**
* moda Menu settings
*/
#js-modal-menu {
  display: none;
  background-color: #F4F4F4;
}
#js-modal-menu .modal-wrap {
  background-color: #F4F4F4;
}
#js-modal-menu .modal-header {
  width: 100%;
  height: 55px;
  border-bottom: solid 1px #B5B5B5;
  background-color: #F4F4F4;
  position: relative;
}
#js-modal-menu .modal-header .modal-header-logo {
  margin: 0 auto;
  width: 140px;
  line-height: 55px;
}
#js-modal-menu .modal-header .modal-close-btn {
  position: absolute;
  left: 15px;
  top: 15px;
}
#js-modal-menu .modal-nav {
  width: 100%;
  height: auto;
  background-color: #ffffff;
}
#js-modal-menu .modal-nav ul li {
  height: 40px;
  border-bottom: solid 1px #F4F4F4;
  line-height: 40px;
  font-size: 14px;
  font-weight: 500;
  padding-left: 25px;
  position: relative;
}
#js-modal-menu .modal-nav ul li::before {
  content: "";
  background-image: url(../image/header/modal-arrow.svg);
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 25px;
  top: 15px;
}
#js-modal-menu .modal-nav ul li a {
  color: #000000;
  display: block;
}
#js-modal-menu .modal-cta {
  padding: 25px 15px;
}
#js-modal-menu .modal-cta a {
  font-size: 18px;
  height: 44px;
  line-height: 44px;
}
#js-modal-menu .modal-cta a::after {
  bottom: 11px;
}

.is-opne-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 70vw;
  height: 100vh;
  z-index: 2000;
  -webkit-animation: SlideIn 0.35s;
          animation: SlideIn 0.35s;
}

.is-opne-bg {
  opacity: 0.5;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  cursor: pointer;
  z-index: 1800;
}

.is-hide {
  display: none;
}

@-webkit-keyframes SlideIn {
  0% {
    opacity: 0; /*初期状態では透明に*/
    transform: translateX(64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes SlideIn {
  0% {
    opacity: 0; /*初期状態では透明に*/
    transform: translateX(64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* contact contact section settings css
*
*/
.contents {
  width: 100%;
  margin: 30px auto 0;
  position: relative;
  text-align: center;
}
.contents h2 {
  font-size: 32px;
  color: #000000;
}

.contact-form {
  width: 1080px;
  margin: 20px auto 0;
  background-color: #F4F4F4;
  padding: 55px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .contact-form {
    width: 90%;
    margin: 35px auto 0;
    padding: 70px 15px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 599px) {
  .contact-form {
    width: 90%;
    margin: 35px auto 0;
    padding: 35px 15px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.contact-form .contact-title {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .contact-form .contact-title {
    margin-top: 10px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.contact-form .contact-title ul {
  width: 450px;
  margin: 30px auto;
}
@media screen and (max-width: 599px) {
  .contact-form .contact-title ul {
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.contact-form .contact-title ul li {
  color: #DB1F1F;
  font-size: 14px;
  line-height: 24.5px;
}
@media screen and (max-width: 599px) {
  .contact-form .contact-title ul li {
    font-size: 13px;
    line-height: 22px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.contact-form form {
  width: 650px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .contact-form form {
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 599px) {
  .contact-form form {
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.contact-form form dl {
  width: 100%;
  display: table;
  height: 40px;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .contact-form form dl {
    height: auto;
    padding: 5px 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.contact-form form dl dt {
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  width: 30%;
  border-right: solid 1px #B5B5B5;
  vertical-align: middle;
  display: table-cell;
  position: relative;
}
@media screen and (max-width: 599px) {
  .contact-form form dl dt {
    display: block;
    width: 100%;
    border: none;
    border-bottom: dotted 1px #B5B5B5;
    padding: 5px 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.contact-form form dl dt small {
  font-size: 10px;
  font-weight: normal;
}
.contact-form form dl .must::after {
  content: "必須";
  background-color: #DB1F1F;
  color: #ffffff;
  position: relative;
  left: 10px;
  font-size: 12px;
  padding: 2px 5px;
}
.contact-form form dl dd {
  width: 70%;
  padding-left: 25px;
  vertical-align: middle;
  display: table-cell;
  padding-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .contact-form form dl dd {
    display: block;
    width: 100%;
    padding: 5px 0 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.contact-form form dl dd input[type=text],
.contact-form form dl dd input[type=url],
.contact-form form dl dd input[type=email] {
  width: 100%;
  border: solid 1px #B5B5B5;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 5px 5px;
  vertical-align: text-bottom;
}
.contact-form form dl dd textarea {
  width: 100%;
  border: solid 1px #B5B5B5;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 5px 5px;
}
.contact-form .cta-form {
  margin: 25px auto;
  width: 420px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .contact-form .cta-form {
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.contact-form .cta-form ul {
  display: flex;
}
.contact-form .cta-form li {
  display: table-cell;
  width: 100%;
}
.contact-form .cta-form input[type=submit], .contact-form .cta-form input[type=button] {
  width: 48%;
  font-size: 16px;
  height: 56px;
  border-radius: 30px;
  line-height: 56px;
  color: #ffffff;
  opacity: 1;
  display: block;
  position: absolute;
  text-align: center;
}
.contact-form .cta-form input[type=submit]:hover, .contact-form .cta-form input[type=button]:hover {
  margin-top: 2px;
  box-shadow: none;
  opacity: 0.75;
}
.contact-form .cta-form input[type=button] {
  background: #B5B5B5;
  box-shadow: 0px 4px 0px #000000;
}
.contact-form .cta-form input[type=submit] {
  background: transparent linear-gradient(180deg, #63F285 0%, #139834 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 4px 0px #005D00;
}

.thanks {
  padding: 0 20px;
}
.thanks p {
  padding: 15px 0;
}
@media screen and (max-width: 599px) {
  .thanks {
    margin-top: 20px;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .thanks h2 {
    font-size: 18px;
  }
  .thanks p {
    font-size: 14px;
  }
}

@media screen and (max-width: 599px) {
  .back-cta {
    padding-top: 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.cta-footer {
  display: none;
}