@charset "UTF-8";
html {
  font-size: 0.694444vw;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1441px) {
  html {
    font-size: 10px !important;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.333333vw !important;
  }
}

body {
  color: var(--font-color);
  font-family: var(--jp-primary-font);
  line-height: 1;
  position: relative;
}

body.is-fixed {
  overflow: hidden;
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
  word-break: break-all;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

li {
  list-style: none;
}

:root {
  --jp-primary-font: "Noto Serif JP", serif;
  --jp-secondary-font: "Noto Sans JP", sans-serif;
  --jp-tertiary-font: ;
  --jp-quaternary-font: ;
  --en-primary-font: "Poppins", sans-serif;
  --en-secondary-font: ;
  --en-tertiary-font: ;
  --en-quaternary-font: "";
  --gray: #969696;
  --green: #114c3b;
  --beige: #886c46;
  --lightgray: #dfdfdf;
  --lightgreen: #cfdbd8;
  --lightbeige: #e1dad1;
  --bg-color: #99CC0C;
  --font-color: #2d2d2d;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  font-family: var(--jp-secondary-font);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .header {
    z-index: 11;
  }
}

.scrolled {
  background-color: #fff;
}

.scrolled .header-nav-link {
  color: var(--font-color);
}

.scrolled .header__logo-black {
  opacity: 1;
  visibility: visible;
}

.scrolled .sp-menu-btn-open line {
  stroke: var(--font-color);
}
.scrolled .sp-menu-btn-open text {
  fill: var(--font-color);
}

.header-inner {
  position: relative;
}

.header-wrap {
  overflow: hidden;
  position: relative;
  padding: 2.3rem 4.8rem;
  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;
}
@media screen and (max-width: 750px) {
  .header-wrap {
    padding: 18px 4rem 15px;
  }
}

