@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
/* ////////////////// タグ初期値 ////////////////// */
html,
body {
  height: 100%;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #000000;
  background-color: #e9f4f1;
}

article,
aside,
details,
figure,
figcaption,
footer,
header,
main,
menu,
nav,
hgroup,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}

a {
  color: #3232fc;
  text-decoration: none;
}

p {
  margin: 0;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

li, dt, dd {
  margin: 0;
  padding: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -moz-box-sizing: content-box;
  height: 0;
}

@-webkit-keyframes rippleText {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 218, 99, 0.7);
            box-shadow: 0 0 0 0 rgba(247, 218, 99, 0.7);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(247, 218, 99, 0);
            box-shadow: 0 0 0 20px rgba(247, 218, 99, 0);
  }
}

@keyframes rippleText {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 218, 99, 0.7);
            box-shadow: 0 0 0 0 rgba(247, 218, 99, 0.7);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(247, 218, 99, 0);
            box-shadow: 0 0 0 20px rgba(247, 218, 99, 0);
  }
}
/* ////////////////// フォーム ////////////////// */
input[type=text],
input[type=email],
input[type=tel],
textarea {
  outline: none;
  width: 100%;
  padding: 0.5em 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #f4f4f4;
  border-radius: 8px;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #d3d3d3;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
  color: #d3d3d3;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #d3d3d3;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #d3d3d3;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: #d3d3d3;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  background-color: #fef7c4;
  border: 1px solid #f7da63;
  -webkit-animation: rippleText 2s ease infinite;
          animation: rippleText 2s ease infinite;
}

/* ボタン */
button,
input[type=button],
input[type=submit] {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

/* ラジオボタン */
/* チェックボックス */
input[type=radio],
input[type=checkbox] {
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス */
.checkbox-wrapper p {
  position: relative;
  margin: 1em 0;
}
.checkbox-wrapper input[type=checkbox] {
  position: absolute;
}
.checkbox-wrapper input[type=checkbox]:checked + label::after {
  background-color: #30a055;
}
.checkbox-wrapper label {
  display: inline-block;
  padding-left: 30px;
  font-size: 15px;
  cursor: pointer;
}
.checkbox-wrapper label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 5px;
}
.checkbox-wrapper label::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 3px;
  width: 16px;
  height: 10px;
  -webkit-mask-image: url(../img/check.svg);
          mask-image: url(../img/check.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #fff;
}

/* ラジオボタン（性別以外） */
.radio-wrapper {
  background-color: #fff;
  border-radius: 11px;
  overflow: hidden;
}
.radio-wrapper p {
  position: relative;
  margin: 0;
}
.radio-wrapper p:not(:last-child) {
  border-bottom: solid 1px #f4f4f4;
}
.radio-wrapper input[type=radio] {
  position: absolute;
}
.radio-wrapper input[type=radio]:checked + label {
  color: #fff;
  background-color: #30a055;
}
.radio-wrapper label {
  display: block;
  padding: 1em 30px 1em 1em;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.radio-wrapper label::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 10px;
  width: 16px;
  height: 10px;
  -webkit-mask-image: url(../img/check.svg);
          mask-image: url(../img/check.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #fff;
}

/* 性別 */
.gender {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}
.gender input[type=radio] {
  position: absolute;
  font-weight: bold;
}
.gender input[type=radio]:checked + .male {
  background-color: #0043b4;
  color: #fff;
}
.gender input[type=radio]:checked + .female {
  background-color: #ff7bac;
  color: #fff;
}
.gender label {
  display: grid;
  place-items: center;
  width: 50%;
  height: 55px;
  font-size: 15px;
  font-weight: 600;
  background-color: #fff;
  cursor: pointer;
}

/* セレクトボックス */
.select-wrapper {
  position: relative;
  display: block;
  width: 100%;
}
.select-wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  padding: 0.4em 50px 0.4em 0.4em;
  width: 100%;
  padding: 0.6em 2em 0.6em 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  color: #000000;
  background-color: #fff;
  border: none;
  border-radius: 8px;
}
.select-wrapper select::-ms-expand {
  display: none;
}
.select-wrapper select option {
  color: #000000;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-block;
  margin-top: -6px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #a6a6a6;
  border-bottom: 1px solid #a6a6a6;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}

/* ***************************************************
 SP
*************************************************** */
#header {
  height: 50px;
  padding: 0 5vw;
  background: #028640;
  background: -webkit-gradient(linear, left top, right top, from(rgb(2, 134, 64)), to(rgb(17, 102, 56)));
  background: linear-gradient(90deg, rgb(2, 134, 64) 0%, rgb(17, 102, 56) 100%);
}
#header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(800px - 10vw);
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
#header h1 img {
  width: 113px;
  margin-right: 4px;
}

