:root {
  --text-color: #333333;
}

html {
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-color);
}
@media (max-width: 786px) {
  html {
    font-size: 90%;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 87.5%;
  }
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

h1 {
  width: 85px;
  position: relative;
  z-index: 1000;
}
@media (max-width: 500px) {
  h1 {
    width: 60px;
  }
}

h2 {
  font-size: 2rem;
}
@media (max-width: 500px) {
  h2 {
    font-size: 1.6rem;
  }
}

h3 {
  font-size: 1.5rem;
  font-weight: normal;
  color: #0070A0;
  margin: 20px 50px 50px;
}
@media (max-width: 786px) {
  h3 {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  h3 {
    margin: 20px 20px 50px;
  }
}
h3 .en {
  font-size: 6rem;
  font-weight: bold;
  opacity: 0.38;
}
@media (max-width: 786px) {
  h3 .en {
    font-size: 5rem;
  }
}
@media (max-width: 500px) {
  h3 .en {
    font-size: 3rem;
  }
}

h4 {
  font-size: 1.5rem;
  font-weight: normal;
}
@media (max-width: 500px) {
  h4 {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
  }
}

section:not(:first-of-type) {
  padding-top: 100px;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
}

.wrapper {
  padding-inline: 20px;
}

.btn a {
  font-size: 1.25rem;
  background-color: #F3F3F3;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  display: inline-block;
  width: 300px;
  height: 80px;
  line-height: 80px;
  padding-left: 50px;
  position: relative;
  margin-top: 20px;
  margin-right: 35px;
}
@media (max-width: 500px) {
  .btn a {
    margin-right: initial;
    padding-left: 20px;
    width: 190px;
  }
}
.btn a::before {
  position: absolute;
  content: "";
  top: 43%;
  right: 50px;
  transform: rotate(30deg);
  background-color: #333333;
  width: 23px;
  height: 1px;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  .btn a::before {
    right: 20px;
  }
}
.btn a::after {
  position: absolute;
  content: "";
  top: 57%;
  right: 50px;
  transform: rotate(-30deg);
  background-color: #333333;
  width: 23px;
  height: 1px;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  .btn a::after {
    right: 20px;
  }
}
.btn a:hover::before {
  right: 25px;
}
.btn a:hover::after {
  right: 25px;
}

.outer {
  position: relative;
}
.outer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/wave.svg) no-repeat center top;
  background-size: auto;
  z-index: 1;
}
@media (max-width: 786px) {
  .outer::before {
    background: url(../img/wave.svg) repeat center top;
  }
}
.outer .container {
  position: relative;
  z-index: 3;
}

.lower .wrapper {
  max-width: 760px;
  margin-inline: auto;
}
.lower h2 {
  font-size: 1.5rem;
  font-weight: normal;
  color: #0070A0;
  margin: 150px auto 0;
  text-align: center;
}
@media (max-width: 786px) {
  .lower h2 {
    display: flex;
    flex-direction: column;
    margin: 150px auto 50px;
  }
}
@media (max-width: 500px) {
  .lower h2 {
    margin: 100px auto 0;
  }
}
.lower h2 .en {
  font-size: 6rem;
  font-weight: bold;
  opacity: 0.38;
}
@media (max-width: 500px) {
  .lower h2 .en {
    font-size: 3.8rem;
  }
}
.lower .visual {
  margin-bottom: 70px;
}

.back {
  margin-top: 100px;
  text-align: center;
}
.back a {
  display: inline-block;
  width: 145px;
  font-size: 1.25rem;
  position: relative;
}
.back a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 145px;
  height: 1px;
  background-color: #333333;
  transition: all 0.5s;
}
.back a::after {
  position: absolute;
  bottom: 11px;
  left: -4px;
  transform: rotate(-30deg);
  content: "";
  width: 45px;
  height: 1px;
  background-color: #333333;
  transition: all 0.5s;
}
.back a:hover::before {
  left: -20px;
}
.back a:hover::after {
  left: -24px;
}

.legal .wrapper,
.privacy-policy .wrapper {
  max-width: 1100px;
  margin: 150px auto 0;
}
@media (max-width: 500px) {
  .legal .wrapper,
.privacy-policy .wrapper {
    margin: 100px auto 0;
  }
}
.legal h2,
.privacy-policy h2 {
  font-size: 2rem;
  font-weight: bold;
  color: rgba(0, 112, 160, 0.38);
  margin-bottom: 20px;
}
.legal dl,
.privacy-policy dl {
  background-color: #EBF9F0;
  border-radius: 40px;
  padding: 50px;
}
@media (max-width: 500px) {
  .legal dl,
.privacy-policy dl {
    padding: 25px;
  }
}
.legal dt,
.privacy-policy dt {
  font-weight: bold;
}
.legal dt:not(:first-of-type),
.privacy-policy dt:not(:first-of-type) {
  margin-top: 30px;
}
.legal .paragraph,
.privacy-policy .paragraph {
  padding-top: 20px;
}

