@charset "UTF-8";
/* CSS Document */


/******************************************タブレットレイアウト*****************************************/

@media screen and (min-width: 1368px) and (max-width: 1535px) {

body {
	margin-top: 85px; /* メニュー高さ分 */
	overflow-x: hidden;
	}

.sp-br {
	display: none;
	}

.bxslider__container{
	background-color: #FFFFFF;
	text-align:center;
	position: relative;
	overflow: hidden;
	}

.navi{
	background-color: #F0F0F0;
	padding: 5px 0;
	}

.navi__text{
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	font-weight:normal;
	text-align:center;
	color: #222222;
	}

/*author-section******************************************/

/* 全体（外側） */
.c-author {
	display: flex;
	justify-content: center;
	margin: 40px 0;
}

/* 幅制御 */
.c-author-inner {
	width: 100%;
	max-width: 1436px;
	padding: 0 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 24px;
	}

/* 1ブロック全体 */
.c-author-box {
	width: 100%;
	box-sizing: border-box;
	text-align: left;
	}

/* 役割ラベル */
.c-author-role-label {
	display: table;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	color: #FFFFFF;
	background-color: #3261B9;
	padding: 8px 16px;
	border-radius: 9px 9px 0 0;
	margin: 0 0 0 16px;
	}

.c-author-role-label.is-right {
	margin: 0 16px 0 auto;
	}

/* 本体 */
.c-author-main {
	display: flex;
	align-items: flex-start;
	background-color: #3261B9;
	border-radius: 9px;
	padding: 16px;
	width: 100%;
	box-sizing: border-box;
	}

.c-author-main.is-reverse {
	flex-direction: row-reverse;
	}

/* アイコン */
.c-author-icon {
	background-color: #FFFFFF;
	padding: 6px;
	border-radius: 12px;
	box-shadow: 0 0 0 3px #3261B9;
	margin: 16px 24px;
	display: inline-block;
	overflow: hidden;
	transition: background-color 0.25s ease, transform 0.15s ease;
	}

.c-author-icon:hover {
	background-color: #e6f0ff;
	transform: translateY(-2px);
	}

.c-author-icon:active {
	transform: scale(0.97);
	}

.c-author-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	display: block;
	transition: transform 0.2s ease;
	}

.c-author-icon:active img {
	transform: scale(0.92);
	}

.c-author-icon:hover img {
	transform: scale(0.95);
	}

/* 吹き出し */
.c-author-content {
	position: relative;
	flex: 1;
	background-color: #FFFFFF;
	border-radius: 10px;
	padding: 20px;
	margin: 16px 24px 16px 24px;
	box-sizing: border-box;
	}

/* 左向き三角 */
.c-author-content.is-left::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
	border: 15px solid transparent;
	border-right: 15px solid #FFFFFF;
	}

/* 右向き三角 */
.c-author-content.is-right::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
	border: 15px solid transparent;
	border-left: 15px solid #FFFFFF;
	}

/* テキスト */
.c-author-name {
	font-size: 1.25rem;;
	font-weight: bold;
	margin-bottom: 8px;
	}

.c-author-name a {
	text-decoration: none;
	}

.c-author-name a:hover {
	text-decoration: underline;
	}

.c-author-desc {
	font-size: 1rem;
	line-height: 1.8;
	text-align: justify;
	}

/*common-section******************************************/

.common-section__container {
	width: 100%;
	padding: 0 2%;           /* 左右に2%の余白 */
	box-sizing: border-box;  /* パディングを含めた幅計算 */
	margin: 0 auto;          /* 中央寄せ（必要に応じて） */
	}

.common-section__content
	{
	width:100%;
	max-width:1436px;
	background-color: #FFFFFF;
	text-align:left;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 30px; /* 上下左右の余白を30pxに設定 */
	}

/*summary-section******************************************/

.c-summary-box {
	background: #f5f8ff;
	border-left: 4px solid #3b82f6;
	padding: 20px;
	margin: 0 auto;
	}

.c-summary-list {
	list-style: none;
	margin: 20px;
	}

.c-summary-list li {
	position: relative;
	font-size: 1.375rem;
	margin: 24px 0;
	padding: 0 0 0 40px;
	text-align: justify;
	}

.c-summary-list li::before{
	position: absolute;
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-size: 1.375rem;
	font-weight: 900;
	content: '\f058';
	color: #3261B9;
	}

.c-toc-box {
	background: #f5f8ff;
	border-left: 4px solid #3b82f6;
	padding: 20px;
	margin: 0 auto;
	}

