@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* CSSリセット: Eric Meyer’s Reset CSS v2.0 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5の要素のデフォルト表示をブロックに変更 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* bodyのライン高の設定 */
body {
  line-height: 1;
}

/* リストスタイルを削除 */
ol, ul {
  list-style: none;
}

/* blockquoteやq要素の「引用符」をリセット */
blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* テーブルのセル境界線 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* CSSリセット: inputやbuttonのリセットを追加 */
input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  appearance: none;
  outline: none;
  border-radius: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: none;
}

select {
  appearance: none;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 3.076vw;
  }
}

.wrap {
  width: 100%;
  height: 100%;
}
.text-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.text-content.show {
  z-index: 10;
  opacity: 1;
}
.text-content .text-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 50%;
  max-width: 480px;
  margin: auto;
  line-height: 2;
  letter-spacing: 0.048em;
}
@media only screen and (max-width: 767px) {
  .text-content .text-box {
    width: 70%;
  }
}
.text-content .text-box p {
  text-align: center;
}
.text-content .text-box .inner .link {
  text-align: center;
  margin-top: 30px;
}
.text-content .text-box .inner .link a {
  color: #fff;
}

.text-content-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background-color: rgb(0, 0, 0);
  color: #fff;
}
.text-content-contact .text-box {
  height: 100%;
  width: 50%;
  max-width: 400px;
  margin: auto;
  line-height: 2;
  letter-spacing: 0.048em;
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  .text-content-contact .text-box {
    width: 92%;
    max-width: 92%;
  }
}
.text-content-contact .text-box .inner {
  width: 100%;
}
.text-content-contact .text-box .inner form {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .text-content-contact .text-box .inner form {
    font-size: 3.076vw;
  }
}
.text-content-contact .text-box .inner form dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.text-content-contact .text-box .inner form dl dt {
  width: 45%;
}
.text-content-contact .text-box .inner form dl dd {
  width: 50%;
}
.text-content-contact .text-box .inner form dl dd input[type=text],
.text-content-contact .text-box .inner form dl dd input[type=email] {
  background-color: initial;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 5px;
  color: #FFF;
}
.text-content-contact .text-box .inner form dl dd input[type=text]:focus,
.text-content-contact .text-box .inner form dl dd input[type=email]:focus {
  outline: none;
}
.text-content-contact .text-box .inner form dl.contact-type {
  display: block;
}
.text-content-contact .text-box .inner form dl.contact-type dt {
  width: 100%;
}
.text-content-contact .text-box .inner form dl.contact-type dd {
  margin-top: 10px;
  width: 100%;
}
.text-content-contact .text-box .inner form .g-recaptcha-box .g-recaptcha {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  width: 300px;
  margin-top: 40px;
}
.text-content-contact .text-box .inner form .send {
  width: 120px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 50px auto 0;
}
.text-content-contact .text-box .inner form .send button {
  width: 100%;
  font-size: 12px;
  border: 1px solid #fff;
  background-color: initial;
  color: #FFF;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .text-content-contact .text-box .inner form .send button {
    font-size: 3.076vw;
  }
}
.text-content-contact .text-box .inner p {
  text-align: center;
}
.text-content-contact .text-box .inner .link {
  text-align: center;
  margin-top: 30px;
}
.text-content-contact .text-box .inner .link a {
  color: #fff;
}

.checkboxItem {
  display: flex;
  align-items: center;
  column-gap: 4px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}

.checkboxItem:not(:last-of-type) {
  margin-bottom: 14px;
}

.checkbox {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  border-radius: 2px;
  cursor: pointer;
}

.checkbox:checked {
  background-color: #ffffff;
}

.checkbox:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #000000;
  border-left: 2px solid #000000;
  transform: rotate(-45deg);
}

/*# sourceMappingURL=style.css.map */
