@charset "utf-8";

/*============================
ヘッダー
============================*/
header {
  transition: transform 0.5s 0.3s, background-color 0.3s;
	position: fixed;
	z-index: 20;
	width: 100%;
}

@media screen and (max-width: 640px) {
  header {
    /* スマホ用の記述 */
  }
}

/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
 */

/* スクロールで表示された状態 */
header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding-bottom: 0.1rem;
}

@media screen and (max-width: 640px) {
  header .logo {
    width: 2.30rem;
    margin: auto;
    padding-top: 0.10rem;
  }
}

header .cont_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .cont_wrap .glo_navi .list {
	display: flex;
	gap: 0.2rem;
}

header .cont_wrap .glo_navi .list .link {
	display: flex;
	align-items: center;
	justify-content: center;
}

/*============================
共通
============================*/
@media screen and (max-width: 640px) {
  main {
    padding-top: 0.60rem;
  }
}

.sec_title {
  font-size: 0.46rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
	.sec_title {
		font-size: 0.3rem;
		margin-bottom: 0.3rem;
	}
}

/* ボタン */
.btn_common a {
  display: block;
  max-width: 3rem;
  width: 100%;
  height: 100%;
  background: #51b6f1;
  color: #fff;
  border-radius: 0.1rem;
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.2rem;
  font-weight: bold;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}

.btn_common a:hover {
  opacity: 0.7;
}

.btn_common a::after {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.16rem;
  background: url(../img/btn_arrow_wh.svg) no-repeat center center / cover;
  position: absolute;
  right: 0.15rem;
  top: 50%;
  transform: translateY(-50%);
}
/*============================
MV
============================*/
#mv {
  width: 100%;
  height: 7rem;
  /* overflow: hidden; */
  position: relative;
	margin-top: 0.9rem;
}
@media screen and (max-width: 640px) {
  #mv {
    width: 100%;
    height: 80svh;
    margin-top: 0;
  }
}

#mv .mv-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

#mv .mv-slider .slick-slide {
  height: 7rem;
}
@media screen and (max-width: 640px) {
  #mv .mv-slider .slick-slide {
    height: 80svh;
  }
}

#mv .mv-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mv .lead {
  max-width: 7rem;
  position: absolute;
  top: 50%;
  left: calc((100% - 12rem) / 2);
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 640px) {
  #mv .lead {
    width: 100%;
    max-width: calc(100% - 0.50rem);
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
  }
}

#mv .deco_01 {
  position: absolute;
  top: 0;
  left: -30%;
  opacity: 0.8;
}
@media screen and (max-width: 640px) {
  #mv .deco_01 {
		top: 0rem;
		left: -1.5rem;
		width: 3rem;
  }
}

#mv .deco_02 {
  position: absolute;
  bottom: -4rem;
  right: -30%;
  opacity: 0.8;
  z-index: 5;
}
@media screen and (max-width: 640px) {
  #mv .deco_02 {
    bottom: -0.6rem;
    right: -1.2rem;
    width: 2rem;
    z-index: 1;
  }
}

#mv .list {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  max-width: 7.5rem;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 640px) {
  #mv .list {
    display: none;
  }
}

#mv .list .item {
}

#mv .sp_list_wrap {
  position: absolute;
  width: calc(100% - 0.20rem);
  left: 0.10rem;
  bottom: -0.55rem;
  z-index: 2;
}

/*============================
リード
============================*/
#lead {
  width: 100%;
  height: 100%;
  background: url(../img/lead_bg.png) no-repeat center center / cover;
  padding: 1.4rem 0 0.5rem;
}
@media screen and (max-width: 640px) {
  #lead {
    width: 100%;
    height: 100%;
    background: #B2C9D9 url(../img/lead_bg.png) no-repeat 60% bottom / auto 80%;
    padding: 0.8rem 0 0.6rem;
  }
}

#lead .title {
  max-width: 5.55rem;
  margin-left: -0.35rem;
}
@media screen and (max-width: 640px) {
  #lead .title {
    max-width: 3.5rem;
		margin-left: -0.2rem;
  }
}

#lead .text {
  font-size: 0.18rem;
  line-height: 2;
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 640px) {
  #lead .text {
    font-size: 0.15rem;
    letter-spacing: 0;
    font-weight: 500;
    text-align: justify;
  }
}

