@charset "utf-8";


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--base-color: #fff;					/*テンプレートの土台となる色（主に背景カラー）*/
	--base-inverse-color: #1d2526;		/*上のbase-colorの対となる色（主にテキストカラー）*/

	--primary-color: #e0e000;			/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #1d2526;	/*上のprimary-colorの対となる色*/

	--space-large: 8vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*fadeInのキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*fadeOutのキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;visibility: hidden;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	  font-family: Noto Sans JP,sans-serif;
    color: #1f1f1f;
    line-height: 1.5;
    min-height: 100%;
    -webkit-text-size-adjust: none
}

	/*画面幅1200px以上の追加指定*/
	@media screen and (min-width:1000px) {

	html, body {
		font-size: 14px;
	}

	}/*追加指定ここまで*/

	/*画面幅1600px以上の追加指定*/
	@media screen and (min-width:1600px) {

	html, body {
		font-size: 1vw;
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family:YakuHanJP, "Noto Sans JP", sans-serif;/*フォント種類*/
	font-optical-sizing: auto;
	font-weight: 500;
	-webkit-text-size-adjust: none;
	background: var(--base-color);		/*varは背景色のことで冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭で指定しているbase-inverse-colorを読み込みます。*/
	line-height: 2;		/*行間*/
}

/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*input*/
input {font-size: 1rem;}

/*section*/
section {
	overflow-x: hidden;
	padding: var(--space-large);	
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}

/*===========================================================================
    ローディング画面
===========================================================================*/

/* キーフレームアニメーション */
@keyframes progress {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes fadeOut {
    0% { opacity: 1; pointer-events: auto; }
    100% { opacity: 0; pointer-events: none; }
}

/* ローディングブロック */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1d2526; 
background-image:
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url('https://booth.pximg.net/706f602e-24e2-42d9-a29c-6d2f5f990165/i/2695029/b9bcbc70-2672-4a5f-b8d8-ab018e5dee40_base_resized.jpg');
    background-size: cover; /* 画面いっぱいに広げる */
    display: flex; /* Flexboxを有効にする */
    flex-direction: column;
    justify-content: center; /* 垂直方向の中央寄せ */
    align-items: center; /* 水平方向の中央寄せ */
    z-index: 9999;
    animation: fadeOut 1s ease 2s forwards;
}

/* ロゴ画像 */
#loading img {
    width: 300px;
    margin-bottom: 20px;
}

.mixup-glitch {
    position: relative;
    font-family: "Archivo Black";
    font-size: 5rem;
    font-weight: bold;
    color: #fff;
    /* グリッチアニメーションの開始 */
    animation: glitch-in 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes glitch-in {
    0% { opacity: 0; transform: translateY(-20px) scale(0.95); }
    50% { opacity: 1; transform: translateY(0) scale(1.05); }
    100% { transform: scale(1); }
}

.mixup-glitch::before,
.mixup-glitch::after {
    content: 'MIXUP';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.mixup-glitch::before {
    color: #ff00c1;
    animation: glitch-left 1.5s infinite linear alternate-reverse;
}

.mixup-glitch::after {
    color: #00ffc1;
    animation: glitch-right 1.5s infinite linear alternate-reverse;
}

@keyframes glitch-left {
    0% { transform: translate(0); opacity: 0; }
    25% { transform: translate(-5px, -5px); opacity: 0.8; }
    50% { transform: translate(5px, 5px); opacity: 0.6; }
    75% { transform: translate(-3px, -3px); opacity: 0.9; }
    100% { transform: translate(0); opacity: 0; }
}

@keyframes glitch-right {
    0% { transform: translate(0); opacity: 0; }
    25% { transform: translate(5px, 5px); opacity: 0.7; }
    50% { transform: translate(-5px, -5px); opacity: 0.5; }
    75% { transform: translate(3px, 3px); opacity: 0.8; }
    100% { transform: translate(0); opacity: 0; }
}
/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: 20px 40px;
	
position: absolute;z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	flex-shrink: 0;
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: space-between;
	height: 76px;	/*ヘッダーの高さ*/
	    background-color: rgba(255, 255, 255, 0.9); /* 薄い白の背景 */
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	header {
		height: 90px;	/*ヘッダーの高さ*/
	}

	}/*追加指定ここまで*/

/*ロゴ画像*/
#logo img {
	display: block;
	width: 150px;	/*ロゴの幅*/
}
#logo {
	margin: 0;padding: 0;
	padding-left: 3vw;	/*ロゴの左側に空ける余白*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ロゴ画像*/
	#logo img {
		width: 200px;	/*ロゴの幅*/
	}

	}/*追加指定ここまで*/


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		
	/*メニューブロック全体の設定*/
	header > nav > ul {
		margin-right: 100px;	/*ハンバーガーアイコンに重ならないように余白*/
		display: flex;			/*横並びにする*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;text-decoration: none;
		font-size: 0.9rem;		/*文字サイズ90%*/
		padding: 0.5rem 1rem;	/*メニュー内の余白。上下、左右へ。*/
	}
	
	/*ドロップダウンメニュー冒頭の矢印アイコン*/
	header nav i {
		padding-right: 0.5rem;	/*右に空ける余白*/
	}

	}/*追加設定ここまで*/


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: fadeIn 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;z-index: 100;
	margin-left: 1rem;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	padding: 0.3em 1em;					/*上下、左右へのメニュー内の余白*/
	margin-top: 4px;					/*上に空けるスペース。ドロップダウン同士の隙間。*/
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	border: 1px solid var(--base-inverse-color);	/*枠線の幅、線種、varは色の指定で冒頭のbase-inverse-colorを読み込みます。*/
	border-radius: 3px;					/*角を少し丸くする指定*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}

/*メニューブロック内のロゴ画像の幅*/
#menubar .logo {
	width: 200px;
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;				/*ブロック内の余白。上、左右、下への順番。*/
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	animation: animation1 0.2s both;		/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	margin: 1rem 0;			/*メニューの外側に空けるスペース。上下、左右への順番。*/
}
.small-screen #menubar a {
	border-radius: 5px;		/*角を丸くする指定*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下、左右へ。*/
	background: var(--base-inverse-color);		/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
	color: var(--base-color);					/*背景色。冒頭のbase-colorを読み込みます。*/
}

