/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

input[type=button],
input[type=text],
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio],
input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 400;
}

body {
  color: #333;
  background-color: #fff4d6;
}

html {
  font-size: 16px;
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4159292035vw;
  }
}
@media (min-width: 1130px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
}

html.fixed {
  overflow: hidden;
}

.inner {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 70.625rem;
    padding-right: 0;
    padding-left: 0;
  }
}

header {
  width: 100%;
  height: 6rem;
  background-image: url("../img/header_bg_sp.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #fff4d6;
  padding: 1rem 0 0 0.875rem;
}
@media screen and (min-width: 768px) {
  header {
    height: 12rem;
    background-image: url("../img/header_bg_pc.png");
    padding: 1.5rem 0 14rem 5rem;
  }
}

.header-logo {
  width: 8.4375rem;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 21.125rem;
  }
}

.mv {
  width: 100%;
}
.mv .inner {
  width: 100%;
  margin-top: -0.6rem;
  padding-left: 0.5rem;
  padding-right: 0;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .mv .inner {
    width: 75.25rem;
    margin-top: -3rem;
    padding-left: 0;
    padding-bottom: 5rem;
  }
}

/* about */
.about {
  padding: 2.625rem 0;
  background-color: #fffaee;
}
.about .inner {
  max-width: 100%;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 5rem 0;
  }
  .about .inner {
    max-width: 52.375rem;
  }
}

/* feature */
.feature {
  background-color: #ffffff;
  padding: 2.625rem 0;
}
.feature .inner {
  max-width: 23.25rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .feature {
    padding: 5rem 0;
  }
  .feature .inner {
    max-width: 59.375rem;
  }
}

/* action */
.action {
  background-color: #fffaee;
  padding: 2.625rem 0;
}
.action .inner {
  max-width: 21.4375rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .action {
    padding: 5rem 0;
  }
  .action .inner {
    max-width: 61.25rem;
  }
}

/* shisetsu */
.shisetsu {
  background-color: #ffffff;
  padding: 2.625rem 0;
}
.shisetsu .inner {
  max-width: 100%;
}
.shisetsu-title {
  width: 5.625rem;
  margin: 0 auto 2.0625rem;
}

@media screen and (min-width: 768px) {
  .shisetsu {
    padding: 5rem 0;
  }
  .shisetsu .inner {
    max-width: 56rem;
  }
  .shisetsu-title {
    max-width: 11.125rem;
    margin: 0 auto 3.75rem;
  }
}

.shisetsu-img1 {
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .shisetsu-img1 {
    margin-bottom: 5.75rem;
  }
}

.map {
  margin-top: 1rem;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9のアスペクト比 */
  height: 0;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .map {
    margin-top: 3rem;
  }
}

/* sprec */
.spec {
  background-color: #fffaee;
  padding: 2.625rem 0;
}
.spec .inner {
  max-width: 20.875rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .spec {
    padding: 5rem 0;
  }
  .spec .inner {
    max-width: 62.875rem;
  }
}

/* contact */
.contact {
  padding: 2.625rem 0 2.125rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 5.125rem 0 4.8125rem;
  }
}

.form-title {
  max-width: 6.625rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .form-title {
    max-width: 13.25rem;
  }
}

.form {
  margin: 1.75rem auto 0;
  max-width: 98%;
}
@media screen and (min-width: 768px) {
  .form {
    margin-top: 4.625rem;
    max-width: 50.625rem;
  }
}

@media screen and (min-width: 768px) {
  .form-block {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

.form-block:nth-child(n+2) {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .form-block:nth-child(n+2) {
    margin-top: 2.625rem;
  }
}

@media screen and (min-width: 768px) {
  .form-block__label {
    width: 14.5625rem;
  }
}

.form-block__label img {
  height: 1rem;
  object-fit: contain;
  object-position: left;
}
@media screen and (min-width: 768px) {
  .form-block__label img {
    height: 2rem;
  }
}

.form-block__input {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .form-block__input {
    margin-top: 0;
    width: calc(100% - 14.5625rem);
  }
}

.form-block__input input {
  width: 100%;
  height: 1.75rem;
  border: 0.5px solid #333;
  border-radius: 4px;
  padding: 0.3125rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .form-block__input input {
    height: 3.625rem;
    padding: 0.5rem;
    font-size: 1rem;
  }
}

.form-block__input textarea {
  width: 100%;
  height: auto !important;
  border: 0.5px solid #333;
  border-radius: 4px;
  padding: 0.3125rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .form-block__input textarea {
    height: 3.625rem;
    padding: 0.5rem;
    font-size: 1rem;
  }
}

.form-block__input label {
  display: flex;
  gap: 0.25rem;
  height: 0.75rem;
}
@media screen and (min-width: 768px) {
  .form-block__input label {
    height: 1.375rem;
  }
}

.radio-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.radio-wrap input {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  border: 0.5px solid #333;
}
@media screen and (min-width: 768px) {
  .radio-wrap input {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.form-block__input label img {
  height: 1rem;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .form-block__input label img {
    height: 2rem;
  }
}

.privacy {
  text-align: center;
  font-size: 0.625rem;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .privacy {
    font-size: 1.125rem;
    margin-top: 4rem;
    letter-spacing: -0.04em;
  }
}

.privacy a {
  color: #0071BC;
  text-decoration: underline;
}
.form-btn {
  width: 14.6875rem;
  margin: 2rem auto 0;
}
@media screen and (min-width: 768px) {
  .form-btn {
    width: 29.0625rem;
    margin: 3.75rem auto 0;
  }
}

@media screen and (min-width: 768px) {
  #formWrap .form-btn {
    width: 21.875rem;
  }
}

.form-btn input {
  width: 14.6875rem;
  height: 3.125rem;
  background-image: url("../img/form-btn.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .form-btn input {
    width: 29.0625rem;
    height: 4.875rem;
  }
}

.form input[type=submit],
input[type=button] {
  cursor: pointer;
}

#formWrap .form-btn input {
  font-size: 1rem;
  width: 14.6875rem;
  height: 3.125rem;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  #formWrap .form-btn input {
    width: 21.875rem;
  }
}

.confirm-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}

.confirm-text {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .confirm-text {
    margin-top: 2.5rem;
  }
}

#formWrap input:nth-child(n+2) {
  margin-top: 16px;
}

.thanks {
  min-height: 100vh;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-d_flex {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-d_flex {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-mobile_flex {
  display: flex;
}
@media screen and (min-width: 768px) {
  .u-mobile_flex {
    display: none;
  }
}

.u-disp-flex {
  display: flex;
}

.u-disp-flex-dt {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-dt {
    display: flex;
  }
}

.u-disp-flex-sp {
  display: flex;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-sp {
    display: block;
  }
}

.u-disp-flex__c {
  display: flex;
  justify-content: center;
}

.u-disp-flex__cc {
  display: flex;
  justify-content: left;
  align-items: normal;
}
@media screen and (min-width: 768px) {
  .u-disp-flex__cc {
  }
}

.u-disp-flex-dt__c {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-dt__c {
    display: flex;
    justify-content: center;
  }
}

.u-disp-flex-dt__cc {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-dt__cc {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.u-posi-rela {
  position: relative;
}

.u-posi-abso {
  position: absolute;
}

.u-posi-fixed {
  position: fixed;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.3);
}

.white-text {
  color: #fff;
}


footer{
  background-color: #ffffff;
}
footer picture:first-child{
  display: block;
  max-width: 8.4375rem;
  margin: 0 auto 2rem;
}
@media screen and (min-width: 768px) {
  footer picture:first-child{
    max-width: 16.875rem;
    margin: 0 auto 4.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
