@charset "UTF-8";

/*変数*/
:root {
  --main_blue: #0067b8;
  --main_red: #ff0000;
  --main_green: #00a100;
  --ttl_color: #314d93;
  --txt_color: #333333;
  --font_mincho: "游明朝", "Yu Mincho",
    "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "ＭＳ 明朝", "MS Mincho",
    serif;
    --easing: cubic-bezier(0.2, 1, 0.2, 1);
	--transition: 0.8s var(--easing);
}
/*呼び出し方は var(--main_color)*/

/*ベース*/
main{
	overflow: hidden;
}
p, li, a, dt, dd, address, th, td, label, input, textarea{
  font-size: 1rem;
  line-height: 2;
  color: var(--txt_color);
}
h1,h2,h3,h4,h5{
	color: var(--txt_color);
}
a{
  transition: 0.4s;
}
.inner{
  max-width: 1200px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 640px){
  .inner{
    width: 92%;
  }
	p, li, a, dt, dd, address, th, td, label, input, textarea{
		line-height: 1.7;
	}
}
.sp_only{
  display: none;
}
.br_tab{
  display: none;
}
.br_sp{
  display: block;
}
@media screen and (max-width: 1024px){
  .sp_only{
    display: block;
  }
}
@media screen and (max-width: 768px){
  .br_tab{
    display: block;
  }
}
@media screen and (max-width: 640px){
  .br_sp{
    display: none;
  }
}
.txt_box p{
  text-align: justify;
}
.txt_white{
  color: #fff;
}
/*横並び*/
.column{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 640px){
  .column{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.column-reverse{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 640px){
  .column-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/*見出し*/
.ttl{
  font-size: clamp(2rem, 0.857rem + 2.86vw, 3rem);
  line-height: 1.8;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5%;
}
.ttl_border_red{
  font-size: clamp(2rem, 0.857rem + 2.86vw, 3rem);
  font-weight: 900;
  padding-left: 6rem;
  margin-bottom: 3%;
  position: relative;
}
.ttl_border_red::before{
  content: "";
  position: absolute;
  width: 5rem;
  height: 2px;
  background: var(--main_red);
  top: 50%;
  transform: translate(-50%, 50%);
  left: 4%;
}
.ttl_dot_wrap span{
  letter-spacing: 0.1rem;
  padding-left: 1rem;
  position: relative;
}
.ttl_dot_wrap span::before{
   content: "";
   position: absolute;
   width: 0.5rem;
   height: 0.5rem;
   background: var(--main_red);
   border-radius: 50%;
   top: 50%;
   transform: translateY(-50%) ;
   left: 0;
}
.ttl_dot_wrap h2{
  font-size: clamp(2rem, 0.857rem + 2.86vw, 3rem);
  font-weight: 900;
  line-height: 1.5;
}
.ttl_dot._blue::before{
  background: var(--main_blue);
}
.ttl_dot._green::before{
  background: var(--main_green);
}
@media screen and (max-width: 768px){
  .ttl{
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 640px){
  .ttl_border_red{
    padding-left: 4rem;
  }
}





/*ボタン*/
.btn{
  color: var(--txt_color);
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--txt_color);
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 5% 0;
  max-width: 240px;
  padding: 10px 25px;
  transition: 0.3s ease-in-out;
  
}
.btn:before{
    content: "";
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background: var(--txt_color);
    transition: 0.3s;
}
.btn:hover{
  background: rgba(51, 51, 51, 0.1);
}
.btn:hover:before{
  left: 1.5rem;
}

.btn._left._white{
  color: #fff;
  border: 1px solid #fff;
}
.btn._left._white::before{
  background: #fff;
}
.btn._right._blue{
  margin-left: 1.5rem;
}
.btn._right._blue,
.btn._center._blue,
.btn._left._blue{
  color: #fff;
  background: var(--main_blue);
}

.btn._right._blue:hover,
.btn._center._blue:hover,
.btn._left._blue:hover{
  color: var(--main_blue);
  background: none;
  border: 1px solid var(--main_blue);
}
.btn._left,
.btn._left._blue{
  margin-left: auto;
}
.btn._right{
  margin-right: auto;
}
.btn._center._blue{
	margin: auto;
}
@media screen and (max-width: 640px){
  .btn{
    width: 60%;
  }
}
@media screen and (max-width: 425px){
  .btn:before{
    width: 30px;
    left: -1rem;
  }
}

/*セクション上下の余白を設定*/
.sec{
  padding: 130px 0;
}
@media screen and (max-width: 640px){
  .sec{
    padding: 15% 0;
  }
}
 /*========= LoadingのためのCSS ===============*/
.opening{
	margin: 0;
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fefefe;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999999;
	border: 20px solid;
	border-image: linear-gradient(to right, #0097de, #0067b8) 1;
}
.opening_column{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.opening_logo{
display: flex;
	flex-direction: column;
	align-items: center;
}
.logo-part-bottom{
	display: flex;
	margin-top: -43px;
}
.logo-part{
	opacity: 0;
	transform: translateY(30px);
	position: relative; 
	z-index: 9999;
}
/*.logo-part img{
	filter: drop-shadow(3px 5px 20px #fff);
}*/

.part1 img{
	width: 103px;
	height: auto;
	display: block;
	/*filter: drop-shadow(0px -5px 20px #fff);*/
}
.part2 img{
	width: 80px;
	display: block;
	margin-top: -18.1px;
	margin-left: -1.3px;
	/*filter: drop-shadow(-3px 10px 20px #fff);*/
}
.part3 img{
	width: 80px;
	display: block;
	margin-left: -12px;
	margin-top: -2px;
	/*filter: drop-shadow(10px 5px 20px #fff);*/
}
.opening_p{
	opacity: 0; 
}
.opening_p._name{
	color: var(--main_blue);
	font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
	font-weight: bold;
	letter-spacing: 0.1rem;
	margin-top: 20px;
}
.opening_p._works{
	color: var(--txt_color);
}
@media screen and (max-width: 425px){
	.opening_p._works{
		font-size: 0.8rem;
	}
}


/*ヘッダー*/
#header{
  position: sticky;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  background: #fff;
}
.header_left, .header_right {
  height: 100%;
}
.header_left{
  display: flex;
  align-items: center;
  margin: 0 90px 0 1rem;
  width: 45%;
}
h1.logo{
  width: 70%;
  max-width: 330px;
  margin-right: 0.5rem;
}
h1.logo a:hover{
	opacity: 0.6;
}
.header_local{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #efefef;
  padding: 0.6rem 0.25rem;
  border-radius: 5px;
  width: 240px;
}
.header_local img{
  width: 15%;
  margin-right: 0.5rem;
}
.header_local_text{
    width: 80%;
}
.header_local_text p{
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.3;
}
.header_local_text p:first-child{
  color: #fff;
  text-align: center;
  font-weight: bold;
  background: var(--main_blue);
	padding: 0.2rem 0;
	margin-bottom: 0.3rem;
}
.header_right{
  background: var(--main_blue);
  display: flex;
  justify-content: end;
  align-items: center;
  width: 70%;
  position: relative;
}
.header_right::before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0px 90px 50px;
  border-color: transparent transparent var(--main_blue) transparent;
  top: 0;
  left: -50px;
}
.nav-column li.header_menu_icon{
  width: 35px;
  margin: 0 0.5rem;
}
.nav-column li.header_menu_icon a:hover{
  opacity: .8;
}
@media screen and (max-width: 1024px){
  .header_left{
    width: 95%;
  }
  .header_left .logo_wrap{
    flex-direction: row;
  }
  .header_right{
    background: none;
    width: 0;
  }
  .header_right::before{
    content: none;
  }
}
@media screen and (max-width: 640px){
  #header{
    padding: 0;
    height: auto;
  }
  .header_left{
    flex-direction: column;
    width: 100%;
    margin: 1rem;
  }
  h1.logo{
    max-width: none;
    margin: 0 auto 0.5rem 0;
  }
  .header_local{
    width: 100%;
    max-width: none;
  }
  .header_local img{
    width: 55px;
  }
	.header_local_text{
    width: auto;
	}
	.header_local_text p{
		font-size: 0.9rem;
	}
}
/*ナビゲーションのデザイン*/
.nav_content{

}
.nav-column li {
    margin-right: 0.8rem;
}
.nav_list{
  display: flex;
  justify-content: end;
  align-items: center;
}
.nav_list.-footer li{
  margin-right: 40px;
}
.nav_list a{
  color: #fff;
  font-weight: bold;
  padding-bottom: 3px;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}
.nav_list a:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}

.nav_list.-footer{
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.nav_list.-footer li a{
	font-weight: normal;
}


/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after{
  display: none;
}

/*バーガーメニュー*/
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

@media screen and (max-width: 1024px){
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open{
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    background: var(--main_blue);
  }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after{
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
    transition: 0.5s;
    position: absolute;
  }
  /*ナビゲーションのデザイン*/
  .nav_content{
    width: 90%;
    max-width: 500px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 99;
    background: linear-gradient(180deg, rgb(0, 151, 222), rgb(0, 103, 184));
    transition: .5s;
  }
  .nav_content .nav_list{
    flex-direction: column;
    align-items: center;
    background: none;
  }
  .nav_content .nav_list li{
    width: 100%;
    margin-right: 0;
    border-bottom: 1px solid #fff;
  }
  .nav_content .nav_list li a{
    color: #fff;
    display: block;
    padding: 20px 12px;
    text-align: center;
  }
  .nav_list li::after{
    display: none;
  }
  .nav-column li.header_menu_icon{
    display: none;
  }
  .sns_list{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 5% auto;
    padding: 3% 1%;
    width: 80%;
    border: 1px solid #fff;
  }
  .sns_list li{
    border-bottom: none;
  }
  .sns_list li a{
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
	.sns_list li a img{
		width: 50px;
		height: 50px;
	}
}

@media screen and (max-width: 768px){
  .nav_list.-footer a{
    line-height: 1.6;
    padding: 3% 0;
  }
  .nav_list.-footer{
    flex-wrap: wrap;
  }
  .nav_list.-footer li{
    width: auto;
    margin-right: 4%;
  }
  .nav_list.-footer li:last-child{
    margin-right: 0;
  }
}
@media screen and (max-width: 640px){
	.sns_list{
		flex-direction: column;
	}
	.sns_list li{
    margin-bottom: 1rem;
  }
	.sns_list li:last-child{
    margin-bottom: none;
  }
}
@media screen and (max-width: 425px){
  .sns_list{
    flex-direction: column;
  }
  .sns_list li{
    width: 100%;
  }
}


#drawer_input:checked ~ .drawer_open{
  background: var(--txt_color);
}

/*スクロールしたらナビゲーションに付与される*/
.fixed{
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

#drawer_input:checked ~ .drawer_open span::before,
#drawer_input:checked ~ .drawer_open span::after{
  background: #fff;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
	right: 0;

}
.txt_box{
  width: 47%;
}


.side_toContact{
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 60;
  background: var(--main_blue);
  border-radius: 5px 0 0 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.4);
}
.side_toContact:hover{
  opacity: 0.6;
}
.side_toContact img{
  width: 1.5rem;
  margin-bottom: 0.8rem;
}
.side_toContact p{
  color: #fff;
  font-weight: bold;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 640px) {
  .side_toContact{
    top: 50%;
  }
}

/*TOPへ戻るボタン*/
 .re-btn {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 70;
  -webkit-transition: .4s;
  max-width: 30px;
}
.re-btn img {
  width: 100%
}
.re-btn:hover {
  opacity: .5;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)"
}