/*子メニュー*/
.small-screen #menubar ul ul a {
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	margin-left: 2rem;	/*左に空けるスペース*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: fadeIn 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 0px;				/*右からの配置場所指定*/
	top: 0px;				/*上からの配置場所指定*/
	padding: 20px 15px;		/*上下、左右への余白*/
	width: 60px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 60px;			/*高さ*/
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform-origin: right top;
	background: var(--base-inverse-color);	/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
	border-radius: 0px 0px 0px 10px;		/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}

	/*画面700px以上の追加指定*/
	@media screen and (min-width:700px) {

	#menubar_hdr {
		transform: scale(1.5);	/*1.5倍のサイズに。お好みで。*/
	}

	}/*追加指定ここまで*/


/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid var(--base-color);	/*線の幅、線種、varは色のことで冒頭のbase-colorを読み込みます。*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: var(--base-inverse-color);
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(6px, 5.8px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(7px, -7px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}
.contact-box {
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  padding: 0 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  margin-top: 40px;
}

.contact-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  color: #000;
}

.contact-subtitle {
  font-size: 0.8rem;
  color: #666;
  margin: 5px 0 0;
}

.contact-arrow {
  font-size: 2rem;
  color: #007bff;
  font-weight: bold;
}
/*メイン画像
---------------------------------------------------------------------------*/
/*ブロック全体*/
#mainimg {
  /* 背景画像の設定を削除 */
  width: 100%;
  padding-top: 150%;
  position: relative;
  overflow: hidden;
}

/* 動画のスタイル */
#mainimg .main-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1; /* テキストやボタンより背面に配置 */
}

/* レスポンシブ対応 */
@media screen and (min-width: 420px) {
  #mainimg {
    padding-top: 56.25%;
  }
}

#mainimg > div {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 420px) {
  #mainimg > div {
    left: var(--space-large);
    align-items: flex-start;
    justify-content: center;
  }
}

/* テキストのブロックとボタンのスタイルは変更なし */
#mainimg p {margin: 0;}
#mainimg .text {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
color: #fff;}
@media screen and (min-width: 420px) {
  #mainimg .text {
    text-align: left;
    font-size: 3.6vw;
  color: #fff;}
}

/* ボタン */
#mainimg .btn {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 3vw;
  display: flex;
  gap: 1rem;
}
#mainimg .btn a {
  display: block;
  text-decoration: none;
  padding: 0.8rem 2rem;
  margin-bottom: 10px;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: transparent; /* 背景を透明にする */
  border: 2px solid; /* 線を追加 */
  white-space: nowrap;
}

/* 1つ目のボタン（お問い合わせ） */
#mainimg .btn p:nth-of-type(1) a {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
#mainimg .btn p:nth-of-type(1) a:hover {
  background-color: var(--primary-color);
  color: var(--primary-inverse-color);
}

/* 2つ目のボタン（資料請求） */
#mainimg .btn p:nth-of-type(2) a {
  color: #f7f7f7;
  border-color: #f7f7f7;
  letter-spacing: 0.1em;
}
#mainimg .btn p:nth-of-type(2) a:hover {
  background-color: var(--base-inverse-color);
  color: var(--base-color);
}

/* ボタンのレスポンシブな調整 */
@media screen and (min-width: 420px) {
  #mainimg .btn {
    font-size: 1.4vw;
  }
  #mainimg .btn a {
    margin: 0;
    padding: 0.6rem 3rem;
  }
}

/* ボタン内のアイコン */
#mainimg .btn i {
  transform: scale(1.4);
  padding-right: 0.8rem;
}

/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
}

/*h2見出し（共通）*/
main h2 {
	margin: 0;padding: 0;
	font-size: 1.4rem;		/*文字サイズ。240%。*/
	font-weight: 800;		/*太字に*/
	margin-bottom: 5vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	position: relative;
}

	/*画面700px以上の追加指定*/
	@media screen and (min-width:700px) {

	main h2 {
		font-size: 2.4rem;		/*文字サイズ。240%。*/
	}

	}/*追加指定ここまで*/


/*テキストをセンタリングする場合*/
main h2.c {
	align-items: center;
}

/*h2内のspan（小文字）*/
main h2 span {
	font-size: 0.85rem;	/*文字サイズ85%*/
	opacity: 0.5;		/*透明度。色を50%だけ出す。*/
	font-weight: normal;	/*太字ではなく標準にする*/
}

/*h2内のimg画像（「そのお悩み」という手書き風のふきだしに使っています）*/
h2 img {
	width: 100px;	/*画像の幅*/
	transform: rotate(-10deg);	/*左に10度傾ける。そのままがいいならこの１行を削除。*/
	position: absolute;
	left: -10px;	/*左からの配置場所*/
	top: -40px;	/*上からの配置場所。マイナスがついているので本来とは逆の方向に移動します。*/
}

	/*画面700px以上の追加指定*/
	@media screen and (min-width:700px) {

	h2 img {
		width: 140px;	/*画像の幅*/
		left: 40px;		/*左からの配置場所*/
	}

	}/*追加指定ここまで*/


/*フッター
---------------------------------------------------------------------------*/
footer {
   background-color: #ffe109;
  font-family: Arial, sans-serif;
  padding: 80px 5%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 50px;
}

.footer-column {
  flex: 1;
}

.company-name {
  font-size: 2rem;
  font-weight: bold;
}

.company-info {
  margin-top: 20px;
  font-size: 0.9rem;
}

.address {
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a0a0a0;
}

.footer-links i {
  margin-right: 8px;
  color: #fcb900;
}

.footer-promo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.promo-block {
  width: 250px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  color: #fff;
  text-decoration: none;
  display: block;
}

.promo-block:first-of-type {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('path/to/image1.jpg') no-repeat center center/cover;
}

.promo-block-lumo-plus {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('path/to/image2.jpg') no-repeat center center/cover;
}

.promo-text {
  position: absolute;
  bottom: 10px;
  left: 15px;
}

.promo-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.promo-description {
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-links, .footer-promo {
    margin-top: 30px;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	justify-content: center;
	gap: 1rem;	/*アイコン同士のマージン的な要素。１文字分。*/
}

	/*画面700px以上の追加指定*/
	@media screen and (min-width:700px) {
	
	.icons {
		justify-content: flex-start;
	}

	}/*追加指定ここまで*/

.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;
	display: block;
	background: rgba(0,0,0,0.9);
	text-align: right;
	padding: 0.5rem 1rem;
	color: #ccc;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


/*c2（２カラムレイアウト用）
---------------------------------------------------------------------------*/

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	.c2 {
		display: flex;
		gap: 2rem;
	}

	/*左側のタイトルブロックの幅*/
	.c2 .title {
		width: 30%;
	}

	/*右側のテキストブロック*/
	.c2 .text {
		flex: 1;
	}

	}/*追加指定ここまで*/
