@charset "utf-8";


/*slide.cssの読み込み*/
@import url(slide.css);

/*アニメーションのキーフレーム設定。透明(0%)から色を100%出す指定。*/
@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff url(../images/bg.png);	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}
video,audio {max-width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #20b1e1;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*サイトの最大幅の設定
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅。これ以上大きくならない。*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: #fff linear-gradient(#d5edff, rgba(255,255,255,0) 50%);/*背景色、背景グラデーション*/
}
header .inner {
	position: relative;overflow: hidden;
	margin: 0 auto;
	height: 150px;	/*ヘッダーの高さ*/
	background: linear-gradient(#d5edff, rgba(255,255,255,0) 50%), #fff url(../images/header_bg.jpg) no-repeat center center/50%;/*背景グラデーション、背景画像の読み込み*/
}
/*ロゴ画像*/
header #logo {
	width: 400px;		/*ロゴ画像の幅*/
	position: absolute;
	left: 2%;		/*headerのinnerに対しての左からの配置指定*/
	bottom: 5px;	/*headerのinnerに対しての下からの配置指定*/
}

h1 {
	font-size: 1.0em;
	font-weight: 600;
	color: #21201f;
}

/*ヘッダー内メニュー（「資料請求・お問い合わせ」と「見学のお申し込み」ボタン）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: absolute;
	right: 2%;	/*headerのinnerに対しての右からの配置指定*/
	top: 50px;	/*headerのinnerに対しての上からの配置指定*/
}
/*メニュー１個あたり*/
#headermenu li {
	float: left;		/*左に回り込み*/
	margin-left: 10px;	/*左側にスペースを空ける*/
	
}
#headermenu li a {
	text-decoration: none;display: block;
	background: hsl(120, 100%, 40%);	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#00cc00, #00cc00);	/*背景グラデーション*/
	color: #FFF;		/*文字色*/
	padding: 3px 15px;	/*上下、左右へのボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #00cc00;	/*枠線の幅、線種、色*/
	font-size: 1.1rem;
}
/*マウスオン時*/
#headermenu li a:hover {
	color: #FFF;;	/*文字色*/
	background: linear-gradient(#00cc00, #00cc00);	/*背景色*/
}

/*電話番号*/
header address {
	font-style: normal;	/*addressタグがデフォルトで斜体なので、通常にする。*/
	text-align:center;
}

/*電話番号のアイコン（アイコンにはFont Awesomeを使用）*/
header i {
	padding-right: 10px;	/*右側に空ける余白*/
}

/*address内のspanタグ。受付時間などの行です。*/
header address span {
	display: block;
	font-size: 0.9rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	font-weight: 600;
}

header address .marker {

	/* マーカーを引く 
	rgba(255, 153, 0,0.5) の部分はマーカーの色を指定しています。
  　実装される際は、お好きな色、透明度をお入れ下さい。 */
	background:linear-gradient(transparent 50%, rgb(255, 213, 154) 50%); /* マーカーを引く */
	font-size: 0.9rem;
	font-weight: 600;
	/* インライン属性を指定する */
	display: inline;                                                        
  }

.boxmi15 {
	position: relative;
	margin: 2em 0;
	padding: 1em 2em;
	border-top: solid 2px #017690;
	border-bottom: solid 2px #017690;
	background-color: #fff;
	color: #017690;
	font-size: 1.1em;
	font-weight: bold;
  }

  .boxmi15:before, .boxmi15:after {
	position: absolute;
	top: -12px;
	width: 2px;
	height: -webkit-calc(100% + 24px);
	height: calc(100% + 24px);
	background-color: #017690;
	content: "";
  }
  .boxmi15:before {
	left: 12px;
  }
  .boxmi15:after {
	right: 12px;
  }
  .boxmi15-title {
	font-size: 1.1em;
	padding: 4px 0 10px 12px;
	color: #017690
	;
	font-weight:bold;
	text-align: center;
	 margin: -14px -24px 5px -24px;
  }
  .boxmi15 p {
	margin: 0;
	padding: 0;
  }
  .sen15 {
	background-color: #fff;
	background-image:
	linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #fff 0%, #fff 100%), linear-gradient(180deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 95%, #77b7d9 100%);
	background-size: 8px 100%,100% 2em;
	line-height: 2;
	padding: 4px 10px 22px 10px;
	font-size: 1.1em;
  }

/* インスタタイムライン写真の表示レイアウト */
.insta_list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0px;
}

.insta_list text{
    font-size: 1rem;
	font-weight: bold;
}


.insta_list li{
    position: relative;
    width: calc((100% - 40px)/2);
}

@media screen and (max-width: 750px){
    .insta_list li{
        width: calc((100% - 20px)/2);
    }
}

.insta_list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}

.insta_list a{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.insta_list img{
  width: 96%;
  height: 96%;
  object-fit: cover; /* この一行を追加するだけでOK! */
}
.insta_btn{
    background-color: #000;
    padding: .5em 1em;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
    transition: .3s
}

.insta_btn a{
    color: #fff;
    text-decoration: none;
}

.insta_btn:hover{
    background-color: #999;
}



/* トップの　スクタとは　ボックス */
.box-design17 {
	margin: 40px auto 20px;
	padding: 30px 20px 10px 20px;
	border: 2px solid #4c9ac0;
  }
  .box-design17-ttl {
	background-color: #4c9ac0;
	color: #fff;
	border-radius: 100vh;
	padding: 10px 1.5em;
	margin: -55px 0 0 0;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
  }
  .box-design17-ttl::after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	border: 15px solid transparent;
	width: 0;
	height: 0;
	border-top-color: #4c9ac0;
  }

  .top-tx {
	position: relative;  
	background-color: #8dce41;
	color: #fff;
	padding: 15px;
	}
	
	.top-tx::before,
	.top-tx::after {
	border: none;
	border-bottom: solid 15px transparent;
	content: '';
	position: absolute;
	top: 100%;
	}
	
	.top-tx::before {
	border-right: solid 15px #478400;
	left: 0;
	}
	
	.top-tx::after {
	border-left: solid 15px #478400;
	right: 0;
	}



/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	position: absolute;
	right: 2%;		/*headerのinnerに対して右からの配置指定*/
	top: 0px;		/*headerのinnerに対して上からの配置指定*/
	width: 250px;	/*ブロック幅*/
	background: #fff;	/*背景色*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は20%色がついた状態の事。*/
	border-radius: 0px 0px 5px 5px;	/*角丸のサイズ。左上、右上、右下、左下への順。*/
	line-height: 50px;	/*高さ*/
	padding: 10px 0px;	/*上下、左右へのボックス内の余白*/
}
/*「文字サイズ」のテキスト*/
#fsize p {
	float: left;
	font-size: 18px;	/*文字サイズ*/
	padding: 0 20px;	/*上下、左右への余白*/
}
/*文字サイズボタン１個あたり*/
#fsize ul li {
	float: left;	/*左に回り込み*/
}
#fsize ul a {
	overflow: hidden;display: block;text-decoration: none;text-align: center;
	color: #fff;	/*文字色*/
}
/*「小」ボタン設定*/
#fsize ul li#small a::before {
	display: block;
	content: "小";		/*「小」の文字を出力*/
	font-size: 16px;	/*文字サイズ*/
	background: #20b1e1;	/*背景色*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
	margin-top: 5px;
	margin-right: 10px;
}
/*「大」ボタン設定*/
#fsize ul li#large a::before {
	display: block;
	content: "大";		/*「大」の文字を出力*/
	font-size: 30px;	/*文字サイズ*/
	background: #ccc;	/*背景色*/
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
}
/*マウスオン時の「大」ボタン設定*/
#fsize ul li#large a:hover::before {
	background: #20b1e1;	/*背景色*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	overflow: hidden;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff 30%, #eee);	/*背景グラデーション*/
	border-bottom: 1px solid #cfcfcf;	/*下線の幅、線種、色*/
	margin-bottom: 40px;	/*下のコンテンツとの間に空けるスペース*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 12.5%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
	text-decoration: none;display: block;text-align: center;
	padding: 10px 0;	/*上下、左右へのメニュー内の余白*/
	margin: 10px 5px;	/*上下、左右へのメニューの外への余白*/
	border-radius: 5px;	/*角丸のサイズ*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #20b1e1;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*コンテンツ（mainとsubブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	box-sizing: border-box;
	padding: 2%;	/*ボックス内の余白*/
	background: #fff;	/*背景色*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.1);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.1は10%色がついた状態の事。*/
	margin-bottom: 40px;	/*下のフッターブロックとの間に空けるスペース*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main {
	float: left;	/*右に回り込み*/
	width: 75%;		/*ボックス幅*/
	padding-bottom: 40px;
}
/*１カラム時のメインコンテンツ*/
.c1 #main {
	float: none;
	width: auto;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 8px;	/*上下、左右への余白*/
	font-size: 1.2rem;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	background: #20b1e1;	/*背景色*/
	border-radius: 5px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 2px;				/*線とテキストとの余白*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 5px 20px;	/*上下、左右への余白*/
	font-size: 110%;	/*文字サイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 5px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
/*h3タグの１文字目への追加設定*/
#main h3::first-letter {
	border-left: 3px solid #20b1e1;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	padding-top: 30px;
}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
#main .list {
	overflow: hidden;position: relative;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 20px;	/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックス同士に空けるスペース*/
}
#main .list a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -20px;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 20px;	/*ボックス内の余白*/
}
/*マウスオン時の設定*/
#main .list a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*画像*/
#main .list figure {
	float: left;	/*左に回り込み*/
	width: 30%;		/*画像の幅*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}
/*h4（見出し）タグの設定*/
#main .list h4 {
	color: #05308c;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
}




/*p（段落）タグの設定*/
#main .list p {
	padding: 0;
}
/*リンクを設定した場合にボックス右下にでる「→」マーク*/
#main .list a::before {
	display: block;text-align: center;
	content: "→";	/*このテキストを出力します。変更しても構いませんが機種依存文字は使わないように。*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	position: absolute;
	right: 20px;	/*ブロックに対して、右からの配置場所指定*/
	bottom: 20px;	/*ブロックに対して、下からの配置場所指定*/
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*マウスオン時*/
#main .list a:hover::before {
	background: #20b1e1;	/*背景色*/
}
/*ボックス全体でなく、テキストなど部分的にリンクを貼る場合の設定*/
#main .list.link a {
	margin: 0;padding: 0;
	display: inline;
	text-decoration: underline;
}
#main .list.link a::before {
	display: none;
}

/*box（info1.htmlやstaff.htmlで使っている枠色がついたタイプのボックス）
---------------------------------------------------------------------------*/
/*box*/
#main .box {
	overflow: hidden;
	border: 3px solid #74634b;	/*枠線の幅、線種、色*/
	padding: 20px;				/*ボックス内の余白*/
	border-radius: 10px;		/*角丸のサイズ。この１行を削除すれば角のとれた長方形になります。*/
	margin-bottom: 20px;		/*ボックスの下に空けるスペース*/
	background: #fff;			/*背景色*/
	font-weight: bold;
}



/*h2（見出し）タグの設定*/
#main .box h2 {
	color: #F00!important;	/*文字色*/
	font-size: 1.0em!important;	/*文字サイズ*/
	clear: both!important;
	margin-bottom: 10px!important;
	padding: 10px 10px!important;	/*上下、左右への余白*/
	font-size: 1.2rem!important;	/*文字サイズ*/
	color: #fff!important;	/*文字色*/
}


/*box内のh4タグ*/
#main .box h4 {
	color: #d43b08;		/*文字色*/
	font-size: 1.1rem;	/*文字サイズ*/
}
/*box内のpタグ*/
#main .box p {
	padding: 0 !important;
	font-size: 1.0rem;
}
/*box内のpタグ*/
#main .box h5 {
	padding: 0 !important;
	font-size: 0.8rem;
}

/*box内のfrとflスタイルのリセット*/
#main .box .fr,#main .box .fl {margin-bottom: 0;}

.ori-box {
	font-size: 1.1rem;
	font-weight: bold;
	color: #1f2053;
	height: 1;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: 15px;
	margin-right: 15px;
}

.tel-box {
	font-size: 1.2rem;
	font-weight: bold;
	color: #1f2053;
	height: 1;
	margin: 0 auto;
}

/* LINE追加　main contner　の中 */

.line-box {
	text-decoration: none;display: block;
	background: hsl(120, 100%, 40%);	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#00cc00, #00cc00);	/*背景グラデーション*/
	color: #FFF;		/*文字色*/
	padding: 3px 15px;	/*上下、左右へのボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #00cc00;	/*枠線の幅、線種、色*/
	font-size: 1.1rem;
}


/*詳細ページのサムネイル画像（CMS用）
---------------------------------------------------------------------------*/
.thumb {
	width: 70px;	/*画像の幅*/
	height: 70px;	/*画像の高さ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;
}
/*マウスオン時*/
.thumb:hover {
	border: 1px solid #999;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*左に回り込み*/
	width: 22%;		/*ブロックの幅*/
	padding-bottom: 40px;
}
/*１カラム字のサブコンテンツ*/
.c1 #sub {display: none;}
/*h2見出しタグ設定*/
#sub h2 {
	margin-bottom: 10px;
	font-size: 110%;	/*文字サイズ*/
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	border-left: 3px solid #20b1e1;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}
/*段落タグ（p）設定*/
#sub p {
	line-height: 1.6;	/*行間を少し狭く*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub .submenu {
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li {
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
#sub .submenu li a {
	text-decoration: none;display: block;
	padding: 5px 10px;	/*上下、左右へのメニュー内の余白*/
	background: #fff;	/*背景色*/
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	background: #f5f5f5;	/*背景色*/
	border: solid 1px #dbdbdb;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
}
/*box1内のメニューの設定*/
#sub .box1 .submenu {
	margin-bottom: 0px;
}

/*サブコンテンツ内のbox2（「スクタとは？」と「スタッフ募集中」のバナー）
---------------------------------------------------------------------------*/
#sub .box2 {
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	font-size: 120%;	/*文字サイズ*/
	box-shadow: 0px 0px 2px 5px #fff inset;	/*影の設定。右・下・ぼかし幅・距離・色の設定。insetは内側に向かっての影。*/
	background: #edf5fa;	/*背景色*/
}
#sub .box2 a {
	text-decoration: none;
	display: block;
	padding: 40px 15px;			/*上下、左右へのボックス内の余白*/
	border: solid 3px #e4e4e4;	/*枠線の線種、幅、色*/
}
/*マウスオン時*/
#sub .box2 a:hover {
	border: solid 3px #20b1e1;	/*枠線の線種、幅、色*/
}
/*「スクタとは？」の背景設定*/
#sub .box2.about {
	background: #edf5fa url(../images/logo_mark.png) no-repeat right center / 100px;	/*背景色、背景画像の読み込み。高さ100px。*/
}
/*「スタッフ募集中」の背景設定*/
#sub .box2.recruit {
	background: #edf5fa url(../images/recruit_img.png) no-repeat right top / 110px;		/*背景色、背景画像の読み込み。高さ110px。*/
}

.list-4 {
	width: auto;
    border: 2px solid #1f9aa3;
}

.list-4 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    background-color: #012b69;
    color: #fff;
    font-weight: 600;
}

.list-4 ul {
    list-style-type: disc;
    margin: 0;
    padding: 1em 1em 1em 2.5em;
}

.list-4 li {
    padding: .3em .3em .3em 0;
}

.list-4 li::marker {
    color: #1f9aa3;
    font-size: 1.4em;
}


/*フッター設定
---------------------------------------------------------------------------*/

/*footerボックス
　　footer {
	clear: both;overflow: hidden;
	background: #20b1e1;	/*背景色*/
	/*color: #fff;		文字色*/
	/*text-decoration: none;
}*/



/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	clear: both;overflow: hidden;
	font-size: 1.0em;	/*文字サイズを少し小さく*/
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
	font-weight: 600;
}




/*１列分の設定*/
#footermenu ul {
	/*float: left;	左に回り込み*/
	width: 80%;		/*今回は４列作ったので、下のmarginを含めて25%になるよう指定。５列にしたいならこの行は19%にする。*/
	margin-left: 1%;
}
/*メニュー１個あたりの設定*/
#footermenu ul li {
	padding: 0 15px;	/*上下、左右への余白*/
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	color: #fff;	/*文字色*/
	opacity: 0.9;	/*透明度。色を70%出した状態。*/
}
/*マウスオン時のリンクテキスト*/
#footermenu a:hover {
	opacity: 1;	/*透明度。色を100%出した状態。*/
}

@media screen and (max-width: 767px) {

	.fb-container {
		width: 100%;
		max-width: 500px;
		text-align:center;
	}
}

footer{
	clear: both;overflow: hidden;
	background: #20b1e1;	/*背景色*/
	color: #fff;		/*文字色*/
	text-decoration: none;
}



footer .footInner{
	padding:0 15px;
	font-size:1.0rem;

}



footer a{
	color:#b4f8ff;
	text-decoration: none;

}

footer .footInner .left_box{
	float:none;

}

footer .footInner .right_box{
	float:none;
	margin-top:30px;

}





footer .footInner .id{
	width:280px;
	margin-bottom:15px;
	
}

footer .footInner .right_box h2{
	font-size:1.3em;
	font-weight:bold;
	margin-bottom:0px;
	color: #020780;
}

@media screen and (min-width: 1100px) { 

footer .footInner{
	width:1100px;
    margin:0 auto;
	padding:0;
	text-decoration: none;
}

footer .footInner a{
	color:#faffc3;
	text-decoration: none;
}

footer .footInner .left_box{
	width:40%;
	float:left;
}

footer .footInner .right_box{
	width:60%;
	float:right;
	margin-top:15;
	text-decoration: none;
}

footer .footInner .id{
	width:344px;
	
}
}




/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;text-align: center;
	background: #333;	/*背景色*/
	padding: 10px;		/*余白*/
}
#copyright a {text-decoration: none;color: #fff;}
#copyright .pr {display: block;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

/*よくあるご質問
---------------------------------------------------------------------------*/
/*外側ブロック*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問*/
.faq dt {
	color: #080343;		/*文字色*/
	font-weight: bold;	/*太字にする設定*/
	font-size: 1.2em;
	padding-left: 35px;	/*背景アイコンに重ならないよう左に余白を作る*/
	background: url(../images/faq_q.png) no-repeat left top / 38px;	/*「Q」アイコン*/
}
/*回答*/
.faq dd {
	padding-left: 35px;		/*背景アイコンに重ならないよう左に余白を作る*/
	font-size: 1.2em;
	margin-bottom: 20px;	/*ボックスの下側（外側）に空けるスペース*/
	padding-bottom: 20px;	/*ボックス内の下側に空けるスペース*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	background: url(../images/faq_a.png) no-repeat left top / 38px;	/*「A」アイコン*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption,
.ta2 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #cce6f6;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi,
.ta2 th.tamidashi {
	width: auto;
}
/*ta1,ta2共通設定*/
.ta1,
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th,
.ta2, .ta2 td, .ta2 th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 5px;	/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi,
.ta2 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cce6f6;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f0f0f0;	/*背景色*/
}
/*ta2の左側ボックス*/
.ta2 th {
	background: #fffeba;	/*背景色*/
}
/*ta2の右側ボックス*/
.ta2 td {
	text-align: left;	/*センタリング*/
}
/*料金ページの追加設定（CMS用）*/
.ta1.price td {
	text-align: right;
}
.ta1.price tr.total th {
	background: #b7e0ee;
	font-size: 150%;
}
.ta1.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 150%;
}

/*btn（inputタグ用）
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
	border-radius: 3px;
}
p.check a {color: #fff;}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	bottom: 40px;		/*下から40pxの場所に配置*/
	right: 1%;			/*右から1%の場所に配置*/
	background: #20b1e1;	/*背景色*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 50%;		/*円形にする*/
	animation-name: opa1;	/*冒頭のkeyframesの名前*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {list-style: disc;padding: 0 20px 20px 45px;}
ol {padding: 0 20px 20px 45px;}

/*「NEW」アイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1 {color: #021b8a !important;}
.color2 {color: #ff0000 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fr {float: right;margin-left: 2%;margin-bottom: 20px;}
.fl {float: left;margin-right: 2%;margin-bottom: 20px;}
.big1 {font-size: 200%;letter-spacing: 0.2em;}
.mini1 {font-size: 80%;}
.sh {display: none;}
.w40p {width: 40%;}
.w20p {width: 20%;}
.fl {float: left;margin-right: 2%;margin-bottom: 20px;}



/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	display: none;	/*非表示にする*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;
	animation-name: opa1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px;	/*メニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #20b1e1;	/*背景色*/
	font-size: 18px;		/*文字サイズ*/
	color: #fff;		/*文字色*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	font-size: 12px;	/*文字サイズ*/
	margin-left: 20px
}










/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;position: absolute;z-index: 2;
	top: 15px;	/*上からの配置場所指定*/
	right: 2%;	/*右からの配置場所指定*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;		/*幅*/
	height: 50px;		/*高さ*/
	border-radius: 50%;	/*円形にする。この行削除すれば正方形になります。*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #20b1e1 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、アイコンの読み込み、上半分(top)を表示、幅50px*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #333 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、アイコンの読み込み、上半分(bottom)を表示、幅50px*/
}

/*main,sub
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side {display: none;}
.big1 {font-size: 150%;letter-spacing: normal;}
.sh {display:block;}
.pc {display:none;}

}



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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header .inner {
	position: static;
	height: auto;
	padding: 10px;
	background-position: right center;	/*背景画像の配置場所の変更。右側に寄せる。*/
}
/*ロゴ画像*/
header #logo {
	position: static;
	margin: 0px 20px 10px 10px;
}

h1 {
	font-size: 1.0em;
	font-weight: 300;
	color: #03053a;
}


/*ヘッダー内メニュー（「資料請求・お問い合わせ」と「見学のお申し込み」ボタン）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: static;
	margin: 0 auto;
}
/*メニュー１個あたり*/
#headermenu li {
	float: none;
	max-width: 350px;	/*最大幅*/
	margin: 10px auto;
	text-align: center;
}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*文字サイズ指定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 280px;
	padding: 10px 0;
}

h1 {
	font-size: 1.0em;
	font-weight: 300;
	color: #03053a;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption,
.ta2 caption {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1,ta2共通設定*/
.ta1, .ta1 td, .ta1 th,
.ta2, .ta2 td, .ta2 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 80px;
}






/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}

}

/* ステップ */
.flow_design10 {
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .flow10 {
	padding-left: 0;
  }
  
  .flow10 > li {
	list-style-type: none;
	border: 2px solid #4D9BC1;
	padding: 20px;
	border-radius: 20px;
  }
  
  .flow10 > li:not(:last-child) {
	margin-bottom: 40px;
	position: relative;
  }
  
  .flow10 > li:not(:last-child)::after {
	content: '';
	position: absolute;
	border: 20px solid transparent;
	width: 0;
	height: 0;
	bottom: -53px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	border-top-color: #4D9BC1;
  }
  
  .flow10 > li dl dt {
	font-size: 1.3em;
	font-weight: bold;
	border-bottom: 2pt dashed #ccc;
	padding-bottom: 0.5em;
	margin-bottom: 0.5em;
  }
  
  .flow10 > li .icon10 {
	color: #4D9BC1;
	margin-right: 0.5em;
  }
  
  .flow10 > li dl dd {
	margin: 0;
  }

/* ステップ03 */
.flow_design03 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 20px;
  }
  
  .flow_design03 ul {
	padding: 0;
  }
  
  .flow_design03 li {
	list-style-type: none;
  }
  
  .flow_design03 dd {
	margin-left: 0;
  }

  .flow_design03 h5 {
	font-size: 0.8em;
	color: #333;
  }

  
  .flow03 {
	position: relative;
  }
  
  .flow03::before {
	content: "";
	width: 15px;
	height: 100%;
	background: #eee;
	margin-left: -129px;
	display: block;
	position: absolute;
	top: 0;
	left: 120px;
	border-radius: 20px;
  }
  
  .flow03 > li {
	position: relative;
	font-size: 1.3em;
	font-weight: 600;
	color: #ff6200;
  }

  .flow03 > li .text {
	position: relative;
	font-size: 1.0em;
	font-weight: 600;
	color: #21201f;
  }
  
  .flow03 > li:not(:last-child) {
	margin-bottom: 60px;
  }
  
  .flow03 > li .icon03 {
	font-size: 1.0em;
	width: 1.8em;
	height: 1.8em;
	line-height: 2;
	text-align: center;
	font-weight: bold;
	border-radius: 100vh;
	color: #fff;
	background: #ff6200;
	display: inline-block;
	margin-right: 0.3em;
  }
  
  .flow03 > li dl {
	padding-left: 20px;
	position: relative;
  }
  
  .flow03 > li dl::before,
  .flow03 > li dl::after {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
  }
  
  .flow03 > li dl::before {
	width: 7px;
	height: 7px;
	margin-top: -3px;
	background: #ff6200;
	border-radius: 50%;
	left: -4px;
  }
  
  .flow03 > li dl::after {
	width: 15px;
	border-bottom: 1px dashed #999;
	position: absolute;
	left: 5px;
  }
  
  .flow03 > li dl dt {
	font-size: 1.3em;
	font-weight: 600;
	color: #ff6200;
	margin-bottom: 0.5em;
	display: flex;
	align-items: center;
  }

  .flow_title {
	display: flex;
	padding: 10px;
	justify-content: center;
	align-items: center;
	margin: 0;
	width: 100%;
	height: auto;
	background-color: #025c9c;
	font-size: 1.8em;
	font-weight: 600;
	color: #ffffff;

  }

  /* ステップ　青ラベルボックス */
  .box-design14 {
	overflow: hidden;position: relative;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 5px;	/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックス同士に空けるスペース*/
  }
  .box-design14-ttl {
	position: relative;
	left: -40px;
	background-color: #4c9ac0;
	color: #fff;
	padding: 0.5em 1em;
	margin: 0;
	width: 100%;
	font-size: 1.9em;
	font-weight: bold;
  }


  /* ステップ　ここまで　青ラベルボックス */

  /* ミニ　ヘッダーナビ */