@media screen and (max-width: 640px) {
  .re-btn {
    position:fixed;
    bottom: 2%;
    right: 2%;
    z-index: 50;
    -webkit-transition: .4s;
    width: 5%;
    z-index: 80;
    max-width: 80px;
    opacity: .7
  }
  .re-btn img {
    width: 100%
  }
  .re-btn:hover {
    opacity: .7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)"
  }
}

/* ================================================
FOOTER
================================================ */
footer {
  background: 
    url(./assets/img/cmn/bg_footer.svg) no-repeat right 62% / cover,
    linear-gradient(90deg, rgb(51, 51, 51), rgb(114, 113, 113));
  padding: 100px 0 0;
}
.footer_wrap{
  display: flex;
}
.footer_left{
  width: 49%;
}
.footer_logo_wrap{
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}
.footer_logo{
  max-width: 80px;
  margin-right: 1.5rem;
}
.footer_logo_wrap p{
  color: #fff;
}
.footer_company_kana{
  font-size: 0.8rem;
  text-align: right;
  letter-spacing: 0.1rem;
}
.footer_company_name{
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}
.footer_company_work{
  text-align: center;
}
.footer_adress{
  margin-bottom: 2rem;
}
.footer_adress dt, .footer_adress dd{
  color: #fff;
}
.footer_adress > div{
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.footer_adress dt{
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.8;
  border: 1px solid #fff;
  width: 60px;
}
.footer_adress dd{
  line-height: 1.5;
  width: 100%;
  margin-left: 0.8rem;
}
.footer_sns_wrap{
  display: flex;
}
.footer_sns_wrap a{
  width: 10%;
}
.footer_sns_wrap a:hover{
  opacity: .5;
}

.footer_sns_wrap a:first-child img{
  border: 1px solid #fff;
  border-radius: 50%;
}
.footer_sns_wrap a{
  margin-right: 1rem;
}
.footer_sns_wrap a:last-child{
  margin-right: none;
}
.footer_right{
  width: 60%;
}
.footer_menu{
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer_menu_ul_wrap h5{
  color: #fff;
  line-height: 2;
}
.footer_menu_ul_wrap ul li{
  margin-left: 0.8rem;
}
.footer_menu_ul_wrap ul li a{
  color: #dcdddd;
}
footer .copy{
  color: #fff;
  text-align: right;
  display: block;
  margin-top: 5%;
  padding: 1% 0;
  border-top: 1px solid #fff;
}
.footer_sp_only{
	display: none;
}
@media screen and (max-width: 1024px){
  .footer_wrap {
    justify-content: space-around;
  }
  .footer_left {
    width: 50%;
  }
  .footer_logo {
    margin: 0 0 1rem;
  }
  .footer_adress {
    width: 56vw;
    margin: 0 auto 1rem;
  }
  .footer_sns_wrap {
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
  }
  .footer_sns_wrap a {
    width: 17%;
  }
  .footer_logo_wrap,
  .footer_menu{
    flex-direction: column;
  }
  .footer_right{
    width: auto;
  }

  .nav_list.-footer{
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px){
  .footer_wrap{
    flex-direction: column;
  }
  .footer_left, .footer_right{
    width: 100%;
  }
  .footer_logo_wrap{
    justify-content: center;
  }
	.footer_sns_wrap a{
        width: 13%;
    }
  .footer_menu_ul_wrap{
    width: 75%;
  }
  .footer_menu{
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 640px){
  footer{
    padding: 15% 0 0;
  }
  .footer_adress{
    width: 70%;
  }
  .footer_adress dd{
    width: auto;
  }
  footer .copy{
    margin-top: 15%;
  }
	.footer_sp_only{
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		display: flex;
		z-index: 70;
		box-shadow: 0px 0px 10px 0px rgba(51, 51, 51, 0.8);
	}
	.footer_sp_only a{
		color: #fff;
		text-align: center;
		font-weight: bold;
		line-height: 1.3;
		width: 50vw;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 3%;
	}
	.footer_sp_only a:hover{
		opacity: 0.6;
	}
	.footer_sp_only a:first-child{
		background: var(--main_blue); 
	}
	.footer_sp_only a:last-child{
		background: var(--main_green);
	}
	.footer_sp_only a figure{
		width: 40px;
		height: 40px;
		margin-right: 1rem;
	}
}
@media screen and (max-width: 425px){
  .footer_company_name{
    font-size: 1.8rem;
  }
	::-webkit-full-page-media, :future, :root .footer_company_name{
    font-size: 1.7rem;
  }
	::-webkit-full-page-media, :future, :root .footer_company_work{
		font-size: 0.8rem;
	}	
  .footer_company_kana{
    font-size: 0.75rem;
    letter-spacing: 0.07rem;
  }
  .footer_adress{
    width: 90%;
  }
	.footer_sns_wrap a{
        width: 17%;
    }
  .footer_menu_ul_wrap{
    width: 100%;
  }
}

/* ================================================
TOP
================================================ */
/*  FV  */
.fv{
    height: calc(70vh + 120px + 8rem);
    background: url(./assets/img/top/bg_fv.jpg) no-repeat center left / cover;
}
.fv .copy-wrap{
  padding: 5% 0;
}
.fv h2{
  text-align: right;
}
.fv h2 span{
  font-size: clamp(2rem, 0.222rem + 3.7vw, 3rem);
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #fff;
  display: block; 
  width: fit-content;
  background: var(--txt_color);
  padding: 0.5rem;
  margin-left: auto;
}
.vegas-slide{
  width:90%;
  margin-left: auto!important;
  margin-bottom: 13%!important;
}
.vegas-content{
  padding: 0;
}
/*ファーストビューの基準の位置を変更する*/
.fv .vegas-slide-inner{
  background-position: center center!important;
}
@media screen and (max-width: 768px){
  .fv{
    height: calc(47vh + 120px + 8rem);
  }
	.fv .vegas-slide-inner{
		background-position: left 30% top 40%r!important;
	}
}
@media screen and (max-width: 640px){
	.fv{
    	height: calc(43vh + 120px + 8rem);
  	}
	.fv .vegas-slide-inner{
		background-position: center top 35%!important;
	}
}
@media screen and (max-width: 425px){
  .fv h2 span{
    font-size: 1.5rem;
  }
}

/*  問い合わせ  */
.contact_wrap{
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  margin: -21rem auto 2%;
  padding: 2%;
  flex-wrap: wrap;
}
.contact_contents{
  width: 30%;
}
.ttl_border_blue{
  font-size: 2rem;
  font-weight: 900;
  padding-left: 0.8rem;
  border-left: 8px solid var(--main_blue);
  margin-bottom: 5%;
}
.toTEL{
  color: var(--main_blue);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
  position: relative;
  margin-left: 2.5rem;
}
::-webkit-full-page-media, :future, :root .toTEL{
	font-size: 1.65rem;
}
.toTEL::before{
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background: url(./assets/img/cmn/icon_contact_tel.svg) no-repeat center center / contain;
  top: 54%;
  transform: translate(50%, -50%);
  left: -3.5rem;
}
.toTEL:hover{
  opacity: .5;
}
.contact_contents:first-child span{
  display: block;
  text-align: center;
}
.contact_contents:nth-child(2){
  position: relative;
}
.contact_contents:nth-child(2)::before{
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #dcdddd;
  top: 0;
  left: -10%;
}
.contact_contents figure{
  width: 80px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}
.contact_method{
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 8%;
}
.contact_method:hover{
  background: none;
}
.contact_method img{
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.contact_method:hover img{
  border-radius: 50%;
}
.toForm{
  background: var(--main_red);
  border: 1px solid var(--main_red);
}
.toForm:hover{
  color: var(--main_red);
}
.contact_method.toForm:hover img{
  border: 2px solid var(--main_red);
}
.toLine{
  background: var(--main_green);
  border: 1px solid var(--main_green);
}
.toLine:hover{
  color: var(--main_green);
}
.contact_method.toLine:hover img{
  border: 2px solid var(--main_green);
}
@media screen and (max-width: 1024px){
  .contact_contents:first-child{
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact_contents:nth-child(2),
  .contact_contents:nth-child(3){
    width: 45%;
  }
  .ttl_border_blue{
    width: 100%;
    margin-bottom: 1rem;
  }
  .contact_contents:first-child span{
    margin-left: 0.25rem;
  }
  .contact_contents:nth-child(2)::before{
    content: none;
  }
}
@media screen and (max-width: 768px){
	.contact_wrap{
		margin: -11rem auto 2%;
	}
}
@media screen and (max-width: 640px){
  .contact_wrap{
    padding: 5%;
	margin: -10rem auto 2%;
  }
  .contact_contents:first-child{
    flex-direction: column;
    align-items: center;
  }
  .contact_contents:nth-child(2), .contact_contents:nth-child(3) {
    width: 90%;
  }
  .contact_contents:nth-child(2){
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 425px){
  .contact_method{
    font-size: 1rem;
    text-align: center;
    padding: 3% 1%;
    flex-direction: row;
    justify-content: center;
  }
  .contact_contents figure{
    width: 40px;
    margin: 0 0.5rem 0 0;
  }
}

/*  TOP:サービス内容  */
#top_service{
  padding-top: 180px;
  position: relative;
  overflow: hidden;
}
#top_service::before,
#top_service::after{
  content: "";
  position: absolute;
}
#top_service::before{
  width: 90vw;
  height: 90%;
  background: #f2f2f2;
  top: 0;
  left: 0;
  z-index: -20;
}
#top_service::after{
  content: "Service";
  position: absolute;
  color:#0067b8;
  font-size: 14vw;
  font-weight: 900;
  opacity: .28;
  top: 10%;
  right: 0;
  z-index: -5;
}
.wrap{
  position: relative;
}
.wrap::after{
  content: "";
  position: absolute;
  width: 42%;
  height: 71%;
  background: url(./assets/img/top/bg_top_service.png) no-repeat center center / contain;
  top: 44%;
  right: -1%;
  mix-blend-mode: multiply;
  z-index: -10;
}
.top_service_ul{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
}
.top_service_ul li{
  flex: 0 0 calc(25% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.top_service_ul li a{
  display: flex;
  flex-direction: column;
  flex: 1;
}
.top_service_ul li a:hover{
  opacity: 0.5;
}
.list_num{
  font-size: 3rem;
  font-family: "inter-tight-variable";
  font-style: italic;
  font-weight: 900;
  line-height: 1.5;
  background: linear-gradient(90deg, #0097de 0%, #0067b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  position: relative;
  z-index: 10;
  margin: 0 0 -2.5rem 0.5rem;
}
.service_name{
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.3;
  background: linear-gradient(90deg, #0097de 0%, #0067b8 100%);
  padding: 0.5rem;
  margin-top: auto;
  height: 100%;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px){
  #top_service{
    padding-top: 100px;
  }
  #top_service::after{
    top: 5%;
  }
}
@media screen and (max-width: 768px){
  .wrap::after{
    width: 82%;
    height: 71%;
    top: 55%;
    right: -5%;
  }
  .top_service_ul {
    justify-content: center;
  }
  .top_service_ul li{
    flex: 0 0 39vw;
  }
}
@media screen and (max-width: 640px){
  #top_service::after{
    font-size: 21vw;
  }
	.service_name{
		font-size: 1rem;
		font-weight: 500;
		padding: 0.5rem 0.3rem;
	}
}
@media screen and (max-width: 425px){
	
}

#top_company{
  position: relative;
  overflow: hidden;
}
#top_company::before,
#top_company::after{
  content: "";
  position: absolute;
}
#top_company::before{
  width: 67%;
  height: 100%;
  background: linear-gradient(90deg, #0097de 0%, #0067b8 100%);
  top: 11%;
  right: 0;
  z-index: -30;
}

/* 擬似要素で文字列を2セット並べてシームレスに流す */
#top_company::after{
  content: "Company Company Company Company Company Company Company Company Company Company Company Company Company ";
  position: absolute;
  white-space: nowrap;
  color: #8cc0ea;
  font-size: 15rem;
  font-weight: 900;
  top: 69%;
  transform: translateY(-50%);
  animation: marquee 90s linear infinite;
  mix-blend-mode: overlay;
  z-index: -10;
}
::-webkit-full-page-media, :future, :root #top_company::after{
	height: 35vw;
	top: 79%;
}