.header-border {
  position: absolute;
  bottom: 0;
  left: 1.5%;
  width: 97%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__logo {
  width: 24rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .header__logo {
    width: 40rem;
  }
}
.header__logo img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__logo-black {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
}

.header-nav-link {
  width: 100%;
  height: 100%;
  font-size: max(1.6rem, 10px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  padding-bottom: 5.5px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-nav-contact {
  background-color: var(--green);
  border-radius: 32px;
  border: 2px solid var(--green);
  margin-left: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-nav-contact a {
  padding: 2rem 4.5rem 2rem 3.5rem;
  font-size: max(1.6rem, 12px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.header-nav-contact a svg {
  width: max(1.9rem, 14px);
}
.header-nav-contact a svg path {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

@media (hover: hover) {
  .header-nav-contact:hover {
    background-color: #fff;
  }
  .header-nav-contact:hover a {
    color: var(--green);
  }
  .header-nav-contact:hover svg path {
    stroke: var(--green);
    fill: var(--green);
  }
}
.header-nav-link-hover-border-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #99cc0c;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-nav-link-hover-border-2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  display: block;
  background-color: #99cc0c;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: translate(-50%, 100%) scaleY(0);
          transform: translate(-50%, 100%) scaleY(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-nav-link-sub {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  left: 1.5%;
  width: 97%;
  background: #fff;
  z-index: 100;
  padding: 23px 2.4rem 42px 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #99cc0c;
  border-left: 1px solid #99cc0c;
  border-right: 1px solid #99cc0c;
}

.header-nav-link-sub-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.3rem;
  margin-top: 13px;
}

.header-nav-link-sub-box-txt {
  font-size: max(2.4rem, 18px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #99cc0c;
}

.header-nav-link-sub-box-icon {
  width: 28px;
}

.header-nav-link-sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  width: 69%;
}

.header-nav-link-sub-item-link-txt {
  font-size: max(1.6rem, 13px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green);
  display: block;
  margin-top: 13px;
}

.is-hover .header-nav-link-sub {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .header-nav-link:hover {
    color: #99cc0c;
  }
  .header-nav-link:hover .header-nav-link-hover-border-1 {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .header-nav-link:hover .header-nav-link-hover-border-2 {
    -webkit-transform: translate(-50%, 100%) scaleY(1);
            transform: translate(-50%, 100%) scaleY(1);
  }
}
.is-hover .header-border {
  background-color: #99cc0c;
}

.sp-nav-wrap {
  overflow-y: auto;
  position: fixed;
  top: 0;
  z-index: 100;
  right: 0;
  width: 100%;
  height: 100vh;
  -webkit-transition: 600ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: 600ms cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
}

.sp-nav {
  z-index: 100;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 64px 4rem 240px;
  background-color: #fff;
}

.sp-menu-btn-open {
  position: absolute;
  top: 26px;
  right: 4rem;
  width: 10rem;
  cursor: pointer;
}

.sp-nav-logo {
  width: 160px;
  display: block;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
}

.sp-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.sp-nav-link {
  padding: 40px 0;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 3.2rem;
  font-weight: 500;
  font-family: var(--jp-secondary-font);
  letter-spacing: 0.08em;
  color: var(--green);
  position: relative;
  background-color: #ebf5ce;
  cursor: pointer;
}

.sp-nav-link-arrow {
  position: absolute;
  right: 4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.8rem;
}

.sp-nav-link-sub-item-link {
  background-color: #fff;
  border-bottom: 1px solid #99cc0c;
  padding: 40px 0;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 3.2rem;
  font-weight: 500;
  font-family: var(--jp-secondary-font);
  letter-spacing: 0.08em;
  color: var(--green);
}

.sp-nav-link-sub-list {
  display: none;
}

.sp-nav-link-line {
  position: absolute;
  display: block;
  background-color: var(--green);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sp-nav-link-line-1 {
  position: absolute;
  right: 4rem;
  display: block;
  width: 2.8rem;
  height: 2px;
}

.sp-nav-link-line-2 {
  position: absolute;
  display: block;
  right: calc(5.4rem - 1px);
  width: 2px;
  height: 2.8rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sp-nav-list-2 {
  margin-top: 20px;
  margin-bottom: 46px;
}

.sp-nav-list-2-item-link {
  padding: 25px 4rem;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  border-bottom: 1px solid var(--gray);
  width: 100%;
  height: 100%;
}

.sp-nav-btn {
  padding: 40px 0;
  width: calc(100% - 4rem);
  display: block;
  margin-left: auto;
  max-width: auto;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#99cc0c), to(#969696));
  background: linear-gradient(to right, #99cc0c, #969696);
  border-radius: 128px;
  text-align: center;
}

.is-active .sp-nav-wrap {
  opacity: 1;
  visibility: visible;
}

.tab-active .sp-nav-link-line-2 {
  opacity: 0;
}

body.is-fixed {
  overflow: hidden;
}

.footer {
  position: relative;
  z-index: 0;
  background-color: var(--bg-color);
  padding-top: 9.6rem;
  padding-bottom: 11rem;
  padding-left: 18rem;
  padding-right: 18rem;
}
@media screen and (max-width: 750px) {
  .footer {
    padding-top: 120px;
    padding-bottom: 24rem;
    padding-left: 8rem;
    padding-right: 8rem;
    background-color: transparent;
  }
}

.footer-bg {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 116.5%;
}
@media screen and (max-width: 750px) {
  .footer-bg {
    height: 100%;
  }
}

.footer-box {
  max-width: 1430px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer-box-content-logo {
  width: 24rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 750px) {
  .footer-box-content-logo {
    width: 48rem;
    margin-bottom: 48px;
  }
}

.footer-box-content-info {
  font-family: var(--jp-secondary-font);
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .footer-box-content-info {
    font-size: 3.2rem;
  }
}

.footer-box-content-copyright {
  margin-top: 12rem;
  color: var(--gray);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: var(--en-primary-font);
}
@media screen and (max-width: 750px) {
  .footer-box-content-copyright {
    font-size: 2.4rem;
    margin-top: 120px;
    white-space: nowrap;
    width: calc(100% + 4rem);
    margin-right: -4rem;
  }
}

.footer-wrap-en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: var(--en-primary-font);
  margin-bottom: 3rem;
  color: #fff;
}
.footer-wrap-en img {
  width: 17px;
}

.footer-wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
}

.footer-wrap-box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-wrap-box-content-list-item-link {
  font-family: var(--jp-secondary-font);
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 15px;
}

.footer-wrap-box-content-list-sub-item-link {
  font-family: var(--jp-secondary-font);
  font-size: max(1.6rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  margin-bottom: 15px;
  margin-left: 2.5rem;
}
.footer-wrap-box-content-list-sub-item-link span {
  display: block;
  width: 1px;
  height: 1.5rem;
  background-color: #fff;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.footer-box-content-contact {
  margin-top: 64px;
  background-color: var(--green);
  border-radius: 64px;
}
.footer-box-content-contact a {
  width: 100%;
  height: 100%;
  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;
  gap: 1.6rem;
  padding: 3.8rem 0;
}
.footer-box-content-contact svg {
  width: 3.5rem;
}

.footer-box-content-contact-txt {
  font-size: 3.2rem;
  font-family: var(--jp-secondary-font);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
}

.heading {
  position: relative;
  z-index: 0;
  padding: 18rem 0 20rem 8rem;
}
@media screen and (max-width: 750px) {
  .heading {
    padding: 20rem 0 20rem 6rem;
  }
}

.heading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.heading-bg img {
  width: 100%;
  height: 100%;
}

.heading-box__ttl {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .heading-box__ttl {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}

.heading-box__sub {
  font-size: 12rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--en-primary-font);
  color: var(--bg-color);
}
@media screen and (max-width: 750px) {
  .heading-box__sub {
    font-size: 10rem;
  }
}

.btn {
  position: relative;
  z-index: 0;
  width: 280px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  .btn {
    width: calc(100% - 8rem);
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #fff;
  }
}
.btn a {
  width: 100%;
  height: 100%;
  padding: 22px 0;
}
@media screen and (max-width: 750px) {
  .btn a {
    padding: 4rem 0;
  }
}

.btn-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (max-width: 750px) {
  .btn-arrow {
    right: 3rem;
    width: 2.8rem;
  }
}

.btn-arrow svg line,
.btn-arrow svg polygon {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.btn-txt {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--jp-secondary-font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  display: block;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .btn-txt {
    font-size: 3.2rem;
  }
}

.btn-bg {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#ebf5ce), to(#dfdfdf));
  background: linear-gradient(to right, #ebf5ce, #dfdfdf);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-gradation {
  border: none;
}
.btn-gradation .btn-txt {
  color: var(--green);
}

.btn-gradation-border {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn-bg-gradation {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#99cc0c), to(#969696));
  background: linear-gradient(to right, #99cc0c, #969696);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-txt--lightgreen {
  color: var(--bg-color) !important;
}

.btn-contact {
  width: 360px;
}
@media screen and (max-width: 750px) {
  .btn-contact {
    width: calc(100% - 8rem);
  }
}
.btn-contact a {
  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;
  gap: 21px;
  padding: 22px 0 18px;
}
@media screen and (max-width: 750px) {
  .btn-contact a {
    gap: 4.5rem;
    padding: 4rem 0 3.2rem;
  }
}

.btn-mail {
  width: 36px;
}
@media screen and (max-width: 750px) {
  .btn-mail {
    width: 7rem;
  }
}
.btn-mail path {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

@media (hover: hover) {
  .btn:hover .btn-bg {
    opacity: 1;
  }
  .btn:hover .btn-txt {
    color: var(--green);
  }
  .btn:hover .btn-arrow line {
    stroke: var(--green);
  }
  .btn:hover .btn-arrow polygon {
    fill: var(--green);
  }
  .btn-gradation:hover .btn-bg-gradation {
    opacity: 1;
  }
  .btn-gradation:hover .btn-txt {
    color: #fff;
  }
  .btn-gradation:hover .btn-arrow line {
    stroke: #fff;
  }
  .btn-gradation:hover .btn-arrow polygon {
    fill: #fff;
  }
  .btn-contact:hover .btn-txt--lightgreen {
    color: #fff !important;
  }
  .btn-contact:hover .btn-mail path {
    fill: #fff;
  }
}
.contact {
  background-color: var(--bg-color);
  padding-top: 96px;
}
.contact .top-contact-box-ttl {
  margin-top: 0;
}

.page-template-strengths .contact {
  padding-top: 120px;
}

.contact-ttl {
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--en-primary-font);
  color: var(--bg-color);
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .contact-ttl {
    font-size: 9.6rem;
    margin-bottom: 20px;
  }
}

.contact-box {
  background-color: #fff;
  border-radius: 64px 64px 0 0;
  padding-top: 96px;
  padding-bottom: 192px;
}
@media screen and (max-width: 750px) {
  .contact-box {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.lower-menu {
  position: fixed;
  top: 26.2rem;
  right: 0;
  background-color: var(--gray);
  z-index: 10;
}
@media screen and (max-width: 750px) {
  .lower-menu {
    top: 50%;
    display: none;
  }
}

.lower-menu-btn {
  width: 38px;
}
@media screen and (max-width: 750px) {
  .lower-menu-btn {
    width: 24px;
  }
}

.lower-menu-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: var(--gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
  padding: 50px 14px 0;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .lower-menu-box {
    padding: 50px 5px 0;
    gap: 30px;
  }
}

.lower-menu-box-ttl {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .lower-menu-box-ttl {
    font-size: 16px;
  }
}

.lower-menu-list-box {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-left: 16px;
  padding-right: 16px;
  background-color: var(--lightgray);
}

.lower-menu-list__item a {
  padding: 22px 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: var(--jp-secondary-font);
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (max-width: 750px) {
  .lower-menu-list__item a {
    font-size: 14px;
  }
}
.lower-menu-list__item a .lower-menu-list__item-en {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: var(--en-primary-font);
  margin-bottom: -3px;
}
@media screen and (max-width: 750px) {
  .lower-menu-list__item a .lower-menu-list__item-en {
    font-size: 10px;
  }
}

.lower-menu-list__item--mod {
  border-bottom: 1px solid var(--gray);
}

.lower-menu-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 9;
  display: none;
}

.is-open .lower-menu-list-box {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.is-open .lower-menu-bg {
  display: block;
}

.lower-menu--service .lower-menu-box {
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.lower-menu--service .lower-menu-btn {
  width: 35px;
}
.lower-menu--service .lower-menu-box-ttl {
  font-size: 18px;
}

.lower-menu--precision .lower-menu-box {
  padding-top: 40px;
  gap: 40px;
}

.lower-menu--parts .lower-menu-list__item a {
  padding-top: 80px;
  padding-bottom: 80px;
}

.float-menu {
  width: 100%;
  position: fixed;
  opacity: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.menu-fix {
  opacity: 1;
  visibility: visible;
}

.float-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.float-menu-list-item {
  width: 50%;
  cursor: pointer;
}

.float-menu-list-item-1 {
  background-color: var(--green);
}
.float-menu-list-item-1 a {
  padding: 10px 0;
  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;
  gap: 3px;
  width: 100%;
  height: 100%;
}
.float-menu-list-item-1 svg {
  width: 3.7rem;
}

.float-menu-list-item-2 {
  background-color: var(--gray);
  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;
  padding: 15px 0 0;
}
.float-menu-list-item-2 svg {
  width: 9.6rem;
}

.float-menu-list-item-txt {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: var(--jp-secondary-font);
  color: #fff;
}

.menu-fix {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
}

.float-menu--header {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  width: 100%;
}

.top-fv {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 750px) {
  .top-fv {
    height: inherit;
    padding: 63rem 4rem 1rem;
    overflow: hidden;
  }
}

.top-fv__img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .top-fv__img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.top-fv-ttl-wrap {
  position: absolute;
  bottom: -1.8rem;
  left: 3.3vw;
  z-index: 1;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .top-fv-ttl-wrap {
    position: static;
    margin-bottom: -2rem;
  }
}

.top-fv-ttl {
  font-size: 3.88vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.57;
}
@media screen and (max-width: 750px) {
  .top-fv-ttl {
    font-size: 6.4rem;
    line-height: 1.75;
  }
}

.top-fv-txt {
  font-family: var(--jp-secondary-font);
  font-size: 1.38vw;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-top: 4rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 750px) {
  .top-fv-txt {
    font-size: 3.6rem;
    margin-bottom: 7rem;
  }
}

.top-fv-ttl-en {
  font-family: var(--en-primary-font);
  -webkit-text-stroke-width: 0.8px;
  -webkit-text-stroke-color: #fff;
  font-size: 8.33vw;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: transparent;
}
@media screen and (max-width: 750px) {
  .top-fv-ttl-en {
    font-size: 9.18rem;
    margin-left: -4rem;
    width: calc(100% + 8rem);
  }
}

.top-company-outer {
  overflow: hidden;
}

.top-company {
  position: relative;
  z-index: 0;
  padding: min(16.25vw, 311px) 0 min(13.3vw, 255px) min(54.1vw, 1037px);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .top-company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 120px 4rem 44rem;
  }
}

.top-company-bg {
  position: absolute;
  width: 180%;
  z-index: -1;
  left: 50%;
  top: min(5.55vw, 106px);
  -webkit-transform: translateX(-58%);
          transform: translateX(-58%);
}
@media screen and (max-width: 750px) {
  .top-company-bg {
    width: 186%;
    top: auto;
    bottom: 120px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.top-company-slider-wrap {
  position: absolute;
  top: min(11.11vw, 211px);
  left: 0;
  width: min(48.4vw, 925px);
}
@media screen and (max-width: 750px) {
  .top-company-slider-wrap {
    position: relative;
    width: 100%;
    top: inherit;
    left: inherit;
  }
}

.top-company-slider-ttl {
  font-family: var(--en-primary-font);
  -webkit-text-stroke-width: 0.8px;
  -webkit-text-stroke-color: #fff;
  font-size: min(8.33vw, 159px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: transparent;
  position: absolute;
  z-index: 4;
  left: min(8.33vw, 159px);
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .top-company-slider-ttl {
    font-size: 9.2rem;
    left: 0;
  }
}

.top-company-slider {
  overflow: hidden;
  aspect-ratio: 696/1020;
}
@media screen and (max-width: 750px) {
  .top-company-slider {
    aspect-ratio: 670/582;
  }
}
.top-company-slider .swiper-wrapper {
  aspect-ratio: 696/1020;
}
@media screen and (max-width: 750px) {
  .top-company-slider .swiper-wrapper {
    aspect-ratio: 670/582;
  }
}

.swiper-2 .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  -webkit-transition: -webkit-clip-path 0.6s ease;
  transition: -webkit-clip-path 0.6s ease;
  transition: clip-path 0.6s ease;
  transition: clip-path 0.6s ease, -webkit-clip-path 0.6s ease;
  z-index: 1;
}
.swiper-2 .swiper-slide-active {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}
.swiper-2 .swiper-slide-prev {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.swiper-2 .swiper-slide-next {
  z-index: 3;
}

.top-company-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .top-company-box {
    width: 100%;
    margin-bottom: 90px;
  }
}

.top-company-en {
  font-family: var(--en-primary-font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bg-color);
  margin-bottom: min(2vw, 39px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (max-width: 750px) {
  .top-company-en {
    font-size: 3.2rem;
    margin-bottom: 60px;
  }
}
.top-company-en img {
  width: 17px;
}
@media screen and (max-width: 750px) {
  .top-company-en img {
    width: 3.4rem;
  }
}

.top-company-ttl {
  font-size: min(2.22vw, 42px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
  color: var(--green);
  margin-bottom: min(3.33vw, 63px);
}
@media screen and (max-width: 750px) {
  .top-company-ttl {
    font-size: 5.6rem;
    line-height: 1.71;
    margin-bottom: 60px;
  }
}

.top-company-txt {
  font-size: min(1.11vw, 21px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .top-company-txt {
    font-size: 3.2rem;
    line-height: 1.75;
  }
}

.top-company-txt--mod {
  margin-bottom: min(2vw, 39px);
}
@media screen and (max-width: 750px) {
  .top-company-txt--mod {
    margin-bottom: 40px;
  }
}

.top-company-box-img {
  margin-top: min(3.6vw, 68px);
}
@media screen and (max-width: 750px) {
  .top-company-box-img {
    width: 56rem;
    margin-left: auto;
    margin-right: -4rem;
    margin-top: 100px;
  }
}

.top-number {
  position: relative;
  z-index: 0;
  background-color: var(--bg-color);
  overflow: hidden;
}

.top-number-wrap {
  padding-top: 100px;
  padding-bottom: 120px;
  position: relative;
  z-index: 0;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .top-number-wrap {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}

.top-number-bg {
  position: absolute;
  width: 100%;
  z-index: -1;
}

.top-number-pattern {
  position: absolute;
  width: 78rem;
  z-index: -1;
}

.top-number-pattern-left {
  left: -41rem;
  top: -19rem;
}
@media screen and (max-width: 750px) {
  .top-number-pattern-left {
    left: -39rem;
    top: -13rem;
  }
}

.top-number-pattern-right {
  right: -26rem;
  bottom: -9rem;
}
@media screen and (max-width: 750px) {
  .top-number-pattern-right {
    right: -33rem;
    bottom: 38rem;
  }
}

.top-number-ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .top-number-ttl {
    font-size: 5.6rem;
  }
}
.top-number-ttl span {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: var(--en-primary-font);
  color: rgba(235, 245, 206, 0.3);
  font-size: 12rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .top-number-ttl span {
    top: 0;
    font-size: 8rem;
    -webkit-transform: translate(-50%, -60%);
            transform: translate(-50%, -60%);
  }
}

.top-number-subttl {
  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;
  gap: 4rem;
  color: #fff;
  margin-top: 110px;
  margin-bottom: 64px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .top-number-subttl {
    font-size: 4.8rem;
    margin-top: 96px;
    margin-bottom: 120px;
  }
}

.top-number-subttl-img {
  width: 50px;
}
@media screen and (max-width: 750px) {
  .top-number-subttl-img {
    width: 7rem;
  }
}

.top-number-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1280px;
  margin: 64px auto;
}

.top-number-list-item {
  width: 31.25%;
  background-color: #ebf5ce;
  border-top-right-radius: 36px;
}
@media screen and (max-width: 750px) {
  .top-number-list-item {
    border-top-right-radius: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.top-number-list-item h5 {
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--jp-secondary-font);
  letter-spacing: 0.08em;
  color: #fff;
  padding: 1.6rem 0 1.6rem 3.6rem;
  border-top-right-radius: 24px;
  background-color: var(--bg-color);
  margin-left: -3.2rem;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 750px) {
  .top-number-list-item h5 {
    font-size: 4rem;
    line-height: 1.6;
    padding: 0 0 0 4rem;
    margin-left: -4rem;
    margin-bottom: 4rem;
    aspect-ratio: 630/173;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-top-right-radius: 32px;
  }
}

.top-number-list-item-box {
  position: relative;
  z-index: 0;
  padding: 4rem 0rem 4.5rem 3.6rem;
}
@media screen and (max-width: 750px) {
  .top-number-list-item-box {
    padding: 7.4rem 20rem 7.4rem 4rem;
  }
}
.top-number-list-item-box h4 {
  white-space: nowrap;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: var(--jp-secondary-font);
  letter-spacing: 0.08em;
  color: var(--green);
}
@media screen and (max-width: 750px) {
  .top-number-list-item-box h4 {
    font-size: 4.8rem;
  }
}

.top-number-list-item-box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 10px;
}

.top-number-list-item-box-content-num {
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--en-primary-font);
  color: var(--green);
  display: block;
  margin-bottom: -1.7rem;
}
@media screen and (max-width: 750px) {
  .top-number-list-item-box-content-num {
    font-size: 16rem;
    margin-bottom: -3rem;
  }
}

.top-number-list-item-box-content-txt {
  font-size: 3.2rem;
  font-weight: 500;
  font-family: var(--jp-secondary-font);
  letter-spacing: 0.08em;
  color: var(--green);
}
@media screen and (max-width: 750px) {
  .top-number-list-item-box-content-txt {
    font-size: 6.4rem;
  }
}

.top-number-list-item-box-img {
  position: absolute;
  z-index: -1;
}

.top-number-list-item-1 .top-number-list-item-box-img {
  width: 11rem;
  bottom: 2rem;
  right: 2rem;
}
@media screen and (max-width: 750px) {
  .top-number-list-item-1 .top-number-list-item-box-img {
    width: 22rem;
    bottom: 6rem;
  }
}

.top-number-list-item-2 .top-number-list-item-box-img {
  width: 14.4rem;
  bottom: 1.5rem;
  right: 1.5rem;
}
@media screen and (max-width: 750px) {
  .top-number-list-item-2 .top-number-list-item-box-img {
    width: 28.8rem;
    bottom: 6rem;
  }
}

.top-number-list-item-3 .top-number-list-item-box-img {
  width: 14rem;
  bottom: 2rem;
  right: 2rem;
}
@media screen and (max-width: 750px) {
  .top-number-list-item-3 .top-number-list-item-box-img {
    width: 27rem;
    bottom: 6rem;
  }
}

.top-number-list-item-box-inner {
  padding: 3.2rem;
  background-color: #fff;
  border-top-right-radius: 36px;
}
@media screen and (max-width: 750px) {
  .top-number-list-item-box-inner {
    border-top-right-radius: 64px;
    padding: 6.4rem 4rem 4rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.top-number-list-item-txt {
  font-family: var(--jp-secondary-font);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .top-number-list-item-txt {
    font-size: 3.2rem;
  }
}

.swiper-pagination-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin-bottom: 120px;
}
.swiper-pagination-3 .swiper-pagination-bullet {
  display: grid;
  place-items: center;
  width: 5rem;
  height: inherit;
  aspect-ratio: 66/75;
  background: none;
  opacity: 1;
  border-radius: 0;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: var(--en-primary-font);
  color: #fff;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper-pagination-3 .swiper-pagination-bullet::before {
  content: "";
  display: block;
  border: 2px solid #fff;
  -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper-pagination-3 .swiper-pagination-bullet-active {
  color: var(--bg-color);
}
.swiper-pagination-3 .swiper-pagination-bullet-active::before {
  background-color: #fff;
}

.top-factory {
  margin-top: -18.75vw;
  overflow: hidden;
  padding-bottom: min(9.58vw, 183px);
}
@media screen and (max-width: 750px) {
  .top-factory {
    margin-top: -26rem;
    padding-bottom: 120px;
  }
}

.top-factory-outer {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.top-factory-pattern {
  position: absolute;
  z-index: -1;
  width: 78rem;
}

.top-factory-pattern-left {
  left: -26rem;
  bottom: -11rem;
}
@media screen and (max-width: 750px) {
  .top-factory-pattern-left {
    left: -43rem;
    bottom: 20rem;
  }
}

.top-factory-pattern-right {
  right: -26rem;
  top: 5rem;
}
@media screen and (max-width: 750px) {
  .top-factory-pattern-right {
    top: 28rem;
  }
}

.top-factory-inner {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -6.944vw;
}
@media screen and (max-width: 750px) {
  .top-factory-inner {
    margin-top: -18rem;
  }
}

.top-factory-ttl-en {
  width: 100%;
}

.top-factory-ttl {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-top: 24px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .top-factory-ttl {
    font-size: 5.6rem;
    margin-top: 13rem;
    margin-bottom: 80px;
  }
}

.top-factory-txt {
  font-family: var(--jp-secondary-font);
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .top-factory-txt {
    font-size: 3.2rem;
    margin-bottom: 100px;
    text-align: left;
  }
}

.top-factory-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 48px;
}
@media screen and (max-width: 750px) {
  .top-factory-list {
    row-gap: 64px;
  }
}

.top-factory-list-item {
  width: 48.2%;
}
@media screen and (max-width: 750px) {
  .top-factory-list-item {
    width: 100%;
  }
}

.top-factory-list-item-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 21px 0;
  background-color: var(--bg-color);
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .top-factory-list-item-ttl {
    font-size: 4.8rem;
    padding: 22px 0;
    margin-top: 24px;
  }
}

.top-factory-list-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .top-factory-list-2 {
    margin-top: 120px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.top-factory-list-2-item {
  width: 17.6%;
  position: relative;
}
@media screen and (max-width: 750px) {
  .top-factory-list-2-item {
    width: 100%;
  }
}

.top-factory-list-2-item-ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  background-color: var(--gray);
  border-bottom-right-radius: 20px;
  color: #fff;
  padding: 1.9rem 0 1.9rem 1.6rem;
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--jp-secondary-font);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .top-factory-list-2-item-ttl {
    border-bottom-right-radius: 25px;
    width: 83%;
    font-size: 4rem;
    padding: 3.5rem 0 3.5rem 4rem;
  }
}

.top-concept {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.top-concept-box {
  position: relative;
  padding: min(4.5vw, 73px) min(58.1vw, 1114px) min(4.5vw, 73px) 9.6rem;
  background: -webkit-gradient(linear, left top, right top, from(#ebf5ce), to(#dfdfdf));
  background: linear-gradient(to right, #ebf5ce, #dfdfdf);
  border-top-left-radius: 6.4rem;
  margin-left: 5.55vw;
}
@media screen and (max-width: 750px) {
  .top-concept-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 120px 8rem 120px 4rem;
    margin-left: 4rem;
  }
}

.top-concept-box-2 {
  background: -webkit-gradient(linear, right top, left top, from(#ebf5ce), to(#dfdfdf));
  background: linear-gradient(to left, #ebf5ce, #dfdfdf);
  padding: min(4.5vw, 73px) 9.6rem min(4.5vw, 73px) min(58.1vw, 1114px);
  border-top-right-radius: 6.4rem;
  border-top-left-radius: 0;
  margin-right: 5.55vw;
  margin-left: 0;
  margin-top: min(10vw, 191px);
}
@media screen and (max-width: 750px) {
  .top-concept-box-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 120px 4rem 120px 8rem;
    margin-right: 4rem;
    margin-left: 0;
    margin-right: 4rem;
    margin-top: 240px;
  }
}
@media screen and (max-width: 750px) {
  .top-concept-box-2 .top-concept-box-content {
    margin-left: 0;
  }
}
.top-concept-box-2 .top-concept-box-img {
  position: absolute;
  top: max(-5.5vw, -100px);
  left: 0;
  width: min(52.7vw, 1010px);
}
@media screen and (max-width: 750px) {
  .top-concept-box-2 .top-concept-box-img {
    position: relative;
    width: calc(100% + 8rem);
    top: auto;
    margin-right: 0;
    margin-left: -8rem;
  }
}
@media screen and (max-width: 750px) {
  .top-concept-box-2 .btn {
    width: calc(100% + 4rem) !important;
    margin-left: 0 !important;
    margin-right: -4rem !important;
  }
}

@media screen and (max-width: 750px) {
  .top-concept-box-content {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .top-concept-box-content .btn {
    width: calc(100% + 8rem);
    margin-left: -4rem;
    margin-right: -4rem;
  }
}

.top-concept-box-content-ttl-2 {
  font-size: min(2.2vw, 42.5px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: min(3.47vw, 66px);
}
@media screen and (max-width: 750px) {
  .top-concept-box-content-ttl-2 {
    font-size: 4.8rem;
    margin-bottom: 80px;
    line-height: 1.66;
    margin-bottom: 100px;
  }
}

.top-concept-box-content-ttl-3 {
  font-size: min(2.77vw, 53px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: min(2.77vw, 53px);
}
@media screen and (max-width: 750px) {
  .top-concept-box-content-ttl-3 {
    font-size: 5.6rem;
    margin-bottom: 65px;
  }
}

.top-concept-box-content-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: var(--bg-color);
  margin-bottom: min(2.77vw, 53px);
  font-family: var(--en-primary-font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .top-concept-box-content-ttl {
    font-size: 3.2rem;
    margin-bottom: 65px;
  }
}
.top-concept-box-content-ttl img {
  width: 17px;
}
@media screen and (max-width: 750px) {
  .top-concept-box-content-ttl img {
    width: 3.4rem;
  }
}

.top-concept-box-content__txt {
  font-size: min(1.11vw, 21px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 4rem;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .top-concept-box-content__txt {
    font-size: 3.2rem;
    margin-bottom: 80px;
  }
}

.top-concept-btn--mod {
  margin-bottom: 1.6rem;
}

.top-concept-box-img {
  position: absolute;
  top: max(-5.5vw, -100px);
  right: 0;
  width: min(52.7vw, 1010px);
}
@media screen and (max-width: 750px) {
  .top-concept-box-img {
    position: relative;
    width: calc(100% + 8rem);
    top: auto;
    margin-bottom: -240px;
    margin-right: -8rem;
    margin-top: 120px;
  }
}

.top-about {
  padding-top: 96px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-about {
    padding-top: 310px;
  }
}

.top-about-box {
  position: relative;
  z-index: 0;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 80px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .top-about-box {
    padding-bottom: 120px;
  }
}

.top-about-box-img {
  width: 100%;
  height: calc(100% - 1.8rem);
  position: absolute;
  top: 1.8rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .top-about-box-img {
    height: calc(100% - 1.3rem);
    top: 1.3rem;
  }
}

.top-about-box-ttl-en {
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--en-primary-font);
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .top-about-box-ttl-en {
    font-size: 9.6rem;
  }
}

.top-about-box-ttl {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .top-about-box-ttl {
    font-size: 5.6rem;
    margin-bottom: 75px;
  }
}

.top-about-box-ttl-2 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 64px;
}
@media screen and (max-width: 750px) {
  .top-about-box-ttl-2 {
    font-size: 4.8rem;
    line-height: 1.66;
    margin-bottom: 90px;
  }
}

.top-about-box-txt {
  font-size: max(1.6rem, 12px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-secondary-font);
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .top-about-box-txt {
    font-size: 3.2rem;
    margin-bottom: 80px;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-contact {
  position: relative;
  z-index: 0;
  margin-top: 32vw;
  padding-bottom: 96px;
}
@media screen and (max-width: 750px) {
  .top-contact {
    margin-top: 46rem;
    padding-bottom: 190px;
  }
}

.top-contact-bg {
  position: absolute;
  top: -38.8vw;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .top-contact-bg {
    top: -56rem;
  }
}
.top-contact-bg img {
  -webkit-transform: scale(1.17);
          transform: scale(1.17);
}

.top-contact-bg::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/contact-bg-color.png);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 750px) {
  .top-contact-bg::before {
    display: none;
  }
}

.top-contact-ttl-en {
  width: 100%;
}

.top-contact-box {
  margin-top: -6.944vw;
}
@media screen and (max-width: 750px) {
  .top-contact-box {
    margin-top: -10vw;
    background-color: #fff;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.top-contact-box-ttl {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-top: 24px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .top-contact-box-ttl {
    font-size: 5.6rem;
    margin-bottom: 75px;
  }
}

.top-contact-box-txt {
  font-size: max(1.6rem, 13px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-secondary-font);
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .top-contact-box-txt {
    font-size: 3.2rem;
    margin-bottom: 80px;
    text-align: left;
  }
}

.top-contact-tel {
  position: relative;
  z-index: 0;
  padding: 32px 0;
  width: 640px;
  margin: 32px auto 0;
}
@media screen and (max-width: 750px) {
  .top-contact-tel {
    padding: 6rem 0;
    margin-top: 64px;
    width: 100%;
  }
}

.top-contact-tel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.top-contact-tel-ttl {
  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;
  gap: 8px;
  margin-bottom: 32px;
}
@media screen and (max-width: 750px) {
  .top-contact-tel-ttl {
    margin-bottom: 6.4rem;
  }
}

.top-contact-tel-ttl-img {
  width: 17px;
  margin-bottom: -0.3rem;
}
@media screen and (max-width: 750px) {
  .top-contact-tel-ttl-img {
    width: 3.4rem;
    margin-bottom: -0.5rem;
  }
}

.top-contact-tel-ttl-txt {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--bg-color);
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .top-contact-tel-ttl-txt {
    font-size: 3.2rem;
  }
}

.top-contact-tel-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: var(--en-primary-font);
  margin-bottom: 15px;
  color: var(--green);
}
@media screen and (max-width: 750px) {
  .top-contact-tel-number {
    margin-bottom: 3.2rem;
  }
}
.top-contact-tel-number span {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .top-contact-tel-number span {
    font-size: 4.8rem;
  }
}
.top-contact-tel-number a {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .top-contact-tel-number a {
    font-size: 6.4rem;
  }
}

.top-contact-tel-time {
  font-family: var(--jp-secondary-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--green);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .top-contact-tel-time {
    font-size: 3.2rem;
  }
}

.top-recruit {
  padding-bottom: min(5.5vw, 110px);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .top-recruit {
    padding-bottom: 130px;
  }
}
@media screen and (max-width: 750px) {
  .top-recruit .btn {
    width: calc(100% - 4rem);
    margin-left: 0;
  }
}

.top-recruit-bg {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 100%;
  height: calc(100% - 2rem);
  z-index: -1;
  mix-blend-mode: multiply;
  opacity: 0.9;
  background: -webkit-gradient(linear, left top, right top, from(#2d2d2d), to(#99cc0c));
  background: linear-gradient(to right, #2d2d2d, #99cc0c);
}
@media screen and (max-width: 750px) {
  .top-recruit-bg {
    top: 1.5rem;
    height: calc(100% - 1.5rem);
    background: -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#99cc0c));
    background: linear-gradient(to bottom, #2d2d2d, #99cc0c);
  }
}

.top-recruit-box {
  max-width: 1080px;
  margin: 0 auto;
  color: #fff;
}

.top-recruit-box-ttl-en {
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--en-primary-font);
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .top-recruit-box-ttl-en {
    font-size: 9.6rem;
  }
}

.top-recruit-box-ttl {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .top-recruit-box-ttl {
    font-size: 5.6rem;
    margin-bottom: 80px;
  }
}

.top-recruit-box-ttl-2 {
  font-size: max(3.2rem, 30px);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 56px;
}
@media screen and (max-width: 750px) {
  .top-recruit-box-ttl-2 {
    font-size: 4.8rem;
    line-height: 1.66;
    white-space: nowrap;
    margin-bottom: 100px;
  }
}

.top-recruit-box-txt {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-secondary-font);
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .top-recruit-box-txt {
    font-size: 3.2rem;
    margin-bottom: 80px;
    text-align: left;
  }
}

.top-recruit-slide-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
  position: absolute;
  top: 2rem;
  left: 0;
  height: calc(100% - 2rem);
  z-index: -2;
}

.top-recruit-slide {
  -webkit-animation: infinity-scroll-left 45s infinite linear both;
          animation: infinity-scroll-left 45s infinite linear both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  width: 288rem;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
  }
}
.top-under {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5.5vw;
  padding-bottom: 96px;
  margin-bottom: 192px;
}
@media screen and (max-width: 750px) {
  .top-under {
    padding-left: 4rem;
    padding-bottom: 120px;
    margin-bottom: 240px;
    padding-bottom: 120px;
  }
}

.top-under-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.top-under-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .top-under-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top-under-slider {
  width: 32%;
  margin-top: min(5.55vw, 106px);
}
@media screen and (max-width: 750px) {
  .top-under-slider {
    width: 48rem;
    margin-left: 0 !important;
    margin-top: 40px;
  }
}

.top-under-box-img {
  width: 65.3%;
  margin-top: min(-7.7vw, 118px);
}
@media screen and (max-width: 750px) {
  .top-under-box-img {
    margin-left: auto;
    width: calc(100% - 4rem);
    margin-top: -40px;
  }
}

.error404 .header {
  background-color: #fff !important;
}
.error404 .header-nav-link {
  color: var(--font-color) !important;
}
.error404 .header__logo-black {
  opacity: 1 !important;
  visibility: visible !important;
}

.notfound {
  padding-top: 230px;
  padding-bottom: 120px;
  text-align: center;
}

.notfound__txt-1 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  line-height: 1.5;
}

.notfound__txt-2 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 40px;
  font-family: var(--jp-secondary-font);
}

.faq {
  padding-bottom: 96px;
}
@media screen and (max-width: 750px) {
  .faq {
    padding-bottom: 120px;
  }
}

.faq-inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.faq-box--mod {
  margin-bottom: 88px;
}
@media screen and (max-width: 750px) {
  .faq-box--mod {
    margin-bottom: 100px;
  }
}

.faq-box-ttl {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .faq-box-ttl {
    font-size: 4.8rem;
  }
}

.qa-list {
  background-color: #EBF5CE;
  margin-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 750px) {
  .qa-list {
    padding-left: 3.4rem;
    padding-right: 3.4rem;
  }
}

.qa-list-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 22px 26px 22px 10px;
  border-bottom: 1px solid var(--gray);
}
@media screen and (max-width: 750px) {
  .qa-list-ttl {
    padding-right: 34px;
    gap: 3rem;
  }
}

.qa-list__en {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bg-color);
  font-family: var(--en-primary-font);
  display: block;
}
@media screen and (max-width: 750px) {
  .qa-list__en {
    font-size: 4.8rem;
  }
}

.qa-list-ttl__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .qa-list-ttl__txt {
    font-size: 2.8rem;
  }
}

.qa-list-ttl__arrow {
  width: 13px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .qa-list-ttl__arrow {
    width: 15px;
    right: 0;
  }
}

.qa-list-answer {
  padding: 20px 20px 20px 10px;
}
@media screen and (max-width: 750px) {
  .qa-list-answer {
    padding-right: 34px;
  }
}
.qa-list-answer .qa-list__en {
  color: var(--green);
}

.qa-list-answer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 750px) {
  .qa-list-answer-content {
    gap: 3rem;
  }
}

.qa-list-answer-content__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .qa-list-answer-content__txt {
    font-size: 2.6rem;
  }
}

.tab-active .qa-list-answer {
  display: block;
}
.tab-active .qa-list-ttl__delta {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.heading-strengths {
  padding: 30rem 0 30rem 8rem;
}
@media screen and (max-width: 750px) {
  .heading-strengths {
    padding: 30rem 0 30rem 4rem;
  }
}
.heading-strengths .heading-bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}
.heading-strengths .heading-box__sub {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .heading-strengths .heading-box__sub {
    font-size: 9rem;
  }
}

.heading-strengths-heading-bg-color {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.heading-strengths-heading-bg-color img {
  width: 100%;
  max-height: 385px;
}

.strengths-mission {
  padding-top: 40px;
  padding-bottom: 22rem;
  background-color: var(--bg-color);
}

.strengths-mission-box {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 30px 0 26rem;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .strengths-mission-box {
    padding: 50px 3rem 15rem;
  }
}

.strengths-mission-en {
  font-family: var(--en-primary-font);
  -webkit-text-stroke-width: 0.8px;
  -webkit-text-stroke-color: #fff;
  font-size: 8.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -86%);
          transform: translate(-50%, -86%);
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .strengths-mission-en {
    font-size: 6.4rem;
  }
}

.strengths-mission-ttl {
  font-size: max(3.2rem, 24px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .strengths-mission-ttl {
    white-space: nowrap;
    font-size: 3.6rem;
    margin-bottom: 40px;
  }
}

.strengths-mission-txt {
  font-size: max(1.6rem, 12px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: center;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .strengths-mission-txt {
    font-size: 2.3rem;
    text-align: left;
  }
}

.strengths-mission-img {
  position: absolute;
  bottom: -12rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 92.5%;
}
@media screen and (max-width: 750px) {
  .strengths-mission-img {
    bottom: -6rem;
  }
}

.strengths-list-wrap {
  background-color: var(--bg-color);
}

.strengths-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 36px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.strengths-list-item {
  width: 31.8%;
}
@media screen and (max-width: 750px) {
  .strengths-list-item {
    width: 49%;
  }
}
.strengths-list-item a {
  display: block;
}
.strengths-list-item svg {
  width: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.strengths-list-item-en {
  font-family: var(--en-primary-font);
  font-size: max(1.6rem, 11px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .strengths-list-item-en {
    font-size: 2rem;
  }
}

.strengths-list-item-ttl {
  font-size: max(2rem, 14px);
  font-family: var(--jp-secondary-font);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .strengths-list-item-ttl {
    font-size: 2.1rem;
    white-space: nowrap;
  }
}

.strengths-list-item-border {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-bottom: 8px;
}

.strengths {
  background-color: var(--bg-color);
  padding-top: 150px;
}

.strengths-outer {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.strengths-box {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #fff;
  max-width: 1360px;
}
@media screen and (max-width: 750px) {
  .strengths-box {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.strengths-box--mod {
  margin-bottom: 200px;
}

.strengths-box-1 {
  margin-left: 8rem;
  padding-left: 6.4rem;
  border-top-left-radius: 64px;
}
@media screen and (max-width: 750px) {
  .strengths-box-1 {
    margin-left: 4rem;
    padding-left: 3.8rem;
    padding-right: 3.8rem;
  }
}
.strengths-box-1 .strengths-box-point {
  margin-right: 6.4rem;
}
@media screen and (max-width: 750px) {
  .strengths-box-1 .strengths-box-point {
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .strengths-box-1 .strengths-box-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  .strengths-box-1 .strengths-box-content-img {
    margin-right: -3.8rem;
  }
}

.strengths-box-2 {
  margin-right: 8rem;
  padding-right: 6.4rem;
  border-top-right-radius: 64px;
}
@media screen and (max-width: 750px) {
  .strengths-box-2 {
    margin-right: 4rem;
    padding-right: 3.8rem;
    padding-left: 3.8rem;
  }
}
.strengths-box-2 .strengths-box-ttl {
  margin-left: 6.4rem;
}
@media screen and (max-width: 750px) {
  .strengths-box-2 .strengths-box-ttl {
    margin-left: 0;
  }
}
.strengths-box-2 .strengths-box-content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .strengths-box-2 .strengths-box-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.strengths-box-2 .strengths-box-point {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: 6.4rem;
}
@media screen and (max-width: 750px) {
  .strengths-box-2 .strengths-box-point {
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 750px) {
  .strengths-box-2 .strengths-box-content-img {
    margin-left: -3.8rem;
  }
}

.strengths-box-en {
  font-family: var(--en-primary-font);
  font-size: 8.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  position: absolute;
  top: 0;
  left: 6.4rem;
  -webkit-transform: translateY(-84%);
          transform: translateY(-84%);
}
@media screen and (max-width: 750px) {
  .strengths-box-en {
    font-size: 6.4rem;
    left: 4rem;
  }
}

.strengths-box-ttl {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 4rem;
}
@media screen and (max-width: 750px) {
  .strengths-box-ttl {
    font-size: 4.8rem;
    line-height: 1.71;
    margin-bottom: 70px;
  }
}

.strengths-box-content {
  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;
  margin-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .strengths-box-content {
    margin-bottom: 110px;
  }
}

.strengths-box-content-inner {
  width: 46.8%;
  margin-bottom: 8rem;
}
@media screen and (max-width: 750px) {
  .strengths-box-content-inner {
    width: 100%;
    margin-bottom: 70px;
  }
}
.strengths-box-content-inner h3 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 3rem;
}
@media screen and (max-width: 750px) {
  .strengths-box-content-inner h3 {
    font-size: 3.4rem;
    margin-bottom: 50px;
  }
}
.strengths-box-content-inner p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .strengths-box-content-inner p {
    font-size: 2.4em;
  }
}

.strengths-box-content-img {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .strengths-box-content-img {
    width: calc(100% + 3.8rem);
  }
}

.strengths-box-point {
  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;
}
@media screen and (max-width: 750px) {
  .strengths-box-point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
}

.strengths-box-point--mod {
  margin-bottom: 64px;
}
@media screen and (max-width: 750px) {
  .strengths-box-point--mod {
    margin-bottom: 80px;
  }
}

.strengths-box-point-content {
  width: 50.7%;
}
@media screen and (max-width: 750px) {
  .strengths-box-point-content {
    width: 100%;
  }
}
.strengths-box-point-content h4 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 750px) {
  .strengths-box-point-content h4 {
    font-size: 3.4rem;
    margin-bottom: 40px;
  }
}

.strengths-box-point-content-txt {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .strengths-box-point-content-txt {
    font-size: 2.4rem;
  }
}

.strengths-box-point-img {
  width: 45%;
}
@media screen and (max-width: 750px) {
  .strengths-box-point-img {
    width: 100%;
  }
}

.strengths-box-point-content-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 0;
  margin-bottom: 2.4rem;
  padding: 10px 7rem 10px 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 750px) {
  .strengths-box-point-content-num {
    margin-bottom: 40px;
  }
}

.strengths-box-point-content-num-img {
  width: 3.1rem;
}
@media screen and (max-width: 750px) {
  .strengths-box-point-content-num-img {
    width: 4.5rem;
  }
}

.strengths-box-point-content-num-txt {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  font-family: var(--en-primary-font);
}
@media screen and (max-width: 750px) {
  .strengths-box-point-content-num-txt {
    font-size: 3.6rem;
  }
}

.strengths-box-point-content-num-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flow {
  padding-bottom: 85px;
}
@media screen and (max-width: 750px) {
  .flow {
    padding-bottom: 110px;
  }
}

.flow-inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.flow-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  text-align: center;
  margin-bottom: 85px;
}
@media screen and (max-width: 750px) {
  .flow-txt {
    font-size: 2.4rem;
    margin-bottom: 110px;
    text-align: left;
  }
}

.flow-box--mod {
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .flow-box--mod {
    margin-bottom: 80px;
  }
}

.flow-box-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg-color);
  margin-bottom: 18px;
}

.flow-box-ttl-en {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bg-color);
  font-family: var(--en-primary-font);
  display: block;
  margin-bottom: -5px;
}
@media screen and (max-width: 750px) {
  .flow-box-ttl-en {
    font-size: 4.8rem;
  }
}

.flow-box-ttl-txt {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .flow-box-ttl-txt {
    font-size: 3.8rem;
  }
}

.flow-box-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .flow-box-txt {
    font-size: 2.3rem;
    margin-bottom: 80px;
  }
}

.flow-box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 750px) {
  .flow-box-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.flow-box-content .btn a {
  white-space: nowrap;
}

.flow-box-content-inner {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .flow-box-content-inner {
    width: 100%;
  }
}

.flow-box-content-inner-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--green);
  font-family: var(--jp-secondary-font);
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .flow-box-content-inner-ttl {
    font-size: 3.2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.flow-box-content-inner-ttl img {
  width: 16px;
}
@media screen and (max-width: 750px) {
  .flow-box-content-inner-ttl img {
    width: 3.4rem;
    margin-bottom: -0.5rem;
  }
}

.flow-box-content-inner-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .flow-box-content-inner-txt {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.flow-box-content-inner-txt a {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  font-family: var(--en-primary-font);
  display: block;
  margin-right: 2rem;
  margin-bottom: -0.5rem;
}
@media screen and (max-width: 750px) {
  .flow-box-content-inner-txt a {
    font-size: 6.4rem;
    margin-right: 0;
  }
}

.flow-box-content-inner-txt-en {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  font-family: var(--en-primary-font);
}
@media screen and (max-width: 750px) {
  .flow-box-content-inner-txt-en {
    font-size: 4.8rem;
  }
}

.flow-box-content-inner-txt-time {
  font-size: max(1.6rem, 10px);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  color: var(--green);
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 750px) {
  .flow-box-content-inner-txt-time {
    width: 100%;
    font-size: 3.2rem;
    margin-top: 30px;
    text-align: center;
  }
}

.strengths-mission--service {
  padding-bottom: 96px;
}
.strengths-mission--service .strengths-mission-box {
  padding-bottom: 50px;
}

.strengths-list-wrap--service .strengths-list {
  max-width: 711px;
}
.strengths-list-wrap--service .strengths-list-item {
  width: 48%;
}

.strengths-box--service .strengths-box-content {
  margin-bottom: 0;
}
.strengths-box--service .strengths-box-content-inner {
  margin-bottom: 0;
}
.strengths-box--service .btn {
  margin-top: 5.5rem;
}
@media screen and (max-width: 750px) {
  .strengths-box--service .btn {
    margin-top: 45px;
    margin-bottom: 60px;
    margin-left: 0;
  }
}
.strengths-box--service .strengths-box-ttl {
  margin-left: 0;
}
@media screen and (max-width: 750px) {
  .strengths-box--service .strengths-box-ttl {
    margin-bottom: 60px;
  }
}
.strengths-box--service .btn--service a {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 15px;
}
.strengths-box--service .btn--service .btn-txt {
  text-align: left;
  line-height: 1.5;
}

@media (hover: hover) {
  .btn--service:hover .btn-arrow path {
    fill: #fff;
  }
}
@media screen and (max-width: 750px) {
  .strengths-mission-ttl.strengths-mission-ttl--precision {
    font-size: 3.2rem;
  }
}

.strengths-list-wrap--precision {
  padding-bottom: 170px;
}

.precision-products {
  position: relative;
  padding-top: 80px;
}

.precision-products-en {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -86%);
          transform: translate(-50%, -86%);
  font-size: 8.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #fff;
  font-family: var(--en-primary-font);
}

.precision-products-ttl {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 40px;
  text-align: center;
}

.precision-products-list {
  max-width: 1070px;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 30px;
}
@media screen and (max-width: 750px) {
  .precision-products-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 60px;
    margin-bottom: 60px;
  }
}

.precision-products-list-item {
  width: 32.1%;
}
@media screen and (max-width: 750px) {
  .precision-products-list-item {
    width: 100%;
  }
}

.precision-products-list-item-ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background-color: var(--lightgray);
  padding-top: 13px;
  padding-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .precision-products-list-item-ttl {
    font-size: 3rem;
  }
}

.precision-products-list-item-txt {
  font-family: var(--jp-secondary-font);
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .precision-products-list-item-txt {
    font-size: 2.4rem;
  }
}

.precision-products-list-item-img {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .precision-products-list-item-img {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.precision-products-other {
  background-color: #ebf5ce;
  padding: 64px 4rem;
  max-width: 1070px;
  margin: 0 auto;
}

.precision-products-other-ttl {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .precision-products-other-ttl {
    font-size: 3.4rem;
  }
}

.precision-products-other-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .precision-products-other-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.precision-products-other-box-list {
  padding: 20px;
  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;
}
@media screen and (max-width: 750px) {
  .precision-products-other-box-list {
    padding: 0;
    gap: 0;
  }
}

.precision-products-other-box-list--1 {
  padding-left: 0;
}

.precision-products-other-box-list-2 {
  border-left: 1px solid var(--bg-color);
  border-right: 1px solid var(--bg-color);
}
@media screen and (max-width: 750px) {
  .precision-products-other-box-list-2 {
    border-left: none;
    border-right: none;
  }
}

.precision-products-other-box-list-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.71;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  position: relative;
  padding-left: 15px;
}
@media screen and (max-width: 750px) {
  .precision-products-other-box-list-item {
    font-size: 2.4rem;
    line-height: 2.5;
  }
}
.precision-products-other-box-list-item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  display: block;
  width: 4px;
  aspect-ratio: 1;
  background-color: var(--font-color);
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .precision-products-other-box-list-item::before {
    top: 2.9rem;
  }
}

.precision-worry {
  padding-top: 80px;
  padding-bottom: 80px;
}

.precision-worry-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.precision-worry-ttl {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .precision-worry-ttl {
    font-size: 4.8rem;
    line-height: 1.5;
  }
}

.precision-worry-arrow {
  width: 130px;
  display: block;
  margin: 0 auto 24px;
}

.precision-worry-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.5rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .precision-worry-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
    margin-bottom: 60px;
  }
}

.precision-worry-box-img {
  width: 47%;
}
@media screen and (max-width: 750px) {
  .precision-worry-box-img {
    width: 100%;
  }
}

.precision-worry-box-content {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 750px) {
  .precision-worry-box-content {
    width: 100%;
  }
}

.precision-worry-box-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.precision-worry-box-content-item img {
  width: max(3rem, 24px);
}
@media screen and (max-width: 750px) {
  .precision-worry-box-content-item img {
    width: 23px;
  }
}
.precision-worry-box-content-item p {
  font-size: max(2rem, 16px);
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .precision-worry-box-content-item p {
    font-size: 2.6rem;
  }
}

.strengths-precision-box {
  margin-bottom: 80px;
  padding-right: 6.4rem;
}
@media screen and (max-width: 750px) {
  .strengths-precision-box {
    padding-right: 0;
  }
}

.strengths-precision-box-ttl {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .strengths-precision-box-ttl {
    font-size: 5rem;
  }
}

.strengths-precision-box-ttl-img {
  width: 50px;
  display: block;
  margin: 24px auto 40px;
}

.strengths-precision-box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1070px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 750px) {
  .strengths-precision-box-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.strengths-precision-box-list-item {
  width: 31%;
}
@media screen and (max-width: 750px) {
  .strengths-precision-box-list-item {
    width: 100%;
  }
}

.strengths-precision-box-list-item-img {
  aspect-ratio: 330/240;
  margin-bottom: 20px;
}

.strengths-precision-box-list-item-ttl {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
}

.strengths-precision-equipment {
  padding-right: 6.4rem;
}
@media screen and (max-width: 750px) {
  .strengths-precision-equipment {
    padding-right: 0;
  }
}

.strengths-precision-equipment-box-inner {
  max-width: 1070px;
  margin: 0 auto;
}

.strengths-precision-equipment-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 22px;
}
@media screen and (max-width: 750px) {
  .strengths-precision-equipment-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
  }
}

.strengths-precision-equipment-box-content {
  width: 47%;
}
@media screen and (max-width: 750px) {
  .strengths-precision-equipment-box-content {
    width: 100%;
  }
}
.strengths-precision-equipment-box-content h3 {
  font-size: max(2.4rem, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 22px;
}
@media screen and (max-width: 750px) {
  .strengths-precision-equipment-box-content h3 {
    font-size: 4.2rem;
    margin-bottom: 30px;
  }
}
.strengths-precision-equipment-box-content h3 span {
  font-size: max(2rem, 15px);
}
@media screen and (max-width: 750px) {
  .strengths-precision-equipment-box-content h3 span {
    font-size: 3.3rem;
  }
}
.strengths-precision-equipment-box-content p {
  font-size: max(1.6rem, 14px);
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .strengths-precision-equipment-box-content p {
    font-size: 2.4rem;
  }
}

.strengths-precision-equipment-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--jp-secondary-font);
}
.strengths-precision-equipment-table th {
  background-color: var(--bg-color);
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .strengths-precision-equipment-table th {
    font-size: 2rem;
  }
}
.strengths-precision-equipment-table td {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  border: 1px solid var(--gray);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .strengths-precision-equipment-table td {
    font-size: 2rem;
  }
}
.strengths-precision-equipment-table .strengths-precision-equipment-table--border {
  border-top: none;
}
.strengths-precision-equipment-table th:first-child {
  width: 46%;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  .strengths-precision-equipment-table th:first-child {
    width: 43%;
  }
}
.strengths-precision-equipment-table th:nth-child(2) {
  width: 46%;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  .strengths-precision-equipment-table th:nth-child(2) {
    width: 43%;
  }
}
.strengths-precision-equipment-table th:nth-child(3) {
  width: 8%;
}
@media screen and (max-width: 750px) {
  .strengths-precision-equipment-table th:nth-child(3) {
    width: 14%;
  }
}

.strengths-precision-equipment--2 th {
  width: 100%;
}
.strengths-precision-equipment--2 td {
  width: 100%;
  text-align: left;
  padding-left: 20px;
}

.parts-case-box {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.parts-case-box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .parts-case-box-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.parts-case-box-item-img {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .parts-case-box-item-img {
    width: 100%;
  }
}

.parts-case-box-item-content {
  width: calc(50% - 6rem);
  margin-top: 7rem;
}
@media screen and (max-width: 750px) {
  .parts-case-box-item-content {
    width: 100%;
    margin-top: 50px;
  }
}

.parts-case-box-item-content-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 5rem;
}
@media screen and (max-width: 750px) {
  .parts-case-box-item-content-ttl {
    font-size: 3.4rem;
    margin-bottom: 30px;
  }
}

.parts-case-box-item-content-txt {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .parts-case-box-item-content-txt {
    font-size: 2.4rem;
  }
}

.parts-case-box-item-2 {
  margin-top: 70px;
}
@media screen and (max-width: 750px) {
  .parts-case-box-item-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 90px;
  }
}
.parts-case-box-item-2 .parts-case-box-item-content {
  padding-left: 16rem;
}
@media screen and (max-width: 750px) {
  .parts-case-box-item-2 .parts-case-box-item-content {
    padding-left: 0;
  }
}

.outer {
  padding-left: 4rem;
  padding-right: 4rem;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .container {
    max-width: 430px;
  }
}

.fitCover {
  overflow: hidden;
}
.fitCover img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.fitCover picture {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.over-hidden {
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (max-width: 430px) {
  .is-pc-02 {
    display: none !important;
  }
}

@media screen and (min-width: 751px) {
  .is-sp {
    display: none !important;
  }
}

@media screen and (min-width: 431px) {
  .is-sp-02 {
    display: none !important;
  }
}

.hover-opacity {
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

@media (hover: hover) {
  .hover-opacity:hover {
    opacity: 0.8;
  }
}
.hover-color {
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
}

@media (hover: hover) {
  .hover-color:hover {
    color: var(--secondary-color);
  }
}
.margin-center {
  margin-left: auto;
  margin-right: auto;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
}

.mt0 {
  margin-top: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mt160 {
  margin-top: 160px !important;
}

.mt170 {
  margin-top: 170px !important;
}

.mt180 {
  margin-top: 180px !important;
}

.mt190 {
  margin-top: 190px !important;
}

.mt200 {
  margin-top: 200px !important;
}

@media screen and (max-width: 750px) {
  .md_mt0 {
    margin-top: 0px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt10 {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt20 {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt30 {
    margin-top: 30px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt40 {
    margin-top: 40px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt50 {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt60 {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt70 {
    margin-top: 70px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt80 {
    margin-top: 80px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt90 {
    margin-top: 90px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt100 {
    margin-top: 100px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt110 {
    margin-top: 110px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt120 {
    margin-top: 120px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt130 {
    margin-top: 130px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt140 {
    margin-top: 140px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt150 {
    margin-top: 150px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt160 {
    margin-top: 160px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt170 {
    margin-top: 170px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt180 {
    margin-top: 180px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt190 {
    margin-top: 190px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mt200 {
    margin-top: 200px !important;
  }
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

@media screen and (max-width: 750px) {
  .md_mb0 {
    margin-bottom: 0px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb10 {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb20 {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb30 {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb40 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb50 {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb60 {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb70 {
    margin-bottom: 70px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb80 {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb90 {
    margin-bottom: 90px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb100 {
    margin-bottom: 100px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb110 {
    margin-bottom: 110px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb120 {
    margin-bottom: 120px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb130 {
    margin-bottom: 130px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb140 {
    margin-bottom: 140px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb150 {
    margin-bottom: 150px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb160 {
    margin-bottom: 160px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb170 {
    margin-bottom: 170px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb180 {
    margin-bottom: 180px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb190 {
    margin-bottom: 190px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_mb200 {
    margin-bottom: 200px !important;
  }
}

.pt0 {
  padding-top: 0px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pt110 {
  padding-top: 110px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.pt130 {
  padding-top: 130px !important;
}

.pt140 {
  padding-top: 140px !important;
}

.pt150 {
  padding-top: 150px !important;
}

.pt160 {
  padding-top: 160px !important;
}

.pt170 {
  padding-top: 170px !important;
}

.pt180 {
  padding-top: 180px !important;
}

.pt190 {
  padding-top: 190px !important;
}

.pt200 {
  padding-top: 200px !important;
}

@media screen and (max-width: 750px) {
  .md_pt0 {
    padding-top: 0px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt10 {
    padding-top: 10px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt20 {
    padding-top: 20px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt30 {
    padding-top: 30px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt40 {
    padding-top: 40px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt50 {
    padding-top: 50px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt60 {
    padding-top: 60px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt70 {
    padding-top: 70px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt80 {
    padding-top: 80px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt90 {
    padding-top: 90px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt100 {
    padding-top: 100px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt110 {
    padding-top: 110px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt120 {
    padding-top: 120px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt130 {
    padding-top: 130px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt140 {
    padding-top: 140px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt150 {
    padding-top: 150px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt160 {
    padding-top: 160px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt170 {
    padding-top: 170px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt180 {
    padding-top: 180px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt190 {
    padding-top: 190px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pt200 {
    padding-top: 200px !important;
  }
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.pb160 {
  padding-bottom: 160px !important;
}

.pb170 {
  padding-bottom: 170px !important;
}

.pb180 {
  padding-bottom: 180px !important;
}

.pb190 {
  padding-bottom: 190px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

@media screen and (max-width: 750px) {
  .md_pb0 {
    padding-bottom: 0px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb10 {
    padding-bottom: 10px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb20 {
    padding-bottom: 20px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb30 {
    padding-bottom: 30px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb40 {
    padding-bottom: 40px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb50 {
    padding-bottom: 50px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb60 {
    padding-bottom: 60px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb70 {
    padding-bottom: 70px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb80 {
    padding-bottom: 80px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb90 {
    padding-bottom: 90px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb100 {
    padding-bottom: 100px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb110 {
    padding-bottom: 110px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb120 {
    padding-bottom: 120px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb130 {
    padding-bottom: 130px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb140 {
    padding-bottom: 140px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb150 {
    padding-bottom: 150px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb160 {
    padding-bottom: 160px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb170 {
    padding-bottom: 170px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb180 {
    padding-bottom: 180px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb190 {
    padding-bottom: 190px !important;
  }
}

@media screen and (max-width: 750px) {
  .md_pb200 {
    padding-bottom: 200px !important;
  }
}

.lower-menu-bg {
  z-index: 8 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  font-size: max(14px, 1.6rem);
  font-family: var(--jp-secondary-font);
}

@media screen and (max-width: 750px) {
  .contact-ttl {
    font-size: 12vw;
  }
}

br.pc {
  display: block;
}
@media screen and (max-width: 750px) {
  br.pc {
    display: none;
  }
}

br.sp {
  display: none;
}
@media screen and (max-width: 750px) {
  br.sp {
    display: block;
  }
}

.w-none {
  max-width: none !important;
}

.w-container {
  width: 80%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .w-container {
    width: 93%;
  }
}

.w-container-full {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 750px) {
  .md-w-container {
    width: 93% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

p {
  font-size: max(13px, 1.6rem);
  line-height: 1.7;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  p {
    font-size: max(14px, 2.8rem);
  }
}

.common-title-en {
  font-family: var(--en-primary-font);
  -webkit-text-stroke-width: 0.8px;
  -webkit-text-stroke-color: var(--bg-color);
  font-size: 8.33vw;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: transparent;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .common-title-en {
    font-size: 9.18rem;
    margin-left: -4rem;
    width: calc(100% + 8rem);
  }
}

.common-title-ja {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-top: 24px;
  margin-bottom: 40px;
  text-align: center;
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  .common-title-ja {
    font-size: 4rem;
    margin-bottom: 25px;
    margin: 10px 0;
  }
}

.page-outer-title {
  font-size: max(3.2rem, 44px);
  font-weight: 600;
  text-align: center;
  color: var(--green);
  display: block;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .page-outer-title {
    font-size: max(2.8rem, 28px);
  }
}

.page-title02 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 340px !important;
  padding: 5px 0;
  gap: 20px;
}
@media screen and (max-width: 750px) {
  .page-title02 {
    width: 100% !important;
  }
}
.page-title02 .page-title02-img {
  width: 40px;
  height: auto;
}
.page-title02 .page-title02-txt {
  font-size: max(18px, 2.4rem) !important;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  padding-right: 10px;
}
.page-title02 .page-title02-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-heading {
  position: relative;
  padding: 18rem 0 20rem 8rem;
}
@media screen and (max-width: 750px) {
  .page-heading {
    padding: 20rem 4rem;
  }
}
@media screen and (max-width: 750px) {
  .page-heading .heading-box__ttl {
    font-size: 6.5vw;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 750px) {
  .page-heading .heading-box__sub {
    font-size: 13vw;
    margin-bottom: 40px;
  }
}
.page-heading .heading-bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 1;
}
.page-heading .heading-box {
  position: relative;
  z-index: 2;
}
.page-heading .heading-box__sub {
  opacity: 0.8;
}

.page-heading--dark .heading-bg::before {
  opacity: 0.6;
}

.page-heading--no-overlay .heading-bg::before {
  display: none;
}

.page-heading--center {
  text-align: center;
  padding: 30rem 4rem;
}
@media screen and (max-width: 750px) {
  .page-heading--center {
    padding: 20rem 4rem;
  }
}

.page-heading--news {
  padding: 25rem 0 25rem 8rem;
}
@media screen and (max-width: 750px) {
  .page-heading--news {
    padding: 15rem 4rem;
  }
}
.page-heading--news .heading-bg::before {
  opacity: 0.5;
}

.page-heading--movie {
  padding: 30rem 0 30rem 8rem;
}
@media screen and (max-width: 750px) {
  .page-heading--movie {
    padding: 20rem 4rem;
  }
}

.page-heading--green {
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--green) 100%);
}
.page-heading--green .heading-bg::before {
  opacity: 0.2;
}
.page-heading--green .heading-box__ttl,
.page-heading--green .heading-box__sub {
  color: #fff;
}

.page-heading--beige {
  background: linear-gradient(135deg, var(--beige) 0%, var(--lightbeige) 100%);
}
.page-heading--beige .heading-bg::before {
  opacity: 0.3;
}
.page-heading--beige .heading-box__ttl,
.page-heading--beige .heading-box__sub {
  color: #fff;
}

.section-heading {
  position: relative;
  text-align: center;
  padding: 8rem 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 750px) {
  .section-heading {
    padding: 6rem 4rem;
    margin-bottom: 3rem;
  }
}

.section-heading__en {
  font-family: var(--en-primary-font);
  -webkit-text-stroke-width: 0.8px;
  -webkit-text-stroke-color: var(--gray);
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: transparent;
  margin-bottom: 1rem;
}
@media screen and (max-width: 750px) {
  .section-heading__en {
    font-size: 4rem;
  }
}

.section-heading__ja {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  .section-heading__ja {
    font-size: 2.4rem;
  }
}

.section-heading__desc {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--font-color);
  font-family: var(--jp-secondary-font);
  margin-top: 2rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .section-heading__desc {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}

.content-heading {
  position: relative;
  margin: 4rem 0 2rem 0;
  padding-left: 2rem;
}
.content-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bg-color)), to(var(--green)));
  background: linear-gradient(to bottom, var(--bg-color), var(--green));
}

.content-heading--h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
}
@media screen and (max-width: 750px) {
  .content-heading--h2 {
    font-size: 2rem;
  }
}

.content-heading--h3 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green);
}
@media screen and (max-width: 750px) {
  .content-heading--h3 {
    font-size: 1.8rem;
  }
}

.content-heading--h4 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--font-color);
}
@media screen and (max-width: 750px) {
  .content-heading--h4 {
    font-size: 1.6rem;
  }
}

.border-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-bottom: 8px;
}

.border-line--green {
  background-color: var(--green);
}

.border-line--bg-color {
  background-color: var(--bg-color);
}

.border-line--gradient-green {
  background: -webkit-gradient(linear, left top, right top, from(var(--bg-color)), to(var(--green)));
  background: linear-gradient(to right, var(--bg-color), var(--green));
}

.page-section {
  background-color: var(--bg-color);
  padding-top: 150px;
}
@media screen and (max-width: 750px) {
  .page-section {
    padding-top: 90px;
  }
}
.page-section .page-outer:first-child {
  margin-top: 0;
}

.page-outer {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 160px;
}
@media screen and (max-width: 750px) {
  .page-outer {
    margin-top: 100px;
  }
}
.page-outer .page-box {
  position: relative;
  padding: 8rem 0 8rem 8rem;
  background-color: #fff;
  max-width: none;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .page-outer .page-box {
    padding: 50px 0 30px;
  }
}
.page-outer .page-container {
  width: 95%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 2520px) {
  .page-outer .page-container {
    margin-right: auto;
    max-width: 1920px;
  }
}
@media screen and (max-width: 750px) {
  .page-outer .page-container {
    width: 93%;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-outer .page-container--center {
  width: 95%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: 5%;
}
@media screen and (max-width: 750px) {
  .page-outer .page-container--center {
    width: 93%;
  }
}
@media screen and (min-width: 2520px) {
  .page-outer .page-container--center {
    margin-right: auto;
  }
}
.page-outer .page-container--full {
  width: 100%;
  max-width: none;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .page-outer .page-container.md-w-container {
    width: 93% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.page-outer .page-box--left {
  margin-left: 8rem;
  padding-left: 6.4rem;
  border-top-left-radius: 64px;
}
@media screen and (max-width: 750px) {
  .page-outer .page-box--left {
    margin-left: 3%;
    padding-left: 0%;
    width: 97%;
    border-top-left-radius: 32px;
  }
}
.page-outer .page-box--right {
  margin-right: 8rem;
  padding-right: 6.4rem;
  border-top-right-radius: 64px;
}
.page-outer .page-box--right .page-title-en {
  right: auto !important;
}
.page-outer .page-box--right .page-container--center {
  margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .page-outer .page-box--right {
    margin-right: 3%;
    padding-right: 0%;
    width: 97%;
    border-top-right-radius: 32px;
  }
}
.page-outer .page-box--center {
  margin-left: auto;
  margin-right: auto;
  border-radius: 32px;
}
@media screen and (max-width: 750px) {
  .page-outer .page-box--center {
    border-radius: 16px;
  }
}
.page-outer .page-box--full {
  max-width: none;
  margin: 0;
  border-radius: 0;
}
.page-outer .page-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .page-outer .page-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.page-outer .page-content.page-content--full {
  grid-template-columns: 1fr;
}
.page-outer .page-content.page-content--full div {
  width: 100%;
}
.page-outer .page-content.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .page-outer .page-content .page-content-item {
    max-width: 90vw;
  }
}
.page-outer .page-box--right .page-content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .page-outer .page-box--right .page-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page-outer .page-content-inner {
  width: 46.8%;
}
@media screen and (max-width: 750px) {
  .page-outer .page-content-inner {
    width: 100%;
  }
}
.page-outer .page-content-inner h3 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
  color: var(--green);
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  .page-outer .page-content-inner h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.page-outer .page-content-inner p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  .page-outer .page-content-inner p {
    font-size: max(14px, 2.8rem);
    line-height: 1.8;
  }
}
.page-outer .page-content-img {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .page-outer .page-content-img {
    width: 100%;
  }
}
.page-outer .page-content-img img {
  width: 100%;
  height: auto;
}
.page-outer .page-title {
  font-size: max(22px, 4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 4rem;
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  .page-outer .page-title {
    margin-bottom: 40px;
  }
}
.page-outer .page-title-sub {
  font-size: max(18px, 2.4rem);
  font-weight: 600;
  color: var(--green);
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  .page-outer .page-title-sub {
    margin-top: -20px;
  }
}
.page-outer .page-title-en {
  font-family: var(--en-primary-font);
  font-size: 8.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  position: absolute;
  top: 0;
  left: 6.4rem;
  -webkit-transform: translateY(-84%);
          transform: translateY(-84%);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .page-outer .page-title-en {
    font-family: var(--en-primary-font);
    font-size: 8.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    position: absolute;
    top: 0;
    left: 6.4rem;
    -webkit-transform: translateY(-84%);
    transform: translateY(-84%);
  }
}
.page-outer .page-box--right .page-title-en {
  left: auto;
  right: 6.4rem;
}
@media screen and (max-width: 750px) {
  .page-outer .page-box--right .page-title-en {
    right: 2rem;
  }
}
.page-outer--green {
  background-color: var(--green);
}
.page-outer--green .page-box {
  background-color: var(--green);
}
.page-outer--green .page-title,
.page-outer--green .page-content-inner h3 {
  color: #fff;
}
.page-outer--green .page-content-inner p {
  color: #fff;
}
.page-outer--beige {
  background-color: var(--beige);
}
.page-outer--beige .page-box {
  background-color: var(--beige);
}
.page-outer--beige .page-title,
.page-outer--beige .page-content-inner h3 {
  color: #fff;
}
.page-outer--beige .page-content-inner p {
  color: #fff;
}
.page-outer--light {
  background-color: var(--lightgreen);
}
.page-outer--light .page-box {
  background-color: var(--lightgreen);
}
.page-outer .page-table table {
  width: 100%;
  border-collapse: collapse;
}
.page-outer .page-table tr {
  width: 100%;
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 2.4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .page-outer .page-table tr {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}
.page-outer .page-table th {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  color: var(--bg-color);
  border-bottom: 1px solid var(--bg-color);
  padding: 2.4rem 0 2.4rem 1.2rem;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .page-outer .page-table th {
    font-size: 2.8rem;
    line-height: 1.7;
    padding: 1.6rem 0 0 0.4rem;
    border-bottom: none;
  }
}
.page-outer .page-table td {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  font-family: var(--jp-secondary-font);
  border-bottom: 1px solid #333;
  padding: 2.4rem 0 2.4rem 1.2rem;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .page-outer .page-table td {
    font-size: 2.8rem;
    padding: 0.8rem 0 1.6rem 0.4rem;
  }
}
.page-outer .page-table td iframe {
  width: 100%;
  height: 350px;
}
@media screen and (max-width: 750px) {
  .page-outer .page-table td iframe {
    margin-top: 10px;
    height: 250px;
  }
}
.page-outer .page-table--equal tr {
  grid-template-columns: 1fr 1fr;
}
.page-outer .page-table--wide tr {
  grid-template-columns: 0.3fr 1fr;
}
.page-outer .page-table--narrow tr {
  grid-template-columns: 0.5fr 1fr;
}
.page-outer .page-table--green th {
  color: var(--green);
  border-bottom-color: var(--green);
}
.page-outer .page-table--green td {
  border-bottom-color: var(--green);
}
.page-outer .page-table--white th {
  color: #fff;
  border-bottom-color: #fff;
}
.page-outer .page-table--white td {
  color: #fff;
  border-bottom-color: #fff;
}

.page-list-wrap {
  background-color: var(--bg-color);
}
.page-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  row-gap: 3.6rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .page-list {
    width: 97%;
    gap: 0;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    row-gap: 2rem;
  }
}

.page-list-item {
  width: 31.8%;
}
@media screen and (max-width: 750px) {
  .page-list-item {
    width: 48%;
  }
}
.page-list-item a {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-list-item a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.9;
}
.page-list-item svg {
  width: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-list-item:hover svg {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.page-list-item-en {
  font-family: var(--en-primary-font);
  font-size: max(1.6rem, 11px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 750px) {
  .page-list-item-en {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
  }
}

.page-list-item-ttl {
  font-size: max(2rem, 14px);
  font-family: var(--jp-secondary-font);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 750px) {
  .page-list-item-ttl {
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
  }
}

.page-list-item-border {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-bottom: 0.8rem;
}

.page-list--2col .page-list-item {
  width: 48%;
}
@media screen and (max-width: 750px) {
  .page-list--2col .page-list-item {
    width: 100%;
  }
}

.page-list--3col .page-list-item {
  width: 31.8%;
}
@media screen and (max-width: 750px) {
  .page-list--3col .page-list-item {
    width: 100%;
  }
}

.page-list--4col .page-list-item {
  width: 23%;
}
@media screen and (max-width: 750px) {
  .page-list--4col .page-list-item {
    width: 100%;
  }
}

.page-list--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.page-list--center .page-list-item {
  width: auto;
  min-width: 200px;
}
@media screen and (max-width: 750px) {
  .page-list--center .page-list-item {
    width: 100%;
    min-width: auto;
  }
}

.page-list-wrap--green {
  background-color: var(--green);
}

.page-list-wrap--beige {
  background-color: var(--beige);
}

.page-list-wrap--light {
  background-color: var(--lightgreen);
}
.page-list-wrap--light .page-list-item-en,
.page-list-wrap--light .page-list-item-ttl {
  color: var(--font-color);
}
.page-list-wrap--light .page-list-item-border {
  background-color: var(--font-color);
}

.page-list-wrap--white {
  background-color: #fff;
}
.page-list-wrap--white .page-list-item-en,
.page-list-wrap--white .page-list-item-ttl {
  color: var(--font-color);
}
.page-list-wrap--white .page-list-item-border {
  background-color: var(--font-color);
}

.page-list-item--arrow-up svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.page-list-item--arrow-right svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.page-list-item--arrow-left svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.page-list--small .page-list-item-en {
  font-size: 1.2rem;
}
.page-list--small .page-list-item-ttl {
  font-size: 1.6rem;
}

.page-list--large .page-list-item-en {
  font-size: 2rem;
}
.page-list--large .page-list-item-ttl {
  font-size: 2.4rem;
}

.page-table2 {
  margin-top: 3.2rem;
}
@media screen and (max-width: 750px) {
  .page-table2 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.page-table2.row4 tr {
  grid-template-columns: 0.8fr 0.8fr 0.3fr 1fr;
}
.page-table2 table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .page-table2 table {
    min-width: 600px;
  }
}
.page-table2 tr {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 0.5fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .page-table2 tr {
    grid-template-columns: 1fr 1fr 0.5fr;
    min-width: 600px;
  }
}
.page-table2 th {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  color: #fff;
  background-color: var(--lightgreen);
  padding: 2.4rem 1.2rem;
  text-align: center;
  border: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  .page-table2 th {
    font-size: 2.4rem;
    padding: 1.6rem 1.2rem;
  }
}
.page-table2 td {
  font-size: max(14px, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  color: var(--font-color);
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 2.4rem 1.6rem;
}
.page-table2 td.num {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .page-table2 td {
    font-size: 2.4rem;
    padding: 1.6rem 1.2rem;
  }
}

.page-table2--green th {
  background-color: var(--green);
  border-bottom-color: var(--green);
}

.page-table2--beige th {
  background-color: var(--beige);
  border-bottom-color: var(--beige);
}

.page-table2--bg-color th {
  background-color: var(--bg-color);
  border-bottom-color: var(--bg-color);
}

.page-table2--small th, .page-table2--small td {
  font-size: 1.4rem;
  padding: 2rem 1rem;
}
@media screen and (max-width: 750px) {
  .page-table2--small th, .page-table2--small td {
    font-size: 2.8rem;
    padding: 1.4rem 0.6rem;
  }
}

.page-table2--large th, .page-table2--large td {
  font-size: 1.8rem;
  padding: 2.8rem 1.4rem;
}
@media screen and (max-width: 750px) {
  .page-table2--large th, .page-table2--large td {
    font-size: 3.6rem;
    padding: 1.8rem 1rem;
  }
}

.icon-svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.icon-svg--xs {
  width: 8px;
  height: auto;
}

.icon-svg--sm {
  width: 10px;
  height: auto;
}

.icon-svg--md {
  width: 14px;
  height: auto;
}

.icon-svg--lg {
  width: 20px;
  height: auto;
}

.icon-svg--xl {
  width: 28px;
  height: auto;
}

.icon-svg--left {
  margin-left: 0;
  margin-right: auto;
}

.icon-svg--right {
  margin-left: auto;
  margin-right: 0;
}

.icon-svg--center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.icon-svg--white svg path,
.icon-svg--white svg line,
.icon-svg--white svg polygon,
.icon-svg--white svg circle,
.icon-svg--white svg rect {
  fill: #fff;
  stroke: #fff;
}

.icon-svg--green svg path,
.icon-svg--green svg line,
.icon-svg--green svg polygon,
.icon-svg--green svg circle,
.icon-svg--green svg rect {
  fill: var(--green);
  stroke: var(--green);
}

.icon-svg--bg-color svg path,
.icon-svg--bg-color svg line,
.icon-svg--bg-color svg polygon,
.icon-svg--bg-color svg circle,
.icon-svg--bg-color svg rect {
  fill: var(--bg-color);
  stroke: var(--bg-color);
}

.icon-svg--gray svg path,
.icon-svg--gray svg line,
.icon-svg--gray svg polygon,
.icon-svg--gray svg circle,
.icon-svg--gray svg rect {
  fill: var(--gray);
  stroke: var(--gray);
}

@media screen and (max-width: 750px) {
  .top-number-subttl {
    margin-top: 64px !important;
    margin-bottom: 56px !important;
  }
}

.top-number-list-item-box-content-txt {
  font-size: 2.2rem !important;
}
@media screen and (max-width: 750px) {
  .top-number-list-item-box-content-txt {
    font-size: 4rem !important;
  }
}

@media screen and (max-width: 750px) {
  .top-number-list-item-box {
    padding: 7.4rem 4rem 7.4rem 4rem !important;
  }
}

@media screen and (max-width: 750px) {
  .top-number-list-item-box-content-num {
    font-size: 12rem !important;
  }
}

#movie-search {
  padding: 40px 0;
  background-color: #f8f9fa;
}
#movie-search .movie-search-form {
  max-width: 600px;
  margin: 0 auto;
}
#movie-search .movie-search-form .search-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#movie-search .movie-search-form .search-input-group .search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}
#movie-search .movie-search-form .search-input-group .search-input::-webkit-input-placeholder {
  color: #999;
}
#movie-search .movie-search-form .search-input-group .search-input::-moz-placeholder {
  color: #999;
}
#movie-search .movie-search-form .search-input-group .search-input:-ms-input-placeholder {
  color: #999;
}
#movie-search .movie-search-form .search-input-group .search-input::-ms-input-placeholder {
  color: #999;
}
#movie-search .movie-search-form .search-input-group .search-input::placeholder {
  color: #999;
}
#movie-search .movie-search-form .search-input-group .search-btn {
  padding: 15px 20px;
  background: #99cc0c;
  border: none;
  color: white;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
#movie-search .movie-search-form .search-input-group .search-btn:hover {
  background: #87b30a;
}
#movie-search .movie-search-form .search-input-group .search-btn svg {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 750px) {
  #movie-search {
    padding: 20px 0;
  }
  #movie-search .movie-search-form .search-input-group .search-input {
    padding: 12px 15px;
    font-size: 14px;
  }
  #movie-search .movie-search-form .search-input-group .search-btn {
    padding: 12px 15px;
  }
  #movie-search .movie-search-form .search-input-group .search-btn svg {
    width: 18px;
    height: 18px;
  }
}

body.post-type-archive-movie footer, body.tax-movie-cat footer {
  margin-top: 240px;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-movie footer, body.tax-movie-cat footer {
    margin-top: 100px;
  }
}
body.post-type-archive-movie section#movie-cat, body.tax-movie-cat section#movie-cat {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-movie section#movie-cat, body.tax-movie-cat section#movie-cat {
    margin-top: 24px;
  }
}
body.post-type-archive-movie section#movie-cat .movie-cat-buttons, body.tax-movie-cat section#movie-cat .movie-cat-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-movie section#movie-cat .movie-cat-buttons, body.tax-movie-cat section#movie-cat .movie-cat-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  body.post-type-archive-movie section#movie-cat .movie-cat-buttons .btn, body.tax-movie-cat section#movie-cat .movie-cat-buttons .btn {
    width: 100% !important;
  }
}
body.post-type-archive-movie section#movie-title, body.tax-movie-cat section#movie-title {
  padding-top: 64px;
}
body.post-type-archive-movie section#movie-contents, body.tax-movie-cat section#movie-contents {
  padding-top: 64px;
}
body.post-type-archive-movie section#movie-contents .movie-contents__items, body.tax-movie-cat section#movie-contents .movie-contents__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 20px;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-movie section#movie-contents .movie-contents__items, body.tax-movie-cat section#movie-contents .movie-contents__items {
    grid-template-columns: 1fr;
  }
}
body.post-type-archive-movie section#movie-contents .movie-contents__item-iframe, body.tax-movie-cat section#movie-contents .movie-contents__item-iframe {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
body.post-type-archive-movie section#movie-contents .movie-contents__item-iframe iframe, body.tax-movie-cat section#movie-contents .movie-contents__item-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.post-type-archive-movie section#movie-contents .movie-contents__item-title, body.tax-movie-cat section#movie-contents .movie-contents__item-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 24px;
}
body.post-type-archive-movie section#movie-contents .movie-contents__item-date, body.tax-movie-cat section#movie-contents .movie-contents__item-date {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--bg-color);
}
@media screen and (max-width: 750px) {
  body.post-type-archive-movie section#movie-contents .movie-contents__item-date, body.tax-movie-cat section#movie-contents .movie-contents__item-date {
    font-size: 3.2rem;
  }
}

.archive-pagination {
  margin-top: 64px;
  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: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .archive-pagination {
    margin-top: 40px;
    gap: 8px;
  }
}
.archive-pagination a, .archive-pagination span {
  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;
  width: 48px;
  height: 48px;
  border: 1px solid #ddd;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--en-primary-font);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .archive-pagination a, .archive-pagination span {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
.archive-pagination a svg, .archive-pagination span svg {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 750px) {
  .archive-pagination a svg, .archive-pagination span svg {
    width: 16px;
    height: 16px;
  }
}
.archive-pagination a:hover {
  background-color: var(--green);
  border-color: var(--green);
  color: #fff;
}
.archive-pagination a:hover svg {
  stroke: #fff;
}
.archive-pagination span.current {
  background-color: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 600;
}
.archive-pagination span.dots {
  border: none;
  pointer-events: none;
}

body.post-type-archive-post footer, body.archive.category footer {
  margin-top: 240px;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-post footer, body.archive.category footer {
    margin-top: 100px;
  }
}
body.post-type-archive-post section#archive-cat .archive-cat-buttons, body.archive.category section#archive-cat .archive-cat-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
body.post-type-archive-post section#archive-cat .archive-cat-button, body.archive.category section#archive-cat .archive-cat-button {
  width: 400px;
  text-align: center;
}
body.post-type-archive-post section#archive-cat .archive-cat-button a, body.archive.category section#archive-cat .archive-cat-button a {
  width: 100%;
}
body.post-type-archive-post section#archive-cat .archive-cat-button .archive-cat-button-txt, body.archive.category section#archive-cat .archive-cat-button .archive-cat-button-txt {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-post section#archive-cat .archive-cat-button .archive-cat-button-txt, body.archive.category section#archive-cat .archive-cat-button .archive-cat-button-txt {
    font-size: 3.2rem;
    margin-bottom: 16px;
  }
}
body.post-type-archive-post section#archive-title, body.archive.category section#archive-title {
  padding-top: 80px;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-post section#archive-title, body.archive.category section#archive-title {
    padding-top: 60px;
  }
}
body.post-type-archive-post section#archive-contents, body.archive.category section#archive-contents {
  padding-top: 48px;
}
body.post-type-archive-post section#archive-contents .archive-contents__items, body.archive.category section#archive-contents .archive-contents__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 20px;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-post section#archive-contents .archive-contents__items, body.archive.category section#archive-contents .archive-contents__items {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
body.post-type-archive-post section#archive-contents .archive-contents__item .archive-contents__item-img, body.archive.category section#archive-contents .archive-contents__item .archive-contents__item-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-bottom: 1px solid #ddd;
}
body.post-type-archive-post section#archive-contents .archive-contents__item .archive-contents__item-img img, body.archive.category section#archive-contents .archive-contents__item .archive-contents__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.post-type-archive-post section#archive-contents .archive-contents__item a, body.archive.category section#archive-contents .archive-contents__item a {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
body.post-type-archive-post section#archive-contents .archive-contents__item a:hover, body.archive.category section#archive-contents .archive-contents__item a:hover {
  background-color: #eee;
}
body.post-type-archive-post section#archive-contents .archive-contents__item .archive-contents__item-text, body.archive.category section#archive-contents .archive-contents__item .archive-contents__item-text {
  padding: 10px;
}
body.post-type-archive-post section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date, body.archive.category section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-post section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date, body.archive.category section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date {
    font-size: 3.2rem;
  }
}
body.post-type-archive-post section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-title, body.archive.category section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-post section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-title, body.archive.category section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-title {
    font-size: 3.2rem;
    margin-top: 8px;
  }
}
body.post-type-archive-post section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date, body.archive.category section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--bg-color);
}
@media screen and (max-width: 750px) {
  body.post-type-archive-post section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date, body.archive.category section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date {
    font-size: 3.2rem;
    margin-top: 8px;
  }
}

body.wp-singular.single-post footer {
  margin-top: 240px;
}
@media screen and (max-width: 750px) {
  body.wp-singular.single-post footer {
    margin-top: 100px;
  }
}
body.wp-singular.single-post section#single-title .single-title-main {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 16px;
  line-height: 1.7;
  font-family: var(--jp-primary-font);
}
body.wp-singular.single-post section#single-title .single-title-date {
  text-align: center;
  margin-top: 64px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--bg-color);
}
@media screen and (max-width: 750px) {
  body.wp-singular.single-post section#single-title .single-title-date {
    font-size: 3.2rem;
  }
}
body.wp-singular.single-post section#single-contents {
  /* シングルページ用SCSS */
  /* H1見出し */
  /* H2見出し */
  /* H3見出し */
  /* H4見出し */
  /* 画像 */
  /* リスト */
  /* ボタン */
}
body.wp-singular.single-post section#single-contents .contents-post__thumb {
  margin-top: 40px;
}
body.wp-singular.single-post section#single-contents .contents-post__thumb img {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  body.wp-singular.single-post section#single-contents .contents-post__thumb img {
    width: 100%;
  }
}
body.wp-singular.single-post section#single-contents .contents-post__button {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  body.wp-singular.single-post section#single-contents .contents-post__button {
    margin-top: 50px;
  }
}
body.wp-singular.single-post section#single-contents .wp-block-heading {
  margin-top: 80px;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  body.wp-singular.single-post section#single-contents .wp-block-heading {
    margin-top: 50px !important;
    margin-bottom: 20px !important;
  }
  body.wp-singular.single-post section#single-contents .wp-block-heading.h1, body.wp-singular.single-post section#single-contents .wp-block-heading h1 {
    font-size: 24px !important;
  }
  body.wp-singular.single-post section#single-contents .wp-block-heading.h2, body.wp-singular.single-post section#single-contents .wp-block-heading h2 {
    font-size: 20px !important;
    padding: 10px 15px !important;
  }
  body.wp-singular.single-post section#single-contents .wp-block-heading.h3, body.wp-singular.single-post section#single-contents .wp-block-heading h3 {
    font-size: 18px !important;
  }
  body.wp-singular.single-post section#single-contents .wp-block-heading.h4, body.wp-singular.single-post section#single-contents .wp-block-heading h4 {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  body.wp-singular.single-post section#single-contents .wp-block-heading.h4, body.wp-singular.single-post section#single-contents .wp-block-heading h4 {
    font-size: 3.2rem !important;
  }
}
body.wp-singular.single-post section#single-contents.h1, body.wp-singular.single-post section#single-contents h1 {
  font-size: 28px;
  color: var(--green);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  body.wp-singular.single-post section#single-contents.h1, body.wp-singular.single-post section#single-contents h1 {
    font-size: 24px;
  }
}
body.wp-singular.single-post section#single-contents.h1::after, body.wp-singular.single-post section#single-contents h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}
body.wp-singular.single-post section#single-contents.h2, body.wp-singular.single-post section#single-contents h2 {
  font-size: 22px;
  background-color: var(--green);
  color: #fff;
  padding: 12px 20px;
  margin-top: 50px;
  margin-bottom: 25px;
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  body.wp-singular.single-post section#single-contents.h2, body.wp-singular.single-post section#single-contents h2 {
    font-size: 18px;
  }
}
body.wp-singular.single-post section#single-contents.h3, body.wp-singular.single-post section#single-contents h3 {
  font-size: 20px;
  padding: 5px 0 5px 15px;
  border-left: 4px solid var(--green);
  border-bottom: 1px solid #ddd;
  color: #333;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  body.wp-singular.single-post section#single-contents.h3, body.wp-singular.single-post section#single-contents h3 {
    font-size: 18px;
  }
}
body.wp-singular.single-post section#single-contents.h4, body.wp-singular.single-post section#single-contents h4 {
  font-size: 18px;
  color: var(--green);
  border-bottom: 1px dotted var(--green);
  padding-bottom: 8px;
  margin-top: 35px;
  margin-bottom: 15px;
  font-family: var(--jp-primary-font);
}
body.wp-singular.single-post section#single-contents p {
  margin-bottom: 20px;
  color: #333;
}
body.wp-singular.single-post section#single-contents p a {
  display: inline-block;
  color: var(--green);
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body.wp-singular.single-post section#single-contents p a:hover {
  opacity: 0.7;
}
body.wp-singular.single-post section#single-contents p, body.wp-singular.single-post section#single-contents a, body.wp-singular.single-post section#single-contents li, body.wp-singular.single-post section#single-contents h5, body.wp-singular.single-post section#single-contents h6, body.wp-singular.single-post section#single-contents tr, body.wp-singular.single-post section#single-contents th, body.wp-singular.single-post section#single-contents td {
  font-size: 16px !important;
}
@media screen and (max-width: 750px) {
  body.wp-singular.single-post section#single-contents p, body.wp-singular.single-post section#single-contents a, body.wp-singular.single-post section#single-contents li, body.wp-singular.single-post section#single-contents h5, body.wp-singular.single-post section#single-contents h6, body.wp-singular.single-post section#single-contents tr, body.wp-singular.single-post section#single-contents th, body.wp-singular.single-post section#single-contents td {
    font-size: 3.2rem !important;
    line-height: 1.7 !important;
  }
}
body.wp-singular.single-post section#single-contents .wp-block-image {
  margin: 40px 0;
}
body.wp-singular.single-post section#single-contents .wp-block-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.wp-singular.single-post section#single-contents .wp-block-image figcaption {
  text-align: center;
  font-size: 3.2rem;
  color: #666;
  margin-top: 10px;
}
body.wp-singular.single-post section#single-contents .wp-block-list {
  margin: 30px 0;
  padding-left: 0;
}
body.wp-singular.single-post section#single-contents .wp-block-list .wp-block-list {
  margin-top: 10px !important;
}
body.wp-singular.single-post section#single-contents ul, body.wp-singular.single-post section#single-contents ol {
  padding-left: 0;
}
body.wp-singular.single-post section#single-contents ul li, body.wp-singular.single-post section#single-contents ol li {
  list-style: none;
  font-size: 0.9rem;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-family: var(--jp-primary-font);
}
body.wp-singular.single-post section#single-contents ul li:before, body.wp-singular.single-post section#single-contents ol li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green);
}
body.wp-singular.single-post section#single-contents .wp-block-buttons {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.wp-singular.single-post section#single-contents .wp-block-buttons .wp-block-button {
  margin: 0;
}
body.wp-singular.single-post section#single-contents .wp-block-buttons .wp-block-button__link {
  display: inline-block;
  background-color: var(--green) !important;
  color: #fff !important;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body.wp-singular.single-post section#single-contents .wp-block-buttons .wp-block-button__link:hover {
  opacity: 0.85;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
body.wp-singular.single-post section#single-contents .wp-block-buttons .wp-block-button.has-custom-width {
  max-width: 100%;
}
body.wp-singular.single-post section#single-contents .wp-block-buttons .wp-block-button.has-custom-width.wp-block-button__width-50 {
  width: 50%;
}
body.wp-singular.single-post section#single-button {
  padding-top: 64px;
}
body.wp-singular.single-post section#single-button .section__container {
  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;
}

#case-search {
  padding: 40px 0;
}
#case-search .case-search-form {
  max-width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #case-search .case-search-form {
    width: 90%;
    margin: 16px auto 0;
  }
}
#case-search .case-search-form .search-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #eee;
  overflow: hidden;
}
#case-search .case-search-form .search-input-group .search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  outline: none;
  font-family: var(--jp-secondary-font);
}
#case-search .case-search-form .search-input-group .search-input::-webkit-input-placeholder {
  color: #777;
}
#case-search .case-search-form .search-input-group .search-input::-moz-placeholder {
  color: #777;
}
#case-search .case-search-form .search-input-group .search-input:-ms-input-placeholder {
  color: #777;
}
#case-search .case-search-form .search-input-group .search-input::-ms-input-placeholder {
  color: #777;
}
#case-search .case-search-form .search-input-group .search-input::placeholder {
  color: #777;
}
#case-search .case-search-form .search-input-group .search-btn {
  padding: 15px 20px;
  background: #eee;
  border: none;
  color: #999;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border-left: 1px solid #999;
}
#case-search .case-search-form .search-input-group .search-btn svg {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 750px) {
  #case-search {
    padding: 20px 0;
  }
  #case-search .case-search-form .search-input-group .search-input {
    padding: 12px 15px;
    font-size: 14px;
  }
  #case-search .case-search-form .search-input-group .search-btn {
    padding: 12px 15px;
  }
  #case-search .case-search-form .search-input-group .search-btn svg {
    width: 18px;
    height: 18px;
  }
}

.no-results {
  text-align: center;
  padding: 60px 20px;
}
.no-results p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
.no-results p:last-child {
  margin-bottom: 0;
}
.no-results a {
  color: #99cc0c;
  text-decoration: none;
}
.no-results a:hover {
  text-decoration: underline;
}

body.post-type-archive-case footer, body.tax-case-cat footer {
  margin-top: 240px;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-case footer, body.tax-case-cat footer {
    margin-top: 100px;
  }
}
body.post-type-archive-case section#archive-cat, body.tax-case-cat section#archive-cat {
  padding-top: 64px;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-case section#archive-cat, body.tax-case-cat section#archive-cat {
    padding-top: 32px;
  }
}
body.post-type-archive-case section#archive-cat .archive-cat-buttons, body.tax-case-cat section#archive-cat .archive-cat-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-case section#archive-cat .archive-cat-buttons, body.tax-case-cat section#archive-cat .archive-cat-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  body.post-type-archive-case section#archive-cat .archive-cat-buttons .btn, body.tax-case-cat section#archive-cat .archive-cat-buttons .btn {
    width: 100% !important;
  }
}
body.post-type-archive-case section#archive-desciption p, body.tax-case-cat section#archive-desciption p {
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-case section#archive-desciption p, body.tax-case-cat section#archive-desciption p {
    text-align: left;
  }
}
body.post-type-archive-case section#archive-title, body.tax-case-cat section#archive-title {
  padding-top: 80px;
}
body.post-type-archive-case section#archive-title .common-title-en, body.tax-case-cat section#archive-title .common-title-en {
  line-height: 1;
}
body.post-type-archive-case section#archive-contents, body.tax-case-cat section#archive-contents {
  padding-top: 48px;
}
body.post-type-archive-case section#archive-contents .archive-contents__items, body.tax-case-cat section#archive-contents .archive-contents__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 20px;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-case section#archive-contents .archive-contents__items, body.tax-case-cat section#archive-contents .archive-contents__items {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
body.post-type-archive-case section#archive-contents .archive-contents__item .archive-contents__item-img, body.tax-case-cat section#archive-contents .archive-contents__item .archive-contents__item-img {
  width: 100%;
  aspect-ratio: 4/3;
}
body.post-type-archive-case section#archive-contents .archive-contents__item .archive-contents__item-img img, body.tax-case-cat section#archive-contents .archive-contents__item .archive-contents__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.post-type-archive-case section#archive-contents .archive-contents__item a, body.tax-case-cat section#archive-contents .archive-contents__item a {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
body.post-type-archive-case section#archive-contents .archive-contents__item a:hover, body.tax-case-cat section#archive-contents .archive-contents__item a:hover {
  background-color: #eee;
}
body.post-type-archive-case section#archive-contents .archive-contents__item .archive-contents__item-text, body.tax-case-cat section#archive-contents .archive-contents__item .archive-contents__item-text {
  padding: 10px;
}
body.post-type-archive-case section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date, body.tax-case-cat section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-case section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date, body.tax-case-cat section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-date {
    font-size: 3.2rem;
  }
}
body.post-type-archive-case section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-title, body.tax-case-cat section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-title {
  font-size: 20px;
  font-family: var(--jp-primary-font);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 8px;
  line-height: 1.7;
  color: var(--green);
}
body.post-type-archive-case section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-description, body.tax-case-cat section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-description {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.2;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-case section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-description, body.tax-case-cat section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-description {
    font-size: 3.2rem;
  }
}
body.post-type-archive-case section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-cat, body.tax-case-cat section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-cat {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background-color: rgba(153, 204, 12, 0.4);
  color: var(--green);
  padding: 6px 12px;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  body.post-type-archive-case section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-cat, body.tax-case-cat section#archive-contents .archive-contents__item .archive-contents__item-text .archive-contents__item-cat {
    margin-top: 8px;
    font-size: 2.8rem;
  }
}

body.single-case footer {
  margin-top: 240px;
}
@media screen and (max-width: 750px) {
  body.single-case footer {
    margin-top: 100px;
  }
}
body.single-case section#single-case__desciption {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--bg-color);
}
body.single-case section#single-case__desciption .section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media screen and (max-width: 750px) {
  body.single-case section#single-case__desciption .section__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
body.single-case section#single-case__desciption .single-case__desciption-text {
  margin-top: 40px;
}
body.single-case section#single-case__desciption .single-case__desciption-text .single-case__desciption-title {
  font-size: 24px;
  font-family: var(--jp-primary-font);
  font-weight: 600;
}
body.single-case section#single-case__desciption .single-case__desciption-text .single-case__desciption-description {
  margin-top: 40px;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  body.single-case section#single-case__desciption .single-case__desciption-text .single-case__desciption-description {
    font-size: 3.2rem;
  }
}
body.single-case section#single-case__desciption .single-case__desciption-text .single-case__category {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background-color: rgba(153, 204, 12, 0.4);
  color: var(--green);
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
}
body.single-case section#single-case__desciption .single-case__desciption-img img {
  width: 100%;
  height: auto;
}
body.single-case section.single-case__contents {
  margin-top: 64px;
}
body.single-case section.single-case__contents .single-case__contents-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media screen and (max-width: 750px) {
  body.single-case section.single-case__contents .single-case__contents-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
body.single-case section.single-case__contents .single-case__contents-main .single-case__contents-title .single-case__contents-number {
  font-size: 20px;
  font-family: var(--jp-secondary-font);
  font-weight: 500;
  color: var(--bg-color);
}
body.single-case section.single-case__contents .single-case__contents-main .single-case__contents-title p {
  margin-top: 16px;
  text-align: center;
  font-size: 20px;
  font-family: var(--jp-primary-font);
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  body.single-case section.single-case__contents .single-case__contents-main .single-case__contents-title p {
    line-height: 1.7;
  }
}
body.single-case section.single-case__contents .single-case__contents-main .single-case__contents-img img {
  width: 100%;
  height: auto;
}
body.single-case section.single-case__contents .single-case__contents-text {
  margin-top: 48px;
}
@media screen and (max-width: 750px) {
  body.single-case section.single-case__contents .single-case__contents-text {
    margin-top: 24px;
  }
}
body.single-case section.single-case__contents .single-case__contents-text p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  body.single-case section.single-case__contents .single-case__contents-text p {
    font-size: 3.2rem;
    font-weight: 400;
  }
}
body.single-case section#single-case__detail {
  margin-top: 64px;
}
body.single-case section#single-case__detail .single-case__detail-title-en {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bg-color);
}
body.single-case section#single-case__detail .single-case__detail-title-ja {
  margin-top: 24px;
  font-size: 24px;
  font-family: var(--jp-primary-font);
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  body.single-case section#single-case__detail .single-case__detail-title-ja {
    margin-top: 12px;
    font-size: 20px;
  }
}
body.single-case section#single-case__detail .single-case__detail-table {
  margin-top: 32px;
}
body.single-case section#single-case__detail .single-case__detail-table table {
  width: 100%;
}
body.single-case section#single-case__detail .single-case__detail-table tr {
  width: 100%;
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  body.single-case section#single-case__detail .single-case__detail-table tr {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
body.single-case section#single-case__detail .single-case__detail-table tr th {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  color: var(--bg-color);
  border-bottom: 1px solid var(--bg-color);
  padding: 24px 0 24px 12px;
  text-align: left;
}
@media screen and (max-width: 750px) {
  body.single-case section#single-case__detail .single-case__detail-table tr th {
    font-size: 3.2rem;
    padding: 16px 0 0 4px;
    border-bottom: none;
  }
}
body.single-case section#single-case__detail .single-case__detail-table tr td {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: var(--jp-secondary-font);
  border-bottom: 1px solid #333;
  padding: 24px 0 24px 12px;
  text-align: left;
}
@media screen and (max-width: 750px) {
  body.single-case section#single-case__detail .single-case__detail-table tr td {
    font-size: 3.2rem;
    padding: 8px 0 16px 4px;
  }
}

