@charset "UTF-8";
/*========================================================
colors
========================================================*/
/*========================================================
fonts
========================================================*/
/*========================================================
spacing
========================================================*/
/*========================================================
breakpoint
========================================================*/
/*========================================================
mixin
========================================================*/
/*========================================================
button
========================================================*/
.s_link {
  margin-top: 85px;
}
@media (max-width: 768px) {
  .s_link {
    margin-top: 40px;
  }
}
.s_link-btn {
  width: 265px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #11B009;
  border-radius: 60px;
  margin: 0 auto;
  color: #11B009;
  position: relative;
  font-size: 20px;
}
@media (max-width: 768px) {
  .s_link-btn {
    width: 211px;
    height: 48px;
  }
}
.s_link-btn:hover .s_link-arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
.s_link-btn:hover .s_link-arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}
.s_link-btn.--correction {
  border: 1px solid #575955;
  color: #575955;
  background: none;
}
.s_link-btn.--correction .s_link-txt {
  margin-left: 20px;
  margin-right: 0;
}
.s_link-btn.--correction .s_link-arrow {
  top: 50%;
  right: 0;
  left: 50px;
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 768px) {
  .s_link-btn.--correction .s_link-arrow {
    left: 15px;
  }
}
.s_link-btn.--correction .s_link-arrow:before, .s_link-btn.--correction .s_link-arrow:after {
  color: #575955;
}
.s_link-btn.--send {
  color: #fff;
  background: linear-gradient(90deg, rgb(39, 167, 57) 0%, rgb(48, 203, 70) 100%);
}
@media (max-width: 768px) {
  .s_link-btn.--send .s_link-arrow {
    right: 15px;
  }
}
.s_link-btn.--send .s_link-arrow:before, .s_link-btn.--send .s_link-arrow:after {
  color: #fff;
}
.s_link-txt {
  font-size: 20px;
  letter-spacing: 3px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .s_link-txt {
    font-size: 14px;
  }
}
.s_link-arrow {
  overflow: hidden;
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 50px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
}
@media (max-width: 768px) {
  .s_link-arrow {
    right: 40px;
    width: 19px;
    height: 19px;
  }
}
.s_link-arrow:before, .s_link-arrow:after {
  content: "→";
  position: absolute;
  top: -1px;
  right: 0;
  color: #11B009;
  font-size: 25px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
@media (max-width: 768px) {
  .s_link-arrow:before, .s_link-arrow:after {
    font-size: 19px;
  }
}
.s_link-arrow:after {
  transform: translateX(-100%);
}
.s_link-arrow.--about {
  right: 30px;
}
@media (max-width: 768px) {
  .s_link.--about, .s_link.--correction {
    margin-top: 20px;
  }
}
.s_link.--about .s_link-btn, .s_link.--correction .s_link-btn {
  color: #fff;
  border: 1px solid #fff;
}
.s_link.--about .s_link-btn .s_link-arrow:before, .s_link.--about .s_link-btn .s_link-arrow:after, .s_link.--correction .s_link-btn .s_link-arrow:before, .s_link.--correction .s_link-btn .s_link-arrow:after {
  content: "→";
  color: #fff;
}
.s_link.--submit .s_link-btn {
  background: none;
  position: relative;
}

.s_link-hover-up {
  position: relative;
  overflow: hidden;
}
.s_link-hover-up:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  transform: translateY(100%);
  transition: transform 0.2s;
  opacity: 0.25;
}
.s_link-hover-up:hover:before {
  transform: translateY(0);
}
.s_link-hover-up.--green:before {
  background-color: #11B009;
}

