/* 
 * メインスタイルシート
 * テーマの基本スタイルを定義
 */


/* フォント */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;700;800&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

.noto-sans-jp-100 {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
}

.noto-sans-jp-200 {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
}

.noto-sans-jp-300 {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
}

.noto-sans-jp-400 {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.noto-sans-jp-500 {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

.noto-sans-jp-600 {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

.noto-sans-jp-700 {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

.noto-sans-jp-800 {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 800;
	font-style: normal;
}

.noto-sans-jp-900 {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
}
.m-plus-rounded-1c-light {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.m-plus-rounded-1c-regular {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.m-plus-rounded-1c-medium {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.m-plus-rounded-1c-bold {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.m-plus-rounded-1c-extrabold {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 800;
	font-style: normal;
}

.noto-serif-jp-200 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.noto-serif-jp-300 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.noto-serif-jp-400 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.noto-serif-jp-500 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.noto-serif-jp-600 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.noto-serif-jp-700 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.noto-serif-jp-800 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.noto-serif-jp-900 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}


/* リセットとベーススタイル */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--font-size-text14:0.7291666666666666; /*14px*/
	--font-size-text16:0.8333333333333334vw; /*16px*/
	--font-size-text18:0.9375vw; /*18px*/
	--font-size-text24:1.25vw; /*24px*/
	--font-size-text32:1.6666666666666667vw; /*32px*/
	--font-size-text64:3.3333333333333335vw; /*64px*/
	--text-color: #444;
	--blue: #00AAFF;
	--orange: #FFAA28;
	--gray: #707070;
	--gradient-primary: linear-gradient(to right, #FFAA28, #FC7E00);
	--gradient-secondary: linear-gradient(to right, #2819A0, #00AAFF);
	--gradient-vertical: linear-gradient(to bottom, #FFAA28, #FC7E00);
	--gradient-blue: linear-gradient(to right, #00AAFF, #004DFF);
}

body {
	font-family: "Noto Sans JP",-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: var(--gray);
	background-color: #fff;
	font-size: 16px;
}
@media (max-width: 983px) {
	body{
		padding-top: var(--header-height);
	}
}

a{
	text-decoration: none;
	transition: opacity 0.3s;
	color:var(--gray);
}

a:hover {
	opacity: 0.8;
}

.is_pc{
	display: block;
}

.is_sp{
	display: none;
}
@media (max-width: 983px) {

	.is_pc{
		display: none;
	}

	.is_sp{
		display: block;
	}

}

/*=====HEADER=====*/
/* ヘッダーコンテナ */
.header_container {

}

/* ヘッダートップ */
.header_top {
	max-width: 1000px;
	margin:0 auto;
	display: flex;
	justify-content: space-between;
}
.header_top_left {
}
.header_top_left .site-logo {
	display: flex;
	align-items: center;
}
.header_top_left img {
	margin-right: 30px;
}
.header_top_left .header_company_name_wrap a {
	text-decoration: none;
	color: inherit;
}
.header_top_left .header_company_name_wrap > a > * {
	line-height: 1;
	display: block;
}
.header_top_left .header_company_aflac {
	font-size: 16px;
	margin-bottom: 5px;
} 
.header_top_left .header_company_name {
	font-size: 27px;
	font-weight: 500;
}
.header_top_right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header_top_right_tel a {
	display: flex;
	align-items: center;
	color: #FFAA28;
	font-weight: 500;
	font-size: 18px;
}

.header_top_right_tel a::before {
	content: '';
	display: inline-block;
	width: 32px;
	height: 32px;
	background: #FFAA28;
	border-radius: 50%;
	margin-right: 8px;
	background-image: url('../images/tel_wh.svg');
	background-size: 18px;
	background-position: center;
	background-repeat: no-repeat;
}

.header_top_right_contact a {
	display: inline-block;
	padding: 8px 24px;
	background: var(--gradient-primary);
	color: #fff;
	border-radius: 25px;
	font-weight: 500;
	position: relative;
	padding-right: 40px;
}

.header_top_right_contact a::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

/* ヘッダー */
.site-header {
	padding: 1rem 0 0;
	background: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ナビゲーション */
.site-navigation {
	background: #00AAFF;
	margin-top: 20px;
}

.header-menu {
	display: flex;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 1000px;
}

.header-menu > li {
	position: relative;
}

.header-menu > li > a {
	display: flex;
	align-items: center;
	padding: 15px 25px;
	color: #fff;
	font-weight: 500;
	transition: background-color 0.3s;
}

.header-menu > li > a:hover {
	background: rgba(255, 255, 255, 0.1);
}

.header-menu > li > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 8px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #fff;
}

/* サブメニュー */
.header-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 200px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	z-index: 100;
	list-style: none;
	padding: 0;
	margin: 0;
}

.header-menu li:hover > .sub-menu {
	display: block;
}

.header-menu .sub-menu li a {
	display: block;
	padding: 12px 20px;
	color: #333;
	transition: all 0.3s;
}

.header-menu .sub-menu li a:hover {
	opacity: 1;
	background: #00AAFF;
	color: #FFFFFF;
}

/* ハンバーガーメニュー */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	position: relative;
	z-index: 1000;
}

.menu-toggle .bar {
	display: block;
	width: 25px;
	height: 3px;
	background: #333;
	margin: 5px 0;
	transition: all 0.3s;
}

.site-navigation-sp-wrap{
	display: none;
}

/* レスポンシブ */
@media (max-width: 983px) {
	.site-header{
		padding: 0;
	}
	/* ヘッダーナビゲーション */
	.header_container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 20px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		width: 100%;
		background: #fff;
	}

	.header_top {
		margin: 0;
	}

	.pc-navigation {
        display: none;
    }
    .site-navigation-sp-wrap {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        z-index: 1002;
        transition: right 0.3s ease;
        padding: 20px 20px 20px;
        overflow-y: auto;
    }

	.site-navigation-sp-wrap.active {
		right: 0;
	}

	.site-navigation-sp-wrap-header .site-logo{
		display: flex;
		align-items: center;
	}
	.site-navigation-sp-wrap-header .site-logo a{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

    .sp-menu {
        margin: 20px 0 0 0;
        padding: 0;
        list-style: none;
    }
    
    .sp-menu > li > a {
        position: relative;
        display: block;
        font-size: 16px;
        padding: 10px;
        border-radius: 4px;
		color: var(--blue);
        display: block;
        padding: 12px 10px 12px 20px;
        border-bottom: 1px solid #eee;
    }

    .sp-menu > li.menu-item-has-children > a::after {
        content: '';
        position: absolute;
        right: 15px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-top: 2px solid var(--blue);
        border-right: 2px solid var(--blue);
        transform: translateY(-50%) rotate(45deg);
    }
    
    /* サブメニュー */
    .sp-menu .sub-menu {
		overflow: hidden;
		right: -100%;
		left: auto;
		width: 80%;
		margin-left: 0;
		transition: right 0.3s, max-height 0s linear 0.3s, overflow 0s linear 0.3s;
		opacity: 1;
		visibility: visible;
		position: fixed;
		z-index: 2;
		height: calc(100% - 105px);
		bottom: 0;
		background-color: #fff;
		padding: 0 15px 0;
    }
	.sp-menu .sub-menu.active {
        right: 0;
    }

	.sp-menu .sub-menu.open{
		overflow: auto;
		right: 0;
		max-height: none;
	}

    .sp-menu .sub-menu li{
		list-style-type: none;
	}

    .sp-menu .sub-menu li > a{
		position: relative;
        display: block;
        font-size: 16px;
        padding: 10px;
        border-radius: 4px;
        color: var(--blue);
        display: block;
        padding: 12px 10px 12px 20px;
        border-bottom: 1px solid #eee;
	}
    .sp-menu .sub-menu li:first-child a{
		text-align: center;
		color:var(--gray);
		position: relative;
	}
    .sp-menu .sub-menu li:first-child a::before{
        content: '';
        position: absolute;
        left: 15px;
        top: 50%;
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-right: 8px solid var(--gray);
        transform: translateY(-50%);
	}

	/* ヘッダートップ右側の要素を非表示 */
	.header_top_right {
		display: none;
	}

	/* ハンバーガーメニュー内の電話番号とお問い合わせ */
	.site-navigation{
		background-color: #fff;
		margin-top: 0;
	}
	.site-navigation .header_contact {
		margin-top: 40px;
		display: flex;
		justify-content: space-between;
	}

	.site-navigation .header_contact_tel {
		width: 48%;
	}

	.site-navigation .header_contact_tel a {
		display: flex;
		justify-content: center;
		align-items: center;
		color: var(--orange);
		font-size: 24px;
		font-weight: 600;
	}

	.site-navigation .header_contact_tel a::before {
		content: '';
		display: inline-block;
		width: 32px;
		height: 32px;
		background: var(--orange);
		border-radius: 50%;
		margin-right: 8px;
		background-image: url('../images/tel_wh.svg');
		background-size: 32px 25px;
		background-position: center;
		background-repeat: no-repeat;
	}

	.site-navigation .header_contact_form{
		width: 48%;
	}
	.site-navigation .header_contact_form a {
		display: inline-block;
		padding: 10px 30px;
		background: var(--gradient-primary);
		color: #fff;
		border-radius: 25px;
		font-weight: 500;
		position: relative;
		padding-right: 40px;
		width: 100%;
	}

	.site-navigation .header_contact_form a::after {
		content: '';
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		width: 8px;
		height: 8px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: translateY(-50%) rotate(45deg);
	}

	/* ハンバーガーメニューボタン */
	.menu-toggle {
		display: block;
		width: 40px;
		height: 40px;
		border: none;
		border-radius: 4px;
		cursor: pointer;
		z-index: 1003;
	}

	.menu-toggle span {
		display: block;
		position: absolute;
		width: 24px;
		height: 2px;
		background: var(--gray);
		left: 8px;
		transition: all 0.3s ease;
	}

	.menu-toggle span:nth-child(1) {
		top: 12px;
	}

	.menu-toggle span:nth-child(2) {
		top: 19px;
	}

	.menu-toggle span:nth-child(3) {
		top: 26px;
	}

	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg);
		top: 19px;
	}

	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg);
		top: 19px;
	}

	/* オーバーレイ */
	.overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.5);
		z-index: 999;
	}

	.overlay.active {
		display: block;
	}
	
}
@media (max-width: 768px) {
	.header_container{
		padding:10px 5%;
	}
	.menu-toggle{
		width: 22px;
	}
	.menu-toggle span{
		width: 22px;
		left: 0;
	}
	.header_top_left img{
		width: 28%;
		margin-right: 10px;
	}
	.header_top_left .header_company_aflac{
		font-size:12px;
	}
	.header_top_left .header_company_name{
		font-size:16px;
	}
	.header_top_right {
		gap: 15px;
	}

	.header_top_right_tel a::before {
		width: 28px;
		height: 28px;
		background-size: 16px;
	}

	.header_top_right_contact a {
		padding: 6px 20px;
		font-size: 14px;
		display: flex;
		align-items: center;
		padding-right: 35px;
	}

	.header_top_right_contact a::before {
		content: '';
		display: inline-block;
		width: 28px;
		height: 28px;
		background: #fff;
		border-radius: 50%;
		margin-right: 8px;
		background-image: url('../images/mail_wh.svg');
		background-size: 16px;
		background-position: center;
		background-repeat: no-repeat;
	}

	.header_top_right_contact a::after {
		right: 15px;
		width: 6px;
		height: 6px;
	}

	.header_top_right_tel a {
		font-size: 16px;
	}

	.site-navigation-sp-wrap{
		padding:2.5%;
	}

	.menu-toggle {
		display: block;
	}

	.site-navigation-sp-wrap-header .site-logo img{
		width: 25%;
        margin-right: 8px;
	}
	.site-navigation-sp-wrap-header .site-logo a{
		align-items: flex-start;
	}
	.site-navigation-sp-wrap-header .site-logo a .header_company_aflac{
		font-size: 10px;
	}
	.site-navigation-sp-wrap-header .site-logo a .header_company_name{
		font-size: 14px;
	}

	.sp-menu > li > a{
		padding:12px 6px;
		font-size:14px;
	}
	.sp-menu > li.menu-item-has-children > a::after{
		width: 6px;
        height: 6px;
	}

	.sp-menu .sub-menu{
		height: calc(100% - 68px);
	}
	.sp-menu .sub-menu li > a{
		font-size:14px;
		padding:12px 6px;
	}
	.site-navigation .header_contact{
		flex-direction: column;
		gap: 20px 0;
	}
	.site-navigation .header_contact_tel{
		width: 100%;
	}
	.site-navigation .header_contact_tel a::before{
		background-size: 60%;
	}
	.site-navigation .header_contact_form{
		width: 100%;
	}
	.site-navigation .header_contact_form a{
		display: block;
		width: 85%;
		margin: 0 auto;
		font-size:14px;
		text-align: center;
	}

}

/* コンテンツ */
.site-content {
	padding: 2rem 0;
}

/* エントリー */
.entry-title {
	margin-bottom: 1rem;
	font-size: 32px;
}

.entry-content {
	margin-bottom: 2rem;
}

.entry-meta {
	color: #666;
	font-size: 14px;
	margin-bottom: 1rem;
}

.entry-footer {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid #eee;
}

/* フッター */
.site-footer {
	background: #00AAFF;
	color: #fff;
	padding: 30px 0 ;
}

.footer_container {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

.footer_left {
	width: 60%;
}

.footer_company {
	line-height: 1.8;
}

.footer_company_name {
	margin-bottom: 5px;
}

.footer_company_branch {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 15px;
}

.footer_company_address {
	line-height: 1.6;
}

.footer_right {
	width: 40%;
}

.footer-navigation {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-menu {
	max-width: 425px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu li {
	position: relative;
}

.footer-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	transition: opacity 0.3s;
}

.footer-menu a:hover {
	opacity: 0.8;
}

.footer_bottom {
	width: 100%;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.footer_copyright {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
}

/* レスポンシブ */
@media (max-width: 983px) {
	.site-footer{
		padding:20px;
	}
}
@media (max-width: 768px) {

	.site-footer {
		padding: 5%;
	}

	.footer_left,
	.footer_right {
		width: 100%;
	}

	.footer_company_name{
		font-size:12px;
		margin-bottom: 0;
	}

	.footer_company_branch{
		font-size:16px;
		margin-bottom: 2.5%;
	}

	.footer_company_address{
		font-size:12px;
	}

	.footer_right {
		margin-top: 12px;
	}

	.footer-navigation {
		gap: 6px;
	}

	.footer-menu {
		gap: 6px;
	}
	.footer-menu a{
		font-size:14px;
	}

	.footer_bottom {
		margin-top: 16px;
		padding-top: 16px;
	}
	.footer_copyright{
		font-size:12px;
	}
	.container {
		padding: 0 10px;
	}
	
	.entry-title {
		font-size: 24px;
	}
}

/* CTA */
.contact_cta{
	background:#fff;
	width: 100%;
	max-width: 552px;
	margin:0 auto;
	border:2px solid var(--gray);
	padding:20px 36px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact_cta_tel a {
	display: flex;
	align-items: center;
	color: #FFAA28;
	font-weight: 500;
	font-size: 24px;
}

.contact_cta_tel a::before {
	content: '';
	display: inline-block;
	width: 48px;
	height: 48px;
	background: #FFAA28;
	border-radius: 50%;
	margin-right: 8px;
	background-image: url('../images/tel_wh.svg');
	background-size: 33px;
	background-position: center;
	background-repeat: no-repeat;
}

.contact_cta_form a {
	display: inline-block;
	padding: 10px 30px;
	background: linear-gradient(to right, #FFAA28, #FC7E00);
	color: #fff;
	border-radius: 25px;
	font-weight: 500;
	position: relative;
	padding-right: 40px;
}

.contact_cta_form a::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 768px) {
	.contact_cta{
		padding: 5%;
		flex-direction: column;
	}
	.contact_cta_tel{
		width: 100%;
		margin-bottom: 5%;
	}
	.contact_cta_tel a {
		font-size:22px;
		justify-content: center;
	}
	.contact_cta_tel a::before{
		width: 32px;
		height: 32px;
		background-size: 60%;
	}
	.contact_cta_form{
		width: 100%;
	}
	.contact_cta_form a{
		display: block;
        width: 85%;
        margin: 0 auto;
        font-size: 14px;
        text-align: center;
	}
}

/* トップページ */
.front-page{
	position: relative;
}

.front-page #top_kv{
	background:#FEE004;
	position: relative;
	padding-bottom: 250px;
}
.front-page #top_kv figure{
	max-width: 963px;
	margin: 0 auto;
}

.front-page #top_kv .kv_bottom{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.front-page #top_kv .kv_bottom img{
	display: block;
	width: 100%;
	min-height: 440px;
}

.kv_bottom_news_container{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 100%;
	max-width: 700px;
	padding-bottom:25px;
}

.kv_bottom_news_ttl {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 15px;
	color:#fff;
}

.news_list {
	margin-bottom: 0px;
}

.news_list li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.news_list li a{
	color:#fff;
	font-size:16px;
}

.news_list li:last-child {
	margin-bottom: 0;
}

.news_date {
	margin-right: 15px;
	min-width: 100px;
}

.news_more {
	text-align: right;
}

.news_more a {
	display: inline-flex;
	align-items: center;
	color: #fff;
	font-size: 14px;
}

.news_more a::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	margin-left: 8px;
	transform: rotate(45deg);
}

@media (max-width: 983px) {
	.front-page #top_kv .kv_bottom img{
		min-height: 400px;
	}

	.front-page #top_kv figure img{
		width: 100%;
	}
}
@media (max-width: 768px) {
	.kv_bottom_news_container{
		padding-bottom: 16px;
	}
	.front-page #top_kv .kv_bottom img{
		object-fit: cover;
		min-height: 360px;
	}
	.kv_bottom_news {
		font-size: 20px;
		margin-bottom: 12px;
	}
	.kv_bottom_news_ttl{
		padding:0 5%;
		font-size:14px;
		margin-bottom: 8px;
	}
	.news_list{
		padding:0 5%;
	}
	.news_list li{
		margin-bottom: 8px;
	}
	.news_list li a{
		font-size:14px;
		display: flex;
		width: 100%;
	}

	
	.news_list li a .news_title{
		display: block;
		width: 100%;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;	  
	}

	.news_date {
		min-width: 8em;
		margin-right: 8px;
	}
	.news_more{
		margin-top: 8px;
		padding:0 5%;
	}
}

