@charset "UTF-8";
/* color */
/* font */
/* animation */
@keyframes popup {
  0% {
    transform: translateY(25%);
    -webkit-transform: translateY(25%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
.scrollIn {
  transform: translateY(25%);
  -webkit-transform: translateY(25%);
  opacity: 0;
}
.scrollIn.show {
  animation: popup 1.8s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

@keyframes fadein {
  0% {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
.fadeIn {
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  opacity: 0;
}
.fadeIn.show {
  animation: fadein 2s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

@keyframes fadein-sp {
  0% {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 0.4;
  }
}
.fadeIn-sp {
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  opacity: 0;
}
.fadeIn-sp.show {
  animation: fadein-sp 4s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

/* common */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  padding: 0;
  margin: 0;
  color: #32281e;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  padding: 0;
  margin: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
  margin: 0;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #32281e;
  transition: all 0.3s;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

input,
select,
button,
textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
}

input:focus,
textarea:focus {
  outline: none; /* デフォルトのアウトラインを削除 */
  appearance: none;
  -webkit-appearance: none; /* iOSのデフォルトのスタイルをリセット */
  box-shadow: none; /* フォーカス時のボックスシャドウを削除 */
}

input[type=radio] {
  -webkit-appearance: none; /* iOSのデフォルトのスタイルをリセット */
  -moz-appearance: none; /* Firefoxのデフォルトのスタイルをリセット */
  appearance: none; /* その他のブラウザでのデフォルトスタイルをリセット */
  outline: none; /* フォーカス時の青いアウトラインを削除 */
  box-shadow: none; /* フォーカス時のボックスシャドウを削除 */
  -webkit-tap-highlight-color: transparent; /* タップ時の青い背景を消す */
}

input:-internal-autofill-selected {
  appearance: menulist-button;
  background-image: none !important;
  background-color: #fff !important; /* 背景を白に設定 */
  color: fieldtext !important;
}

.pc {
  display: none;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.section_inner {
  width: 100%;
  padding: 0 3rem;
}

.section_ttl {
  margin-bottom: 3rem;
}

.section_headtxt {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 2rem;
}

/* reCAPTCHAバッジを非表示にする */
.grecaptcha-badge {
  visibility: hidden;
}

.webp .header {
  background: url("../img/common/bg.webp");
}

.no-webp .header {
  background: url("../img/common/bg.jpg");
}

.header-pc {
  display: none;
}

.header-sp {
  height: 64px;
}
.header-sp .hamburger {
  width: 44px;
  height: 44px;
  background: #e64d55;
  border-radius: 10px;
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-out;
  z-index: 999;
  cursor: pointer;
}
.header-sp .hamburger.active {
  transition: all 0.1s ease-out;
}
.header-sp .hamburger.active div span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.header-sp .hamburger.active div span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-sp .hamburger.active div span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header-sp .hamburger div {
  width: 18px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header-sp .hamburger div span {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-out;
}
.header-sp .logo {
  display: block;
  width: 160px;
  position: absolute;
  top: 17px;
  left: 20px;
}
.header-sp .logo:hover img {
  opacity: 0.9;
}

.header_nav_wrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 6.5rem 3rem 10rem;
  overflow-y: scroll;
  display: none;
  background: #ffe8ea;
  z-index: 998;
  overscroll-behavior-y: contain;
}
.header_nav_wrap .header_nav {
  margin-bottom: 4rem;
}
.header_nav_wrap .header_nav .header_nav_item {
  border-bottom: 1px solid #e64d55;
}
.header_nav_wrap .header_nav .header_nav_item a {
  color: #32281e;
  display: block;
  padding: 1.2rem 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.84px;
  line-height: 24px;
}
.header_nav_wrap .header_nav .header_nav_item a:hover {
  opacity: 0.7;
}
.header_nav_wrap .header_nav .header_nav_item .header_nav_sub_list {
  margin-bottom: 2rem;
}
.header_nav_wrap .header_nav .header_nav_item .header_nav_sub_list .header_nav_sub_item {
  margin-bottom: 1rem;
}
.header_nav_wrap .header_nav .header_nav_item .header_nav_sub_list .header_nav_sub_item a {
  font-size: 1.4rem;
  letter-spacing: 0.84px;
  line-height: 24px;
  padding: 0 1rem;
}
.header_nav_wrap .header_tel {
  display: none;
}
.header_nav_wrap .header_btn {
  display: none;
}
.header_nav_wrap .close_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: #fff;
  background-color: #ef858c;
  border: none;
  width: 122px;
  height: 40px;
  border-radius: 22px;
  margin: 4rem auto 0;
  cursor: pointer;
}

.main {
  position: relative;
  min-height: calc(100vh - 64px - 233.8px);
}

.sidetab {
  position: fixed;
  right: 0;
  top: 120px;
  width: 50px;
  height: auto;
  border-radius: 20px 0 0 20px;
  z-index: 10;
}

.home .sidetab {
  box-shadow: 0px 0px 20px rgba(230, 77, 85, 0.5);
}

.btn_toTop {
  opacity: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: auto;
  z-index: 10;
  transition: opacity 0.3s ease-out;
}
.btn_toTop.visible {
  opacity: 1;
}

.home .btn_toTop {
  filter: drop-shadow(0px 0px 20px rgba(230, 77, 85, 0.5));
}

.cta_section {
  background: #ef858c;
  color: #fff;
  padding: 6rem 0 8rem;
}

.cta_txt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 1rem;
}

.cta_txt-small {
  text-align: center;
  font-size: 1.4rem;
}

.cta_btns {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.cta_btn {
  background: #fff;
  border-radius: 50px;
  width: 100%;
  max-width: 400px;
  height: 100px;
  color: #32281e;
  margin: 30px auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cta_btn .cta_btn_inner {
  position: relative;
  margin-left: 33px;
}
.cta_btn.contact {
  flex-direction: row;
}
.cta_btn.contact img {
  width: 24px;
  height: auto;
  position: absolute;
  top: 2px;
  left: -33px;
  transition: 0.3s;
}
.cta_btn.contact img:nth-of-type(2) {
  opacity: 0;
}
.cta_btn.contact p {
  font-size: 1.8rem;
  font-weight: 500;
}
.cta_btn.tel {
  flex-direction: column;
}
.cta_btn.tel .cta_btn_telTxt-top {
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 500;
}
.cta_btn.tel .cta_btn_telTxt-num {
  position: relative;
  margin-left: 31px;
}
.cta_btn.tel .cta_btn_telTxt-num img {
  width: 24.13px;
  height: auto;
  position: absolute;
  top: 8px;
  left: -31px;
  transition: 0.3s;
}
.cta_btn.tel .cta_btn_telTxt-num img:nth-of-type(2) {
  opacity: 0;
}
.cta_btn.tel .cta_btn_telTxt-num p {
  font-size: 24px;
  font-weight: 700;
}
.cta_btn.tel .cta_btn_telTxt-button {
  font-size: 12px;
  margin-top: 3px;
  font-weight: 500;
}
.cta_btn:hover {
  background: #32281e;
  color: #fff;
}
.cta_btn:hover .cta_btn_inner img:nth-of-type(1),
.cta_btn:hover .cta_btn_telTxt-num img:nth-of-type(1) {
  opacity: 0;
}
.cta_btn:hover .cta_btn_inner img:nth-of-type(2),
.cta_btn:hover .cta_btn_telTxt-num img:nth-of-type(2) {
  opacity: 1;
}

.cta_right {
  width: 50%;
  max-width: 219.42px;
  margin: 0 auto;
}

.cta_section_footer {
  padding-bottom: 0;
}
.cta_section_footer .cta_wrap {
  padding-bottom: 30%;
}

.webp .cta_section_footer_wrap {
  background: url("../img/common/houses.webp") no-repeat;
  background-size: 154%;
  background-position-y: bottom;
  background-position-x: center;
}

.no-webp .cta_section_footer_wrap {
  background: url("../img/common/houses.png") no-repeat;
  background-size: 154%;
  background-position-y: bottom;
  background-position-x: center;
}

.footer {
  background-color: #32281e;
  color: #fff;
  padding: 2rem;
}
.footer .footer_nav {
  display: none;
}
.footer .footer_info {
  margin-bottom: 4rem;
}
.footer .footer_info .footer_info_logo {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer .footer_info .footer_info_contact address {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.footer .footer_info .footer_info_contact address a {
  color: #fff;
}
.footer .footer_info .footer_txtlink {
  color: #fff;
  font-size: 1rem;
}
.footer .copyright small {
  font-size: 0.9rem;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .section_inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .section_ttl {
    margin-bottom: 5rem;
  }
  .main {
    min-height: calc(100vh - 64px - 511.17px);
  }
  .cta_btns {
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    max-width: 850px;
    margin: 3rem auto;
  }
  .cta_btn {
    width: calc((100% - 30px) / 2);
    margin: 0;
  }
  .webp .cta_section_footer_wrap {
    background-size: 120%;
  }
  .no-webp .cta_section_footer_wrap {
    background-size: 120%;
  }
  .cta_section_footer .cta_wrap {
    padding-bottom: 20%;
  }
  .footer {
    color: #fff;
    padding: 5rem 3rem;
  }
  .footer .footer_nav {
    display: block;
    margin-bottom: 5rem;
    border-bottom: 1px solid #fff;
    padding-bottom: 3rem;
  }
  .footer .footer_nav_list {
    display: flex;
    justify-content: space-between;
    max-width: 588px;
    min-width: 540px;
  }
  .footer .footer_nav_block {
    margin-top: -2.4rem;
  }
  .footer .footer_nav_item {
    margin-top: 2.4rem;
  }
  .footer .footer_nav_item a {
    color: #fff;
    font-size: 1.4rem;
  }
  .footer .footer_nav_item a:hover {
    opacity: 0.9;
  }
  .footer .footer_nav_item.facebook a {
    display: flex;
    align-items: center;
  }
  .footer .footer_nav_item.facebook a img {
    margin-right: 9px;
  }
}
@media screen and (min-width: 1000px) {
  .main {
    min-height: calc(100vh - 108px - 333.47px);
  }
  .header-sp {
    display: none;
  }
  .webp .header-pc {
    background: url("../img/common/bg.webp");
  }
  .no-webp .header-pc {
    background: url("../img/common/bg.jpg");
  }
  .header-pc {
    width: 100%;
    height: 108px;
    padding: 0 30px;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 100;
  }
  .header-pc .logo {
    width: 218px;
    height: auto;
    position: initial;
  }
  .header-pc .logo .small {
    display: block;
  }
  .header-pc .logo .regular {
    display: none;
  }
  .header-pc .header_nav_wrap {
    padding: 0 7px 0 22px;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    background: #fff;
    border-radius: 34px;
    height: 68px;
    width: auto;
    position: absolute;
    right: 30px;
    top: 20px;
    overflow: visible;
  }
  .header-pc .header_nav {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  .header-pc .header_nav .header_nav_list {
    justify-content: space-between;
    padding-right: 20px;
    border-right: 2px solid #f4c6ca;
    height: 34px;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item {
    margin-right: 0;
    border: none;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item a {
    font-size: 1.6rem;
    padding: 0;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item.hasSub {
    position: relative;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list {
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    position: absolute;
    top: 46px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    background: #fff0f2;
    border: 2px solid red;
    border-radius: 10px;
    padding: 24px 32px;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list::before {
    content: "";
    width: 0;
    height: 0;
    border-bottom: 20px solid #e64d55;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item:not(:last-child) {
    border-bottom: 1px solid #e64d55;
    padding-bottom: 1rem;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item:last-child {
    margin-bottom: 0;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item a {
    font-size: 1.8rem;
    font-weight: 400;
    padding: 0;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item:hover .header_nav_sub_list {
    opacity: 1;
    visibility: visible;
  }
  .header-pc .header_tel {
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-pc .header_tel img {
    width: 35.38px;
    height: 27.8px;
    margin-right: 7px;
  }
  .header-pc .header_tel a {
    color: #32281e;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .header-pc .header_btn {
    display: flex;
    background: #e64d55;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 27px;
    height: 54px;
    width: 188px;
    transition: background-color 0.3s, color 0.3s;
  }
  .header-pc .header_btn:hover {
    background-color: #32281e;
    color: #fff;
  }
  .header-pc .close_btn {
    display: none;
  }
  .header-pc .header_nav_list {
    display: flex;
    flex-direction: row;
    justify-content: right;
    height: 70px;
    align-items: center;
    font-weight: bold;
    font-size: 1.4rem;
    width: 310px;
  }
  .header-pc .header_nav_item {
    margin-right: 18px;
  }
  .header-pc .header_nav_item a {
    color: #fff;
  }
  .header-pc .header_nav_item a:hover {
    color: #e64d55;
  }
  .header-pc-small {
    opacity: 0;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: opacity 0.3s ease-out;
  }
  .header-pc-small.visible {
    opacity: 1;
  }
  .header-pc-small .logo {
    width: 218px;
    height: auto;
    position: initial;
  }
  .header-pc-small .logo .small {
    display: block;
  }
  .header-pc-small .logo .regular {
    display: none;
  }
  .header-pc-small .header_nav_wrap {
    height: 40px;
    padding: 0 7px 0 22px;
    border-radius: 27px;
  }
  .header-pc-small .header_nav .header_nav_list {
    height: 24px;
  }
  .header-pc-small .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item a {
    font-size: 1.6rem;
  }
  .header-pc-small .header_tel img {
    width: 26.28px;
    height: 20.65px;
    margin-top: 4px;
  }
  .header-pc-small .header_btn {
    height: 26px;
  }
  .sidetab {
    width: 80px;
  }
  .btn_toTop {
    bottom: 40px;
    right: 40px;
    width: 66px;
  }
  .cta_section {
    padding: 10rem 0;
  }
  .cta_wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .cta_left {
    width: calc(100% - 300px);
  }
  .cta_right {
    width: 219.42px;
    height: 200px;
    margin: 0 50px 0 0;
  }
  .cta_txt {
    font-size: 2.4rem;
  }
  .cta_txt-small {
    font-size: 1.5rem;
  }
  .cta_btns {
    width: auto;
    margin: 3rem 0;
  }
  .cta_btn {
    width: calc((100% - 30px) / 2);
    height: 120px;
    border-radius: 60px;
  }
  .cta_btn.contact img {
    width: 30px;
    left: -41px;
  }
  .cta_btn.contact p {
    font-size: 2.2rem;
  }
  .cta_btn.tel .cta_btn_telTxt-top {
    margin-bottom: 0.8rem;
  }
  .cta_btn.tel .cta_btn_telTxt-num p {
    font-size: 2.6rem;
  }
  .cta_btn.tel .cta_btn_telTxt-button {
    margin-top: 0.8rem;
  }
  .cta_section_footer {
    padding-bottom: 0;
  }
  .footer {
    padding: 10rem 3rem 2rem;
  }
  .footer .footer_inner {
    display: flex;
    justify-content: space-between;
  }
  .footer .footer_nav {
    border-bottom: none;
    width: 50%;
    max-width: 786px;
    padding-bottom: 0;
  }
  .footer .footer_info {
    border-left: 1px solid #fff;
    padding-left: 5rem;
  }
  .footer .footer_info .footer_info_logo {
    font-size: 1.8rem;
  }
  .footer .footer_info .footer_info_contact address {
    font-size: 1.4rem;
  }
  .footer .footer_info .footer_txtlink {
    font-size: 1.2rem;
  }
  .footer .copyright {
    text-align: center;
  }
  .footer .copyright small {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1251px) {
  .header-pc .logo {
    width: 329px;
  }
  .header-pc .logo .small {
    display: none;
  }
  .header-pc .logo .regular {
    display: block;
  }
  .header-pc .header_nav_wrap {
    padding-left: 63px;
  }
  .header-pc .header_nav .header_nav_list {
    padding-right: 30px;
    width: 372px;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item a {
    font-size: 1.8rem;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item a {
    font-size: 1.8rem;
  }
  .header-pc .header_tel {
    padding-left: 30px;
  }
  .header-pc .header_tel a {
    font-size: 2.2rem;
  }
  .header-pc .header_btn {
    width: 188px;
    font-size: 1.5rem;
  }
  .header-pc-small .header_nav_wrap {
    padding: 0 7px 0 36px;
  }
  .header-pc-small .header_nav .header_nav_list {
    height: 24px;
  }
  .header-pc-small .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item a {
    font-size: 1.6rem;
  }
  .header-pc-small .header_tel img {
    width: 26.28px;
    height: 20.65px;
    margin-top: 4px;
  }
  .header-pc-small .header_btn {
    height: 26px;
  }
  .footer {
    padding: 10rem 0 2rem;
  }
  .footer .footer_inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer .footer_info {
    margin-right: 9rem;
  }
}
@media screen and (min-width: 1600px) {
  .webp .cta_section_footer_wrap {
    background-size: contain;
  }
  .no-webp .cta_section_footer_wrap {
    background-size: contain;
  }
}/*# sourceMappingURL=common.css.map */