/*========================================================

========================================================*/
/*========================================================
modal
========================================================*/
/*========================================================
button
========================================================*/
@keyframes transformLeftRight {
  0% {
    transform: translate(-100%);
    opacity: 0;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translate(0);
    opacity: 1;
  }
  100% {
    transform: translate(100%);
    opacity: 0;
  }
}
@keyframes rightArrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    transform: translateX(50%);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes leftArrow {
  0% {
    transform: translateX(0) rotate(180deg);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    transform: translateX(-50%) rotate(180deg);
    opacity: 0;
  }
  50% {
    transform: translateX(50%) rotate(180deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(180deg);
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/*========================================================
breadcrumbs
========================================================*/
.b_breadcrumb {
  position: absolute;
  top: 250px;
  left: -50px;
  transform: rotate(90deg);
  z-index: 111111;
  transform-origin: center center;
  white-space: nowrap;
  width: 200px;
}
@media (max-width: 1470px) {
  .b_breadcrumb {
    left: -50px;
  }
}
@media (max-width: 768px) {
  .b_breadcrumb {
    position: initial;
    transform: rotate(0);
    margin-left: auto;
    margin-right: 20px;
    text-align: right;
    margin-bottom: 20px;
    width: 100%;
    padding-right: 5%;
  }
}
.b_breadcrumb-link {
  font-size: 12px;
  color: #277C64;
  opacity: 0.4;
}
.b_breadcrumb-link.--current {
  opacity: 1;
}

/*========================================================
header
========================================================*/
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11111;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  transform: translateY(0); /* 初期は通常位置 */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
}
header.active {
  position: fixed;
  transform: translateY(10px); /* 一瞬下がってから */
  animation: fadeUp 0.4s ease forwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 追従感を演出 */
  background: rgba(255, 255, 255, 0.9);
}
header.active .header_logo {
  display: block;
  z-index: 111;
}
header.active .header_logo02 {
  display: none !important;
}
header.active .header_nav-list_item:first-child {
  order: 6;
  margin-right: 0;
  margin-left: 30px;
}
header.active .header_nav-list_link {
  color: #575955;
}
header.active .header_nav-list_link.--reserve {
  color: #fff;
}
header.active .header_nav-list_link.--contact {
  color: #fff;
  border: 2px solid #575955;
  background: #575955;
}
header.active .header_aco span {
  background: #787878;
}
header.not-top {
  background: none;
}
header.not-top.active {
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  header.not-top.active .header_logo {
    display: block;
  }
}
header.not-top .header_logo {
  display: block;
}
@media (max-width: 768px) {
  header.not-top .header_logo {
    display: none;
  }
}
header.not-top .header_logo02 {
  display: none;
}
@media (max-width: 768px) {
  header.not-top .header_logo02 {
    display: block;
  }
}
header.not-top .header_logo02 img {
  width: 110px;
  height: 33px;
}
header.not-top .header_aco span {
  background: #787878;
}
header.not-top .header_nav-list_item:first-child {
  order: 6;
  margin-right: 0;
  margin-left: 30px;
}
header.not-top .header_nav-list_link {
  color: #575955;
}
header.not-top .header_nav-list_link.--reserve {
  color: #fff;
}
header.not-top .header_nav-list_link.--contact {
  color: #fff;
  border: 2px solid #575955;
  background: #575955;
}
header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}
@media (max-width: 1200px) {
  header .header_inner {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  header .header_inner {
    height: 70px;
  }
}
header .header_logo {
  width: 264px;
  display: none;
}
@media (max-width: 1200px) {
  header .header_logo {
    width: 200px;
  }
}
@media (max-width: 768px) {
  header .header_logo {
    width: 150px;
  }
}
header .header_logo02 {
  display: none;
}
header .header_nav {
  width: 100%;
}
header .header_nav-list {
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  header .header_nav-list {
    height: 100px;
  }
}
@media (max-width: 768px) {
  header .header_nav-list {
    width: 100%;
    height: auto;
  }
}
header .header_nav-list_item {
  margin-left: 30px;
}
@media (max-width: 1200px) {
  header .header_nav-list_item {
    margin-left: 15px;
  }
}
header .header_nav-list_item:first-child {
  margin-right: auto;
  margin-left: 0;
  transition: 0.3s;
}
header .header_nav-list_item:first-child:hover {
  opacity: 0.7;
}
header .header_nav-list_link {
  color: #fff;
  font-size: 22px;
  letter-spacing: 2px;
}
@media (max-width: 1200px) {
  header .header_nav-list_link {
    font-size: 18px;
  }
}
header .header_nav-list_link.--reserve {
  width: 164px;
  height: 60px;
  background: #11B009;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
@media (max-width: 1200px) {
  header .header_nav-list_link.--reserve {
    width: 150px;
    height: 55px;
  }
}
header .header_nav-list_link.--reserve img {
  margin-right: 7px;
}
header .header_nav-list_link.--reserve span {
  margin-top: -3px;
}
header .header_nav-list_link.--contact {
  width: 243px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 100px;
}
@media (max-width: 1200px) {
  header .header_nav-list_link.--contact {
    width: 200px;
    height: 55px;
  }
}
header .header_nav-list_link.--contact img, header .header_nav-list_link.--contact svg {
  margin-right: 13px;
}
header .header_nav-list_link.--contact span {
  margin-top: -3px;
}
header .header_aco {
  width: 35px;
  height: 27px;
  margin-left: auto;
  position: relative;
  z-index: 111111;
  /* &.active{

    span{
      background: #787878;

      &:nth-child(1){
        top:0;
        bottom:0;
        margin: auto;
        transform: rotate(45deg);
      }
      &:nth-child(2){
        top:0;
        bottom:0;
        margin: auto;
        display: none;
      }
      &:nth-child(3){
        top:0;
        bottom:0;
        margin: auto;
        transform: rotate(-45deg);
      }

    }

  } */
}
header .header_aco.--close {
  position: absolute;
  top: 0;
  right: 0;
}
header .header_aco.--close span {
  background: #787878;
}
header .header_aco.--close span:nth-child(1) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
header .header_aco.--close span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  display: none;
}
header .header_aco.--close span:nth-child(3) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
}
header .header_aco span {
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
header .header_aco span:nth-child(1) {
  top: 0;
}
header .header_aco span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
header .header_aco span:nth-child(3) {
  bottom: 0;
}

.header_nav_sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  bottom: 0;
  background: #F5FCF7;
  padding: 100px 15px 30px;
  transform: translateY(-200%);
  transition: 0.3s;
  z-index: 111111;
}
.header_nav_sp.opend {
  transform: translateY(0);
}
.header_nav_sp .header_aco-close {
  width: 35px;
  height: 27px;
  position: absolute;
  top: 34px;
  right: 5%;
}
.header_nav_sp .header_aco-close span {
  width: 100%;
  height: 2px;
  background: #787878;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.header_nav_sp .header_aco-close span:nth-child(1) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.header_nav_sp .header_aco-close span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
}
.header_nav_sp-list_item {
  margin-bottom: 20px;
}
.header_nav_sp-list_item:nth-child(5) {
  margin-bottom: 40px;
}
.header_nav_sp-list_item:nth-last-child(-n+3) {
  text-align: right;
}
.header_nav_sp-list_link {
  font-size: 24px;
  font-weight: bold;
  color: #575955;
  padding: 0 10px 5px 0;
  border-bottom: 1px solid #DFE2DC;
}
.header_nav_sp-list_link.--logo img {
  width: 110px;
  height: 33px;
}
.header_nav_sp-list_link[target=_blank], .header_nav_sp-list_link.--copy {
  font-size: 12px;
  font-weight: normal;
  padding: 0;
  border-bottom: 0;
  margin-bottom: 8px;
}
.header_nav_sp-list_link.--copy {
  font-size: 10px;
}

/*========================================================
footer
========================================================*/
footer {
  background-color: #10a05b;
  background-image: url(../../assets/images/common/footer_bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  padding: 110px 0 60px;
}
@media (max-width: 1470px) {
  footer {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  footer {
    background-image: none;
    padding: 0 0 120px;
  }
}
footer .footer_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 0 50px 50px;
  border-bottom: 1px solid #fff;
}
@media (max-width: 1200px) {
  footer .footer_inner {
    width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  footer .footer_inner {
    width: 100%;
    padding: 0 0 30px;
    border: 0;
  }
}
footer .footer_inner-head {
  margin-bottom: 450px;
}
@media (max-width: 1470px) {
  footer .footer_inner-head {
    margin-bottom: 250px;
  }
}
@media (max-width: 1200px) {
  footer .footer_inner-head {
    margin-bottom: 150px;
  }
}
@media (max-width: 768px) {
  footer .footer_inner-head {
    margin-bottom: 0px;
    background-color: #76ecff;
    background-image: url(../../assets/images/common/footer_bg_sp.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    padding: 60px 30px 130px;
  }
}
footer .footer_inner-head-menu {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer_inner-head-menu {
    display: block;
  }
}
footer .footer_inner-head-link {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex: 1;
  position: relative;
}
@media (max-width: 1200px) {
  footer .footer_inner-head-link {
    height: 100px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  footer .footer_inner-head-link {
    width: 250px;
    height: 120px;
    margin: 0 auto 44px;
  }
}
footer .footer_inner-head-link:before {
  content: "";
  width: 24px;
  height: 16px;
  background: url(../../assets/images/common/icon_blank.png) no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
footer .footer_inner-head-link + .footer_inner-head-link {
  margin-left: 20px;
}
@media (max-width: 768px) {
  footer .footer_inner-head-link + .footer_inner-head-link {
    margin-left: auto;
  }
}
footer .footer_inner-head-link:hover > img {
  transform: scale(1.05, 1.05);
}
footer .footer_inner-head-link img {
  transition: 0.3s;
}
@media (max-width: 768px) {
  footer .footer_inner .footer_bottom {
    padding: 10px 5% 30px;
  }
}
footer .footer_inner-flex_01 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_01 {
    display: block;
  }
}
footer .footer_inner-flex_01 .footer_inner-flex_item {
  width: 40%;
}
@media (max-width: 1200px) {
  footer .footer_inner-flex_01 .footer_inner-flex_item {
    width: 45%;
  }
}
@media (max-width: 768px) {
  footer .footer_inner-flex_01 .footer_inner-flex_item {
    width: 100%;
  }
}
footer .footer_inner-flex_01 .footer_inner-flex_logo {
  display: block;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  footer .footer_inner-flex_01 .footer_inner-flex_logo {
    width: 250px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  footer .footer_inner-flex_01 .footer_inner-flex_logo {
    width: 235px;
    margin: 0 auto 15px;
  }
}
footer .footer_inner-flex_01 .footer_inner-flex_info {
  color: #fff;
  font-size: 17px;
  line-height: 2;
}
@media (max-width: 1200px) {
  footer .footer_inner-flex_01 .footer_inner-flex_info {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  footer .footer_inner-flex_01 .footer_inner-flex_info {
    text-align: center;
    line-height: 1.7;
    margin-bottom: 40px;
  }
}
footer .footer_inner-flex_01 .footer_inner-flex_info span {
  font-size: 14px;
  display: block;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_01 .footer_inner-flex_info span {
    font-size: 10px;
  }
}
footer .footer_inner-flex_01 .footer_inner-nav {
  display: flex;
}
footer .footer_inner-flex_01 .footer_inner-nav_item {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_01 .footer_inner-nav_item:nth-child(1) {
    width: 40%;
  }
}
@media (max-width: 768px) {
  footer .footer_inner-flex_01 .footer_inner-nav_item:nth-child(2) {
    width: 60%;
  }
}
footer .footer_inner-flex_01 .footer_inner-nav_link {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
  display: inline-block;
  transition: 0.3s;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_01 .footer_inner-nav_link {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
footer .footer_inner-flex_01 .footer_inner-nav_link[target=_blank] {
  font-size: 13px;
  color: #CFFFE2;
}
footer .footer_inner-flex_01 .footer_inner-nav_link[target=_blank] span {
  display: inline-block;
  padding-right: 25px;
  position: relative;
}
footer .footer_inner-flex_01 .footer_inner-nav_link[target=_blank] span:after {
  content: "";
  width: 17px;
  height: 10px;
  background: url(../../assets/images/common/icon_blank_wh.png) no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 3px;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_01 .footer_inner-nav_link[target=_blank] span:after {
    display: none;
  }
}
footer .footer_inner-flex_01 .footer_inner-nav_link.--small {
  font-size: 13px;
  color: #CFFFE2;
}
footer .footer_inner-flex_01 .footer_inner-nav_link.--small span {
  display: inline-block;
}
footer .footer_inner-flex_01 .footer_inner-nav_link:hover {
  opacity: 0.7;
}
footer .footer_inner-flex_02 {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_02 {
    flex-wrap: wrap;
    margin-top: 10px;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
  }
}
@media (max-width: 768px) {
  footer .footer_inner-flex_02 .footer_inner-flex_item:nth-child(1) {
    width: 100%;
    order: 2;
    text-align: right;
  }
}
@media (max-width: 768px) {
  footer .footer_inner-flex_02 .footer_inner-flex_item:nth-child(2) {
    width: 100%;
    order: 1;
  }
}
footer .footer_inner-flex_02 .footer_inner-flex_privacy {
  color: #fff;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  footer .footer_inner-flex_02 .footer_inner-flex_privacy {
    font-size: 12px;
  }
}
footer .footer_inner-flex_02 .footer_inner-flex_privacy:hover {
  opacity: 0.7;
}
footer .footer_inner-flex_02 .footer_inner-flex_copy {
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}
@media (max-width: 1200px) {
  footer .footer_inner-flex_02 .footer_inner-flex_copy {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  footer .footer_inner-flex_02 .footer_inner-flex_copy {
    text-align: right;
  }
}
footer .footer_inner-flex_02 .footer_inner-contact {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_02 .footer_inner-contact {
    margin-bottom: 38px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
footer .footer_inner-flex_02 .footer_inner-contact_link {
  color: #10A05B;
  font-size: 22px;
}
footer .footer_inner-flex_02 .footer_inner-contact_link.--reserve {
  width: 150px;
  height: 45px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 18px;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_02 .footer_inner-contact_link.--reserve {
    font-size: 14px;
    width: 45%;
    height: 38px;
  }
}
footer .footer_inner-flex_02 .footer_inner-contact_link.--reserve img {
  margin-right: 7px;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_02 .footer_inner-contact_link.--reserve img {
    width: 22px;
  }
}
footer .footer_inner-flex_02 .footer_inner-contact_link.--reserve span {
  margin-top: -3px;
}
footer .footer_inner-flex_02 .footer_inner-contact_link.--contact {
  width: 200px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 100px;
  font-size: 18px;
  color: #fff;
  margin-left: 20px;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_02 .footer_inner-contact_link.--contact {
    font-size: 14px;
    width: 50%;
    height: 38px;
    margin-left: 0;
  }
}
footer .footer_inner-flex_02 .footer_inner-contact_link.--contact img {
  margin-right: 13px;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_02 .footer_inner-contact_link.--contact img {
    width: 18px;
    margin-right: 7.5px;
  }
}
footer .footer_inner-flex_02 .footer_inner-contact_link.--contact span {
  margin-top: -3px;
}
footer .footer_inner-flex_02 .footer_inner-contact_link.--logo {
  margin-left: 20px;
  width: 175px;
  height: 45px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  footer .footer_inner-flex_02 .footer_inner-contact_link.--logo {
    width: 45%;
    margin-left: 0;
    margin-top: 15px;
  }
}
footer .footer_inner-flex_02 .footer_inner-contact_link.--logo:before {
  display: none;
}
footer .footer_inner-flex_02 .footer_inner-contact_link.--logo:hover {
  opacity: 0.7;
}
footer .footer_inner-flex_02 .footer_inner-contact_link.--logo img {
  width: 175px;
  height: 45px;
}

body {
  background: #F5FCF7;
  font-family: "Noto Sans JP", sans-serif;
  color: #575955;
  font-size: 15px;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body a {
  text-decoration: none;
}
body article {
  position: relative;
}
body article.no-top {
  padding-top: 200px;
  padding-bottom: 300px;
}
@media (max-width: 1200px) {
  body article.no-top {
    padding-bottom: 200px;
  }
}
@media (max-width: 768px) {
  body article.no-top {
    padding: 100px 0 200px;
  }
}
body .--pc_none {
  display: none !important;
}
@media (max-width: 768px) {
  body .--sp_none {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  body .--mac_block {
    display: block !important;
  }
}
@media (max-width: 768px) {
  body .--sp_block {
    display: block !important;
  }
}

.sec_inner {
  width: 1520px;
  margin: 0 auto;
  padding: 100px 0;
}
@media (max-width: 1470px) {
  .sec_inner {
    width: 100%;
    padding: 0 10%;
  }
}
@media (max-width: 768px) {
  .sec_inner {
    width: 100%;
    padding: 0 5%;
  }
}
.sec_inner.--full {
  padding: 0;
}
.sec_inner.--reserve {
  padding: 200px 0 100px;
}
@media (max-width: 768px) {
  .sec_inner.--reserve {
    padding: 80px 5%;
  }
}

.s_head-txt {
  font-weight: bold;
  padding: 20px 0 0;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
@media (max-width: 768px) {
  .s_head-txt {
    padding: 15px 0 0;
    margin-bottom: 24px;
  }
}
.s_head-txt:before {
  content: "";
  width: 93px;
  height: 103px;
  background: url(../../assets/images/common/head_bg_01.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -45px;
  z-index: 2;
}
@media (max-width: 768px) {
  .s_head-txt:before {
    width: 66px;
    height: 76px;
    left: -15px;
  }
}
.s_head-txt-en {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
  z-index: 3;
  position: relative;
}
@media (max-width: 768px) {
  .s_head-txt-en {
    font-size: 14px;
  }
}
.s_head-txt-ja {
  display: block;
  font-size: 35px;
  z-index: 3;
  position: relative;
}
@media (max-width: 768px) {
  .s_head-txt-ja {
    font-size: 24px;
  }
}
.s_head-txt-ja.no-top {
  font-size: 45px;
  position: relative;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .s_head-txt-ja.no-top {
    font-size: 24px;
  }
}
.s_head-txt-ja.no-top::before {
  content: "";
  width: 110%;
  height: 1px;
  background: #DFE2DC;
  position: absolute;
  right: 0;
  bottom: -20px;
}
.s_head-txt.--about:before {
  content: "";
  background: url(../../assets/images/common/head_bg_02.png) no-repeat;
  background-size: contain;
  position: absolute;
}
.s_head-txt.--footer {
  color: #333;
}
@media (max-width: 768px) {
  .s_head-txt.--footer {
    margin-bottom: 47px;
  }
}
.s_head-txt.--footer:before {
  content: "";
  background: url(../../assets/images/common/head_bg_03.png) no-repeat;
  background-size: contain;
  position: absolute;
}

#top .sec_mv .sec_inner {
  width: 100%;
  height: calc(100vh + 80px);
  /* background: url(../../assets/images/top/mv_pc.jpg) no-repeat;
  background-position: center center;
  background-size: cover; */
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  #top .sec_mv .sec_inner {
    height: 100vh;
  }
}
#top .sec_mv .sec_inner:before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/top/mv_gra.png) no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 768px) {
  #top .sec_mv .sec_inner:before {
    background: url(../../assets/images/top/mv_sp.png) no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
#top .sec_mv .sec_inner .sec_mv-video {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  min-width: 101%;
  min-height: 101%;
  transform: translate(-50%, -50%);
}
#top .sec_mv .sec_inner-txt {
  position: absolute;
  left: 84px;
  bottom: 144px;
  z-index: 1;
}
@media (max-width: 1200px) {
  #top .sec_mv .sec_inner-txt {
    left: 40px;
    bottom: 150px;
  }
}
@media (max-width: 768px) {
  #top .sec_mv .sec_inner-txt {
    left: 17px;
    bottom: 80px;
  }
}
#top .sec_mv .sec_inner-txt_item {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  #top .sec_mv .sec_inner-txt_item {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #top .sec_mv .sec_inner-txt_item {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1200px) {
  #top .sec_mv .sec_inner-txt .sec_inner-logo {
    display: block;
    width: 300px;
  }
}
@media (max-width: 768px) {
  #top .sec_mv .sec_inner-txt .sec_inner-logo {
    display: block;
    width: 227px;
  }
}
#top .sec_mv .sec_inner-news {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 128px;
  background: url(../../assets/images/top/top_news_bg.png) no-repeat;
  background-size: cover;
  background-position: center bottom;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 111;
  padding-bottom: 24px;
}
@media (max-width: 1200px) {
  #top .sec_mv .sec_inner-news {
    height: 110px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  #top .sec_mv .sec_inner-news {
    height: 75px;
    background: url(../../assets/images/top/top_news_bg_sp.png) no-repeat;
    background-size: cover;
    background-position: center bottom;
    padding-bottom: 0;
    padding: 25px 15px 0;
    display: block;
  }
}
#top .sec_mv .sec_inner-news_head {
  font-size: 15px;
  padding-right: 70px;
  position: relative;
  margin-right: 12px;
}
@media (max-width: 768px) {
  #top .sec_mv .sec_inner-news_head {
    font-size: 12px;
  }
}
#top .sec_mv .sec_inner-news_head:before {
  content: "";
  width: 50px;
  height: 1px;
  background: #AAABA9;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
#top .sec_mv .sec_inner-news_item {
  margin-right: 70px;
}
@media (max-width: 1200px) {
  #top .sec_mv .sec_inner-news_item {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  #top .sec_mv .sec_inner-news_item {
    display: block;
    width: 100%;
    font-size: 12px;
  }
}
#top .sec_mv .sec_inner-news_item:hover .sec_inner-news_arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
#top .sec_mv .sec_inner-news_item:hover .sec_inner-news_arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}
#top .sec_mv .sec_inner-news_date {
  color: #AAABA9;
  margin-right: 25px;
}
@media (max-width: 768px) {
  #top .sec_mv .sec_inner-news_date {
    font-size: 12px;
  }
}
#top .sec_mv .sec_inner-news_ttl {
  color: #575955;
  font-size: 15px;
  max-width: 620px;
  display: inline-block;
  white-space: nowrap; /* 横幅のMAXに達しても改行しない */
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 「…」と省略 */
  -webkit-text-overflow: ellipsis; /* Safari用 */
  -o-text-overflow: ellipsis; /* Opera用 */
  margin-right: 10px;
}
@media (max-width: 768px) {
  #top .sec_mv .sec_inner-news_ttl {
    max-width: 100%;
    font-size: 12px;
    margin-top: 5px;
    max-width: 90%;
  }
}
#top .sec_mv .sec_inner-news_arrow {
  overflow: hidden;
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
  transform: translateY(4px);
}
#top .sec_mv .sec_inner-news_arrow:before, #top .sec_mv .sec_inner-news_arrow:after {
  content: "→";
  position: absolute;
  top: -1px;
  right: 0;
  color: #575955;
  font-size: 20px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