#lead .note {
  font-size: 0.13rem;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  #lead .note {
    font-size: 0.12rem;
  }
}

/*============================
もし
============================*/
#if {
  width: 100%;
}

#if .deco_01 {
  position: absolute;
  top: 1rem;
  left: -1rem;
}
@media screen and (max-width: 640px) {
	#if .deco_01 {
		top: 0.30rem;
		left: -1.2rem;
		width: 2rem;
	}
}

#if .deco_02 {
  position: absolute;
  bottom: 5rem;
  right: -1.5rem;
}
@media screen and (max-width: 640px) {
	#if .deco_02 {
    bottom: 1.5rem;
    right: -1.3rem;
    width: 2rem;
	}
}

#if ._top_cont {
  position: relative;
  padding-bottom: 0.6rem;
}

#if ._top_cont::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/if_top_cont_bg.png) no-repeat center center / cover;
  z-index: 1;
  width: 100%;
  height: 75%;
  z-index: -1;
}

#if .title {
  max-width: 6.9rem;
  margin: 0 auto;
  padding-top: 0.65rem;
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 640px) {
  #if .title {
    max-width: 2.9rem;
  }
}

#if .list {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
	flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
	#if .list {
		gap: 0.2rem;
	}
}

#if .list .item {
  width: 4.5rem;
}
@media screen and (max-width: 640px) {
	#if .list .item {
		width: 100%;
	}
}

#if .irai_wrap {
  width: 100%;
}

#if .irai_title {
  max-width: 7.9rem;
  margin: 0.3rem auto 0;
}

#if .irai_wrap .ph_wrap {
  max-width: 9.5rem;
  margin: 0.3rem auto 0;
}
@media screen and (max-width: 640px) {
	#if .irai_wrap .ph_wrap {
		overflow-x: auto;
		overflow-y: hidden;
		width: 100%;
		margin: 0.3rem -0.2rem 0;
		padding: 0 0.2rem;
		-webkit-overflow-scrolling: touch;
	}
	#if .irai_wrap .ph_wrap img {
		width: auto;
		height: auto;
		max-width: 8rem;
		min-width: 100%;
	}
}

#if .bottom_cont .ph_wrap {
  width: 100%;
}
@media screen and (max-width: 640px) {
  #if .bottom_cont .ph_wrap {
    position: relative;
  }
}

/*============================
施工実績
============================*/
#jisseki {
  width: 100%;
  padding: 1rem 0;
}
@media screen and (max-width: 640px) {
  #jisseki {
    padding: 0.5rem 0;
  }
}

#jisseki .tab_list {
  display: flex;
  justify-content: center;
  gap: 0.1rem;
  border-bottom: 3px solid #51b6f1;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_list {
		gap: 0.05rem;
		border-bottom: 2px solid #51b6f1;
	}
}

#jisseki .tab_item {
  width: 2.5rem;
  font-size: 0.2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_item {
		width: 32%;
		font-size: 0.13rem;
	}
}

#jisseki .tab_item a {
  border: 1px solid #51b6f1;
  color: #51b6f1;
  background: #fff;
  display: block;
  padding: 0.2rem 0;
  border-radius: 0.2rem 0.2rem 0 0;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_item a {
		padding: 0.1rem 0;
		border-radius: 0.1rem 0.1rem 0 0;
	}
}

#jisseki .tab_item:hover a {
  color: #fff;
  background: #51b6f1;
}

#jisseki .tab_item.active a {
  color: #fff;
  background: #51b6f1;
}

#jisseki .tab_item.active {
  background: #fff;
}

#jisseki .tab_cont {
  display: none;
}

#jisseki .tab_cont.active {
  display: block;
}

#jisseki .tab_cont .list {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}

#jisseki .tab_cont .list .item {
  width: 30%;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_cont .list .item {
		width: 100%;
		margin-bottom: 0.5rem;
	}
}

#jisseki .tab_cont .list .item .ph_wrap {
  width: 100%;
  height: 2.4rem;
  margin-bottom: 0.2rem;
}

#jisseki .tab_cont .list .item .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#jisseki .tab_cont .list .item .text_wrap {
  width: 100%;
}

#jisseki .tab_cont .list .item .text_wrap .title {
  font-size: 0.2rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_cont .list .item .text_wrap .title {
		font-size: 0.18rem;
	}
}

