@charset "utf-8";
/* レイアウトのためのCSS */
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-family: 'Noto Serif JP', serif;
  color: #333;
  font-size: 1.24rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}
@media screen and (max-width:768px) {
  body {
    font-size: 0.8rem;
  }
}
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: #333;
  text-decoration: none;
  outline: none;
}
img {
  width: 100%;
  height: auto;
}
.demo_img {
  width: 100%;
}
.video_img {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width:768px) {
  .video_img {
    width: 100%;
    height: auto;
  }
}
#video_main-area {
  width: 96%;
  padding: 0 50px;
}
/* font-family */
#splash-logo, .top-lead, h1, h2, h3 span, h4, #g-nav, #pc-nav, .openbtn, #footer {
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.1em;
}
.openbtn {
  display: none;
}
/* menu */
h1, /*ハンバーガーメニューのトップが大きくなる
#g-nav-list li:nth-child(1),
*/ #menu h2, #blog h2, #footer dl dd, /*
#splash-logo{
    font-family:'Parisienne', cursive;
}
*/ #header .bgextend {
  font-weight: bold;
}
.header_area {
  width: 100%;
}
.header_title {
  width: 24%;
}
#slideshow {
  position: relative;
}
#slideshow img {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 8;
  opacity: 0.0;
}
#slideshow img.active {
  z-index: 10;
  opacity: 1.0;
}
#slideshow img.last-active {
  z-index: 9;
}
.explanation {
  text-align: center;
  font-size: 100px;
  padding: 100px;
}
.zoom-2 img {
  width: 100%;
  height: auto;
  animation: animationZoom2 10s ease-in-out infinite;
}
@keyframes animationZoom2 {
  50% {
    transform: scale(1.5)
  }
}
.zoom-2 img {
  width: 100%;
  height: auto;
  animation: animationZoom2 10s ease-in-out infinite;
}
.zoom {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 30px
}
@keyframes animationZoom1 {
  100% {
    transform: scale(1.1)
  }
}
@keyframes animationZoom2 {
  50% {
    transform: scale(1.1)
  }
}
#menu h2, #blog h2 {
  font-size: 4rem;
  text-align: center;
  margin: 0 0 50px 0;
  font-weight: normal;
  color: #6B5B4B;
}
#menu {
  padding: 0 6%;
}
#menu section {
  background: #fff;
  margin: 0 0 10px 0;
}
#menu section h3 {
  font-size: 1.1rem;
}
.town_looks {
  margin: 0 0 0 0;
}
#menu section p {
  font-size: 1rem;
}
#menu .menu-area {
  width: 100%;
  padding: 6px;
  box-shadow: 5px 0 10px #ccc;
}
#menu .menu-btn {
  text-align: center;
  margin: 50px 0 0 0;
}
.menu_flex {
  display: flex;
  gap: 2%;
}
.img_wrap {
  border: 1px solid #ddd;
  width: 300px;
  height: 226px;
  margin: 20px auto 0;
  transition-duration: 0.5s;
}
.img_wrap img {
  width: 100%;
  cursor: pointer;
}
.img_wrap:hover {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  transform: translateY(-10px);
  transition-duration: 0.5s;
}
.circle {
  width: 100%;
}
.menu_img {
  width: 100%;
  vertical-align: bottom;
}
.hover_img:hover {
  box-shadow: 5px 5px 5px rgba(141, 140, 140, 0.5);
  transform: translateY(-6px);
  transition-duration: 1.0s;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s; /*ゆっくり出現するため数値変更*/
  animation-fill-mode: forwards;
  opacity: 0;
}
/*==================================================
枠線が伸びて出現
===================================*/
/*枠線が伸びて出現*/
.lineTrigger {
  position: relative; /* 枠線が書かれる基点*/
  opacity: 0;
}
.lineTrigger.lineanime {
  animation-name: lineAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  background: #fff;
}
@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*上下線*/
.lineTrigger::before, .lineTrigger::after {
  position: absolute;
  content: '';
  width: 0;
  height: 1.4px;
  background: #333; /* 枠線の色*/
}
/*左右線*/
.line2::before, .line2::after {
  position: absolute;
  content: '';
  width: 1.4px;
  height: 0;
  background: #333; /* 枠線の色*/
}
/*上線*/
.lineTrigger::before {
  top: 0;
  left: 0;
}
.lineTrigger.lineanime::before {
  animation: lineAnime .5s linear 0s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
}
/*右線*/
.line2::before {
  top: 0;
  right: 0;
}
.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 .5s linear .5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}
/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0;
}
.lineTrigger.lineanime::after {
  animation: lineAnime .5s linear 1s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}