#top .sec_mv .sec_inner-news_arrow:after {
  transform: translateX(-100%);
}
#top .sec_reserve .reserve_flex {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #top .sec_reserve .reserve_flex {
    display: block;
  }
}
#top .sec_reserve .reserve_flex-item.--img {
  width: 55.72%;
}
@media (max-width: 1200px) {
  #top .sec_reserve .reserve_flex-item.--img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #top .sec_reserve .reserve_flex-item.--img {
    width: 100%;
    margin-bottom: 50px;
    display: block;
  }
}
#top .sec_reserve .reserve_flex-item.--txt {
  width: 44.28%;
  padding-left: 100px;
}
@media (max-width: 1200px) {
  #top .sec_reserve .reserve_flex-item.--txt {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #top .sec_reserve .reserve_flex-item.--txt {
    width: 100%;
    padding-left: 0;
  }
}
#top .sec_reserve .reserve_txt {
  line-height: 2;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #top .sec_reserve .reserve_txt {
    margin-bottom: 30px;
  }
}
#top .sec_reserve .reserve_btn {
  width: 380px;
  height: 100px;
  background: linear-gradient(90deg, rgb(39, 167, 57) 0%, rgb(48, 203, 70) 100%);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding-left: 44px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  #top .sec_reserve .reserve_btn {
    width: 300px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  #top .sec_reserve .reserve_btn {
    width: 200px;
    height: 60px;
    padding-left: 24px;
    margin: 0 auto;
  }
}
#top .sec_reserve .reserve_btn:hover .reserve_btn-arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
#top .sec_reserve .reserve_btn:hover .reserve_btn-arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}
@media (max-width: 1200px) {
  #top .sec_reserve .reserve_btn-icon {
    width: 30px;
  }
}
@media (max-width: 768px) {
  #top .sec_reserve .reserve_btn-icon {
    width: 22px;
  }
}
#top .sec_reserve .reserve_btn-txt {
  margin-left: 15px;
  margin-bottom: 8px;
  font-size: 30px;
  color: #fff;
}
@media (max-width: 1200px) {
  #top .sec_reserve .reserve_btn-txt {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
@media (max-width: 768px) {
  #top .sec_reserve .reserve_btn-txt {
    font-size: 16px;
    margin-bottom: 2px;
    margin-left: 5px;
  }
}
#top .sec_reserve .reserve_btn-arrow {
  overflow: hidden;
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 45px;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
}
@media (max-width: 1200px) {
  #top .sec_reserve .reserve_btn-arrow {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 768px) {
  #top .sec_reserve .reserve_btn-arrow {
    right: 24px;
  }
}
#top .sec_reserve .reserve_btn-arrow:before, #top .sec_reserve .reserve_btn-arrow:after {
  content: "→";
  position: absolute;
  top: -5px;
  right: 0;
  color: #fff;
  font-size: 35px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