.privacy-policy .lead {
  padding-inline: 50px;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .privacy-policy .lead {
    padding-inline: 7px;
  }
}
.privacy-policy ul li {
  list-style: disc inside;
}
.privacy-policy ol li {
  list-style: decimal inside;
}

#header {
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 4px rgba(51, 51, 51, 0.25);
  z-index: 900;
  padding-inline: 3%;
  top: 0;
}
@media (max-width: 500px) {
  #header {
    height: 60px;
  }
}

@media (max-width: 500px) {
  nav {
    display: none;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 30px;
}
.header-nav a {
  position: relative;
  font-family: "Lato", sans-serif;
}
.header-nav a::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  content: "";
  width: 0;
  height: 1px;
  background-color: #333333;
  transition: all 0.5s;
}
.header-nav a:hover::before {
  width: 40%;
}

.toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  z-index: 1000;
}
@media (max-width: 500px) {
  .toggle {
    display: block;
  }
}
.toggle span {
  display: block;
  position: absolute;
  left: 0;
  background-color: #333333;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  transition: all 0.5s;
}
.toggle span:nth-of-type(1) {
  top: 22%;
}
.toggle span:nth-of-type(2) {
  top: 50%;
}
.toggle span:nth-of-type(3) {
  top: 78%;
}

.mask {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 999;
  transition: all 0.5s;
}

.open .toggle span:nth-of-type(1) {
  top: 50%;
  transform: rotate(-315deg);
}
.open .toggle span:nth-of-type(2) {
  opacity: 0;
}
.open .toggle span:nth-of-type(3) {
  top: 50%;
  transform: rotate(315deg);
}
@media (max-width: 500px) {
  .open nav {
    display: block;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }
}
.open .header-nav {
  display: flex;
  flex-direction: column;
}
.open .mask {
  top: 0;
}

footer {
  text-align: center;
  margin-block: 100px 20px;
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
footer ul li:first-of-type {
  position: relative;
}
footer ul li:first-of-type::after {
  position: absolute;
  right: -10px;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #333333;
}

.mainvisual {
  height: 100vh;
  background-image: url(../img/mainvisual.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 786px) {
  .mainvisual {
    background-image: url(../img/mainvisual-sp.jpg);
    background-position: center bottom;
    align-items: flex-start;
  }
}

.copy {
  text-align: center;
  font-weight: normal;
  color: #FFFFFF;
  line-height: 60px;
  margin-right: 110px;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 786px) {
  .copy {
    margin-right: 0;
    margin-top: 150px;
  }
}

#services {
  margin-top: 100px;
  padding-bottom: 50px;
  position: relative;
}
#services::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: "";
  width: 365px;
  height: 100%;
  background-color: #EBF9F0;
  z-index: -1;
}
@media (max-width: 500px) {
  #services::before {
    width: 200px;
  }
}
#services .wrapper {
  display: flex;
}
@media (max-width: 500px) {
  #services .wrapper {
    flex-direction: column-reverse;
  }
}
#services .left {
  width: 40%;
}
@media (max-width: 500px) {
  #services .left {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #services .left img {
    height: 190px;
    -o-object-position: center;
       object-position: center;
  }
}
#services .right {
  width: 60%;
  margin-left: 20px;
}
@media (max-width: 500px) {
  #services .right {
    width: 100%;
    margin-left: initial;
  }
}
#services .right p {
  margin-left: 20px;
  line-height: 37px;
}
#services .right p:not(:first-of-type) {
  margin-top: 30px;
}

.fadein {
  opacity: 0;
  transition: all 1s;
}