/* ニュースセクションのコンテナ */
.news-section {
  padding: 80px 50px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
}

.news-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
  width: 100%;
}

/* 左側の縦書きタイトル */
.news-title-vertical {
  padding: 0 40px;
  flex-shrink: 0;
}

.news-title-vertical p {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 4rem;
  font-weight: bold;
  color: #333;
  margin: 10px 0;
  line-height: 1;
}

/* 右側のコンテンツ */
.news-content-horizontal {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px; /* ニュース項目間の縦の隙間を確保 */
}

/* ニュースアイテム個別のスタイル */
.news-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%; /* 親要素の幅に合わせる */
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #ddd; /* 各ニュース項目を区切る上線 */
}

/* 最初のニュースアイテムから上線を削除 */
.news-item:first-of-type {
  border-top: none;
}

.news-category {
  background-color: #ffc107;
  color: #333;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: bold;
  white-space: nowrap;
}

.news-date {
  font-size: 0.9rem;
  color: #666;
  white-space: nowrap;
}

.news-text {
  font-size: 1rem;
  color: #333;
}
/*FAQ
---------------------------------------------------------------------------*/

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	.faq {
		font-size: 1.2rem;	/*文字サイズを120%*/
	}

	}/*追加指定ここまで*/

/*質問*/
.faq dt {
	display: flex;
	align-items: flex-start;
	border-radius: 3px;		/*角を少しだけ丸く*/
	margin-bottom: 1rem;	/*下に空けるスペース。質問ブロック同士の余白です。*/
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	padding: 1rem;	/*ブロック内の余白。１文字分。*/
}

/*「Q」アイコン*/
.faq dt::before {
	font-family: "Font Awesome 6 Free";
	content: "\51";	/*アイコン画像の指定*/
	margin-right: 0.5rem;	/*右側に空けるスペース*/
	background: var(--primary-inverse-color);	/*背景色。冒頭のprimary-inverse-colorを読み込みます。*/
	color: var(--primary-color);				/*文字色。冒頭のprimary-colorを読み込みます。*/
	border-radius: 50%;	/*角を丸くする*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	flex-shrink: 0;
	margin-top: 0.2em;	/*微調整*/
}

/*回答*/
.faq dd {
	padding: 0 1rem 1rem 3.7rem;	/*ボックス内の余白。上、右、下、左への順番。*/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.new dd {
	padding-bottom: 1rem;
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 2px;		/*角を丸くする指定*/
	padding: 0 1rem;		/*上下、左右へのブロック内の余白*/
	width: 8rem;			/*幅。8文字分。*/
	transform: scale(0.85);	/*85%のサイズに縮小*/
	border: 1px solid #777;	/*枠線の幅、線種、色*/
}

/*icon-bg1。サンプルテンプレートでは「重要」と書いてあるマーク*/
.new .icon-bg1 {
	border-color: transparent;	/*枠線を透明に*/
	background: #cd0000;		/*背景色*/
	color: #fff;				/*文字色*/
}

/*icon-bg2。サンプルテンプレートでは「サービス」と書いてあるマーク*/
.new .icon-bg2 {
	border-color: transparent;				/*枠線を透明に*/
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

	}/*追加指定ここまで*/


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 5px;	/*画像の余白*/
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}


/*テキストスライド
---------------------------------------------------------------------------*/
.text-slide-wrapper {
	overflow-x: hidden;
	margin-top: calc(-1 * (1.6 * var(--space-large)));	/*本来の位置より上にずらす。ずらしたくなければこの１行を削除。*/
}

.text-slide {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	display: flex;
	white-space: nowrap;
    font-size: 15vw;	/*文字サイズ*/
	opacity: 0.05;		/*透明度。色が5%出た状態。*/
}

.text-slide span {
	padding: 0 20px;
}


/*btn1（ボタン）
---------------------------------------------------------------------------*/
.btn1 a {
	text-shadow: none;display: block;text-decoration: none;
	background: #1f1f1f;		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: #faf7f5;	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	font-size: 1.4rem;		/*文字サイズ。140%に。*/
	padding: 0.5rem 2rem;	/*ボタン内の余白。上下、左右へ。*/
	border-radius: 100px;	/*角を丸くする*/
	text-align: center;		/*テキストをセンタリング*/
}

/*bg-primary-colorの上で使う場合*/
.bg-primary-color .btn1 a {
	background: var(--primary-inverse-color);		/*背景色。冒頭のprimary-inverse-colorを読み込みます。*/
	color: var(--primary-color);	/*文字色。冒頭のprimary-colorを読み込みます。*/
}
/* マウスオン時 */
.btn1 a:hover {
  opacity: 1;
  transform: scale(1.05); /* 105%に拡大 */
  background: #fcb900; /* 背景色を黄色に設定 */
  color: #1f1f1f; /* 文字色を黒に設定 */
}

/* bg-primary-colorの上で使う場合 */
.bg-primary-color .btn1 a:hover {
  background: #fcb900; /* 背景色を黄色に設定 */
  color: #1f1f1f; /* 文字色を黒に設定 */
}

/*矢印アイコン*/
.btn1 a::after {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f0a9";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-left: 0.5em;		/*アイコンとテキストとの間に空けるスペース*/
}


/*bg-primary-color
---------------------------------------------------------------------------*/
.bg-primary-color {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}


/*bg1
---------------------------------------------------------------------------*/
.bg1 {
	background-color: var(--base-inverse-color);	/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
	color: var(--base-color);	/*文字色。冒頭のbase-colorを読み込みます。*/
}


/*bg2
---------------------------------------------------------------------------*/
.bg2 {
	background: #f3f3e9;	/*背景色*/
}


/*bg3
---------------------------------------------------------------------------*/
.bg3 {
	background: #fff;	/*背景色*/
}


/*パターン背景
---------------------------------------------------------------------------*/
/*bg-pattern1*/
.bg-pattern1 {
	background-image: url("../images/bg_pattern1.png");	/*背景パターンの読み込み*/
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;	/*サイズ*/
}

/*bg-pattern2*/
.bg-pattern2 {
	background-image: url("../images/bg_pattern2.png");	/*背景パターンの読み込み*/
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;	/*サイズ*/
}

/*bg-pattern3*/
.bg-pattern3 {
	background-image: url("../images/bg_pattern3.png");	/*背景パターンの読み込み*/
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;	/*サイズ*/
}