@media (max-width: 1200px) {
  #top .sec_reserve .reserve_btn-arrow:before, #top .sec_reserve .reserve_btn-arrow:after {
    font-size: 28px;
  }
}
#top .sec_reserve .reserve_btn-arrow:after {
  transform: translateX(-100%);
}
#top .sec_news .news_list {
  margin-top: 100px;
  border-top: 1px solid #DFE2DC;
}
@media (max-width: 768px) {
  #top .sec_news .news_list {
    margin-top: 25px;
  }
}
#top .sec_news .news_list-item_link {
  display: flex;
  align-items: center;
  padding: 35px 60px 35px 60px;
  border-bottom: 1px solid #DFE2DC;
  position: relative;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  #top .sec_news .news_list-item_link {
    padding: 20px 30px;
  }
}
@media (max-width: 768px) {
  #top .sec_news .news_list-item_link {
    padding: 20px 0;
  }
}
#top .sec_news .news_list-item_link:before {
  content: "";
  width: 0%;
  height: 1px;
  background: #11B009;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: 0.8s;
}
#top .sec_news .news_list-item_link:hover::before {
  width: 100%;
}
#top .sec_news .news_list-item_date {
  display: inline-block;
  margin-right: 45px;
  color: #B7B7B7;
  width: 115px;
}
@media (max-width: 768px) {
  #top .sec_news .news_list-item_date {
    width: auto;
    margin-right: 15px;
  }
}
#top .sec_news .news_list-item_cat {
  display: inline-block;
  margin-right: 80px;
  color: #fff;
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: #11B009;
}
@media (max-width: 768px) {
  #top .sec_news .news_list-item_cat {
    margin-right: 0;
    font-size: 10px;
    width: 72px;
    height: 21px;
  }
}
#top .sec_news .news_list-item_ttl {
  width: calc(100% - 115px - 100px - 45px - 80px);
  font-size: 18px;
  color: #575955;
  white-space: nowrap; /* 横幅のMAXに達しても改行しない */
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 「…」と省略 */
  -webkit-text-overflow: ellipsis; /* Safari用 */
  -o-text-overflow: ellipsis; /* Opera用 */
}
@media (max-width: 768px) {
  #top .sec_news .news_list-item_ttl {
    display: block;
    width: 100%;
    margin-top: 18px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
    line-height: 1.5;
  }
}
#top .sec_about {
  margin: 100px 0 160px;
}
@media (max-width: 1200px) {
  #top .sec_about {
    margin: 50px 0;
  }
}
#top .sec_about .sec_inner {
  width: 100%;
  position: relative;
  /* &:before{
    content:"";
    width: 100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    background: url(../../assets/images/top/about_img.png) no-repeat;
    background-size: cover;

    @include mq(mac){
      display: none;
    }
  } */
}
#top .sec_about .about_img {
  width: 100%;
  height: 800px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1200px) {
  #top .sec_about .about_img {
    width: 100%;
    height: auto;
    position: initial;
  }
}
#top .sec_about .about_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
#top .sec_about .about_content {
  width: 56%;
  padding: 10% 0;
  height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 1680px) {
  #top .sec_about .about_content {
    width: 60%;
  }
}
@media (max-width: 1200px) {
  #top .sec_about .about_content {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
#top .sec_about .about_content:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../../assets/images/top/about_bg.png) no-repeat;
  background-size: cover;
}
@media (max-width: 1200px) {
  #top .sec_about .about_content:before {
    display: none;
  }
}
#top .sec_about .about_content-txt {
  width: 60%;
  color: #fff;
  position: relative;
  z-index: 111;
  margin-left: auto;
  margin-right: 100px;
}
@media (max-width: 1680px) {
  #top .sec_about .about_content-txt {
    margin-right: 50px;
  }
}
@media (max-width: 1200px) {
  #top .sec_about .about_content-txt {
    width: 100%;
    background: #10A05B;
    padding: 50px 100px;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  #top .sec_about .about_content-txt {
    padding: 30px 5%;
  }
}
#top .sec_about .about_content-txt strong {
  display: block;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  #top .sec_about .about_content-txt strong {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
