@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: none;
  box-sizing: border-box;
}

/* iOSのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* iOSサファリで発生する部分的な文字の拡大表示の抑制 */
html {
  -webkit-text-size-adjust: 100%;
}

::-moz-selection {
  color: #fff;
  background-color: #00442C;
}

::selection {
  color: #fff;
  background-color: #00442C;
}

body > footer {
  position: sticky;
  top: 100vh;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  color: #00442C;
  line-height: 1.8;
  text-align: justify;
  font-feature-settings: "palt";
  background-color: #F7FDEA;
}
@media screen and (max-width: 860px) {
  body {
    font-size: 16px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-size: 18px;
  font-weight: 400;
}

a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  transition: 0.3s;
  opacity: 0.7;
}

a:visited {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border: none;
}

button {
  border: 0;
  outline: none;
  font-size: 0;
  color: transparent;
  line-height: 0;
  background-color: transparent;
}

#banner_recruit {
  width: 40px;
  position: fixed;
  bottom: -240px;
  right: 40px;
  visibility: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 860px) {
  #banner_recruit div:first-child {
    display: none;
  }
}
#banner_recruit div:last-child {
  display: none;
}
@media screen and (max-width: 860px) {
  #banner_recruit div:last-child {
    display: block;
  }
}
#banner_recruit.active {
  bottom: 100px;
  visibility: visible;
}

#return {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: -60px;
  right: 40px;
  cursor: pointer;
  visibility: hidden;
  transition: 0.3s;
}
#return.active {
  bottom: 40px;
  visibility: visible;
}

header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00442C;
  z-index: 10;
}
header p {
  max-width: 225px;
  margin: 10px 10px 10px 25px;
}
header div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  header div {
    padding: 0 0 0 40px;
    border-left: 2px solid #fff;
  }
}
header div nav {
  padding: 25px 25px 0 0;
}
@media screen and (max-width: 860px) {
  header div nav {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 68, 44, 0.8);
  }
  header div nav.open {
    display: block;
  }
}
header div nav ul {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 860px) {
  header div nav ul {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
header div nav ul li {
  line-height: 1;
}
header div nav ul li a {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
header div #trigger {
  width: 30px;
  height: 20px;
  display: none;
  position: relative;
  right: 20px;
  z-index: 2;
}
@media screen and (max-width: 860px) {
  header div #trigger {
    display: block;
  }
}
header div #trigger span {
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  background-color: #fff;
  transition: 0.2s;
}
header div #trigger span:nth-of-type(1) {
  top: 0;
}
header div #trigger span:nth-of-type(2) {
  top: 9px;
}
header div #trigger span:nth-of-type(3) {
  bottom: 0;
}
header div #trigger.active span:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}
header div #trigger.active span:nth-of-type(2) {
  transform: rotate(-45deg);
}
header div #trigger.active span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
header div #mail {
  width: 70px;
  padding: 25px 15px;
  border-left: 2px solid #fff;
}
@media screen and (max-width: 860px) {
  header div #mail {
    width: 80px;
    padding: 27px 20px;
  }
}
header div #tel_1 {
  width: 232px;
  padding: 16px;
  background-color: #E6F2D6;
}
@media screen and (max-width: 860px) {
  header div #tel_1 {
    display: none;
  }
}
header div #tel_2 {
  display: none;
  width: 80px;
  padding: 20px;
  border-left: 2px solid #fff;
}
@media screen and (max-width: 860px) {
  header div #tel_2 {
    display: block;
  }
}

#hero {
  padding: 40px 80px 850px 0;
  display: flex;
  justify-content: end;
  background-image: url(../../images/parts_wave_hero.png), url(../../images/bg_hero.jpg);
  background-size: contain, cover;
  background-position: bottom center, top center;
  background-repeat: no-repeat, no-repeat;
}
@media screen and (max-width: 860px) {
  #hero {
    padding: 40px 10px 450px 10px;
    justify-content: center;
  }
}
#hero div {
  width: 420px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 860px) {
  #hero div {
    width: 300px;
  }
}
#hero div h1 {
  margin: 0 0 35px 0;
}
#hero div p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 20px;
}
#hero div span {
  width: 320px;
  margin: 0 auto 20px auto;
  display: block;
}
@media screen and (max-width: 860px) {
  #hero div span {
    width: 100%;
  }
}
#hero div small {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 0 25px 15px 25px;
  margin: 0 0 15px 0;
  display: inline-block;
  border-bottom: 1px solid #fff;
}
#hero div ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#hero div ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

