* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #303030;
  margin: 0;
  padding: 0;
}

h2 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  text-align: center;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  p {
    font-size: 13px;
  }
}

input,
textarea {
  padding: 15px 20px;
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(190, 190, 190, 0.5);
  font-size: 16px;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bebebe;
}
input::placeholder,
textarea::placeholder {
  color: #bebebe;
}
input:focus,
textarea:focus {
  outline: none;
}

textarea {
  resize: none;
}

.button {
  font-size: 13px;
  padding: 12px;
  width: 280px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .button {
    width: 100%;
    height: 48px;
  }
}

.outline-button {
  border: 1px solid #4b4b4b;
  background-color: #fff;
  color: #4b4b4b;
}
.outline-button:hover {
  border-color: #c0b9ad;
  color: #c0b9ad;
}

.basic-button {
  border: 1px solid #8d806a;
  background-color: #8d806a;
  color: #fff;
}
.basic-button:hover {
  border-color: #c0b9ad;
  background-color: #c0b9ad;
}

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

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

.hidden {
  display: none;
}

.screen {
  display: none;
}
.screen.active {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px 64px;
}
@media screen and (max-width: 750px) {
  .screen.active {
    padding: 0 16px 64px;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.mt-2 {
  margin-top: 8px;
}

.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background-color: #fafafa;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 750px) {
  .header {
    justify-content: space-between;
  }
}

.header-nav {
  position: absolute;
  top: 50%;
  right: 44px;
  transform: translateY(-50%);
  display: flex;
}
@media screen and (max-width: 750px) {
  .header-nav {
    right: 8px;
  }
}
.header-nav .header-list {
  display: flex;
  align-items: center;
}
.header-nav .header-list:not(:last-child) {
  border-right: 1px solid #4b4b4b;
}
.header-nav .header-list a {
  padding: 0 16px;
  color: #4b4b4b;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
}
@media screen and (max-width: 750px) {
  .header-nav .header-list a {
    padding: 0 8px;
    font-size: 10px;
  }
}

.title {
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .title {
    margin-top: 24px;
    font-size: 18px;
  }
}
.title::after {
  content: "";
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 32px;
  height: 1px;
  background-color: #8d806a;
}
@media screen and (max-width: 750px) {
  .title::after {
    top: 37px;
  }
}

.text {
  margin-top: 37px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .text {
    text-align: left;
  }
}

.form {
  padding-top: 48px;
}
@media screen and (max-width: 750px) {
  .form {
    padding-top: 24px;
  }
}
.form .section.border-bottom {
  border-bottom: 1px solid #bebebe;
}
.form .section:last-child {
  border-bottom: 1px solid #bebebe;
}

.section {
  display: flex;
  gap: 24px;
  border-top: 1px solid #bebebe;
  padding: 40px 0;
}
.section .label {
  margin-top: 13px;
}
.section.items-top {
  align-items: flex-start;
}
.section.items-top .label {
  margin-top: 0px;
}
@media screen and (max-width: 750px) {
  .section {
    display: block;
    padding: 24px 0;
  }
}

.label {
  display: inline-block;
  width: 100%;
  max-width: 367px;
}
@media screen and (max-width: 750px) {
  .label {
    margin-bottom: 16px;
    font-size: 14px;
  }
}

.custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.custom-select img {
  position: absolute;
  top: 18px;
  right: 17px;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  pointer-events: none;
}

.selected {
  padding: 12.5px 20px;
  border: 1px solid rgba(190, 190, 190, 0.5);
  background: #fff;
}

.options {
  position: absolute;
  top: 49px;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid rgba(190, 190, 190, 0.5);
  display: none;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
}
.options li {
  padding: 12.5px 20px;
}
.options li:hover {
  background-color: #c0b9ad;
}

.custom-select.open .options {
  display: block;
}
.custom-select.open img {
  transform: rotate(180deg);
}

.tag {
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 12px;
}

.required {
  background-color: #ffe7e7;
  color: #ad180e;
}

.optional {
  background-color: #ddeaff;
  color: #2868d6;
}

.name-container {
  gap: 24px 8px;
}

.name {
  width: calc((100% - 8px) / 2);
}
@media screen and (max-width: 750px) {
  .name {
    width: 100%;
  }
}
.name label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.address-container {
  width: 100%;
}

.address:not(:last-child) {
  margin-bottom: 24px;
}
.address label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.postal-code-block {
  display: flex;
  gap: 8px;
}

.postal-code {
  flex: 1;
}

.search-button {
  margin-top: 26.5px;
  width: auto;
}

.label-note {
  margin-top: 16px;
  font-size: 13px;
}
@media screen and (max-width: 750px) {
  .label-note {
    margin-top: 8px;
  }
}

.note {
  margin-top: 40px;
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .note {
    margin-top: 24px;
  }
}
.note li {
  display: flex;
  gap: 8px;
}
.note li:not(:last-child) {
  margin-bottom: 8px;
}

.buttons {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
}
@media screen and (max-width: 750px) {
  .buttons {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }
}

.footer {
  background-color: #8d806a;
  color: #fff;
}

.footer-container {
  margin: 0 auto;
  padding: 60px 32px 32px;
  width: 100%;
  max-width: 1056px;
}
@media screen and (max-width: 750px) {
  .footer-container {
    padding: 40px 32px 16px;
    text-align: center;
  }
  .footer-container img {
    margin: 0 auto;
  }
}
.footer-container a {
  color: #fff;
}

.footer-first-block {
  display: flex;
  justify-content: space-between;
  margin-top: 66px;
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  .footer-first-block {
    display: block;
    margin-top: 32px;
    padding-top: 32px;
    padding-bottom: 16px;
  }
}
.footer-first-block ul li:not(:last-child) {
  margin-bottom: 4px;
}
.footer-first-block .left {
  font-size: 13px;
}
@media screen and (max-width: 750px) {
  .footer-first-block .left li:not(:last-child) {
    margin-bottom: 16px;
  }
}
.footer-first-block .right {
  margin-right: 187px;
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .footer-first-block .right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid #fff;
    margin-top: 32px;
    margin-right: 0;
    padding-top: 32px;
  }
  .footer-first-block .right li:not(:last-child)::after {
    content: "";
    margin: 0 8px;
  }
}