#top .sec_about .about_content-txt p {
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #top .sec_about .about_content-txt p {
    font-size: 14px;
  }
}
#top .sec_menu {
  margin-bottom: 100px;
}
#top .sec_menu .sec_inner {
  width: 100%;
}
#top .sec_menu .menu_content-flex {
  display: flex;
  flex-wrap: wrap;
}
#top .sec_menu .menu_content-flex_item {
  position: relative;
  transition: 0.3s;
}
#top .sec_menu .menu_content-flex_item:nth-child(1) {
  width: 100%;
  height: 600px;
  background: url(../../assets/images/top/menu_01.png) no-repeat;
  background-position: center center;
  background-size: 110%;
}
@media (max-width: 1680px) {
  #top .sec_menu .menu_content-flex_item:nth-child(1) {
    height: 500px;
    background-size: 130%;
  }
}
@media (max-width: 1200px) {
  #top .sec_menu .menu_content-flex_item:nth-child(1) {
    height: 400px;
  }
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_item:nth-child(1) {
    background: url(../../assets/images/top/menu_01_sp.png) no-repeat;
    background-position: center center;
    background-size: 125%;
    height: auto;
    padding: 50% 0;
  }
}
#top .sec_menu .menu_content-flex_item:nth-child(1) .menu_content-flex_txt {
  top: 40px;
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_item:nth-child(1) .menu_content-flex_txt {
    bottom: auto;
    top: 32px;
  }
}
#top .sec_menu .menu_content-flex_item:nth-child(2) {
  width: 50%;
  height: 600px;
  background: url(../../assets/images/top/menu_02.png) no-repeat;
  background-position: center center;
  background-size: 110%;
}
@media (max-width: 1680px) {
  #top .sec_menu .menu_content-flex_item:nth-child(2) {
    height: 500px;
    background-size: 130%;
  }
}
@media (max-width: 1200px) {
  #top .sec_menu .menu_content-flex_item:nth-child(2) {
    height: 400px;
  }
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_item:nth-child(2) {
    background: url(../../assets/images/top/menu_02_sp.png) no-repeat;
    background-position: center center;
    background-size: 125%;
    height: auto;
    width: 100%;
    padding: 50% 0;
  }
}
#top .sec_menu .menu_content-flex_item:nth-child(2) .menu_content-flex_txt {
  bottom: 40px;
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_item:nth-child(2) .menu_content-flex_txt {
    bottom: auto;
    top: 32px;
  }
}
#top .sec_menu .menu_content-flex_item:nth-child(3) {
  width: 50%;
  height: 600px;
  background: url(../../assets/images/top/menu_04.png) no-repeat;
  background-position: center center;
  background-size: 110%;
}
@media (max-width: 1680px) {
  #top .sec_menu .menu_content-flex_item:nth-child(3) {
    height: 500px;
    background-size: 130%;
  }
}
@media (max-width: 1200px) {
  #top .sec_menu .menu_content-flex_item:nth-child(3) {
    height: 400px;
  }
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_item:nth-child(3) {
    background: url(../../assets/images/top/menu_04_sp.png) no-repeat;
    background-position: center center;
    background-size: 125%;
    height: auto;
    width: 100%;
    padding: 50% 0;
  }
}
#top .sec_menu .menu_content-flex_item:nth-child(3) .menu_content-flex_txt {
  bottom: 40px;
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_item:nth-child(3) .menu_content-flex_txt {
    bottom: auto;
    top: 32px;
  }
}
#top .sec_menu .menu_content-flex_item:nth-child(4) {
  width: 50%;
  height: 850px;
  background: url(../../assets/images/top/menu_04.png) no-repeat;
  background-position: center center;
  background-size: 110%;
}
@media (max-width: 1680px) {
  #top .sec_menu .menu_content-flex_item:nth-child(4) {
    height: 500px;
    background-size: 130%;
  }
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_item:nth-child(4) {
    background: url(../../assets/images/top/menu_04_sp.png) no-repeat;
    background-position: center center;
    background-size: 125%;
    width: 100%;
    padding: 50% 0;
  }
}
#top .sec_menu .menu_content-flex_item:nth-child(4) .menu_content-flex_txt {
  bottom: 40px;
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_item:nth-child(4) .menu_content-flex_txt {
    bottom: auto;
    top: 32px;
  }
}
#top .sec_menu .menu_content-flex_item:hover {
  background-size: 115%;
}
@media (max-width: 1680px) {
  #top .sec_menu .menu_content-flex_item:hover {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_item:hover {
    background-size: 130%;
  }
}
#top .sec_menu .menu_content-flex_txt {
  color: #fff;
  position: absolute;
  left: 80px;
}
@media (max-width: 1680px) {
  #top .sec_menu .menu_content-flex_txt {
    left: 40px;
  }
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_txt {
    left: 18px;
  }
}
#top .sec_menu .menu_content-flex_txt h2 {
  font-size: 80px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  #top .sec_menu .menu_content-flex_txt h2 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_txt h2 {
    font-size: 30px;
  }
}
#top .sec_menu .menu_content-flex_txt p {
  font-size: 25px;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  #top .sec_menu .menu_content-flex_txt p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #top .sec_menu .menu_content-flex_txt p {
    font-size: 17px;
  }
}
#top .sec_access {
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  #top .sec_access {
    margin-bottom: 70px;
  }
}
#top .sec_access .access_flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #top .sec_access .access_flex {
    display: block;
  }
}
#top .sec_access .access_flex .access_flex-item {
  flex: 1;
}
@media (max-width: 768px) {
  #top .sec_access .access_flex .access_flex-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #top .sec_access .access_flex .access_flex-item.--map {
    margin-top: 25px;
    width: 100%;
  }
}
#top .sec_access .access_flex .access_flex-item.--map iframe {
  width: 100%;
  border-radius: 17px;
}
@media (max-width: 768px) {
  #top .sec_access .access_flex .access_flex-item.--map iframe {
    height: 235px;
  }
}
#top .sec_access .access_flex .access_txt .head_txt01 {
  display: block;
  font-size: 23px;
  margin-bottom: 15px;
  color: #11B009;
}
@media (max-width: 768px) {
  #top .sec_access .access_flex .access_txt .head_txt01 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
#top .sec_access .access_flex .access_txt .head_txt02 {
  display: block;
  font-size: 16px;
  margin-top: 65px;
  margin-bottom: 15px;
  color: #54AD4D;
}
@media (max-width: 768px) {
  #top .sec_access .access_flex .access_txt .head_txt02 {
    margin-top: 26px;
    margin-bottom: 10px;
    font-size: 14px;
  }
}
#top .sec_access .access_flex .access_txt p {
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #top .sec_access .access_flex .access_txt p {
    font-size: 12px;
  }
}

#about .sec_about .sec_inner {
  width: 100%;
  padding: 150px 0 380px 200px;
  background: url(../../assets/images/about/about_img_02.png) no-repeat;
  background-position: right top;
}
@media (max-width: 1470px) {
  #about .sec_about .sec_inner {
    background-size: 55%;
  }
}
@media (max-width: 1200px) {
  #about .sec_about .sec_inner {
    background-size: 45%;
    padding: 100px 0;
    padding: 0 10%;
  }
}
@media (max-width: 768px) {
  #about .sec_about .sec_inner {
    background: none;
    padding: 0 5%;
  }
}
#about .sec_about .about_catch {
  font-size: 40px;
  color: #2E8E5E;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 10px;
  margin-top: 300px;
  margin-bottom: 200px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  #about .sec_about .about_catch {
    margin-top: 100px;
    font-size: 34px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  #about .sec_about .about_catch {
    padding-right: 10%;
    font-size: 18px;
    font-weight: bold;
    margin-top: 35px;
    letter-spacing: 3px;
    margin-bottom: 40px;
  }
}
#about .sec_about .about_catch:before {
  content: "";
  width: 262px;
  height: 281px;
  background: url(../../assets/images/about/about_img_01.png) no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -140px;
  left: -130px;
  z-index: -1;
}
@media (max-width: 1200px) {
  #about .sec_about .about_catch:before {
    width: 200px;
    top: -45px;
    left: -65px;
  }
}
@media (max-width: 768px) {
  #about .sec_about .about_catch:before {
    width: 125px;
    height: 125px;
    top: -35px;
    left: -18px;
  }
}
#about .sec_about .about_catch:after {
  content: "";
  width: 896px;
  height: 894px;
  background: url(../../assets/images/about/about_img_03.png) no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -277px;
  left: 186px;
  z-index: -1;
}
@media (max-width: 1200px) {
  #about .sec_about .about_catch:after {
    width: 600px;
    height: 600px;
    top: 0;
    bottom: 0;
    right: -200px;
    margin: auto;
  }
}
#about .sec_about .about_txt {
  font-size: 20px;
  line-height: 2;
  position: relative;
  z-index: 111;
}
@media (max-width: 1200px) {
  #about .sec_about .about_txt {
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  #about .sec_about .about_txt {
    padding-right: 10%;
    background: none;
    padding: 0 0 0 0;
    font-size: 14px;
  }
}