.pct1,
.pct2 {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.pct1 {
  max-width: 319px;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .pct1 {
    max-width: 257px;
  }
}

.pct2 {
  max-width: 257px;
  margin-left: auto;
}

.emphasis {
  display: inline-block;
  font-size: 1.5rem;
  color: #008634;
  margin-left: -20px;
  margin-bottom: 10px;
}

#strength {
  margin-top: 150px;
  overflow: hidden;
  position: relative;
}
#strength::before {
  position: absolute;
  top: 0;
  right: 10px;
  content: "";
  width: 365px;
  height: 100%;
  background-color: #E4FAFF;
  z-index: -1;
}
@media (max-width: 500px) {
  #strength::before {
    width: 200px;
  }
}
#strength::after {
  position: absolute;
  top: 0;
  left: 140px;
  content: "";
  width: 200px;
  height: 100%;
  background: url(../img/wavyline-left.svg) no-repeat;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 786px) {
  #strength::after {
    left: 0;
  }
}
#strength h3 {
  text-align: right;
}
@media (max-width: 786px) {
  #strength h3 {
    flex-direction: column-reverse;
  }
}
#strength li {
  max-width: 752px;
  background-color: #F3F3F3;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  padding: 30px;
}
@media (max-width: 500px) {
  #strength li {
    padding: 23px;
  }
}
#strength li p {
  padding-left: 40px;
}
@media (max-width: 500px) {
  #strength li p {
    padding-left: initial;
  }
}
#strength .inner {
  width: calc(100% - 158px);
}
@media (max-width: 786px) {
  #strength .inner {
    width: 100%;
  }
}
#strength p {
  line-height: 30px;
}

.slidein-right {
  margin-right: auto;
  position: relative;
  right: -100%;
  transition: all 1s;
}
@media (max-width: 786px) {
  .slidein-right {
    flex-direction: column-reverse;
  }
}
.slidein-left {
  margin-left: auto;
  position: relative;
  left: -100%;
  transition: all 1s;
}
@media (max-width: 786px) {
  .slidein-left {
    flex-direction: column;
  }
}

.number {
  font-family: "Alex Brush", cursive;
  font-size: 3rem;
  padding-right: 20px;
}

.title {
  position: relative;
}
.title::before {
  position: absolute;
  left: -15px;
  bottom: -5px;
  content: "";
  background-color: #0070A0;
  width: 58px;
  height: 2px;
}

.icon {
  width: 158px;
}
@media (max-width: 786px) {
  .icon {
    margin-inline: auto;
  }
}

#faq {
  margin-top: 100px;
  padding-bottom: 50px;
  position: relative;
}
#faq::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: "";
  width: 365px;
  height: 100%;
  background-color: #EBF9F0;
  z-index: -1;
}
@media (max-width: 500px) {
  #faq::before {
    width: 200px;
  }
}
#faq::after {
  position: absolute;
  top: 0;
  right: 140px;
  content: "";
  width: 200px;
  height: 100%;
  background: url(../img/wavyline-right.svg) repeat-y;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 786px) {
  #faq::after {
    right: 0;
  }
}
#faq .text {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  width: calc(100% - 30px);
  padding-right: 10px;
}
@media (max-width: 500px) {
  #faq .text {
    font-size: 1.3rem;
    flex-direction: column;
    width: calc(100% - 20px);
  }
}
#faq .text::before {
  content: "Q";
  font-size: 3rem;
  color: rgba(182, 0, 3, 0.5);
  margin-right: 20px;
  line-height: 30px;
}
@media (max-width: 500px) {
  #faq .text::before {
    margin-bottom: 10px;
  }
}

.accordion {
  border-top: 2px solid #0070A0;
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
  font-size: 1.25rem;
}
@media (max-width: 500px) {
  .accordion {
    flex-direction: column;
    font-size: 1rem;
  }
}
.accordion::before {
  content: "A";
  font-size: 3rem;
  color: rgba(0, 182, 52, 0.5);
  margin-right: 20px;
  line-height: 30px;
}
@media (max-width: 500px) {
  .accordion::before {
    margin-bottom: 10px;
  }
}
.accordion-area {
  background-color: #F3F3F3;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 50px;
  padding: 20px 40px 40px;
}
@media (max-width: 500px) {
  .accordion-area {
    padding: 20px 10px 40px;
  }
}
.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-title.close .accordion-btn::after {
  transform: rotate(360deg);
}
.accordion-btn {
  display: inline-block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  .accordion-btn {
    width: 20px;
    height: 20px;
  }
}
.accordion-btn::before {
  position: absolute;
  top: 50%;
  content: "";
  width: 100%;
  height: 4px;
  background-color: #0070A0;
}
.accordion-btn::after {
  position: absolute;
  top: 50%;
  transform: rotate(90deg);
  content: "";
  width: 100%;
  height: 4px;
  background-color: #0070A0;
  transition: all 0.5s;
}
.accordion-box {
  display: none;
}

