@charset "utf-8";
/* CSS Document */


/*=================================
   bace
  =================================*/
html{
  font-size: 62.5%;
}
body{
  color: #171621;
  font-size: 1.5rem;
  line-height: 1.8em;
  font-feature-settings: "palt";
  letter-spacing: -0.03em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;	
  margin:0;	
}
*{
 box-sizing: border-box;
}



/*
明朝
.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 200~900;
  font-style: normal;
}


ゴシック
.sans-serif-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

英文
.libre-caslon-text {
  font-family: "Libre Caslon Text", serif;
  font-optical-sizing: auto;
  font-weight: 400,700;
  font-style: normal;
}


*/



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

footer a:hover {
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  opacity: 0.6;
}



/*=================================
   common
  =================================*/
/*  flexbox
-------------------------*/
.flexbox {
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: justify;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}



.flexbox-w {
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: justify;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.s-between{
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}


.h-center{
 align-items: center;
}

.h-top{
 align-items: flex-start;
}



/*  float
-------------------------*/
.float-right{
  float: right;
}
.float-right::after{
  clear: both;
}
.float-left{
  float: left;
}
.float-left::after{
  clear: both;
}


	
	
/*=================================
 * media (sp)
  =================================*/
@media screen and (max-width:560px){
  /*=================================
     bace (sp)
    =================================*/
  body{
    font-size: 1.7rem;
    line-height: 1.7em;
  }

  /*=================================
     common (sp)
    =================================*/
	
  /*  flexbox
  -------------------------*/
  .flexbox {
    display: block;
  }
	
	
  }

/* 電話リンク非表示
----------------------------------*/

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a[href^="tel:"] {
	text-decoration: none;
}

/*  inner
-------------------------*/
.inner{
	width: 90%;
	margin:auto;
}

@media screen and (min-width: 1140px) {
.inner{
	width: 1100px;
}	
	
	
}




/*=================================
   footer
  =================================*/
footer{
	margin-bottom: 10px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
}

#footer{
	clear:both;
	padding:5em 0px 3em;
	margin-top:80px;
	background-color: #F5F5F5;
}

#footer h3{
	font-size: 16px;
	margin-bottom: 10px;
}

footer .footer_flexbox{
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: justify;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;	
}


footer .footer_logoarea{
	vertical-align: top;
	flex: 1;
}

footer .footer_logoarea h2{
	font-size: 1.2em;
}

footer .footer_list{
	flex: 3;
}

footer .footer_list>li{
	display: inline-block;
	vertical-align: top;
	margin:0 20px 0 0;
	width: 250px;
}

footer .footer_list>li ul li{
	display: block;
	margin: 0px auto 10px;	
}



.copyright{
	text-align: center;
	font-size: 11px;
	width: 100%;
	padding: 1em;
	margin-top: 1em;
}




@media screen and (max-width: 1140px) {
	
footer .footer_flexbox{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}	
	
footer .footer_list{
	margin:30px auto;
}
	
footer .footer_list>li{
	display: inline-block;
	vertical-align: top;
	margin:0 20px 0;
	width: auto;
}
		
	
}

@media screen and (max-width: 560px) {
	
footer{
	margin-bottom: 0px;
	background: #fff;
	padding-top: 50px;
}
	
#footer{
	clear:both;
	margin-top:0px;	
}	
	
footer .footer_logoarea{
	vertical-align: top;
	width: 100%;
}
	
footer .footer_list{
	margin:0px auto 0;
}
	
footer .footer_list>li{
	display: inline-block;
	vertical-align: top;
	margin:0 0px 20px;
	width: auto;
}
	
.copyright{
	text-align: left;
	font-size: 11px;
	width: 90%;
	padding: 0em;
	margin: 0em auto;
}	
	
}



/*=================================
   headerここから
  =================================*/
 header {
 	background: #fff;
 }
 

/*=================================
   ローディング画面のベース
=================================*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

/*=================================
   ローディングアニメーション
=================================*/
.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