#news .news_post {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 100px;
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  #news .news_post {
    margin-bottom: 50px;
    margin-top: 38px;
  }
}
#news .news_post:after {
  content: "";
  width: calc(33.3333333333% - 20px);
  display: block;
}
@media (max-width: 768px) {
  #news .news_post:after {
    display: none;
  }
}
#news .news_post-item {
  width: calc(33.3333333333% - 20px);
  color: #575955;
  transition: 0.3s;
}
@media (max-width: 768px) {
  #news .news_post-item {
    width: 100%;
  }
}
#news .news_post-item:hover {
  opacity: 0.7;
}
#news .news_post-item:hover img {
  transform: scale(1.05, 1.05);
}
#news .news_post-thum {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 15px;
}
#news .news_post-thum img {
  width: 100%;
  height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  #news .news_post-thum img {
    height: 180px;
  }
}
#news .news_post-date {
  color: #B7B7B7;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #news .news_post-date {
    font-size: 13px;
  }
}
#news .news_post-ttl {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 30px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 768px) {
  #news .news_post-ttl {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
#news .news_post-cat {
  display: inline-block;
  border-radius: 50px;
  font-size: 16px;
  padding: 5px 20px 7px 20px;
  background: #11B009;
  color: #fff;
}
@media (max-width: 768px) {
  #news .news_post-cat {
    font-size: 13px;
  }
}
#news .news_post-pager {
  display: flex;
  align-items: center;
  justify-content: center;
}
#news .news_post-pager_item {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 1px solid #11B009;
  color: #11B009;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 768px) {
  #news .news_post-pager_item {
    width: 36px;
    height: 36px;
    margin: 0 2px;
  }
}
#news .news_post-pager_item:hover {
  background: #11B009;
  color: #fff;
}
#news .news_post-pager_item:hover.--center {
  background: none;
  color: #11B009;
}
#news .news_post-pager_item:hover.--prev, #news .news_post-pager_item:hover.--next {
  background: none;
  opacity: 0.7;
}
#news .news_post-pager_item span {
  font-size: 24px;
}
@media (max-width: 768px) {
  #news .news_post-pager_item span {
    font-size: 13px;
  }
}
#news .news_post-pager_item.--current {
  background: #11B009;
  color: #fff;
}
#news .news_post-pager_item.--center {
  border: none;
  margin: 0;
  pointer-events: none;
}
#news .news_post-pager_item.--prev, #news .news_post-pager_item.--next {
  width: 82px;
  border-radius: 100px;
}
@media (max-width: 768px) {
  #news .news_post-pager_item.--prev, #news .news_post-pager_item.--next {
    width: 50px;
  }
}
@media (max-width: 768px) {
  #news .news_post-pager_item.--prev img, #news .news_post-pager_item.--next img {
    width: 16px;
  }
}
#news .news_post-pager_item.--prev {
  transform: rotate(180deg);
}

#single .post {
  width: 1300px;
  margin: 150px auto 0;
}
@media (max-width: 1470px) {
  #single .post {
    width: 100%;
    margin: 35px 0;
  }
}
#single .post .post_item-head {
  padding: 0 60px 60px;
  border-bottom: 1px solid #DFE2DC;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #single .post .post_item-head {
    padding: 0;
    border-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 23px;
  }
}
#single .post .post_item-head_cat {
  display: inline-block;
  border-radius: 50px;
  font-size: 16px;
  padding: 5px 20px 7px 20px;
  background: #11B009;
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  #single .post .post_item-head_cat {
    order: 2;
    margin-bottom: 0;
    font-size: 10px;
  }
}
#single .post .post_item-head_ttl {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #single .post .post_item-head_ttl {
    width: 100%;
    order: 3;
    font-size: 18px;
    line-height: 1.7;
    margin-top: 17px;
    margin-bottom: 0;
  }
}
#single .post .post_item-head_date {
  color: #B7B7B7;
  display: block;
}
@media (max-width: 768px) {
  #single .post .post_item-head_date {
    order: 1;
    margin-right: 10px;
  }
}
#single .post .post_item-content {
  padding: 0 240px;
}
@media (max-width: 1200px) {
  #single .post .post_item-content {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  #single .post .post_item-content {
    padding: 0;
  }
}
#single .post .post_item-content * {
  margin-bottom: 50px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  #single .post .post_item-content * {
    margin-bottom: 30px;
  }
}
#single .post .post_item-content img {
  width: 100%;
}
#single .post .post_item-content p, #single .post .post_item-content div {
  font-size: 18px;
}
@media (max-width: 768px) {
  #single .post .post_item-content p, #single .post .post_item-content div {
    font-size: 14px;
    line-height: 1.9;
  }
}
#single .post .page_link {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
  margin-top: 125px;
}
@media (max-width: 768px) {
  #single .post .page_link {
    margin-top: 76px;
    -moz-column-gap: normal;
         column-gap: normal;
    justify-content: space-between;
  }
}
#single .post .page_link-btn {
  width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 18px;
  border: 2px solid #11B009;
  border-radius: 100px;
  color: #11B009;
  position: relative;
}
@media (max-width: 768px) {
  #single .post .page_link-btn {
    width: 45%;
    height: 45px;
    font-size: 13px;
  }
}
#single .post .page_link-btn:hover .page_link-btn-arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
#single .post .page_link-btn:hover .page_link-btn-arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}
#single .post .page_link-btn.--prev {
  padding-left: 66px;
}
@media (max-width: 768px) {
  #single .post .page_link-btn.--prev {
    text-align: center;
  }
}
#single .post .page_link-btn.--next {
  justify-content: flex-end;
  padding-right: 66px;
}
@media (max-width: 768px) {
  #single .post .page_link-btn.--next {
    text-align: center;
  }
}
#single .post .page_link-btn-arrow {
  overflow: hidden;
  position: absolute;
  top: 50%;
  bottom: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
}
@media (max-width: 768px) {
  #single .post .page_link-btn-arrow {
    width: 15px;
    height: 15px;
  }
}
#single .post .page_link-btn-arrow:before, #single .post .page_link-btn-arrow:after {
  content: "→";
  position: absolute;
  top: -1px;
  right: 0;
  color: #11B009;
  font-size: 25px;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
@media (max-width: 768px) {
  #single .post .page_link-btn-arrow:before, #single .post .page_link-btn-arrow:after {
    font-size: 15px;
  }
}
#single .post .page_link-btn-arrow:after {
  transform: translateX(-100%);
}
#single .post .page_link-btn-arrow.--prev {
  left: 20px;
}
@media (max-width: 768px) {
  #single .post .page_link-btn-arrow.--prev {
    left: 25px;
  }
}
#single .post .page_link-btn-arrow.--prev {
  transform: translateY(-50%) rotate(180deg);
}
#single .post .page_link-btn-arrow.--next {
  right: 20px;
}
@media (max-width: 768px) {
  #single .post .page_link-btn-arrow.--next {
    right: 25px;
  }
}