.nav-m ul{
	display: table;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	text-align: center;
	color: #333;
	}
	.nav-m ul li{
	display: table-cell;
	position: relative;
	}
	.nav-m ul li a{
	display: block;
	width: 100%;
	}
	.nav-m ul li a::after,
	.nav-m ul li a::before {
	display: block;
	content: ”;
	position: absolute;
	}
	.nav-m ul li a::after {
	bottom: -50%;
	left: 50%;
	width: 5px;
	height: 5px;
	background-color: #4c4646;
	border-radius: 90%;
	}
	.nav-m ul li a.current::after {
	background-color: #3498db;
	}
	.nav-m ul li a:hover{
	color: #3498db;
	}
	.nav-m ul li a:hover:after {
	background-color: rgb(30, 141, 121);
	width: 100%;
	left: 0;
	border-radius: 5px;
	}
	.nav-m ul li a{
	text-decoration: none;
	color:#30335c;
	}
	.nav-m ul li a.current{
	color:#555;
	}
	
	/* トップページ　コメント */
	/*左上にずらした背景色ありタイトル*/
.box74{
	margin: 1em auto; /* ボックスの余白 */
	background-color: #fafafa; /* ボックス背景色 */
	padding:3em 1em 1em; /* ボックス内側余白 */
	position:relative; /* 配置(ここを基準に)*/
	border: 1px solid #5a728b;	/* ボックスの線 (太さ　種類　色)*/
	font-weight: 600;
	color: #080343;
	font-size: 1.3em;
}
.box74 .box-title {
	background-color:#038aa4; /* タイトル背景色 */
	font-size: 1em;/* タイトル文字の大きさ */
	color: #fff ; /* タイトル文字色 */
	padding: 7px 10px;/*タイトルの余白*/
	line-height: 1;/*タイトルの行の高さ*/
	position:absolute;	/* 配置(ここを動かす) */
	top: -10px; /*上から（0px）移動*/
	left: 20px; /*左から(0px)移動*/
	font-size: 1.4em;
	border: 1px solid #5a728b;	/* ボックスの線 (太さ　種類　色)*/
	font-weight: 600;
}

/* 電話のボタン */
.button-2 {
	display:flex; 
	justify-content:center; 
	margin-right:70px; 
	margin-left:70px;
	padding: 0.4em 1.6em;
	font-size: 0.8rem;
	color: #00b5ad;
	text-decoration: none;
	user-select: none;
	border: 1px #00b5ad solid;
	border-radius: 20px;
	transition: 0.4s ease;
  }
  
  .button-2:hover {
	color: #fff;
	background: #00b5ad;
  }

  /* 地域ページタイトル */
  .heading-035 {
    display: flex;
    align-items: center;
    gap: 0 7px;
    color: #333333;
}

/* 大阪市のページ　車種名 */
.box28 {
    position: relative;
    margin: 2em 0;
    padding: 25px 10px 7px;
    border: solid 2px #049483;
}
.box28 .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #049483;
    color: #ffffff;
    font-weight: bold;
}
.box28 p {
    margin: 0; 
    padding: 0;
}

.tsukin {
    position: relative;
    color:#6d5353;/*文字色*/
    background: #efece0;/*背景色*/
    display: block;
    padding: 20px;/*文字回りの余白*/
    font-size: 20px;/*文字サイズ*/
    background-image: repeating-linear-gradient(-60deg,#fff 0 3px,transparent 3px 5px);/*背景ストライプの角度・色・太さなど*/
    box-shadow: 3px 3px 5px #c7c4b2;/*影（左右距離 上下距離 ぼかしサイズ 色*/
}

.nenshi {
	background-image: url("../images/snow.png");
	text-align: center;
	color: #ffffff;
	font-size: 1.4em;
}
.nenshi a {
	color:rgb(255, 255, 255);
	}

  /* 利用ガイドの目次  */
  .toc-001 {
    margin-bottom: 30px;
    padding: 1em 1em 1em 2em;
    border: 1px solid #999;
    background-color: #f7f7f7;
    color: #333333;
	font-size: 1.1em;
}

.toc-001 div {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 5px 0;
	font-size: 1.1em;
}


.toc-001 li {
    padding: 5px;
	font-size: 1.1em;
}

.toc-001 a {
    color: #166c9d;
}

/* キャッチコピーテキスト  */
/* =========================================================
   sucuta1 最終上書き（Google Fonts 適用版）
   ※ style.css?v=20251218 の一番最後に置く
========================================================= */

/* まず #main h2 の効果を sucuta1 だけ無効化（強制） */
#main h2.sucuta1 {
  /* Google Fonts を指定 */
  font-family: "Noto Sans JP", sans-serif!important;
  font-weight: 700 !important; /* 太字にする場合 */

  background: transparent !important;
  color: #007aa2 !important;
  border-radius: 0 !important;

  margin: 0 0 16px !important;
  padding: 0.8rem 1.0rem 1.0rem !important;

  font-size: 1.6rem !important;
  line-height: 1.25 !important;
}

#main h2.sucuta1::first-letter {
  border-left: none !important;
  padding-left: 0 !important;
}

#main h2.sucuta1 span {
  /* 下の段（補足文）のフォント設定 */
  font-family: 'Noto Sans JP', sans-serif !important;
  font-weight: 600 !important; /* 標準の太さにする場合 */

  display: block !important;
  margin-top: 14px !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  color: #444 !important;
}


/* =========================
   安心パック（車両の免責補償）
   ========================= */

.anshin-pack {
  padding: 28px 16px;
  background: #fff;
}

.anshin-pack__inner {
  max-width: 980px;
  margin: 0 auto;
}

.anshin-pack__head {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;

  padding: 20px;
  border: 1px solid #e7eef5;
  border-radius: 18px;

  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

/* 薄い流線（ウェーブ） */
.anshin-pack__head::before {
  content: "";
  position: absolute;
  inset: -30% -20%;
  background:
    radial-gradient(60% 40% at 20% 30%, rgba(48, 253, 185, 0.16), transparent 60%),
    radial-gradient(55% 40% at 80% 20%, rgba(232, 210, 45, 0.12), transparent 62%),
    radial-gradient(60% 45% at 70% 85%, rgba(47,111,179,0.10), transparent 60%);
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}

/* 流線の“ライン感”を少し足す */
.anshin-pack__head::after {
  content: "";
  position: absolute;
  left: -15%;
  top: -10%;
  width: 140%;
  height: 140%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(31,94,168,0.10) 0px,
      rgba(31,94,168,0.10) 1px,
      transparent 1px,
      transparent 16px
    );
  opacity: 0.18;
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 0;
}

/* 中身を流線より手前に */
.anshin-pack__mark,
.anshin-pack__titles {
  position: relative;
  z-index: 1;
}



.anshin-pack__mark {
display: block;
    margin-left: auto;
    margin-right: auto;
  object-fit: contain;




}
.anshin-pack__mark {
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.10));
}

.anshin-pack__kicker {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #2f6fb3;
  font-weight: 700;
  text-align: center;
}

.anshin-pack__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
  color: #163a63;
}

.anshin-pack__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #2b2b2b;
}

.anshin-pack__body {
  margin-top: 18px;
}

.anshin-pack__card {
  border: 1px solid #e7eef5;
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.anshin-pack__cardTitle {
  margin: 0 0 12px;
  font-size: 18px;
  color: #ea5702;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.anshin-pack__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.anshin-pack__item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #eef3f8;
  background: #fbfdff;
}

.anshin-pack__icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eaf4ff;
  border: 1px solid #d9eaff;
}

.anshin-pack__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #1f5ea8;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.anshin-pack__meta {
  display: grid;
  gap: 2px;
}

.anshin-pack__label {
  margin: 0;
  font-size: 13px;
  color: #4a4a4a;
  font-weight: 700;
}

.anshin-pack__price {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #0f3e7a;
  letter-spacing: 0.02em;
}

.anshin-pack__price span {
  font-size: 14px;
  font-weight: 700;
  margin-left: 2px;
  color: #0f3e7a;
}

.anshin-pack__note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #272338;
  font-weight: 600;
}

/* SP最適化 */
@media (max-width: 640px) {
  .anshin-pack__head {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .anshin-pack__mark {
    width: 92px;
    height: 92px;
  }

  .anshin-pack__title {
    font-size: 20px;
	color: #192957;
	font-weight: bold;
  }

  .anshin-pack__grid {
    grid-template-columns: 1fr;
  }
}

