@charset "utf-8";
/* CSS Document */
html {
	scroll-behavior: smooth
}
body {
	font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: 15px;
	font-weight: 400px;
	color: #000;
}

main {
	width: 100%;
}
.container {
	width: min(950px, 93%);
	/*width: min(800px, 93%);*/
	margin: 0 auto;
}
.wrapper {
	width: min(1080px, 93%);
	margin: 100px auto 0;
}
section {
	display: block;
	padding-top: 75px;
	padding-bottom: 75px;
	width: 100%;
}
.list-flex {
	display: flex;
	justify-content: space-between;
}
.inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.inner.__reverse {
	flex-direction: row-reverse;
}

.Link{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
	.pc-only {display: block}
	.sp-only {display: none}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:767px) {
  /*スマホ用のcssを記述*/
	
	.inner.__reverse {
	}

	.pc-only {display: none}
	.sp-only {display: block}
}


/*--------------
font 要素
--------------*/
h1 {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
}
h2 {
	font-size: 1.5em;
	font-weight: 600;
}
h2.ttl-area {
	width: 100%;
	justify-content: left;
	display: flex;
	position: relative;
  font-family: "Roboto", sans-serif;
	margin-bottom: 40px
}
.service h2.ttl-area {
	margin-bottom: 80px
}

.contact h2.ttl-area {
	justify-content: center
}

h2.ttl-area::before {
	content: "";
	position: absolute;
	width: 150px;
	height: 7px;
	background-color: #D2EFBD;
	top: -20px;
}

h2.ttl-area + p {
	width: 100%;
	margin: 0 auto 80px;
}
h3 {
	/*font-size: 1.3em;
	margin-bottom: 20px*/
}
.Montserrat {
  font-family: "Roboto", sans-serif;
}

p.red {}


@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:767px) {
  /*スマホ用のcssを記述*/
}

/*--------------
botton 要素
--------------*/
.btn_red {
	background-color: #A20000;
	color: #fff;
	width: fit-content;
	padding: 1em 2em;
}
.btn_red::after {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
  margin-left: 20px;
	font-weight: 900;
  color: #fff;
}



/* =================================================
ローディングアニメーション
==================================================*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #F4FAF0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 175px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}




/* =================================================
header〜nav
==================================================*/
/*hamburger.css　に記載*/



/*--------------
kv
--------------*/
.kv_section {
    height: calc(100vh - 80px);
    margin-top: 70px;
    overflow: hidden;
}

.header_txt {
	position: absolute;
    left: 30px;
	bottom: 50px;
    transform: translateY(-50%);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .25));
}
.header_txt img {
	width: min(250px, 70%);
}

.header_kv {
	/*height: calc(100vh - 80px);*/
	height: 100vh;
    background: url(../img/kv.jpg) no-repeat left bottom / cover;
    /*background-size: 50%, 50%;*/
    background-position: center;
}


/*--------------
about
--------------*/
section.about {
}

.content_left { 
    width: calc(100% - 290px);
} 

.about .inner {
	justify-content: space-between;
    align-items: stretch;
}

.about .container .inner ~ .inner {
	margin-top: 100px
}
.img-area {
	background-color: #ddd;
	height: 100%;
	width: 260px;
	overflow: hidden;
	border-radius: 0;
	margin: 0;
}
.img-area.__face01 {
	background: url("../img/image_S.JPG") no-repeat center bottom;
	background-size: cover
}
.img-area.__face02 {
	background: url("../img/image_N.JPG") no-repeat center bottom;
	background-size: cover
}

.content_left dl dt {
	font-size: 1.5em;
	font-weight: 600;
}
.content_left dl dt span {
	font-size: 0.6em;
  font-family: "Roboto", sans-serif;
	display: block;
    margin-top: 20px;
}

.content_left dl dt + dd {
	margin: 1em 0;
	font-weight: 600;
	font-size: 1.1em
}

.inner.__reverse dt,
.inner.__reverse dt + dd {
	text-align: end
}


@media screen and (max-width:550px){	
	.about .inner {
		flex-direction:column;
	}
	.content_left {
		width: 100%;
        margin-bottom: 20px;
	}
	.content_left dl dt span {
    	font-size: 0.5em;
		font-weight: 400
	}
	
	.inner.__reverse dt, .inner.__reverse dt + dd {
		text-align: left;
		margin-top: 20px
	}
	.img-area {
		height: 360px;
		width: 100%;
	}
	.img-area.__face01 {
        background-position: 0px 50%;
	}
}