/*page-privacy.php*/
body.page-id-27 footer {
  margin-top: 240px;
}
@media screen and (max-width: 750px) {
  body.page-id-27 footer {
    margin-top: 100px;
  }
}
body.page-id-27 section.privacy__intro {
  padding-top: 64px;
}
body.page-id-27 section.privacy__intro p {
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  body.page-id-27 section.privacy__intro {
    padding-top: 32px;
  }
}
body.page-id-27 section.privacy__contents .privacy__contents-item {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  body.page-id-27 section.privacy__contents .privacy__contents-item {
    margin-top: 40px;
  }
}
body.page-id-27 section.privacy__contents .privacy__contents-item h3 {
  color: var(--green);
  font-size: 32px;
  font-family: var(--jp-primary-font);
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  body.page-id-27 section.privacy__contents .privacy__contents-item h3 {
    font-size: 20px;
  }
}
body.page-id-27 .privacy__list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
}
body.page-id-27 .privacy__list .privacy__list-item {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 16px;
  font-family: var(--jp-secondary-font);
  letter-spacing: 0.08em;
  color: #333;
  position: relative;
  padding-left: 40px;
}
body.page-id-27 .privacy__list .privacy__list-item .privacy__list-number {
  color: var(--bg-color);
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 750px) {
  body.page-id-27 .privacy__list .privacy__list-item {
    font-size: 3.2rem;
    margin-bottom: 16px;
  }
}
body.page-id-27 .privacy__list .privacy__sublist {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
}
body.page-id-27 .privacy__list .privacy__sublist .privacy__sublist-item {
  margin-bottom: 0px;
  line-height: 1.8;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #666;
  position: relative;
  padding-left: 40px;
}
body.page-id-27 .privacy__list .privacy__sublist .privacy__sublist-item .privacy__sublist-number {
  color: var(--accent-color);
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 750px) {
  body.page-id-27 .privacy__list .privacy__sublist .privacy__sublist-item {
    font-size: 3rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 750px) {
  body.page-id-27 .privacy__list .privacy__sublist {
    margin: 8px 0 0 0;
  }
}
body.page-id-27 .privacy__grid .privacy__grid-container {
  width: 100%;
}
body.page-id-27 .privacy__grid .privacy__grid-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
body.page-id-27 .privacy__grid .privacy__grid-header .privacy__grid-title {
  color: var(--bg-color);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--jp-secondary-font);
  letter-spacing: 0.08em;
  padding: 16px;
  border-bottom: 1px solid var(--bg-color);
}
@media screen and (max-width: 750px) {
  body.page-id-27 .privacy__grid .privacy__grid-header .privacy__grid-title {
    font-size: 3rem;
    padding: 12px 8px;
  }
}
@media screen and (max-width: 750px) {
  body.page-id-27 .privacy__grid .privacy__grid-header {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
body.page-id-27 .privacy__grid .privacy__grid-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
body.page-id-27 .privacy__grid .privacy__grid-content .privacy__grid-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.page-id-27 .privacy__grid .privacy__grid-content .privacy__grid-list .privacy__grid-item {
  padding: 16px;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #333;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  body.page-id-27 .privacy__grid .privacy__grid-content .privacy__grid-list .privacy__grid-item {
    font-size: 2.8rem;
    padding: 12px 8px;
  }
}
@media screen and (max-width: 750px) {
  body.page-id-27 .privacy__grid .privacy__grid-content {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
body.page-id-27 .privacy__contact-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--jp-secondary-font);
}
body.page-id-27 .privacy__contact-table table th, body.page-id-27 .privacy__contact-table table td {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
body.page-id-27 .privacy__contact-table table th {
  border-bottom: 1px solid var(--bg-color);
  color: var(--bg-color);
  font-weight: 600;
  width: 200px;
  padding-right: 24px;
}
body.page-id-27 .privacy__contact-table table td {
  color: #333;
}
@media screen and (max-width: 750px) {
  body.page-id-27 .privacy__contact-table table th, body.page-id-27 .privacy__contact-table table td {
    font-size: 2.8rem;
    padding: 12px 0;
  }
  body.page-id-27 .privacy__contact-table table th {
    width: auto;
    padding-right: 16px;
  }
}

/*page-contact.php,page-contact-complete.php,page-entry.php*/
body.page-id-29 footer, body.page-id-34 footer, body.page-id-36 footer, body.page-template-entry-complete footer {
  margin-top: 240px;
}
@media screen and (max-width: 750px) {
  body.page-id-29 footer, body.page-id-34 footer, body.page-id-36 footer, body.page-template-entry-complete footer {
    margin-top: 100px;
  }
}
body.page-id-29 .common-title-en, body.page-id-34 .common-title-en, body.page-id-36 .common-title-en, body.page-template-entry-complete .common-title-en {
  line-height: 1;
}
body.page-id-29 section#contact__intro .contact__intro-title p, body.page-id-34 section#contact__intro .contact__intro-title p, body.page-id-36 section#contact__intro .contact__intro-title p, body.page-template-entry-complete section#contact__intro .contact__intro-title p {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  font-family: var(--jp-primary-font);
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__intro .contact__intro-title p, body.page-id-34 section#contact__intro .contact__intro-title p, body.page-id-36 section#contact__intro .contact__intro-title p, body.page-template-entry-complete section#contact__intro .contact__intro-title p {
    font-size: 20px;
  }
}
body.page-id-29 section#contact__intro .contact__intro-description, body.page-id-34 section#contact__intro .contact__intro-description, body.page-id-36 section#contact__intro .contact__intro-description, body.page-template-entry-complete section#contact__intro .contact__intro-description {
  margin-top: 24px;
}
body.page-id-29 section#contact__intro .contact__intro-description p, body.page-id-34 section#contact__intro .contact__intro-description p, body.page-id-36 section#contact__intro .contact__intro-description p, body.page-template-entry-complete section#contact__intro .contact__intro-description p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #333;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__intro .contact__intro-description p, body.page-id-34 section#contact__intro .contact__intro-description p, body.page-id-36 section#contact__intro .contact__intro-description p, body.page-template-entry-complete section#contact__intro .contact__intro-description p {
    font-size: 3.2rem;
  }
}
body.page-id-29 section#contact__tel, body.page-id-34 section#contact__tel, body.page-id-36 section#contact__tel, body.page-template-entry-complete section#contact__tel {
  margin-top: 64px;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__tel, body.page-id-34 section#contact__tel, body.page-id-36 section#contact__tel, body.page-template-entry-complete section#contact__tel {
    margin-top: 32px;
  }
}
body.page-id-29 section#contact__tel .top-contact-tel, body.page-id-34 section#contact__tel .top-contact-tel, body.page-id-36 section#contact__tel .top-contact-tel, body.page-template-entry-complete section#contact__tel .top-contact-tel {
  width: 900px;
  margin-top: 0;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__tel .top-contact-tel, body.page-id-34 section#contact__tel .top-contact-tel, body.page-id-36 section#contact__tel .top-contact-tel, body.page-template-entry-complete section#contact__tel .top-contact-tel {
    width: 100%;
  }
}
body.page-id-29 section#contact__form, body.page-id-34 section#contact__form, body.page-id-36 section#contact__form, body.page-template-entry-complete section#contact__form {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form, body.page-id-34 section#contact__form, body.page-id-36 section#contact__form, body.page-template-entry-complete section#contact__form {
    margin-top: 40px;
  }
}
body.page-id-29 section#contact__form .contact__form-box, body.page-id-34 section#contact__form .contact__form-box, body.page-id-36 section#contact__form .contact__form-box, body.page-template-entry-complete section#contact__form .contact__form-box {
  background-color: rgba(153, 204, 12, 0.2);
  border: 1px solid var(--green);
  padding: 40px;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contact__form-box, body.page-id-34 section#contact__form .contact__form-box, body.page-id-36 section#contact__form .contact__form-box, body.page-template-entry-complete section#contact__form .contact__form-box {
    padding: 20px;
  }
}
body.page-id-29 section#contact__form .contact__form-box .contact__form-box-title, body.page-id-34 section#contact__form .contact__form-box .contact__form-box-title, body.page-id-36 section#contact__form .contact__form-box .contact__form-box-title, body.page-template-entry-complete section#contact__form .contact__form-box .contact__form-box-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green);
  font-family: var(--jp-primary-font);
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contact__form-box .contact__form-box-title, body.page-id-34 section#contact__form .contact__form-box .contact__form-box-title, body.page-id-36 section#contact__form .contact__form-box .contact__form-box-title, body.page-template-entry-complete section#contact__form .contact__form-box .contact__form-box-title {
    font-size: 20px;
  }
}
body.page-id-29 section#contact__form .contents-form.form1, body.page-id-34 section#contact__form .contents-form.form1, body.page-id-36 section#contact__form .contents-form.form1, body.page-template-entry-complete section#contact__form .contents-form.form1 {
  width: 1000px;
  max-width: 100%;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item label, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item label, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item label, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 210px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item label, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item label, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item label, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item label {
    font-size: 3.2rem;
    line-height: 1.6;
  }
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item label .required, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item label .required, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item label .required, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item label .required {
  color: #ff4646;
  margin-left: 5px;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio, body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio label, body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox label, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio label, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox label, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio label, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox label, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-radio label, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox label {
  line-height: 1;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0px 20px;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .contents-form__input,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 14px;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input,
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input,
  body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input,
  body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .contents-form__input,
  body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea {
    font-size: 2.8rem;
  }
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input#your-tel,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea#your-tel, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input#your-tel,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea#your-tel, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input#your-tel,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea#your-tel, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .contents-form__input#your-tel,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea#your-tel {
  width: 270px;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input#your-tel,
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea#your-tel, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input#your-tel,
  body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea#your-tel, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input#your-tel,
  body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea#your-tel, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .contents-form__input#your-tel,
  body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea#your-tel {
    width: 100%;
  }
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input:focus,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea:focus, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input:focus,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea:focus, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .contents-form__input:focus,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea:focus, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .contents-form__input:focus,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea:focus {
  outline: none;
  border-color: var(--green);
  background-color: #fff;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__item .contents-form__textarea {
  min-height: 200px;
  resize: vertical;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__button, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__button, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__button, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__button {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit {
  cursor: pointer;
  width: 300px;
  background-color: #fff;
  font-size: 16px;
  padding: 20px 0;
  border: 1px solid var(--green);
  font-family: var(--jp-secondary-font);
  color: #333;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit {
    font-size: 3.2rem;
  }
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit:hover, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit:hover, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit:hover, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__button .contents-form__submit:hover {
  opacity: 0.9;
}
body.page-id-29 section#contact__form .contents-form.form1 .wpcf7-spinner, body.page-id-34 section#contact__form .contents-form.form1 .wpcf7-spinner, body.page-id-36 section#contact__form .contents-form.form1 .wpcf7-spinner, body.page-template-entry-complete section#contact__form .contents-form.form1 .wpcf7-spinner {
  display: none;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item {
  margin: 10px 0;
  display: block;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item,
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item,
  body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item,
  body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item,
  body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item {
    margin: 10px 20px 10px 0px;
    display: inline-block;
  }
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  min-width: auto;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox],
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio],
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox],
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio], body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox],
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio],
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox],
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio], body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox],
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio],
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox],
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio], body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox],
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio],
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox],
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:before,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:before,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:before,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:before, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:before,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:before,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:before,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:before, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:before,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:before,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:before,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:before, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:before,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:before,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:before,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:before {
  background-color: var(--green);
  border-color: var(--green);
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:after,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:after, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:after,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:after, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:after,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:after, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:after,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:after,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:after, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:after,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:after, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:after,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:after, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:after,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label {
  padding-left: 30px;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label,
  body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label,
  body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label,
  body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label,
  body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label {
    padding-left: 25px;
  }
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label:before,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label:before, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label:before,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label:before, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label:before,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label:before, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label .wpcf7-list-item-label:before,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 1px solid #ddd;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox] + .wpcf7-list-item-label:before,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox] + .wpcf7-list-item-label:before, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox] + .wpcf7-list-item-label:before,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox] + .wpcf7-list-item-label:before, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox] + .wpcf7-list-item-label:before,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox] + .wpcf7-list-item-label:before, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=checkbox] + .wpcf7-list-item-label:before,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=checkbox] + .wpcf7-list-item-label:before {
  border-radius: 3px;
}
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio] + .wpcf7-list-item-label:before,
body.page-id-29 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio] + .wpcf7-list-item-label:before, body.page-id-34 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio] + .wpcf7-list-item-label:before,
body.page-id-34 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio] + .wpcf7-list-item-label:before, body.page-id-36 section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio] + .wpcf7-list-item-label:before,
body.page-id-36 section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio] + .wpcf7-list-item-label:before, body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__checkbox-group .wpcf7-list-item label input[type=radio] + .wpcf7-list-item-label:before,
body.page-template-entry-complete section#contact__form .contents-form.form1 .contents-form__radio-group .wpcf7-list-item label input[type=radio] + .wpcf7-list-item-label:before {
  border-radius: 50%;
}
body.page-id-29 section#contact__form .contents-form.form1 .form-confirmation, body.page-id-34 section#contact__form .contents-form.form1 .form-confirmation, body.page-id-36 section#contact__form .contents-form.form1 .form-confirmation, body.page-template-entry-complete section#contact__form .contents-form.form1 .form-confirmation {
  background: #eee;
  padding: 40px 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}