/*=================================
   ローディングロゴ
=================================*/
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-animation img {
  width: 230px; /* ロゴのサイズ */
  height: auto;
}

/*=================================
   ローディング線のアニメーション
=================================*/
.loading-line {
  display: block;
  margin-top: 20px;        /* ロゴとの間隔 */
  width: 0;                /* 初期はゼロ幅 */
  height: 1px;
  background-color: #000;
  overflow: hidden;
}

.loading-line.animate {
  animation: lineExpand 1.5s ease-in-out forwards;
}

@keyframes lineExpand {
  0% {
    width: 0;
  }
  100% {
    width: 100vw; /* 画面端から端まで */
  }
}


/*=================================
   common(page-title)
  =================================*/
.common_title{
	text-align: center;
}

.common_title a{
	color: #171621;
}

.common_title h2 {
  position: relative;
  display: inline-block;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1rem;
}

.common_title.lan_en h2 {
  font-size: 32px;
  font-family: "Libre Caslon Text", serif;
}


.common_title.lan_jp h2 {
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
}



	
	
@media screen and (max-width:560px){

.common_title h1 {
    font-size: 27px;
	width: 90%;
}

.common_title h2 {
    font-size: 27px;
    line-height: 1.5;	
}


	
		

}








/*=================================
   top-main-images
  =================================*/
/*バックグランドの画像固定*/
.parallax_content{
  position: relative;	
  min-height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  -webkit-overflow-scrolling: touch;
}


/*ファーストビュー*/	
.parallax_content.background-1 {
  position: relative;
  overflow: hidden;	
min-height: 100vh; /* 画面全体 */	
}

/*セカンドビュー*/	
.parallax_content.background-2 {
  background-image: url(../images/second_view.jpg);
  background-size:cover;
  background-repeat: no-repeat;
}

/* ファーストビューとセカンドビューに黒フィルタ */ 
.parallax_content.background-1::before,
.parallax_content.background-2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* inner（テキスト部分）はフィルタより上に表示 */
.parallax_content .inner {
  position: relative;
  z-index: 2;
}

/* innerを前面に出す */
.parallax_content .inner {
  position: relative;
  z-index: 1;
  color: #fff;
}

.parallax_content.background-2 {
  background-attachment: fixed; /* 背景固定 */
  background-size: cover;
  background-position: center top;
}

@media screen and (max-width:560px){
	
.parallax_content.background-2 {
  background-image: initial;
}	
	
/* 擬似的固定 */
.parallax_content.background-2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.parallax_content.background-2::before {
  content: "";
  position: fixed;
  z-index: initial;
  background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url(../images/second_view.jpg) center/cover no-repeat;
  z-index: -1;
  width: 100%; 
  height: 100vh;
  transform: translateZ(0); /* iOSでの拡大バグを軽減 */
  backface-visibility: hidden; /* さらに補強 */	
}


.parallax_content{
  background-attachment: initial; /*iphon対応*/
}
	
.parallax_content.background-2 {
  background-attachment: initial; /*iphon対応*/
}
		
}	


/* 中央寄せ用ラッパー（ファーストビュー） */
.hero-text {
  position: relative;
  z-index: 2; /* 動画より上に配置 */
  display: flex;
  flex-direction: column; /* 縦並び */
  justify-content: center; /* 縦方向中央 */
  align-items: center;     /* 横方向中央 */
  height: 100vh; /* 全画面高さでセンター寄せ */
  text-align: center;
  color: #fff;
}

/* h1, h2 の調整 */
.hero-text h1 {
  font-size: 16px;
  margin: 0 0;
  line-height: 1.3;
}

.hero-text h1 span{
  font-size: 4.5vw;
  margin: 0 0 1rem;
  letter-spacing: 1px;
}

.hero-text h2 {
  font-size: 1.8vw;
  margin: 20px auto 0;
  letter-spacing: 1px;	
}

.hero-text2 {
  position: relative;
  z-index: 2; 
  display: flex;
  flex-direction: column; /* 縦並び */
  justify-content: center; /* 縦方向中央 */
  align-items: center;     /* 横方向中央 */
  height: 100vh; /* 全画面高さでセンター寄せ */
  max-width: 600px;
  color: #fff;
  margin: auto;
}

.hero-text2 h2 {
  font-size: 32px;
  margin: 0 0 5rem;
  text-align: center;
  letter-spacing: 1px;
}

.hero-text2 p {
  font-size: 20px;
  margin: 0 0 1rem;
  text-align: left;
  line-height: 2.2;
  letter-spacing: 1.3px;
}


@media screen and (max-width:768px){

.hero-text h1 {
  font-size: 14px;
  margin: 0 0;
  line-height: 1.3;
}
	
.hero-text h1 span{
  font-size: 28px;
  margin: 0 0 1rem;
}

.hero-text h2 {
  font-size: 18px;
  margin: 20px auto 0;
  letter-spacing: 1px;	
}
	
.hero-text2 h2 {
  font-size: 24px;
  margin: 0 0 5rem;
}
	
.hero-text2 p {
  font-size: 16px;
  margin: 0 auto 1rem;
  text-align: left;
  line-height: 2.2;
  letter-spacing: initial;
  text-align: justify;
  text-justify: inter-ideograph;	
}	
	
}	


/* フワッと */	
.fade-in-text {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.fade-in-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* メイン背景 */
.main-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.main-bg .swiper_top {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;  /* 幅を画面いっぱい */
  height: 100vh; /* 高さを画面いっぱい */
  min-width: 177.78vh;  /*高さ100%に合わせた幅の最小値（16:9） */
  min-height: 56.25vw;   /*幅100%に合わせた高さの最小値（16:9） */
  transform: translate(-50%, -50%);
  pointer-events: none;
}


.main-bg .slide-img {
  width: 100%;
  /*height: 100vh;*/
  height: 100%;	
  overflow: hidden;
}

.main-bg .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を天地左右余白なし */
  object-position: center;
}

@media screen and (max-width: 560px) {
		
.main-bg .swiper_top {
  min-width: 133.33vh; /* 高さ100%に合わせた幅の最小値（4:3） */
  min-height: 75vw;    /* 幅100%に合わせた高さの最小値（4:3） */
}
	
}	


/* ズームアニメーション */
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoom-in 20s linear 0s 1 normal both;  /*linear　最初から最後まで等速*/
}

@media screen and (max-width: 1260px) {
	
  @keyframes zoom-in {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.3);
    }
  }
	
}

@media screen and (max-width: 768px) {
	
  @keyframes zoom-in {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.3);
    }
  }
	
}


/*=================================
   スクロールダウン
  =================================*/
/* スクロールダウンテキスト */
.scrolldown-text {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 90px;
  color: #fff;
  font-size: 12px;
  font-family: serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3; /* テキストを前面に */
}

/* スクロールライン */
.scrolldown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
  z-index: 3;
}

.scrolldown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 80px;
  background: #fff;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: circlemove 3s ease-in-out infinite,
             cirlemovehide 3s ease-out infinite;
}

/* アニメーション */
@keyframes circlemove {
  0% { bottom: 70px; }
  100% { bottom: 0px; }
}
@keyframes cirlemovehide {
  0% { opacity: 0; }
  50% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0.3; }
}






/*=================================
   共通 （hover拡大）
  =================================*/

.hover-img {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  line-height: 0;/* 入れないとはみ出る */
}
.hover-img img {
  height: auto;
  transition: transform .6s ease;/* ゆっくり変化 */
  width: 100%;
}
.hover-img:hover img {
  transform: scale(1.1);/* 拡大 */
}


	

/*=================================
   施工内容
  =================================*/
.home02{
	padding: 0px 0 30px;
}


@media screen and (max-width: 560px) {
	
.home02 h2{
	text-align: center;
	margin: -10px auto 20px;
}	
	
}

/*=================================
   home02 (施工内容一覧)
  =================================*/
.home02 .work-list {
	margin-bottom: 100px;
}

.home02 .work-list .thumbnail{
	position: relative;
	top:80px;
	padding-bottom: 20px;
}

