@charset "UTF-8";
/*---------------------------------
  * Foundation
---------------------------------*/
*,
*::before,
*::after {
  -webkit-appearance: unset;
  -moz-appearance: unset;
       appearance: unset;
  border: none;
  border-spacing: 0;
  box-sizing: border-box;
  font-size: unset;
  font-weight: unset;
  line-height: 1.3em;
  list-style-type: none;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  outline: none;
  padding: 0;
  text-align: unset;
  text-decoration: none;
}

/**
 * Default Theme
 */
:root {
  --color-base: #fff;
  --color-white: #fff;
  --color-green: #06C755;
  --color-gray--50: #f0f0f0;
  --color-gray--100: #e4e4e4;
  --color-gray--200: #a9a9a9;
  --color-black: #333;
  --color-light-blue: #ebf4fa;
  --color-accent: #19426a;
}

/**
 * Dark Theme
 */
/**
 * Global Space Properties
 * Based in 8px
 */
:root {
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-9: 72px;
  --space-10: 80px;
  --space-11: 88px;
  --space-12: 96px;
  --space-13: 104px;
  --space-14: 112px;
  --space-15: 120px;
  --space-16: 128px;
  --space-17: 136px;
  --space-18: 144px;
  --space-19: 152px;
  --space-20: 160px;
  --space-21: 168px;
  --space-22: 176px;
  --space-23: 184px;
  --space-24: 192px;
  --space-25: 200px;
  --space-26: 208px;
  --space-27: 216px;
  --space-28: 224px;
  --space-29: 232px;
  --space-30: 240px;
}

/* Animation */
/* Image Files */
/**
 * Media Query
 */
/**
 * Disable :hover on touch devices
 */
/**
 * Content Width
 */
/**
 * Headline
 */