#recruit {
  height: 820px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F7FDEA;
  background-image: url(../../images/parts_wave_2.png);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 860px) {
  #recruit {
    height: 475px;
  }
}
#recruit div {
  width: 600px;
  text-align: center;
}
#recruit div p {
  margin: 0 0 80px 0;
  border-radius: 60px;
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.1);
}
#recruit div span a {
  font-size: 18px;
  color: #00442C;
}
#recruit div span a::before {
  content: ">>　";
}
#recruit div span a::after {
  content: "　<<";
}

#greeting {
  padding: 0 20px 285px 20px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
@media screen and (max-width: 860px) {
  #greeting {
    padding: 0 60px 120px 60px;
  }
}
#greeting h2 {
  width: 208px;
  margin: -65px auto 120px auto;
}
@media screen and (max-width: 860px) {
  #greeting h2 {
    margin: -30px auto 80px auto;
  }
}
#greeting div {
  width: 240px;
  margin: 0 auto 40px auto;
}
@media screen and (max-width: 860px) {
  #greeting div {
    width: 200px;
  }
}
#greeting h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 80px 0;
}
#greeting p {
  width: min(800px, 100%);
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
}
@media screen and (max-width: 860px) {
  #greeting p {
    margin: 0 auto 40px auto;
  }
}
@media screen and (max-width: 860px) {
  #greeting p {
    font-size: 16px;
  }
}
#greeting #image_01 {
  max-width: min(800px, 100%);
  margin: 0 auto;
}

.interval {
  padding: 0 0 240px 0;
  background-color: #F7FDEA;
}
@media screen and (max-width: 860px) {
  .interval {
    padding: 0 0 120px 0;
  }
}
.interval div {
  display: flex;
  justify-content: flex-end;
}
.interval div p {
  padding: 20px 90px 0 20px;
}
@media screen and (max-width: 860px) {
  .interval div p {
    padding: 20px 20px 0 20px;
  }
}

#facility {
  margin: -50px 0 0 0;
}
@media screen and (max-width: 860px) {
  #facility {
    margin: -20px 0 0 0;
  }
}
#facility #about {
  background-color: #fff;
}
#facility #about h2 {
  width: 208px;
  margin: 0 auto 65px auto;
}
#facility #about #location {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  background-image: url(../../images/parts_wave_1.png);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 860px) {
  #facility #about #location {
    padding: 0 0 100px 0;
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 860px) {
  #facility #about #location div {
    padding: 0 25px 0 0;
  }
}
#facility #about #location h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 860px) {
  #facility #about #location h3 {
    padding: 0 0 0 40px;
  }
}
#facility #about #location p {
  width: 520px;
  padding: 0 100px 0 0;
  margin: 0 0 70px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 860px) {
  #facility #about #location p {
    width: 100%;
    padding: 0 50px 0 40px;
    margin: 0 0 90px 0;
  }
}
#facility #about #location figure {
  width: min(480px, 100%);
  float: right;
}
@media screen and (max-width: 860px) {
  #facility #about #location figure {
    padding: 0 0 0 70px;
  }
}
#facility #about #location figure img {
  margin: 0 0 10px 0;
}
#facility #access {
  max-width: 1300px;
  padding: 170px 90px 240px 90px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 240px;
}
@media screen and (max-width: 860px) {
  #facility #access {
    padding: 30px 0 160px 0;
    gap: 0;
  }
}
#facility #access article {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}
@media screen and (max-width: 860px) {
  #facility #access article {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 860px) {
  #facility #access article#route {
    flex-direction: column-reverse;
  }
}
#facility #access article section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#facility #access article section h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}
#facility #access article section strong {
  font-size: 20px;
  font-weight: normal;
}
#facility #access article section ul li {
  text-indent: -1em;
  margin: 0 0 0 1em;
}
#facility #access article section ul li::before {
  content: "・";
}
#facility #access article section div {
  padding: 80px 0 0 0;
}
@media screen and (max-width: 860px) {
  #facility #access article section div {
    padding: 0;
  }
}
#facility #access article section div a {
  color: #00442C;
}
@media screen and (max-width: 860px) {
  #facility #access article section.info {
    padding: 50px 60px;
  }
}
#facility #access article section#map {
  height: 0;
  overflow: hidden;
  padding-bottom: 110%;
  position: relative;
}
#facility #access article section#map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#facility #summary {
  padding: 0 0 240px 0;
  background-color: #F7FDEA;
}
@media screen and (max-width: 860px) {
  #facility #summary {
    padding: 0 0 120px 0;
  }
}
#facility #summary h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin: 0 0 40px 0;
}
#facility #summary article {
  display: flex;
  gap: 5px;
  background-color: #fff;
}
@media screen and (max-width: 860px) {
  #facility #summary article {
    flex-direction: column;
  }
}
#facility #summary article section:nth-child(1) {
  width: 35%;
  background-image: url(../../images/photo_summary_03.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 860px) {
  #facility #summary article section:nth-child(1) {
    width: 100%;
    background-image: none;
  }
}
#facility #summary article section:nth-child(1) img {
  display: none;
}
@media screen and (max-width: 860px) {
  #facility #summary article section:nth-child(1) img {
    display: block;
  }
}
#facility #summary article section:nth-child(2) {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 16px;
}
@media screen and (max-width: 860px) {
  #facility #summary article section:nth-child(2) {
    width: 100%;
  }
}
#facility #summary article section:nth-child(2) dl {
  display: flex;
}
#facility #summary article section:nth-child(2) dl dt {
  width: 35%;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  background-color: #D7E6C3;
}
#facility #summary article section:nth-child(2) dl dd {
  width: 65%;
  padding: 50px 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}