/*ボックス下部を三角形（▼）にする場合。三角形の高さ自体はmask-imageのd=の中にある２つの「95」という数値で変更できます。小さいほど角度が大きくなります。
---------------------------------------------------------------------------*/
.arrow {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,95 L50,100 L0,95 Z' fill='%23000000'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*三角形の高さの再設定。95を90に変更しています。*/
	.arrow {
		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,90 L50,100 L0,90 Z' fill='%23000000'/%3E%3C/svg%3E");
		padding-bottom: 150px;
	}
	

	}/*追加指定ここまで*/


/*背景色が切れているのが見えないように微調整*/
.arrow + section {
	padding-top: calc(var(--space-large) + 150px);
	margin-top: -150px;
}


/*list-grid-simple（制作実績ブロック）
---------------------------------------------------------------------------*/
.list-grid-simple .list * {margin: 0;padding: 0;}

/*listブロック全体を囲むブロック*/
.list-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
    gap: 3rem;	/*ブロックの間に空けるマージン的な指定*/
}

/*ボックス１個あたり*/
.list-grid-simple .list {
    display: grid;
	position: relative;
}

/*h4見出し*/
.list-grid-simple .list h4 {
	margin-top: 0.5rem;		/*上に0.5文字分のスペースを空ける*/
	font-weight: normal;	/*太さを標準に*/
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.list-grid-simple {
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
	}

	}/*追加指定ここまで*/


/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {margin: 0;padding: 0;}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
	margin-bottom: 3rem;	/*ボックスの下に空けるスペース*/
	position: relative;
	border-radius: 5px;	/*角を少しだけ丸く*/
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	box-shadow: 2px 5px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒のことで0.1は色が10%出た状態。*/
	padding: 2rem;	/*ボックス内の余白。２文字分。*/
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*ボックス１個あたり*/
	.list-grid1 .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

	}/*追加指定ここまで*/


/*bg-black内のボックスへの追加設定*/
.list-grid1 .list.bg-black {
	background: #111;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*ナンバー（01〜03の飾り番号）*/
.list-grid1 .list .num {
	position: absolute;
	left: -20px;		/*左からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	top: -30px;			/*上からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	font-size: 60px;	/*文字サイズ*/
	line-height: 1;
	font-family: "MonteCarlo", cursive;	/*フォント指定*/
	opacity: 0.2;	/*透明度。色を20%出す。*/
}

/*引用符（“）の装飾*/
.list-grid1 .list h4.kazari::before {
	content: "“";	/*わかりづらいですが、中央にあるのが引用符でこの文字を出力しています。*/
	position: absolute;
	left: -1rem;	/*左からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	top: -40px;		/*上からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	opacity: 0.2;	/*透明度。色を20%出す。*/
	font-size: 60px;	/*文字サイズ*/
	line-height: 1;
}

/*ボックス内のh4見出し*/
.list-grid1 .list h4 {
	font-size: 1.4rem;	/*文字サイズを140%に*/
	line-height: 1.6;	/*行間*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
	position: relative;
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.9rem;	/*文字サイズを90%に*/
	line-height: 1.6;	/*行間*/
	font-weight: normal;
}

/*bg-black内のp要素への追加設定*/
.list-grid1 .list.bg-black p {
	color: #999;	/*文字色*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure.icon {
	margin: 0 auto;
	width: 100px;		/*画像サイズ*/
	margin-top: -40px;	/*本来の場所より上にずらす*/
}

/*bg1内のfigureへの追加設定*/
.bg1 .list-grid1 .list figure.icon {
	filter: grayscale(100%) brightness(90%);	/*画像をグレースケールにし、明るさも少し暗くする。そのままの画像色を出したければこの１行を削除。*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*ボックス内のfigure画像*/
	.list-grid1 .list figure.icon {
		width: 150px;		/*画像サイズ*/
		margin-top: -50px;	/*本来の場所より上にずらす*/
	}

	}/*追加指定ここまで*/



/*list-c2（お問い合わせ、資料請求）
---------------------------------------------------------------------------*/
.list-c2 > a {
    text-decoration: none;
    display: block;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*２つのボックスを囲むボックス*/
	.list-c2 {
		display: flex;	/*横並びにする*/
		gap: 2vw;		/*ブロックの間に空けるマージン的な指定*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
/* ボックス1個あたり */
.list-c2 .list {
	text-align: center;
	position: relative; /* オーバーレイを配置するために必要 */
	overflow-y: hidden;
	color: #fff;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
	padding: 5rem 2rem;
	margin: 1rem 0;
	border-radius: 30px;
}

/* オーバーレイの追加 */
.list-c2 .list::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8); /* 薄い黒のオーバーレイ */
	z-index: 1; /* テキストより後ろに配置 */
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.list-c2 > * {
		flex: 1;
	}
	.list-c2 .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.list-c2 > a .list {
		height: 100%;
	}
	
	/*1つ目のボックス（お問い合わせ）*/
	.list-c2 .list:nth-of-type(1) {
		border-radius: 0px 30px 30px 0px;	/*角丸の上書き。左上、右上、右下、左下への順番。*/
	}
	
	/*2つ目のボックス（資料請求）*/
	.list-c2 .list:nth-of-type(2) {
		border-radius: 30px 0px 0px 30px;	/*角丸の上書き。左上、右上、右下、左下への順番。*/
	}
	
	}/*追加指定ここまで*/


/*左側ボックスの背景*/
.list-c2 .list.image1 {
	background: url("../images/bg_contact.jpg") no-repeat center center / cover;
}

/*右側ボックスの背景*/
.list-c2 .list.image2 {
	background: url("../images/bg_request.jpg") no-repeat center center / cover;
}

/*h4見出し*/
.list-c2 h4 {
	line-height: 1.2;	/*行間を狭く*/
	font-family: "Jost", sans-serif;	/*フォント指定*/
	font-optical-sizing: auto;
	font-weight: 300;	/*フォントの太さ。100〜900の間で指定が可能。大きいほど太くなります。*/
}

/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
	display: block;
	font-size: 3rem;		/*文字サイズ。3倍。*/
	padding-top: 1.5rem;	/*上に空ける余白*/
	padding-bottom: 3rem;	/*下に空ける余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.list-c2 h4 .main-text {
		font-size: 4rem;	/*文字サイズ。4倍。*/
	}

	}/*追加指定ここまで*/


/*テキスト*/
.list-c2 .list .text {
	position: relative;z-index: 1;
	font-size: 0.85rem;	/*文字サイズ85%*/
}



/*背景画像が少しずつ上に移動する
---------------------------------------------------------------------------*/
/*ブロック全体*/
.bg-slideup {
	margin-left: calc(-1 * var(--space-large));
	margin-right: calc(-1 * var(--space-large));
}