.c-toc-list {
	list-style: none;
	margin: 20px;
	}

.c-toc-list li {
	position: relative;
	font-size: 1.375rem;
	margin: 24px 0;
	padding: 0 0 0 40px;
	text-align: justify;
	}

.c-toc-list li::before{
	position: absolute;
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-size: 1.375rem;
	font-weight: 900;
	content: '\f0a4';
	color: #3261B9;
	}

.c-toc-list a {
	text-decoration: none;
	}

.c-toc-list a:hover {
	text-decoration: underline;
	}

/*title-section******************************************/

.section-title__wrapper{
        display: flex;
        justify-content: center; /* 水平方向の中央寄せ */
	overflow: auto;
	margi: 0;
	}

.section-title__content{
	width:100%;
	max-width:1436px;
	height:100px;
	margin: 0px 50px; /* 左右の余白を50pxに設定 */
	}

.article-date__wrapper{
	width:100%;
	height: auto;
	overflow: auto;
        margin-top: 20px;
	}

.article-date__content{
	width:300px;
	color: #3261B9;
	border-bottom-style: solid;
	border-width: 2px;
	border-color: #3261B9;
	}

.article-date__text{
	font-size: 1.375rem;
	letter-spacing: 0em;
	font-weight:bold;
	text-align:center;
        margin-bottom:10px;
	}

.subtitle-section__wrapper{
	width:100%;
	height: auto;
	overflow: auto;
	margin-top: 20px;
	}

.subtitle-section__content{
	width:300px;
	color: #3261B9;
	border-bottom-style: solid;
	border-width: 2px;
	border-color: #3261B9;
	}

.subtitle-section__text{
	font-size: 1.375rem;
	letter-spacing: 0em;
	font-weight:bold;
	text-align:center;
        margin-bottom:10px;
	}

/*column-section******************************************/

.column-section__wrapper
	{
	display: flex;
	flex-direction: column;
	flex-grow: 1; /* 余白がありつつも適切に伸縮 */
	background-color: #83B7E6;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 50px 0 0 0; /* 下を消す */
	padding:30px;
	}

.column-section__content
	{
	width:100%;
	max-width:1436px;
	background-color: #FFFFFF;
	text-align: justify;
	hyphens: auto;
	overflow-x: hidden;
	overflow-y: auto;
	border-radius: 10px;
	}

.column-section__image {
	max-width: 1436px;
	margin: 0 auto 30px;
	padding: 20px 20px 0;
	}

.column-section__image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1396 / 785;
	border-radius: 8px;
	}

.c-article-text{
	font-size: 1.125rem;
	line-height:1.5;
	letter-spacing: 0.03em;
	font-weight:normal;
	text-align: justify;
	hyphens: auto;
	color: #222222;
        margin:20px;
	}

/*tags-section******************************************/

.tags-section__wrapper {
	clear: both;
	background-color: #83B7E6;
	margin-bottom: 50px;
	padding: 30px 20px;
	}

.tags-section__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1436px;
	margin: 0 auto; /* ←これもセットで中央寄せ */
	}

/* リード文（白抜き） */
.cta-area__lead {
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
	}

/* タグ側 */
.c-column-tags {
	margin: 0;
	}

.c-column-tags__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
	}

/* タグボタン */
.c-column-tags__link {
	display: inline-block;
	padding: 6px 12px;
	font-size: 0.875rem;
	color: #333;
	background: #fff; /* ←白抜きに合わせて変更 */
	border-radius: 20px;
	text-decoration: none;
	transition: all 0.2s ease;
	}

.c-column-tags__link:hover {
	background: #3261B9;
	color: #fff;
	}

/*trust-section******************************************/

/* 1) 外側：グレー背景＋中央寄せ */
.trust-section__wrapper {
	background-color: #F0F0F0;
	margin: 50px 0;
	padding: 20px 0;
	display: flex;
	justify-content: center;
	}

/* 2) 内側：max-widthだけ指定、幅は自動、自動マージンで中央寄せ */
.trust-section__content {
	max-width: 1436px;    /* コンテンツ部分の最大幅 */
	margin: 0 auto;
	padding: 0 30px;      /* 端余白（必要に応じ調整） */
	box-sizing: content-box; /* パディングを幅に含めない */
	background: none;     /* 背景色は各カードだけでOK */
	}

/* 3) カード部分はこれまで通り */
.trust-section__card {
	position: relative;
	background-color: #FFFFFF;
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 10px;
	overflow: hidden;
	}

/* 三角形ラベルもそのまま */
.triangle {
	position: absolute;
	top: 0;
	left: 0;
	border-bottom: 70px solid transparent;
	border-left:   70px solid #3261B9;
	}

.label {
	position: absolute;
	top: 14px;
	left: 0px;
	font-size: 1rem;
	font-weight:bold;
	color: #fff;
	transform: rotate(-45deg);
	}

.text-headline--trust{
	font-size: 2.0rem;
	letter-spacing: 0em;
	font-weight:bold;
	text-align: justify;
	hyphens: auto;
	color: #3261B9;
        margin-left:70px;
        margin-bottom:20px;
        padding-top:14px;
	}

.text-paragraph--trust-card{
	font-size: 1.125rem;
	line-height:1.5;
	letter-spacing: 0.03em;
	font-weight:normal;
	text-align: justify;
	hyphens: auto;
	color: #222222;
        padding:10px 30px 10px 30px;
	}

/* 補足ボックス */
.trust-block__note {
	margin: 28px 0 24px;
	padding: 22px 24px;
	background-color: #F7F9FC;
	border-radius: 6px;
	}

.trust-block__note-title {
	margin: 0 0 10px;
	font-size: 1.25rem;
	font-weight: bold;
	text-align: justify;
	color: #222222;
	}

.trust-block__note-text {
	margin: 0;
	font-size: 1.0rem;
	line-height: 1.9;
	text-align: justify;
	color: #333333;
	padding: 10px 0 0 10px;
	}

/* 出典リンク */
.trust-block__source {
	margin: 0;
	font-size: 1.0rem;
	line-height: 1.8;
	text-align: justify;
	color: #555555;
	border-top: 1px solid #DDDDDD;
	padding: 30px 0 20px 30px;
	}

.trust-block__source a {
	color: #3261B9;
	text-decoration: underline;
	}

.trust-block__source a:hover {
	text-decoration: none;
	}

/*cta-banner******************************************/


.cta-banner__wrapper {
	display: flex;
	justify-content: center;
	background-color: #F0F0F0;
	margin: 50px 0 30px;
	overflow: hidden; /* ホバー拡大用 */
	}

/* コンテンツ枠 */
.cta-banner__content {
	width: 100%;
	max-width: 1436px;
	background-color: #F0F0F0;
	padding: 40px 2%; /* ←固定px→%にしてCLS対策 */
	box-sizing: border-box;
	}

/* 画像ラッパー（追加推奨） */
.cta-banner__image {
	position: relative;
	width: 100%;
	aspect-ratio: 1536 / 1024; /* ←これ超重要（CLS対策） */
	overflow: hidden;
	border-radius: 10px; /* 任意 */
	}

/* 実画像 */
.cta-banner__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	will-change: transform;
	transform: scale(1);
	transition: transform 0.4s ease;
	}

/* ホバー拡大 */
.cta-banner__image:hover img {
	transform: scale(1.05); /* ←軽めに（GPU負荷抑える） */
	}



/*company_overview******************************************/

.company-section__wrapper {
	width: 100%;
	max-width: 1436px;
	margin: 50px auto 0;     /* 上に50px、左右は自動、下は0 */
	padding: 0;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	}

/* dl 自体も横幅いっぱいに広げる */
.company-overview__dl {
	width: 100%;
	}

dl.company-overview__dl {
	border-left: 1px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	margin: 15px 20px 20px;
	}

dl.company-overview__dl dt,
dl.company-overview__dl dd {
	border-top: 1px solid #CCCCCC;
	line-height:1.6;
	padding: 12px;
	margin: 0;
	font-weight:normal;
	}

dl.company-overview__dl > div {
	display: flex;
	flex-wrap: wrap; /* dtの複数行にも対応できるように */
	}

dl.company-overview__dl dt {
	background: #EDEDED;
	font-size: 0.875rem;
	width: 30%; /* ここは調整可：ラベル側の幅 */
	box-sizing: border-box;
	}

dl.company-overview__dl dd {
	width: 70%;
	font-size: 0.875rem;
	background-color: #FAFAFA;
	box-sizing: border-box;
	}

.company-overview__dl dd ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
	}

.company-btn-wrap {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	}

.company-btn {
	display: inline-block;
	background-color: #007ACC;
	color: #fff;
	font-size: 1.0rem;
	padding: 12px 24px;
	margin-bottom: 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: 
	background-color 0.3s,
	color 0.3s,
	transform 0.2s,
	text-decoration 0.3s;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	}