#jisseki .tab_cont .list .item .text_wrap .title span {
  font-size: 0.16rem;
  display: inline-block;
  margin-left: 0.15rem;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_cont .list .item .text_wrap .title span {
		font-size: 0.14rem;
	}
}

#jisseki .tab_cont .list .item .text_wrap .price_wrap {
  display: flex;
  justify-content: space-between;
}

#jisseki .tab_cont .list .item .text_wrap .price_wrap {
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
}

#jisseki .tab_cont .list .item .text_wrap .price_wrap .tasha {
  display: flex;
  align-items: baseline;
}

#jisseki .tab_cont .list .item .text_wrap .price_wrap .tasha::after {
  content: "";
  display: block;
  width: 7px;
  height: 17px;
  background: url(../img/jisseki_arrow.svg) no-repeat center center / cover;
  margin-left: 0.1rem;
}

@media screen and (max-width: 640px) {
	#jisseki .tab_cont .list .item .text_wrap .price_wrap .tasha::after {
		margin-left: 0.22rem;
	}
}


#jisseki .tab_cont .list .item .text_wrap .price_wrap .tasha .num {
  font-size: 0.17rem;
  font-weight: 600;
  padding: 0 0.05rem;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_cont .list .item .text_wrap .price_wrap .tasha .num {
		font-size: 0.18rem;
	}
}

#jisseki .tab_cont .list .item .text_wrap .price_wrap .tasha .note {
  font-size: 0.15rem;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_cont .list .item .text_wrap .price_wrap .tasha .note {
		font-size: 0.13rem;
	}
}

#jisseki .tab_cont .list .item .text_wrap .price_wrap .jisha {
  display: flex;
  align-items: center;
}

#jisseki .tab_cont .list .item .text_wrap .price_wrap .jisha .name {
  font-size: 0.13rem;
  font-weight: 700;
  color: #fff;
  background: #0220a4;
  box-sizing: border-box;
  padding: 0.05rem 0.1rem 0.07rem;
  border-radius: 0.05rem;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_cont .list .item .text_wrap .price_wrap .jisha .name {
		font-size: 0.13rem;
		padding: 0.04rem 0.1rem 0.06rem;
	}
}

#jisseki .tab_cont .list .item .text_wrap .price_wrap .jisha .num {
  font-size: 0.35rem;
  font-weight: 600;
  padding: 0 0 0 0.10rem;
  color: #0220a4;
  position: relative;
  top: -0.02rem;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_cont .list .item .text_wrap .price_wrap .jisha .num {
		font-size: 0.3rem;
	}
}

#jisseki .tab_cont .list .item .text_wrap .price_wrap .jisha .num.oku {
  font-size: 0.24rem;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_cont .list .item .text_wrap .price_wrap .jisha .num.oku {
		font-size: 0.2rem;
	}
}

#jisseki .tab_cont .list .item .text_wrap .price_wrap .jisha .note {
  font-size: 0.18rem;
  font-weight: 700;
  color: #0220a4;
  padding-top: 0.1rem;
  padding-left: 0.03rem;
}
@media screen and (max-width: 640px) {
	#jisseki .tab_cont .list .item .text_wrap .price_wrap .jisha .note {
		font-size: 0.15rem;
	}
}

/*============================
CTA
============================*/
.cta {
  width: 100%;
  background: #cae9fb;
  padding: 0.6rem 0;
}
@media screen and (max-width: 640px) {
	.cta {
		padding: 0.2rem 0 0.5rem;
	}
}
.cta .deco_01 {
  position: absolute;
  top: -0.3rem;
  left: -2rem;
}
@media screen and (max-width: 640px) {
	.cta .deco_01 {
    top: -0.2rem;
    left: -1.5rem;
    width: 2rem;
	}
}

.cta .deco_02 {
  position: absolute;
  bottom: 0.3rem;
  right: -2rem;
	z-index: 5;
}
@media screen and (max-width: 640px) {
	.cta .deco_02 {
		bottom: -0.5rem;
		right: -1rem;
		width: 2rem;
	}
}

.cta .title {
  max-width: 6rem;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .cta .title {
    padding-top: 0.20rem;
  }
}

.cta .list {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 640px) {
	.cta .list {
		flex-wrap: wrap;
    margin-top: 0.30rem;
	}
}
.cta .list .item {
  max-width: 3.8rem;
  width: 100%;
}
@media screen and (max-width: 640px) {
	.cta .list .item {
		max-width: 100%;
	}
}