/*--------------
about
--------------*/
.service {
	background-color: #E8E8E8;
    padding-bottom: 10px;
}

dl.detail {
	position: relative
}

.service .inner:last-child img {
	width: auto;
}

dl.detail p {
	position: absolute;
	font-family: "Roboto", sans-serif;
	font-size: 100px;
	color: rgba(255,255,255,0.55);
	left: -20px;
	top: -50px;
	z-index: 0;
	font-weight: 700
}

dl.detail dt {
	font-size: 1.5em;
	font-weight: 600;
	margin-bottom: 0.5em
}

dl.detail dt,
dl.detail dd {
    position: relative;
    z-index: 5;
}

.service .inner {
	margin: 50px 0 100px
}
.flow {
    width: 300px;
    height: 500px;
    margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flow img {
	width: 250px
		
}
.pic {
	width: calc(80% - 300px);
	padding-top: 56%;
}
.pic.__01 {
	background: url("../img/image_004.jpg") no-repeat center / cover
}
.pic.__02 {
	background: url("../img/image_002.jpg") no-repeat center / cover
}
.pic.__03 {
	background: url("../img/image_005.jpg") no-repeat center / cover;
}



/*--------------
Project 要素
--------------*/

.project {
  /*background: linear-gradient(0deg, #F9F6F0 0%, #F9F6F0 40%, #fff 40%, #fff 100%);*/
	position: relative;
}


.project h2.ttl-area {
    justify-content: center;
}



.project .txt-trans {
	    position: absolute;
    top: 200px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: fit-content;
}

@media screen and (max-width:767px) {
	
	.project .txt-trans p {
    transform: translate(0%, -38px);
		font-size: 0.5em
	}
}






.swiper-wrapper {
  /* wrapperのサイズを調整 */
  width: 100%; 
    aspect-ratio: 12 / 3;
    object-fit: cover;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 300px;
  text-align: center;
}

.swiper-pagination-bullets {
  width: 100px;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 10px !important;
  background: #fff;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.swiper-button-next, .swiper-button-prev {
	color: #D2EFBD !important;
}
.swiper-pagination-bullet-active {
	background: #D2EFBD !important;
}
/* =================================================
お問い合わせ
==================================================*/

#contact {
	background-color: #F4FAF0
}

#contact .wrapper {
	padding-top: 0;
	margin: 0 auto;
}

#contact .list-flex {
	border-bottom: 1px dotted #999999;
	padding: 2rem 0;
}

#contact .list-flex:first-child {
	border-top: 1px dotted #999999;
}

#contact .list-flex:not(:last-child){
	margin-bottom: 0;
}

#contact .list-flex dt {
	width: 30%;
	padding-top: 0.5rem;
}

#contact .list-flex dd {
	flex: 1;
}

.icon-require {
	background-color: #333;
	color: #FFFFFF;
	border-radius: 5px;
	padding: 5px  10px;
	margin-right: 1rem;
}
.icon-any {
	background-color: #cccccc;
	color: #fff;
	border-radius: 5px;
	padding: 5px  10px;
	margin-right: 1rem;
}

input, textarea, select {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #999;
	border-radius: 5px;
	background-color: #fff;
}
select {
	font-weight: 600;
}
p.checkbox {
    text-align: center;
    margin-bottom: 30px;
}

p input[type="checkbox"]{
    display: none;
}
/* チェックボックスの代わりを成すラベル */
p input[type="checkbox"]+label{
    display: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 35px;
    padding-right: 10px;
}

p input[type="checkbox"]+label::before{
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    margin-top: -14px;
    left: 0;
    top: 50%;
    border: 1px solid #999;
    background-color: #fff; 
}

p input[type="checkbox"]:checked+label::after{
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 22px;
    height: 12px;
    margin-top: -7px;
    top: 50%;
    left: 4px;
    transform: rotate(-45deg);
    border-bottom: 5px solid #B40000;
    border-left: 5px solid #B40000;
}