#facility #summary article section:nth-child(3) {
  width: 35%;
  background-image: url(../../images/photo_summary_04.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 860px) {
  #facility #summary article section:nth-child(3) {
    width: 100%;
    background-image: none;
  }
}
#facility #summary article section:nth-child(3) img {
  display: none;
}
@media screen and (max-width: 860px) {
  #facility #summary article section:nth-child(3) img {
    display: block;
  }
}

#event {
  padding: 0 15px 110px 15px;
  background-image: url(../../images/parts_wave_3.png);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #fff;
}
#event h2 {
  width: 208px;
  margin: 0 auto 65px auto;
}
#event article {
  width: min(800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
#event article h3 {
  width: 55%;
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 860px) {
  #event article h3 {
    width: 100%;
  }
}

#price {
  padding: 0 15px 280px 15px;
  background-color: #F7FDEA;
}
@media screen and (max-width: 860px) {
  #price {
    padding: 0 15px 120px 15px;
  }
}
#price h2 {
  width: 208px;
  margin: 0 auto 80px auto;
}
#price ul {
  width: min(1120px, 100%);
  margin: 0 auto 80px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media screen and (max-width: 860px) {
  #price ul {
    margin: 0 auto 40px auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
#price p {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 0 15px;
}
@media screen and (max-width: 860px) {
  #price p {
    text-align: justify;
    text-indent: -1em;
    margin: 0 0 0 1em;
    padding: 0;
  }
}
#price p::before {
  content: "・";
}

#process {
  padding: 0 35px 280px 35px;
  margin: 0 0 320px 0;
  background-image: url(../../images/parts_wave_3.png), url(../../images/parts_wave_1.png);
  background-size: contain, contain;
  background-position: top center, bottom center;
  background-repeat: no-repeat, no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 860px) {
  #process {
    padding: 0 35px 120px 35px;
    margin: 0 0 120px 0;
  }
}
#process h2 {
  width: 208px;
  margin: 0 auto 80px auto;
}
@media screen and (max-width: 860px) {
  #process h2 {
    margin: 0 auto 40px auto;
  }
}
#process ul {
  width: 559px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, auto);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
}
@media screen and (max-width: 860px) {
  #process ul {
    width: 100%;
  }
}
#process ul li.number {
  width: 153px;
}
@media screen and (max-width: 860px) {
  #process ul li.number {
    width: 100%;
  }
}
#process ul li.number figure img {
  margin: 0 0 15px 0;
}
#process ul li.number figure figcaption {
  font-size: 14px;
  font-weight: 300;
  color: #00442C;
  line-height: 1.4;
}
#process ul li.arrow {
  width: 10px;
  margin: 70px 0 0 0;
}
@media screen and (max-width: 860px) {
  #process ul li.arrow.mobile {
    display: none;
  }
}

