@charset "UTF-8";
/* Scss Document */
:root {
  --color-primary: #E67C09;
  --color-on-primary: #FFFFFF;
  --color-accent: #FFFFFF;
  --color-accent-light:#FDEA8C;
  --color-error:#FFF9E6;
  --color-on-error: #FFFFFF;
  --color-attention:#FFE2E2;
  --color-background:#F8F2EF;
  --color-on-background:#333333;
  --color-on-background-light:#666666;
  --color-base-gray:#DDDDDD;
  --color-link:#2981B5;
  --color-disabled:#F2F2F2;
  --color-on-disabled:#999999;
  --color-dirty:#56A78A;
  --color-dirty-light:#EBFDF5;
  --font-body: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-weight: 500;
}

body {
  background-color: #FFFCF8;
  color: #333333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.7;
  font-feature-settings: "palt";
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

header {
  background-color: #FFF;
  padding: 10px 0;
  height: 56px;
  box-shadow: 0 1px 2px 0px #DDD;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}
header .header-logo {
  display: inline-block;
  margin-left: 24px;
}
header .header-logo img {
  height: 36px;
}
header .header-nav {
  margin-right: 24px;
  display: inline-block;
  float: right;
  line-height: 36px;
}
header .nav-item {
  display: inline-block;
  margin-left: 50px;
}
header .nav-item a {
  position: relative;
}
header .nav-item a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-size: 24px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -26px;
  transform: translateY(-50%);
}
header #header-btn-login a::before {
  background-image: url("../img/icon-account.svg");
}
header #header-btn-contact a::before {
  background-image: url("../img/icon-contact.svg");
}
header #header-btn-question a::before {
  background-image: url("../img/icon-question.svg");
}

.menu-btn {
  display: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  text-align: center;
}
.menu-btn .menu-btn-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 24px;
  height: 24px;
  margin: 0 auto;
}
.menu-btn .menu-btn-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #333333;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-btn .menu-btn-label {
  font-size: 10px;
  display: block;
}
.menu-btn.is-open .menu-btn-icon span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-btn.is-open .menu-btn-icon span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.global-menu-overlay {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  height: calc(100% - 56px);
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 998;
}
.global-menu-overlay.is-open {
  display: block;
}
.global-menu-overlay .menu-list {
  padding: 32px 24px;
}
.global-menu-overlay .menu-item {
  margin-bottom: 24px;
  font-size: 1.1rem;
}
.global-menu-overlay .menu-item a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #DDD;
}

body.menu-open {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  header .header-logo {
    margin-left: 12px;
  }
  header .header-nav {
    display: none;
  }
  header .menu-btn {
    display: block;
  }
}
footer {
  position: relative;
  background-color: #FFE072;
  padding: 15px 0;
  color: #666;
}
@media (min-width: 769px) {
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}
footer .footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .copyright {
  display: inline-block;
  margin-left: 24px;
  font-size: 0.8rem;
}
footer .footer-link {
  margin-right: 24px;
  display: flex;
  justify-content: space-between;
}
footer li {
  padding: 0 10px;
  line-height: 1rem;
}
footer li + li {
  border-left: 1px solid #333333;
  height: 1.2em;
}
@media (max-width: 768px) {
  footer .footer-wrapper {
    flex-direction: column-reverse;
  }
  footer .footer-link {
    flex-direction: column;
    margin-bottom: 32px;
  }
  footer li {
    display: block;
    padding: 10px 0;
    border-left: none;
    text-align: center;
  }
  footer li + li {
    border-left: none;
    height: auto;
  }
}

.btn {
  padding: 12px 24px;
  background-color: #F8AE35;
  color: #FFF;
  border-radius: 10px;
  text-align: center;
  transition: 0.4s;
}
.btn:hover {
  opacity: 0.7;
}

.text-wrapper {
  margin-bottom: 8px;
}

input[type=text],
input[type=email],
input[type=tel] {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid #DDD;
  border-radius: 10px;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder {
  color: #DDD;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  color: #DDD;
}

select {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid #DDD;
  border-radius: 10px;
  background-color: #FFF;
  background-image: url("../img/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

textarea {
  padding: 0.625rem 1rem;
  border: 1px solid #DDD;
  border-radius: 10px;
  width: 100%;
}
textarea::-moz-placeholder {
  color: #DDD;
}
textarea::placeholder {
  color: #DDD;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

input[type=checkbox] {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #DDD;
  border-radius: 5px;
  vertical-align: -2px;
  margin-right: 16px;
}

input[type=checkbox]:checked:before {
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
  background-image: url("../img/icon-checked.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

input[type=checkbox]:checked + input[type=checkbox]::before {
  border-color: #666;
}

input[type=checkbox]:checked + input[type=checkbox]::after {
  opacity: 1;
}

.radio-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

input[type=radio] {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #DDD;
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 16px;
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #F8AE35;
  content: "";
}

/*
共通コンテンツ
*/
.container {
  max-width: 1200px;
  margin: 100px auto;
}

.title {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.title-caption {
  font-size: 1.5rem;
  color: #F8AE35;
}

.contents {
  background-color: #FFF;
  box-shadow: 0 1px 2px 0px #DDD;
  padding: 20px;
}

.heading {
  font-size: 1.2rem;
  margin-bottom: 12px;
  list-style: decimal;
  list-style-position: inside;
}

.info {
  font-size: 1rem;
  margin-bottom: 32px;
}

.link {
  color: #2981B5;
  text-decoration: underline;
}

@media screen and (max-width: 1200px) {
  .container {
    margin-right: 18px;
    margin-left: 18px;
  }
  .contents {
    padding: 12px;
  }
}
/*
プライバシーポリシー
*/
.privacy h2, .kiyaku h2 {
  border-bottom: 1px solid #F8AE35;
  font-size: 1.2rem;
  margin: 24px 0 16px;
  font-weight: 600;
}
.privacy h3, .kiyaku h3 {
  padding-bottom: 4px;
  font-size: 1.15rem;
  font-weight: 500;
}
.privacy h3:not(:first-of-type), .kiyaku h3:not(:first-of-type) {
  margin-top: 20px;
}
.privacy ul, .privacy ol, .kiyaku ul, .kiyaku ol {
  padding-left: 20px;
}
.privacy ul, .kiyaku ul {
  list-style: disc;
}
.privacy ol, .kiyaku ol {
  list-style: decimal;
}
.privacy li, .kiyaku li {
  list-style: none;
}
.privacy p, .kiyaku p {
  margin: 8px 0;
}
.privacy__footer, .kiyaku__footer {
  text-align: right;
}

/*
お問い合わせフォーム
*/
.required::after {
  content: "必須";
  padding: 2px 6px;
  margin-left: 8px;
  background-color: #F74141;
  border-radius: 0.3rem;
  color: #FFF;
  font-size: 0.8rem;
  text-wrap: nowrap;
}

.contact .desc {
  margin-bottom: 32px;
}
.contact .contact-form .table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 32px;
  border: 1px solid #DDD;
  border-radius: 10px;
}
.contact .contact-form .table tr {
  border-bottom: 1px solid #DDD;
}
.contact .contact-form .table th {
  background-color: #F4F4F4;
  padding: 24px;
  text-align: left;
  vertical-align: top;
}
.contact .contact-form .table td {
  padding: 24px;
  background-color: #FFF;
}
.contact .contact-form .table td .agree-desc {
  margin-bottom: 12px;
}
.contact .btn-wrapper {
  text-align: center;
}
.contact .submit-btn {
  padding: 12px 8rem;
}
@media (max-width: 768px) {
  .contact .contact-form .table {
    border: 0;
  }
  .contact .contact-form .table tr {
    display: block;
  }
  .contact .contact-form .table th, .contact .contact-form .table td {
    display: block;
    position: relative;
  }
  .contact .contact-form .table th::before, .contact .contact-form .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 0.5rem;
    font-weight: bold;
    text-align: left;
  }
  .contact .contact-form .table th {
    padding: 12px 12px;
    border-top: 1px solid #DDD;
  }
  .contact .contact-form .table td {
    padding: 12px 12px 24px;
  }
}

/*
よくあるご質問
*/
.question .tab-label {
  padding: 10px 30px;
  cursor: pointer;
  box-shadow: 0px -1px 2px 0px #DDD;
  border-bottom: none;
  background: #f4f4f4;
  display: inline-block;
  margin-left: 2px;
}
.question .tab-label:hover {
  background: #FFF;
}
.question input[type=radio] {
  display: none;
}
.question input[type=radio]:checked + .tab-label {
  background: #FFF;
  border-top: 4px solid #F8AE35;
}
.question .tab-contents {
  background: #FFF;
  padding: 20px;
  box-shadow: 0px 1px 2px 0px #DDD;
}
.question .tab-content {
  display: none;
}
.question #tab1:checked ~ .tab-contents #content1,
.question #tab2:checked ~ .tab-contents #content2 {
  display: block;
}
.question .faq-item {
  transition: 0.5s;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: #DDD 0px 2px 4px 0px;
  border-radius: 10px;
}
.question .faq-item:last-of-type {
  margin-bottom: 0;
}
.question .faq-item[open] {
  margin-top: 0;
  padding-bottom: 10px;
}
.question .faq-title {
  font-size: 1.2rem;
  background-color: #FFFDF4;
  display: block;
  padding: 15px;
  transition: 0.8s ease;
  display: flex;
  align-items: center;
}
.question .faq-title:hover {
  cursor: pointer;
}
.question .faq-title:before {
  content: "Q";
  font-family: Montserrat;
  font-size: 1.5rem;
  color: #F8AE35;
  font-weight: bolder;
  margin-right: 12px;
}
.question .faq-title::after {
  content: "";
  background-image: url("../img/icon-arrow.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.question .faq-title::-webkit-details-marker {
  display: none;
}
.question .faq-item[open] .faq-title::after {
  transform: scale(1, -1);
}
.question .faq-desc {
  margin-bottom: 12px;
  padding: 20px;
  font-size: 1.2rem;
}
.question .faq-desc::before {
  content: "A";
  font-family: Montserrat;
  font-size: 1.5rem;
  color: #F8AE35;
  font-weight: bolder;
  margin-right: 12px;
}
.question .faq-desc-heading {
  margin-bottom: 12px;
}
.question .faq-desc-body {
  margin-bottom: 12px;
}
.question .faq-list {
  list-style-position: outside;
  padding-left: 18px;
}
.question .faq-list li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.question .list-num {
  list-style: decimal;
}
.question .list-bullet {
  list-style: disc;
}
.question .faq-card {
  margin: 12px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 1px 2px #FFE072;
}
@media (max-width: 768px) {
  .question .tab-contents {
    padding: 12px;
  }
  .question .faq-title {
    font-size: 1rem;
  }
  .question .faq-title::before {
    font-size: 1.2rem;
  }
  .question .faq-title::after {
    width: 1.5rem;
    height: 1.5rem;
  }
  .question .faq-desc {
    font-size: 1rem;
  }
  .question .faq-desc::before {
    font-size: 1.2rem;
  }
}

/*
アプリリンク
*/
.app-link {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .app-link {
    height: 100%;
    padding: 36px 0;
    padding-bottom: 0;
  }
}
.app-link .app-link-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
@media screen and (max-width: 768px) {
  .app-link .app-link-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    -moz-column-gap: 0;
         column-gap: 0;
    text-align: center;
    row-gap: 24px;
    padding: 32px 24px 0;
  }
}
.app-link .app-link-image {
  grid-column: 1/2;
  grid-row: 1/4;
}
.app-link .app-link-image img {
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .app-link .app-link-image {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
.app-link .app-link-title {
  text-align: center;
  font-size: 16px;
  color: var(--color-primary);
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
.app-link .app-link-title p {
  margin-left: 80px;
}
.app-link .app-link-title .app-link-title-text {
  margin-bottom: 12px;
}
.app-link .app-link-title .app-link-title-subtext {
  color: var(--color-on-background-light);
  margin-top: -24px;
}
.app-link .app-link-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 80px;
  justify-content: center;
}
.app-link .btn-preparing {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-link .btn-preparing img {
  opacity: 0.5;
}
.app-link .btn-preparing p {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--color-on-background-light);
  margin-top: 5px;
  line-height: 1;
}
.app-link .app-link-btn-wrapper a img {
  display: block;
  width: 180px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .app-link .app-link-btn-wrapper {
    flex-direction: column;
    margin-left: 0;
    gap: 12px;
    text-align: center;
    align-items: stretch;
  }
  .app-link .app-link-btn-wrapper a img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .app-link .app-link-title {
    width: 100%;
    margin: 0 auto;
  }
  .app-link .app-link-title p {
    margin-left: 0;
  }
  .app-link .app-link-title-text {
    font-size: 14px;
  }
  .app-link .app-link-title-subtext {
    font-size: 12px;
    margin-top: -8px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.content-wrapper .content-title {
  font-size: 24px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
.content-wrapper .content-logo {
  width: 300px;
}
.content-wrapper .content-headlines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.content-wrapper .content-subtitle {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: var(--color-primary);
}
.content-wrapper .content-description {
  font-size: 14px;
  max-width: 540px;
  margin-top: -12px;
}
@media screen and (max-width: 768px) {
  .content-wrapper .content-description {
    max-width: 100%;
  }
}
.content-wrapper .btn-app-wrapper {
  display: flex;
  justify-content: center;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .content-wrapper .btn-app-wrapper {
    flex-direction: column;
    gap: 32px;
  }
}
.content-wrapper .btn-app-wrapper .btn-app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.content-wrapper .btn-app-wrapper .btn-app {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper .btn-app-wrapper .btn-app .btn-app-icon {
  height: 100px;
  margin-bottom: -2px;
}
.content-wrapper .btn-app-wrapper .btn-app .btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  width: 220px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #FFF;
}
.content-wrapper .btn-app-wrapper .btn-text a {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-primary);
}
.content-wrapper .btn-app-wrapper .btn-text a:hover {
  border-bottom: 1px solid var(--color-primary);
}/*# sourceMappingURL=style.css.map */