@charset "UTF-8";

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

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  font-size: 16px;
}

@media (max-width: 1140px) {
  html {
    font-size: 1.4035087719vw;
  }
}

@media screen and (max-width: 1023px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.0533333333vw;
  }
}

body {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 400;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333333;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1023px) {
  a:hover {
    opacity: 1;
  }
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}

@media screen and (max-width: 1023px) {
  body {
    font-size: 3.5vw;
  }
}


#drawer .contents {
  position: fixed;
  height: 100vh;
  top: 0;
  right: 0;
  color: #000;
  background: #f2e8d9;
  -webkit-box-shadow: 1px 1px 12px -5px #fff;
  box-shadow: 1px 1px 12px -5px #fff;
  padding: 10vh 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: auto;
  pointer-events: none;
  overflow-y: scroll;
  z-index: 250;
}

#drawer .contents.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#drawer .content-item {
  position: relative;
  text-align: center;
}

#drawer .item:not(:first-of-type) {
  margin-top: 40px;
}

#drawer .item .main-title {
  display: block;
}

#specialty_body #drawer .item .main-title{
  font-family: "Noto Serif JP", sans-serif;
}

#drawer .item a{
  display: inline-block;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#drawer .item .main-title {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 700;
}

#overlay {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 100vh;
  background: rgba(24, 24, 24, 0.5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#overlay.is-active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1023px) {
  #drawer.is-active {
    z-index: 251;
  }

  #drawer .icon {
    width: 33px;
    height: 22px;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1000;
  }

  #drawer .icon-bars {
    position: relative;
    display: block;
    width: 33px;
    height: 1.375rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
  }

  #drawer .icon-bar1,
  #drawer .icon-bar2,
  #drawer .icon-bar3 {
    width: 33px;
    height: 1px;
    position: absolute;
    background: #707070;
    top: 0;
    left: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }

  #drawer .icon-bar1 {
    top: 0.125rem;
  }

  #drawer .icon-bar2 {
    top: 0.6875rem;
  }

  #drawer .icon-bar3 {
    top: 1.3125rem;
  }

  #drawer .icon.is-active .icon-bar1,
  #drawer .icon.is-active .icon-bar3 {
    background: #707070;
  }

  #drawer .icon.is-active .icon-bar1 {
    width: 33px;
    top: calc(50% - 0px);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #drawer .icon.is-active .icon-bar2 {
    display: none;
  }

  #drawer .icon.is-active .icon-bar3 {
    width: 33px;
    top: calc(50% - 0px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #drawer .contents {
    width: 77%;
    max-width: 700px;
    padding: 15vw 7.5vw;
  }

  #drawer .item:not(:first-of-type) {
    margin-top: 4.5vw;
  }

  #drawer .item .main-title {
    font-size: min(4vw, 30px);
    line-height: 1.6;
  }
}

#footer {
  position: relative;
  z-index: 1;
  height: 30px;
}

#footer .body {
  background: #fff;
  padding: 22px 0 11px;
}

#footer .logo img {
  width: 194px;
  aspect-ratio: 194/69;
  -o-object-fit: contain;
  object-fit: contain;
}

#footer .text {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 11px;
  text-align: center;
}

#footer .copyright {
  display: block;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
  color: #fff;
  background: #7d5a58;
  padding: 7px 20px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  #footer .body {
    padding: 5.5vw 0 2.75vw;
  }

  #footer .logo img {
    width: 48.5vw;
  }

  #footer .text {
    font-size: 3vw;
    margin-top: 2.75vw;
  }

  #footer .copyright {
    font-size: 2.5vw;
    padding: 1.75vw 5vw;
  }
}

header {
  position: fixed;
  min-width: 400px;
  width: 30.02vw;
  height: 60px;
  z-index: 10;
}

#header .body {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  padding: 10px;
  height: 60px;
  box-shadow: 0 0 10px #00000059;
}

#header .logo {
  width: 200px;
}

#header .header_btn {
  height: 50px;
  width: 170px;
}

#header .header_btn img {
  object-fit: contain;
}