#contact {
  margin-top: 100px;
  padding-bottom: 250px;
  background-color: #E4FAFF;
}
@media (max-width: 786px) {
  #contact {
    padding-bottom: 0;
  }
}
#contact .wrapper {
  position: relative;
}
#contact .text {
  width: 50%;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 786px) {
  #contact .text {
    width: 100%;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  #contact .text {
    font-size: 1.2rem;
  }
}
#contact .text p {
  line-height: 40px;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
}
#contact .pct {
  position: absolute;
  top: 50px;
  right: 170px;
  max-width: 217px;
  z-index: 1;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 786px) {
  #contact .pct {
    position: initial;
    margin-top: 50px;
    margin-left: auto;
  }
}
@media (max-width: 500px) {
  #contact .pct {
    max-width: 175px;
    margin-right: 30px;
  }
}
@media (max-width: 500px) {
  #contact .btn {
    width: 100%;
  }
}

.contact .visual {
  opacity: 0.7;
}
.contact .lead {
  max-width: 900px;
  margin: 0 auto 70px;
  padding-inline: 30px;
  line-height: 27px;
}

.form label,
.form input,
.form textarea {
  width: 100%;
  display: inline-block;
}
.form input,
.form textarea {
  background-color: #F3F3F3;
  border: 1px solid #333333;
  border-radius: 5px;
  padding: 10px;
  margin-inline: 20px;
}
.form textarea {
  height: 200px;
}

label {
  margin-top: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}

.lastname {
  width: 50%;
  margin-left: 20px;
}
.lastname input {
  margin-inline: initial;
}

.firstname {
  width: 50%;
  margin-right: 20px;
}
.firstname input {
  margin-inline: initial;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  gap: 20px;
}
fieldset label {
  font-size: 1rem;
  font-weight: normal;
  margin-top: 0;
}

legend {
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 1.25rem;
}

.consent {
  display: flex;
  align-items: center;
  margin-block: 0 50px;
}
.consent label {
  font-size: 1rem;
  font-weight: normal;
  margin-top: 0;
}
.consent input {
  width: 30px;
}

.submit {
  text-align: center;
}
.submit input {
  background-color: #8BC9A3;
  color: #FFFFFF;
  border: 1px solid #8BC9A3;
  border-radius: 5px;
  font-size: 1.25rem;
  padding: 10px 100px;
  transition: all 0.5s;
}
.submit input:hover {
  background-color: #FFFFFF;
  color: #333333;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 95%;
  margin-inline: auto;
}

.form input,
.form textarea {
  margin: 0;
}

.wpcf7-spinner {
  display: block;
  margin: 0 auto;
}

.wpcf7-response-output {
  display: inline-block;
  position: relative;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  margin-top: 20px;
}

#company {
  background-color: #EBF9F0;
  position: relative;
}
#company::before {
  position: absolute;
  top: -250px;
  width: 100%;
  height: 250px;
  content: "";
  background: #EBF9F0;
  -webkit-clip-path: polygon(100% 100%, 0 0, 0 100%);
          clip-path: polygon(100% 100%, 0 0, 0 100%);
}
#company h3 {
  text-align: right;
  padding-bottom: 20px;
  margin: 20px 50px 0;
}
@media (max-width: 786px) {
  #company h3 {
    flex-direction: column-reverse;
    text-align: left;
  }
}
#company .wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 786px) {
  #company .wrapper {
    display: initial;
  }
}
#company .text {
  width: 50%;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 786px) {
  #company .text {
    width: 100%;
    padding-inline: 20px;
    margin-top: 50px;
  }
}
@media (max-width: 500px) {
  #company .text {
    font-size: 1.2rem;
  }
}
#company .text p {
  line-height: 40px;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
#company .btn {
  margin-inline: auto 0;
}
#company .pct {
  position: absolute;
  top: -170px;
  left: 170px;
  max-width: 217px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 786px) {
  #company .pct {
    position: initial;
    margin-left: 20px;
    margin-top: -290px;
  }
}
@media (max-width: 500px) {
  #company .pct {
    max-width: 150px;
    margin-top: -200px;
    margin-left: 30px;
  }
}

.company dl {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .company dl {
    flex-direction: column;
  }
}
.company dt,
.company dd {
  font-size: 1.25rem;
  padding-block: 30px;
  border-bottom: 1px solid #333333;
}
@media (max-width: 500px) {
  .company dt,
.company dd {
    padding-block: initial;
    border-bottom: none;
  }
}
.company dt {
  width: 25%;
}
@media (max-width: 500px) {
  .company dt {
    width: 100%;
    padding-bottom: 10px;
  }
}
@media (max-width: 500px) {
  .company dt:not(:first-of-type) {
    padding-top: 30px;
  }
}
.company dd {
  width: 75%;
}
@media (max-width: 500px) {
  .company dd {
    width: 100%;
    border-bottom: 1px solid #333333;
    padding-bottom: 30px;
  }
}
/*# sourceMappingURL=main.css.map */