/* シームレススクロール */
@keyframes marquee {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(-50%) translateY(-50%);
  }
}

.top_company_img_wrap{
  display: flex;
  width: 47%;
  z-index: -20;
  position: relative;
}
.top_company_img_wrap figure:first-of-type{
  margin-top: -20%;
}
.top_company_img_wrap figure:nth-of-type(2){
  margin-top: -10%;
}
@media screen and (max-width: 768px){
  #top_company::before{
    width: 94%;
    height: 94%;
    top: 3%;
  }
	::-webkit-full-page-media, :future, :root #top_company::after{
		height: 15rem;
		top: 86%;
	}
  #top_company::after{
    font-size: 10rem;
    top: 84%;
  }
  .column{
    flex-direction: column;
  }
  .top_company_img_wrap,
  .txt_box{
    width: 80%;
    margin: auto;
  }
}

/*  TOP:実績  */
#top_works, #top_blog{
  background: #f2f2f2;
  position: relative;
  z-index: 0;
}
#top_works::after,
#top_blog::after{
  content: "";
  position: absolute;
  width: 90vw;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: -10;
}
#top_works::after{
  border-radius: 0 0 30px 0;
}
.top_post_left{
  width: 40%;
	margin-left: 3%;
}
.top_article{
  width: 60%;
  margin-left: 3%;
}
.post_list li{
	border-bottom: 1px solid #c9caca;
}
.post_list li a{
	display: flex;
	align-items: center;
	padding: 1rem 0;
}
.post_list li a:hover{
	background: rgb(51, 51, 51, 0.1);
}
.post_category{
	color: #fff;
	text-align: center;
	line-height: 1.3;
	width: 14rem;
	padding: 0.3rem;
	margin-right: 1rem;
	background: var(--txt_color);
}
.post_category.mansion{
	background: #00239f;
}
.post_category.office{
	background: #0097de;
}
.post_category.factory{
	background: #84abe7;
}
.post_list li a h3{
	width: calc(100% - 10rem);
	text-align: justify;
}
@media only screen and (max-width: 768px) {
	.top_post_left{
		width: 90%;
	}
	.top_article {
		width: 90%;
		margin: auto;
	}
}

