@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400;500&display=swap");
/* ======================================
   CSS Reset
======================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  box-sizing: border-box;
  position: relative; }

/*printing settings*/
@page {
  margin: 0mm 5mm;
  size: A4 portrait; }
@media print {
  html {
    width: 1300px !important; }

  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    padding-top: 5mm;
    width: 210mm;
    height: 297mm;
    font-size: 7.5pt; } }
/* ======================================
   Common
======================================== */
html,
body {
  width: 100%;
  height: 100%; }

body {
  position: relative; }
  body.stop {
    overflow: hidden; }

button {
  background: none;
  border: none;
  outline: none;
  appearance: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid #0000EE;
  outline-offset: 0;
  outline-offset: 2px; }

img {
  width: 100%;
  display: block; }

br.pc {
  display: none; }
br.sp {
  display: block; }
@media screen and (min-width: 640px) {
  br.pc {
    display: block; }
  br.sp {
    display: none; } }

.bold {
  font-weight: 700; }

.center {
  text-align: center; }

/* ======================================
   animation
======================================== */
#loading {
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000; }
  #loading .loading {
    width: 3rem;
    height: 3rem;
    border-top: 0.5em solid rgba(0, 0, 0, 0.1);
    border-right: 0.5em solid rgba(0, 0, 0, 0.1);
    border-bottom: 0.5em solid rgba(0, 0, 0, 0.1);
    border-left: 0.5em solid rgba(0, 0, 0, 0);
    animation: loaderAnime 1s infinite linear;
    border-radius: 50%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 200000; }
@keyframes loaderAnime {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  #loading.hide {
    animation: loadingAnime 1s forwards; }
@keyframes loadingAnime {
  0% {
    opacity: 1; }
  99% {
    opacity: 0; }
  100% {
    opacity: 0;
    display: none; } }
.fuwari.anime {
  animation: 1s fuwari infinite; }

@keyframes fuwari {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: ease-out; }
  50% {
    transform: translateY(-8px);
    animation-timing-function: ease-in; } }
@keyframes zoomUp {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.1); } }
@keyframes slideUp {
  0% {
    transform: translateY(20px); }
  100% {
    transform: translateY(0); } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.slideUp {
  animation: slideUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; }

@media screen and (min-width: 640px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none; } }
.mt0 {
  margin-top: 0 !important; }

.mt1 {
  margin-top: 10px !important; }

.mt2 {
  margin-top: 20px !important; }

.mt3 {
  margin-top: 30px !important; }

.mt4 {
  margin-top: 40px !important; }

.mt5 {
  margin-top: 50px !important; }

.mt6 {
  margin-top: 60px !important; }

.mt7 {
  margin-top: 70px !important; }

.mt8 {
  margin-top: 80px !important; }

.mt9 {
  margin-top: 90px !important; }

.mt10 {
  margin-top: 100px !important; }

.mt12 {
  margin-top: 120px !important; }

.mb0 {
  margin-bottom: 0 !important; }

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

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

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

.mb4 {
  margin-bottom: 40px !important; }

.mb5 {
  margin-bottom: 50px !important; }

.mb6 {
  margin-bottom: 60px !important; }

.mb7 {
  margin-bottom: 70px !important; }

.mb8 {
  margin-bottom: 80px !important; }

.mb9 {
  margin-bottom: 90px !important; }

.mb10 {
  margin-bottom: 100px !important; }

.my0 {
  margin: 0 !important; }

.my1 {
  margin: 10px 0 !important; }

.my2 {
  margin: 20px 0 !important; }

.my3 {
  margin: 30px 0 !important; }

.my4 {
  margin: 40px 0 !important; }

.my5 {
  margin: 50px 0 !important; }

.my6 {
  margin: 60px 0 !important; }

.my7 {
  margin: 70px 0 !important; }

.my8 {
  margin: 80px 0 !important; }

.my9 {
  margin: 90px 0 !important; }

.my10 {
  margin: 100px 0 !important; }

.mx0 {
  margin: 0 !important; }

.mx1 {
  margin: 0 10px !important; }