@media screen and (max-width: 1023px) {
  #header {
    position: fixed;
    width: 100%;
    min-width: 100%;
    top: 0;
    left: 0;
  }

  #header .body {
    gap: 10px;
  }

  #header .header_btn {
    margin-right: 60px;
  }
}

.page_404 {
  background: #f2fffe;
  padding: 100px 20px;
  height: calc(100vh - 30px);
}

.page_404 .contents {
  background: #fff;
  padding: 80px 40px;
  outline: 4px solid #000;
  outline-offset: -15px;
  text-align: center;
}

.page_404 .title {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 700;
}

.page_404 .text {
  margin-top: 20px;
}

.page_404 .contact__button {
    margin-top: 50px;
    padding: 0 10px;
    max-width: 300px;
    margin: 50px auto 0;
}

@media screen and (max-width: 1023px) {
  .page_404 {
    padding: 10vw 20px;
  }

  .page_404 .contents {
    width: 100%;
    padding: 12.5vw 5vw;
    outline: 1vw solid #000;
    outline-offset: -2.5vw;
  }

  .page_404 .title {
    font-size: 8vw;
  }

  .page_404 .text {
    margin-top: 2.5vw;
  }

}




.pc_grid {
  width: calc(35% + 15vw);
  display: grid;
  grid-template-columns: 400px 1fr;
  margin-left: auto;
}

@media screen and (max-width: 1023px) {
  .pc_container {
    margin-top: var(--header-height);
  }

  .pc_grid {
	display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }
	
  /*#top_fv{
	margin-top: 5px;	
  }*/
}


.pc_menu {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

.pc_menu .nav {
  width: 100%;
  max-width: 60%;
  min-width: 250px;
  margin-inline: auto;
}

.pc_menu .list:not(:first-of-type) {
  margin-top: 20px;
}

.pc_menu .list a,
.pc_menu .sub-list a {
  display: inline-block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pc_menu .main-title,
.pc_menu .sub-title,
.pc_menu .sub-list a {
  display: block;
  color: #393939;
}


.pc_menu .main-title {
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0em;
  font-weight: 700;
}

.pc_menu .sub-title,
.pc_menu .sub-list a {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
}

.page_top .pc_menu .sub-title,
.page_top .pc_menu .sub-list a {
  font-family: "Noto Sans JP", sans-serif;
}

.pc_menu .sub-lists {
  margin-top: 10px;
}

.pc_menu .sub-list:not(:first-of-type) {
  margin-top: 12px;
}

.pc_menu .sub-list a {
  position: relative;
  display: block;
  padding-left: 20px;
}

.pc_menu .sub-list a::before {
  content: "";
  width: 5px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #333333;
}

.pc-logo{
	position: fixed;
    left: 20px;
    top: 92vh;
    height: 8vh;
}

@media screen and (min-width: 1024px) and (max-height: 900px) {
  .pc_menu {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .pc_menu .list:not(:first-of-type) {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1024px) and (max-height: 700px) {
  .pc_menu .list:not(:first-of-type) {
    margin-top: 12px;
  }
}

@media screen and (max-width: 1023px) {
  .pc_menu {
    display: none;
  }
}

.u-is-1600 {
  display: none;
}

@media screen and (min-width: 1600px) {
  .u-is-1600 {
    display: block;
  }

  .pc_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .pc_menu .nav {
    margin-left: 0;
    margin-right: inherit;
  }

  .pc_menu .nav .btn a {
    max-width: 300px;
  }

  .pc_menu-box {
    width: 45%;
    max-width: 300px;
    margin-left: 0;
  }

  .pc_menu-image {
    position: relative;
    top: 30px;
    z-index: -1;
  }

  .pc_menu-image img {
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
  }
}


.u-is-pc {
  display: block;
}

@media screen and (max-width: 1023px) {
  .u-is-pc {
    display: none;
  }
}

.u-is-sp {
  display: none;
}

@media screen and (max-width: 1023px) {
  .u-is-sp {
    display: block;
  }
}

.u-tac {
  text-align: center;
}

.u-flex {
  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;
}

.u-is-br {
  display: inline-block;
}

/* 管理画面 pnpテキスト非表示 */
#included-files-fie-on-wp-footer {
  display: none;
}

/* HOUSE JAPAN 追記 */	
#top_container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bg-layer {
  position: fixed;
  inset: 0;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease;
  z-index: -1;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.65);
  background-blend-mode: lighten;
}

.bg-layer.active {
  opacity: 1;
}


#top_container::before {
  opacity: 1;
}