.privacy-policy {
	margin-top: 2rem;
	height: 10em;
	padding: 1em;
	border: 1px solid #999;
	overflow-y: scroll;
    background-color: #fff;
	margin-bottom: 50px;
	line-height: 1.5;
}

input[type="submit"]{
	color: #fff;
	width: min(500px, 90%);
	line-height: 80px;
	padding: 0 140px;
	border: none;
	font-size: 1.375rem; /*22px*/
	font-weight: bold;
	text-align: center
}
button#submit {
    width: 100%;
    border-radius: 50vh;
}
.send-btn {
	margin: 0 auto;
	display: block;
	color: #fff;
	line-height: 80px;
	padding: 0 140px;
	border: none;
	font-size: 1.375rem; /*22px*/
	font-weight: bold;
	text-align: center;
    margin-top: 2rem;
}

.thanks-wrap {
    width: min(80%, 850px);
    margin: 150px auto 0;
}
p.backTop {
	width: max-content;
	padding: 0.5em 2em;
    margin: 0px auto 0;
    background-color: #D2EFBD;
    border-radius: 50vh;
    font-size: 0.8em;
    color: white;
}


#page-thanks .wrapper {
	padding-top: 0;
	padding-bottom: 200px;
}

#page-thanks .wrapper p {
	text-align: center;
	font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
}

#page-thanks .wrapper a {
	text-decoration: underline;
}

::placeholder {
  color: #DFDFDF;
}



/* =================================================
会社情報
==================================================*/
section.infomation {
	padding-bottom: 130px
}
dl.info{
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
	flex-wrap: wrap;
	align-items: stretch;	
	width: 100%;
	border-bottom: none;
}
dl.info dt{
	padding: 15px 5px;
	width: 150px;
	border-bottom: 1px solid #ccc;
	font-weight: 600;
    color: darkgrey;
}
dl.info dd{
	padding: 15px 5px;
	width: calc(100% - 150px);
	border-bottom: 1px solid #ccc;
}


dl.info dd p.office{
	font-weight: 600
}
dl.info dd p.add{
	margin-top: 0.3em
}
dl.info dd p.add:not(:last-child){
	margin-bottom: 1em
}



/*--------------
footer 要素
--------------*/

footer {
	margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, .15);
	position: fixed;
	z-index: 10
}

.copylight {
	font-size: 10px;
	text-align: center;
	padding: 1em 0;
}




/* =================================================

コンテンツ幅767px以下の表示はここからです

==================================================*/
@media screen and (max-width:767px){
	
	.list-flex {
		flex-direction:column;
	}
	
	.header_txt {
		/*height: 150px;
		margin-left: 20px;*/
	}
	
	h3 {
		/*line-height: 1.5em;
		font-size:1.1em;*/
	}
	.contact.wrapper {
		text-align: center;
	}
	
	.contact.wrapper p {
		margin-top: 20px;
	}

	.contact.wrapper p.btn {
		text-decoration: underline;
	}



	/* =================================================
	ABOUT
	==================================================*/

	
	
	/* =================================================
	サービス
	==================================================*/
	dl.detail p {
		left: 10px
	}
	
	.service .inner {
		flex-direction: column
	}
	.flow img {
		width: min(300px, 100%);
	}
	
	.pic {
		width: 100%;
		padding-top: 80vw;
		margin-top: 10vw;
	}
	.pic.__03 {
		width: 100vw;
	   margin: 20px calc(50% - 50vw) 0;
	}

	/* =================================================
	実績
	==================================================*/

	.swiper-wrapper {
	/* wrapperのサイズを調整 */
	width: 100%; 
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}


	/* =================================================
	お申込み
	==================================================*/
	
	form {
		font-size: 16px
	}
	
	h2 + p {
		word-break: auto-phrase;
	}
	#contact .list-flex {
		padding: 1rem 0;
	}
	#contact .list-flex dt{
		padding-bottom: 13px;
		width: 100%;
	}
	#contact .list-flex dd{
		width: 100%
	}
	input, textarea, select {
		font-size: 16px
	}
	input[type="submit"] {
		padding: 0
	}
	.send-btn {
		padding: 0
	}

	/* =================================================
	会社概要
	==================================================*/
dl.info {
	flex-direction: column;
}
dl.info dt {
	padding: 15px 5px 0;
	border: 0;
	widows: 100%
}

dl.info dd {
	width: 100%
}
}