.home02 .work-list .thumbnail img{
	margin-top: 0px;

}

.home02 .work-list h2{
	position:absolute;
	padding: 3px 10px 3px;
	top:-60px;
	left:-5px;
	font-size: 24px;
	line-height: 1.2;
}

.home02 .work-list p.text_area{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 2;
	margin-top: 30px;
	letter-spacing: 1px;
}








@media screen and (max-width: 560px) {
	
.home02 .work-list h2{
	position:absolute;
	padding: 3px 10px 3px;
	top:-40px;
	left:-5px;
	font-size: 20px;
	line-height: 1.2;
}

.home02 .work-list p.text_area{
	line-height: 1.8;
	margin-top: 20px;
}	

}	



/*=================================
   共通 swiper
  =================================*/

/* 前への矢印 */
.swiper-button-prev {
  left: -20px;
  top:48%;	
}

/* 次への矢印 */
.swiper-button-next {
  right: -30px;
  top:48%;	
}

.swiper-button-next::before{ /* 次へ：背景の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 30px; /* 横幅 */
  height: 30px; /* 高さ */
  border-radius: 50%; /* 角の丸み */
  background: #535048;
}
 
.swiper-button-next::after { /* 次へ：くの字の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}


.swiper-button-prev::before{ /* 前へ：背景の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -15px;
  width: 30px; /* 横幅 */
  height: 30px; /* 高さ */
  border-radius: 50%; /* 角の丸み */
  background: #535048;
}