/*==========
TOP -top_service
==========*/
.top_service{
	background:#fff;
	padding:37px 0 96px;
}
.top_service_contents{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
.top_service_ttl{
	text-align: center;
	font-size: 32px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
}
.top_service_contents_data{
	margin-top: 37px;
	display: flex;
	flex-direction: column;
	gap: 40px 0;
}
.top_service_contents_data_item{
	display: flex;
	align-items: end;
	border-bottom:2px solid #00AAFF;
	padding:0 0 7px 0;
}
.top_service_contents_data_item dt{
	width: 10em;
	margin-right: 1em;
	font-size:24px;
	color:#00AAFF;
	font-weight: 500;
}
.top_service_contents_data_item dd{
	padding-bottom: 3px;
}
.top_service_contents_data_item a{
	position: relative;
	padding-right: 15px;
}
.top_service_contents_data_item a::after{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-top: 2px solid var(--gray);
	border-right: 2px solid var(--gray);
	transform: translateY(-50%) rotate(45deg);
}
.top_service_bottom{
	margin-top: 60px;
}
.top_service_bottom_ttl{
	text-align: center;
	font-size:32px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
}
.top_service_bottom .contact_cta{
	margin-top:60px;
}

@media screen and (max-width: 983px) {
	.top_service{
		padding:60px 0 100px;
	}
}
@media screen and (max-width: 768px) {
	.top_service{
		padding: 10% 0 12%;
	}
	.top_service_ttl{
		font-size:22px;
	}
	.top_service_contents_data{
		margin-top: 7.5%;
		gap: 20px 0;
	}
	.top_service_contents_data_item{
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-start;
		gap: 3px 0;
	}
	.top_service_contents_data_item dt{
		font-size:16px;
		width: 100%;
	}
	.top_service_contents_data_item dd{
		width: 100%;
		font-size:16px;
		line-height: 1.8;
	}
	.top_service_bottom{
		margin-top: 10%;
	}
	.top_service_bottom_ttl{
		font-size:22px;
	}
	.top_service_bottom .contact_cta{
		margin-top: 10%;
	}
}

/*==========
TOP -top_reason
==========*/
.top_reason{
	background: var(--gradient-blue);
	padding:60px 0;
	position: relative;
	z-index: 1;
}
.top_reason_ttl{
	text-align: center;
	color:#fff;
	font-size:32px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	margin-bottom: 90px;
}
.top_reason_contents_item{
	width: 100%;
	max-width: 738px;
	margin: 0 auto;
}
.top_reason_contents_item_data{
	margin-bottom: 26px;
}
.top_reason_contents_item_data dt{
	border-left: 2px solid #fff;
	padding-left: 8px;
	color:#fff;
	font-size:32px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	margin-bottom: 13px;
	line-height: 1.4;
}
.top_reason_contents_item_data dd{
	color:#fff;
	line-height: 1.6875em;
	padding-left: 8px;
}
.top_reason_achievement{
	margin-top: 76px;
	position: relative;
	z-index: 2;
}
.top_reason_achievement_item{
	position: relative;
	z-index: 3;
	padding: 20px;
	max-width: 1000px;
	margin:0 auto 36px;
	padding-left:131px;
	color:#fff;
	font-size:24px;
	font-weight: 500;
}
.top_reason_achievement_item_right {
	display: block;
	text-align: right;
	padding-right: 48px;
}
.top_reason_achievement_item::before{
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #FFAA28;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	z-index: -1;
}
.top_reason_achievement_item::after {
	content: '';
	position: absolute;
	top: 0;
	left: -1px;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
	z-index: -1;
}

.top_reason_achievement_item > * {
	position: relative;
	z-index: 4;
	color: #fff;
}
.top_reason_achievement_item_number{
	font-size:64px;
}
.top_reason_achievement_item_ast{
	font-size:16px;
}
.top_reason_achievement_item2{
	position: relative;
	z-index: 3;
	padding: 20px;
	max-width: 1000px;
	margin:0 auto;
	padding-left:131px;
	color:#fff;
	font-size:24px;
	font-weight: 500;
}
.top_reason_achievement_item2_right {
	display: block;
	text-align: right;
	padding-right: 48px;
}
.top_reason_achievement_item2::before{
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #FFAA28;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	z-index: -1;
}
.top_reason_achievement_item2::after {
	content: '';
	position: absolute;
	top: 0;
	left: -1px;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
	z-index: -1;
}
.top_reason_achievement_item2 > * {
	position: relative;
	z-index: 4;
	color: #fff;
}
.top_reason_achievement_notice{
	max-width: 1000px;
	margin:5px auto 0;
	text-align: right;
	color:#fff;
	padding-right: 48px;
}

@media screen and (max-width: 983px) {
	.top_reason_ttl{
		margin-bottom: 60px;
	}
	.top_reason_achievement_item{
		font-size:22px;
	}
	.top_reason_achievement_item2{
		font-size:22px;
	}
}
@media screen and (max-width: 768px) {
	.top_reason{
		padding:10% 5%;
	}
	.top_reason_ttl{
		font-size:22px;
		margin-bottom: 7.5%;
	}
	.top_reason_contents_item_data{
		margin-bottom: 7.5%;
	}
	.top_reason_contents_item_data dt{
		font-size:18px;
	}
	.top_reason_achievement{
		margin-top: 5%;
	}
	.top_reason_achievement_item{
		font-size:16px;
		padding-left: 2.5%;
	}
	.top_reason_achievement_item_number{
		font-size:28px;
	}
	.top_reason_achievement_item_right{
		text-align: left;
		padding-right: 0;
	}
	.top_reason_achievement_item2{
		font-size:16px;
		padding-left: 5%;
	}
	.top_reason_achievement_notice{
		font-size:14px;
		padding-right: 0;
	}
}

/*==========
TOP -top_greeting
==========*/
.top_greeting{
	background: var(--gradient-blue);
	padding:60px 0;
	position: relative;
	z-index: 1;
	color:#fff;
}
.top_greeting_ttl{
	text-align: center;
	color:#fff;
	font-size:32px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	margin-bottom: 32px;
}
.top_greeting_contents{
	width: 100%;
	max-width: 738px;
	margin: 0 auto 80px;
	display: flex;
	flex-direction: column;
	gap: 32px 0;
}
.top_greeting_contents_item{
	display: flex;
	flex-direction: column;
	gap: 24px 0;
}
.top_greeting_contents_item_txt{
	line-height: 1.6;
}
.top_greeting_contents_item dl > * {
	text-align: right;
	line-height: 1.6;
}
.top_greeting .contact_cta{
	border-color: #fff;
}
@media screen and (max-width: 768px) {
	.top_greeting{
		padding:10% 5%;
	}
	.top_greeting_ttl{
		font-size:22px;
		margin-bottom: 7.5%;
	}
}

/*==========
TOP -top_flow
==========*/
.top_flow{
	background:#fff;
	padding:60px 0;
}
.top_flow_ttl{
	text-align: center;
	font-size:32px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	margin-bottom: 28px;
}
.top_flow_contents{
	width: 100%;
	max-width: 770px;
	margin: 0 auto 80px;
}
.top_flow_contents{
	display: flex;
	flex-direction: column;
	gap: 40px 0;
}
.top_flow_contents_item{
	position: relative;
	border:2px solid var(--blue);
	padding:5px;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top_flow_contents_item::after {
	content: '';
	position: absolute;
	bottom: -32px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 18px solid var(--blue);
}
.top_flow_contents_item:last-of-type::after{
	content: none;
}
.top_flow_contents_item_left{
	display: flex;
	align-items: center;
	width: 40%;
	padding-left: 10px;
}
.top_flow_contents_item_left_num{
	font-size:40px;
	color:var(--blue);
	font-weight: 500;
	margin-right: 20px;
}
.top_flow_contents_item_left_ttl{
	font-size:24px;
	color:var(--blue);
	font-weight: 500;
	line-height: 1.2;
}
.top_flow_contents_item_left_ttl_note{
	font-size:14px;
}
.top_flow_contents_item_right{
	width: 60%;
}
.top_flow_contents_item_right p{
	line-height: 1.375;
}
@media screen and (max-width: 768px) {
	.top_flow{
		padding:10% 5%;
	}
	.top_flow_ttl{
		font-size:22px;
		margin-bottom: 7.5%;
	}
	.top_flow_contents{
		margin:0 auto;
	}
	.top_flow_contents_item{
		flex-direction: column;
		gap: 6px 0;
		padding:2.5%;
	}
	.top_flow_contents_item_left{
		width: 100%;
	}
	.top_flow_contents_item_left_num{
		font-size:28px;
		margin-right: 12px;
	}
	.top_flow_contents_item_left_ttl{
		font-size:18px;
		line-height: 1;
	}
	.top_flow_contents_item_right{
		width: 100%;
	}
	.top_flow_contents_item_right p{
		font-size:14px;
	}
}

/*==========
TOP -top_qa
==========*/
.top_qa{
	background:#fff;
	padding:60px 0;
}
.top_qa_ttl{
	text-align: center;
	font-size:32px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	margin-bottom: 6px;
}
.top_qa_ttl_en{
	text-align: center;
	color:var(--orange);
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size:24px;
	font-weight: 700;
}
.top_qa_contents{
	max-width: 720px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.top_qa_contents_item {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.top_qa_contents_item_q {
    display: flex;
    padding: 15px;
    cursor: pointer;
    position: relative;
}

.top_qa_contents_item_q::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: translateY(-50%) rotate(135deg);
    transition: transform 0.3s ease;
}

.top_qa_contents_item.active .top_qa_contents_item_q::after {
    transform: translateY(-50%) rotate(-45deg);
}

.top_qa_contents_item_a {
    display: none;
    padding: 15px;
    background-color: #fff;
    transition: all 0.3s ease-out;
}

.top_qa_contents_item.active .top_qa_contents_item_a {
    display: flex;
}

.top_qa_contents_item_q_icon{
	font-size:40px;
	width: 56px;
	height: 56px;
	border-radius: 56px;
	line-height: 48px;
	text-align: center;
	background-color: var(--blue);
	color:#fff;
	margin-right: 10px;
}
.top_qa_contents_item_q_txt{
	color: var(--blue);
	font-size:18px;
	border-bottom: 2px solid var(--blue);
	padding:15px 0 3px 0;
	width: calc(100% - 56px + 10px );
	font-weight: 500;
}
.top_qa_contents_item_a{
	padding-left: 66px;
	padding-top: 20px;
}
.top_qa_contents_item_a_icon{
	font-size:40px;
	width: 56px;
	height: 56px;
	border-radius: 56px;
	line-height: 48px;
	text-align: center;
	background-color: var(--orange);
	color:#fff;
	margin-right: 10px;
}
.top_qa_contents_item_a_txt{
	color: var(--gray);
	font-size:18px;
	padding:10px 0 3px 0;
	width: calc(100% - 66px);
}
@media screen and (max-width: 768px) {
	.top_qa{
		padding:10% 5%;
	}
	.top_qa_ttl{
		font-size:18px;
		margin-bottom: 0;
	}
	.top_qa_contents{
		width: 100%;
		margin-top: 7.5%;
	}
	.top_qa_contents_item_q{
		padding: 0 0;
	}
	.top_qa_contents_item_q::after{
		right:12px;
	}
	.top_qa_contents_item_q_icon{
		font-size: 22px;
		width: 34px;
        height: 34px;
        line-height: 28px;
	}
	.top_qa_contents_item_q_txt{
		font-size:16px;
		padding: 6px 32px 3px 0;
	}
	.top_qa_contents_item_a{
		padding-left: 0;
    	padding-top: 12px;
		padding: 12px 0 0 0;
	}
	.top_qa_contents_item_a_icon{
		font-size: 22px;
		width: 34px;
        height: 34px;
        line-height: 28px;
	}
	.top_qa_contents_item_a_txt{
		font-size:16px;
		padding: 6px 0 3px 0;
	}
	.top_qa_contents_item_a_txt iframe{
		width: 100%;
		height:200px;
		margin-top: 2.5%;
	}
}

/*==========
TOP -top_link
==========*/

.top_link{
	background:#fff;
	padding:60px 0;
}
.top_link_ttl_wrap{
	margin-bottom: 42px;
}
.top_link_ttl_wrap figure{
	max-width: 240px;
	width: 50%;
	margin: 0 auto 12px;
	text-align: center;
}
.top_link_ttl{
	text-align: center;
	color:var(--orange);
	font-size:32px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
}
.top_link_contents{
	max-width: 800px;
	width: 90%;
	margin: 0 auto 60px;
}
.top_link_contents_top{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0 40px;
	border-bottom: 1px solid var(--gray);
	padding-bottom: 32px;
}
.top_link_contents_item {
    width: 32%;
	max-width: 240px;
}
.top_link_contents_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--gradient-blue);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 8px;
	min-height: 75px;
	line-height: 1.3;
}
.top_link_contents_item p{
	color: var(--gray);
	text-size:16px;
	line-height: 1.6875em;
}
.top_link_contents_bottom{
	padding-top:18px;
}
.top_link_contents_bottom h3{
	color:var(--blue);
	font-size:18px;
	line-height: 2em;
}
.top_link_contents_bottom p{
	color: var(--gray);
	font-size:16px;
}
.top_link_contents_bottom a{
	color: var(--blue);
	text-decoration: underline;
}

@media screen and (max-width: 983px) {
	.top_link_contents_top{
		gap:0 2%;
	}
}
@media screen and (max-width: 768px) {
	.top_link{
		padding:10% 5%;
	}
	.top_link_ttl_wrap{
		margin-bottom: 7.5%;
	}
	.top_link_ttl_wrap figure{
		margin: 0 auto 6px;
	}
	.top_link_ttl{
		font-size:22px;
	}
	.top_link_contents{
		width: 100%;
		margin: 0 auto 7.5%;
	}
	.top_link_contents_top{
		flex-direction: column;
		gap: 16px 0;
	}
	.top_link_contents_item{
		width: 100%;
		max-width: 100%;
	}
	.top_link_contents_item a{
		margin-bottom: 6px;
		font-size: 16px;
		min-height: 62px;
	}
	.top_link_contents_bottom h3{
		font-size:16px;
	}
}

/*========== PAGE ==========*/
.page-header{
	max-width: 880px;
	width: 90%;
	margin: 0 auto;
}
.page-header_inner{
	padding:50px 0;
}
.page-header_title{
	text-align: center;
	font-size:32px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	color:var(--gray);
}
.page-content{
	max-width: 880px;
	width: 90%;
	margin: 50px auto;
}
.page-content_article{
	padding-bottom: 80px;
}
.page-content_article h2 {
	color:var(--blue);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
}

.page-content_article h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 1.5rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--blue);
}