.footer-second-block {
  display: flex;
  justify-content: space-between;
  padding-top: 38px;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  .footer-second-block {
    display: block;
    padding-top: 0;
    border-top: none;
  }
}
.footer-second-block .left {
  display: flex;
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .footer-second-block .left {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-second-block .left li:not(:last-child)::after {
  content: "";
  margin: 0 8px;
}
.footer-second-block .right {
  margin-right: 78px;
  font-size: 11px;
  line-height: 18px;
}
@media screen and (max-width: 750px) {
  .footer-second-block .right {
    border-top: 1px solid #fff;
    margin-top: 32px;
    margin-right: 0;
    padding-top: 16px;
  }
}

#toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.toast {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
  padding: 24px;
  font-size: 13px;
  width: 600px;
  word-break: break-word;
  text-align: center;
}
.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.is-error {
  background-color: #fff1ee;
  border: 1px solid #ea1b00;
  color: #ea1b00;
}
.is-error::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  background-image: url("../img/sogo-alert.svg");
  vertical-align: text-bottom;
}

.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.loading-overlay.visible {
  display: flex;
}
.loading-overlay picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-overlay .loading-spinner {
  animation: spin 1s linear infinite;
  width: 80px;
  height: 80px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.alert-message {
  margin: 0 auto;
  padding: 16px;
  width: 450px;
  font-size: 13px;
}
@media screen and (max-width: 750px) {
  .alert-message {
    padding: 12px;
    max-width: 358px;
    width: 100%;
  }
}

.to-top-button {
  border: 1px solid #8d806a;
  background-color: #fafafa;
  color: #8d806a;
}

.confirm .label {
  font-weight: bold;
  margin-top: 0;
  min-width: 367px;
  width: auto;
}
@media screen and (max-width: 750px) {
  .confirm .label {
    min-width: auto;
    width: 100%;
  }
}

.complete {
  margin: 200px 0 !important;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .complete {
    margin: 80px 0 !important;
  }
}
.complete .text {
  text-align: center;
}

.error input,
.error .selected,
.error textarea {
  border: 1px solid #ad180e;
}

.error-message {
  margin-top: 4px;
  color: #ad180e;
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */