/*!
global > color
------------------------------
*/
:root {
  --color-bg-base: #fafafa;
  --color-bg-primary: #c7a26c;
  --color-bg-primary-light: rgba(199, 162, 108, 0.35);
  --color-bg-primary-extra-light: rgba(199, 162, 108, 0.05);
  --color-bg-secondary: #52442f;
  --color-bg-black: #333333;
  --color-bg-white: #ffffff;
  --color-bg-accent: #ff9800;
  --color-border-gray: #dddddd;
  --color-border-primary: #c7a26c;
  --color-border-black: #333333;
  --color-font-primary: #c7a26c;
  --color-font-black: #333333;
  --color-font-white: #ffffff;
  --color-font-link: #4895e6;
  --color-font-base: #8d857e;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 760px;
  --width-content: 1080px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-header: 10;
  --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/*!
foundation > base
------------------------------
*/
body {
  line-height: 1.75;
  font-size: 14px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  background-color: var(--color-bg-base);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

/*!
component > form > text
------------------------------
*/
.c-input-text {
  height: 100%;
  width: 100%;
  border: 1px solid var(--color-border-gray);
  border-radius: 8px;
  padding: 8px;
}

/*!
component > form > checkbox
------------------------------
*/
.c-input-checkbox:checked + .c-input-checkbox-text:before {
  border: 1px solid var(--color-font-link);
  background-color: var(--color-font-link);
}
.c-input-checkbox:checked + .c-input-checkbox-text:after {
  content: "";
  position: absolute;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  left: 6px;
  top: 8px;
  width: 6px;
  height: 10px;
  transform: translateY(-2px) rotate(45deg);
}
.c-input-checkbox:focus-visible + .c-input-checkbox-text {
  border-bottom: 2px solid var(--color-font-link);
}

.c-input-checkbox-text {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.c-input-checkbox-text:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-border-gray);
  border-radius: 3px;
  margin-right: 8px;
  flex-shrink: 0;
}

/*!
component > button
------------------------------
*/
.c-button {
  border-radius: 100vh;
  font-weight: bold;
  text-align: center;
  padding: 8px 16px;
  display: inline-block;
}
.c-button--accent {
  background-color: var(--color-bg-accent);
  color: var(--color-font-black);
  border: 2px solid var(--color-border-black);
}
.c-button--white {
  background-color: var(--color-bg-white);
  color: var(--color-font-primary);
  border: 2px solid var(--color-font-primary);
}
.c-button--black {
  background-color: var(--color-bg-black);
  color: var(--color-font-white);
}
.c-button--center {
  margin: 0 auto;
}

/*!
component > title
------------------------------
*/
.c-title-level2 {
  font-weight: bold;
  font-size: 22px;
  color: var(--color-font-primary);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-title-level2 {
    font-size: 32px;
  }
}
.c-title-level2--center {
  text-align: center;
  padding-left: 0.05em;
}

/*!
component > cta
------------------------------
*/
.c-cta {
  background-color: var(--color-bg-secondary);
  text-align: center;
  font-weight: bold;
  color: var(--color-font-white);
  padding: 48px 0;
}
@media screen and (min-width: 768px) {
  .c-cta {
    padding: 64px 0;
  }
}

.c-cta-msg {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .c-cta-msg {
    font-size: 32px;
  }
}
.c-cta-msg span {
  display: inline-block;
}

.c-cta-msg02 {
  font-size: 16px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .c-cta-msg02 {
    font-size: 18px;
  }
}

.c-cta-button {
  margin-top: 24px;
}
.c-cta-button a {
  max-width: 300px;
  height: 68px;
  font-size: 18px;
  display: grid;
  place-items: center;
}

/*!
layout > container
------------------------------
*/
.l-container, .l-container-s {
  width: 90%;
  margin: 0 auto;
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container {
  max-width: var(--width-content);
}

/*!
layout > section
------------------------------
*/
.l-section {
  padding: 64px 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 96px 0;
  }
}

/*!
layout > section-body
------------------------------
*/
.l-section-body {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .l-section-body {
    margin-top: 40px;
  }
}

/*!
layout > header
------------------------------
*/
.header {
  padding: 0 8px;
  height: 60px;
  background-color: var(--color-bg-white);
  position: sticky;
  left: 0;
  top: 0;
  border-bottom: 2px solid var(--color-border-primary);
  z-index: var(--z-index-header);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header {
    height: 75px;
    padding: 0 16px;
  }
}

.header-logo {
  width: 120px;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 150px;
  }
}