/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}
.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 .5s linear 1.5s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}
@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  animation: lineInnerAnime .5s linear 1.5s forwards; /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0; /*初期値を透過0にする*/
}
.bgextend, .lineTrigger {
  width: 220px;
  padding: 10px 20px;
  margin: 40px auto 20px;
  box-sizing: border-box;
}
.lineinappear {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}
.c-btn:hover {
  font-weight: bold;
  color: #a1a46d;
  transition: 0.5s;
}
.c-btn:hover::after {
  transform: scale(1, 1);
}
@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
  text-align: left;
}
@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger {
  opacity: 0;
}
@media screen and (max-width:768px) {
  #menu h2, #blog h2 {
    font-size: 3rem;
  }
}
/*===========================================================*/
/* お家キャンプエリア
/*===========================================================*/
.box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.box {
  width: 100%;
  padding: 40px;
  margin: 140px 0 10px 0;
  color: #fff;
  box-sizing: border-box;
}
.box {
  background: url("../img/camp_img.png") no-repeat center;
  background-size: cover;
}
#box1.box {
  justify-content: flex-start;
}
.sumai_text {
  font-size: 1.3rem;
  color: #000;
}
.profile-area {
  width: 100%;
  max-width: 40%;
  background: rgba(255, 255, 255, 0.7);
  padding: 40px;
  margin: 0 0 0 40px;
  text-align: left;
  letter-spacing: 0.03em;
}
.profile-area h2 {
  font-size: 0.9rem;
  margin: 0 0 40px 0;
  line-height: 1.8;
  color: #333;
  font-family: 'Baskervville', serif;
  text-align: center;
}
.profile-area p {
  margin: 0 0 40px 0;
}
/* splash */
#splash-logo {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #726250;
}
/* g-nav */
#g-nav.panelactive li:last-child a {
  margin: 30px 0 0 0;
  padding: 10px 20px;
  border: 2px solid #333;
  white-space: nowrap;
}
/*pc-nav*/
/*ナビスライドの色*/
#pc-nav span.bgLRextend::before {
  background: #a1a46d;
}
@media screen and (max-width:990px) {
  #pc-nav {
    display: none;
  }
}
/* heading */
h1 {
  text-transform: uppercase;
  font-size: 1.5rem;
  position: absolute;
  top: -36%;
  left: 2%;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width:550px) {
  h1 {
    font-size: 1.2rem;
    top: 32%;
  }
}
h1 a {
  color: #b0ca71;
}
h2 {
  text-transform: uppercase;
  font-size: 2.4rem;
}
@media screen and (max-width:768px) {
  h2 {
    font-size: 2rem;
  }
}
/*ドロップダウンメニュー*/
*, *::after, *::before {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
}
a {
  color: #333;
  text-decoration: none;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
  padding: 0;
  margin: 0;
}
main {
  width: 100%;
  margin: 0px auto 10px;
}
.menu {
  display: flex;
  justify-content: center;
}
.menu__link {
  display: block;
}
.menu__link:hover {
  color: #666;
}
.drop-menu {
  position: absolute;
  top: 62px;
  transition: all .8s;
}
.drop-menu__link {
  display: block;
  display: none;
  background-color: #b0ca71;
  transition: all .3s;
  padding: 10px 24px;
}
.drop-menu__link:hover {
  background-color: #4e453b;
}
/* lead */
.top-lead {
  position: fixed;
  bottom: 30%;
  right: 8%;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.5;
  color: white;
  font-family: 'Shippori Mincho B1', serif;
  z-index: 10;
}
/*あなたの夢が設計図の色*/
.top-lead span.bgLRextend::before {
  background: #a1a46d;
}
@media screen and (max-width:550px) {
  .top-lead {
    font-size: 2.2rem;
  }
}
@media screen and (max-width:380px) {
  .top-lead {
    font-size: 1.8rem;
  }
}
/* main-area */
#main-area {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0 0;
}
/* topics */
#topics {
  border-left: 3px solid #000;
  padding: 0 0 0 20px;
}
@media screen and (max-width:768px) {
  #topics {
    margin: 0 0 100px 0;
  }
}
#topics h2 {
  font-size: 1.5rem;
}
#topics h2 span.bgLRextend::before {
  background: #333;
}
.bx-wrapper {
  box-shadow: none;
  border: none;
}
/* vision */
#vision {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 2rem 0 100px 0;
}
#vision .img {
  width: 40%;
  min-height: 590px;
  background: url("../img/IMG_20230913_164808.jpg") no-repeat center;
  background-size: cover;
}
#vision .content {
  width: 50%;
  text-align: right;
}
@media screen and (max-width:768px) {
  #vision .img {
    width: 100%;
    min-height: 290px;
    margin: 0 0 50px 0;
  }
  #vision .vision-lead {
    font-size: 1rem;
  }
  #vision .vision-lead::after {
    left: 0;
  }
  #service .service-area {
    margin: 0 0 200px 0;
  }
  #service .service-area .content {
    width: 47%;
    top: 100px;
  }
  #vision .content {
    width: 100%;
    text-align: left;
  }
  .heading01:first-letter {
    font-size: 6rem;
  }
  .heading01 span.en {
    font-size: 1.6rem;
  }
  .heading01 span.jp {
    font-size: 0.9rem;
    top: 5em;
    left: 4em;
  }
  #greeting .heading01 span.jp {
    left: 6em;
  }
}
#vision h2 {
  color: #a1a46d;
  margin: 0 0 30px 0;
}
#vision p {
  line-height: 2;
  margin: 0 0 50px 0;
}
#vision .vision-lead {
  position: relative;
  color: #8f8667;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 0 50px 0;
}
#vision .vision-lead::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: 0;
  background: #d6c6af;
  width: 12em;
  height: 3px;
}
/* service */
#company {
  margin: 120px 0 60px 0;
}
#service h2 {
  color: #726250;
  text-align: center;
  margin: 30px 0 0 0;
  font-size: 2rem;
}
@media screen and (max-width:550px) {
  #service h2 {
    margin: 0 0 50px 0;
  }
  .heading-block {
    padding: 0;
  }
  .zoomOut .mask {
    height: 45vw;
  }
}
/*各h2のスライド色*/
#service h2 span.bgLRextend::before {
  background: #726250;
}
#service .service-area {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 300px 0;
}
#service .service-area::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 23em;
  background: #f3f3f3;
  right: 10%;
  top: 20%;
  z-index: -1;
}
#service .service-area:nth-of-type(2n+1) {
  flex-direction: row-reverse;
  margin-top: 60px;
}
#service .service-area .img {
  width: 50%;
}
#service .service-area .content {
  width: 40%;
  background: #fff;
  box-shadow: 0 0 20px #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 150px;
}
@media screen and (max-width:590px) {
  #service .service-area .img {
    width: 100%;
    z-index: 2;
  }
  #service .service-area .content {
    width: 100%;
    top: -10px;
    animation: none;
    opacity: 1;
    z-index: 1;
  }
  #service .service-area {
    margin: 0 0 50px 0;
  }
}
#service .service-area .content-area {
  padding: 40px;
}
#service .service-area .content-area h3 {
  text-align: center;
  font-size: 1rem;
  margin: 0 0 30px 0;
}
#service .service-area .content-area h3 span {
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  font-size: 1.2rem;
}
#service .service-area .content-area p {
  text-align: left;
  margin: 0 0 30px 0;
}
#service .btn {
  text-align: right;
}
/* heading */
.heading-block {
  padding: 0 0 0 70px;
}
.heading01 {
  position: relative;
  font-weight: normal;
  font-size: 5vw;
  letter-spacing: 0.1em;
  padding: 0 0 30px 0;
  line-height: 1;
  text-align: left;
}
.heading01 span {
  position: absolute;
}
.heading01 span.en {
  top: 1.5em;
  left: 2em;
  font-size: 3vw;
}
#greeting .heading01 span.en {
  left: 3em;
}
#statistics .heading01 span.en {
  left: 2.5em;
}
.heading01 span.jp {
  top: 7em;
  left: 5.5em;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2vw;
}
#greeting .heading01 span.jp {
  left: 8em;
}
#statistics .heading01 span.jp {
  left: 7em;
}
.heading01:first-letter {
  font-size: 12vw;
}
@media screen and (max-width:960px) {
  .heading01 {
    font-size: 1rem;
  }
  .heading01:first-letter {
    font-size: 8rem;
  }
  .heading01 span.en {
    font-size: 2rem;
  }
  .heading01 span.jp {
    font-size: 1rem;
    top: 6em;
  }
}
/* topics */
#topics {
  position: relative;
  margin: 0 0 60px 0;
}
.work_img {
  width: 124%;
}
/* パーツから */
.btnlinestretches4 {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #333;
  padding: 10px 50px 10px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
.btnlinestretches4::before, .btnlinestretches4::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: #333;
  width: 100%;
  height: 1.8px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}