#top_container::after {
  opacity: 0;
}

#top_fv{
	margin-top: 60px;
}

#top_body{
	background: #fff;
    box-shadow: 0 0 20px #0000007a;
	z-index: 5;
	min-width: 400px;
	width: 30.02vw;
}

#sec01{
	padding: 0px 0 20px;
}

.cta-btn{
	padding: 15px 30px 20px;
}

#sec01 .cta-btn{
	margin-top: 10px;
}

#sec02{
	padding: 0px 0px;
}
	
#sec04{
	padding: 0px 0px;
}

#sec05{
	padding: 15px 0;
}

.tel-btn{
	margin-top: -25px;
}

#sec05 .cta-btn{
	margin-top: 15px;
}

#sec-contact{
	background: #9e7370;
    padding: 50px 20px;
}

#sec-contact h2{
	text-align: center;
    color: #fff;
	font-weight: bold;
	font-size: 1.8rem;
}

.wpcf7{
	background: #fff;
    border-radius: 2px;
}

.p-form__wrapper{
	padding: 30px 0 0;
    margin-top: 25px;
	text-align: center;
}

.p-form__catch{
	color: #595758;
    font-weight: 500;
    line-height: 1.75;
}
.p-form__content{
	margin-top: 30px;
}
.p-form__item{
	margin-top: 13px;
}
input, button, textarea, select{
	border: 1px solid #9C9C9C;
    border-radius: 2px;
	width: 100%;
	height: 40px;
	padding: 0 10px;
}
.p-form__answer{
	text-align: left;
    width: 85%;
    margin: 0 auto;
}
.p-form__question{
	text-align: left;width: 85%;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: bold;
}

.p-form__question label{
	display: flex;
    align-items: center;
	gap: 10px;
}

.u-attention_1{
	font-size: 12px;
}
.u-attention{
	background: #EA5514;
    color: #fff;
    padding: 0px 3px 1px 6px;
    font-size: 12px;
	letter-spacing: 0.3em;
}

.u-attention_2{
	background: #898989;
}

.u-attention_3{
	width: 85%;
    color: #EA5514;
	margin: 0 auto;
    text-align: left;
}

.wpcf7-textarea{
	height: 100px;
	margin-bottom: 15px;
}

.p-form__item_ad{
	display: flex;
    align-items: center;
    width: 85%;
    justify-content: space-between;
    margin: 13px auto 0;
}

.p-form__item_ad .p-form__question{
	width: 45%;
}

.p-form__item_ad .p-form__answer{
	width: 55%;
}

.p-form__item_ad .p-form__answer select{
	width: 100%;
}

.p-form__item_ad .p-form__answer input{
	width: 100%;
}

.p-form__button input{
	background: #9e7370;
    height: 60px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 7px;
    border: none;
    margin: 0px auto 0px;
	width: 85%;
	display: block;
	box-shadow: 0 5px 0px #7d5a58;
}

.contact{
	margin-top: 60px;
	background: #9e7370;
    padding: 30px 20px;
}

.contact__fv{
	text-align: center;
    color: #fff;
}
.contact__title{
	line-height: 1.5;
}

.contact__inner{
	margin-top: 30px;
}

.contact__thanks{
	text-align: center;
    color: #7d5a58;
}

.complete{
	height: calc(100vh - 90px);
	background: #f2e8d9;
}

.contact__button{
	margin-top: 50px;
	padding: 0 10px;
}
.contact__back-button{
	background: #f2e8d9 !important;
    margin-top: 15px !important;
    color: #9e7370 !important;
}
.complete .contact__fv{
    color: #7d5a58;
}

@media screen and (max-width: 1023px) {
	#top_body{
		width: 100%;
		min-width: 100%;
	}
	
	/*#top_fv {
        margin-top: 5px;
    }
	.contact{
		margin-top: 0;
	}*/
}