.header-button-wrap {
  display: flex;
  gap: 4px;
}

.header-button a {
  width: 85px;
  height: 34px;
  font-size: 12px;
  display: grid;
  place-items: center;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .header-button a {
    width: 120px;
    font-size: 16px;
    height: 42px;
  }
}

/*!
layout > footer
------------------------------
*/
.footer {
  padding: 40px 0 16px;
}

.footer-logo {
  margin: 0 auto;
  width: 200px;
}

.footer-nav {
  margin-top: 24px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .footer-nav-list {
    justify-content: center;
    flex-direction: row;
  }
}

.footer-nav-item {
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .footer-nav-item {
    font-size: 14px;
  }
}
@media screen and (min-width: 500px) {
  .footer-nav-item:not(:first-child)::before {
    content: "/";
    display: inline-block;
    padding: 0 6px;
  }
}

.footer-copyright {
  display: block;
  text-align: center;
  font-size: 12px;
  margin-top: 24px;
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  padding: 40px 0;
  background-color: var(--color-bg-primary-light);
  background-position: center;
  background-size: 65px;
  border-bottom: 2px solid var(--color-border-primary);
  background-image: url(../img/bg-pattern-kv.png);
}
@media screen and (min-width: 768px) {
  .top-kv {
    background-size: 75px;
    padding: 56px 0;
  }
}

@media screen and (min-width: 768px) {
  .top-kv-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: center;
  }
}

.top-kv-text {
  text-align: center;
  max-width: 550px;
}
@media screen and (min-width: 768px) {
  .top-kv-text {
    text-align: left;
  }
}

.top-kv-copy {
  color: var(--color-font-primary);
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  padding-left: 0.05em;
}
.top-kv-copy span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-kv-copy {
    padding-left: 0;
  }
}

.top-kv-copy02 {
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding-left: 0.1em;
  color: var(--color-font-black);
  margin-top: 8px;
}
.top-kv-copy02 span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-kv-copy02 {
    font-size: 38px;
    margin-top: 0;
    padding-left: 0;
  }
}

.top-kv-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 480px;
  margin: 24px auto 0;
}
@media screen and (min-width: 768px) {
  .top-kv-list {
    margin: 32px 0 0 0;
    justify-content: flex-start;
  }
}

.top-kv-item {
  font-size: 14px;
  border-radius: 4px;
  background-color: var(--color-bg-primary);
  line-height: 1;
  padding: 4px 8px;
  color: var(--color-font-white);
}

/*!
page > top > top-kv-sigin
------------------------------
*/
.top-kv-signin {
  max-width: 380px;
  margin: 32px auto 0;
}
@media screen and (min-width: 768px) {
  .top-kv-signin {
    margin: 0;
  }
}

.top-kv-signin-title {
  text-align: center;
  font-size: 20px;
  color: var(--color-font-primary);
  font-weight: bold;
  line-height: 1;
}

.top-kv-signin-body {
  padding: 16px;
  border: 2px solid var(--color-border-gray);
  border-radius: 16px;
  background-color: var(--color-bg-white);
  margin-top: 12px;
}
@media screen and (min-width: 500px) {
  .top-kv-signin-body {
    padding: 32px 40px;
  }
}

.top-kv-signin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.top-kv-signin-item-label {
  font-weight: bold;
  line-height: 1;
}

.top-kv-signin-item-text {
  margin-top: 8px;
}
.top-kv-signin-item-text input {
  height: 45px;
}

.top-kv-signin-consent {
  display: flex;
  justify-content: center;
}

.top-kv-signin-consent-label {
  font-size: 14px;
  line-height: 1;
}

.top-kv-signin-consent-link {
  color: var(--color-font-link);
}

.top-kv-signin-button button {
  height: 45px;
  width: 100%;
}

/*!
page > top > top-movie
------------------------------
*/
.top-movie-youtube {
  aspect-ratio: 16/9;
}
.top-movie-youtube iframe {
  width: 100%;
  height: 100%;
}

/*!
page > top > top-function
------------------------------
*/
.top-function {
  background-color: var(--color-bg-primary-extra-light);
}

.top-function-item {
  border-top: 1px solid var(--color-border-gray);
  padding: 40px 0;
}
@media screen and (min-width: 1080px) {
  .top-function-item {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
  }
}
.top-function-item:last-child {
  border-bottom: 1px solid var(--color-border-gray);
}
.top-function-item--other {
  display: block;
}