section > .bg-slideup:first-child {
	margin-top: calc(-1 * var(--space-large));
}

/*画像ボックス*/
.bg-slideup .image {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	padding: 10vw 20px;	/*上下、左右へのボックス内の余白。画面幅100% = 100vwです。*/
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3rem;		/*英語テキストと日本語テキストの間のスペース。３文字分。*/
	color: #fff;	/*文字色*/
}

/* 英語テキスト */
.en-text {
	writing-mode: horizontal-tb;
	font-size: 0.8rem;	/*文字サイズ80%*/
}

/* 日本語テキスト */
.jp-text {
	writing-mode: vertical-rl;
	text-orientation: upright;
}

/*制作実績ブロックの画像指定*/
#products .bg-slideup .image {
	background-image: url("../images/bg_works.jpg");	/*背景画像の指定*/
}

/*会社概要ブロックの画像指定*/
#company .bg-slideup .image {
	background-image: url("../images/bg_company.jpg");	/*背景画像の指定*/
}


/*list-normal1（「お客様の声」「制作の流れ」ブロックで使用）
---------------------------------------------------------------------------*/
.list-normal1 * {margin: 0;padding: 0;}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*テキストブロック*/
	.list-normal1 .text {
		flex: 1;
	}
	
	/*画像とテキストの左右を入れ替えたい場合（600px以上のみ使用可能）*/
	.reverse {
		flex-direction: row-reverse;
		background-position: left bottom !important;
	}
	
	}/*追加指定ここまで*/


/*ブロック１個あたり*/
.list-normal1 .list {
	background: var(--base-color)  no-repeat right bottom / 200px;
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	padding: 3rem;
	margin-bottom: 2rem;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
	position: relative;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*ブロック１個あたり*/
	.list-normal1 .list {
		display: flex;
		gap: 2rem;	/*画像とテキストの間のスペース。２文字分。画像がない場合はこれは適用されません。*/
	}
	
	}/*追加指定ここまで*/


/*画像ブロック*/
.list-normal1 figure {
	width: 30%;	/*幅*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*画像の下マージンのリセット*/
	.list-normal1 figure {
		margin-bottom: 0;
	}

	}/*追加指定ここまで*/


/*h4見出し*/
.list-normal1 h4 {
	font-size: 1.2rem;	/*文字サイズ200%*/
	line-height: 1.5;	/*行間*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.list-normal1 h4 {
		font-size: 2rem;	/*文字サイズ200%*/
		line-height: 1.8;	/*行間*/
	}

	}/*追加指定ここまで*/


/*h4内にアイコンを配置した場合（制作の流れの見出し左のアイコン）*/
.list-normal1.flow h4 i {
	margin-right: 1rem;	/*アイコンとテキストとの間の余白*/
}

/*名前*/
.list-normal1 .name {
	text-align: right;	/*右寄せ*/
	margin-top: 1rem;	/*上に空けるスペース*/
}

/*制作の流れで使用しているブロック間の「▼」の矢印*/
.list-normal1.flow .list::after {
	content: "";	/*このテキストを出力します*/
	position: absolute;
	left: 50%;		/*左からの配置場所。厳密ではありませんが、文字が小さいので問題ないかと。*/
	bottom: -2rem;	/*下からの配置場所。マイナスがつくので本来の場所とは逆向きに移動。*/
	transform: scaleX(1.5);	/*横幅を150%に*/
	opacity: 0.5;			/*透明度。色が50%出た状態。*/
}

/*最後のボックスだけ下矢印を出さない*/
.list-normal1.flow .list:last-child::after {
	content: none;
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	background: var(--base-inverse-color);	/*背景色*/
	color: var(--base-color);				/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;				/*幅*/
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	margin-bottom: 2rem;		/*テーブルの下に空けるスペース。２文字分。*/
}
/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 td, .ta1 th {
	word-break: break-all;
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	text-align: left;	/*左よせにする*/
	padding: 0.5rem;	/*余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 25%;			/*幅*/
	text-align: center;	/*テキストをセンタリング*/
}


/*テーブル（プラン）　※基本的な設定は上のta1で設定
---------------------------------------------------------------------------*/
.ta1.plan, .ta1.plan td, .ta1.plan th {
	text-align: center;
	border: 2px solid var(--base-inverse-color);	/*テーブルの枠線の幅、線種、varは色のことで冒頭のbase-inverse-colorを読み込みます*/
	padding: 0.5rem;
}

	/*画面幅801px以上の追加指定*/
	@media screen and (min-width:801px) {

	.ta1.plan, .ta1.plan td, .ta1.plan th {
		font-size: 1.2rem;
		padding: 2rem 1rem;
	}

	}/*追加指定ここまで*/


/*一番左側の縦列の幅*/
.ta1.plan th:first-child,
.ta1.plan td:first-child {
    width: 12rem;	/*目安としては約12文字分。*/
}

/*１行目のプランブロック*/
.ta1.plan th {
	width: auto;
	position: relative;
	overflow: hidden;
}

/*１行目のプランブロック内の「おすすめ」表示*/
.ta1.plan th .osusume {
	position: absolute;
	left: 0px;
	top: 0px;
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.8rem;		/*文字サイズ80%*/
	width: 120px;
	text-align: center;
	padding-top: 43px;
	padding-bottom: 2px;
	transform: rotate(-45deg) translate(-18px, -60px);
}

/*１行目のプランブロック内のアイコン（王冠マーク）*/
.ta1.plan th i {
	display: block;
	font-size: 1.4rem;	/*サイズ*/
}

/* 左から2つ目の「エコノミープラン」の見出し（th）に背景色を設定 */
.ta1.plan th:nth-child(2) {
	background: #fffcda;
}
/* 左から2つ目の「エコノミープラン」の列（td）に背景色を設定 */
.ta1.plan td:nth-child(2) {
	background: #fffcda;
}