#footer {
  display: grid;
  place-items: center;
  height: 50px;
  margin-top: 40px;
  background-color: #222222;
}
#footer .copyright {
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
}

.mv img {
  width: 100%;
  margin-bottom: 16px;
}
.mv img:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.section-chat {
  display: none;
  opacity: 0;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5vw;
}
.section-chat.active {
  display: block;
  -webkit-animation: zoomIn 0.3s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: zoomIn 0.3s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

.chat {
  position: relative;
  display: none;
  margin: 16px auto;
  padding-left: 62px;
}
.chat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  min-width: 42px;
  width: 42px;
  height: 42px;
  background-image: url(../img/chat-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
}
.chat .bubble {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 11px 12px;
  font-size: 15px;
  letter-spacing: 0.08em;
  background-color: #fff;
  -webkit-box-shadow: 2px 3px #eaeaea;
          box-shadow: 2px 3px #eaeaea;
  border-radius: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.chat .bubble::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 16px;
  left: -11px;
  width: 12px;
  height: 12px;
  -webkit-clip-path: polygon(0 50%, 100% 100%, 100% 0);
          clip-path: polygon(0 50%, 100% 100%, 100% 0);
  background-color: #fff;
  -webkit-box-shadow: 2px 3px #eaeaea;
          box-shadow: 2px 3px #eaeaea;
}

.comment {
  display: none;
}
.comment b {
  font-weight: 700;
}

/* ローディング */
@-webkit-keyframes loader {
  0%, 80%, 100% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
}
@keyframes loader {
  0%, 80%, 100% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
}
.loader,
.loading::before,
.loading::after {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background-color: #b5b5b5;
  border-radius: 50%;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation: loader 1.8s infinite ease-in-out;
          animation: loader 1.8s infinite ease-in-out;
}

.loading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  height: 20px;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 5;
}
.loading::before, .loading::after {
  content: "";
}
.loading::before {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.loading::after {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}

.loader {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}

/* 入力エリア */
.input-wrapper {
  width: 800px;
  max-width: 100%;
  margin: 16px auto;
  padding: 20px 5vw;
  background-color: #d1eddd;
  border-radius: 11px;
}
.input-wrapper .title {
  margin: 1.5em 0 0.5em;
  font-size: 14px;
  font-weight: 700;
}
.input-wrapper .title:first-child {
  margin-top: 0;
}
.input-wrapper .err {
  margin: 1em 0;
  font-size: 13px;
  color: #ff0000;
}
.input-wrapper .memo {
  margin: 20px auto;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.input-wrapper .half {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(50% - 16px), 1fr));
  gap: 16px;
}

@media all and (min-width: 420px) {
  .input-wrapper .title.calendar-title {
    text-align: center;
  }
}
.btn {
  margin-top: 20px;
  text-align: center;
}

.btn-back {
  width: 90%;
  margin: 16px auto;
  padding: 1em;
  font-size: 13px;
  font-weight: 600;
  color: #606060;
  text-align: center;
  background: #FDFDFD;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(253, 253, 253)), to(rgb(238, 238, 238)));
  background: linear-gradient(180deg, rgb(253, 253, 253) 0%, rgb(238, 238, 238) 100%);
  border-radius: 30px;
}

.btn-next {
  width: 100%;
  padding: 0.75em 0.6em;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: #FF8B3A;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 139, 58)), to(rgb(255, 90, 0)));
  background: linear-gradient(90deg, rgb(255, 139, 58) 0%, rgb(255, 90, 0) 100%);
  border-radius: 30px;
}

.btn-send {
  width: 600px;
  max-width: 100%;
  aspect-ratio: 16/7;
  background-color: rgba(209, 237, 221, 0);
  background-image: url(../img/button-bt.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.btn-send:disabled {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

/* カレンダー */
.calendar-wrapper {
  width: 340px;
  max-width: 100%;
  margin: 16px auto;
}

.ui-datepicker {
  width: 100%;
}

.ui-datepicker-calendar td span,
.ui-datepicker-calendar td a {
  padding: 0.5em 0;
  font-size: 19px;
  text-align: center;
  border: none !important;
}
.ui-datepicker-calendar td .ui-state-disabled,
.ui-datepicker-calendar td .ui-state-default {
  background-color: #fff;
}
.ui-datepicker-calendar td .ui-state-active {
  background-color: #216ba5;
  border-radius: 3px;
}
.ui-datepicker-calendar .day-sunday a,
.ui-datepicker-calendar .day-holiday a {
  color: #ff0000;
}
.ui-datepicker-calendar .day-saturday a {
  color: blue;
}