.page-content_article h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin: 1.25rem 0 1rem;
}

.page-content_article p {
    margin: 1rem 0;
    line-height: 1.8;
}

.page-content_article ul,
.page-content_article ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.page-content_article li {
    margin: 0.5rem 0;
    line-height: 1.8;
}

.page-content_article a {
    color: var(--blue);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.page-content_article a:hover {
    opacity: 0.8;
}

.page-content_article img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.page-content_article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.page-content_article th,
.page-content_article td {
    padding: 0.75rem;
    border: 1px solid #ddd;
}

.page-content_article th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.page-content_article blockquote {
    margin: 1rem 0;
    padding: 1rem;
    border-left: 4px solid var(--blue);
    background-color: #f9f9f9;
}

.page-content_article pre {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow-x: auto;
}

.page-content_article code {
    font-family: monospace;
    background-color: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

@media screen and (max-width: 768px) {
	.page-header_inner{
		padding:5% 0;
	}

	.page-header_title{
		font-size:22px;
	}

	.page-content{
		margin:5% auto;
	}

	.page-content_article{
		padding-bottom: 10%;
	}

    .page-content_article h2 {
        font-size: 18px;
		margin: 32px 0 0;
		padding-bottom: 0;
    }

    .page-content_article h3 {
        font-size: 16px;
    }

    .page-content_article h4 {
        font-size: 16px;
    }

    .page-content_article p,
    .page-content_article li {
        font-size: 16px;
    }
}

/*========== COMPANY ==========*/

.page_heading2{
	font-size:32px;
	font-family: "Noto Serif JP", serif;
	color:var(--blue);
	margin-bottom: 32px;
	text-align: center;
	font-weight: 500;
}
@media screen and (max-width: 768px) {

	.page_heading2{
		font-size:22px;
		margin-bottom: 5%;
	}
}

/*==========
COMPANY -philosophy
==========*/
.philosophy{
	padding-bottom: 80px;
}
.philosophy_contents{
	margin-bottom: 80px;
}
.philosophy_contents_item{
	font-family: "Noto Serif JP", serif;
	font-size: 32px;
	color:var(--gray);
	line-height: 1.5;
	margin-bottom: 24px;
}
.philosophy_contents_item:last-child{
	margin-bottom: 0;
}

@media screen and (max-width: 983px) {
	.philosophy_contents{
		padding-left: calc(24px + 0.5em);
	}
	.philosophy_contents_item{
		font-size:28px;
	}
}

@media screen and (max-width: 768px) {
	.philosophy{
		padding-bottom: 10%;
	}
	.philosophy_contents{
		margin-bottom: 10%;
		padding-left: 1.5em;
	}
	.philosophy_contents_item{
		font-size:18px;
		margin-bottom: 5%;
	}
}

/*==========
COMPANY -guidelines
==========*/
.guidelines{
	padding-bottom: 80px;
}
.guidelines_contents{
	margin-bottom: 80px;
}
.guidelines_contents_item{
	font-weight: 500;
	font-size: 18px;
	color:var(--gray);
	margin-bottom: 1em;
}
@media screen and (max-width: 983px) {
	.guidelines_contents{
		padding-left: calc(16px + 0.5em);
	}
}
@media screen and (max-width: 768px) {
	.guidelines{
		padding-bottom: 10%;
	}
	.guidelines_contents{
		margin-bottom: 0;
	}
	.guidelines_contents_item{
		font-size:16px;
	}
}

/*==========
COMPANY -customer-first
==========*/
.customer-first{
	padding-bottom: 80px;
}
.customer-first_desc{
	font-size:18px;
	color:var(--gray);
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 24px;
}
.customer-first_contents{
	display: flex;
	flex-direction: column;
	gap: 18px 0;
	margin-bottom: 80px;
}
.customer-first_contents_item dt{
	color: var(--blue);
	font-size:18px;
	font-weight: 500;
}
.customer-first_contents_item dd{
	color: var(--gray);
	line-height: 1.6875em;
}
@media screen and (max-width: 768px) {
	.customer-first{
		padding-bottom: 10%;
	}
	.customer-first_desc{
		font-size:16px;
	}
	.customer-first_contents{
		margin-bottom: 10%;
	}
}

/*==========
COMPANY -overview
==========*/
.overview{
	padding-bottom: 80px;
}
.overview_contents{
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}
.overview_contents_item{
	color:var(--gray);
	line-height: 1.6875em;
}
.overview_contents_item th{
	font-weight: 400;
	width: 30%;
	text-align: left;
}
.overview_contents_item td{
	width: 70%;
}
.access_contents{
	max-width: 700px;
	width: 90%;
	margin: 0 auto 80px;
	display: flex;
	justify-content: space-between;
}
.access_contents_left{
	color:var(--gray);
	width: 45%;
}
.access_contents_right{
	width: 52%;
}
.access_contents_right iframe{
	width: 100%;
	height: 100%;
	min-height: 300px;
}
@media screen and (max-width: 983px) {
	.overview_contents{
		max-width: 100%;
		width: 100%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 768px) {
	.overview{
		padding-bottom: 10%;
	}
}

/*==========
COMPANY -access
==========*/
.access{
	padding-bottom: 80px;
}

@media screen and (max-width: 983px) {
	.access_contents{
		max-width: 100%;
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.access{
		padding-bottom: 10%;
	}
	.access_contents{
		flex-direction: column;
		gap:10px 0;
		margin: 0 auto 10%;
	}
	.access_contents_left{
		width: 100%;
	}
	.access_contents_right{
		width: 100%;
	}
}

/*========== INFO ARCHIVE ==========*/
.info-header{
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
}
.info-header_inner{
	padding:50px 0;
}
.info-header_title{
	text-align: center;
	font-size:32px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	color:var(--gray);
}
.info-content_layout{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.info-content_main{
	width: 69.6%;
	max-width: 696px;
}
.info-content{
	max-width: 1000px;
	width: 90%;
	margin: 50px auto;
}
.info-list{
	display: flex;
	flex-direction: column;
	gap: 48px 0;
}
.info-list_item{
	display: flex;
}
.info-list_item_left{
	width: 30%;
	margin-right: 2%;
}
.info-list_item_left img{
	display: block;
	width: 100%;
	height: 172px;
	object-fit: cover;
	object-position: top;
}
.info-list_item_left img.noimage{
	object-position: center;
}
.info-list_item_right{
	width: 68%;
}
.info-list_item_meta{
	margin-bottom: 12px;
}
.info-list_item_title{
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 500;
	color:var(--blue);
}
.info-content_sidebar{
	width: 28%;
	max-width: 280px;
	background:#eee;
	padding:22px;
	display: flex;
	flex-direction: column;
	gap: 50px 0;
}
.sidebar-widget_title{
	color:var(--gray);
	border-bottom:1px solid var(--gray);
	padding-bottom:0.25em;
	margin-bottom:0.8em;
	font-weight: 400;
}
.sidebar-widget_title::before{
	content:"▼";
	margin-right: 0.5em;
}
.sidebar-widget_list{
	padding-left: 0;
	list-style-type: none;
}
.sidebar-widget_list li::before{
	content:"・";
}
.sidebar-widget_list_item a{
	color:var(--blue);
}
.sidebar-widget_recentPost .sidebar-widget_list{
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
@media screen and (max-width: 768px) {
	.info-content{
		margin:7.5% auto 10%;
	}
	.info-content_layout{
		flex-direction: column;
	}
	.info-content_main{
		width: 100%;
		margin-bottom: 10%;
	}
	.info-list_item {
		flex-direction: column;
	}
	.info-list_item_left{
		width: 100%;
	}
	.info-list_item_meta{
		margin:2.5% 0;
	}
	.info-list_item_title{
		font-size:18px;
	}
	.info-list_item_right{
		width: 100%;
	}
	.info-list_item_excerpt{
		font-size:15px;
	}
	.info-content_sidebar{
		width: 100%;
		max-width: 100%;
		padding:5%;
	}
	.sidebar-widget_list li{
		margin-bottom: 10px;
	}
	.sidebar-widget_list li .date{
		margin-bottom: 3px;
	}
	.sidebar-widget_recentPost .sidebar-widget_list{
		gap: 10px 0;
	}
}


/*========== INFO SINGLE ==========*/
.single .info-detail {
    margin-bottom: 60px;
}

.single .info-detail_header {
    margin-bottom: 40px;
}

.single .info-detail_meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray);
}

.single .info-detail_date {
    position: relative;
}

.single .info-detail_date:after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: var(--gray);
}

.single .info-detail_title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
}

.single .info-detail_content {
    margin-bottom: 60px;
}

.single .info-detail_thumbnail {
    margin-bottom: 30px;
}

.single .info-detail_thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.single .info-detail_text {
    font-size: 16px;
    line-height: 1.8;
}

/* 見出しスタイル */
.single .info-detail_text h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--blue);
}

.single .info-detail_text h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 30px 0 15px;
    padding-left: 10px;
    border-left: 4px solid var(--blue);
}

.single .info-detail_text h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 25px 0 15px;
    padding-left: 8px;
    border-left: 3px solid var(--blue);
}

/* 段落スタイル */
.single .info-detail_text p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

/* リストスタイル */
.single .info-detail_text ul,
.single .info-detail_text ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.single .info-detail_text ul {
    list-style-type: disc;
}

.single .info-detail_text ol {
    list-style-type: decimal;
}

.single .info-detail_text li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

/* 引用スタイル */
.single .info-detail_text blockquote {
    margin: 1.5em 0;
    padding: 1em 1.5em;
    background-color: var(--light-gray);
    border-left: 4px solid var(--blue);
    font-style: italic;
}

/* リンクスタイル */
.single .info-detail_text a {
    color: var(--blue);
    text-decoration: underline;
}

/* 太字スタイル */
.single .info-detail_text strong {
    font-weight: bold;
}

/* 画像スタイル */
.single .info-detail_text img {
    max-width: 100%;
    height: auto;
    margin: 1.5em 0;
    border-radius: 8px;
}

/* 区切り線スタイル */
.single .info-detail_text hr {
    margin: 2em 0;
    border: none;
    border-top: 1px solid var(--gray);
}