/* 左から３つ目の「スタンダードプラン」の見出し（th）に背景色を設定 */
.ta1.plan th:nth-child(3) {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}
/* 左から３つ目の「スタンダードプラン」の列（td）に背景色を設定 */
.ta1.plan td:nth-child(3) {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/* 左から４つ目の「プレミアムプラン」の見出し（th）に背景色を設定 */
.ta1.plan th:nth-child(4) {
	background: #fffcda;
}
/* 左から４つ目の「プレミアムプラン」の列（td）に背景色を設定 */
.ta1.plan td:nth-child(4) {
	background: #fffcda;
}

/*１行目の金額*/
.plan th > span {
	display: block;
	font-size: 1.6rem;	/*文字サイズを160%*/
	font-family: "Oswald", sans-serif;	/*フォント指定*/
	font-optical-sizing: auto;
	font-weight: 700;	/*太さ。200〜900まで指定できます。数値が大きいほど太くなる。*/
}

	/*画面幅801px以上の追加指定*/
	@media screen and (min-width:801px) {

	/*１行目の金額*/
	.plan th > span {
		font-size: 2.4rem;	/*文字サイズを240%*/
	}

	}/*追加指定ここまで*/


	/*画面幅800px以下の追加指定*/
	@media screen and (max-width:800px) {

	.scroll .ta1.plan {width: 700px;}
	.scroll {overflow-x: auto;}

	}/*追加指定ここまで*/


/*調整用スタイル
---------------------------------------------------------------------------*/
.padding0 {
	padding: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}


/*マニュアルページ用
---------------------------------------------------------------------------*/
#manual #container {
	all: unset;
}
.manual {
	background: #fff;
	color: #333;
	padding: 5vw;
}
.manual .look {background: #eee;}
.manual h2 {
	margin-top: 2rem;
	font-size: 2rem;
	text-align: center;
}
.manual h3 {
	line-height: 3;
	margin-top: 2rem;
}
.manual h3 span {
	background: linear-gradient(transparent 60%, yellow);
}
.manual h3 + p {margin-top: -0.5rem;}
.manual.margin-left {padding-left: 300px;}

	/*画面幅999px以下の追加指定*/
	@media screen and (max-width:999px) {

	.manual.margin-left {padding-left: 4vw;}

	}/*画面幅900px以上の追加指定ここまで*/


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb-space-large {margin-bottom: var(--space-large) !important;}
.look {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.inline-block {display: inline-block !important;}
.relative {position: relative;}
.marker {background: linear-gradient(transparent 50%, yellow);}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/
@use "global" as *;

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: rem(80);
  @include screen-small {
    height: rem(62);
  }
}

.p-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-start;
  height: inherit;
  max-width: rem(1392);
  margin: 0 auto;
  padding: 0 rem(24);
  @include screen-small {
    padding-left: rem(20);
    padding-right: rem(20);
    height: rem(56);
    align-items: center;
    justify-content: flex-end;
    display: flex;
  }

  &::before {
    content: "";
    display: block;
  }
}

/* ========================================================
# メニューボタン
======================================================== */
.p-header__menuWrap {
  display: none;
  @include screen-small {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 50%;
    bottom: rem(16);
    translate: -50% 0;
    z-index: 102;
    gap: rem(7);
  }
}
.p-header__menuBtn {
  @include screen-small {
    width: rem(97);
    height: rem(56);
    background-color: $color-blue;
    border-radius: rem(50);
    padding: rem(17) rem(36);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: rem(4) solid #f6f6f6;
    box-shadow: 0 0 rem(10) rgba($color-blue, 0.15);

    -webkit-tap-highlight-color: transparent;

    span {
      display: block;
      width: rem(16);
      height: rem(2);
      border-radius: rem(2);
      background-color: #fff;
      transition: 0.3s all $ease;
    }

    &.--open {
    }
    &.is-active {
      box-shadow: 0 0 0 rgba($color-blue, 0);
      span {
        &:nth-child(1) {
          transform: translateY(rem(6)) rotate(45deg);
        }
        &:nth-child(2) {
          opacity: 0;
        }
        &:nth-child(3) {
          transform: translateY(rem(-6)) rotate(-45deg);
        }
      }
    }

    &.--entry {
      padding: rem(11) rem(13);
      font-size: rem(14);
      font-weight: 500;
      font-family: $font-family-en;
      background-color: #fff;
      color: $color-blue;
      line-height: calc(17 / 14);
      justify-content: center;
      align-items: center;
    }
  }
}

/* ========================================================
# メニュー
======================================================== */
.p-header__nav {
  display: flex;
  height: inherit;
  margin-left: auto;
  @include screen-small {
    display: block;
    height: initial;
    position: fixed;
    width: 100%;
    max-width: rem(311);
    bottom: rem(-8);
    left: 50%;
    translate: -50% 0;
    filter: drop-shadow(0 0 rem(10) rgba($color-blue, 0.15));
    z-index: 100;
    visibility: hidden;
    transition: 0.3s all $ease;

    &.is-active {
      bottom: rem(8);
      visibility: visible;
    }
  }
}