/*hover時に伸びる線の形状*/
.btnlinestretches4::after {
  width: 0;
  background: #d6c6af;
}
/*hover時に100%に伸びる*/
.btnlinestretches4:hover::after {
  width: 100%;
}
/*矢印の設定*/
.btnlinestretches4 span::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 1.3em;
  right: 20px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}
/*hover時に矢印が移動*/
.btnlinestretches4:hover span::after {
  right: 15px;
  border-color: #b0ca71;
}
.zoomOut img {
  transform: scale(1.1);
  transition: .3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}
.zoomOut:hover img { /*hoverした時の変化*/
  transform: scale(1); /*拡大の値を変更したい場合はこの数値を変更*/
}
.zoomOut .mask {
  display: block;
  height: 11vw;
  overflow: hidden;
}
@media screen and (max-width:1020px) {
  .zoomOut .mask {
    height: 25vw;
  }
}
@media screen and (max-width:960px) {
  #topics {
    margin: 0 0 100px 0;
  }
}
.topics-area {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.topics-area article {
  width: 20%;
  box-shadow: 0 0 10px #ccc;
  background: #fff;
  border-radius: 10px;
}
.topics-area article:nth-of-type(1) {
  position: relative;
  top: 0;
}
.topics-area article:nth-of-type(2) {
  position: relative;
  top: 0;
}
.topics-area article:nth-of-type(3) {
  position: relative;
  top: 0;
}
@media screen and (max-width:1020px) {
  .topics-area article {
    width: 46%;
    margin: 0 0 50px 0;
  }
  .topics-area article:nth-of-type(2n+1) {
    top: 30px;
  }
  .topics-area article:nth-of-type(2n) {
    top: 0;
  }
}
@media screen and (max-width:550px) {
  .topics-area article {
    width: 90%;
  }
  .topics-area article:nth-of-type(2n+1) {
    top: 0;
  }
}
.zoomOut .mask {
  border-radius: 10px 10px 0 0;
}
.topics-area .topics-block {
  padding: 10px 20px;
}
.topics-area .topics-block time {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 20px 0;
}
.topics-area .topics-block h3 {
  font-size: 1rem;
}
#topics .topics-btn {
  text-align: right;
  padding: 100px 0 0 0;
}
@media screen and (max-width:960px) {
  #topics .topics-btn {
    text-align: center;
    padding: 50px 0 0 0;
  }
}
/*住まいの写真ページ*/
.sns_area {
  width: 80%;
  height: 100%;
  margin: 16% auto 0;
}
.sns_flex_area {
  display: flex;
}
.left_area {
  width: 33.2%;
  margin-right: 1%;
}
.sns_img_1_top {
  width: 100%;
}
.facebook_img {
  width: 100%;
  height: 30%;
}
.center_area {
  width: 33.2%;
  margin-right: 1%;
}
.sns_img_2_top {
  width: 100%;
  height: 31%;
}
.insta_img {
  width: 100%;
  height: 32%;
}
.sns_img_3_top {
  width: 100%;
  height: 31%;
}
.right_area {
  width: 33.3%;
}
.tiktok_img {
  width: 100%;
  height: 30%;
}
.sns_img_4_top {
  width: 100%;
}
/*対応エリアページ*/
.taiou_img {
  width: 100%;
  margin-top: 10%;
  text-align: left;
}
/*コンタクトエリアページ*/
.contact_area {
  width: 100%;
  margin-top: 10%;
}
.contact_flex {
  width: 100%;
  display: flex;
  padding: 0 4% 4% 8%;
  justify-content: center;
}
.contact_left {
  width: 48%;
  text-align: left;
  border-right: 1.5px solid #000000;
  margin-right: 2%;
}
.contact_left_text {
  text-align: left;
}
.contact_rihgt {
  width: 48%;
}
.contact_top_img {
  width: 20%;
}
.contact_rihgt_flex {
  display: flex;
  align-items: center;
}
.contact_img {
  width: 8%;
}
.tel_img {
  width: 6%;
}
.tel_text_center {
  width: 56%;
}
.tel_text {
  width: 80%;
  font-size: 1.4rem;
}
.tel_time {
  width: 107%;
}
.tel_number {
  font-size: 1.6rem;
  font-weight: bold;
}
.contact_rihgt_bottom_flex {
  display: flex;
  align-items: center;
}
.line_text {
  width: 82%;
  font-size: 1.3rem;
}
.contact_link {
  width: 40%;
}
.contact_line_img {
  width: 80%;
  margin-top: 16px;
}
/*マップ*/
.iframe_map {
  width: 100%;
}
/*フッター*/
.footer_area {
  width: 100%;
}
.footer_flex {
  display: flex;
}
.footer_left_flex {
  width: 100%;
  display: flex;
  padding-left: 4%;
  padding-bottom: 5%;
  align-items: center;
}
.footer_left_area {
  width: 50%;
  text-align: left;
}
.footer_left_text {
  width: 106%;
  text-align: left;
  font-size: 1.3rem;
}
.company_top_img {
  width: 56%;
}
.footer_right {
  width: 56%;
}
/*
.footer_right_flex{
    display: flex;
    justify-content: center;
    gap: 4%;
}
*/
a .footer_sns_img {
  width: 12%;
}
.footer_right_img {
  width: 100%;
}
.footer_sns_img {
  width: 15%;
  height: 100%;
  margin: 0 2%;
}
.footer_contact {
  width: 100%;
}
.footer_contact_img {
  width: 46%;
}
.contact_policy {
  display: flex;
  justify-content: center;
  gap: 2%;
}
.policy_area:hover {
  color: blue;
  transition: 0.5s;
}
.policy_text {
  font-size: 1rem;
}
/* about */
#about {
  margin: 0 0 200px 0;
}
@media screen and (max-width:768px) {
  #about {
    margin: 0 0 100px 0;
  }
}
#about h2 {
  text-align: center;
  color: #b0ca71;
  margin: 0 0 100px 0;
}
@media screen and (max-width:550px) {
  #about h2 {
    margin: 0 0 50px 0;
  }
}
#about .about-list {
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
#about .about-list li {
  border-bottom: 1px solid #ccc;
  margin: 0 0 15px 0;
  padding: 0 0 15px 0;
}
#about .about-list dl {
  display: flex;
  justify-content: space-between;
}
#about .about-list dt {
  width: 30%;
  padding: 0 0 0 40px;
}
@media screen and (max-width:590px) {
  #about .about-list dt {
    padding: 0 0 0 10px;
  }
}
#about .about-list dd {
  width: 65%;
}
/* faq */
#faq {
  margin: 0 0 200px 0;
}
#faq h2 {
  text-align: center;
  margin: 0 0 100px 0;
}
#faq h2 span.bgLRextend::before {
  background: #333;
}
.faq-bg {
  position: relative;
  height: 55vh;
  background: url("../img/house_flow_img.png") no-repeat center;
  background-size: cover;
  margin: 6% 0 200px 25%;
}
.faq-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -32%;
  width: 100%;
  height: 55vh;
  background: #f3f3f3;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .faq-bg, .faq-bg::after {
    height: 35vh;
  }
}
@media screen and (max-width:550px) {
  #faq {
    margin: 0 0 100px 0;
  }
  #faq h2 {
    margin: 0 0 50px 0;
  }
  .faq-bg {
    margin: 0 0 100px 25%;
  }
  .faq-bg, .faq-bg::after {
    height: 20vh;
  }
}
/* contact */
#contact {
  margin: 0 0 100px 0;
}
#contact h2 {
  text-align: center;
  margin: 0 0 100px 0;
  color: #726250;
}
@media screen and (max-width:550px) {
  #contact h2 {
    margin: 0 0 50px 0;
  }
}
#contact .form-list {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
#contact input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
}
#contact .form-list input[type='text'], #contact .form-list input[type='email'], #contact .form-list textarea {
  width: 100%;
  border: 1px solid #666;
  background: #fff;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#contact .form-list input[type='text'], input[type='email'] {
  height: 50px;
}
#contact .submit-btn {
  width: 152px;
  margin: 0 auto;
}
#contact input[type='submit'] {
  border: 2px solid #333;
  color: #333;
  text-align: center;
  padding: 5px 20px;
  width: 152px;
  margin: 0 auto;
  transition: all .3s;
}
#contact input[type='submit']:hover {
  background: #333;
  color: #fff;
}
#contact .form-list dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 0 20px 0;
}
#contact .form-list dt {
  width: 30%;
}
#contact .form-list dd {
  width: 66%;
}
#contact .form-list textarea {
  height: 200px;
}
/* footer */
#footer {
  padding: 3% 0 0 0;
  border-top: 1px solid #333;
  text-align: center;
  background: #fff;
  position: relative;
  text-transform: uppercase;
  z-index: 11;
}
#footer .footer-logo {
  font-weight: bold;
  letter-spacing: 0.3em;
  margin: 0 0 50px 0;
  color: #666;
}
#footer small {
  color: #888;
}
@media screen and (max-width:990px) {
  .openbtn {
    display: block;
  }
}
@media screen and (max-width:768px) {
  .header_title {
    width: 33%;
  }
  #main-area {
    padding: 50px 0;
  }
  #box1.box {
    justify-content: center;
  }
  .profile-area {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    margin: 0;
    text-align: left;
    letter-spacing: 0.03em;
  }
  #service h2 {
    padding: 6%;
  }
  #splash-logo, .top-lead, h1, h2, h3 span, h4, #g-nav, #pc-nav, .openbtn, #footer {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
  }
  #service .service-area .img {
    width: 100%;
  }
  #service .service-area .content {
    width: 100%;
    top: -5px;
  }
  #service .btn {
    font-size: 1.4rem;
    text-align: center;
  }
  #service .service-area .content-area p {
    font-size: 1.2rem;
  }
  #service .service-area {
    margin: 80px 0 120px 0;
  }
  .sns_area {
    width: 100%;
  }
  #slideshow img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    opacity: 0.0;
  }
  .contact_top_img {
    width: 30%;
  }
  .contact_left_text {
    font-size: 1rem;
    padding: 0 4% 0 0px;
  }
  .line_text {
    width: 82%;
    font-size: 1rem;
  }
  .contact_flex {
    padding: 0 4% 4% 3%;
  }
  .contact_rihgt_flex {
    display: block;
  }
  #contact .form-list dt {
    margin: 0 0 10px 0;
  }
  #contact .form-list dt, #contact .form-list dd {
    width: 100%;
  }
  .tel_img {
    display: none;
  }
  .tel_text_center {
    width: 100%;
  }
  .tel_text {
    width: 70%;
    font-size: 1rem;
    margin: auto;
  }
  .tel_number {
    font-size: 1.2rem;
  }
  .contact_rihgt_bottom_flex {
    display: block;
  }
  .contact_line_img {
    width: 100%;
  }
  .contact_link {
    margin: auto;
  }
  .line_text {
    margin: auto;
  }
  .company_top_img {
    width: 100%;
  }
  .footer_text_size {
    width: 46%;
    margin: 0 auto;
  }
  .footer_logo {
    width: 80%;
    font-size: 1rem;
  }
  .footer_left_text {
    width: 130%;
    text-align: left;
    font-size: 1rem;
  }
  .footer_contact_img {
    width: 60%;
    margin-top: 4%;
  }
  .footer_right_flex {
    gap: 5%;
  }
  .footer_sns_img {
    width: 14%;
    height: 100%;
  }
  .contact_policy {
    display: block;
    line-height: 2rem;
  }
  .policy_text {
    font-size: 0.8rem;
  }
}
@media screen and (max-width:768px) {
  .kouhyo .anniversary {
    width: 100%;
    font-size: 0.525rem;
  }
}
@media screen and (min-width:769px) {
  .kouhyo, .anniversary {
    width: 60%;
  }
}
.anniversary img {
  width: 50%;
  float: left;
}
.kouhyo, .anniversary {
  margin: auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.kouhyo p {
  text-align: left;
}
.kouhyo table {
  width: 100% !important;
  border: none !important;
}
.kouhyo th {
  border-right: 1px solid #313131 !important;
  border-top: 1px solid #313131 !important;
  border-bottom: 1px solid #313131 !important;
}
.kouhyo th:last-child {
  border-right: none !important;
}
.kouhyo td, .kouhyo th {
  padding: 10px 10px;
}
.kouhyo th {
  background-color: #d0ebf2 !important;
  text-align: center;
}
.t_1 td {
  text-align: center;
  border-bottom: 1px solid #313131 !important;
  border-right: 1px solid #313131 !important;
}
.t_1 td:last-child {
  border-right: none !important;
}
.t_2 td {
  text-align: right;
  border-bottom: 1px solid #313131 !important;
  border-right: 1px solid #313131 !important;
}
.t_2 td:last-child {
  border-right: none !important;
}

.clear {
	clear: both;
}