.swiper-button-prev::after{ /* 前へ：くの字の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
}


/* 親は透過しない */
.swiper-button-prev[aria-disabled="true"] {
  opacity: 1 !important;
}
/* 前へ・次へボタンが無効のとき（最初の「前へ」を薄くする） */
.swiper-button-prev[aria-disabled="true"]::before,
.swiper-button-prev[aria-disabled="true"]::after{
  opacity: 0.4!important;
  pointer-events: none;
}



@media screen and (max-width: 768px) {
	
.swiper-button-prev {
  left: -15px!important;
}
/* 次への矢印 */
.swiper-button-next {
  right: -30px;
}
	
.swiper-button-next::before{ /* 次へ：背景の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 26px; /* 横幅 */
  height: 26px; /* 高さ */
  border-radius: 50%;
}
 
.swiper-button-next::after { /* 次へ：くの字の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 8px;
  height: 8px;
}


.swiper-button-prev::before{ /* 前へ：背景の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -15px;
  width: 26px; /* 横幅 */
  height: 26px; /* 高さ */
  border-radius: 50%;
}

.swiper-button-prev::after{ /* 前へ：くの字の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -4px;
  width: 8px;
  height: 8px;
}		
	
}	





/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  /*bottom: 0px;*/
  position: relative;  /* デフォルトabsoluteを解除 */
  margin-top: 20px;    /* 画像との間に余白 */
  text-align: center;
}


.swiper-pagination-bullet {
  background-color: #d9d9d9 ;	
  opacity: 1;
}

.swiper-pagination-bullet-active {
  /*アクティブなドットの透過度を1にする*/
  /*	
  width: 12px;
  height: 12px;
  */
  background:#535048;	
  transition: 1s;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
}
.swiper {
 /* max-width: 500px;*/
}
.swiper-slide img {
  height: auto;
  width: 100%;
}





/*=================================
   swiper_work(施工内容スライダー)
  =================================*/
.container_work {
  margin:80px auto 20px;
  width: 96%;
  position: relative;
}


@media screen and (max-width: 560px) {
	
.container_work {
  margin:20px auto 0;	
  width: 88%;
  position: relative;
}
	
}

/*=================================
   swiper_work(施工内容スライダー)追加
  =================================*/

.swiper_work {
  position: relative; /* 必須 */
  padding-top: 40px;  /* ページネーション分の余白 */
}

/* ページネーションを上に配置 */
.swiper_work .swiper-pagination {
  position: absolute;
  top: 0px; 
  left: 0;	
  width: 100%;
  text-align: left;
  z-index: 10;
  overflow: visible;
  display: flex;
  justify-content: space-between;
  gap: 7px;
}


/* クリック領域を広げる */
.swiper_work .swiper-pagination-bullet {
  flex: 1; 
  height: 50px;          /* 数字も含めたクリック領域 */
  background: transparent; /* 本体は透明 */
  position: relative;
  opacity: 1;
  cursor: pointer;
  display: flex;
  align-items: flex-end; /* 下に棒を配置 */
  justify-content: center;
}

/* 棒部分を擬似要素で表現 */
.swiper_work .swiper-pagination-bullet::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #D9D9D9;
}

.swiper_work .swiper-pagination-bullet-active::after {
  background: #535048;
}

/* 数字 */
.swiper_work .swiper-pagination-bullet .bullet-number {
  position: absolute;
  top: -40;   
  left: 20px;
  transform: translateX(-50%);
  font-size: 26px;
  color: #171621;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: "Libre Caslon Text", serif;
  margin-bottom: 10px;
}


/* クリック領域（数字と下線のみ） 
.swiper_work .swiper-pagination-bullet {
  flex: 1; 
  height: 3px;
  background: #D9D9D9;
  border-radius: 0;
  position: relative;
  opacity: 1;
}


.swiper_work .swiper-pagination-bullet-active {
  background: #535048;
  opacity: 1;
}

/* 数字をバーの上に配置 
.swiper_work .swiper-pagination-bullet .bullet-number {
  position: absolute;
  top: -42px; /* 長方形の上に配置 
  left: 0%;
  transform: translateX(-0%);
  font-size: 26px;
  color: #000;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: "Libre Caslon Text", serif;
}

*/

@media screen and (max-width: 560px) {

.swiper_work {
  position: relative; /* 必須 */
  padding-top: 40px;  /* ページネーション分の余白 */
}	
	
.swiper_work .swiper-pagination {
  position: absolute;
  top: 40px;  /* ページネーションを下げる */
  left: 0;	
  overflow: visible;
  gap: 3px; 
}
	
.swiper_work .swiper-pagination-bullet {
  flex: 1; 
  height: 40px;          /* 数字も含めたクリック領域 */
  background: transparent; /* 本体は透明 */
  position: relative;
  opacity: 1;
  cursor: pointer;
  display: flex;
  align-items: flex-end; /* 下に棒を配置 */
  justify-content: center;
}	
	
/* 数字をバーの上に配置 */
.swiper_work .swiper-pagination-bullet .bullet-number {
  position: absolute;
  top: 0px; /* 長方形の上に配置 */
  left: 0%;
  transform: translateX(-0%);
  font-size: 21px;
  color: #171621;
}	
	
}

/*=================================
   swiper1成り行き
  =================================*/
.swiper1 .swiper-wrapper{
  margin-bottom: 30px;
	}


.swiper1 h3{
  position: absolute;
  font-size: 18px;
  text-align: left;
  left: 20px;
  top:20px;	
  margin:auto;
  z-index: 1;
  font-family: "Libre Caslon Text", serif;
  letter-spacing: 0.1rem;	
	}

.swiper1 {
  padding-right: 0px;      /* 右側に余白を作って次の画像を見せる */
}

.swiper1 .swiper-slide {
  width: 500px;             /* スライドの横幅を固定 */
  flex-shrink: 0;
  background: #f5f5f5;
  margin: auto;
  padding: 60px 20px 20px 20px;
}

.swiper1 img {
  width: 100%;
}




@media screen and (max-width: 560px) {
	
.swiper1{
	width: 94%;
	padding-bottom: 30px;
}
	
.swiper1 .swiper-slide {
  width: 100%;
  padding: 50px 20px 15px 20px;
}
	

.swiper1 h3{
  font-size: 16px;
  text-align: left;
  left: 20px;
  top:15px;	
  margin:auto;
  letter-spacing: 0.1rem;	
	}	
	
}





/*=================================
   お客様の声
  =================================*/
.home03{
	margin-top: 50px;
	padding: 80px 0 10px;
}

.home03 .icon {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
}
.home03 .icon::before {
    content: url(../images/icon2.svg);
    display: inline-block;
    vertical-align: top;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
	margin-right: 5px;
	margin-top: 3px;

}

.home03 h3 {
    position: relative;
    padding: 1rem 0;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid;
    font-size: 20px;
    background: #fff;
}

.home03 h3:before,
.home03 h3:after {
    position: absolute;
    top: 100%; 
    left: 60px; 
    content: "";
    height: 0;
    width: 0;
}

.home03 h3:before {
    border: 8px solid transparent;
    border-top-color: black; 
    margin-left: -8px; 
}

.home03 h3:after {
    border: 6.5px solid transparent;
    border-top-color: #fff;
    margin-left: -6.5px;
}


.home03 p {
    font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	margin-top: 1em;
	letter-spacing: 1px;
}

@media screen and (max-width: 560px) {
	
.home03{
	margin-top: 0px;
	padding: 50px 0 10px;
}	
	
}	

/*=================================
  一覧2列
  =================================*/
.column_2 {
  	column-gap: 3%;
	margin:50px auto; 
}

.column_2 li {
	width: 47%;
	margin-bottom: 3%;
	background: #fff;
	padding: 2em;
}



@media screen and (max-width:560px){
.column_2 {
  	column-gap: 3%;
	margin:30px auto; 
}
	
.column_2 li {
	width: 100%;
	margin-bottom: 20px;
}
	
	
}


/*=================================
   アクセス
  =================================*/
.home04{
	margin: 50px auto 70px;
	padding: 80px 0 50px;
}

.home04 ul{
  	column-gap: 3%;
	margin:50px auto; 
}

.home04 li:nth-child(1) {
	flex: 2;
	margin-bottom: 20px;
}
.home04 li:nth-child(2) {
	flex: 1;
	font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width:560px){

.home04{
	margin: 0px auto 0px;
	padding: 50px 0 10px;
}
	
}	


/*=================================
   共通 （横スクロール非表示）
  =================================*/
.container_no_overflow{
  overflow-x: hidden;
}




/*=================================
   homeと共通　ここまで
  =================================*/





/*-----------------------------------------------
グーグルマップ☆追加
----------------------------------------------- */
.g-map{
  position:relative;
	/*
  width:100%;
  padding-top:56.25%;
	*/
}

.g-map iframe{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:400px;
}

@media (max-width:560px){

.g-map iframe{
  position:initial;
  top:0;
  right:0;
  width:100%;
  height:200px;
}
	
}






/*=================================
ここまで
  =================================*/

	
	

/*=================================
   共通 
  =================================*/

.parts_center {text-align: center!important;}
.parts_right {text-align: right!important; }
.parts_left {text-align: left !important;  }
.pc-center{text-align: center;   }
.pc-right{text-align: right;   }

.aligncenter {
	text-align: center!important;
	margin: auto;
}



.space-top10{margin-top: 10px!important;}
.space-top20{margin-top: 20px!important;}
.space-top30{margin-top: 30px!important;}
.space-top50{margin-top: 50px!important;}
.space-top80{margin-top: 80px!important;}

.space-bottom1{margin-bottom: 1em!important;}
.space-bottom2{margin-bottom: 2em!important;}
.space-bottom3{margin-bottom: 3em!important;}




.bg-color{
	background-color: #EFEBE7;
}



.text-common{
	line-height: 1.9;
}

.text-line_height1_5{
	line-height: 1.5;
}

.text_justify_pcsp{
	text-align: justify;
	text-justify: inter-ideograph;
}

.text-size1_2{font-size: 1.2em;}
.text-size13{font-size: 13px;}
.text-size15{font-size: 15px;}
.text-size17{font-size: 17px;}
.text-size19{font-size: 19px;}
.text-size21{font-size: 21px;}
.text-size_s{font-size: 0.85em;}
.text-size_ss{font-size: 0.75em;}



.kome{
padding-left:1em;
text-indent:-1em;
}



@media only screen and (max-width: 560px) {
	
section{
  background: #ffffff;
}	
.bg-white{
	background-color: #fff;
	padding: 50px auto;
}

.pc-center{
	text-align:left;
	}
	
.pc-right{
	text-align:left;
	}
	
.sp-center{
	text-align:center;
	}	
	
.postWrap{
	padding:0px 10px;
	}
	
.text_justify{
	text-align: justify;
	text-justify: inter-ideograph;
}
	
	
}



.clears{clear:both;}

.clearfix { display: inline-block; }

/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.display-pc { display: block !important; }
.display-sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 560px) {
.display-pc { display: none !important; }
.display-sp { display: block !important; }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.display-pc834 { display: block !important; }
.display-sp834 { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 834px) {
.display-pc834 { display: none !important; }
.display-sp834 { display: block !important; }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.display-pc1000 { display: block !important; }
.display-sp1000 { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 1000px) {
.display-pc1000 { display: none !important; }
.display-sp1000 { display: block !important; }
}

	

/* pc改行<br class="br-pc">,　sp改行<br class="br-sp">  */
@media screen and (min-width: 1024px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 1024px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

/* pc改行<br class="br-pc834">,　sp改行<br class="br-sp834">  */
@media screen and (min-width: 834px){	
  .br-pc834 { display:block; }
  .br-sp834 { display:none; }
}
@media screen and (max-width: 834px){	
  .br-pc834 { display:none; }
  .br-sp834 { display:block; }
}

/* pc改行<br class="br-pc768">,　sp改行<br class="br-sp768">  */
@media screen and (min-width: 768px){	
  .br-pc768 { display:block; }
  .br-sp768 { display:none; }
}
@media screen and (max-width: 768px){	
  .br-pc768 { display:none; }
  .br-sp768 { display:block; }
}

/* pc改行<br class="br-pc560">,　sp改行<br class="br-sp560">  */
@media screen and (min-width: 560px){	
  .br-pc560 { display:block; }
  .br-sp560 { display:none; }
}
@media screen and (max-width: 560px){	
  .br-pc560 { display:none; }
  .br-sp560 { display:block; }
}

@media screen and (max-width: 560px){	
.break-box {
   display: flex;            /*flexコンテナ化 */
   flex-direction: column;  /*縦向きに配置 */
}

.turns1 { order: 1; }   /* 配置順を1番目に */		
.turns2 { order: 2; }   /* 配置順を2番目に */
.turns3 { order: 3; }   /* 配置順を2番目に */		
	
}




/*=================================
   メールフォーム修正 
  =================================*/
/* メールフォームでレスポンシブのサイズオーバー修正*/
@media screen and (max-width: 560px){
.row-value__option-list {
	margin: 0px!important;
	padding: 0px!important;
	}
}



.main-content .number{
	font-family: "Noto Serif JP", serif;
	font-size: 46px;
	letter-spacing:0;
}

.main-content .row, .form-area__privacy, .form-area__confirm, .form-area__mail{
	font-family: "Noto Sans JP", sans-serif;
}

.main-content .label{
	font-family: "Libre Caslon Text", serif;
	font-size: 26px;
	letter-spacing:0;
	font-weight: 400!important;
}

.main-content .en{
	font-family: "Libre Caslon Text", serif;
	font-size: 40px;
	letter-spacing:0;
	font-weight: 400!important; /*ズレ修正*/
}


.step-img{
max-width:904px;
margin:0 auto 82px;
text-align:center;
position:relative;
z-index:1;}

@media (max-width:767px){
.form-area__fields .step-img{
margin-bottom:54px;
}
}

.form-area__fields .step-img::before{
content:"";position:absolute;background:linear-gradient(to right,#ded4c6 30%,#fff 70%);
	width:100%;
	height:94%!important;
	top:0;left:0;
	z-index:-1;
}
.c-form--step03 .form-area__fields .step-img::before{
background:#ded4c6;
}
.form-area__fields .step-img img{
width:100%;max-width:540px;
}

@media (max-width:767px){
	.form-area__fields .step-img img{max-width:304px;
	}
}

