@charset "UTF-8";

/*******************************************************************
リセットCSS
********************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input,label{
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
}

/*******************************************************************
                  　　　　　common
********************************************************************/
html,
body {
	height: 100%;
}
html {
	font-size: 62.5%;
}
body {
  font-family: "游ゴシック体", "YuGothic", "Yu Gothic Medium", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 1.6rem;
  color:#333;
  background: #fff;
  letter-spacing: 0.02em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/*
@media screen and (max-width: 767px) {
	body {
		font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
	}
}
*/

a{
  text-decoration: none;
  color: #333;
  cursor: pointer;
  transition: .3s;
  -webkit-transition: .3s;
}
a:hover{
  opacity: .8;
}
button{
  outline:none;
}

@media screen and (min-width: 1025px){
  a[href^="tel:"] {
      pointer-events: none;
  }
}
button{
  border: none;
  background: none;
}

img{
  max-width: 100%;
  height: auto;
}

/*
 * display
 */
.tmp-show{
  display: inherit;
}
.tmp-show-pc{
	display: inherit;
}
.tmp-show-sp{
	display: none;
}
@media screen and (max-width: 767px) {
	.tmp-show-pc{
		display: none;
	}
	.tmp-show-sp{
		display: inherit;
	}
}

.tmp-color-navy{
  color: #333 !important;
}

/* font-weight */
.tmp-text-bold{
	font-weight: bold;
}
/* text-arign */
.tmp-text-center{
	text-align: center;
}
.tmp-text-left{
	text-align: left;
}
.tmp-text-right{
	text-align: right;
}
.tmp-text-center-pc{
	text-align: center;
}
.tmp-text-left-pc{
	text-align: left;
}
.tmp-text-right-pc{
	text-align: right;
}
@media screen and (max-width: 767px) {
	.tmp-text-center-pc,
	.tmp-text-left-pc,
	.tmp-text-right-pc{
		text-align: left;
	}
}

/* font-size */
.tmp-text-10{ font-size: 1.0rem; }
.tmp-text-12{ font-size: 1.2rem; }
.tmp-text-14{ font-size: 1.4rem; }
.tmp-text-16{ font-size: 1.6rem; }
.tmp-text-18{ font-size: 1.8rem; }
.tmp-text-20{ font-size: 2.0rem; }
.tmp-text-22{ font-size: 2.2rem; }
.tmp-text-24{ font-size: 2.4rem; }
.tmp-text-26{ font-size: 2.6rem; }
.tmp-text-30{ font-size: 3.0rem; }
.tmp-text-36{ font-size: 3.6rem; }

/*
 * list
 */
.tmp-list-bullet > li,
.tmp-list-asterisk > li {
 position: relative;
 padding-left: 1.2em;
 counter-increment: cnt;
}
.tmp-list-bullet > li::before,
.tmp-list-asterisk > li::before {
 position: absolute;
 top: 0;
 left: 0;
 width: 1.2em;
 height: 1.2em;
}
.tmp-list-bullet > li {
 padding-left: 1.3em;
}
.tmp-list-bullet > li::before {
 content: "・";
}
.tmp-list-asterisk > li {
 padding-left: 1.3em;
}
.tmp-list-asterisk > li::before {
 content: "※";
}

/*
 * flexbox
 */
.tmp-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tmp-flex-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tmp-flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tmp-flex-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.tmp-flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tmp-flex-end {
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.tmp-flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.tmp-flex-right{
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.tmp-flex-expand{
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-preferred-size: 1px;
  flex-basis: 1px;
}


@media screen and (min-width: 768px) {
	.tmp-flex-pc {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		  -ms-flex-wrap: wrap;
		      flex-wrap: wrap;
	}
}
@media screen and (max-width: 767px) {
	.tmp-flex-pc {
  display: block;
	}
	.tmp-flex-sp {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		  -ms-flex-wrap: wrap;
		      flex-wrap: wrap;
	}
}
/*
 * inner
 */
.temp_inner_1024{
	max-width: 1024px;
  margin: 0 auto;
}
.temp_inner_880{
	max-width: 880px;
	margin: 40px auto;
}
/*******************************************************************
                  　　　　　headerの設定
********************************************************************/
header{
	height: 55px;
	background-color: #000;
}
header img{
	width: 130px;
	padding: 5px 10px;
}
/*******************************************************************
                  　　　　　heroの設定
********************************************************************/
.hero p.hero_img img {
    width: 100%;
}
.hero .cvbtn{
	margin: -120px 0 0 0;
	padding: 0 0 40px 0;
}
.fv_tb{display: none;}
.fv_sp{display: none;}

/* btn設定 */
.btn-gradient-radius {
	display: inline-block;
	    width: 480px;
    padding: 20px 0;
    border-radius: 35px;
    text-decoration: none;
    color: #FFF;
    background-image: linear-gradient(45deg, #262626 0%, #9d9d9d 100%);
    transition: .4s;
}
.btn-gradient-radius:hover {
  background-image: linear-gradient(45deg, #40b4df 0%, #0088ba 100%);
}

.cvbtn{
	text-align: center;
	margin: 30px 0;
}

@media screen and (max-width: 1200px) {
	.hero {
		width: 100%;
		height: auto;
		position: relative;
	}
	.hero .cvbtn{
		margin: -90px 0 0 0;
		padding: 0 0 15px 0;
	}
	.fv_pc{display: none;}
	.fv_tb{display: block;}
	.fv_sp{display: none;}
}

@media screen and (max-width: 767px) {
	.hero {
		width: 100%;
		height: auto;
		position: relative;
	}
.fv_pc{display: none;}
.fv_tb{display: none;}
.fv_sp{display: block;}

	#logo {
		display: block;
		justify-content: center;
		margin: auto;
		margin-bottom: 20px;
	}
	.btn-gradient-radius {
		display: inline-block;
		width: 300px;
		padding: 15px 0;
		border-radius: 35px;
		text-decoration: none;
		color: #FFF;
		background-image: linear-gradient(45deg, #262626 0%, #9d9d9d 100%);
		transition: .4s;
		margin-top: 10px;
	}
}

/*******************************************************************
                  　　　　　sec1の設定
********************************************************************/
.sec1 {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background: url(../img/dairiseki_shiro.jpg) no-repeat;
    background-size: cover;
		padding-bottom: 50px;
}
.sec1 h2{
    color: #fff;
		margin: 60px 0 60px;
}
.about_img{
	display: block;
	text-align: center;
}
.sec1 p.tmp-text-left{
	color: #fff;
	margin: -50px 0 0 0;
}

.PC { display: block !important;
 }
.SP { display: none !important; }

@media screen and (max-width: 1200px) {
	.PC {
	    display: block !important;
	}
	.temp_inner_1024{
		max-width: 880px;
		padding: 0 2%;
	}
}

@media only screen and (max-width: 767px) {
    .PC { display: none !important; }
    .SP { display: block !important; width: 80%; margin: 0 auto;}
		.sec1 h2{
			font-size: 22px;
			margin: 30px 0;
		}
		.sec1 p.tmp-text-left {
    margin: 20px 10px;
}
}

/*******************************************************************
                  　　　　　sec2の設定
********************************************************************/
.merit_box {
    text-align: center;
    counter-reset: item;
		margin: 20px 10px;
}
.merit_box li {
    width: 48%;
    background: linear-gradient(to right,rgb(197 232 245 / 1) 0%, rgb(196 213 219) 100%);
    padding: 3px;
    box-sizing: border-box;
    position: relative;
		margin: 20px 0;
}
.merit_box li .inner {
    width: 100%;
    height: 100%;
    background: #fff;
    font-size: 2.0rem;
    line-height: 1.4;
    text-align: center;
    font-weight: bold;
    padding: 50px 20px 40px;
    box-sizing: border-box;
}
.merit_box_bluetxt{
	color: #3fb4df;
}
.merit_box h4{
	margin: 8px;
}
.inner img{
	width: 80%;
}
.merit_number {
    position: absolute;
    width: 15%;
    left: 25px;
    top: -25px;
}
@media only screen and (max-width: 767px) {
	.sec2 h2{
		font-size: 25px;
	}
	.sec2 ul{
		display: inline-block;
	}
	.merit_box li {
    width: 90%;
		margin: 50px auto;
}
.merit_box {
		margin: 0;
}
.sec2 .cvbtn{
	margin-top: 0;
}
}
/*******************************************************************
                  　　　　　sec3の設定
********************************************************************/
.sec3 {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background: url(../img/deep_green.png) no-repeat;
    background-size: cover;
}
.sec3 h2{
    color: #fff;
		margin: 30px 0 60px;
}
.sec3 p{
	color: #fff;
}
@media only screen and (max-width: 767px) {
	.sec3 h2{
		font-size: 22px;
	}
	.sec3 p {
    padding: 0 10px;
}
.sec3 {
    height: auto;
}
}
/*******************************************************************
                  　　　　　sec４の設定
********************************************************************/
.sec4{
	margin: 50px auto 80px;
}
.del{
	text-decoration: line-through;
}
table{
  width: 100%;
  border-collapse: collapse;
}

table tr{
  border-bottom: solid 2px white;
}

table tr:last-child{
  border-bottom: none;
}

table th{
  position: relative;
  text-align: left;
  width: 25%;
  background-color: #40b4df;
  color: white;
  text-align: left;
  padding: 10px 25px;
}

table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #40b4df;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table td{
  text-align: left;
  width: 70%;
  text-align: left;
  background-color: #eee;
  padding: 10px 25px;
}
.blue_txt {
	color: #40b4df;
	padding-left: 20px;
}
.price{
	margin: 40px 0;
}
@media only screen and (max-width: 767px) {
	.sec4 h2{
		font-size: 22px;
	}
	.price {
		margin: 20px 0;
	}
	.sec4{
		padding: 0 10px;
	}
	table th,table td{
		width:100%;
		display:block;
	}
	table th:after{
        content:none;
    }
		table td {
			text-align: center;
    padding: 10px 0;
}
table th {
    text-align: center;
    padding: 10px 0;
}
}
/*******************************************************************
                  　　　　　sec5の設定
********************************************************************/
.sec5 {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    background: url(../img/dairiseki_kuro.png) no-repeat;
    background-size: cover;
}
.sec5 h2{
    color: #fff;
		margin: 30px 0 60px;
}
.about_img{
	display: block;
	text-align: center;
}
.sec5 p{
	color: #fff;
    margin-left: 220px;
    position: absolute;
    top: 360px;
    left: 300px;
}

@media screen and (max-width: 1200px) {
	.sec5 p {
	    margin: 10px -150px;
	}
}

@media screen and (max-width: 767px) {
	.sec5 h2{
		font-size: 22px;
		margin: 30px 0;
	}
	.sec5 {
        height: 640px;
}
.sec5 p {
    color: #fff;
    margin-left: 0px;
    margin: 20px 10px;
		    top: 480px;
		left: 0;
}
.hoge{
	padding: 0 10px;
}
}

/*******************************************************************
                  　　　　　sec6の設定
********************************************************************/
.sec6{
	height: auto;
}
.sec6 h2{
	margin: 50px 0 20px;
}
@media screen and (max-width: 767px) {
	.sec6 h2{
		font-size: 22px;
		margin: 30px 0 20px;
	}
	.sec6 p{
		padding: 0 10px;
		}
}

/*******************************************************************
                  　　　　　footerの設定
********************************************************************/
footer {
    background-color: #000;
    padding: 20px 0;
}
footer img {
    display: block;
		margin: auto;
}
footer p {
    color: #fff;
		margin-top: 10px;
}

@media screen and (max-width: 767px) {
    footer {
        padding: 10px 0;
    }

    #footer_inner {
        display: flex;
        flex-flow: wrap;
        justify-content: center;
        margin-top: 0px;
    }

    footer img {
        width: 150px;
        margin-top: 0;
    }

		footer p {
    color: #fff;
    line-height: 0;
    padding: 10px 0 20px;
}

}
/*******************************************************************
                  　　　　　page_topの設定
********************************************************************/
#page_top {
    width: 90px;
    height: 90px;
    position: fixed;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    z-index: 5;
}

#page_top a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#page_top a span {
    display: inline-block;
    font-size: 1.3rem;
    padding: 33px 0 0;
    position: relative;
}

#page_top a span::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #000;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

@media screen and (max-width: 767px) {
	#tel {
    width: 80%;
}
}