.p-header__navInner {
  display: contents;
  @include screen-small {
    display: block;
    clip-path: inset(100% 50% 0 50% round #{rem(8)});
    transition: 0.3s all $ease;

    &.is-active {
      clip-path: inset(0 0 0 0 round #{rem(8)});
    }
  }
}

.p-header__navWrap {
  padding: rem(4);
  border-radius: 100vmax;
  background-color: #f6f6f6;
  position: relative;
  margin-top: rem(32);
  height: rem(44);
  @include screen-small {
    height: initial;
    background-color: #f6f6f6;
    padding: rem(32) rem(64) rem(88);
    border-radius: rem(8);
    margin-top: 0;
    position: static;
  }
}

.p-header__navBg {
  display: block;
  width: 0;
  height: rem(36);
  position: absolute;
  bottom: rem(4);
  background-color: $color-light-blue;
  transition: 0.2s all ease;
  z-index: 1;
  border-radius: 100vmax;
  @include screen-small {
    display: none;
  }
}

.p-header__navList {
  display: flex;
  align-items: center;
  @include screen-small {
    display: block;
  }
}

.p-header__navItem {
  position: relative;
  z-index: 2;

  @include screen-small {
    &:nth-child(n + 2) {
      margin-top: rem(4);
    }
  }

  &.current {
    .p-header__navLink {
      background-color: $color-blue;
      color: #fff;
    }
  }
}

.p-header__navLink {
  display: block;
  padding: rem(11) rem(16);
  font-size: rem(14);
  font-weight: bold;
  line-height: 1;
  position: relative;
  z-index: 2;
  border-radius: 100vmax;
  @include screen-small {
    text-align: center;
    font-size: rem(15);
    padding: rem(15) rem(16);
  }
  @media (any-hover: hover) {
    &:hover {
      opacity: 1;
      color: $color-blue;
    }
  }
}

/* ========================================================
# ボタンリスト
======================================================== */
.p-header__btnWrap {
  height: inherit;
  @include screen-small {
    height: initial;
  }
}
.p-header__btnInner {
  padding-top: rem(5);
  background-color: $color-blue;
  height: inherit;
  border-radius: 0 0 rem(8) rem(8);
  width: fit-content;
  margin-left: auto;
  @include screen-small {
    height: initial;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding-top: 0;
  }
}
.p-header__btnList {
  display: flex;
  margin-left: auto;
  @include screen-small {
    margin-left: 0;
    height: initial;
  }
}

.p-header__btnItem {
  position: relative;
  &:nth-child(n + 2) {
    padding-left: rem(1);
    &::before {
      content: "";
      width: rem(2);
      height: rem(16);
      background: url(../images/common/dot_line.svg) no-repeat center center / contain;
      position: absolute;
      top: calc(50% + #{rem(-3)});
      left: 0;
      transform: translateY(-50%);
      @include screen-small {
        top: 50%;
      }
    }
  }

  &:first-child {
    .p-header__btnLink {
      padding: rem(10) rem(12) rem(16) rem(20);
      @include screen-small {
        padding: rem(14) rem(8) rem(10) rem(12);
      }
    }
  }

  &:last-child {
    .p-header__btnLink {
      padding: rem(10) rem(20) rem(16) rem(12);
      @include screen-small {
        padding: rem(14) rem(12) rem(10) rem(8);
      }
    }
  }
}

.p-header__btnLink {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: rem(4);

  @include screen-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: rem(12) rem(8);
    grid-template-columns: 1fr;
  }
}

.p-header__btnIcon {
  width: rem(24);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.p-header__btnText {
  color: #fff;
  font-size: rem(14);
  font-weight: bold;
  line-height: 1;
  @include screen-small {
    font-size: rem(10);
  }
}

/* ========================================================
# 言語切り替え
======================================================== */
.c-header__switchbtn {
  text-align: right;
  padding-right: rem(20);
  @include screen-small {
    padding-right: rem(8);
  }
}
.c-header__switchCase {
  color: #fff;
  font-size: rem(12);
  font-weight: bold;
  line-height: calc(14 / 12);
  @include screen-small {
    font-family: $font-family-en;
    padding: rem(4) rem(9);
    border-radius: rem(40);
    border: rem(1) solid rgba(#fff, 0.5);
    display: none;
    grid-template-columns: auto 1fr;
    gap: rem(4);
    font-weight: 500;
    &::before {
      content: "";
      width: rem(12);
      height: rem(12);
      display: block;
      background-image: url(../images/common/icon_lang.svg);
    }
  }

  &.active-case {
    opacity: 0.7;
    font-weight: 500;
    @include screen-small {
      display: inline-grid;
      opacity: 1;
    }
  }

  @media (any-hover: hover) {
    &:hover {
      opacity: 1;
    }
  }
}
.c-header__switchSlash {
  color: #fff;
  font-size: rem(12);
  font-weight: bold;
  line-height: calc(14 / 12);
  display: inline-block;
  margin: 0 rem(2);
  opacity: 0.7;
  @include screen-small {
    display: none;
  }
}
/*
 * Contact button
 */
@media screen and (min-width: 900px) {
  .button-link {
    background: #FEEC37; /* ボタンの背景色を黄色に設定 */
    border-radius: 96px; /* 丸みを強くする */
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000; /* 文字色を黒に設定 */
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .button-link a {
    color: #000; /* リンクの文字色も黒に設定 */
    font-size: 0.9rem;
    padding: 0;
  }

  /* ホバー時のスタイル */
  .button-link:hover {
    background-color: #000; /* ホバー時に背景を黒にする */
    transform: translateY(-2px); /* ホバー時に少し上に移動 */
  }

  /* ホバー時に文字色を白に変更 */
  .button-link:hover a {
    color: #fff;
  }

  .recruitment-button a::before {
    /* 絵文字の代わりにアイコンフォントを使用する場合、ここにコードを挿入 */
    /* 例: content: '\f500'; /* Font Awesomeのアイコンコード */
    margin-right: 0.5rem;
    vertical-align: middle;
  }

  .contact-button a::before {
    /* 絵文字の代わりにアイコンフォントを使用する場合、ここにコードを挿入 */
    /* 例: content: '\f0e0'; /* Font Awesomeのアイコンコード */
    margin-right: 0.5rem;
    vertical-align: middle;
  }
}
/* aboutセクションのコンテナ */
.about-section {
  display: flex;
  align-items: center;
  gap: 40px;
 padding: 100px 5%;
  font-family: Arial, sans-serif;
	background-color: #f7f7f7; /* 背景色を薄いグレーに */
}

.about-content {
  flex: 1;
  max-width: 50%;
}

.subtitle {
  color: #ff9900;
  font-size: 0.9rem;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
}

.subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: #ff9900;
}

h2 {
  font-size: 3rem;
  font-weight: bold;
  margin: 10px 0;
  line-height: 1;
}

.description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.more-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  color: #1f1f1f;
  gap: 10px;
  padding: 5px 0;
  transition: all 0.3s ease;
  border-bottom: 3px solid #FEEC37; /* 下線を追加 */
}

.arrow-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.more-button:hover {
  color: #e08c00;
  border-bottom: 3px solid #e08c00; /* ホバー時の下線の色を変える */
}

.more-button:hover .arrow-icon {
  transform: translateX(5px);
}
.button-container {
    text-align: right; /* これでボタンが右寄せになります */
    margin-top: 20px;
}
/* アバウト画像*/
.about-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* For smaller screens */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 40px 5%;
  }
  .about-content, .about-image {
    max-width: 100%;
  }
  h2 {
    font-size: 2rem;
  }
}
/* 新しいボタンセクションのスタイル */
.p-index-buttons-wrapper {
  padding: 50px 0; /* セクションの上と下の余白 */
}
.p-index-buttons__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-index-buttons__item {
  flex-basis: 220px; /* ボタンの幅を調整 */
}
.c-btn-anchor {
  display: flex;
  flex-direction: column; /* テキストを縦方向に配置 */
  align-items: center; /* 横方向の中央揃え */
  justify-content: center; /* 縦方向の中央揃え */
  background-color: #212121;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 25px 40px;
  font-size: 1rem; /* フォントサイズを小さくする */
  font-weight: 500;
  position: relative;
  transition: transform 0.3s ease;
  text-align: center; /* テキストを中央寄せ */
}

/* 新しいお知らせセクションのスタイル */
.p-top-news {
    width: 100%
}

.p-top-news+* {
    margin-top: 60px
}

.p-top-news__hdg {
    margin-top: 0
}

.p-top-news__hdg>.ja {
    display: block;
    color: var(--rheosred);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 700
}

.p-top-news__hdg>.en {
    display: block;
    color: #1f1f1f;
    font-size: 2.5rem;
    line-height: 1.1;
    font-family: Hind,sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 10px
}

.p-top-news__tablist {
    margin-right: auto;
    width: 100%
}

.p-top-news__tabitem {
    display: block;
    text-decoration: none;
    color: #1f1f1f;
    font-weight: 700;
    border: none;
    padding: 0;
    white-space: nowrap
}

.p-top-news__tabitem>span {
    font-size: 1rem;
    line-height: 1.6;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    position: relative;
    padding-bottom: 15px
}

.p-top-news__tabitem>span::after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--rheosred);
    margin-top: 4px;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.p-top-news__tabitem[aria-selected=true] {
    color: var(--rheosred)
}