.company-btn:hover {
	background-color: #005B99;
	color: #FFFFFF;
	text-decoration: none;
	transform: translateY(-2px);
	}

/* 住所部分 */
.footer_address {
	padding: 0.75em;
	border-radius: 4px;
	font-style: normal;
	font-size: 0.875rem;
	line-height: 1.6;
	color: #FFF;
	max-width: 1200px;
	margin: 1em auto 0 auto;
	}

/*copyright**************************************************/

.copyright-section__wrapper
	{
        clear:both;
	background-color: #3261B9;
	overflow: auto;
	margin-top: 10px;
	}

.copyright-section__content
	{
	width:100%;
	max-width:1200px;
	background-color: #3261B9;
	padding: 20px;
	}

.footer-copyright__text{
	font-size: 1.0rem;
	letter-spacing: 0.03em;
	font-weight:normal;
	color: #FFFFFF;
	text-align:center;
	}

/*sp-bottom-nav**********************************************/

.sp-bottom-nav {
  display: none;
}

/***************************************************テキスト***************************************************/

h1 {
	max-width: none; /* ← これが一番重要！制限解除 */
	width: auto;
	height: auto;
	font-weight: bold;
	text-align: left;
	letter-spacing: 0;
	margin: 0;
	display: flex;
	align-items: center; /* ヘッダー内で縦中央 */
	}

/* テキスト部分 */
.site-title__text {
	font-size: 12px; /* ← 小さめにして暴走防止 */
	line-height: 1.2;
	white-space: nowrap; /* ← 折り返し防止 */
	overflow: hidden;
	text-overflow: ellipsis; /* 長すぎたら…で省略 */
	}

/* ロゴ */
h1 img {
	display: block;
	max-width: 252px; /* ← ここでロゴサイズを制御 */
	height: auto;
	}

h2{
	font-size: 2.75rem;
	letter-spacing: 0em;
	font-weight:bold;
	text-align:left;
	}

h3{
	font-size: 2.5rem;
	letter-spacing: 0em;
	font-weight:bold;
	text-align:left;
	}

.highlight-header__wrapper{
	width:100%;
	max-width:1920px;
	height: auto;
	overflow: auto;
	}

.highlight-header__inner--right{
	float: right;
	height: auto;
	background-image: -webkit-gradient(linear, left top, right top, from(#6E9DF5), to(#3261B9));
	background-image: linear-gradient(90deg, #6E9DF5 0%, #3261B9 100%);
	border-radius: 10px 0px 0px 10px;
	}

.highlight-header__inner--left{
	float: left;
	height: auto;
	background-image: -webkit-gradient(linear, left top, right top, from(#3261B9), to(#6E9DF5));
	background-image: linear-gradient(90deg, #3261B9 0%, #6E9DF5 100%);
	border-radius: 0px 10px 10px 0px;
	}

.highlight-header__text{
	width:100%;
	height: auto;
	min-width:1000px;
	max-width:1000px;
	font-size: 2.5rem;
	letter-spacing: 0em;
	font-weight:bold;
	text-align:left;
        padding:30px;
        position: relative;
	}

.menu__contact-text {
	font-size: 26px;
	letter-spacing: 0em;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1.5;
	text-align: center; /* テキスト中央揃え */
	}

.h_headline{
	font-size: 2.0rem;
	line-height:1.5;
	letter-spacing: 0em;
	font-weight:bold;
	text-align: justify;
	hyphens: auto;
	color: #222222;
	border-left: solid 10px #3261B9;
        padding:10px;
        margin:20px;
	}

/********************************************ドロップダウンメニュー********************************************/

.dropdown_nav a{
    text-decoration: none;
    color: #222;
    }

.dropdown_nav{
    list-style: none;
    width: 100%;
    max-width: 1200px;
    margin-top:52px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    }

.dropdown_nav li{
    display: block;
    width: 20%;
    }

.dropdown_nav li a{
    display: block;
    font-weight:bold;
    line-height:1.5;
    text-align: center;
    font-size: 1.0rem;
    }

.dropdown_nav li a:hover{
    display: block;
    color: #83B7E6;
    }

/* 子要素のみのスタイル */
.dropdown_nav ul{
    display: block;
    position: relative;
    list-style: none;
    display: none;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: #F0F0F0;
    background-color: #FFFFFF;
    border-radius: 0px 0px 10px 10px;
    }

.dropdown_nav ul li{
    display: block;
    width: 100%;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
    }
}