@charset "UTF-8";
/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
/* 基本フォントサイズ設定 */
html {
  font-size: 100%; /* ブラウザのデフォルトのフォントサイズ。大抵は16px */
}

/* //基本フォントサイズ設定 */
/* 全体設定 */
body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  position: relative;
  color: #000000;
  -webkit-font-smoothing: antialiased; /* macで文字が太くなる現象を解消 */
}

main {
  overflow: hidden;
}

p {
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.container {
  padding: 0 15px;
}

.d-inline-block {
  display: inline-block;
}

.d-none {
  display: none;
}

@media screen and (min-width: 992px) {
  .d-lg-none {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .d-lg-block {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .d-lg-inline {
    display: inline;
  }
}

.txt-default {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (min-width: 992px) {
  .txt-default {
    font-size: 1.25rem;
    line-height: 2.23;
  }
}

/* //全体設定 */
/* フォントファミリー */
.notosans {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.zenmarugo {
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
}

.zenkakugo-antique {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 400;
  font-style: normal;
}

.mplus-rounded-1c {
  font-family: "M PLUS Rounded 1c", serif;
  font-style: normal;
}

/* //フォントファミリー */
/* フォントウェイト */
.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* //フォントウェイト */
/* color */
/* //color */
/* title */
.ttl-pattern1 {
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
  font-weight: 700;
  color: #FF8B05;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (min-width: 992px) {
  .ttl-pattern1 {
    font-size: 3rem;
    line-height: 2.0833333333;
  }
}

.ttl-pattern2 {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .ttl-pattern2 {
    font-size: 2rem;
  }
}

/* //title */
/* color */
.txt-orange {
  color: #FF8B05;
}

/* //color */
/* button */
.btn-bg-orange {
  background-color: #FF8B05;
  display: block;
  border-radius: 100vw;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  border: 2px solid #FF8B05;
}
.btn-bg-orange:not(.field__ttl):hover {
  opacity: 1;
  color: #FF8B05;
  background-color: #FFFFFF;
}

.btn-pattern1 {
  font-size: 1.125rem;
  padding: 13px 0;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .btn-pattern1 {
    font-size: 1.5rem;
    padding: 17px 0;
  }
}

/* //button */
/* 下から上にフェードイン */
.fade-in-from-bottom-elm {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-from-bottom-elm.scrolled {
  animation: fade-in-from-bottom 0.5s linear forwards;
}

@keyframes fade-in-from-bottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* //下から上にフェードイン */
/* 左から右にフェードイン */
.fade-in-from-left-elm {
  opacity: 0;
  transform: translateX(-20px);
}

.fade-in-from-left-elm.scrolled {
  animation: fade-in-from-left 1s linear forwards;
}

@keyframes fade-in-from-left {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* //左から右にフェードイン */
/* 右から左にフェードイン */
.fade-in-from-right-elm {
  opacity: 0;
  transform: translateX(20px);
}

.fade-in-from-right-elm.scrolled {
  animation: fade-in-from-right 1s linear forwards;
}

@keyframes fade-in-from-right {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* //右から左にフェードイン */
/**** cta ****/
.cta {
  margin-top: 100px;
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .cta {
    margin-top: 224px;
    margin-bottom: 165px;
  }
}
.cta .container {
  max-width: 576px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cta .container {
    max-width: 768px;
  }
}
@media screen and (min-width: 992px) {
  .cta .container {
    max-width: 1500px;
  }
}
.cta-ttl-wrapper {
  margin-bottom: 10px;
  padding-left: 35px;
}
@media screen and (min-width: 992px) {
  .cta-ttl-wrapper {
    padding-left: 70px;
    margin-bottom: 17px;
  }
}
.cta__ttl {
  margin-right: 16px;
}
@media screen and (min-width: 576px) {
  .cta__ttl {
    display: inline-block;
  }
}
.cta__ttl img {
  width: 150px;
}
@media screen and (min-width: 992px) {
  .cta__ttl img {
    width: 288px;
  }
}
.cta__message {
  font-size: 1.25rem;
  color: #FF8B05;
}
@media screen and (min-width: 992px) {
  .cta__message {
    font-size: 2.25rem;
  }
}
.cta-wrapper {
  background-color: #FF8B05;
  color: #FFFFFF;
  border-radius: 30px;
  text-align: center;
  padding: 28px;
}
@media screen and (min-width: 768px) {
  .cta-wrapper {
    padding: 28px 50px;
  }
}
@media screen and (min-width: 992px) {
  .cta-wrapper {
    border-radius: 50px;
    padding: 28px 9.0625vw 28px 7.34375vw;
  }
}
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .cta-inner {
    justify-content: space-between;
  }
}
.cta-method__ttl {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .cta-method__ttl {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .cta-method__ttl {
    font-size: 2.25rem;
  }
}
.cta-method__note {
  font-size: 0.875rem;
  display: block;
}
@media screen and (min-width: 992px) {
  .cta-method__note {
    font-size: 1rem;
  }
}
.cta__tel {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-top: 9px;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .cta__tel {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .cta__tel {
    font-size: 3rem;
  }
}
.cta__tel span,
.cta__tel .cta__fax {
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .cta__tel span,
  .cta__tel .cta__fax {
    font-size: 1rem;
  }
}
.cta-tel-link-wrapper {
  text-align: left;
  width: fit-content;
  margin: 13px auto 0;
}
.cta-btn-wrapper {
  width: 302px;
  margin: 15px auto 0;
  max-width: 100%;
}
@media screen and (min-width: 992px) {
  .cta-btn-wrapper {
    margin: 31px auto 0;
  }
}
.cta__btn {
  font-size: 1.125rem;
  font-weight: 500;
  color: #FF8B05;
  background-color: #FFFFFF;
  border-radius: 100vw;
  padding: 15px 0;
  display: block;
}
@media screen and (min-width: 992px) {
  .cta__btn {
    font-size: 1.5rem;
    padding: 27px 0;
  }
}

/**** child fv ****/
.child-fv {
  padding-top: 30px;
  padding-bottom: 12vw;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .child-fv {
    padding-bottom: 8.3333333333vw;
  }
}
.child-fv::before {
  content: "";
  width: 105%;
  height: 5.5208333333vw;
  background: url(../img/common/child-fv-deco.svg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.child-fv__ttl {
  font-size: 1.25rem;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
  color: #FF8B05;
  position: relative;
  padding: 0 80px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .child-fv__ttl {
    font-size: 2rem;
    padding: 0 100px;
  }
}
@media screen and (min-width: 992px) {
  .child-fv__ttl {
    font-size: 2.5rem;
    padding: 0 350px;
  }
}
.child-fv__ttl::before, .child-fv__ttl::after {
  content: "";
  width: 21%;
  height: 1px;
  background-color: #FF8B05;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
}
@media screen and (min-width: 992px) {
  .child-fv__ttl::before, .child-fv__ttl::after {
    width: 33%;
  }
}
.child-fv__ttl::before {
  left: 0;
}
.child-fv__ttl::after {
  right: 0;
}
.child-fv__ttl--sub {
  text-align: center;
  font-size: 0.875rem;
  color: #FF8B05;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .child-fv__ttl--sub {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 992px) {
  .child-fv__ttl--sub {
    margin-top: 15px;
    font-size: 1.25rem;
  }
}

.child-sec-pt {
  padding-top: 75px;
}
@media screen and (min-width: 992px) {
  .child-sec-pt {
    padding-top: 150px;
  }
}
.child-sec__bg {
  margin-top: max(-160px, -4.1666666667vw);
}/*# sourceMappingURL=style-common.css.map */