@charset "UTF-8";
/*==============================================================================
# 設定
==============================================================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

.overflow {
  overflow-x: hidden;
}

.inner {
  margin-inline: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 767.9px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.is-sp {
  display: none;
}
@media (max-width: 767.9px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: none;
}
@media (min-width: 1280px) {
  .is-pc {
    display: block;
  }
}

/*==============================================================================
# 共通
==============================================================================*/
.section__title {
  font-size: 48px;
  color: #043d78;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1279px) {
  .section__title {
    font-size: 36px;
  }
}

/*==============================================================================
# header
==============================================================================*/
.header {
  background-color: #fff;
  height: 80px;
  width: 100%;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(4, 61, 120, 0.2);
  box-shadow: 0px 2px 3px 0px rgba(4, 61, 120, 0.2);
  position: fixed;
  z-index: 130;
}

.header__inner {
  max-width: 1260px;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 80px;
  margin-inline: auto;
  width: 100%;
}
@media (max-width: 767.9px) {
  .header__inner {
    padding: 0 20px;
    max-width: 100%;
  }
}

.header-logo {
  width: 240px;
  height: auto;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.header-logo:hover {
  opacity: 0.6;
}

.header-nav {
  display: none;
}
@media (min-width: 1280px) {
  .header-nav {
    display: block;
  }
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.header-nav__item {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.header-nav__item:hover {
  opacity: 0.6;
}

.header-nav__link {
  font-weight: 700;
}

.header-lang-button {
  display: none;
}
@media (min-width: 1280px) {
  .header-lang-button {
    display: block;
  }
}

.header-lang-button__link {
  color: #6aaa97;
  font-size: 18px;
  font-weight: 500;
  width: 145px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid #6aaa97;
  text-align: center;
  line-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background-color: #fff;
}
.header-lang-button__link:hover {
  color: #fff;
  background-color: #6aaa97;
}

.header-other-site-button {
  display: none;
}
@media (min-width: 1280px) {
  .header-other-site-button {
    display: block;
  }
}

.header-other-site-button__link {
  display: block;
  max-width: 300px;
  background-color: #ff8a00;
  color: #fff;
  padding: 16px 40px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  border: 1px solid #ff8a00;
}
.header-other-site-button__link:hover {
  color: #ff8a00;
  background-color: #fff;
}

/*==============================================================================
# drawer
==============================================================================*/
.drawer-icon {
  cursor: pointer;
  position: relative;
  z-index: 101;
  height: 21px;
  width: 30px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-icon:hover {
  opacity: 0.6;
}
.drawer-icon.is-checked {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10px;
}

button {
  cursor: pointer;
}

@media (min-width: 1280px) {
  .header-open {
    display: none;
  }
}

.drawer-icon__bar {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  position: absolute;
  border-radius: 4px;
  left: 0;
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.bar2 {
  top: 8px;
}

.bar3 {
  top: 16px;
}

button {
  cursor: pointer;
}

.drawer-content {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: #fff;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 166px 40px 40px;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition:
    transform 0.3s linear,
    -webkit-transform 0.3s linear;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
}
@media (max-width: 1279px) {
  .drawer-content.is-checked {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.48px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-content__link:hover {
  opacity: 0.6;
}

.drawer-lang-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 28px;
}

.drawer-other-site-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 28px;
}

/*==============================================================================
# fv
==============================================================================*/
.fv {
  background: url(../assets/img/fv.png) no-repeat center left/cover;
  width: 100%;
  height: 680px;
  font-family: "Noto Serif JP";
  position: relative;
}
@media (max-width: 767.9px) {
  .fv {
    height: 550px;
  }
}

.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  content: "";
  top: 50%;
  left: 9%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 767.9px) {
  .fv__inner {
    left: 15px;
    width: calc(100% - 30px);
  }
}

.fv__inner--en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  content: "";
  left: 4%;
  bottom: 3%;
}
@media (max-width: 767.9px) {
  .fv__inner--en {
    left: 15px;
    width: calc(100% - 30px);
  }
}

.fv__title {
  font-size: 48px;
  background-color: #fff;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767.9px) {
  .fv__title {
    font-size: 32px;
  }
}
.fv__title span {
  background: -webkit-gradient(linear, left top, right top, from(#043d78), to(#6aaa97));
  background: linear-gradient(90deg, #043d78 0%, #6aaa97 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.fv__lead {
  font-size: 20px;
  padding: 10px 14px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767.9px) {
  .fv__lead {
    font-size: 16px;
  }
}
.fv__lead span {
  font-weight: 600;
}

/*==============================================================================
# machine
==============================================================================*/
.machine-images {
  background-color: #e5f2ee;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 767.9px) {
  .machine-images {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.machine-images__inner {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 767.9px) {
  .machine-images__inner {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.machine-images__text {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 767.9px) {
  .machine-images__text {
    font-size: 20px;
  }
}

.machine-images__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  max-width: 1040px;
  margin-inline: auto;
}
@media (max-width: 767.9px) {
  .machine-images__image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.machine-images__image img {
  max-width: 340px;
  margin-inline: auto;
  width: 33.33333%;
}
@media (max-width: 767.9px) {
  .machine-images__image img {
    width: 100%;
  }
}

/*==============================================================================
# network-portfolio
==============================================================================*/
.network-portfolio {
  padding-top: 80px;
  padding-bottom: 100px;
  width: 100%;
  position: relative;
}
.network-portfolio::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #e5f2ee;
  -webkit-transform: scaleY(1.3) perspective(0.8em) rotateX(2deg);
  transform: scaleY(1.3) perspective(0.8em) rotateX(2deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  width: 58vw;
}
@media (max-width: 767.9px) {
  .network-portfolio {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.network-portfolio__inner {
  max-width: 1040px;
}

.network-portfolio__text {
  color: #043d78;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767.9px) {
  .network-portfolio__text {
    font-size: 24px;
  }
}

.network-portfolio__img {
  margin-top: 60px;
}

/*==============================================================================
# performance
==============================================================================*/
.performance {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
}
.performance::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #e5f2ee;
  -webkit-transform: scaleY(1.3) perspective(0.8em) rotateX(2deg);
  transform: scaleY(1.3) perspective(0.8em) rotateX(2deg);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  width: 58vw;
}
@media (max-width: 767.9px) {
  .performance {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.performance__text {
  font-size: 18px;
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.performance__img {
  max-width: 1040px;
  margin-inline: auto;
  width: 100%;
}

.performance__img--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3vw;
}
@media (min-width: 1280px) {
  .performance__img--sp {
    display: none;
  }
}
.performance__img--sp img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin-inline: auto;
}

/*==============================================================================
# business
==============================================================================*/
.business {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
}
.business::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 260px;
  width: 66.38888vw;
  background-color: #e5f2ee;
  z-index: -1;
}
@media (max-width: 767.9px) {
  .business {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.business__text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
}

.business__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  margin-inline: auto;
  gap: 4vw;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767.9px) {
  .business__images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12vw;
  }
}
.business__images img {
  width: 48%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767.9px) {
  .business__images img {
    width: 100%;
  }
}

/*==============================================================================
# company
==============================================================================*/
.company {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 767.9px) {
  .company {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.company__table {
  max-width: 600px;
  margin-inline: auto;
  border-bottom: 1px solid #d9d9d9;
}

.company-table__row {
  position: relative;
}
.company-table__row::after {
  position: absolute;
  width: 100%;
  border-top: 1px solid #d9d9d9;
  content: "";
  left: 0;
  top: 0;
}

.company-table__head {
  font-weight: 700;
  width: 25%;
  text-align: start;
  padding: 10px 20px;
}

.company-table__data span {
  margin-left: 20px;
}

/*==============================================================================
# footer
==============================================================================*/
.footer {
  background-color: #043d78;
  padding: 40px;
}

.footer__inner {
  color: #fff;
  text-align: center;
}

.fade-in {
  opacity: 0;
  -webkit-transition-duration: 1200ms;
  transition-duration: 1200ms;
  -webkit-transition-property:
    opacity,
    -webkit-transform;
  transition-property:
    opacity,
    -webkit-transform;
  transition-property: opacity, transform;
  transition-property:
    opacity,
    transform,
    -webkit-transform;
}

.fade-in-up {
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}

.fade-in-down {
  -webkit-transform: translate(0, -150px);
  transform: translate(0, -150px);
}

.fade-in-left {
  -webkit-transform: translate(-150px, 0);
  transform: translate(-150px, 0);
}

.fade-in-right {
  -webkit-transform: translate(150px, 0);
  transform: translate(150px, 0);
}

.scroll-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* フォームcss */
.contact {
background: url(../assets/img/form-bg.jpg) no-repeat center center / cover;
  padding-block: 90px;
}

.contact__inner {
  padding-inline: 40px;
}
@media (max-width: 519.9px) {
  .contact__inner {
    padding-inline: 15px;
  }
}

.contact__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.contact__text {
  text-align: center;
  margin-top: 24px;
}

.contact__form {
  margin-top: 50px;
  max-width: 740px;
  margin-inline: auto;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 50px 70px 60px;
}
@media (max-width: 519.9px) {
  .contact__form {
    padding: 40px 15px 60px;
  }
}

.contact-table {
  max-width: 600px;
  margin-inline: auto;
}

.contact-item {
/*  display: -webkit-box;
  display: -ms-flexbox; */
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
	
}

.form-required {
  background: #ff4d42;
  color: #fff;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 12px;
}

.contact-body {
  margin-top: 4px;
}

.form-text {
  width: 100%;
  border-radius: 4px;
  padding: 10px 11px 9px;
  background: #F0F0F0;
  border: none;
}

.contact-scale:nth-child(n+2) {
  margin-left: 32px;
}

.contact-scale-text {
  position: relative;
  padding-left: 28px;
}
.contact-scale-text::before {
  width: 24px;
  height: 24px;
  border: 1px solid #c4c4c4;
  left: 0;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
}
.contact-scale-text::after {
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background: #144da0;
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0;
}

.form-any {
  background: #33b7af;
  color: #fff;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 12px;
}

.form-textarea {
  width: 100%;
  resize: none;
  height: 160px;
  border-radius: 4px;
  margin-top: 4px;
  padding: 10px 11px 9px;
	background: #F0F0F0;
	  border: none;
}

.contact__block {
  margin-top: 20px;
}

.contact-scale__radio {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.contact-scale__radio:checked + .contact-scale-text::after {
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #c4c4c4;
}

::-moz-placeholder {
  color: #c4c4c4;
}

:-ms-input-placeholder {
  color: #c4c4c4;
}

::-ms-input-placeholder {
  color: #c4c4c4;
}

::placeholder {
  color: #c4c4c4;
}

.contact__privacy {
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
}
@media (max-width: 519.9px) {
  .contact__privacy {
    font-size: 16px;
  }
}

.form-checkbox {
  cursor: pointer;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  position: relative;
  padding-left: 40px;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 2px solid #c4c4c4;
  background: #fff;
}
.form-checkbox__text::after {
  width: 32.51px;
  height: 23.755px;
  left: -1px;
  background: url(../assets/img/form-check.png) no-repeat center center/contain;
  opacity: 0;
}

.contact__button {
  text-align: center;
  margin-top: 40px;
}

.contact__submit-button {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: #494949;
  min-width: 240px;
  font-weight: 500;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 10px 35px;
	border: none;
	color: #fff;
	cursor: pointer;
}
.contact__submit-button:hover {
  opacity: 0.7;
}

input:focus-visible {
  border: 2px solid #6AAA97;
  outline: none; /* フォーカス時の枠線を削除 */
	padding: 8px 9px 7px;
}

textarea:focus-visible {
  border: 2px solid #6AAA97;
  outline: none; /* フォーカス時の枠線を削除 */
	padding: 8px 9px 7px;
}
.wpcf7-form-control-wrap {
	width: 100%;
}
div.wpcf7 .wpcf7-spinner {
    display: none !important;
}

/* チェックボックス */
.wpcf7-form-control-wrap {
  display: block;
}
span.wpcf7-list-item {
  margin: 0 30px 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}
.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
}
input[type="checkbox"] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
input[type="checkbox"] + .wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #c4c4c4;
  content: "";
  display: inline-block;
  height: 24px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 24px;
  margin-block: auto;
	background: #fff;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: '';
  width: 23px;
  height: 9px;
  border-left: 3px solid red;
  border-bottom: 3px solid red;
  transform: rotate(-45deg);
  position: absolute;
  top: 9px;
 left: 0;
}
.wpcf7-list-item-label {
	font-weight: 500;
}
.wpcf7 form .wpcf7-response-output {
	border: none;
	text-align: center;
    font-weight: 500;
}
.contact-item span {
	font-size: 12px;
	font-weight: 500;
}

/* プライバシーポリシー */
.privacy-policy {
	padding-top: 120px;
	padding-bottom: 100px;
}
.privacy-policy__inner {
	max-width: 940px;
	margin-inline: auto;
	width: 86%;
}
.privacy-policy__head-text {
	text-align: center;
}
.privacy-policy__title {
	font-size: 24px;
	font-weight: 700;
}
.privacy-policy__desc {
	margin-top: 20px;
}
.privacy-policy__body {
	margin-top: 32px;
}
.privacy-policy__box:nth-child(n + 2) {
	margin-top: 20px;
}
.privacy-policy__sec-title {
	font-size: 18px;
	font-weight: 700;
	padding-left: 20px;
	position: relative;
}
.privacy-policy__sec-title::before {
	position: absolute;
	content: "";
	width: 3px;
	height: 80%;
	background: #6aaa97;
	top: 50%;
	left: 0;
	transform: translatey(-50%);
}
.privacy-policy__text {
	margin-top: 12px;
}
@media (min-width: 768px) {
.privacy-policy {
	padding-top: 160px;
	padding-bottom: 120px;
}
.privacy-policy__head-text {
}
.privacy-policy__title {
	font-size: 28px;
}
.privacy-policy__body {
	margin-top: 40px;
}
.privacy-policy__box:nth-child(n + 2) {
	margin-top: 28px;
}
.privacy-policy__sec-title {
	font-size: 20px;
}
}
.privacy-policy__list {
	margin-block: 20px;
	list-style-type: disc;
	margin-left: 20px;
}
.footer a {
	margin-bottom: 20px;
	display: block;
	transition: all 0.3s ease 0s;
	font-weight: 600;
}
.footer a:hover {
	opacity: 0.7;
}

/* 240916サンクスページ */
.contact-thanks {
	margin-top: 200px;
	margin-bottom: 120px;
}
.contact-thanks__inner {
	width: 81.94444%;
	margin-inline: auto;
}
.contact-thanks__title {
	font-size: 24px;
	font-weight: 700;
	color: #043d78;
	text-align: center;
}
.contact-thanks__text {
	margin-top: 40px;
	text-align: center;
}
.contact-thanks__text strong {
	margin-block: 52px;
}
@media (min-width: 768px) {
.contact-thanks__title {
	font-size: 32px;
}
}
.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}