.cta .list .item .list_title {
  font-size: 0.2rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #000;
  padding-bottom: 0.1rem;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
	.cta .list .item .list_title {
		font-size: 0.20rem;
		margin-bottom: 0.15rem;
	}
}

.cta .list .item .btn {
  width: 100%;
}

.cta .list .item.tel a {
  padding: 0 0.15rem;
  box-sizing: border-box;
  display: inline-block;
  margin-top: 0.15rem;
}
@media screen and (max-width: 640px) {
  .cta .list .item.tel a {
    max-width: 2.50rem;
    display: block;
    margin: 0.15rem auto 0;
  }
}

/*============================
3つの特徴
============================*/
#feature {
  width: 100%;
  padding: 0.6rem 0;
  background: url(../img/feature_bg.jpg) no-repeat center center / cover;
}

#feature .title {
  max-width: 6.4rem;
  margin: 0 auto;
  padding-bottom: 0.8rem;
}
@media screen and (max-width: 640px) {
  #feature .title {
  max-width: 2.30rem;
}
}

#feature .list {
  display: flex;
  justify-content: center;
  gap: 2%;
}

#feature .list .item {
  width: 31%;
  position: relative;
  background: #fff;
  border-radius: 0.1rem;
  padding: 0.5rem 0.15rem 0.4rem;
  box-sizing: border-box;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  max-width: 3.3rem;
  width: 100%;
}
@media screen and (max-width: 640px) {
	#feature .list {
		flex-wrap: wrap;
		width: 100%;
		gap: 0.5rem;
	}
  #feature .list .item {
    padding: 0.4rem 0 0.2rem;
  }
}

#feature .list .item .list_title {
  font-size: 0.28rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
	#feature .list .item .list_title {
		font-size: 0.2rem;
	}
}

#feature .list .item .no {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  #feature .list .item .no {
    width: 0.60rem;
    height: 0.60rem;
    top: -0.3rem;
  }
}

#feature .list .item .ph_wrap {
  width: 100%;
  height: 1.9rem;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
  #feature .list .item .ph_wrap {
    height: 50vw;
    margin-bottom: 0.15rem;
  }
}

#feature .list .item .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#feature .list .item .text {
  font-size: 0.16rem;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 640px) {
	#feature .list .item .text {
		font-size: 0.14rem;
	}
}

/*============================
テキストループ
============================*/
#member {
  position: relative;
  overflow: hidden;
}

.text_loop {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.text_loop_inner {
  display: inline-block;
  position: relative;
}

.text_loop_inner span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 0.5rem;
  color: #cae9fb;
}
@media screen and (max-width: 640px) {
	.text_loop_inner span {
		font-size: 1rem;
	}
}

/*============================
写真ループ
============================*/
#member .ph_loop {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* white-space: nowrap; */
  direction: rtl;
}

/* .ph_loop_inner {
	display: inline-flex;
	gap: 1rem;
	height: 100%;
	white-space: nowrap;
	direction: ltr;
} */

#member .ph_item {
  width: 2rem;
  height: 2.5rem;
  display: inline-block;
}
@media screen and (max-width: 640px) {
	#member .ph_item {
		height: 1.5rem;
	}
}

#member .ph_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#member .slick-initialized .slick-slide {
  padding: 0 0.1rem;
}
@media screen and (max-width: 640px) {
	#member .slick-initialized .slick-slide {
		padding: 0 0.05rem;
	}
}

/*============================
解体までの流れ
============================*/
#flow {
  width: 100%;
  padding: 0.6rem 0;
  background: url(../img/flow_bg.png) no-repeat center center / cover;
  margin-top: 0.2rem;
}
@media screen and (max-width: 640px) {
  #flow {
    padding: 0.5rem 0;
  }
}

#flow .deco_01 {
  position: absolute;
  top: 0.2rem;
  left: -2rem;
}
@media screen and (max-width: 640px) {
	#flow .deco_01 {
    top: -0.2rem;
    left: -1.8rem;
    width: 2.5rem;
	}
	#flow .deco_02 {
		bottom: -0.5rem;
		right: -1rem;
		width: 2rem;
	}
}

#flow .deco_02 {
  position: absolute;
  bottom: -0.5rem;
  right: -1rem;
}