@media only screen and (max-width: 640px) {
	.post_list li a{
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-start;
		padding: 1.5rem 0;
	}
	.post_list li a p{
		width: fit-content;
		margin-right: 0;
	}
	.post_list li a h3{
		width: 100%;
		margin-top: 0.3rem;
	}
}

/*  TOP:コラム  */
#top_column{
  position: relative;
  background: #fff;
  z-index: 0;
}
#top_column::after{
  content: "";
  position: absolute;
  width: 90vw;
  height: 100%;
  background: #f2f2f2;
  border-radius: 30px 0 0 30px;
  top: 0;
  right: 0;
  z-index: -10;
}
.post_category.fire_safety_check{
	background: #25c071;
}
.post_category.renovation_and_repair{
	background: #27a614;
}
.post_category.prevention_inspection{
	background: #60bb08;
}
.post_category.management_inspection{
	background: #23d326;
}
.post_category.standpipe_pressure_test{
	background: #3e815f;
}
.post_category.generator_load_test{
	background: #71c88d;
}
.post_category.fire_prevention_equipment_inspection{
	background: #2ec49d;
}
.post_category.fire_training{
	background: #8ede0e;
}
.post_category.periodic_inspection{
	background: #94b893;
}
.post_category.building_equipment_inspection{
	background: #99be48;
}
.post_category.fire_prevention_equipment_inspection{
	background: #2ec49d;
}

/*  TOP:ブログ  */
.top_blog_ttl_wrap{
	display: flex;
	align-items: flex-end;
	margin-bottom: 3%;
}
.top_blog_ttl_wrap > .ttl_dot_wrap{
	width: auto;
}
.top_blog_ttl_wrap p{
	margin-left: 1rem;
}
#top_blog::after{
  border-radius: 0 30px 0 0;
}
.l-inner {
  position: relative;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
}
.c-temp {
  line-height: 1;
}
.c-temp .l-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.c-temp .text {
  font-size: 2.4rem;
  font-weight: bold;
}
.c-temp .button {
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  width: 12rem;
  padding: 1.6rem 0 1.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 100px;
  background: var(--color-theme);
}
.c-footer .l-inner {
  padding-top: 0;
}
.c-footer .text {
  color: var(--color-gray);
}
.c-info {
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 4rem;
  margin-bottom: 6.4rem;
}
.c-info li {
  position: relative;
  padding-left: 16px;
  color: #fff;
}
.c-info li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  display: inline-block;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--color-gray);
}
.c-info li+li {
  margin-top: 0.8rem;
}
.c-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  display: inline-block;
  min-width: 32rem;
  margin-bottom: 6.4rem;
  vertical-align: top;
  color: #fff;
}
.c-title [class*=ico-] {
  font-size: 1.3rem;
  line-height: 1;
  display: block;
  width: 10rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem 0 0.6rem;
  text-align: center;
  letter-spacing: 0.05em;
  border-radius: 100px;
  background: var(--color-theme-darken);
}
.c-title .ico-advanced {
  color: #fff;
  background: #333;
}
/* slider */
.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splide {
  z-index: 0;
}
/* 前へ / 次へボタン */
.splide__arrow--prev,
.splide__arrow--next {
  display: grid;
  place-content: center;
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--main_blue);
  border-radius: 50%;
}
.splide__arrow--prev::after,
.splide__arrow--next::after {
  width: 1rem;
  height: 1rem;
  content: "";
  border: solid #fff;
  border-width: 5px 5px 0 0;
}
.splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.splide__arrow:disabled {
  pointer-events: none;
  opacity: 0;
}
.splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}
.splide__pagination {
  font-size: 0;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}
.splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}
.splide-wrapper {
  position: relative;
}
.splide__arrow>svg {
  display: none;
}
.article-wrap{
  width: 95%;
  margin: auto;
}
.article-wrap .splide-area {
  position: relative;
}
.article-wrap .splide__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  justify-content: center;
  margin-top: 3.2rem;
  text-align: center;
  padding: 0;
}
.article-wrap .splide__pagination__page {
  width: 1.6rem;
  height: 7px;
  cursor: pointer;
  transition: var(--transition);
  vertical-align: top;
  background: #efefef;
  border: none;
}
.article-wrap .splide__pagination__page.is-active {
  width: 4rem;
  background: var(--main_blue);
}
.article-wrap .splide__arrow--prev,
.article-wrap .splide__arrow--next {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  border: none;
  transition: .4s;
	    box-shadow: 0px 0px 10px 0px rgba(51, 51, 51, 0.8);
}
.article-wrap .splide__arrow--prev:hover,
.article-wrap .splide__arrow--next:hover {
  background: #8cc0ea;
}
.article-wrap .splide__arrow--prev {
  right: calc(94% + 2.4rem);
}
.article-wrap .splide__arrow--next {
  left: calc(94% + 2.4rem);
}
.article-wrap .slide-media {
  padding-top: 62.5%;
}
.article-wrap .slide-media img {
  height: calc(100% + 16px);
  transform: translateY(-16px);
}
.article-wrap .slide-content {
  color: #c9caca;
  background: var(--txt_color);
  padding: 1rem 0.5rem;
}
.article-category {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  padding: 0 0.3rem;
  border: 1px solid #fff;
  background: var(--main_blue);
  z-index: 10;
}
.article-wrap .slide-title {
  color: #c9caca;
  font-size: clamp(1.2rem, 1.091rem + 0.55vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 4rem;
}
@media only screen and (max-width: 1024px) {
  .l-inner {
    padding: 0 3rem;
  }
  .pc {
    display: none !important;
  }
  .article-wrap .splide__arrow--prev::before,
  .article-wrap .splide__arrow--next::before {
    background: rgba(0, 0, 0, 0.3);

  }
  .article-wrap .splide__arrow--prev {
    right: calc(100% - 3.2rem);
  }
  .article-wrap .splide__arrow--next {
    left: calc(100% - 3.2rem);
  }
	.article-wrap .slide-title{
		height: 3.3rem;
	}
}
@media only screen and (max-width: 768px) {
	#top_works::after,
	#top_column::after,
	#top_blog::after{
		width: 95vw;
	}
	.top_blog_ttl_wrap{
		flex-direction: column;
		align-items: flex-start;
		margin: 0 0 10% 3%;
	}
	.top_blog_ttl_wrap p{
		margin-left: 0;
		width: 95%;
	}
  .pc-tab{
    display: none !important;
  }
}
@media only screen and (max-width: 640px) {
	.splide__arrow--prev, .splide__arrow--next{
		width: 3rem;
		height: 3rem;
	}
	.article-wrap .splide__arrow--prev {
  		right: calc(100% - 2.2rem);
	}
	.article-wrap .splide__arrow--next {
  	left: calc(100% - 2.2rem);
	}
}
@media only screen and (min-width: 1023px) {
  .tab-sp {
    display: none !important;
  }
  .splide__arrow--prev::before,
  .splide__arrow--next::before {
    transition: var(--transition);
  }
  .splide__arrow--prev:hover::before,
  .splide__arrow--next:hover::before {
    transform: scale(1.2);
  }
  .article-wrap .splide__track {
    padding: 16px 0;
  }
  .article-wrap .slide {
    transition: var(--transition);
  }
  .article-wrap .slide img {
    transition: var(--transition);
  }
  .article-wrap .slide:hover {
    transform: translateY(-16px);
  }
  .article-wrap .slide:hover img {
    transform: translateY(0);
  }
}
@media only screen and (min-width: 767px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 425px) {
	.l-inner{
        padding: 0 1rem;
    }
}

/* ================================================
下層ページ共通
================================================ */
/* パンくず */
.row_page_nav{
	background: #dfdfdf;
	padding: 0.3rem 0;
}
.breadcrumb ul{
	display: flex;
	flex-wrap: wrap;
}
.breadcrumb ul li{
	margin-right: 2rem;
	position: relative;
}
.breadcrumb ul li::after{
	content: ">";
	position: absolute;
	right: -1.5rem;
}
.breadcrumb ul li:last-child::after{
	content: none;
}
.breadcrumb ul li a{
	color: #0067b8;
	text-decoration: underline;
	transition: .4s;
}
.breadcrumb ul li a:hover{
	text-decoration: none;
}
/* ヘッダー */
.ttl_row_wrap{
	color: #fff;
	text-align: center;
}
.sec_header{
	padding: 8% 0;
	position: relative;
}
.sec_header::before,
.sec_header::after{
	content: "";
	position: absolute;
	display: block;
    width: 2px;
	height: 3.3vw;
	background: #fff;
	transform: rotate(37deg);
}
.sec_header::before{
	top: 4.8vw;
    left: 54%;
}
.sec_header::after{
	bottom: 4.5vw;
	left: 47%;
}
.sec_header._about{
	background: url(./assets/img/about/header.jpg) no-repeat center center / cover;
}
.sec_header._service{
	background: url(./assets/img/service/header.jpg) no-repeat center center / cover;
}
.sec_header._post{
	background: url(./assets/img/post/header.jpg) no-repeat center center / cover;
}
.sec_header._contact{
	background: url(./assets/img/contact/header.jpg) no-repeat center center / cover;
}
.ttl_row_wrap span{
	font-size: clamp(2rem, 0.222rem + 3.7vw, 3rem);
	font-weight: 900;
	position: relative;
}
.ttl_row{
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	margin-top: 0.5rem;
	position: relative;
}
.contact_footer{
	padding: 5% 0;
	position: relative;
}
.contact_footer::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 35%;
	background: #f2f2f2;
	bottom: 0;
	left: 0;
	z-index: -10;
}
.contact_footer .inner .contact_wrap{
	margin: auto;
	box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.5);
}
.ttl_contact{
	font-size: clamp(2rem, 0.222rem + 3.7vw, 3rem);
	font-weight: 900;
	line-height: 1.3;
	text-align: center;	
	position: relative;
	margin-bottom: 3rem;
}