.mx2 {
  margin: 0 20px !important; }

.mx3 {
  margin: 0 30px !important; }

.mx4 {
  margin: 0 40px !important; }

.mx5 {
  margin: 0 50px !important; }

.mx6 {
  margin: 0 60px !important; }

.mx7 {
  margin: 0 70px !important; }

.mx8 {
  margin: 0 80px !important; }

.mx9 {
  margin: 0 90px !important; }

.mx10 {
  margin: 0 100px !important; }

.pb0 {
  padding-bottom: 0 !important; }

.pb1 {
  padding-bottom: 10px !important; }

.pb2 {
  padding-bottom: 20px !important; }

.pb3 {
  padding-bottom: 30px !important; }

.pb4 {
  padding-bottom: 40px !important; }

.pb5 {
  padding-bottom: 50px !important; }

.pb6 {
  padding-bottom: 60px !important; }

.pb7 {
  padding-bottom: 70px !important; }

.pb8 {
  padding-bottom: 80px !important; }

.pb9 {
  padding-bottom: 90px !important; }

.pb10 {
  padding-bottom: 100px !important; }

.pt0 {
  padding-top: 0 !important; }

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

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

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

.pt4 {
  padding-top: 40px !important; }

.pt5 {
  padding-top: 50px !important; }

.pt6 {
  padding-top: 60px !important; }

.pt7 {
  padding-top: 70px !important; }

.pt8 {
  padding-top: 80px !important; }

.pt9 {
  padding-top: 90px !important; }

.pt10 {
  padding-top: 100px !important; }

.py0 {
  padding: 0 !important; }

.py1 {
  padding: 10px 0 !important; }

.py2 {
  padding: 20px 0 !important; }

.py3 {
  padding: 30px 0 !important; }

.py4 {
  padding: 40px 0 !important; }

.py5 {
  padding: 50px 0 !important; }

.py6 {
  padding: 60px 0 !important; }

.py7 {
  padding: 70px 0 !important; }

.py8 {
  padding: 80px 0 !important; }

.py9 {
  padding: 90px 0 !important; }

.py10 {
  padding: 100px 0 !important; }

.px0 {
  padding: 0 !important; }

.px1 {
  padding: 0 10px !important; }

.px2 {
  padding: 0 20px !important; }

.px3 {
  padding: 0 30px !important; }

.px4 {
  padding: 0 40px !important; }

.px5 {
  padding: 0 50px !important; }

.px6 {
  padding: 0 60px !important; }

.px7 {
  padding: 0 70px !important; }

.px8 {
  padding: 0 80px !important; }

.px9 {
  padding: 0 90px !important; }

.px10 {
  padding: 0 100px !important; }

.p0 {
  padding: 0 !important; }

.p1 {
  padding: 10px !important; }

.p2 {
  padding: 20px !important; }

.p3 {
  padding: 30px !important; }

.p4 {
  padding: 40px !important; }

.p5 {
  padding: 50px !important; }

.p6 {
  padding: 60px !important; }

.p7 {
  padding: 70px !important; }

.p8 {
  padding: 80px !important; }

.p9 {
  padding: 90px !important; }

.p10 {
  padding: 100px !important; }

ol {
  list-style-position: outside;
  padding-left: 1.5em; }

ul.ind li {
  text-indent: -1em;
  padding-left: 1em; }

ul.dot li {
  text-indent: -1.2em;
  padding-left: 1.2em; }
  ul.dot li::before {
    content: '●';
    margin-right: 0.2em; }