#flow .cont_wrap {
  max-width: 9rem;
  margin: 0 auto;
}

#flow .cont_box {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  align-items: center;
  height: 1.75rem;
  margin-bottom: 0.2rem;
  position: relative;
}
@media screen and (max-width: 640px) {
	#flow .cont_box {
		flex-wrap: wrap;
		height: auto;
		margin-bottom: 0.2rem;
	}
}

#flow .cont_box::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #51b6f1 transparent transparent transparent;
  border-width: 20px 36px 0px 36px;
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 640px) {
  #flow .cont_box::after {
    border-color: #0220a4 transparent transparent transparent;
  }
}

#flow .cont_box:last-child::after {
  content: none;
}

#flow .cont_box .step_box {
  width: 2rem;
  color: #51b6f1;
}
@media screen and (max-width: 640px) {
	#flow .cont_box .step_box {
		width: 100%;
		background: #51b6f1;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0.1rem;
		padding: 0.1rem 0;
		border-radius: 0.1rem 0.1rem 0 0;
	}
}

#flow .cont_box .step_box .step {
  font-size: 0.16rem;
  font-weight: bold;
  text-align: center;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 640px) {
	#flow .cont_box .step_box .step {
		font-size: 0.14rem;
	}
}

#flow .cont_box .step_box .no {
  font-size: 0.52rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.2rem;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 640px) {
	#flow .cont_box .step_box .no {
		font-size: 0.3rem;
		margin-bottom: 0;
	}
}

#flow .cont_box .text_wrap {
  width: calc(100% - 2rem - 2.2rem);
}
@media screen and (max-width: 640px) {
	#flow .cont_box .text_wrap {
		width: 100%;
		padding: 0.15rem;
		box-sizing: border-box;
	}
}

#flow .cont_box .text_wrap .step_title {
  font-size: 0.2rem;
  font-weight: bold;
  /* padding-top: 0.2rem; */
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 640px) {
	#flow .cont_box .text_wrap .step_title {
		font-size: 0.18rem;
	}
}

#flow .cont_box .text_wrap .text {
  font-size: 0.16rem;
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
	#flow .cont_box .text_wrap .text {
		font-size: 0.14rem;
	}
}

#flow .cont_box .text_wrap .btn_wrap {
  display: flex;
  margin-top: 0.1rem;
}
@media screen and (max-width: 640px) {
	#flow .cont_box .text_wrap .btn_wrap {
		justify-content: center;
		flex-wrap: wrap;
		gap: 0.1rem;
	}
}

#flow .cont_box .text_wrap .btn_wrap .btn {
  margin-right: 0.2rem;
}

#flow .cont_box .text_wrap .btn_wrap .contact a {
  width: 2.1rem;
  font-size: 0.18rem;
  padding: 0.15rem 0;
}


#flow .cont_box .text_wrap .btn_wrap .tel a {
  width: 2.1rem;
  font-size: 0.18rem;
  background: #0220a4;
  padding: 0.15rem 0;
}

#flow .cont_box .text_wrap .btn_wrap .tel a::after {
  content: none;
}

#flow .cont_box .ph_wrap {
  width: 2.2rem;
  height: 100%;
}
@media screen and (max-width: 640px) {
	#flow .cont_box .ph_wrap {
		width: 100%;
    height: 55vw;
	}
}

#flow .cont_box .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0.1rem 0.1rem 0;
}
@media screen and (max-width: 640px) {
	#flow .cont_box .ph_wrap img {
		border-radius: 0 0 0.1rem 0.1rem;
	}
}

/*============================
対応エリア
============================*/
#area {
  width: 100%;
  padding: 0.6rem 0;
}

#area .lead_wrap {
  text-align: center;
}

#area .lead {
  text-align: center;
  display: inline-block;
  font-size: 0.27rem;
  font-weight: bold;
  color: #fff;
  background: #51b6f1;
  padding: 0.1rem 0.2rem;
  border-radius: 0.1rem;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
	#area .lead {
		font-size: 0.2rem;
	}
}

#area .lead span {
  font-size: 0.2rem;
}
@media screen and (max-width: 640px) {
	#area .lead span {
		font-size: 0.18rem;
	}
}

#area .ph_wrap {
  text-align: center;
}