.single .info-detail_navigation {
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.single .info-detail_navigation_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
	position: relative;
}

.single .info-detail_navigation_list {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.single .info-detail_navigation_next {
    margin-left: auto;  /* 追加 */
}

.single .info-detail_navigation_prev a,
.single .info-detail_navigation_next a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
}

.single .info-detail_navigation_list a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
	color:var(--gray);
}

@media screen and (max-width: 768px) {
    .single .info-detail {
        margin-bottom: 10%;
    }

    .single .info-detail_header {
        margin-bottom: 7.5%;
    }

    .single .info-detail_title {
        font-size: 20px;
    }

    .single .info-detail_content {
        margin-bottom: 10%;
    }

    .single .info-detail_thumbnail {
        margin-bottom: 16px;
    }

    .single .info-detail_text {
        font-size: 16px;
    }

	.single .info-detail_text p{
		font-size:15px;
		margin-bottom: 16px;
	}

    .single .info-detail_text h2 {
        font-size: 18px;
        margin: 32px 0 16px;
		padding-bottom: 8px;
    }

    .single .info-detail_text h3 {
        font-size: 16px;
        margin: 32px 0 16px;
    }

    .single .info-detail_text h4 {
        font-size: 16px;
        margin: 16px 0 16px;
    }

    .single .info-detail_text ul,
    .single .info-detail_text ol {
        padding-left: 1.5em;
		margin: 16px 0;
    }
    .single .info-detail_text ul li,
    .single .info-detail_text ol  li{
		font-size:15px;
	}
	.single .info-detail_text blockquote{
		margin:16px 0;
		padding:8px 16px;
	}

	.single .info-detail_navigation{
		padding-top: 0;
	}
	.info-detail_navigation_prev,
	.info-detail_navigation_list,
	.info-detail_navigation_next{
		font-size:14px;
	}
}

