@charset "utf-8";
/* CSS Document */

h2.contentu_tit{
    font-size: 4.8rem;
    color: #ffffff;
	padding-top: 100px;
	line-height: 0.7;
	min-height: 320px;
	font-weight: normal;
}

.contentu_area{
	margin-bottom: 180px;
}

h3.contentu_sub_tit{
	background-color: #0D98EB;
	width: 100%;
	min-height: 60px;
	color: #ffffff;
	padding: 12px 0px 0px 40px;
	font-size: 2.4rem;
	margin: 0px 0px 54px;
}

p.contentu_text{
	margin-bottom: 36px;
}


.contentu_btn_area_bk{
	width: 100%;
	background-image: url("../contentu_img/contentu_btnarea_bk.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

ul.contentu_btn_area{
	width: 820px;
	margin: 24px auto 80px ;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.contentu_btn_area li{
	margin-bottom: 10px;
}

.common_sec:not(:first-of-type) {
  margin-top: min(28vw , 20.0rem);
}
.common_sec:first-of-type {
  margin-top: 10.0rem;
}


h3.contentu_sub_tit_001,
.contentu_font_sub_18
{
    font-size: 4.0rem;
    color: #0d98eb;
	min-width: 80%;
	margin-left: 10%;
}

.contentu_font_sub_18{
	font-size: 1.8rem;
margin-left: 12%;
}


.attention {
    position: relative;
    display: inline-block;
    padding: 0 50px;
    margin-bottom: 5px;
}
       
.attention:before {
    position: absolute;
    left: 0;
    top: 5px;
    content: "";
    width: 10px;
    height: 80%;
    background: #0d98eb;
    transform: rotate(25deg);
}

h5.product_sub_tit{
	font-size: 2.0rem;
	padding-bottom: 5px;
	border-bottom: 2px solid #0371c6;
	margin-bottom: 40px;
}


dl.sengen_text{
	margin: 54px 0px 80px;
	overflow: hidden;
}

.sengen_text dt{
	font-size: 2.0rem;
	color: #0D98EB;
	font-weight: bold;
	border-bottom: 1px solid #707070;
}

.sengen_text dd{
	padding-top: 12px;
}


ul.rinen_list{
}

ul.rinen_list li{
list-style: disc!important;
margin-left: 25px;
}


dl.privacy_text{
	margin: 54px 0px 80px;
	overflow: hidden;
}

.privacy_text dt{
	font-size: 20px;
	color: #0D98EB;
	font-weight: bold;
	border-bottom: 1px solid #707070;
}

.privacy_text dd{
	padding-top: 12px;
}


.pro_list{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 8.0rem;
}
.pro_list:not(:last-child) {
	margin-bottom: 8.0rem;
}

.pro_list figure{
	margin: 0;
	width: calc((100% - 80px) / 2);
	height: auto;
	overflow: hidden;
}

.pro_list figure figcaption{
	margin-top: 10px;
}


h4.service_suv_tit{
	width: 100%;
	background-color: #0D98EB;
	color: #ffffff;
	font-size: 2.4rem;
	font-weight: normal;
	padding: 16px 0px 16px 20px;
	margin-bottom: 36px;
}


ul.inquiry_list{
	width: 100%;
	
}

.inquiry_list li{
	list-style: disc;
	margin: 12px 20px;
}

.inquiry_list li a{
	color: #0D98EB;
}

/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(200px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

/*==================================================
ボタンCSS
===================================*/

.contentu_btn{
    /*矢印の基点とするためrelativeを指定*/
  position: relative;
    /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background:#ffffff;
  color:#0D98EB;
  border-radius:10px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
	border: #0D98EB solid 1px;
	font-size: 2.4rem;
	padding-top: 16px;
	min-width: 400px;
	min-height: 70px;
}

.contentu_btn:hover{
  background:#0D98EB;
	color: #ffffff;
}


/* 矢印が右に移動 */

.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
  position: absolute;
    top:42%;
    right: 13px;
    /*矢印の形状*/
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #0D98EB;
    border-right: 2px solid #0D98EB;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
  top: 50%;
	border-bottom: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
}

/* お問い合わせボタン */
.inquiry_button {
	display: flex;
	flex-flow: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	row-gap: 5.0rem;
	margin: 10.0rem auto 12.0rem;
}
.btn_inquiry,
.btn_inquiry_gray
{
	cursor: pointer;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	background: #005aa0;
	border: 2px solid #005aa0;
	border-radius: 50px;
	color: #fff;
	display: block;
	max-width: 300px;
	width: 100%;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	font-size: 2.0rem;
	letter-spacing: 0.036em;
	font-weight: normal;
}

.btn_inquiry_gray
{
	background: #fafafa;
	border: 2px solid #ddd;
	color: #666;
	max-width: 240px;
	padding: 10px;
	font-size: 1.8rem;
}


.btn_inquiry:hover,
.btn_inquiry_gray:hover
{
	background: #fff;
	color: #005aa0;
}

.btn_inquiry_gray:hover
{
	background: #ddd;
	border: 2px solid #ddd;
	color: #fff;
}

/*　個人情報保護につてい　*/

ol.privacy_number{
	
}

.privacy_number li{
	counter-increment: cnt;
	margin: 10px;
}

ol.privacy_number li::before {
	content: "(" counter(cnt) ") ";
}

@media screen and (max-width: 1024px) {
	
h2.contentu_tit{
	margin-top: 100px;
}
	
	
.contentu_area{
	margin-bottom: 100px;
}
	
	
h3.contentu_sub_tit_001{
	margin-left: 3%;
}
	
	
.left_box_001{
	margin: 2% 0 0 10%;
	max-width: 500px;
}


.right_box_001{
	max-width: 500px;
	margin: 20px 0px 0px 5%;
}

.left_box_002{
	margin-left: 1%;
	max-width: 500px;
}

.right_box_002{
	max-width: 500px;
	margin: 20px 5% 2px 5%;
}

.right_box_003{
	max-width: 740px;
	margin: 20px 0px 0px 5%;
	float: right;
}

.about_bk,
.about_no_bk
{
	margin: 54px 0px;
	padding: 40px 0px;
}
	
	
	
}


@media screen and (max-width: 768px) {

ul.contentu_btn_area{
	width: 80%;
	margin: 24px 10%;
	display: block;
	justify-content: center;
}

.contentu_btn_area li{
	margin-bottom: 10px;
}	
	
	
	
	
h2.contentu_tit{
	padding-top: 30px;
    font-size: 2.4rem;
	margin-top: 30px;
	min-height: 123px;
}
	
.contentu_area{
	margin-bottom: 30px;
}
	
	
h3.contentu_sub_tit{
	font-size: 2.0rem;
	padding: 14px 0px 0px 20px;
	margin: 0px 0px 36px;
}

	
h3.contentu_sub_tit_001{
    font-size: 2.4rem;
	min-width: 100%;
}
	
.attention {
    padding: 0 24px;
    margin-bottom: 6px;
}

.attention:before {
    width: 8px;
    height: 80%;
}
	
	
dl.sengen_text{
	margin: 10px 0px 40px;
}


.pro_list {
	row-gap: 4.8rem;
}
.pro_list:not(:last-child) {
	margin-bottom: 5.0rem;
}
.pro_list figure{
	width: 100%;
}

	
	
h4.service_suv_tit{
	font-size: 1.8rem;
	margin-bottom: 14px;
}
	
	
	
h5.about_sub_tit{
	font-size: 2.0rem;
	margin-bottom: 24px;
}	
	
.about_bk,
.about_no_bk
{
	margin: 12px 0px;
	padding: 10px 0px;
		display: block;

}
	
.left_box_001,
.right_box_001,
.right_box_002,
.left_box_002,
.right_box_003	
	{
	margin: 2% 0 0 2%;
	max-width: 96%;
}


.right_box_001{
	margin: 0px 0px 0px 2%;
}

.left_box_002{
	margin-left: 2%;
}

.right_box_002{
	margin: 10px 2% 2px ;
}

.right_box_003{
	margin: 10px 0px 0px 5%;
	float: none;
}
	
/*==================================================
ボタンCSS
===================================*/

.contentu_btn{
	font-size: 1.8rem;
	padding-top: 8px;
	min-width: 100%;
	min-height: 46px;
}

	
	
}