.ttl_contact::after{
	content: "";
	position: absolute;
	width: 4.5rem;
	height: 0.4rem;
	background: linear-gradient(90deg, var(--main_red) 0% 33%, var(--main_green) 33% 66%, var(--main_blue) 66%);
	top: 140%;
	left: calc(48% - 1.5rem);
}
.contact_p{
	text-align: center;
	margin-bottom: 5%;
}
@media only screen and (max-width: 768px) {
	.sec_header{
		padding: 17% 0;
	}
	.sec_header::before,
	.sec_header::after{
		height: 80px;
	}
	.sec_header::before{
		top: 3vw;
		left: 59%;
	}
	.sec_header::after{
		bottom: 3vw;
		left: 43%;
	}
	.contact_footer{
		margin: 10% 0 0;
	}
	.ttl_contact::after{
		top: 125%;
	}
}
@media only screen and (max-width: 640px) {
	.sec_header::before,
	.sec_header::after{
		height: 40px;
	}
	.sec_header::before{
		top: 7vw;
		left: 59%;
	}
	.sec_header::after{
		bottom: 7vw;
		left: 43%;
	}
	.contact_footer{
		margin: 10% 0 0;
	}
	.ttl_contact::after{
		top: 125%;
	}
	.contact_footer{
		margin: 15% 0 0;
	}
}
@media only screen and (max-width: 425px) {
	.sec_header::before,
	.sec_header::after{
		height: 25px;
	}
	::-webkit-full-page-media, :future, :root .ttl_contact{
		font-size: 1.8rem;
	}
	::-webkit-full-page-media, :future, :root .contact_method{
		font-size: 0.9rem;
	}
}


