@charset "UTF-8";
/*===================================
共通
===================================*/
html, body {
  min-width: 1280px;
  overflow-x: auto;
}

@media (max-width: 767px) {
  html, body {
    min-width: unset;
    overflow-x: unset;
  }
}

body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-image: url(../img/home/bkg.png);
}

.contents {
  max-width: 1060px;
  margin: 0 auto;
  padding: 40px 0 0;
}

@media (max-width: 767px) {
  .contents {
    padding: 0 15px;
  }
}

.col_white {
  color: #fff;
}

li {
  list-style: none;
}

li a {
  text-decoration: none;
}

.ttl_Lv1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  padding-top: 100px;
}

@media (max-width: 767px) {
  .ttl_Lv1 {
    font-size: 30px;
    padding-top: 110px;
  }
}

.ttl_Lv1 span {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .ttl_Lv1 span {
    font-size: 16px;
    margin-top: 16px;
  }
}

.ttl_Lv2 {
  font-size: 65px;
  font-weight: bold;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 65px;
}

@media (max-width: 767px) {
  .ttl_Lv2 {
    font-size: 25px;
    padding-bottom: 30px;
    margin-top: 30px;
  }
}

.ttl_Lv2::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4px;
  margin-left: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#FF9C2B), to(#FF7A00));
  background: linear-gradient(to right, #FF9C2B, #FF7A00);
  border-radius: 4px;
  width: 100%;
}

.ttl_Lv3 {
  font-size: 24px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ttl_Lv3 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 10px;
  }
}

.pc {
  display: block;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

/*===================================
ヘッダー
===================================*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 45px;
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: #fff;
}

@media (min-width: 768px) and (max-width: 1081px) {
  .header {
    padding: 17px 20px;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 15px;
  }
}

.header .logo {
  width: 80px;
}

@media (max-width: 767px) {
  .header .logo {
    width: 50px;
  }
}

.header_list {
  display: none;
}

@media (min-width: 1081px) {
  .header_list {
    font-weight: bold;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 40%;
  }
}

/* メニューのスタイル */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  /* 初期状態では画面の外に隠れている */
  width: 100%;
  height: 100%;
  background-color: #817B71;
  color: #333;
  -webkit-transition: right 0.8s ease;
  transition: right 0.8s ease;
  /* スライドインのアニメーション */
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10;
}

@media (min-width: 1081px) {
  .menu {
    display: none;
  }
}

/* メニューが開いているとき */
.menu.open {
  right: 0;
}

/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 25px;
  right: 20px;
  width: 35px;
  cursor: pointer;
  z-index: 20;
}

@media (max-width: 767px) {
  .hamburger {
    top: 15px;
  }
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #000;
  margin: 10px 0;
  -webkit-transition: 1s;
  transition: 1s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(10px, 10px);
          transform: rotate(45deg) translate(10px, 10px);
  background-color: #fff;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
          transform: rotate(-45deg) translate(7px, -7px);
  background-color: #fff;
}

/* メニューリストのスタイル */
.menu ul {
  list-style-type: none;
  padding: 0 40px;
  margin-top: 18vh;
}

.menu li {
  padding: 20px 0;
  border-bottom: 1px solid #ffffff;
}

.menu li:last-child {
  border-bottom: none;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  display: block;
  text-align: center;
}

.menu li a .icon {
  margin: 0 auto;
}

/*===================================
メインビジュアル画像
===================================*/
.mv {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .mv {
    padding-top: 80px;
  }
}

/*===================================
トップページ
===================================*/
.lead_txt {
  font-size: 30px;
  font-weight: bold;
  margin-top: 45px;
  margin-bottom: 45px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .lead_txt {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
  }
}

.txt {
  font-size: 20px;
  line-height: 2.25;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .txt {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
  }
}

.btn {
  display: block;
  width: 250px;
  margin: 50px auto 0;
  font-size: 18px;
  background-color: #fff;
  border: solid 4px #FFA95F;
  border-radius: 10px;
  padding: 18px 0;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 767px) {
  .btn {
    width: 200px;
    margin: 35px auto 0;
    font-size: 16px;
    border: solid 2px #FFA95F;
    padding: 15px 0;
  }
}

.btn:hover {
  background-color: #FFA95F;
  color: #fff;
}

/*===================================
お問い合わせ
===================================*/
.contact_box {
  background-color: #FFA95F;
  margin-top: 50px;
  padding: 60px 0 50px;
}

@media (max-width: 767px) {
  .contact_box {
    margin-top: 40px;
    padding: 30px 15px;
  }
}

.contact_box .contact_ttl {
  font-size: 65px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .contact_box .contact_ttl {
    font-size: 25px;
  }
}

.contact_box .contact_txt {
  max-width: 940px;
  margin: 25px auto 30px;
  font-size: 20px;
  line-height: 2.25;
}

@media (max-width: 767px) {
  .contact_box .contact_txt {
    font-size: 16px;
    margin: 0 0 30px;
  }
}

.contact_box .contact_btn {
  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;
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px 0;
  border-radius: 34px;
}

@media (max-width: 767px) {
  .contact_box .contact_btn {
    max-width: 300px;
    padding: 17px 0;
  }
}

.contact_box .contact_btn::before {
  content: "";
  background-image: url(/img/home/mail.svg);
  width: 35px;
  height: 25px;
  /* ← 必須 */
  margin-right: 25px;
  display: block;
  background-size: contain;
  /* ← 推奨 */
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .contact_box .contact_btn::before {
    margin-right: 18px;
  }
}

/*===================================
フッター
===================================*/
.footer {
  background-color: #817B71;
}

.footer .footer_box {
  border-bottom: solid 1px #fff;
}

.footer .footer_wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 35px 20px 30px;
}

@media (min-width: 1081px) {
  .footer .footer_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer .footer_wrap dl {
  line-height: 1.8;
}

.footer .footer_wrap dl dt {
  font-size: 20px;
}

@media (max-width: 767px) {
  .footer .footer_wrap dl dt {
    font-size: 16px;
  }
}

.footer .footer_wrap dl dd {
  font-size: 14px;
}

.footer .footer_wrap .list_box {
  padding-top: 15px;
}

@media (min-width: 1081px) {
  .footer .footer_wrap .list_box {
    padding-left: 10vw;
    padding-top: 0;
  }
}

.footer .footer_wrap .list_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .footer .footer_wrap .list_box ul {
    display: block;
  }
}

.footer .footer_wrap .list_box ul li {
  padding-right: 20px;
}

@media (max-width: 767px) {
  .footer .footer_wrap .list_box ul li {
    padding-top: 10px;
    font-size: 14px;
  }
}

.footer .copyright {
  padding: 10px 0;
  text-align: center;
}

.footer .copyright p {
  font-size: 14px;
}

@media (max-width: 767px) {
  .footer .copyright p {
    font-size: 12px;
  }
}
/*# sourceMappingURL=common.css.map */