#contact .contact_head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  #contact .contact_head {
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 80px;
  }
}
#contact .contact_head-item_txt {
  font-size: 17px;
  line-height: 2;
  width: 490px;
}
@media (max-width: 768px) {
  #contact .contact_head-item_txt {
    width: 100%;
    order: 2;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #contact .contact_head-item_txt br {
    display: none;
  }
}
@media (max-width: 768px) {
  #contact .contact_head-item:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
@media (max-width: 768px) {
  #contact .contact_head-item:nth-child(2) {
    width: 100%;
    order: 1;
    margin: 30px 0 20px;
  }
}
#contact .contact_step {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  #contact .contact_step {
    margin-bottom: 40px;
  }
}
#contact .contact_step-item {
  width: 60px;
}
@media (max-width: 768px) {
  #contact .contact_step-item {
    width: 44px;
  }
}
#contact .contact_step-item + .contact_step-item {
  margin-left: 80px;
  position: relative;
}
@media (max-width: 768px) {
  #contact .contact_step-item + .contact_step-item {
    margin-left: 32px;
  }
}
#contact .contact_step-item + .contact_step-item:before {
  content: "";
  width: 80px;
  height: 1px;
  background: #C9C9C9;
  position: absolute;
  top: 31px;
  left: -80px;
}
@media (max-width: 768px) {
  #contact .contact_step-item + .contact_step-item:before {
    top: 21px;
    left: -32px;
    width: 32px;
  }
}
#contact .contact_step-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #contact .contact_step-icon {
    width: 44px;
    height: 44px;
  }
}
#contact .contact_step-icon.--input {
  background: #11B009;
}
#contact .contact_step-icon.--confirm {
  background: #C9C9C9;
}
@media (max-width: 768px) {
  #contact .contact_step-icon img {
    width: 22px;
    height: 22px;
  }
}
#contact .contact_step-txt {
  font-size: 17px;
  text-align: center;
  display: block;
}
@media (max-width: 768px) {
  #contact .contact_step-txt {
    font-size: 12px;
  }
}
#contact .contact_step-txt.--input {
  color: #11B009;
}
#contact .contact_step-txt.--confirm {
  color: #C9C9C9;
}
#contact .wpcf7 {
  width: 950px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #contact .wpcf7 {
    width: 100%;
  }
}
#contact .wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
#contact .wpcf7 .wpcf7-spinner {
  margin: 10px auto;
  display: block;
}
#contact .wpcf7 .wpcf7-custom-item-error {
  color: #FF2300;
  display: block;
  margin-top: 5px;
}
#contact .wpcf7 .wpcf7-response-output {
  display: block;
  margin-top: 30px;
  text-align: center;
  border: none;
}
#contact .wpcf7 .screen-reader-response {
  display: none;
}
#contact .wpcf7 .form_row {
  padding: 0 35px;
  display: flex;
  border-top: 1px solid #DFE2DC;
}
@media (max-width: 768px) {
  #contact .wpcf7 .form_row {
    padding: 30px 0;
    display: block;
  }
}
#contact .wpcf7 .form_row .form_item {
  padding: 40px 0;
}
@media (max-width: 768px) {
  #contact .wpcf7 .form_row .form_item {
    padding: 0;
  }
}
#contact .wpcf7 .form_row .form_item:nth-child(1) {
  width: 43%;
}
@media (max-width: 768px) {
  #contact .wpcf7 .form_row .form_item:nth-child(1) {
    width: 100%;
    margin-bottom: 13px;
  }
}
#contact .wpcf7 .form_row .form_item:nth-child(2) {
  width: 57%;
}
@media (max-width: 768px) {
  #contact .wpcf7 .form_row .form_item:nth-child(2) {
    width: 100%;
  }
}
#contact .wpcf7 .form_row .form_item.--mideum input {
  width: 80px;
  margin-right: 12px;
}
#contact .wpcf7 .form_row .form_item.--mideum span {
  font-size: 16px;
}
#contact .wpcf7 .form_row .form_item-date {
  display: flex;
  align-items: center;
}
#contact .wpcf7 .form_row .form_item-date + .form_item-date {
  margin-top: 30px;
}
#contact .wpcf7 .form_row .form_item-date .date {
  position: relative;
  margin-left: 25px;
  height: 45px;
}
#contact .wpcf7 .form_row .form_item-date .date:before {
  content: "";
  width: 33px;
  height: 26px;
  background: url(../../assets/images/contact/icon_date.png) no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 13px;
  z-index: 111;
}
#contact .wpcf7 .form_row .form_item-date input {
  width: 300px;
  padding: 13px 15px 13px 55px !important;
}
@media (max-width: 768px) {
  #contact .wpcf7 .form_row .form_item-date input {
    width: 100%;
  }
}
#contact .wpcf7 .form_row .form_item-date span {
  font-size: 16px;
}
@media (max-width: 768px) {
  #contact .wpcf7 .form_row .form_item-date span {
    width: 80px;
  }
}
#contact .wpcf7 .form_row .form_item-name {
  font-size: 16px;
  color: #11B009;
  letter-spacing: 2px;
  display: inline-block;
  margin-top: 13px;
}
#contact .wpcf7 .form_row .form_item-name.--required {
  position: relative;
}
#contact .wpcf7 .form_row .form_item-name.--required:before {
  content: "必須";
  width: 50px;
  height: 20px;
  background: #C65858;
  color: #fff;
  border-radius: 20px;
  font-size: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -65px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact .wpcf7 .form_row .form_item select, #contact .wpcf7 .form_row .form_item input, #contact .wpcf7 .form_row .form_item textarea {
  font-size: 13px;
  border: 1px solid #C6CBC1;
  border-radius: 10px;
  padding: 13px 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
  color: #575955;
}
#contact .wpcf7 .form_row .form_item select::-moz-placeholder, #contact .wpcf7 .form_row .form_item input::-moz-placeholder, #contact .wpcf7 .form_row .form_item textarea::-moz-placeholder {
  color: #C6CBC1;
}
#contact .wpcf7 .form_row .form_item select::placeholder, #contact .wpcf7 .form_row .form_item input::placeholder, #contact .wpcf7 .form_row .form_item textarea::placeholder {
  color: #C6CBC1;
}
#contact .wpcf7 .form_row .form_item .wpcf7-form-control-wrap[data-name=subject] {
  position: relative;
}
#contact .wpcf7 .form_row .form_item .wpcf7-form-control-wrap[data-name=subject]::before {
  content: "";
  width: 18px;
  height: 18px;
  border: solid #A3A3A3;
  border-width: 1px 1px 0 0;
  transform: rotate(135deg);
  position: absolute;
  right: 16px;
  top: -3px;
}
#contact .wpcf7 .form_row .form_item textarea {
  height: 300px;
  resize: vertical;
}
@media (max-width: 768px) {
  #contact .wpcf7 .form_row .form_item textarea {
    height: 230px;
  }
}
#contact .wpcf7 .form_row .att_txt {
  font-size: 17px;
  color: #FF1A00;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #contact .wpcf7 .form_row .att_txt {
    font-size: 13px;
    margin-top: 40px;
    line-height: 1.5;
  }
}
#contact .wpcf7 .form_row .privacy_check {
  padding: 40px 0;
  width: 100%;
  line-height: 1.7;
}
@media (max-width: 768px) {
  #contact .wpcf7 .form_row .privacy_check {
    padding: 0;
  }
}
#contact .wpcf7 .form_row .privacy_check-txt {
  font-size: 18px;
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  #contact .wpcf7 .form_row .privacy_check-txt {
    font-size: 12px;
    margin-bottom: 40px;
  }
}
#contact .wpcf7 .form_row .privacy_check-txt a {
  color: #11B009;
  text-decoration: underline;
  letter-spacing: 3px;
}
#contact .wpcf7 .form_row .privacy_check-txt .--note {
  color: #FF2300;
  margin-top: 26px;
  line-height: 1.7;
}
#contact .wpcf7 .form_row .privacy_check-btn {
  text-align: center;
}
#contact .wpcf7 .form_row .privacy_check-btn label {
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact .wpcf7 .form_row .privacy_check-btn label input[type=checkbox] {
  margin: 0;
  border: 1px solid #575955;
  width: 24px;
  height: 24px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  position: relative;
}
#contact .wpcf7 .form_row .privacy_check-btn label input[type=checkbox]:checked {
  background: #11B009;
  border: 1px solid #11B009;
}
#contact .wpcf7 .form_row .privacy_check-btn label input[type=checkbox]:checked:before {
  content: "";
  display: block;
  width: 7px;
  height: 14px;
  border: solid #fff;
  border-width: 0 5px 5px 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  transform: rotate(45deg);
}
#contact .wpcf7 .form_row .privacy_check-btn label .wpcf7-list-item-label {
  margin-left: 15px;
  font-size: 18px;
}
@media (max-width: 768px) {
  #contact .wpcf7 .form_row .privacy_check-btn label .wpcf7-list-item-label {
    font-size: 12px;
  }
}
#contact .wpcf7 .submit {
  text-align: center;
}
#contact .wpcf7 .submit .btn_arrow {
  margin: 0 30px;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  #contact .wpcf7 .submit .btn_arrow {
    margin: 0;
    width: 160px;
  }
}
@media (max-width: 768px) {
  #contact .wpcf7 .submit .btn_arrow .s_link-btn {
    font-size: 13px;
  }
}
#contact .wpcf7 .submit .btn_arrow:before {
  content: "→";
  position: absolute;
  top: 17px;
  right: 30px;
  font-size: 25px;
  color: #fff;
  z-index: 111;
}
@media (max-width: 768px) {
  #contact .wpcf7 .submit .btn_arrow:before {
    top: 15px;
    right: 26px;
    font-size: 18px;
  }
}
#contact .wpcf7 .submit .btn_arrow:hover:before {
  animation: rightArrow 0.5s;
}
#contact .wpcf7 .submit .btn_arrow.--correction {
  color: #575955;
  background: none;
}
#contact .wpcf7 .submit .btn_arrow.--correction::before {
  right: auto;
  left: 30px;
  color: #575955;
  transform: rotate(180deg);
}
#contact .wpcf7 .submit .btn_arrow.--correction:hover:before {
  animation: leftArrow 0.5s;
}
#contact .wpcf7 .submit .btn_arrow.--send .s_link-btn {
  color: #fff;
  background: linear-gradient(90deg, rgb(39, 167, 57) 0%, rgb(48, 203, 70) 100%);
}
#contact .wpcf7 .submit .btn_arrow.--confirm::before {
  color: #11B009;
}
@media (max-width: 768px) {
  #contact .wpcf7 .submit .btn_arrow.--confirm .s_link-btn {
    display: block;
    width: 100%;
    font-size: 14px;
    text-align: left;
    padding-left: 36px;
  }
}
#contact .wpcf7 .submit .btn_arrow.--confirm .s_link-btn {
  background: none;
}
#contact .wpcf7 .wpcf7-spinner {
  display: none;
}
#contact .wpcf7 .wpcf7-submit {
  /* &.is-active{
    background: #A3A3A3;
    color: #fff;
    border: none;
  } */
}