/* ================================================
投稿アーカイブ
================================================ */
.post_archive_wrap{
	display: flex;
	justify-content: space-between;
	margin: 5% 0;
}
.archive_nav{
	width: 30%;
	position: sticky;
	top: 90px; 
	left:0;
	height: max-content;
	padding: 1.5%;
	border: 2px solid #efefef;
}
.archive_nav h3{
	font-weight: 500;
	line-height: 2;
	padding-left: 0.5rem;
	border-left: 8px solid var(--main_blue);
	border-bottom: 1px solid #dfdfdf;
	margin-bottom: 0.3rem;
}
.archive_nav h3:nth-of-type(2){
	border-left: 8px solid var(--main_green);
}
.archive_nav h3:last-of-type{
	border-left: 8px solid var(--main_red);
}
.archive_nav h3 a{
	width: 100%;
	display: block;
}
.archive_nav h3 a:hover{
	opacity: 0.5;
}
.article_child_list{
	margin: 0 0 1rem;
}
.article_child_list li a{
	display: block;
	padding-left: 1rem;
}
.article_child_list li a:hover{
	background: #dfdfdf;
}
.article_list_wrap{
	width: 65%;
}
.article_list li{
	border-bottom: 1px solid #dfdfdf;
}
.article-list__item a{
	padding: 1rem 0;
	display: block;
}
.article-list__item a:hover{
	background: rgb(51, 51, 51, 0.1);
}
.article_info{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.article_info > *{
	margin-bottom: 0.3rem;
}
.article-list__date{
	color :#a7aaad;
	margin-right: 0.5rem;
}
.category_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.article-list__cat{
	color: #fff;
	line-height: 1.5;
	padding: 0 0.3rem;
	background: var(--txt_color);
}
.article-list__cat.mansion{
	background: #00239f;
}
.article-list__cat.office{
	background: #0097de;
}
.article-list__cat.factory{
	background: #84abe7;
}
.article-list__cat.fire_safety_check{
	background: #25c071;
}
.article-list__cat.renovation_and_repair{
	background: #009eac;
}
.article-list__cat.prevention_inspection{
	background: #60bb08;
}
.article-list__cat.management_inspection{
	background: #23d326;
}
.article-list__cat.standpipe_pressure_test{
	background: #3e815f;
}
.article-list__cat.generator_load_test{
	background: #71c88d;
}
.article-list__cat.fire_training{
	background: #8ede0e;
}
.article-list__cat.periodic_inspection{
	background: #94b893;
}
.article-list__cat.building_equipment_inspection{
	background: #99be48;
}
.article-list__cat.fire_prevention_equipment_inspection{
	background: #2ec49d;
}
.article-list__cat.daily{
    background: #e84f4f;
}
.article-list__cat:hover{
	opacity: 0.6;
}
.article-list__cat.works{
	color: #fff;
	background: var(--main_blue);
}
.article-list__cat.read{
	color: #fff;
	background: var(--main_green);
}
.article-list__cat.blog{
	color: #fff;
	background: var(--main_red);
}
.article-list__body h4{
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.5;
}
.archive_pagination{
	margin-top: 1.5rem;	
}
.archive_pagination ul{
	display: flex;
	justify-content: center;
}
.archive_pagination ul li{
	margin: 0.5rem;
}
.archive_pagination ul li > *{
	border-radius: 50%;
	padding: 0.8rem 1.25rem;
}
::-webkit-full-page-media, :future, :root .archive_pagination ul li > *{
	padding: 0.8rem 1rem;
}
.archive_pagination ul li span{
	color: #fff;
	background: var(--main_blue);
}
.page-numbers.dots{
	color:  var(--txt_color);
	padding: 0.8rem 1rem;
	background: #f2f2f2;
}
::-webkit-full-page-media, :future, :root .page-numbers.dots{
	padding: 0.8rem;
}
.archive_pagination ul li a{
	background: #dfdfdf;
	border-radius: 50%;
}
.archive_pagination ul li a:hover{
	opacity: 0.5;
}
.next.page-numbers,
.prev.page-numbers{
	padding: 0.8rem 1rem;
}

@media only screen and (max-width: 768px) {
	.post_archive_wrap{
		flex-direction: column;
	}
	.archive_nav{
		width: 90%;
		position: relative;
		padding: 5.5%;
		margin: 10% auto;
		top: 0;
	}
	.article_list_wrap{
		width: 90%;
		margin:  5% auto 0;
	}
}
@media only screen and (max-width: 640px) {
	.article_info{
		flex-direction: column;
		align-items: flex-start;
	}
	.archive_pagination ul li {
	  margin: 0.2rem;
	}
}
@media only screen and (max-width: 425px) {
	.archive_pagination ul li > * {
	  padding: 0.5rem 1rem;
	}
	.page-numbers.dots,
	.next.page-numbers, 
	.prev.page-numbers{
    	padding: 0.55em 0.85em;
	}
}


/* ================================================
投稿シングルページ
================================================ */
#ez-toc-container{
	margin-bottom: 5%;
}
.article_wrap{
    width: 60%;
}
.single_wrap .ttl_border_blue{
	line-height: 1.5;
}
.article_wrap .article_info{
	margin-bottom: 1.5rem;
}
.article_detail_txt{
	margin-bottom: 2rem;
}
.article_detail_txt h1,
.article_detail_txt h2,
.article_detail_txt h3,
.article_detail_txt h4,
.article_detail_txt h5{
	font-weight: 600;
	margin-bottom: 1rem;
}
.article_detail_txt h1{
	font-size: clamp(1.3rem, 1.071rem + 0.57vw, 1.5rem);
	line-height: 1.5;
	background: linear-gradient(transparent 70%, #8cc0ea 70%);
}
.article_detail_txt h2{
	font-size: 1.2rem;
	font-weight: 600;
	padding-bottom: 0.5rem;
	border-bottom: solid 5px #8cc0ea;
  	position: relative;
}
.article_detail_txt h2::after{
	content: "";
	position: absolute;
	display: block;
	border-bottom: 5px solid var(--main_blue);
	bottom: -5px;
	width: 4rem;
}
.article_detail_txt h3{
	font-size: 1.2rem;
	padding: 0.5rem;
	border-left: 6px double #333;
}
.article_detail_txt h4{
	font-size: 1.2rem;
	font-weight: 600;
	background-image: linear-gradient(#8cc0ea 50%, var(--main_blue) 50%);
	background-size: 8px 100%;
	background-repeat: no-repeat;
	padding-left: 1rem;
}
.article_detail_txt h5{
	font-size: 1.2rem;
	padding-left: 5rem;
	position: relative;
}
.article_detail_txt h5::before{
	content: "";
	position: absolute;
	width: 4rem;
	height: 1px;
	background: var(--txt_color);
	top: 50%;
	left: 0;
}
.article_detail_txt a{
	color: #8cc0ea;
    text-decoration: underline;
}
.article_detail_txt a:hover{
	color: var(--main_blue);
}
.article_detail_txt p{
	margin-bottom: 1rem;
}
.article_detail_txt ul,
.article_detail_txt ol{
	padding-left: 1rem;
}
.article_detail_txt ul li{
	list-style: disc;
}
.article_detail_txt ol li{
	list-style: auto;
}
.article_detail_txt img{
	text-align: center;
	margin-bottom: 1rem;
}
.article_detail_txt strong{
    font-weight: 900;
}
.article_detail_txt table{
	width: 100%;
	margin-bottom: 1rem;
}
.article_detail_txt table th, .article_detail_txt table td {
    border: 1px solid #efefef;
	padding: 1rem 1rem 0 1rem;
}
@media only screen and (max-width: 768px) {
	.article_wrap{
		width: 90%;
		margin: auto;
	}
	.article-list__date{
		margin-bottom: 0.8rem;
	}
}

/* ================================================
問い合わせページ
================================================ */
.contact-txt-wrap{
    text-align: center;
    width: 70%;
    margin: auto;
    border: 1px solid var(--main_color);
    background: #f7f7f7;
    padding: 5%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.contact-txt-wrap p:first-child{
	width: 100%;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 5px solid var(--main_color);
}
.contact-txt-wrap > .contact-tel,
 .contact-fax{
	color: var(--main_color);
	line-height: 1.5;
	position: relative;
    display: block;
    transition: .4s;
}
.contact-txt-wrap > .contact-tel:hover{
	opacity: 0.5;
}
.contact-fax{
    font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
    letter-spacing: 0.3rem;
	padding-left: 3rem;
	width: fit-content;
	position: relative;
}
.contact-txt-wrap > .contact-tel::before,
.contact-fax::before{
	content: "";
	position: absolute;
	width: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
    height: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
	left: -6%;
    top: 50%;
    transform: translate(50%, -50%);
}
.contact-txt-wrap > .contact-tel::before{
	background: url(./assets/img/common/tel-b.svg) no-repeat center center / contain;
}

.contact-fax::before{
	background: url(./assets/img/contact/icon-fax.svg) no-repeat center center / contain;
}
.form-txt{
	text-align: center;
	margin: 6% auto 3%;
}
.contact_form{
    width: 85%;
    margin: auto;
	border: 1px solid #333;
    padding: 8%;
}
.contact_form dl{
	 line-height: 1.3;
    display: flex;
    flex-flow: wrap;
    align-items: stretch;
	justify-content: center;
    width: 100%;
}
.contact_form dt{
    width: 35%;
    padding: 12px 1rem;
	border-bottom: 1.5px solid var(--main_blue);
}
.contact_form dt:nth-child(9) {
    border-bottom: none;
}
.contact_form dt span{
    color: #fff;
    font-size: 0.8rem;
    background: #DC3232;
	line-height: 1;
    padding: 0.3rem;
    border-radius: 5px;
    margin: 0.3rem;
    display: inline-block;
}
.contact_form dd {
    width: 65%;
    padding: 12px 0;
	border-bottom: 1.5px solid #dfdfdf;
}
.contact_form dd input{
	width: 100%;	
}
.contact_form dt:last-child,.contact_form dd:last-child{
    border-bottom: none;
	padding-top: 1.5rem;
}
.form_choice span select{
    font-size: 1rem;
    line-height: 2rem;
    padding: 1rem;
    width: 60%;
}
.contact_form textarea{
    padding: 1rem;
    border: 1px solid #dfdfdf;
    width: 100% !important;
}
.e-article{
    margin: 1.5rem 0;
}
.pp_container{
    font-size: 15px;
    height: 200px;
    width: 90%;
    overflow-y: scroll;
    margin: 0 auto 1.5rem;
    padding: 2rem;
    border: 1px solid #dfdfdf;
}
.pp_container h4{
    font-size: 1.25rem;
    font-weight: normal;
	border-bottom: 1px solid var(--main_color);
    margin-bottom: 0.8rem;
}
.pp_container p {
    margin-bottom: 1.8rem;
}
.pp_container ul{
    padding-left: 1.5rem;
    margin-bottom: 1.8rem;
}
.pp_container ul li{
    list-style: disc;
    line-height: 1.8rem;
}
.acceptance_container {
    text-align: center;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}
.acceptance_container input{
    width: auto !important;
	margin-right: 0.5rem;
}
.submit-container {
    margin: auto;
}
.wpcf7-submit{
	width: auto!important;
    color: #fff;
    text-align: center;
    font-size: 1.25rem;
    text-decoration: none;
	background: var(--main_color);
    padding: 5px 50px;
    position: relative;
    display: table;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    box-sizing: border-box;
	margin: auto;
	background: var(--main_blue);
}
.wpcf7-submit::after{
    content: "";
	position: absolute;
    background: none;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    bottom: 0;
    content: "";
    height: 7px;
    width: 7px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    transform: rotate(45deg);
    transition: right .3s;
 }
.wpcf7-submit:hover{
    opacity: 0.7;
}
@media screen and (max-width: 768px) {
    .contact-fax{
        padding-left: 2rem;
        letter-spacing: 0.2rem;
    }
	.form-txt {
		margin: 15% auto 2%;
	}
	.contact_form dl {
        flex-flow: column;
    }
    .contact_form dl dt, .contact_form dl dd{
        width: 100%;
    }
    .contact_form dt {
        padding: 1rem 0;
    }
	.contact_form dt:last-child,.contact_form dd:last-child{
		padding-top: 0;
	}
}
@media screen and (max-width: 640px) {
	.contact-txt-wrap {
		width: 90%;
		padding: 8% 5%;
	}
	.form_choice span select {
		width: 100%;
	}
}
/* thanksページ  */
.thanks p {
    margin: auto;
    width: 90%;
    text-align: center;
}
/* ================================================
会社案内
================================================ */
.sec_message{
	background: url(./assets/img/about/bg_message.png) no-repeat bottom right/ contain;
}
.message_wrap{
	align-items: center;
}
.message_txt{
	margin-right: 3%;
}
.message_content{
	margin: 5% 0;
}
.message_name{
	margin-left: auto;
}
.message_name p{
	text-align: right; 
}
.name{
	font-family: var(--font_mincho);
}
.message_wrap figure{
	width: 40%;
}
.sec_company_name .inner{
	position: relative;
}

.sec_company_name .inner::before{
	content: "";
	position: absolute;
	top: 5%;
	left: 0;
	background: url(./assets/img/about/bg_name.jpg) no-repeat center left 20%/ cover;
	width: 100%;
	height: 90%;
	z-index: -10;
}
.comapny_name_content{
	background: #fff;
	width: 60%;
	box-shadow: 0px 0px 10px 0px rgba(51, 51, 51, 0.25);
	margin: 0 5% 0 auto;
	padding: 5%;
	display: flex;
    flex-direction: column;
    align-items: center;
}
.comapny_name_content figure{
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid var(--main_blue);
    display: flex;
    align-items: center;
    justify-content: center;
	margin: -20% auto 5%;
}
.comapny_name_content figure img{
	width: 60%;
    height: 60%;
}
.comapny_name_content h3{
	font-size: clamp(2rem, 0.857rem + 2.86vw, 3rem);
	text-align: center;
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: 5%;
}
.sec_strengths{
	padding: 200px 0 130px;
	background: linear-gradient(90deg, rgb(0, 151, 222), rgb(0, 103, 184));
	border-radius: 25px 25px 0 0;
	position: relative;
	overflow: hidden;
}
.sec_strengths::before{
    content: "Strengths";
    position: absolute;
    color: #8cc0ea;
    font-size: 13vw;
    font-weight: 900;
    top: 2%;
    left: 19%;
    mix-blend-mode: overlay;
}
_::-webkit-full-page-media, _:future, :root .sec_strengths::before{
	left: 7vw;
	height: 100%;
	font-size: 16vw;
}
.ttl_dot_wrap._strengths{
    margin-bottom: 5%;
}
.ttl_dot_wrap._strengths,
.ttl_dot_wrap._strengths h2,
.ul_strengths li div > *{
	color: #fff;
}
.ul_strengths li{
	display: flex;
	align-items: flex-start;
	padding: 5% 0;
    border-bottom: 1px solid #fff;
}
.ul_strengths li:last-child{
	border-bottom: none;
}
.strengths_txt{
	width: 85%;
    padding-right: 5%;
}
.strengths_num{
	font-size: 3rem;
	font-family: "inter-tight-variable";
	font-weight: 900;
	font-style: italic;

}
.ttl_strengths{
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 3%;
	position: relative;
}
.ttl_strengths::after{
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background: #fff;
    top: 50%;
    right: -15%;
}
.strengths_txt p{
	text-align: justify;
}
.ul_strengths li figure{
    margin-right: calc((50vw - 50%) * -1);
	z-index: 10;
}
.ul_strengths li figure img{
	border-radius: 5px 0 0 5px;
}
.sec_about{
	padding: 130px 0 30px;
}
.dl_about{
	width: 85%;
	margin: 5% auto;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.dl_about dt,
.dl_about dd{
	border: 1px solid #dfdfdf;
	padding: 1rem 0.5rem;
}
.dl_about dt{
	width: 20%;
	text-align: center;
	background: #f2f2f2
}
.dl_about dd{
	width: 80%;
	padding: 1rem 0.5rem 1rem 3rem;
}
@media screen and (max-width: 768px) {
	.message_txt{
    	width: 85%;
	}
	.name{
		margin-bottom: 8%;
	}
	.message_wrap figure{
    	width: 70%;
	}
	.ul_strengths li{
		flex-direction: column;
	}
	.sec_strengths::before{
		font-size: 18vw;
		top: 3%;
        left: 5%;
	}
	.strengths_txt{
		padding-right: 0;
		margin: 0 auto 5%;
	}
	.ul_strengths li figure{
		width: 85%;
		margin: auto;
	}
	.ul_strengths li figure img{
		border-radius: 5px;
	}
}
@media screen and (max-width: 640px) {
	.sec.sec_company_name{
		position: relative;
	}
	.sec.sec_company_name::before{
		content: "";
		position: absolute;
		width: 100%;
		height: 20%;
		background: url(./assets/img/about/bg_name.jpg) no-repeat top 20% left 20%/ cover;
		top: 0;
		left: 0;
	}
	.sec_company_name .inner::before{
		content: none;
	}
	.comapny_name_content{
		width: 85%;
		margin: 15% auto 0;
	}
	.comapny_name_content figure{
		width: 80px;
		height: 80px;
		margin: -13% auto 5%;
	}
	.comapny_name_content h3{
		text-align: center;
	}
	.dl_about dt,
	.dl_about dd{
		width: 100%;
		text-align: center;
	}
	.dl_about dd{
		padding: 1rem 0.3rem;
	}
}
@media screen and (max-width: 425px) {
	.sec_company_name .inner::before{
		top: -5%;
	}
	.comapny_name_content h3{
		font-size: 1.8rem;
	}
	.strengths_num{
		font-size: 2.5rem;
	}
	.ttl_strengths{
		font-size: 1.5rem;
	}
	.ttl_strengths::after{
		width: 34%;
	}
}


/* ================================================
業務内容ページ
================================================ */
.ul_service li{
	display: flex;
	justify-content: space-around;
	align-items: center;
    padding: 5% 0;
}
.ul_service li:nth-child(2n){
	flex-direction: row-reverse;
}

.ul_service_name{
	display: flex;
	align-items: baseline;
}
.ul_service_name span{
	font-size: 4rem;
    font-weight: 600;
    font-family: "inter-tight-variable";
    font-style: italic;
    background: linear-gradient(90deg, #0097de 0%, #0067b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 5rem;
    margin-right: 0.8rem;
}
.ul_service_name h2{
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.5;
}
.ul_service li figure{
	width: 35%;
}
.service_contents{
    width: 55%;
}
.service_contents p{
	text-align: justify;
}
.ul_case{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.ul_case li{
	width: 23%;
	border: 1px solid #dfdfdf;
	display: flex;
    flex-direction: column;
}
.ul_case li > *{
	width: 90%;
}
.ul_case li h3{
	color: #fff;
	text-align: center;
	font-weight: 900;
	line-height: 1.5;
	background: linear-gradient(90deg, #0097de 0%, #0067b8 100%);
	padding:  4% 2%;
	width: 100%;
}
.ul_case li h4{
	text-align: center;
	border-bottom: 1px solid #dfdfdf;
	margin: 3% auto;
}
.inspection_list{
	flex-grow: 1;
	margin: 3% auto;
}
.inspection_list li{
	width: 100%;
	border: none;
	padding-left: 1rem;
	position: relative;
}
.inspection_list li::before{
	content: "";
	position: absolute;
	width: 0.3rem;
	height: 0.3rem;
	border-radius: 50%;
	background: var(--txt_color);
	top: 50%;
	transform: translate(50%, -50%);
	left: 0;
}
.case_price{
	color: var(--main_blue);
	font-size: 1.5rem;
	font-weight: 900;
	text-align: center;
	border-top: 1px solid #dfdfdf;
	margin: auto;
}
@media screen and (max-width: 768px) {
	.ul_case li{
		width: calc(100% / 2 - 20px);
	}
	.inspection_list li{
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
	.ul_service_name{
		flex-direction: column;
	}
	.ul_service_name span{
		font-size: 2rem;
		line-height: 1.3;
		margin: 0.8rem 0 0.3rem;
	}
	.ul_service_name h2{
		font-size: 1.8rem;
		line-height: 1.3;
		margin-bottom: 0.5rem;
	}
	.ul_service li{
		padding: 14% 0;
	}
	.ul_service li,
	.ul_service li:nth-child(2n){
		flex-direction: column;
		align-items: center;
	}
	.ul_service li figure{
    	width: 85%;
    	position: relative;
	}
	.service_contents{
		width: 85%;
	}
}
@media screen and (max-width: 425px) {
	.ul_case li{
		width: 85%;
	}
}