body.page-id-29 section#contact__form .contents-form.form1 .form-confirmation h3, body.page-id-34 section#contact__form .contents-form.form1 .form-confirmation h3, body.page-id-36 section#contact__form .contents-form.form1 .form-confirmation h3, body.page-template-entry-complete section#contact__form .contents-form.form1 .form-confirmation h3 {
  margin-bottom: 20px;
  text-align: center;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 500;
}
body.page-id-29 section#contact__form .contents-form.form1 .form-confirmation dl, body.page-id-34 section#contact__form .contents-form.form1 .form-confirmation dl, body.page-id-36 section#contact__form .contents-form.form1 .form-confirmation dl, body.page-template-entry-complete section#contact__form .contents-form.form1 .form-confirmation dl {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 20px 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contents-form.form1 .form-confirmation dl, body.page-id-34 section#contact__form .contents-form.form1 .form-confirmation dl, body.page-id-36 section#contact__form .contents-form.form1 .form-confirmation dl, body.page-template-entry-complete section#contact__form .contents-form.form1 .form-confirmation dl {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px 0;
  }
}
body.page-id-29 section#contact__form .contents-form.form1 .form-confirmation dt, body.page-id-34 section#contact__form .contents-form.form1 .form-confirmation dt, body.page-id-36 section#contact__form .contents-form.form1 .form-confirmation dt, body.page-template-entry-complete section#contact__form .contents-form.form1 .form-confirmation dt {
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__form .contents-form.form1 .form-confirmation dt, body.page-id-34 section#contact__form .contents-form.form1 .form-confirmation dt, body.page-id-36 section#contact__form .contents-form.form1 .form-confirmation dt, body.page-template-entry-complete section#contact__form .contents-form.form1 .form-confirmation dt {
    margin-top: 20px;
  }
}
body.page-id-29 section#contact__form .contents-form.form1 .form-confirmation dd, body.page-id-34 section#contact__form .contents-form.form1 .form-confirmation dd, body.page-id-36 section#contact__form .contents-form.form1 .form-confirmation dd, body.page-template-entry-complete section#contact__form .contents-form.form1 .form-confirmation dd {
  white-space: normal; /* 長いテキストを折り返し */
  line-height: 1.8; /* 行間を広めに */
}
body.page-id-29 section#contact__form .contents-form.form1 .confirmation-buttons, body.page-id-34 section#contact__form .contents-form.form1 .confirmation-buttons, body.page-id-36 section#contact__form .contents-form.form1 .confirmation-buttons, body.page-template-entry-complete section#contact__form .contents-form.form1 .confirmation-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
body.page-id-29 section#contact__form .contents-form.form1 .back-button, body.page-id-29 section#contact__form .contents-form.form1 .send-button, body.page-id-34 section#contact__form .contents-form.form1 .back-button, body.page-id-34 section#contact__form .contents-form.form1 .send-button, body.page-id-36 section#contact__form .contents-form.form1 .back-button, body.page-id-36 section#contact__form .contents-form.form1 .send-button, body.page-template-entry-complete section#contact__form .contents-form.form1 .back-button, body.page-template-entry-complete section#contact__form .contents-form.form1 .send-button {
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
body.page-id-29 section#contact__form .contents-form.form1 .back-button, body.page-id-34 section#contact__form .contents-form.form1 .back-button, body.page-id-36 section#contact__form .contents-form.form1 .back-button, body.page-template-entry-complete section#contact__form .contents-form.form1 .back-button {
  background: #ccc;
  cursor: pointer;
}
body.page-id-29 section#contact__form .contents-form.form1 .send-button, body.page-id-34 section#contact__form .contents-form.form1 .send-button, body.page-id-36 section#contact__form .contents-form.form1 .send-button, body.page-template-entry-complete section#contact__form .contents-form.form1 .send-button {
  background: var(--green);
  color: white;
  cursor: pointer;
}
body.page-id-29 section#contact__buttons, body.page-id-34 section#contact__buttons, body.page-id-36 section#contact__buttons, body.page-template-entry-complete section#contact__buttons {
  margin-top: 64px;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__buttons, body.page-id-34 section#contact__buttons, body.page-id-36 section#contact__buttons, body.page-template-entry-complete section#contact__buttons {
    margin-top: 32px;
  }
}
body.page-id-29 section#contact__buttons .section__container, body.page-id-34 section#contact__buttons .section__container, body.page-id-36 section#contact__buttons .section__container, body.page-template-entry-complete section#contact__buttons .section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
body.page-id-29 section#contact__buttons .section__container .btn.download, body.page-id-34 section#contact__buttons .section__container .btn.download, body.page-id-36 section#contact__buttons .section__container .btn.download, body.page-template-entry-complete section#contact__buttons .section__container .btn.download {
  width: 400px;
  padding: 8px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(153, 204, 12, 0.2)), to(rgba(150, 150, 150, 0.2)));
  background: linear-gradient(to right, rgba(153, 204, 12, 0.2), rgba(150, 150, 150, 0.2));
  color: var(--green);
  border: none;
}
@media screen and (max-width: 750px) {
  body.page-id-29 section#contact__buttons .section__container .btn, body.page-id-34 section#contact__buttons .section__container .btn, body.page-id-36 section#contact__buttons .section__container .btn, body.page-template-entry-complete section#contact__buttons .section__container .btn {
    width: 100% !important;
  }
}

