@charset "UTF-8";
body {
  font-family: "Noto sans JP", sans-serif;
}

.body-wrap {
  overflow: hidden;
}

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

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

.u-header-spacer {
  width: 100%;
  height: 52px;
  height: 3.25rem;
}
@media screen and (min-width: 768px) {
  .u-header-spacer {
    height: 3.75rem;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.7391304348vw;
  }
}
@media (min-width: 920px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

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

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

.contact {
  background-color: #dff4ee;
  padding: 90px 0 90px;
  padding: 5.625rem 0 5.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 9.375rem 0 6.25rem;
  }
}
.contact::before {
  position: absolute;
  z-index: 1;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-image: url(../images/common/dots-bg.webp);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 705px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.contact__box {
  background: #F2F2F2;
  border-radius: 0.4375rem;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
  padding: 30px 20px 30px;
  padding: 1.875rem 1.25rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact__box {
    padding: 1.875rem 1.875rem 1.25rem;
    border-radius: 0.625rem;
  }
}

.contact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact__head span {
  margin-right: 8px;
  margin-right: 0.5rem;
  padding: 0 13px;
  padding: 0 0.8125rem;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  height: 24px;
  height: 1.5rem;
  line-height: 24px;
  line-height: 1.5rem;
  background-color: #00AA7F;
  border-radius: 0.75rem;
}
@media screen and (min-width: 768px) {
  .contact__head span {
    margin-right: 0.625rem;
    font-size: 1.125rem;
    height: 1.75rem;
    line-height: 1.75rem;
    border-radius: 0.875rem;
  }
}
.contact__head p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #003692;
}
@media screen and (min-width: 768px) {
  .contact__head p {
    font-size: 1.5rem;
  }
}

.contact__sub-head {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .contact__sub-head {
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}

.contact__form {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 1.875rem;
  }
}

.footer {
  padding: 20px 25px;
  padding: 1.25rem 1.5625rem;
  background-color: #003692;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 1.5625rem 3.125rem;
  }
}
.footer::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 150px;
  width: 9.375rem;
  height: 100%;
  background-image: url(../images/common/foot-bg-sp.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .footer::before {
    background-image: url(../images/common/foot-bg-pc.webp);
    width: 28.75rem;
  }
}

.footer__inner {
  max-width: 1440px;
  max-width: 90rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo {
  display: block;
  width: 165px;
  width: 10.3125rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 17.1875rem;
  }
}

.footer__privacy {
  margin-left: 10px;
  margin-left: 0.625rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  border-left: 1px solid rgba(255, 255, 255, .6);
  font-size: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .6);
  line-height: 30px;
  line-height: 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__privacy {
    margin-left: 1.875rem;
    padding-left: 1.875rem;
    font-size: 1rem;
  }
}

.header {
  height: 54px;
  height: 3.375rem;
  z-index: 501;
  position: fixed;
  width: 100%;
  background-color: #fff;
  border-top: 2px solid #00AA7F;
  border-top: 0.125rem solid #00AA7F;
  -webkit-box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .header {
    height: 4.875rem;
    border-top: 0.375rem solid #00AA7F;
  }
}

.header__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 52px;
  height: 3.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__container {
    height: 4.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 92.5rem;
    margin: 0 auto;
  }
}

.header__logo {
  display: block;
  height: 100%;
}
.header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  padding-left: 0.625rem;
  height: 100%;
  width: 153px;
  width: 9.5625rem;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    padding-left: 0;
    padding-left: initial;
    width: 14.375rem;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 970px;
    padding-right: 25px;
    padding-left: 25px;
  }
}
/*# sourceMappingURL=styles.css.map */