#requirement {
  padding: 0 0 240px 0;
  background-color: #f7fdea;
}
@media screen and (max-width: 860px) {
  #requirement {
    padding: 0 0 120px 0;
  }
}
#requirement h2 {
  width: 208px;
  margin: 0 auto;
}
#requirement div {
  margin: -60px 0 0 0;
  background-image: url(../../images/bg_requirement.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 860px) {
  #requirement div {
    background-image: none;
    background-color: #fff;
  }
}
#requirement div article {
  width: min(640px, 100%);
  padding: 100px 50px 70px 50px;
  margin: 0 auto;
  background-color: #fff;
}
#requirement div article h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 50px 0;
}
#requirement div article p {
  font-size: 20px;
  text-align: center;
  margin: 0 0 70px 0;
}
@media screen and (max-width: 860px) {
  #requirement div article p {
    font-size: 16px;
  }
}
#requirement div article ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
}
#requirement div article ul li {
  font-size: 20px;
  text-indent: -1em;
  padding: 0 0 0 1em;
}
#requirement div article ul li::before {
  content: "◎";
}

#contact {
  padding: 0 60px 130px 60px;
  background-image: url(../../images/parts_wave_3.png);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 860px) {
  #contact {
    padding: 0 60px 40px 60px;
  }
}
#contact h2 {
  width: 208px;
  margin: 0 auto 130px auto;
}
@media screen and (max-width: 860px) {
  #contact h2 {
    margin: 0 auto 40px auto;
  }
}
#contact form {
  width: min(800px, 100%);
  margin: 0 auto;
}
#contact form table {
  width: 100%;
}
#contact form table tr th {
  width: 30%;
  padding: 0 10px 40px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 860px) {
  #contact form table tr th {
    width: 100%;
    padding: 0 0 15px 0;
    display: block;
  }
}
#contact form table tr th div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 860px) {
  #contact form table tr th div {
    justify-content: flex-start;
    gap: 5px;
  }
}
#contact form table tr th div p:first-child {
  color: #fff;
  padding: 5px;
  background-color: #00442C;
}
#contact form table tr th div p:last-child {
  padding: 5px;
}
#contact form table tr th div #cat_tel {
  background-color: transparent;
}
@media screen and (max-width: 860px) {
  #contact form table tr th div #cat_tel {
    display: none;
  }
}
#contact form table tr td {
  padding: 0 0 40px 0;
}
@media screen and (max-width: 860px) {
  #contact form table tr td {
    width: 100%;
    padding: 0 0 40px 0;
    display: block;
  }
}
#contact form table tr td input {
  width: 100%;
  border: 1px solid #C4C3C3;
  padding: 10px;
  font-family: "NotoSansCJKjp-Regular";
  font-size: 18px;
  line-height: 1;
  background-color: #F7F7F7;
}
#contact form table tr td textarea {
  width: 100%;
  height: 400px;
  font-family: "NotoSansCJKjp-Regular";
  font-size: 18px;
  border: 1px solid #C4C3C3;
  padding: 10px;
  background-color: #F7F7F7;
}
#contact form #telnumber {
  text-align: right;
}
@media screen and (max-width: 860px) {
  #contact form #telnumber {
    text-align: left;
  }
}
#contact form #submit_1 {
  width: 320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 860px) {
  #contact form #submit_1 {
    width: 100%;
  }
}
#contact form #submit_1 .button_check {
  width: 320px;
  padding: 5px 0;
  margin: 0 auto;
  border-radius: 30px;
  background-color: #00442C;
}
@media screen and (max-width: 860px) {
  #contact form #submit_1 .button_check {
    width: 100%;
  }
}
#contact form #submit_1 .button_check input {
  width: 100%;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  color: #fff;
  border: none;
  background-color: transparent;
}
#contact .error_message {
  line-height: 1;
  margin: 0 0 20px 0;
}
#contact .button_revision {
  width: 120px;
  padding: 10px 0;
  border-radius: 5px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  background-color: #be0132;
  background-image: url(../../images/icon_revision.png);
  background-size: 10px 10px;
  background-position: 90% center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