@media screen and (min-width: 1080px) {
  .top-function-item-img {
    max-width: 600px;
    order: 1;
    margin-left: auto;
  }
}
.top-function-item-img img {
  box-shadow: rgba(106, 106, 106, 0.2) 0px 7px 25px 0px;
}

.top-function-item-text {
  margin-top: 24px;
}
@media screen and (min-width: 1080px) {
  .top-function-item-text {
    margin-top: 0;
  }
}

.top-function-number {
  color: var(--color-font-primary);
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 12px;
}

.top-function-item-title {
  color: var(--color-font-primary);
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .top-function-item-title {
    font-size: 26px;
  }
}

.top-function-item-description {
  margin-top: 8px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top-function-item-description {
    margin-top: 16px;
  }
}

/*! top-function-other */
.top-function-other-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media screen and (min-width: 500px) {
  .top-function-other-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .top-function-other-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.top-function-other-item {
  display: flex;
  align-items: center;
}

.top-function-other-icon {
  width: 44px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .top-function-other-icon {
    width: 50px;
  }
}

.top-function-other-description {
  margin-left: 16px;
  font-size: 14px;
}
.top-function-other-description span {
  display: inline-block;
}

/*!
page > top > top-plan
------------------------------
*/
.top-plan-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .top-plan-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.top-plan-item {
  border: 2px solid var(--color-border-gray);
  border-radius: 24px;
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .top-plan-item {
    padding: 32px 16px;
  }
}
.top-plan-item--paid {
  color: var(--color-font-primary);
  border: 2px solid var(--color-border-primary);
  background-color: var(--color-bg-primary-extra-light);
}

.top-plan-title {
  border-radius: 100vh;
  font-weight: bold;
  background-color: var(--color-bg-white);
  border: 2px solid var(--color-border-gray);
  max-width: 210px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  font-size: 20px;
}
.top-plan-item--paid .top-plan-title {
  border: 2px solid var(--color-border-primary);
}

.top-plan-price-title {
  font-weight: bold;
  margin-top: 24px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-plan-price-title {
    font-size: 20px;
    margin-top: 32px;
  }
}

.top-plan-price {
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  line-height: 1;
  padding-left: 0.05em;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-plan-price {
    font-size: 36px;
    margin-top: 8px;
  }
}

.top-plan-function-title {
  font-weight: bold;
  text-align: center;
  margin-top: 24px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-plan-function-title {
    margin-top: 32px;
  }
}
.top-plan-function-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--color-font-base);
  margin: 8px auto 0;
}
.top-plan-item--paid .top-plan-function-title::after {
  background-color: var(--color-bg-primary);
}

.top-plan-function-list-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .top-plan-function-list-wrap {
    margin-top: 16px;
  }
}

.top-plan-function-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.top-plan-function-item {
  display: flex;
  align-items: center;
}
.top-plan-function-item::before {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  margin-right: 8px;
  border-left: 2px solid var(--color-border-gray);
  border-bottom: 2px solid var(--color-border-gray);
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.top-plan-item--paid .top-plan-function-item::before {
  border-left: 2px solid var(--color-border-primary);
  border-bottom: 2px solid var(--color-border-primary);
}

/*!
page > top > top-faq
------------------------------
*/
.top-faq {
  background-color: var(--color-bg-primary-extra-light);
}

.top-faq-item {
  padding: 24px 0;
  border-top: 1px solid var(--color-border-gray);
}
.top-faq-item:last-child {
  border-bottom: 1px solid var(--color-border-gray);
}

.top-faq-text {
  display: flex;
  align-items: baseline;
}
.top-faq-text::before {
  font-weight: bold;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: var(--color-font-white);
  display: grid;
  place-items: center;
  margin-right: 8px;
  flex-shrink: 0;
}
.top-faq-text--question {
  font-weight: bold;
}
.top-faq-text--question::before {
  content: "Q";
  background-color: var(--color-bg-primary);
}
.top-faq-text--answer {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .top-faq-text--answer {
    margin-top: 12px;
  }
}
.top-faq-text--answer::before {
  content: "A";
  color: var(--color-font-primary);
  border: 1px solid var(--color-border-primary);
}
.top-faq-text a {
  color: var(--color-font-link);
}
.top-faq-text span {
  display: block;
}/*# sourceMappingURL=style.css.map */