*::-moz-selection {
  background: rgba(0, 0, 0, 0.1);
}
*::selection {
  background: rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  background-color: #eee;
  margin: 0 auto;
  max-width: 31.25rem;
  line-height: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

@media (max-width: 767px) {
  body {
    max-width: 100%;
  }
}
h1, h2, h3, h4, h5 {
  word-break: break-all;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  max-width: 100%;
}

p {
  line-height: 1.5em;
  text-align: justify;
}

a {
  color: inherit;
  transition: opacity 0.3s ease;
}

/*---------------------------------
  * Layout
---------------------------------*/
.l-header {
  position: fixed;
  left: 0;
  top: 0;
  height: 70px;
  width: 100%;
  transition: opacity 0.15s ease-out;
  background-color: #5fcdcb;
  z-index: 2;
}
.l-header__inner {
  align-items: center;
  height: inherit;
  padding: 0 1.875rem;
}
.l-header__logo {
  transition: opacity 0.15s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__logo:hover {
    opacity: 0.5;
  }
}
.l-header__logo img {
  max-width: 300px;
  width: 100%;
}
.l-header__logo-wrap {
  display: block;
}

@media (max-width: 767px) {
  .l-header {
    background-color: #5fcdcb;
  }
  .l-header__logo {
    max-width: 15.6875rem;
  }
}
.l-contents {
  background-color: #fff;
  margin-top: 90px;
  padding-top: 1rem;
}

@media (max-width: 767px) {
  .l-contents {
    margin-top: 90px;
    padding-top: 0;
  }
}
.l-footer {
  background: #fff;
  display: grid;
  padding: var(--space-3);
  place-items: center;
  padding-bottom: 5.5rem;
  margin-bottom: 1rem;
}
.l-footer__copyright {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.l-footer__privacy a {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

@media (max-width: 767px) {
  .l-footer {
    padding-bottom: calc(var(--cv-height) + var(--space-3));
  }
}
/*---------------------------------
  * Object
---------------------------------*/
/*---------- Component ----------*/
.c-form__textbox {
  background: #ebebeb;
  border: 1px solid #adadad;
  border-radius: 0.25em;
  box-sizing: border-box;
  display: block;
  font-size: 1em;
  margin: 1.2em auto 0 auto;
  padding: 0.75em 0.75em;
  width: 90%;
}
.c-form__select {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 12px;
}
.c-form__select-box {
  background: #ebebeb;
  border: 1px solid #adadad;
  border-radius: 0.25em;
  box-sizing: border-box;
  display: block;
  font-size: 1em;
  margin: 1.2em auto 0 auto;
  padding: 0.75em 0.75em;
  width: 90%;
}
.c-form__check-box {
  border: 1px solid #adadad;
  background-color: #ebebeb;
  border-radius: 0.25em;
  cursor: pointer;
  display: block;
  font-size: 1em;
  font-weight: bold;
  padding: 0.5em 0.75em;
  transition: ease all 0.2s;
  width: 90%;
  margin: 0 auto;
}
.c-form__check-box::before {
  color: #cdcdcd;
  content: "✔";
  display: inline-block;
  font-size: 1.2em;
  margin-right: 0.25em;
}
.c-form__check-box::after {
  content: " ";
}
input[type=checkbox]:checked ~ .c-form__check-box {
  color: #fff;
  background: #262735;
  transition: ease all 0.2s;
}
input[type=checkbox]:checked ~ .c-form__check-box::before {
  color: #5fcdcb;
  font-size: 1.2em;
  font-weight: bold;
}
.c-form--birthday {
  min-width: 60px;
  margin-right: 7px;
  margin-left: 8px;
}
.c-form--birthday:first-child {
  margin-left: 0;
}
.c-form--time {
  margin-top: 0;
}
.c-form::before, .c-form::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.c-form::after {
  position: absolute;
  top: 50%;
  right: 1.4em;
  transform: translate(50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #858989;
  border-right: 3px solid #858989;
}
.c-form__textarea {
  margin: 7px 0;
  padding: 7px;
  font-size: 14px;
  width: 100%;
  border: 1px solid #CBD0D0;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
}
.c-form__date {
  background: #ebebeb;
  border: 1px solid #adadad;
  border-radius: 0.25em;
  box-sizing: border-box;
  display: block;
  font-size: 1em;
  margin: 1.2em auto 0 auto;
  padding: 0.75em 0.75em;
  width: 90%;
}

.is-error {
  box-shadow: 0 0 2px 2px #FF4141 inset;
}

.c-button {
  background: #5fcdcb;
  color: #fff;
  cursor: pointer;
  display: table;
  font-size: 1em;
  margin: 2em auto 0;
  padding: 1em 2em;
}
.c-button::before, .c-button::after {
  content: "";
  width: 15px;
  height: 1px;
  display: inline-block;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  right: 10px;
}
.c-button::before {
  top: calc(50% - 6px);
  transform: rotate(45deg);
}
.c-button::after {
  bottom: calc(50% - 6px);
  transform: rotate(-45deg);
}

/*----------- Project -----------*/
.tar {
  text-align: right;
}

.p-privacy__main {
  width: 90%;
  margin: 0 auto;
}
.p-privacy__title {
  font-size: 1.1em;
  display: block;
  color: #333;
  padding: 0.3em 0.3em 0.3em 0.5em;
  background-color: #f3eeef;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
.p-privacy__sub-title {
  font-size: 1em;
  color: #333;
  position: relative;
  padding: 0 0.5em 0.3em 0.8em;
  border-bottom: 1px solid #ccc;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.2em;
  margin: 20px 0;
}
.p-privacy__text {
  color: #666;
  font-size: 14px;
  padding-right: 1% !important;
  padding-left: 1% !important;
  margin-top: 2% !important;
  padding-bottom: 30px;
  line-height: 1.6;
  display: block;
  overflow: hidden;
  line-height: 1.7em;
  letter-spacing: 0.05em;
}

.p-thanks__main {
  width: 90%;
  margin: 0 auto;
}
.p-thanks__item-title {
  font-weight: bold;
  background: #fff;
  border-bottom: 1px solid #cfcfcf;
  border-top: 1px solid #cfcfcf;
  display: block;
  padding: 0.8em;
}
.p-thanks__label {
  margin-left: 5px;
  text-align: right;
  color: #B5B5B5;
  padding: 2px 5px;
}
.p-thanks__label--required {
  background-color: #FF4141;
  color: #fff;
}
.p-thanks__title {
  font-family: "gothic", sans-serif;
  font-size: min(20px, 5vw);
  text-align: center;
}
.p-thanks__text {
  font-family: "gothic", sans-serif;
  display: block;
  text-align: center;
  padding: 0.5em;
  font-weight: bold;
  margin: 1em 0 0;
}

@media (max-width: 767px) {
  .p-form {
    width: 100%;
  }
  .p-form__main {
    width: 100%;
  }
}
.p-form {
  margin: auto;
}
.p-form__errormessage {
  color: #FF4141;
  font-size: 14px;
  font-weight: bold;
  margin: 0 auto 1.2em auto;
}
.p-form__errormessage p {
  margin: 0 auto;
  width: 90%;
}
.p-form__headline {
  font-family: "mincho", serif;
  line-height: 1.5em;
  width: 90%;
  margin: 20px auto;
  border: 1px solid #fff;
  padding: 0.75em;
  background: #5fcdcb;
  font-size: 1.625rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
.p-form__main {
  width: 90%;
  margin: 0 auto;
}
.p-form__item-title {
  font-weight: bold;
  background: #fff;
  border-bottom: 1px solid #cfcfcf;
  border-top: 1px solid #cfcfcf;
  display: block;
  padding: 0.8em;
}
.p-form__label {
  margin-left: 5px;
  text-align: right;
  color: #B5B5B5;
  padding: 2px 5px;
}
.p-form__label--required {
  background-color: #FF4141;
  color: #fff;
}

@media (max-width: 767px) {
  .p-form {
    width: 100%;
  }
  .p-form__main {
    width: 100%;
  }
}
/*----------- Utility -----------*/
.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-flex {
  display: flex !important;
}

.u-fs-10 {
  font-size: 10px !important;
}

.u-lh-10 {
  line-height: 1em !important;
}

.u-lh-15 {
  line-height: 1.5em !important;
}

.u-lh-20 {
  line-height: 2em !important;
}

.u-lh-25 {
  line-height: 2.5em !important;
}

.u-m-auto {
  margin: auto !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-l {
  text-align: left !important;
}

@media (min-width: 1081px) {
  .u-dn-pc {
    display: none !important;
  }
}

@media (max-width: 1080px) and (min-width: 768px) {
  .u-dn-tab {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-dn-sp {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */