@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: "ZenMaruGothic-Medium";
  src: url("../font/ZenMaruGothic-Medium.ttf");
}
/**** 共通カラー ****/
html {
  font-size: 62.5%;
  line-height: 1;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #01413b;
  background-color: #faf5e6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  background-repeat: repeat-y;
  background-size: 100%;
}

img {
  max-width: 100%;
}

a {
  display: block;
  width: 100%;
}

.display_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .display_sp {
    display: block;
  }
}

.display_pc {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .display_pc {
    display: none;
  }
}

.nul {
  position: relative;
  top: -100px;
}

.bg-Lightgreen {
  background-color: #9fd3b3;
}

.header {
  position: fixed;
  background-color: #faf5e6;
  width: 100%;
  height: 100px;
  padding: 25px 0;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0;
    height: 60px;
  }
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header .header-inner {
    padding: 0;
    height: 60px;
  }
}
.header .header-item-box {
  display: flex;
  align-items: center;
  padding-left: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .header .header-item-box {
    padding-left: 20px;
  }
}
.header .header-logo {
  max-width: 50px;
  width: 3.4722222222vw;
  margin-right: 2.0833333333vw;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .header .header-logo {
    min-width: 45px;
  }
}
.header .header-tel {
  text-align: center;
  color: #01413b;
}
.header .header-tel .contact-note {
  display: block;
  font-size: clamp(1.2rem, 0.97vw, 1.4rem);
  background-color: #dcdfd1;
  padding: 0 12px;
  border-radius: 12px;
  line-height: 1.4;
}
.header .header-tel .tel-number {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  vertical-align: middle;
}
.header .sp-header-tel {
  border: solid 1px #01413b;
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 30.4px;
}
.header .sp-header-tel .contact-note {
  display: inline-block;
  font-size: 1.4rem;
  background-color: #dcdfd1;
  border-radius: 12px;
  line-height: 1.4;
  padding: 0 8px;
}
.header .sp-header-tel .tel-number {
  display: block;
  line-height: 2;
}
.header .header_nav {
  display: flex;
  justify-content: flex-end;
  padding-right: 1.3888888889vw;
}
.header .header_nav .header_menu {
  display: flex;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu {
    flex-direction: column;
    width: 100%;
    background-color: #faf5e6;
    padding: 68px 40px;
    border-radius: 30px;
  }
}
.header .header_nav .header_menu .item {
  font-size: clamp(1.4rem, 1.222vw, 1.6rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu .item {
    text-align: left;
    font-size: 1.6rem;
  }
}
.header .header_nav .header_menu .item::after {
  content: "";
  position: absolute;
  background-image: url(../image/border.webp);
  background-repeat: repeat-y;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu .item::after {
    background-image: url(../image/tittel_border03.webp);
    background-repeat: repeat-x;
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 0;
  }
}
.header .header_nav .header_menu .item:first-of-type::before {
  content: "";
  position: absolute;
  background-image: url(../image/border.webp);
  background-repeat: repeat-y;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu .item:first-of-type::before {
    display: none;
  }
}
.header .header_nav .header_menu .item a {
  position: relative;
  padding-left: 1.9444444444vw;
  padding-right: 1.9444444444vw;
  padding-top: 36px;
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu .item a {
    padding-right: 0;
    padding-left: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.header .header_nav .header_menu .item a::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: ease 0.2s;
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu .item a::before {
    right: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header .header_nav .header_menu .item a:hover::before {
  transform: scale(1.2);
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu .item a:hover::before {
    transform: translateY(-50%);
  }
}
.header .header_nav .header_menu .item:first-of-type a::before {
  background-image: url(../image/home.webp);
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 31.15px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu .item:first-of-type a::before {
    width: 27px;
    height: 26px;
  }
}
.header .header_nav .header_menu .item:nth-child(2) a::before {
  background-image: url(../image/about.webp);
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 75px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu .item:nth-child(2) a::before {
    background-image: url(../image/nsc_image.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 32px;
    height: 36px;
  }
}
.header .header_nav .header_menu .item:nth-child(3) a::before {
  background-image: url(../image/menber.webp);
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 44.65px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu .item:nth-child(3) a::before {
    width: 28.7px;
    height: 19.28px;
  }
}
.header .header_nav .header_menu .item:nth-child(4) a::before {
  background-image: url(../image/news.webp);
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 35.79px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu .item:nth-child(4) a::before {
    width: 27px;
    height: 22.63px;
  }
}
.header .header_nav .header_menu .item:nth-child(5) a::before {
  background-image: url(../image/action.webp);
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 35.43px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .header .header_nav .header_menu .item:nth-child(5) a::before {
    width: 35.43px;
    height: 29.02px;
  }
}

.footer {
  background-color: #01413b;
  color: #faf5e6;
  padding-top: 120px;
  padding-bottom: 36px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 80px;
  }
}
.footer .footer_wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .footer .footer_wrap {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.footer .footer_logo {
  max-width: 50px;
}
.footer .footer_info {
  width: 26.6666666667vw;
  min-width: 226px;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer_info {
    position: relative;
    width: 100%;
    min-width: none;
  }
}
.footer .footer_info .footer_logo {
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .footer .footer_info .footer_logo {
    max-width: 60px;
    margin-bottom: 24px;
  }
}
.footer .footer_info p {
  font-size: clamp(1.4rem, 1.222vw, 1.6rem);
  margin-bottom: 12px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .footer .footer_info p {
    font-size: 1.4rem;
  }
}
.footer .footer_info .footer_tittle {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .footer .footer_info .contact_item span {
    display: block;
    width: 100%;
    white-space: nowrap;
  }
}
.footer .footer_info .footer_tel {
  display: inline-block;
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .footer .footer_info .footer_tel {
    display: block;
    margin-right: 0;
    margin-bottom: 8px;
    white-space: nowrap;
  }
}
.footer .footer_menu {
  margin-right: 5.8333333333vw;
  width: 10.4166666667vw;
  min-width: 100px;
}
@media screen and (max-width: 768px) {
  .footer .footer_menu {
    display: none;
  }
}
.footer .footer_menu ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer .footer_menu ul li {
  margin-bottom: 16px;
  position: relative;
}
.footer .footer_menu ul li::after {
  content: "";
  position: absolute;
  background-image: url(../image/tittel_border.webp);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}
.footer .footer_menu ul li a {
  padding-bottom: 10px;
  font-size: clamp(1.4rem, 1.222vw, 1.6rem);
  color: #faf5e6;
  transition: 0.3s;
}
.footer .footer_menu ul li a:hover {
  color: #f9c270;
}
.footer .footer_cv {
  width: 15vw;
  min-width: 186px;
}
@media screen and (max-width: 768px) {
  .footer .footer_cv {
    display: none;
  }
}
.footer .footer_cv .footer_grant {
  background-color: #f9c270;
  width: 100%;
  border-radius: 25px;
  text-align: center;
  font-size: clamp(1.4rem, 1.222vw, 1.6rem);
  padding: 12px 0;
  margin-bottom: 20px;
  transition: 0.3s;
}
.footer .footer_cv .footer_grant:hover {
  transform: scale(1.03);
}
.footer .footer_cv .footer_grant a {
  color: #01413b;
}
.footer .footer_cv .footer_menber {
  background-color: #9fd3b3;
  width: 100%;
  border-radius: 25px;
  text-align: center;
  font-size: clamp(1.4rem, 1.222vw, 1.6rem);
  padding: 12px 0;
  margin-bottom: 20px;
  transition: 0.2s;
}
.footer .footer_cv .footer_menber:hover {
  transform: scale(1.03);
}
.footer .footer_cv .footer_menber a {
  color: #01413b;
}
.footer .footer_bottom {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  margin-top: 30px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .footer .footer_bottom {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_bottom span {
    display: block;
    margin-top: 12px;
  }
}
.footer .footer_deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 13.8888888889vw;
  height: 7.7777777778vw;
  z-index: 11;
  transform: translateY(-50%);
}
.footer .footer_deco::before {
  content: "";
  position: absolute;
  background-image: url(../image/footer_deco.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer .footer_deco {
    width: 34.6666666667vw;
    height: 19.2vw;
    top: -100px;
    left: 20px;
    transform: none;
  }
}

/*ページナビゲーション--------------------------------------*/
.navigation {
  width: 100%;
}

.wp-pagenavi {
  clear: both;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: auto;
}

.navigation .pages {
  display: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #01413b;
  background-color: #faf5e6;
  width: 40px;
  height: 40px;
  margin: 0 2px;
  white-space: nowrap;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  font-size: 2.4rem;
  line-height: 40px;
}

.wp-pagenavi a:hover {
  color: #01413b;
  background-color: #f9c270;
}

.wp-pagenavi span.current {
  color: #faf5e6;
  background-color: #01413b;
  font-weight: bold;
}

/*ページナビここまで--------------------------------------*/
select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 98%;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  color: #01413b;
}

.form-group label {
  display: block;
  margin-bottom: 22px;
}

.form-group .input_box,
.form-group .select_box {
  height: 60px;
}

.form-group .select_box {
  display: flex;
  align-items: center;
}

.form-group .input_box input,
.form-group .select_box {
  width: 100%;
  height: 50px;
  padding: 10px;
  box-sizing: border-box;
  font-weight: normal;
  border: solid 1px #aebfb2;
  background-color: #fffcf5;
  border-radius: 10px;
}

.form-group .input_box input:focus-visible {
  outline: none;
}

.form-group .text_box {
  box-sizing: border-box;
}

.form-group .text_box textarea {
  width: 100%;
  height: 200px;
  padding: 10px;
  box-sizing: border-box;
  font-weight: normal;
  border: solid 1px #aebfb2;
  background-color: #fffcf5;
  border-radius: 10px;
}

.form-group .text_box textarea:focus-visible {
  outline: none;
}

.form-group.center_item {
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.form-group.center_item label {
  width: auto;
  line-height: 1;
}

.form-group .required {
  display: inline-block;
  color: #fff;
  background: #e85652;
  font-size: 1.2rem;
  padding: 2px 10px;
  margin-left: 10px;
  transform: translateY(-2px);
  line-height: 1;
}

.form-group .checkbox {
  width: 30px;
  height: 30px;
  outline: none;
  margin-right: 20px;
}

.form-group.submit_btn {
  background: none;
}

.form-group.submit_btn input {
  width: 208px;
  color: #faf5e6;
  text-align: center;
  font-weight: bold;
  border-radius: 30px;
  height: 48px;
  background: #01413b;
  transition: 0.3s;
}

.form-group.submit_btn input:hover {
  background: #f9c270;
  color: #01413b;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
}

.wpcf7-spinner {
  display: none !important;
}

.form-group .flex_warp {
  display: flex;
  margin-top: 16px;
}
.form-group .flex_warp label {
  display: inline-block;
  margin-right: 16px;
}

@media screen and (max-width: 768px) {
  .form-group {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .form-group label {
    width: 100%;
    margin-bottom: 10px;
  }
  .form-group .text_box {
    width: 100%;
  }
  .form-group .input_box {
    width: 100%;
    height: 40px;
  }
  .form-group.check_wrap {
    flex-direction: row;
    padding: 15px 0;
  }
  .form-group .checkbox {
    width: auto;
    height: auto;
    margin-right: 10px;
  }
  .form-group.check_wrap label {
    margin-bottom: 0;
  }
  .form-group .input_box input,
  .form-group .select_box {
    height: 40px;
  }
  .form-group.radio .flex_warp {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  /*ハンバーガー--------------------------------------*/
  #switch {
    display: none;
  }
  #switch ~ label {
    width: 40px;
    height: 40px;
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    right: 20px;
    z-index: 999;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: #01413b;
    border-radius: 50%;
  }
  #switch ~ label span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: #faf5e6;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out, top 0.3s ease-in-out;
  }
  #switch ~ label span:first-child {
    top: 14px;
  }
  #switch ~ label span:nth-child(2) {
    top: 20px;
    width: 26px;
  }
  #switch ~ label span:last-child {
    top: 26px;
  }
  /* チェック時のアニメーション */
  #switch:checked ~ label span:first-child {
    transform: rotate(30deg);
    top: 18px;
  }
  #switch:checked ~ label span:nth-child(2) {
    opacity: 0;
  }
  #switch:checked ~ label span:last-child {
    transform: rotate(-30deg);
    top: 18px;
  }
  #switch:checked ~ #NavWrap {
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #switch:checked ~ #NavWrap {
    background-color: rgba(1, 65, 59, 0.5);
  }
}
@media screen and (max-width: 768px) {
  #NavWrap {
    padding: 70px 30px 50px 30px;
    position: fixed;
    background: #ffffff;
    top: 0;
    /* topを固定 */
    right: 0;
    width: 100%;
    transition: opacity 0.6s, transform 0.6s, visibility 0.6s;
    box-sizing: border-box;
    visibility: hidden;
    z-index: 99;
    border-radius: 0 0 10px 10px;
    filter: drop-shadow(0px 3px 6px rgba(6, 87, 176, 0.1));
    transform: translateY(-100%);
    /* 上に隠す */
  }
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}/*# sourceMappingURL=common.css.map */