/* ==== BG Color ==== */
.white {
  background-color: #FFFFFF; }

/* ==== Flex ==== */
.flex {
  display: flex; }

/* ==== Grid ==== */
.grid {
  display: grid;
  grid-gap: 1rem;
  margin: 1rem auto;
  justify-content: flex-start;
  align-items: stretch; }
  .grid.mid {
    align-items: center; }
  .grid.btm {
    align-items: flex-end; }
  .grid.col1-1, .grid.col1-2, .grid.col2-1, .grid.col2-3, .grid.col3-1, .grid.col3-2, .grid.col3-4, .grid.col4-3, .grid.col4-5, .grid.col-1, .grid.col-2, .grid.col-3, .grid.col-5 {
    grid-template-columns: 1fr; }
  .grid.col-4 {
    grid-template-columns: 1fr 1fr; }
  .grid li {
    margin: 0 !important; }

@media screen and (min-width: 640px) {
  .grid.col1-1 {
    grid-template-columns: 1fr 1fr; }
  .grid.col1-2 {
    grid-template-columns: 1fr 2fr; }
  .grid.col2-1 {
    grid-template-columns: 2fr 1fr; }
  .grid.col2-3 {
    grid-template-columns: 2fr 3fr; }
  .grid.col3-1 {
    grid-template-columns: 3fr 1fr; }
  .grid.col3-2 {
    grid-template-columns: 3fr 2fr; }
  .grid.col3-4 {
    grid-template-columns: 3fr 4fr; }
  .grid.col4-3 {
    grid-template-columns: 4fr 3fr; }
  .grid.col4-5 {
    grid-template-columns: 4fr 5fr; }
  .grid.col-2 {
    grid-template-columns: repeat(2, 1fr); }
  .grid.col-3 {
    grid-template-columns: repeat(3, 1fr); }
  .grid.col-4 {
    grid-template-columns: repeat(4, 1fr); }
  .grid.col-5 {
    grid-template-columns: repeat(5, 1fr); } }
/* ==== Form ==== */
.form_wrap {
  max-width: 100%;
  margin: auto;
  padding: 4rem 2rem;
  /* チェックボックス */
  /* ラジオボタン */
  /* テキスト */
  /* テキストエリア */
  /* ボタン */
  /* セレクター */
  /* ベーススタイル適用 */
  /*select,
  ::picker(select) {
    appearance: base-select;
  }*/ }
  .form_wrap ul li {
    margin: 2rem 0; }
  .form_wrap label {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
    margin-top: 0.5rem;
    width: 100%; }
    @media screen and (min-width: 640px) {
      .form_wrap label {
        grid-template-columns: 15em auto; } }
    .form_wrap label h6 {
      margin: 1rem 0;
      font-size: 1.2rem; }
      .form_wrap label h6 p {
        font-weight: 500; }
      .form_wrap label h6 span {
        font-weight: normal;
        font-size: 1rem; }
    .form_wrap label p {
      font-size: 1.2rem; }
    .form_wrap label .wrap {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2rem;
      width: 100%; }
      .form_wrap label .wrap div {
        display: flex;
        align-items: center;
        gap: 0.5rem; }
  .form_wrap .center label {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0; }
    .form_wrap .center label input {
      flex-shrink: 0;
      margin: 0; }
    .form_wrap .center label p {
      text-align: left;
      margin: 0; }
  .form_wrap .agree {
    font-size: 1.3rem; }
  .form_wrap button.btn {
    cursor: pointer;
    margin: 4rem auto;
    display: block;
    color: #FFFFFF;
    padding: 1.5rem;
    text-align: center;
    background-color: #FFFFFF;
    color: #000000;
    max-width: 100%;
    border-radius: 3rem;
    transition: 0.5s; }
    .form_wrap button.btn p {
      font-family: "Kiwi Maru", serif;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      width: 10em; }
    .form_wrap button.btn:hover {
      background-color: #00b0ff;
      color: #FFFFFF; }
  .form_wrap .error input {
    border: 1px solid #BE1616; }
  .form_wrap input,
  .form_wrap textarea {
    display: block;
    font-family: "Kiwi Maru", serif;
    font-size: 1.2rem !important;
    line-height: 1.4;
    background-color: #FFFFFF;
    border: 1px solid transparent;
    margin: 0 !important;
    outline: 0; }
    .form_wrap input.third,
    .form_wrap textarea.third {
      width: 50% !important; }
    .form_wrap input.half,
    .form_wrap textarea.half {
      width: 100% !important; }
    .form_wrap input.full,
    .form_wrap textarea.full {
      width: 100% !important; }
    @media screen and (min-width: 640px) {
      .form_wrap input.third,
      .form_wrap textarea.third {
        width: 33% !important; }
      .form_wrap input.half,
      .form_wrap textarea.half {
        width: 50% !important; }
      .form_wrap input.full,
      .form_wrap textarea.full {
        width: 100% !important; } }
  .form_wrap input::placeholder,
  .form_wrap textarea::placeholder {
    color: #AAAAAA;
    font-weight: 400; }
  .form_wrap input:focus,
  .form_wrap textarea:focus {
    border: 1px solid #BBB !important; }
  .form_wrap input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset; }
  .form_wrap input[type=checkbox] {
    -webkit-appearance: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    margin: 0 !important;
    position: relative;
    border: 0;
    line-height: 0;
    z-index: 0;
    border: 1px solid #000000;
    height: 50px;
    width: 50px; }
    @media screen and (min-width: 640px) {
      .form_wrap input[type=checkbox] {
        height: 25px;
        width: 25px; } }
    .form_wrap input[type=checkbox] + p {
      display: inline-block;
      vertical-align: middle; }
  .form_wrap input[type=checkbox]::after {
    content: "";
    border-right: 5px solid #00b0ff;
    border-bottom: 5px solid #00b0ff;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 10px;
    left: 0;
    margin: auto;
    opacity: 0;
    transform: rotate(45deg);
    z-index: 20;
    height: 26px;
    width: 16px; }
    @media screen and (min-width: 640px) {
      .form_wrap input[type=checkbox]::after {
        border-right: 3px solid #00b0ff;
        border-bottom: 3px solid #00b0ff;
        height: 12px;
        width: 7px;
        bottom: 5px; } }
  .form_wrap input[type=checkbox]:checked::after {
    opacity: 1; }
  .form_wrap input[type=radio] {
    -webkit-appearance: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0;
    margin: 0 !important;
    line-height: 0;
    z-index: 0;
    border-radius: 50%;
    border: 1px solid #000000;
    height: 50px;
    width: 50px; }
    @media screen and (min-width: 640px) {
      .form_wrap input[type=radio] {
        height: 25px;
        width: 25px; } }
  .form_wrap input[type=radio]::after {
    content: "";
    background: #00b0ff;
    border-radius: 50%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    z-index: 20;
    height: 30px;
    width: 30px; }
    @media screen and (min-width: 640px) {
      .form_wrap input[type=radio]::after {
        height: 15px;
        width: 15px; } }
  .form_wrap input[type=radio]:checked::after {
    opacity: 1; }
  .form_wrap input[type=text],
  .form_wrap input[type=email],
  .form_wrap input[type=tel] {
    padding: 1rem 2rem;
    border-radius: 5rem;
    min-height: 4rem; }
  .form_wrap textarea {
    padding: 1rem 2rem;
    border-radius: 1.5rem; }
  .form_wrap input[type=button] {
    width: auto;
    max-width: 100% !important;
    margin: 0.3em 0;
    color: #FFF;
    background-color: #767676;
    font-size: 1em;
    font-weight: 400;
    padding: 0.5em 1.5em;
    margin-left: 0.8rem; }
  .form_wrap .select {
    display: inline-block;
    vertical-align: middle;
    width: 18em;
    height: 4em;
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 0; }
    .form_wrap .select::before {
      content: '';
      display: block;
      position: absolute;
      right: 2rem;
      left: auto;
      top: 0;
      bottom: 0;
      margin: auto;
      z-index: 100 !important;
      width: 10px;
      height: 10px;
      border-right: 2px solid #AAAAAA;
      border-bottom: 2px solid #AAAAAA;
      transform: rotate(45deg); }
    .form_wrap .select select {
      font-family: "Kiwi Maru", serif;
      -webkit-appearance: none;
      position: absolute !important;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      z-index: 10;
      outline: none;
      padding: 0 2rem;
      border: 1px solid #FFF;
      border-radius: 3rem;
      background-color: #FFFFFF;
      color: #000 !important;
      font-size: 1.2rem !important; }