#contact .button_revision:hover {
  opacity: 0.7;
}
#contact .button_submit {
  width: 120px;
  padding: 10px 0;
  border-radius: 5px;
  background-color: #27477A;
  background-image: url(../../images/icon_submit.png);
  background-size: 10px 10px;
  background-position: 90% center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
#contact .button_submit:hover {
  opacity: 0.7;
}

#contact_check {
  width: 100%;
  padding: 260px 60px;
  margin: 0 auto;
  background-image: url(../../images/parts_wave_4.png);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 860px) {
  #contact_check {
    width: 100%;
    padding: 160px 60px 300px 60px;
  }
}
#contact_check #checktext {
  font-size: 20px;
  font-weight: 700;
  color: #00442C;
  text-align: center;
  margin: 0 0 80px 0;
}
#contact_check .error_message {
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
  padding: 0 0 20px 0;
}
#contact_check #submit_2 {
  width: 120px;
  margin: 60px auto 0 auto;
}
#contact_check #submit_2 input {
  width: 100%;
  height: 56px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  color: #016944;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
#contact_check #submit_2 .button_revision {
  width: 120px;
  border-radius: 30px;
  background-color: #D7E6C3;
}
#contact_check #input_check {
  width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 860px) {
  #contact_check #input_check {
    width: 100%;
  }
}
#contact_check #input_check .l_cel {
  width: 11em;
  padding: 0 64px 50px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 860px) {
  #contact_check #input_check .l_cel {
    text-align: left;
    padding: 0 0 50px 0;
  }
}
#contact_check #input_check .r_cel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 0 0 50px 0;
}
@media screen and (max-width: 860px) {
  #contact_check #input_check .r_cel {
    padding: 0 0 50px 0;
  }
}
#contact_check #submit_3 {
  width: 440px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 860px) {
  #contact_check #submit_3 {
    width: 100%;
  }
}
#contact_check #submit_3 input {
  width: 100%;
  height: 56px;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  border: none;
  background-color: transparent;
}
#contact_check #submit_3 .button_revision {
  width: 120px;
  border-radius: 30px;
  background-color: #D7E6C3;
}
#contact_check #submit_3 .button_revision input {
  color: #016944;
}
#contact_check #submit_3 .button_submit {
  width: 320px;
  border-radius: 30px;
  background-color: #00442C;
}
#contact_check #submit_3 .button_submit input {
  color: #fff;
}

#footer {
  display: flex;
  flex-direction: column;
  background-image: url(../../images/parts_wave_5.png), url(../../images/bg_footer.jpg);
  background-size: contain, cover;
  background-position: center top, center top;
  background-repeat: no-repeat, no-repeat;
}
#footer article {
  width: 100%;
  padding: 1200px 180px 120px 50px;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 860px) {
  #footer article {
    padding: 1000px 50px 50px 50px;
  }
}
#footer article div {
  width: min(320px, 100%);
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #fff;
  text-align: center;
}
#footer article div section h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 20px 0;
}
#footer article div section h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 0 10px 10px 10px;
  margin: 0 0 10px 0;
  display: inline-block;
  border-bottom: 1px solid #fff;
}
#footer article div section p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
#footer article div section span {
  display: block;
}
#footer article div section span a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: underline;
}
#footer article div section span a:hover {
  text-decoration: none;
}
#footer article div section img {
  margin: 0 0 20px 0;
}
#footer footer {
  padding: 15px 0;
  background-color: rgba(0, 68, 44, 0.44);
}
@media screen and (max-width: 860px) {
  #footer footer {
    padding: 40px 0 15px 0;
  }
}
#footer footer nav {
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
}
#footer footer nav ul {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 860px) {
  #footer footer nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
#footer footer nav ul li a {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
#footer footer p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 1;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 860px) {
  #footer footer p {
    margin: 30px 0 0 0;
  }
}/*# sourceMappingURL=common.css.map */