@charset "utf-8";

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ブログ用エディタ（クラシックエディタ）のカスタマイズ（2024-01-15mk）
※クラシックエディタではグローバルスタイルが読み込めないため、「ブログ専用」クラスを別に用意することとした
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
[class*="blog-h_"]{
	font-weight: 800;
}

.blog-h_large_a {
    border-bottom: 3px solid  #c1c1c1;
    position: relative;
}

.blog-h_large_a::before {
    content: '';
    width: 100px;
    height: 3px;
    background-color: var(--main,#002a96);
    position: absolute;
    bottom: -3px;
}

.blog-h_large_b::after {
    height: 4px;
}

.blog-h_middle_b {
    background-color: #000;
}

.blog-basic_btn01 {
    border-radius: 50px;
    border: 2px solid var(--main, #888);
}

.blog-basic_btn01:hover {
    opacity: 1;
    background: #fff;
    color: var(--main);
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ハンバーガーメニューのカスタマイズ(2023-03-13mk)
↓↓↓下記をまずは削除した上で、【https://coco-factory.jp/ugokuweb/move01-cat/humbugermenu/】から、お好みのボタンのCSSを追加
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	position: relative;/*ボタン内側の基点となるためrelativeを指定*/
	background:transparent;
	cursor: pointer;
	width: 50px;
	height:50px;
	border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	left: 14px;
	height: 2px;
	border-radius: 2px;
  background:var(--main);
	width: 45%;
}

.openbtn span:nth-of-type(1) {
	top:15px; 
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
再生ボタン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cmn_movie::after {
	animation: rotate 20s linear infinite;
}

@keyframes rotate {
	from {
		transform:translate(-50%, -50%) rotate(0deg); 
	}
	to {
		transform:translate(-50%, -50%) rotate(360deg);
	}
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
TOP > プロモ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#home_promo h2.ttl {
    color: transparent;
    background: url("images/promo_ttl_bg.jpg") no-repeat 80% 195% / auto 70%, 
  				url("images/promo_ttl_bg.jpg") no-repeat -30% 40% / auto 100% #000;
    background-clip: text;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
TOP > 導入事例
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*汎用 > カルーセル（全画面）*/
.cmn_carousel_full :is(.slick-prev, .slick-next)::before {
    font-size: 22px;
    border: 0;
    background: var(--main);
    color: #fff!important;
    width: 70px;
    height: 70px;
}

.cmn_carousel_full :is(.slick-prev, .slick-next) {
    top: -100px;
}

.cmn_carousel_full .slick-prev {
    right: 85px;
}