/*============================
FAQ
============================*/
#faq {
  width: 100%;
  padding: 0.6rem 0;
  background: url(../img/faq_bg.jpg) no-repeat center center / cover;
}

#faq .cont_wrap {
  max-width: 9rem;
  margin: 0 auto;
}

#faq .cont_box {
  background: #fff;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 640px) {
	#faq .cont_box {
		margin-bottom: 0.2rem;
	}
}
#faq .cont_box .q {
  font-size: 0.2rem;
  font-weight: bold;
  line-height: 1.75;
  border-bottom: 1px solid #c7c7c7;
  background: #35b1ed;
  color: #fff;
  border-radius: 0.1rem 0.1rem 0 0;
  padding: 0.1rem 0.2rem;
}
@media screen and (max-width: 640px) {
	#faq .cont_box .q {
		font-size: 0.16rem;
	}
}

#faq .cont_box .q span {
  font-size: 0.24rem;
  color: #fff;
  display: inline-block;
  padding-right: 0.1rem;
}
@media screen and (max-width: 640px) {
	#faq .cont_box .q span {
		font-size: 0.18rem;
	}
}

#faq .cont_box .a {
  font-size: 0.16rem;
  line-height: 1.75;
  padding: 0.2rem 0.2rem 0.3rem;
  display: flex;
  align-items: start;
}
@media screen and (max-width: 640px) {
	#faq .cont_box .a {
		font-size: 0.14rem;
	}
}
#faq .cont_box .a span {
  font-size: 0.24rem;
  font-weight: bold;
  color: #35b1ed;
  display: inline-block;
  padding-right: 0.1rem;
  position: relative;
  top: -0.07rem;
}
@media screen and (max-width: 640px) {
	#faq .cont_box .a span {
		font-size: 0.2rem;
	}
}

/*============================
お問い合わせフォーム
============================*/
#form_wrap {
  margin-top: 0.8rem;
  padding-bottom: 1.1rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  #form_wrap {
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  #form_wrap .common_title {
    font-size: 0.21rem;
  }
}

#form_wrap .in {
  max-width: 10.8rem;
}

#form_wrap .lead {
  font-size: 0.16rem;
  text-align: center;
  line-height: 1.91;
  padding-bottom: 0.5rem;
  margin-top: 0.25rem;
}
@media screen and (max-width: 640px) {
  #form_wrap .lead {
    font-size: 0.14rem;
    text-align: justify;
    padding-bottom: 0.3rem;
  }
}

#form_wrap .privacy_doui_wrap {
  background-color: #f1f1f1;
  padding: 0.2rem;
  margin-bottom: 0.3rem;
  border-radius: 0.04rem;
  font-size: 0.16rem;
}
@media screen and (max-width: 640px) {
  #form_wrap .privacy_doui_wrap {
    padding: 0.15rem;
    margin-bottom: 0.2rem;
    font-size: 0.14rem;
  }
}

#form_wrap .privacy_doui_wrap a {
  color: #111;
  text-decoration: underline;
}

#form_wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.16rem;
  line-height: 1.91;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 640px) {
  #form_wrap table {
    font-size: 0.14rem;
    border-top: 0;
  }
}

#form_wrap table th {
  width: 2rem;
  padding: 0.2rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
  position: relative;
  vertical-align: top;
	background: #EFF8FE;
}
@media screen and (max-width: 640px) {
  #form_wrap table th {
    width: 100%;
    padding: 0.1rem;
    line-height: 1.3;
    display: block;
    border-bottom: 0;
    background-color: #f1f1f1;
    box-sizing: border-box;
  }
}

#form_wrap table th.req::after {
  content: "必須";
  background-color: #ff0000;
  padding: 0.03rem;
  color: #fff;
  font-size: 0.11rem;
  position: absolute;
  top: 0.28rem;
  right: 0.2rem;
  line-height: 1;
  border-radius: 0.03rem;
}
@media screen and (max-width: 640px) {
  #form_wrap table th.req::after {
    top: 50%;
    right: 0.1rem;
    transform: translateY(-50%);
  }
}

#form_wrap table td {
  padding: 0.2rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 640px) {
  #form_wrap table td {
    width: 100%;
    padding: 0.1rem 0 0.3rem;
    display: block;
    border-bottom: 0;
  }
}

