@charset "utf-8";
/* =======================================
 reset
======================================= */
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
 *:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

:focus-visible {
  outline: none;
}

/* =======================================
 common
======================================= */
h1, h2, h3, h4, h5, h6,
ul, ol, li, p, dl, dt, dd {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

/* =======================================
 main contents
======================================= */
html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

html, body {
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  margin: auto;
  min-width: 750px;
  width: 100%;
}

a {
  text-decoration: none;
}

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

strong {
  font-weight: 700;
}

.wrapper {
  margin: auto;
  max-width: 750px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.step {
  background: #e3dfdb;
}

.entry-text {
  border-bottom: 1px solid #b3b3b3;
  letter-spacing: 0.04em;
  line-height: 1.92;
  margin: 35px auto 0;
  padding-bottom: 60px;
  width: 670px;
}

.form-table {
  margin: 50px auto 0;
  width: 670px;
}
.form-table th,
.form-table td {
  display: block;
  width: 100%;
}
.form-table th {
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 30px 0 20px;
  text-align: left;
  vertical-align: top;
}
.form-table th label {
  display: block;
  position: relative;
  width: 100%;
}
.form-table th label::after {
  background: #c1272d;
  border-radius: 5px;
  content: "必須";
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 2;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
}
.form-table td {
  letter-spacing: 0.04em;
  padding: 0 0 30px;
}
.confirm .form-table td {
  padding-left: 25px;
}

.input-text {
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  font-size: 100%;
  letter-spacing: 0.04em;
  line-height: 3.3;
  padding: 0 1em;
  vertical-align: middle;
  width: 100%;
}
::placeholder {
  color: #b3b3b3;
  letter-spacing: 0.04em;
}
.input-checkbox {
  all: revert;
  display: inline-block;
  vertical-align: text-top;
}

.input-mailmagazine {
  cursor: pointer;
  display: block;
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-top: 20px
}
.input-mailmagazine .input-checkbox {
  accent-color: #808080;
  border-radius: 5px;
  height: 32px;
  margin-right: 26px;
  width: 32px;
}

.privacy-guide {
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: calc(46 / 24);
  margin: 20px auto 0;
  width: 620px;
}

.privacy {
  background: #fff;
  border: 1px solid #b3b3b3;
  margin: 50px auto 0;
  padding: 40px 20px 60px;
  position: relative;
  width: 620px;
}
.privacy-inner {
  height: 215px;
  overflow-y: scroll;
  padding: 0 10px 20px;
  scrollbar-width: thin;
}
.privacy-title {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
}
.privacy-content {
  color: #1a1a1a;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.62;
}
.privacy-content h4 {
  font-weight: 700;
  margin: 1.5em 0 1em;
}
.privacy-content p {
  margin: 1em 0 0;
}
.privacy-content ol {
  list-style: none;
  list-style-position: outside;
}
.privacy-content li {
  margin: 1em 0 0;
  padding-left: 1.25em;
  position: relative;
}
.privacy-content li span {
  position: absolute;
  left: 0;
  top: 0;
}
.privacy-content .align-right {
  text-align: right;
}
.privacy-content a {
  color: #0579d8;
}

.privacy-agree {
  background: #4d4d4d;
  bottom: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 22px;
  line-height: calc(60 / 22);
  left: 0;
  padding-left: 30px;
  position: absolute;
  width: 100%;
}
.privacy-agree .input-checkbox {
  accent-color: #fff;
  height: 26px;
  width: 26px;
}

.form-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px auto 0;
  width: 620px;
}
.form-btn {
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 4;
  text-align: center;
}
.form-btn.btn-submit {
  background-image: url(../images/btn_next.png);
}
.form-btn.btn-back {
  background-image: url(../images/btn_prev.png);
}
@media (any-hover: hover) {
  .form-btn:hover {
    opacity: 0.8;
  }
}

.footer {
  border-top: 1px solid #1a1a1a;
  margin-top: 130px;
  padding: 55px 30px 75px;
  text-align: center;
}
.logo {
  margin: auto;
  width: 690px;
}
.footer-text {
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: calc(46 / 24);
  margin-top: 30px;
}

/* confirm */
.confirm .entry-text {
  text-align: center;
}
.confirm .form-table th label::after {
  display: none;
}

/* thanks */
.thanks-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 40px auto 0;
  width: 670px;
}
.thanks .entry-text {
  border-bottom: 0;
}
#agree_table {
  border-collapse: collapse;
}
#agree_table th {
  border: 1px solid #ccc;
  font-weight: normal;
  width: 30%;
  padding: 2%;
}
#agree_table td {
  border: 1px solid #ccc;
    padding: 2%;
}

/*sp style*/
@media screen and (max-width: 750px) {
  body {
    font-size: 3.467vw;
    min-width: inherit;
  }
  .entry-text {
    margin: 4.67vw auto 0;
    padding-bottom: 8vw;
    width: 89.333vw;
  }
  
  .form-table {
    margin: 6.67vw auto 0;
    width: 89.333vw;
  }
  .form-table th {
    padding: 4vw 0 2.667vw;
  }
  .form-table th label::after {
    font-size: 2.4vw;
    width: 8vw;
  }
  .form-table td {
    padding: 0 0 4vw;
  }
  .confirm .form-table td {
    padding-left: 3.333vw;
  }
  
  .input-mailmagazine {
    font-size: 3.2vw;
    margin-top: 3.2vw
  }
  .input-mailmagazine .input-checkbox {
    border-radius: 0.667vw;
    height: 4.267vw;
    margin-right: 2.667vw;
    width: 4.267vw;
  }
  
  .privacy-guide {
    font-size: 3.2vw;
    margin: 2.667vw auto 0;
    width: 82.667vw;
  }
  
  .privacy {
    margin: 6.667vw auto 0;
    padding: 5.333vw 2.667vw 8vw;
    width: 82.667vw;
  }
  .privacy-inner {
    height: 28.667vw;
    padding: 0 1.333vw 2.667vw;
  }
  .privacy-title {
    font-size: 3.2vw;
  }
  .privacy-content {
    font-size: 2.667vw;
  }
  
  .privacy-agree {
    font-size: 2.933vw;
    padding-left: 4vw;
  }
  .privacy-agree .input-checkbox {
    height: 3.467vw;
    width: 3.467vw;
  }
  
  .form-btn-wrap {
    gap: 2.667vw;
    margin: 6.667vw auto 0;
    width: 82.667vw;
  }
  .form-btn {
    font-size: 4vw;
  }
  
  .footer {
    margin-top: 17.333vw;
    padding: 7.333vw 4vw 10vw;
  }
  .logo {
    width: 92vw;
  }
  .footer-text {
    margin-top: 4vw;
  }

  .thanks-title {
    font-size: 4.8vw;
    margin-top: 5.333vw;
    width: 89.333vw;
  }
}