.p-top-news__tabitem[aria-selected=true]>span::after {
    opacity: 1
}

.p-top-news__contents {
    margin-left: auto;
    width: 100%
}

.p-top-news__list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0
}

.p-top-news__list:not([hidden]) {
    display: block;
    opacity: 1;
    -webkit-animation: showAnim .6s ease forwards;
    animation: showAnim .6s ease forwards
}

.p-top-news__list[hidden] {
    display: none;
    opacity: 0
}

.p-top-news__item {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--border-gray)
}

.p-top-news__item .category {
    width: 126px;
    height: 28px;
    font-weight: 700;
    background-color: var(--rheosred);
    color: var(--white);
    text-falign: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 12px;
    border-radius: 14px;
    font-size: .875rem;
    line-height: 1.5;
    padding-top: 3px;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease
}

.p-top-news__item .date {
    font-weight: 400;
    color: var(--text-gray);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 20px;
    padding-top: 6px;
    font-size: 1rem;
    line-height: 1.3;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    font-family: Hind,sans-serif
}

.p-top-news__item .text {
    margin: 12px 0 0;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #1f1f1f;
    -webkit-transition: color .3s ease;
    transition: color .3s ease
}

.p-top-news__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px 0;
    text-decoration: none
}

.p-top-news__item a[target=_blank] .text::after {
    content: "";
    display: inline-block;
    height: 11px;
    width: 11px;
    margin-left: 6px;
    background-color: var(--black);
    -webkit-clip-path: url(#ico-blank);
    clip-path: url(#ico-blank);
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease
}

.p-top-news__linkwrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.p-top-news__link {
    margin-top: 32px;
    margin-right: 20px
}
/* 黄色をテーマにした問い合わせフォームのスタイル */
/* セクションの背景と余白 */
.contact-section {
  background: linear-gradient(135deg, #fffbe3, #fcf6d4);
  padding: 180px 20px;
}

/* フォームのコンテナ */
.contact-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  animation: fadeIn 1s ease-in-out;
}

/* アニメーション */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 見出しのスタイル */
.form-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.form-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #f7d900;
  margin: 15px auto 0;
  border-radius: 2px;
}

.form-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  position: relative;
}

.form-title span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #f7d900;
  margin-top: 5px;
}

/* フォームの各項目 */
.form-row {
  display: flex;
  gap: 30px;
}

.form-group {
  margin-bottom: 30px;
  flex: 1;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
  position: relative;
}

.form-group label::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #f7d900;
  border-radius: 50%;
}

.required {
  color: #d9534f;
  margin-left: 5px;
}

/* 入力欄のスタイル */
input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fff;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #f7d900;
  box-shadow: 0 0 15px rgba(247, 217, 0, 0.2);
}

textarea {
  resize: vertical;
}

/* 送信ボタン */
.submit-button-container {
  text-align: center;
  margin-top: 40px;
}
.submit-button {
  padding: 15px 50px;
  background-color: transparent; /* 通常時は背景なし */
  color: #f7d900;
  font-size: 1.1rem;
  font-weight: bold;
  border: 2px solid #f7d900; /* 枠線 */
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: #f7d900; /* ホバー時に背景を塗りつぶす */
  color: #333;
}
select {
    width: 100%; /* 親要素の幅いっぱいに広げる */
    padding: 10px 15px; /* 内側の余白 */
    font-size: 1em; /* フォントサイズ */
    color: #333; /* 文字色 */
    background-color: #fff; /* 背景色 */
    border: 1px solid #ccc; /* 枠線 */
    border-radius: 5px; /* 角を丸く */
    appearance: none; /* OS標準のスタイルを無効化 */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    box-sizing: border-box; /* パディングとボーダーを幅に含める */

    /* カスタム矢印の追加 */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M6 8.5L2.5 5h7L6 8.5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

select:hover {
    border-color: #999; /* ホバー時の枠線色 */
}

select:focus {
    outline: none; /* フォーカス時のアウトラインを無効化 */
    border-color: #f7d900; /* フォーカス時の枠線色 */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* フォーカス時の影 */
}

/* モバイル向けスタイル */
@media (max-width: 768px) {
    select {
        padding: 12px 15px; /* タッチしやすいようにパディングを増やす */
    }
}
/* SERVICE1 */
.business-intro {
  padding: 50px 0;
  font-family: Arial, sans-serif;
  color: #333;
}

/* ヘッダーセクション */
.intro-header {
  padding: 0 5%;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff9900;
  margin-bottom: 5px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 0;
}

/* トップの画像コンテナ */
.intro-image-container {
  width: 100%;
  height: 300px;
  background-color: #f0f0f0;
}
.intro-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ナビゲーション */
.intro-nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  background-color: #f0f0f0;
}
.intro-nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* コンテンツ部分 */
.intro-content {
  text-align: center;
  padding: 50px 10%;
}
.platform-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
.platform-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

.service-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.service-button-green {
  background-color: #e0e000;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.diagram-container {
  margin-top: 50px;
}
.diagram-container img {
  max-width: 100%;
  height: auto;
}

/* 詳細セクション */
.service-details {
  padding: 50px 10%;
}
.service-details-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff9900;
  border-left: 5px solid #e0e000;
  padding-left: 10px;
}
.service-details-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
  margin-top: 20px;
}

/* 募集ブロック */
.recruitment-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
}
.recruitment-subtitle {
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
}
.recruitment-subtitle span {
  background-color: #e0e000;
  padding: 4px 10px;
  border-radius: 5px;
}
.recruitment-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}
.recruitment-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin-top: 10px;
}
.recruitment-tags {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}
.recruitment-tags span {
  background-color: #ddd;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}
.recruitment-link {
  font-size: 2rem;
  color: #e0e000;
  text-decoration: none;
}
.c button[type="submit"] {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff; /* 青系 */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.c button[type="submit"]:hover {
    background-color: #0056b3;
}