/* Contact Form 7  */
.wpcf7-form {
    max-width: 800px;
    margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px 0;	
}

.wpcf7-form .form_row .form_label p{
	margin: 0 0 0.5em 0;
}

.wpcf7-form .form_row .form_input p{
	margin: 0;
}

.form_group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form_required {
	background: #FC7E00;
    color: #fff;
	padding:0.25em 0.75em;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.wpcf7-form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.wpcf7-form-control:focus {
    border-color: var(--blue);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.1);
}
.wpcf7-form .form_privacy_policy{
	text-align: center;
}
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel {
    height: 3rem;
}

.wpcf7-select {
    height: 3rem;
    background-color: #fff;
    cursor: pointer;
}

.wpcf7-textarea {
    min-height: 10rem;
    resize: vertical;
}

.wpcf7-form .form_submit{
	text-align: center;
}

.wpcf7-submit {
    display: inline;
    width: 60%;
    padding: 1rem;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 34px;
    border: 2px solid var(--orange);
}
.wpcf7-submit:hover {
    background: #fff;
    color: var(--orange);
    border: 2px solid var(--orange);
    opacity: 1;
}

.wpcf7-spinner {
    display: none;
    margin-left: 0.5rem;
}

.form_tel_contact {
    text-align: center;
}

.form_tel_contact_ttl {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray);
	font-family: "M PLUS Rounded 1c", sans-serif;
}

.form_tel_contact a {
    font-size: 24px;
    color: var(--orange);
    text-decoration: none;
    transition: opacity 0.3s;
	display: flex;
    justify-content: center;
    align-items: center;
	font-weight: 600;
}

.form_tel_contact a:hover {
    opacity: 0.8;
}
.form_tel_contact a::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #FFAA28;
    border-radius: 50%;
    margin-right: 8px;
    background-image: url(../images/tel_wh.svg);
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
}

/* エラーメッセージ */
.wpcf7-not-valid-tip {
    color: #ff0000;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.wpcf7-response-output {
    margin: 2rem 0;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-response-output.wpcf7-validation-errors {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .wpcf7-form {
        padding: 16px 0;
		gap: 20px 0;
    }

    .form_group {
        margin-bottom: 1.5rem;
    }

    .wpcf7-form-control {
        font-size: 0.875rem;
    }

    .wpcf7-submit {
        max-width: 100%;
		width: 100%;
		font-size:16px;
    }

    .form_tel_contact_ttl {
        font-size: 1.125rem;
    }

    .form_tel_contact a {
        font-size: 1.25rem;
    }
}