#form_wrap table td input[type="text"] {
  width: 100%;
  border: 1px solid #999;
  box-sizing: border-box;
  padding: 0.08rem;
  border-radius: 0.04rem;
  background-color: #fff;
  font-size: 0.16rem;
}

#form_wrap table td .list {
  font-size: 0.16rem;
}

#form_wrap table td .list .txt input[type="radio"] {
  display: inline-block;
  position: relative;
  top: -0.02rem;
  margin-right: 0.08rem;
}

#form_wrap table td textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid #999;
  box-sizing: border-box;
  padding: 0.08rem;
  border-radius: 0.04rem;
  background-color: #fff;
  font-size: 0.16rem;
}
@media screen and (max-width: 640px) {
  #form_wrap table td textarea {
    min-height: 2rem;
  }
}

#form_wrap table td select {
  max-width: 2.4rem;
  width: 100%;
  padding: 0.08rem;
  border-radius: 0.04rem;
}

.submit_wrap {
  padding-top: 0.3rem;
  display: flex;
  justify-content: center;
  gap: 0 0.20rem;
  
}
@media screen and (max-width: 640px) {
  .submit_wrap {
    padding-top: 0;
    gap: 0.2rem 0;
    padding-bottom: 0.3rem;
    flex-wrap: wrap;
  }
}

.submit_wrap .btn {
  width: 100%;
  max-width: 3rem;
  display: block;
  text-align: center;
  border: 0;
  font-size: 0.18rem;
  font-weight: 700;
  color: #fff;
  padding: 0.2rem 0;
  border-radius: 0.06rem;
  box-shadow: 0 0.03rem rgba(0, 0, 0, 0.3);
  /* margin: auto; */
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 640px) {
  .submit_wrap .btn {
    font-size: 0.16rem;
  }
}

.submit_wrap .btn:hover {
  opacity: 0.7;
}

.submit_wrap .btn.-submit {
  background-color: #35b1ed;
}

.submit_wrap .btn.-back {
  background-color: #999;
}

#form_wrap .txt_box .list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.2rem;
}
@media screen and (max-width: 640px) {
  #form_wrap .txt_box .list {
    gap: 0;
  }
  #form_wrap .txt_box .list .txt {
    width: 50%;
  }
}

#form_wrap .txt_box .sichouson {
	font-size: 0.16rem;
	font-weight: bold;
	margin-top: 0.1rem;
}


/*============================
フッター
============================*/
footer .ph_loop {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* .ph_loop_inner {
	display: inline-flex;
	gap: 1rem;
	height: 100%;
	white-space: nowrap;
	direction: ltr;
} */

footer .ph_item {
  width: 3.8rem;
  height: 3rem;
  display: inline-block;
}
@media screen and (max-width: 640px) {
	footer .ph_item {
		width: 3rem;
		height: 40vw;
	}
}

footer .ph_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer .slick-initialized .slick-slide {
  padding: 0 0.05rem;
}
@media screen and (max-width: 640px) {
  footer .slick-initialized .slick-slide {
    padding: 0 0.01rem;
  }
}

footer .cont_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0.3rem 0;
}
@media screen and (max-width: 640px) {
	footer .cont_wrap {
		flex-direction: column;
		align-items: center;
		gap: 0.2rem;
	}
}

footer .cont_wrap .copy	 {
	font-size: 0.12rem;
}
@media screen and (max-width: 640px) {
	footer .cont_wrap .copy {
		font-size: 0.1rem;
		text-align: center;
    padding-bottom: 0.80rem;
	}
}

@media screen and (max-width: 640px) {
  #page_top {
    right: -10rem;
  }
}

/*============================
スマホのみ フローティングバナー
============================*/
.sp_float_bnr_wrap {
  /* display: none !important; */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 641px) {
  .sp_float_bnr_wrap {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .sp_float_bnr_wrap .sp_float_bnr {
    display: flex;
    justify-content: space-between;
  }
  .sp_float_bnr_wrap .sp_float_bnr img {
    display: block;
  }
}

/*============================
確認・完了
============================*/
.under_mv {
  padding: 2.0rem 0;
  text-align: center;
  margin-top: 0.80rem;
  background-image: url(../img/under_mv.jpg);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 640px) {
  .under_mv {
    padding: 1.0rem 0;
    margin-top: 0;
  }
}

.under_mv .mv_ttl {
  font-size: 0.50rem;
  font-weight: 800;
  color: #FFF;
}