/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 05 2026 | 07:56:02 */
html {
	font-family: "Bellefair", serif;
	font-weight: 400;
	font-style: normal;
}

/* 会社情報セクション（COMPANY INFO） */
.company-info {
	background-color: #f7f8fb;
	padding: 40px 32px;
	border-radius: 16px;
	max-width: 980px;
	margin: 40px auto 80px;
}

/* 2カラム調整 */
.company-info .wp-block-columns {
	align-items: flex-start;
	column-gap: 48px;
}

/* 左カラム（リード） */
.company-info .wp-block-column:first-child {
	flex-basis: 38%;
}

.company-info .wp-block-column:first-child p {
	margin: 0 0 1em;
	line-height: 1.8;
}

.company-info .wp-block-column:first-child p:first-child {
	font-weight: 600;
}

/* ------------------------------
   右カラム（項目ブロックの装飾）
------------------------------ */
.company-info .wp-block-column:last-child p {
	background-color: #1a4472; /* 指定カラー */
	color: #fff; /* テキスト白 */
	padding: 14px 16px;
	margin: 0 0 12px;
	border-top: 1px solid #ddd; /* ライン（上） */
	border-bottom: 1px solid #ddd; /* ライン（下） */
	border-radius: 6px;
	line-height: 1.7;
	font-size: 15px;
}

/* 最初の項目は上の線だけ少し太めに */
.company-info .wp-block-column:last-child p:first-of-type {
	border-top-width: 2px;
}

/* 最後の項目は下の線だけ太めに */
.company-info .wp-block-column:last-child p:last-of-type {
	border-bottom-width: 2px;
}

/* スマホ表示調整 */
@media (max-width: 781px) {
	.company-info {
		padding: 28px 20px;
		margin: 24px auto 56px;
	}

	.company-info .wp-block-columns {
		display: block;
	}

	.company-info .wp-block-column:first-child,
	.company-info .wp-block-column:last-child {
		flex-basis: 100%;
	}

	.company-info .wp-block-column:first-child {
		margin-bottom: 24px;
	}
}

/* MW WP Form 送信ボタン */
.mw_wp_form input.contact-submit-btn {
	width: 300px;
	height: 50px;
	border-radius: 50px;
	line-height: 1.5;
	padding: 0 1.5em;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 16px;
	z-index: 1;
	color: #fff !important;
	border: 1px solid var(--main_color);
	background: var(--main_color);
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	cursor: pointer;
}

/* ホバー時（あれば） */
.mw_wp_form input.contact-submit-btn:hover {
	opacity: 0.9;
}

/* テキスト入力・メール・電話・セレクト・テキストエリア */
.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form textarea,
.mw_wp_form select {
	max-width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid #ddd;
	background-color: #ffffff;
	color: #222;
	font-size: 14px;
	line-height: 1.6;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

/* フォーカス時（クリック・入力中） */
.mw_wp_form input[type="text"]:focus,
.mw_wp_form input[type="email"]:focus,
.mw_wp_form input[type="tel"]:focus,
.mw_wp_form textarea:focus,
.mw_wp_form select:focus {
	outline: none;
	border-color: var(--main_color);
	box-shadow: 0 0 0 2px rgba(26, 68, 114, 0.15); /* #1a4472 のふんわり枠 */
	background-color: #fff;
}

/* テキストエリア少しだけ高さUP */
.mw_wp_form textarea {
	min-height: 160px;
	resize: vertical;
}

/* セレクトボックスの高さを他と揃える */
.mw_wp_form select {
	height: 46px;
}

/* ラジオ・チェックボックス周りの行間 */
.mw_wp_form input[type="radio"],
.mw_wp_form input[type="checkbox"] {
	margin-right: 6px;
}

.mw_wp_form input[type="radio"] + label,
.mw_wp_form input[type="checkbox"] + label {
	margin-right: 14px;
	cursor: pointer;
	font-size: 14px;
}

/* エラーメッセージ（[mwform_error]）ちょい整える */
.mw_wp_form .error {
	color: #d9534f;
	font-size: 12px;
	margin-top: 4px;
	display: block;
}

#footer_logo {
	display: none !important;
}
.mwform-submit-area {
	text-align: center;
	margin-top: 24px;
}

.mwform-submit-area input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9em 3em;
	border-radius: 999px;
	border: 1px solid #222;
	background: #222;
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-indent: 0.08em;
	cursor: pointer;
	transition:
		background 0.3s ease,
		color 0.3s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
	box-sizing: border-box;
}

.mwform-submit-area input[type="submit"]:hover {
	background: #fff;
	color: #222;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-1px);
}

.mwform-submit-area input[type="submit"]:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.mwform-submit-area input[type="submit"] {
		width: 100%;
		max-width: 320px;
	}
}

.c-logoMarquee{
  --logo-h: 2.5rem;
  --duration: 28s;

  overflow: hidden;
  width: 100%;
}

/* 両端をうっすらフェード（不要なら削除OK） */
.c-logoMarquee{
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.c-logoMarquee{
  --gap: 0px;
  --logo-h: 163px;
  --duration: 40s;

  overflow: hidden;
  width: 100%;
}

.c-logoMarquee{
  -webkit-mask-image: none;
  mask-image: none;
}

.c-logoMarquee__track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logo-marquee var(--duration) linear infinite;
  gap: var(--gap);
}

.c-logoMarquee__list{
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

@keyframes logo-marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); } 
}

@media (prefers-reduced-motion: reduce){
  .c-logoMarquee__track{ animation: none; }
}
#header_slider_content{
	inset:0;
}
#header_slider_content .content{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
    height: 100%;
    padding-inline: 5%;
    padding-block: 10% 10%;
}
@media screen and (max-width: 800px) {
	#header_slider_content .content{
        padding-inline: 0%;
        padding-block: 30vw 30vw;
        justify-content: flex-end;
}
}
#header_slider_content .catch {
    width: fit-content;
    padding-inline: 1.5rem;
    line-height: 1.1;
    padding-inline: 0rem;
	color: #ffffff;
	  text-shadow: 2px 0px 13px rgba(0, 0, 0, 0.85);
}
#header_slider_content .desc{
	    margin: 0px 0 0 0;
	    width: fit-content;
		color: #ffffff;
    padding-inline: 1.5rem;
	  text-shadow: 2px 0px 13px rgba(0, 0, 0, 0.85);
	    padding-inline: 0rem;
}