@charset "UTF-8";
/* ==================================
  reset
================================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
* {
  box-sizing: border-box;
}

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

dl, dt, dd, ol, ul, li {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

/* change colours to suit your needs */
ins {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #fff;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

ul, ol, dl {
  list-style: none;
}

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

th {
  font-weight: normal;
}

em,
address {
  font-style: normal;
}

/* ==================================
  ここまでreset
================================== */
/* ==================================
  common
================================== */
html {
  font-size: 2.667vw;
}

.header__logo {
  width: 260px;
}

.footer {
  margin-bottom: 9rem;
}

@media only screen and (min-width: 576px) {
  .footer {
    margin-bottom: 0;
  }
}
.title-confirm {
  display: none;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .header__logo {
    width: 340px;
  }
  .footer {
    margin-bottom: 0;
  }
}
/* ==================================
  scroll-to-top
================================== */
.scroll-to-top {
  display: flex;
  position: fixed;
  bottom: 10rem;
  right: 15px;
  z-index: 998;
  background: #ff6000;
  height: 40px;
  width: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 5px;
  white-space: nowrap;
  text-indent: 100px;
  overflow: hidden;
  transition: all 0.4s;
}
.scroll-to-top::after {
  position: absolute;
  content: "";
  right: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  border: solid #fff;
  border-width: 2px 0 0 2px;
  transform: rotate(45deg);
  margin-right: -7px;
  margin-top: -4px;
}
.scroll-to-top:hover {
  opacity: 0.8;
}
.scroll-to-top:hover:after {
  border: solid #ffffff;
  border-width: 2px 0 0 2px;
}

@media only screen and (min-width: 576px) {
  .scroll-to-top {
    bottom: 100px;
  }
}
@media only screen and (min-width: 768px) {
  .scroll-to-top {
    height: 50px;
    width: 50px;
    right: 50px;
  }
}
/* ==================================
  bottom-nav
================================== */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8.8rem;
  padding: 10px 5px !important;
  justify-content: space-between;
  align-items: center;
  background: #d2cfcf;
  border-top: 1px solid #333333;
  z-index: 99999999999;
}

@media (min-width: 365px) {
  .bottom-nav {
    padding: 10px 15px;
  }
}
@media only screen and (min-width: 400px) {
  .bottom-nav {
    justify-content: center;
  }
}
@media only screen and (min-width: 576px) {
  .bottom-nav {
    display: none !important;
  }
}
.bottom-nav a:hover {
  text-decoration: none;
  opacity: 0.9;
  color: initial;
}

.bottom-nav .btn-phone {
  flex: 0 1 auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #333;
  /* margin-right: 10px; */
  padding: 2px;
  border-radius: 5px;
}

@media only screen and (min-width: 400px) {
  .bottom-nav .btn-phone {
    margin-right: 15px;
  }
}
.bottom-nav .btn-phone img {
  width: 18px;
  margin-right: 3px;
}

.bottom-nav .btn-phone .btn-phone-top {
  font-size: 18px;
}

.bottom-nav .btn-phone .btn-phone-top--1 {
  font-size: 10px;
}

.bottom-nav .btn-phone .btn-phone-btm {
  font-size: 8px;
}

.bottom-nav .btn-phone:hover {
  text-decoration: none;
  opacity: 0.8;
}

.bottom-nav .btn-mail {
  flex: 0 1 auto;
  /* height: 46px; */
  padding: 2px;
  border-radius: 2px;
}

.bottom-nav .btn-mail img {
  width: 15px;
  margin-right: 4px;
}

.bottom-nav .btn-mail .btn-mail-text-top {
  font-size: 10px;
}

.bottom-nav .btn-mail .btn-mail-text-btm {
  font-size: 8px;
}

.bottom-nav .btn-line {
  border: 1px solid #39ad36;
  padding: 2px;
  border-radius: 5px;
}

.bottom-nav__btn-line {
  display: flex;
  align-items: center;
  background-color: #39ad36;
  padding: 2px 2px 2px 22px;
  border-radius: 5px;
  position: relative;
  flex-direction: column;
}

.bottom-nav__btn-line img {
  width: 15px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.bottom-nav__btn-line .btn-top {
  font-size: 10px;
  font-weight: bold;
  color: #fff;
}

.bottom-nav__btn-line .btn-btm {
  font-size: 8px;
  color: #fff;
}

.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-top: 1px solid #333333;
}

@media (min-width: 400px) {
  .bottom-nav {
    padding: 10px 15px;
  }
}
@media only screen and (min-width: 576px) {
  .bottom-nav {
    display: none !important;
  }
}
.bottom-nav .button {
  flex: 0 0 calc(33% - 2px);
}

.bottom-nav {
  border-top: none;
  background: none;
  padding: 0 !important;
}
.bottom-nav .btn-line {
  border: none;
  padding: 0;
  border-radius: 0;
}
.bottom-nav .btn-phone {
  padding: 0;
  border: none;
  background: none;
  padding: 0;
  border-radius: 0;
}
.bottom-nav .btn-phone img {
  width: 22.3rem;
  margin-right: 0;
}
.bottom-nav .bottom-nav__btn-line,
.bottom-nav .btn-mail-outline {
  border: none;
  background: none;
  padding: 0;
  border-radius: 0;
  position: inherit;
}
.bottom-nav .bottom-nav__btn-line img,
.bottom-nav .btn-mail-outline img {
  position: inherit;
  width: 6rem;
}
.bottom-nav .btn-mail-outline .btn-mail {
  border: none;
  background: none;
  padding: 0;
  border-radius: 0;
}
.bottom-nav .btn-mail-outline .btn-mail img {
  position: inherit;
  width: 6rem;
  margin-right: 0;
}

.bottom-navInner {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 1.3rem 1rem;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.bottom-navInner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  z-index: -1;
}

/* ==================================
  conformation
================================== */
.conformation-page {
  border-top: 1px solid #8cc63f;
}
.conformation-page .inquiry-form {
  overflow-wrap: anywhere;
}
.conformation-page .inquiry-form__state {
  display: none;
}
.conformation-page .heading-primary__text {
  font-weight: 500;
}
.conformation-page .inquiry-form__label-wrapper {
  justify-content: flex-start;
}
.conformation-page .form-group.row {
  flex-direction: column;
}
.conformation-page .inquiry-form__btn-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}
.conformation-page .text-consent {
  display: none;
}
.conformation-page .title-confirm {
  display: block;
}
.conformation-page .title-input {
  display: none;
}
.conformation-page .privacy-row {
  display: none;
}

.confirmation-header .nav-icon {
  display: none;
}
.confirmation-header .header__logo {
  width: 175px;
}

@media (min-width: 768px) {
  .confirmation-header .header__logo {
    width: 340px;
  }
  .conformation-page .inquiry-form__label-wrapper {
    justify-content: flex-end;
  }
  .conformation-page .col-md-4,
  .conformation-page .col-md-8 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .conformation-page .col-md-8 {
    font-weight: 400;
  }
  .conformation-page .form-group.row {
    flex-direction: row;
  }
  .conformation-page .inquiry-form {
    width: auto;
  }
  .conformation-page .inquiry-form--config {
    padding-bottom: 0;
  }
  .conformation-page .inquiry-form__btn {
    margin: 0;
  }
  .conformation-page .inquiry-form__btn-wrapper {
    justify-content: center;
    flex-direction: row-reverse;
    gap: 44px;
    margin-top: 40px;
  }
}/*# sourceMappingURL=index.css.map */