body.page-template-company .strengths-mission {
  padding-bottom: 2rem;
}
body.page-template-company .strengths-mission-box {
  padding: 70px 0;
}
body.page-template-company .strengths-mission-ttl {
  font-size: max(3.2rem, 44px);
  font-weight: 600;
  text-align: center;
  color: var(--green);
}
@media screen and (max-width: 750px) {
  body.page-template-company .strengths-mission-ttl {
    font-size: max(2.8rem, 28px);
  }
}
body.page-template-company .company__about {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media screen and (max-width: 750px) {
  body.page-template-company .company__about {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
body.page-template-company .company__about .company__about-image img {
  width: 100%;
  height: auto;
}
body.page-template-company .company__about .company__about-text {
  width: 80%;
}
@media screen and (max-width: 750px) {
  body.page-template-company .company__about .company__about-text {
    width: 100%;
  }
}
body.page-template-company .company__about .company__about-text .company__about-title {
  font-size: max(2.8rem, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 4rem;
  font-family: var(--jp-primary-font);
}
body.page-template-company .company__about .company__about-text .company__about-description {
  font-size: max(16px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths {
    padding-top: 100px;
  }
}
body.page-template-company section.strengths .strengths-outer {
  max-width: none;
}
body.page-template-company section.strengths .strengths-outer .strengths-box {
  max-width: none;
}
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 {
  padding-left: 0;
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 {
    margin-left: 3rem;
    padding-top: 64px;
  }
}
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .strengths-box-1-container {
  width: 95%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 2520px) {
  body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .strengths-box-1-container {
    margin-right: auto;
    max-width: 1920px;
  }
}
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box,
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box2 {
  background-color: rgba(153, 204, 12, 0.2);
  padding: 64px;
  width: 80%;
  margin-left: auto;
  margin-right: 10%;
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box,
  body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box2 {
    padding: 12px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box .company__greeting-title,
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box2 .company__greeting-title {
  font-size: max(20px, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-family: var(--jp-primary-font);
  text-align: center;
  color: var(--green);
}
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box ul,
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box2 ul {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box ul,
  body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box2 ul {
    margin-top: 12px;
  }
}
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box ul li,
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box2 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  font-size: max(14px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box ul li,
  body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box2 ul li {
    margin-top: 12px;
    line-height: 1.5;
  }
}
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box ul li span,
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box2 ul li span {
  font-size: max(18px, 2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  width: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: var(--en-primary-font);
}
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box ul li span.dot,
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box2 ul li span.dot {
  color: #777;
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box ul li span,
  body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box2 ul li span {
    line-height: 1.5;
  }
}
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box-1 .company__greeting-box2 {
  margin-top: 40px;
}
body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box--mod {
  margin-bottom: 180px;
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .strengths-outer .strengths-box.strengths-box--mod {
    margin-bottom: 90px;
  }
}
body.page-template-company section.strengths .strengths-outer .strengths-box .strengths-box-en {
  line-height: 1;
}
body.page-template-company section.strengths .strengths-outer .strengths-box .strengths-box-ttl {
  font-size: max(22px, 4rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 4rem;
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .strengths-outer .strengths-box .strengths-box-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .strengths-outer .strengths-box .strengths-box-content .strengths-box-content-inner {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .strengths-outer .strengths-box .strengths-box-content .strengths-box-content-inner p {
    font-size: max(14px, 1.8rem);
  }
}
body.page-template-company section.strengths .strengths-outer .strengths-box .strengths-box-content .strengths-box-content-inner p .name {
  margin-top: 30px;
  display: block;
  text-align: right;
  color: var(--green);
  font-size: max(16px, 2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .strengths-outer .strengths-box .strengths-box-content .strengths-box-content-img {
    width: 100%;
  }
}
body.page-template-company section.strengths .company__history .company__history-items {
  position: relative;
}
body.page-template-company section.strengths .company__history .company__history-items::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ddd;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .company__history .company__history-items::before {
    left: 0;
  }
}
body.page-template-company section.strengths .company__history .company__history-items .company__history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .company__history .company__history-items .company__history-item {
    padding-left: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 30px;
  }
}
body.page-template-company section.strengths .company__history .company__history-items .company__history-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .company__history .company__history-items .company__history-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
body.page-template-company section.strengths .company__history .company__history-items .company__history-item:nth-child(even) .company__history-item-text {
  text-align: right;
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .company__history .company__history-items .company__history-item:nth-child(even) .company__history-item-text {
    text-align: left;
  }
}
body.page-template-company section.strengths .company__history .company__history-items .company__history-item:nth-child(even) .company__history-item-inner {
  padding-left: 50px !important;
  padding-right: 10px !important;
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .company__history .company__history-items .company__history-item:nth-child(even) .company__history-item-inner {
    border-radius: 0 30px 30px 0;
  }
}
body.page-template-company section.strengths .company__history .company__history-items .company__history-item:nth-child(odd) .company__history-item-inner {
  padding-left: 10px !important;
  padding-right: 50px !important;
  border-radius: 0 30px 30px 0;
}
body.page-template-company section.strengths .company__history .company__history-items .company__history-item .company__history-item-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 10px 40px;
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .company__history .company__history-items .company__history-item .company__history-item-text {
    margin: 30px 0;
  }
}
body.page-template-company section.strengths .company__history .company__history-items .company__history-item .company__history-item-text .company__history-item-inner {
  display: inline-block;
  background-color: #969696;
  width: auto;
}
body.page-template-company section.strengths .company__history .company__history-items .company__history-item .company__history-item-text .company__history-item-title {
  font-size: max(20px, 3.2rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--en-primary-font);
}
body.page-template-company section.strengths .company__history .company__history-items .company__history-item .company__history-item-text .company__history-item-description {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  body.page-template-company section.strengths .company__history .company__history-items .company__history-item .company__history-item-text .company__history-item-description {
    margin-top: 10px;
  }
}
body.page-template-company section.strengths .company__history .company__history-items .company__history-item .company__history-item-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
body.page-template-company section.strengths .company__history .company__history-items .company__history-item .company__history-item-image img {
  display: none;
  width: 100%;
  height: auto;
}
body.page-template-company section.strengths .company__group .company__group-description {
  margin-top: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
}
body.page-template-company section.strengths .company__group .page-content-right-title {
  font-size: max(20px, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-family: var(--jp-primary-font);
}
body.page-template-company section.strengths .company__group h4.page-outer-title img {
  display: block;
  margin: 24px auto 0;
  width: 70px;
  height: auto;
}
body.page-template-company section.strengths .company__group a.page-content-right-link {
  margin-top: 24px;
  position: relative;
  display: inline-block;
  color: var(--bg-color);
  border-bottom: 1px solid var(--bg-color);
  padding: 0 8px 12px;
  font-size: max(14px, 1.6rem);
  font-family: var(--jp-secondary-font);
}
body.page-template-company section.strengths .company__group a.page-content-right-link img {
  width: 20px;
  height: auto;
  margin-right: 8px;
}
body.page-template-company section.strengths .company__group a.page-content-right-link span {
  display: block;
  position: absolute;
  right: -40px;
  top: 42%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-color);
}
body.page-template-company section.strengths .company__group a.page-content-right-link svg {
  position: absolute;
  right: -37px;
  top: 44%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
body.page-template-company section.strengths .company__group .page-table {
  margin-top: 32px;
}
body.page-template-company section.strengths .company__group .page-table ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  font-size: max(14px, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
  gap: 10px;
}
body.page-template-company section.strengths .company__group .page-table ul li span {
  font-size: max(14px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--bg-color);
}

body.page-template-factory .strengths-precision-equipment-table-box {
  margin-top: 48px;
}
@media screen and (max-width: 750px) {
  body.page-template-factory .strengths-precision-equipment-table-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 32px;
  }
}
@media screen and (max-width: 750px) {
  body.page-template-factory .strengths-precision-equipment-table {
    min-width: 700px;
  }
  body.page-template-factory .strengths-precision-equipment-table th, body.page-template-factory .strengths-precision-equipment-table td {
    font-size: 2.4rem;
    padding: 1.6rem 1.2rem;
  }
  body.page-template-factory .strengths-precision-equipment-table td {
    text-align: left;
  }
}
body.page-template-factory .strengths-precision-equipment-table th:nth-child(1) {
  width: 23%;
}
body.page-template-factory .strengths-precision-equipment-table th:nth-child(2) {
  width: 23%;
}
body.page-template-factory .strengths-precision-equipment-table th:nth-child(3) {
  width: 44%;
}
body.page-template-factory .strengths-precision-equipment-table th:nth-child(4) {
  width: 8%;
}
body.page-template-factory .strengths-mission {
  padding-bottom: 2rem;
}
body.page-template-factory .strengths-mission-box {
  padding: 70px 0;
}
body.page-template-factory .strengths-mission-ttl {
  font-size: max(3.2rem, 44px);
  font-weight: 600;
  text-align: center;
  color: var(--green);
}
@media screen and (max-width: 750px) {
  body.page-template-factory .strengths-mission-ttl {
    font-size: max(2.8rem, 28px);
  }
}
body.page-template-factory .factory__about {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media screen and (max-width: 750px) {
  body.page-template-factory .factory__about {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
}
body.page-template-factory .factory__about .factory__about-image img {
  width: 100%;
  height: auto;
}
body.page-template-factory .factory__about .factory__about-text {
  width: 80%;
}
@media screen and (max-width: 750px) {
  body.page-template-factory .factory__about .factory__about-text {
    width: 100%;
  }
}
body.page-template-factory .factory__about .factory__about-text .factory__about-title {
  font-size: max(2.8rem, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 4rem;
  font-family: var(--jp-primary-font);
}
body.page-template-factory .factory__about .factory__about-text .factory__about-description {
  font-size: max(16px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: var(--jp-secondary-font);
}
body.page-template-factory .factory__case {
  width: 90%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  body.page-template-factory .factory__case {
    width: 100%;
  }
}
body.page-template-factory .factory__case .factory__case-items .factory__case-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  height: 100%;
}
body.page-template-factory .factory__case .factory__case-items .factory__case-item .factory__case-item-image img {
  width: 100%;
  height: auto;
}
body.page-template-factory .factory__case .factory__case-items .factory__case-item .factory__case-item-text {
  background-color: rgba(153, 204, 12, 0.2);
  padding: 32px 16px 48px;
  position: relative;
}
body.page-template-factory .factory__case .factory__case-items .factory__case-item .factory__case-item-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  border-top: 1px solid var(--bg-color);
  border-left: 1px solid var(--bg-color);
}
@media screen and (max-width: 750px) {
  body.page-template-factory .factory__case .factory__case-items .factory__case-item .factory__case-item-text:before {
    width: 40%;
    height: 40%;
  }
}
body.page-template-factory .factory__case .factory__case-items .factory__case-item .factory__case-item-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  border-bottom: 1px solid var(--bg-color);
  border-right: 1px solid var(--bg-color);
}
@media screen and (max-width: 750px) {
  body.page-template-factory .factory__case .factory__case-items .factory__case-item .factory__case-item-text:after {
    width: 40%;
    height: 40%;
  }
}
body.page-template-factory .factory__case .factory__case-items .factory__case-item .factory__case-item-text .factory__case-item-title {
  font-size: max(20px, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  text-align: center;
  color: var(--green);
  font-family: var(--jp-primary-font);
}
body.page-template-factory .factory__case .factory__case-items .factory__case-item .factory__case-item-text ul {
  margin-top: 16px;
}
body.page-template-factory .factory__case .factory__case-items .factory__case-item .factory__case-item-text ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  font-size: max(14px, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  font-family: var(--jp-secondary-font);
}
body.page-template-factory .factory__case .factory__case-items .factory__case-item .factory__case-item-text ul li span {
  font-size: max(18px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media screen and (min-width: 751px) {
  body.page-template-factory .factory__case .swiper {
    overflow: visible !important;
  }
  body.page-template-factory .factory__case .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  body.page-template-factory .factory__case .swiper-slide {
    width: auto !important;
    height: auto !important;
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }
  body.page-template-factory .factory__case .swiper-pagination,
  body.page-template-factory .factory__case .swiper-button-next,
  body.page-template-factory .factory__case .swiper-button-prev {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  body.page-template-factory .factory__case .swiper {
    overflow: hidden;
  }
  body.page-template-factory .factory__case .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  body.page-template-factory .factory__case .swiper-slide {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
  }
  body.page-template-factory .factory__case .swiper-pagination {
    position: relative;
    margin-top: 2rem;
    text-align: center;
  }
  body.page-template-factory .factory__case .swiper-button-next,
  body.page-template-factory .factory__case .swiper-button-prev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 6rem;
    height: 6rem;
    background-color: var(--green);
    border-radius: 50%;
    z-index: 10;
  }
  body.page-template-factory .factory__case .swiper-button-next::after,
  body.page-template-factory .factory__case .swiper-button-prev::after {
    font-size: 2rem;
    color: #fff;
  }
  body.page-template-factory .factory__case .swiper-button-next {
    right: 0rem;
  }
  body.page-template-factory .factory__case .swiper-button-prev {
    left: 0rem;
  }
}
body.page-template-factory .contents-6__icon {
  margin-top: 30px;
  border: 1px solid var(--bg-color);
  padding: 20px 50px;
  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;
  gap: 20px;
}
@media screen and (max-width: 750px) {
  body.page-template-factory .contents-6__icon {
    padding: 20px 10px;
    gap: 10px;
  }
}
body.page-template-factory .contents-6__icon p {
  font-size: max(16px, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--green);
  font-family: var(--jp-primary-font);
}
body.page-template-factory .contents-6__icon img {
  width: 120px;
  height: auto;
}
@media screen and (max-width: 750px) {
  body.page-template-factory .contents-6__icon img {
    width: 70px;
  }
}

body.page-template-recruit .strengths-mission {
  padding-bottom: 2rem;
  padding-top: 220px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .strengths-mission {
    padding-top: 90px;
  }
}
body.page-template-recruit .strengths-mission-box {
  padding: 70px 0;
}
body.page-template-recruit .strengths-mission-ttl {
  font-size: max(3.2rem, 44px);
  font-weight: 600;
  text-align: center;
  color: var(--green);
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .strengths-mission-ttl {
    font-size: max(2.8rem, 28px);
  }
}
body.page-template-recruit .recruit__message1 {
  margin-top: 64px;
  position: relative;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__message1 {
    margin-top: 32px;
  }
}
body.page-template-recruit .recruit__message1 .recruit__message1-image {
  width: 60%;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__message1 .recruit__message1-image {
    width: 100%;
  }
}
body.page-template-recruit .recruit__message1 .recruit__message1-image img {
  width: 100%;
  height: auto;
}
body.page-template-recruit .recruit__message1 .recruit__message1-text {
  width: 60%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
  padding: 64px 5% 64px 48px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__message1 .recruit__message1-text {
    width: 100%;
    position: relative;
    padding: 0;
    margin-top: 20px;
  }
}
body.page-template-recruit .recruit__message1 .recruit__message1-text .recruit__message1-title {
  font-size: max(20px, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 4rem;
  font-family: var(--jp-primary-font);
}
body.page-template-recruit .recruit__message1 .recruit__message1-text .recruit__message1-description {
  font-size: max(16px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.4;
  font-family: var(--jp-secondary-font);
}
body.page-template-recruit .recruit__message2 {
  width: 80%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__message2 {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__message2 .recruit__message2-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
body.page-template-recruit .recruit__message2 .recruit__message2-image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__message2 .recruit__message2-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
body.page-template-recruit .recruit__message2 .recruit__message2-text .recruit__message2-title {
  font-size: max(20px, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 4rem;
  font-family: var(--jp-primary-font);
}
body.page-template-recruit .recruit__message2 .recruit__message2-text .recruit__message2-description {
  font-size: max(16px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.4;
  font-family: var(--jp-secondary-font);
}
body.page-template-recruit .recruit__data .recruit__data-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__data .recruit__data-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
body.page-template-recruit .recruit__data .recruit__data-items .recruit__data-item {
  background-color: rgba(153, 204, 12, 0.2);
  padding: 16px;
  border-radius: 0 32px 0 0;
}
body.page-template-recruit .recruit__data .recruit__data-items .recruit__data-item .recruit__data-item-title {
  background-color: #fff;
  border-radius: 32px 48px;
  text-align: center;
  line-height: 1;
  padding: 16px 0;
  color: var(--green);
  font-weight: 600;
  font-family: var(--jp-secondary-font);
  font-size: max(16px, 1.6rem);
}
body.page-template-recruit .recruit__data .recruit__data-items .recruit__data-item .recruit__data-item-number {
  font-family: var(--en-primary-font);
  font-size: max(24px, 5.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: var(--green);
  text-align: center;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__data .recruit__data-items .recruit__data-item .recruit__data-item-number {
    margin: 16px 0;
    line-height: 1.15;
  }
}
body.page-template-recruit .recruit__data .recruit__data-items .recruit__data-item .recruit__data-item-number span {
  font-size: max(18px, 1.8rem);
  margin-left: 4px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-family: var(--jp-secondary-font);
}
body.page-template-recruit .recruit__data .recruit__data-items .recruit__data-item img {
  margin: 0 auto;
  display: block;
  height: 100px;
  width: auto;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__data .recruit__data-items .recruit__data-item img {
    height: 50px;
  }
}
body.page-template-recruit .recruit__future {
  width: 80%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__future {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__future .recruit__future-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
body.page-template-recruit .recruit__future .recruit__future-image .recruit__future-swiper {
  width: calc(100% + 6.8rem);
  position: relative;
  left: -7.4rem;
  max-width: none;
}
body.page-template-recruit .recruit__future .recruit__future-image .recruit__future-swiper .swiper-slide {
  width: 100% !important;
}
body.page-template-recruit .recruit__future .recruit__future-image .recruit__future-swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
body.page-template-recruit .recruit__future .recruit__future-image .recruit__future-swiper .swiper-pagination {
  display: none !important;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
body.page-template-recruit .recruit__future .recruit__future-image .recruit__future-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 6px;
}
body.page-template-recruit .recruit__future .recruit__future-image .recruit__future-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--green);
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__future .recruit__future-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
body.page-template-recruit .recruit__future .recruit__future-text .recruit__future-title {
  font-size: max(20px, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 4rem;
  font-family: var(--jp-primary-font);
}
body.page-template-recruit .recruit__future .recruit__future-text .recruit__future-description {
  font-size: max(16px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.4;
  font-family: var(--jp-secondary-font);
}
body.page-template-recruit .recruit__benefit .recruit__benefit-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__benefit .recruit__benefit-items {
    grid-template-columns: repeat(1, 1fr);
  }
}
body.page-template-recruit .recruit__benefit .recruit__benefit-items .recruit__benefit-item {
  margin-bottom: 50px;
}
body.page-template-recruit .recruit__benefit .recruit__benefit-items .recruit__benefit-item:last-child {
  margin-bottom: 0;
}
body.page-template-recruit .recruit__benefit .recruit__benefit-items .recruit__benefit-item .recruit__benefit-item-image img {
  width: 100%;
  height: auto;
}
body.page-template-recruit .recruit__benefit .recruit__benefit-items .recruit__benefit-item .recruit__benefit-item-num {
  margin-top: -30px;
  margin-left: 30px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__benefit .recruit__benefit-items .recruit__benefit-item .recruit__benefit-item-num {
    margin-left: 0;
  }
}
body.page-template-recruit .recruit__benefit .recruit__benefit-items .recruit__benefit-item .recruit__benefit-item-title {
  margin-top: 20px;
  font-size: max(20px, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 2rem;
}
body.page-template-recruit .recruit__benefit .recruit__benefit-items .recruit__benefit-item .recruit__benefit-item-description {
  font-size: max(16px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.4;
}
body.page-template-recruit .recruit__attraction,
body.page-template-recruit .recruit__attraction2 {
  width: 80%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__attraction,
  body.page-template-recruit .recruit__attraction2 {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__attraction .recruit__attraction-image,
  body.page-template-recruit .recruit__attraction2 .recruit__attraction-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
body.page-template-recruit .recruit__attraction .recruit__attraction-image img,
body.page-template-recruit .recruit__attraction2 .recruit__attraction-image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__attraction .recruit__attraction-text,
  body.page-template-recruit .recruit__attraction2 .recruit__attraction-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
body.page-template-recruit .recruit__attraction .recruit__attraction-text .recruit__attraction-num,
body.page-template-recruit .recruit__attraction2 .recruit__attraction-text .recruit__attraction-num {
  font-size: max(16px, 2.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.4;
  font-family: var(--jp-secondary-font);
  color: var(--bg-color);
}
body.page-template-recruit .recruit__attraction .recruit__attraction-text .recruit__attraction-num span,
body.page-template-recruit .recruit__attraction2 .recruit__attraction-text .recruit__attraction-num span {
  margin-left: 4px;
  font-size: max(24px, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2.4;
  font-family: var(--en-primary-font);
}
body.page-template-recruit .recruit__attraction .recruit__attraction-text .recruit__attraction-title,
body.page-template-recruit .recruit__attraction2 .recruit__attraction-text .recruit__attraction-title {
  font-size: max(20px, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__attraction .recruit__attraction-text .recruit__attraction-title,
  body.page-template-recruit .recruit__attraction2 .recruit__attraction-text .recruit__attraction-title {
    margin-bottom: 4rem;
  }
}
body.page-template-recruit .recruit__attraction .recruit__attraction-text .recruit__attraction-description,
body.page-template-recruit .recruit__attraction2 .recruit__attraction-text .recruit__attraction-description {
  font-size: max(16px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.4;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__attraction .recruit__attraction-text .recruit__attraction-description,
  body.page-template-recruit .recruit__attraction2 .recruit__attraction-text .recruit__attraction-description {
    line-height: 1.75;
  }
}
body.page-template-recruit .recruit__attraction .recruit__attraction-text .page-title02,
body.page-template-recruit .recruit__attraction2 .recruit__attraction-text .page-title02 {
  margin-top: 20px;
  width: 100% !important;
}
body.page-template-recruit .recruit__attraction .recruit__attraction-text .page-title02 .page-title02-txt,
body.page-template-recruit .recruit__attraction2 .recruit__attraction-text .page-title02 .page-title02-txt {
  font-size: max(16px, 1.6rem) !important;
  font-weight: 500;
  text-align: center;
}
body.page-template-recruit .w-auto {
  width: auto !important;
}
body.page-template-recruit .recruit__interview {
  position: relative;
}
body.page-template-recruit .recruit__interview .recruit__interview-swiper {
  width: 100%;
  overflow: hidden;
}
body.page-template-recruit .recruit__interview .recruit__interview-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
body.page-template-recruit .recruit__interview .recruit__interview-swiper .swiper-slide {
  width: 100% !important;
  opacity: 0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}
body.page-template-recruit .recruit__interview .recruit__interview-swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
  position: relative !important;
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header .recruit__interview-header-image img {
  width: 100%;
  height: auto;
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header .recruit__interview-header-text .recruit__interview-header-text-position {
  position: relative;
  left: -140px;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header .recruit__interview-header-text .recruit__interview-header-text-position {
    left: 0;
    margin-bottom: 10px;
  }
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header .recruit__interview-header-text .recruit__interview-header-text-position .page-title02 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 560px !important;
  padding: 5px 0;
  padding-left: 60px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header .recruit__interview-header-text .recruit__interview-header-text-position .page-title02 {
    width: 100% !important;
    padding-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header .recruit__interview-header-text .recruit__interview-header-text-name {
  font-size: max(24px, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: var(--green);
  font-family: var(--jp-primary-font);
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header .recruit__interview-header-text .recruit__interview-header-text-name {
    text-align: center;
  }
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header .recruit__interview-header-text .recruit__interview-header-text-faq {
  margin-top: 16px;
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header .recruit__interview-header-text .recruit__interview-header-text-faq .recruit__interview-header-text-faq-title {
  font-size: max(18px, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: var(--green);
  font-family: var(--jp-primary-font);
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-header .recruit__interview-header-text .recruit__interview-header-text-faq .recruit__interview-header-text-faq-description {
  margin-top: 24px;
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-content {
  margin-top: 64px;
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-content .recruit__interview-content-title {
  width: 100% !important;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 60px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-content .recruit__interview-content-title {
    padding-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-content .recruit__interview-content-title .page-title02-txt {
  font-size: max(14px, 2rem) !important;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-content .recruit__interview-content-title .page-title02-bg {
    width: 100%;
  }
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-content .recruit__interview-content-items {
  padding: 0 12px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-content .recruit__interview-content-items {
    padding: 0;
  }
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-content .recruit__interview-content-items .recruit__interview-content-item {
  margin-top: 32px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-content .recruit__interview-content-items .recruit__interview-content-item {
    margin-top: 24px;
  }
}
body.page-template-recruit .recruit__interview .recruit__interview-item .recruit__interview-content .recruit__interview-content-items .recruit__interview-content-item .recruit__interview-content-item-title {
  font-weight: 600;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  margin-bottom: 12px;
  padding-bottom: 12px;
}
body.page-template-recruit .recruit__interview .recruit__interview-pagination {
  position: absolute;
  top: -60px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__interview .recruit__interview-pagination {
    top: 0;
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 32px;
  }
}
body.page-template-recruit .recruit__interview .recruit__interview-pagination .recruit__interview-pagination-fraction {
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  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;
  font-size: max(16px, 1.8rem);
  font-weight: 600;
  color: var(--bg-color);
  font-family: var(--en-primary-font);
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__interview .recruit__interview-pagination .recruit__interview-pagination-fraction {
    width: 80px;
    height: 80px;
  }
}
body.page-template-recruit .recruit__interview .recruit__interview-pagination .recruit__interview-pagination-fraction .current {
  position: relative;
  top: -8px;
  left: -8px;
}
body.page-template-recruit .recruit__interview .recruit__interview-pagination .recruit__interview-pagination-fraction .total {
  position: relative;
  bottom: -8px;
  right: -8px;
}
body.page-template-recruit .recruit__interview .recruit__interview-pagination .recruit__interview-navigation {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
body.page-template-recruit .recruit__interview .recruit__interview-pagination .recruit__interview-navigation button {
  background: #fff;
  border: 2px solid var(--bg-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  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;
  cursor: pointer;
  font-size: 20px;
  color: var(--bg-color);
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__interview .recruit__interview-pagination .recruit__interview-navigation button {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
body.page-template-recruit .recruit__interview .recruit__interview-pagination .recruit__interview-navigation button:hover {
  background: var(--bg-color);
  color: #fff;
}
body.page-template-recruit .recruit__interview .recruit__interview-pagination .recruit__interview-navigation button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
body.page-template-recruit .recruit__details .recruit__details-buttons {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__details .recruit__details-buttons {
    margin-top: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body.page-template-recruit .recruit__details .recruit__details-buttons .btn {
  width: 280px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__details .recruit__details-buttons .btn {
    width: 100%;
  }
}
body.page-template-recruit .recruit__details .recruit__details-buttons .btn a {
  padding: 16px 0;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__details .recruit__details-buttons .btn a {
    padding: 8px 0;
  }
}
body.page-template-recruit .recruit__details .recruit__details-buttons .btn a .btn-txt {
  font-size: max(14px, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.75;
  color: #fff;
}
body.page-template-recruit .recruit__details .recruit__details-buttons .btn a .btn-bg {
  background: var(--bg-color);
  color: #fff;
  opacity: 1;
}
body.page-template-recruit .recruit__details .recruit__details-items {
  margin-top: 64px;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__details .recruit__details-items {
    margin-top: 32px;
  }
}
body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .recruit__details-item-title {
  font-size: max(20px, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: var(--green);
}
body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .recruit__details-item-description {
  font-size: max(16px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.4;
}
body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .page-table table td ul li {
  line-height: 2;
}
body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .page-table table td ul li span {
  color: var(--bg-color);
  margin-right: 8px;
  font-size: max(16px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.4;
}
body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .recruit__details-text {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .recruit__details-text {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .recruit__details-text .recruit__details-text-item .recruit__details-text-title {
  font-size: max(18px, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: var(--green);
  font-family: var(--jp-primary-font);
}
body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .recruit__details-text .recruit__details-text-item .recruit__details-text-description {
  font-size: max(14px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}
body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .recruit__details-button {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .recruit__details-button {
    margin-top: 32px;
  }
}
body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .recruit__details-button a {
  padding: 20px 0;
  width: 320px;
  border: 1px solid var(--green);
  text-align: center;
  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;
  font-family: var(--jp-secondary-font);
  font-size: max(14px, 1.6rem);
  font-weight: 500;
  color: var(--green);
  position: relative;
}
@media screen and (max-width: 750px) {
  body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .recruit__details-button a {
    width: 100%;
  }
}
body.page-template-recruit .recruit__details .recruit__details-items .recruit__details-item .recruit__details-button a img {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: auto;
}
body.page-template-recruit .recruit__details-tab {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body.page-template-recruit .recruit__details-tab:not(.active) .btn-txt {
  color: var(--green) !important;
}
body.page-template-recruit .recruit__details-tab:not(.active) .btn-bg {
  background: transparent !important;
  border: 2px solid var(--green) !important;
  -webkit-transform: scaleX(1) !important;
          transform: scaleX(1) !important;
}
body.page-template-recruit .recruit__details-tab:not(.active):hover .btn-txt {
  color: #fff !important;
}
body.page-template-recruit .recruit__details-tab:not(.active):hover .btn-bg {
  background: var(--green) !important;
}
body.page-template-recruit .recruit__details-tab.active .btn-txt {
  color: #fff !important;
}
body.page-template-recruit .recruit__details-tab.active .btn-bg {
  background: var(--green) !important;
  -webkit-transform: scaleX(1) !important;
          transform: scaleX(1) !important;
}
body.page-template-recruit .recruit__details-content {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

footer.footer a.footer-box-content-instagram {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.75;
  position: relative;
  color: var(--green);
  font-weight: 600;
  font-family: var(--jp-secondary-font);
}
@media screen and (max-width: 750px) {
  footer.footer a.footer-box-content-instagram {
    margin-top: 24px;
    font-size: 14px;
  }
}
footer.footer a.footer-box-content-instagram img {
  display: inline-block;
  width: 20px;
}
footer.footer a.footer-box-content-instagram::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  mask-image: url("../img/common/instagram-brands-solid.svg");
  -webkit-mask-image: url("../img/common/instagram-brands-solid.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}

.header-nav-sns a.header-nav-link {
  position: relative;
}
.header-nav-sns a.header-nav-link::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  vertical-align: middle;
  mask-image: url("../img/common/instagram-brands-solid.svg");
  -webkit-mask-image: url("../img/common/instagram-brands-solid.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}

.strengths-box, .strengths-outer {
  max-width: none !important;
}

@media screen and (max-width: 750px) {
  body.page-template-precision-machining .strengths-precision-equipment-table-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 750px) {
  body.page-template-precision-machining .strengths-precision-equipment-table {
    min-width: 700px;
  }
  body.page-template-precision-machining .strengths-precision-equipment-table th, body.page-template-precision-machining .strengths-precision-equipment-table td {
    font-size: 2.4rem;
    padding: 1.6rem 1.2rem;
  }
  body.page-template-precision-machining .strengths-precision-equipment-table td {
    text-align: left;
  }
}
body.page-template-precision-machining .strengths-precision-equipment-table th:nth-child(1) {
  width: 23%;
}
body.page-template-precision-machining .strengths-precision-equipment-table th:nth-child(2) {
  width: 23%;
}
body.page-template-precision-machining .strengths-precision-equipment-table th:nth-child(3) {
  width: 44%;
}
body.page-template-precision-machining .strengths-precision-equipment-table th:nth-child(4) {
  width: 8%;
}

/* ============
contactフォームのturnstile非表示
============ */
.wpcf7-turnstile.cf-turnstile {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

/* ============
PCでもハンバーガーメニュー表示
============ */
@media screen and (min-width: 751px) {
  .sp-menu-btn-open {
    display: block !important;
    position: absolute !important;
    right: 2.5rem !important;
    width: 10rem !important;
    cursor: pointer !important;
    z-index: 100 !important;
    width: 5rem !important;
    top: 36px !important;
  }
  .sp-menu-btn-open line {
    -webkit-transform: scale(0.8) !important;
            transform: scale(0.8) !important;
    -webkit-transform-origin: left center !important;
            transform-origin: left center !important;
  }
  .sp-menu-btn-open text {
    font-size: 20px !important;
  }
}
@media screen and (min-width: 751px) {
  .sp-nav-wrap {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: #fff !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    -webkit-transition: opacity 0.4s ease, visibility 0.4s ease !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
    overflow-y: auto !important;
  }
  .header.is-active .sp-nav-wrap {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

.float-menu--header {
  display: block !important;
}
@media screen and (min-width: 751px) {
  .float-menu--header {
    display: none !important;
  }
}

@media screen and (min-width: 751px) {
  .header-overlay {
    display: none !important;
  }
}
.pc-menu-close-btn {
  display: none !important;
}
@media screen and (min-width: 751px) {
  .pc-menu-close-btn {
    display: block !important;
    position: absolute !important;
    top: 33px !important;
    right: 2rem !important;
    width: 5.5rem !important;
    cursor: pointer !important;
    z-index: 100 !important;
  }
  .pc-menu-close-btn line {
    -webkit-transform: scale(0.8) !important;
            transform: scale(0.8) !important;
    -webkit-transform-origin: left center !important;
            transform-origin: left center !important;
  }
  .pc-menu-close-btn text {
    display: none;
    font-size: 20px !important;
  }
}

@media screen and (min-width: 751px) {
  body.is-fixed {
    overflow: hidden !important;
    height: 100vh !important;
  }
}
@media screen and (min-width: 751px) {
  .sp-nav {
    height: 100% !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 100px 8rem 80px !important;
  }
  .sp-nav-list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    gap: 16px !important;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .sp-nav-item {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 calc(50% - 8px) !important;
            flex: 0 1 calc(50% - 8px) !important;
  }
  .sp-nav-link {
    font-size: 16px !important;
    padding: 20px 16px !important;
  }
  .sp-nav-link-arrow {
    translateY: -50% scale(0.8) !important;
  }
  .sp-nav-link-sub-item-link {
    font-size: 16px !important;
    padding: 20px 16px !important;
  }
  .sp-nav-list-2 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    gap: 8px 16px !important;
    margin-top: 30px !important;
  }
  .sp-nav-list-2-item {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 calc(50% - 8px) !important;
            flex: 0 1 calc(50% - 8px) !important;
  }
  .sp-nav-list-2-item-link {
    font-size: 14px !important;
    padding: 16px 1.5rem !important;
  }
  .sp-nav-btn {
    width: 400px !important;
    max-width: 100% !important;
    font-size: 16px !important;
    padding: 20px 32px !important;
    margin: 40px auto 0 !important;
    display: block !important;
  }
}
@media screen and (min-width: 751px) {
  .header-wrap {
    padding: 2.3rem 10.3rem 2.3rem 4.8rem !important;
  }
}

@media screen and (min-width: 751px) {
  .lower-menu {
    z-index: 9 !important;
  }
}
/* ============
archive.php / category.php new表示
============ */
.archive-contents__item-date-new {
  position: relative;
  top: -3px;
  left: 5px;
  background-color: var(--bg-color);
  color: #fff;
  padding: 3px 10px;
  font-family: var(--en-primary-font);
  font-weight: 600;
  font-size: 11px;
}

/* ============
top-number ボタン
============ */
.top-number-list-item-box-btn {
  width: 100% !important;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .top-number-list-item-box-btn {
    border: 1px solid var(--green) !important;
  }
}