@charset "UTF-8";
/* style.css */

/* ------------------------------
   基本設定
------------------------------ */
.text-orange{
	color: #e95513 !important;
}
.contents-inner{
	margin-top: 36px;
}
main img {
	max-width: 100%;
	display: block;
	border-radius: 15px;
}
main,
.l-main-inner{
	overflow: hidden !important;
	position: relative;
}
/* ------------------------------
   ヒーローエリア（最上部）
------------------------------ */
#point01{
	margin-top: 90px;
}
.hero_area{
  display: flex;
  justify-content: space-between; /* ← 両端揃い（左右に広げる） */
  align-items: flex-start;        /* ← 上揃い */
}
.hero_item__left{
	width: 24%;
}
.hero_item__right{
	width: 70%;
	position: relative;
}
.hero_title{
	font-size: 16px;
	display: block;
	text-align: left;
	margin-bottom: 8px;
}
.hero_message{
	font-size: 44px;
	line-height: 1.2;
	text-align: left;
	color: #e95513;
}
.hero__vertical {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	display: flex;              /* ← 追加 */
	align-items: flex-start;    /* ← 上揃い */
}
.hero__vertical h2{
	margin: 0 auto;
	padding: 0 !important;
	height: 100%;
}
/**** タブレット用 768pxまで ****/
@media screen and (max-width: 768px) {
	.hero_message{
		font-size: 36px;
	}
}
/**** スマホ用 481pxまで ****/
@media screen and (max-width: 481px) {
	.hero_area{
		display: block;
	}
	.hero_message{
		font-size: 32px;
	}
	.hero_item__left,
	.hero_item__right{
		width: 100%;
	}
	.hero_item__left{
		margin-bottom: 36px;
	}
	#point01{
		margin-top: 0;
	}
}

/* ------------------------------
   疑似要素
------------------------------ */
.w_f_item-1,
.w_f_item-2,
.w_f_item-3,
.w_f_item-4,
.w_f_item-5{
	position: relative;
}
/* 初期状態：非表示（opacity:0 & 下に少しズレ） */
.w_f_item-1::after,
.w_f_item-2::after,
.w_f_item-3::after,
.w_f_item-4::after,
.w_f_item-5::after {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 2s ease, transform 1s ease;
  /* ここに your design background などを記述 */
  /* 例）background: rgba(0,0,0,0.1); */
}
/* 表示状態：ふわっと出現 */
.w_f_item-1.active::after,
.w_f_item-2.active::after,
.w_f_item-3.active::after,
.w_f_item-4.active::after,
.w_f_item-5.active::after {
  opacity: 1;
  transform: translateY(0);
}
.w_f_item-1:after {
  content: "";
  position: absolute;
  bottom: 0;       /* 位置調整は適宜変更 */
  right: -160px;
  width: 207px; /* 画像サイズに合わせて */
  height: 175px;
  background-image: url("../img/item/w_f_01.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none; /* 任意：クリックを無効化 */
  z-index: 2; /* 必要なら調整 */
}
.w_f_item-2:after {
  content: "";
  position: absolute;
  bottom: 0;       /* 位置調整は適宜変更 */
  left: -320px;
  width: 245px; /* 画像サイズに合わせて */
  height: 312px;
  background-image: url("../img/item/w_f_02.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none; /* 任意：クリックを無効化 */
  z-index: 2; /* 必要なら調整 */
}
.w_f_item-3:after {
  content: "";
  position: absolute;
  bottom: -100px;       /* 位置調整は適宜変更 */
  right: -260px;
  width: 297px; /* 画像サイズに合わせて */
  height: 177px;
  background-image: url("../img/item/w_f_03.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none; /* 任意：クリックを無効化 */
  z-index: 2; /* 必要なら調整 */
}
.w_f_item-4:after {
  content: "";
  position: absolute;
  top: -100px;       /* 位置調整は適宜変更 */
  left: -320px;
  width: 261px; /* 画像サイズに合わせて */
  height: 195px;
  background-image: url("../img/item/w_f_04.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none; /* 任意：クリックを無効化 */
  z-index: 2; /* 必要なら調整 */
}
.w_f_item-5:after {
  content: "";
  position: absolute;
  bottom: -160px;       /* 位置調整は適宜変更 */
  right: -260px;
  width: 262px; /* 画像サイズに合わせて */
  height: 331px;
  background-image: url("../img/item/w_f_05.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none; /* 任意：クリックを無効化 */
  z-index: 2; /* 必要なら調整 */
}
/**** タブレット用 768pxまで ****/
@media screen and (max-width: 768px) {
	.w_f_item-1::after,
	.w_f_item-2::after,
	.w_f_item-3::after,
	.w_f_item-4::after,
	.w_f_item-5::after{
		display: none;
	}
}
/* ------------------------------
   見出し共通
------------------------------ */
.page-template-default h2.catchcopy__title::before,
.page-template-default .hero__vertical h2::before{
    display: none !important;
}
h2.catchcopy__title{
	font-size: 48px !important;
	text-align: left !important;
	line-height: 1.2;
}
.feature-title h3{
	background: #F7B52C !important;
	color: #fff !important;
	padding: 4px 12px !important;
	font-size: 18px;
	display: inline-block;
	margin: 0 !important;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.feature-title p{
	color: #3e3a3a !important;
	line-height: 1.5;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	margin-top: 12px;
}
h3{
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif" !important;
}
a{
	text-decoration: none !important;
}
/**** スマホ用 481pxまで ****/
@media screen and (max-width: 481px) {
	h2.catchcopy__title {
		font-size: 36px !important;
	}
}
/* ------------------------------
   ポイント 4つのブロック
------------------------------ */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: 24px;
	padding: 24px;
	background: #fff;
}
.feature-card {
	padding: 16px;
	text-align: center;
}
.feature-card__icon {
	width: 110px;
	margin: auto;
}
.feature-card__icon img{
	display: block;
	border-radius: 0 !important;
}
.feature-card__title {
	font-weight: 700;
	font-size: 20px;
	margin: 20px auto 12px !important;
	color: #e95513 !important;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif" !important;
}
.feature-card__text {
	text-align: left;
	line-height: 1.9;
	font-size: 15px;
}
/**** スマホ用 481pxまで ****/
@media screen and (max-width: 481px) {
	.feature-grid {
		display: block;
	}
	.feature-card{
		width: 100%;
	}
	.feature-card__title{
		font-size: 20px !important;
	}
}