#confirm .contact_head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  #confirm .contact_head {
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 80px;
  }
}
#confirm .contact_head-item_txt {
  font-size: 17px;
  line-height: 2;
  width: 490px;
}
@media (max-width: 768px) {
  #confirm .contact_head-item_txt {
    width: 100%;
    order: 2;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #confirm .contact_head-item_txt br {
    display: none;
  }
}
@media (max-width: 768px) {
  #confirm .contact_head-item:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
@media (max-width: 768px) {
  #confirm .contact_head-item:nth-child(2) {
    width: 100%;
    order: 1;
    margin: 30px 0 20px;
  }
}
#confirm .contact_step {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  #confirm .contact_step {
    margin-bottom: 40px;
  }
}
#confirm .contact_step-item {
  width: 60px;
}
@media (max-width: 768px) {
  #confirm .contact_step-item {
    width: 44px;
  }
}
#confirm .contact_step-item + .contact_step-item {
  margin-left: 80px;
  position: relative;
}
@media (max-width: 768px) {
  #confirm .contact_step-item + .contact_step-item {
    margin-left: 32px;
  }
}
#confirm .contact_step-item + .contact_step-item:before {
  content: "";
  width: 80px;
  height: 1px;
  background: #BCEEB8;
  position: absolute;
  top: 31px;
  left: -80px;
}
@media (max-width: 768px) {
  #confirm .contact_step-item + .contact_step-item:before {
    top: 21px;
    left: -32px;
    width: 32px;
  }
}
#confirm .contact_step-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #confirm .contact_step-icon {
    width: 44px;
    height: 44px;
  }
}
#confirm .contact_step-icon.--input {
  background: #BCEEB8;
}
#confirm .contact_step-icon.--confirm {
  background: #11B009;
}
@media (max-width: 768px) {
  #confirm .contact_step-icon img {
    width: 22px;
    height: 22px;
  }
}
#confirm .contact_step-txt {
  font-size: 17px;
  text-align: center;
  display: block;
}
@media (max-width: 768px) {
  #confirm .contact_step-txt {
    font-size: 12px;
  }
}
#confirm .contact_step-txt.--input {
  color: #BCEEB8;
}
#confirm .contact_step-txt.--confirm {
  color: #11B009;
}
#confirm .form {
  width: 950px;
  margin: 0 auto;
  border-top: 1px solid #DFE2DC;
}
@media (max-width: 768px) {
  #confirm .form {
    width: 100%;
  }
}
#confirm .form .form_row {
  padding: 0 35px;
  display: flex;
  border-bottom: 1px solid #DFE2DC;
}
@media (max-width: 768px) {
  #confirm .form .form_row {
    padding: 30px 0;
    display: block;
  }
}
#confirm .form .form_row .--flex {
  display: flex;
  align-items: center;
  font-size: 19px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (max-width: 768px) {
  #confirm .form .form_row .--flex span {
    font-size: 16px;
  }
}
#confirm .form .form_row .form_item {
  padding: 40px 0;
}
@media (max-width: 768px) {
  #confirm .form .form_row .form_item {
    padding: 0;
  }
}
#confirm .form .form_row .form_item:nth-child(1) {
  width: 43%;
}
@media (max-width: 768px) {
  #confirm .form .form_row .form_item:nth-child(1) {
    width: 100%;
    margin-bottom: 13px;
  }
}
#confirm .form .form_row .form_item:nth-child(2) {
  width: 57%;
}
@media (max-width: 768px) {
  #confirm .form .form_row .form_item:nth-child(2) {
    width: 100%;
  }
}
#confirm .form .form_row .form_item-name {
  font-size: 16px;
  color: #11B009;
  letter-spacing: 2px;
  display: inline-block;
}
#confirm .form .form_row .form_item-name.--required {
  position: relative;
}
#confirm .form .form_row .form_item-name.--required:before {
  content: "必須";
  width: 50px;
  height: 20px;
  background: #C65858;
  color: #fff;
  border-radius: 20px;
  font-size: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -65px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#confirm .form .form_row .form_item .form_value {
  font-size: 19px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  #confirm .form .form_row .form_item .form_value {
    padding-left: 25px;
    font-size: 14px;
    letter-spacing: 3px;
  }
}
#confirm .form .form_row .form_item .form_value + .form_value {
  margin-top: 30px;
}
#confirm .form .submit {
  margin-top: 180px;
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  #confirm .form .submit {
    margin-top: 50px;
    justify-content: space-between;
  }
}
#confirm .form .submit .btn_arrow {
  margin: 0 30px;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  #confirm .form .submit .btn_arrow {
    margin: 0;
    width: 150px;
  }
}
@media (max-width: 768px) {
  #confirm .form .submit .btn_arrow .s_link-btn {
    margin: 0;
    width: 100%;
    font-size: 13px;
  }
}
#confirm .form .submit .btn_arrow:before {
  content: "→";
  position: absolute;
  top: 30%;
  right: 30px;
  font-size: 25px;
  color: #fff;
  z-index: 111;
}
@media (max-width: 768px) {
  #confirm .form .submit .btn_arrow:before {
    top: 16px;
    right: 26px;
    font-size: 18px;
  }
}
#confirm .form .submit .btn_arrow:hover:before {
  animation: rightArrow 0.5s;
}
#confirm .form .submit .btn_arrow.--correction {
  color: #575955;
  background: none;
}
#confirm .form .submit .btn_arrow.--correction::before {
  right: auto;
  left: 30px;
  color: #575955;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  #confirm .form .submit .btn_arrow.--correction::before {
    top: 14px;
    left: 26px;
  }
}
#confirm .form .submit .btn_arrow.--correction:hover:before {
  animation: leftArrow 0.5s;
}
#confirm .form .submit .btn_arrow.--correction .s_link-btn {
  background: none;
}
@media (max-width: 768px) {
  #confirm .form .submit .btn_arrow.--correction .s_link-btn {
    display: block;
    width: 100%;
    font-size: 14px;
    text-align: right;
    padding-right: 36px;
  }
}
#confirm .form .submit .btn_arrow.--send .s_link-btn {
  color: #fff;
  background: linear-gradient(90deg, rgb(39, 167, 57) 0%, rgb(48, 203, 70) 100%);
}
@media (max-width: 768px) {
  #confirm .form .submit .btn_arrow.--send .s_link-btn {
    display: block;
    width: 100%;
    font-size: 14px;
    text-align: left;
    padding-left: 36px;
  }
}
#confirm .form .wpcf7-spinner {
  display: none;
}

#thanks .sec_thanks .sec_inner {
  padding: 100px 0 0;
}
@media (max-width: 768px) {
  #thanks .sec_thanks .sec_inner {
    padding: 0 10%;
    margin-top: 50px;
  }
}
#thanks .sec_thanks .sec_thanks-txt {
  width: 950px;
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
  border: solid #DFE2DC;
  border-width: 1px 0;
}
@media (max-width: 768px) {
  #thanks .sec_thanks .sec_thanks-txt {
    width: 100%;
    padding: 50px 0;
  }
}
#thanks .sec_thanks .sec_thanks-txt strong {
  display: block;
  font-size: 30px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  #thanks .sec_thanks .sec_thanks-txt strong {
    font-size: 24px;
  }
}
#thanks .sec_thanks .sec_thanks-txt p {
  font-size: 20px;
}
@media (max-width: 768px) {
  #thanks .sec_thanks .sec_thanks-txt p {
    font-size: 14px;
    line-height: 1.7;
  }
}