@charset "UTF-8";


@media print {

  /* 印刷時の余白をゼロに設定 */
  @page {
    margin: 0; /* ページの余白をゼロに設定 */
  }
  
  .print_area_div {
        display:block!important;
    }
  

  .footer_wrap {
      display:none!important;
  }
  body {
    width: 100%!important; /* 画面幅をそのまま維持 */
  }
  .main_container img {
      max-width:400px!important;
  }
	.main_container{
		width: 100%!important;
		padding: 30px!important;
		position: relative!important;
		min-height: 100vh!important;
	}
}
/* CSS Document */
html {
    /* ルートのフォントサイズを10pxに設定しておく */
    font-size: 62.5%;
    }

body{
  font-size: 1.6rem;
  line-height:1;
  letter-spacing: 1px;
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', sans-serif!important;
  color:#000;
  width: 100%;
  position: relative;
  overflow-x: hidden!important;
  margin: 0;
}

.print_area_div {
    display:none;
}

div{
	box-sizing:border-box!important;
}



/*-----------------共通--------------------*/

/* ページヘッダー */
.hoa_page_header {
	position: relative;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(93deg, #FFF 3.49%, #E4EDFF 97.95%);
	overflow: hidden;
}

.hoa_page_header_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/about_bg.png');
	background-size: cover;
	background-position: center;
	opacity: 0.1;
}

.hoa_page_header_inner {
	position: relative;
	z-index: 2;
	text-align: center;
}

.hoa_page_subtitle {
	color: #777;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 10px;
}

.hoa_page_title {
	color: #002060;
	font-size: 48px;
	font-weight: 600;
	margin: 0;
  line-height: 1;
}

/* パンくずリスト */
.hoa_breadcrumb {
	background: #f8f9fa;
	padding: 20px 0;
}

.hoa_breadcrumb_inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
}

.hoa_breadcrumb ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.hoa_breadcrumb li {
	display: flex;
	align-items: center;
	color: #666;
	font-size: 14px;
}

.hoa_breadcrumb li:not(:last-child)::after {
	content: '>';
	margin: 0 10px;
	color: #999;
}

.hoa_breadcrumb a {
	color: #002060;
	text-decoration: none;
	transition: color 0.3s ease;
}

.hoa_breadcrumb a:hover {
	color: #1b9bd7;
}

/* ==========================================
   NEWS PAGE STYLES
   ========================================== */

/* フィルター */
.hoa_news_filter {
	margin-bottom: 60px;
}

.hoa_news_filter_inner {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.filter_btn {
	display: inline-block;
	padding: 12px 30px;
	background: #fff;
	color: #666;
	text-decoration: none;
	border: 2px solid #ddd;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.filter_btn:hover,
.filter_btn.active {
	background: #00A040;
	color: #fff;
	border-color: #00A040;
}

/* ニュース一覧 */
.hoa_news_list {
	display: grid;
	gap: 20px;
	margin-bottom: 60px;
}

.hoa_news_item {
	background: #fff;
	border-bottom: 1px solid #D6E5F5;
	transition: all 0.2s ease;
	position: relative;
}

.hoa_news_item:hover {
	color: #00A040;
	box-shadow: 0 2px 8px rgba(0, 160, 64, 0.15);
}

.hoa_news_item:hover .hoa_news_item_title {
	color: #00A040;
}

.hoa_news_item:hover .hoa_news_item_date {
	color: #00A040;
}

.hoa_news_item::after {
	content: '';
	width: 8px;
	height: 8px;
	border-right: solid 1px #000;
	border-top: solid 1px #000;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.2s ease;
}

.hoa_news_item::before {
	content: '';
	width: 10px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	transition: all 0.2s ease;
}

.hoa_news_item:hover::after {
	right: 25px;
}

.hoa_news_item:hover::before {
	right: 25px;
}

.hoa_news_item a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.hoa_news_item_content {
	padding: 32px 50px 32px 32px;
	position: relative;
}

.hoa_news_item_meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 8px;
}

.hoa_news_item_date {
	font-size: 12px;
	letter-spacing: 1px;
	white-space: nowrap;
	width: 80px;
	flex-shrink: 0;
	color: #666;
	font-weight: 500;
	transition: color 0.2s ease;
}

/* カテゴリバッジ（共通） */
.hoa_news_item_category,
.hoa_article_category {
	width: 60px;
	height: 16px;
	flex-shrink: 0;
	border-radius: 7px;
	background: #777;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* お知らせカテゴリ（ID: 1） */
.hoa_news_item_category.cat-news,
.hoa_article_category.cat-news {
	background: #5a8fb8;
}

/* 特集カテゴリ（ID: 11） */
.hoa_news_item_category.cat-feature,
.hoa_article_category.cat-feature {
	background: #76b85a;
}

.hoa_news_item_title {
	color: #333;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
	transition: color 0.2s ease;
}

.hoa_news_empty {
	text-align: center;
	padding: 80px 20px;
	color: #666;
	font-size: 18px;
}

/* ページネーション */
.wp-pagenavi {
	text-align: center;
	margin: 40px 0 0;
}

.wp-pagenavi a, .wp-pagenavi span {
	display: inline-block;
	padding: 12px 16px;
	margin: 0 5px;
	border: 2px solid #ddd;
	text-decoration: none;
	color: #666;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.wp-pagenavi a:hover {
	background-color: #002060;
	color: #fff;
	border-color: #002060;
}

.wp-pagenavi .current {
	background-color: #002060;
	color: #fff;
	border-color: #002060;
}

/* レスポンシブ対応（NEWS） */
@media (max-width: 1200px) {
	.hoa_news_container,
	.hoa_breadcrumb_inner {
		padding: 0 40px;
	}
}

@media (max-width: 960px) {
	.hoa_news_section {
		padding: 60px 0;
	}
	
	.hoa_news_container,
	.hoa_breadcrumb_inner {
		padding: 0 16px;
	}
	
	.hoa_breadcrumb ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.hoa_breadcrumb li:not(:first-child)::before {
		content: '↓';
		margin-right: 8px;
		color: #999;
	}
	
	.hoa_breadcrumb li:not(:last-child)::after {
		content: none;
	}
	
	.hoa_news_filter_inner {
		justify-content: flex-start;
	}
	
	.filter_btn {
		padding: 10px 20px;
		font-size: 14px;
	}
	
	.hoa_news_item_content {
		padding: 10px 20px;
	}
	
	.hoa_news_item_meta {
		gap: 8px;
	}
	
	.hoa_news_item_date {
		width: auto;
		min-width: 70px;
	}
	
	.hoa_news_item_title {
		font-size: 16px;
		white-space: normal;
    padding-right: 20px;
	}
	
	.hoa_news_item_arrow {
		top: 20px;
		right: 20px;
	}
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

/* aboutページレイアウト */
.hoa_about_container {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
}

/* サイドナビゲーション */
.hoa_about_sidebar {
	position: sticky;
	top: 100px;
	height: fit-content;
}

.hoa_about_nav {
	background: #fff;
	border-radius: 16px;
	padding: 30px 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.hoa_about_nav li {
	border-bottom: 1px solid #f0f0f0;
}

.hoa_about_nav li:last-child {
	border-bottom: none;
}

.hoa_about_nav .nav_link {
	display: block;
	padding: 20px 30px;
	color: #000;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	transition: all 0.3s ease;
	border-left: 4px solid transparent;
}

.hoa_about_nav .nav_link:hover,
.hoa_about_nav .nav_link.active {
	background: rgba(0, 160, 64, 0.05);
	color: #00A040;
	border-left-color: #00A040;
}

/* メインコンテンツ */
.hoa_about_main {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.hoa_about_content_section {
	background: #fff;
	border-radius: 16px;
	padding: 60px 50px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hoa_about_logo_center {
	text-align: center;
	margin-bottom: 40px;
}

.hoa_about_logo_center img {
	width: 200px;
	height: auto;
	max-width: 100%;
}

.hoa_about_content_text {
	line-height: 1.8;
	color: #333;
	font-size: 16px;
}

.hoa_about_content_text p {
	margin: 0 0 20px 0;
}

.hoa_about_content_text p:last-child {
	margin-bottom: 0;
}

.hoa_about_content_images_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.hoa_about_content_image {
	margin-top: 30px;
}

.hoa_about_content_image img {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 12px;
	margin: 0 auto;
}

/* レスポンシブ対応（ABOUT） */
@media (max-width: 1200px) {
	.hoa_about_container {
		gap: 40px;
	}
}

@media (max-width: 960px) {
	.hoa_about_container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.hoa_about_sidebar {
		position: static;
	}
	
	.hoa_about_content_section {
		padding: 40px 30px;
	}
	
	.hoa_about_main {
		gap: 40px;
	}
	
	.hoa_about_logo_center img {
		width: 150px;
	}
}

/* ==========================================
   COURSE PAGE STYLES
   ========================================== */

.hoa_course_content_section {
	background: #ffffff;
	border-radius: 8px;
	padding: 40px;
	margin-bottom: 40px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hoa_course_section_content {
	padding: 20px 0;
}

.hoa_course_intro_text {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 30px;
}

.hoa_course_intro_text p {
	margin: 0;
}

/* タブナビゲーション */
.hoa_course_tabs {
	margin-bottom: 30px;
}

.hoa_course_tab_list {
	display: flex;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
	border-bottom: 2px solid #e0e0e0;
}

.hoa_course_tab_item {
	flex: 1;
}

.hoa_course_tab_item a {
	display: block;
	padding: 15px 30px;
	text-align: center;
	background: #f5f5f5;
	color: #666;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	border-radius: 8px 8px 0 0;
	transition: all 0.3s ease;
}

.hoa_course_tab_item:hover a {
	background: #00A040;
	color: #ffffff;
}

.hoa_course_tab_item.active a {
	background: #00A040;
	color: #ffffff;
}

/* タブコンテンツ */
.hoa_course_tab_content {
	display: none;
	padding: 30px;
	background: #f8f9fa;
	border-radius: 8px;
}

.hoa_course_tab_content.active {
	display: block;
}

.hoa_course_tab_inner {
	padding: 20px;
	background: #ffffff;
	border-radius: 8px;
}

.hoa_course_content_subtitle {
	font-size: 20px;
	font-weight: bold;
	color: #002060;
	margin-bottom: 20px;
	padding-left: 15px;
	border-left: 4px solid #002060;
}

.hoa_course_content_text {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

.hoa_course_content_text p {
	margin-bottom: 15px;
}

.hoa_course_link_note {
	margin-top: 20px;
	padding: 15px;
	background: #f0f7ff;
	border-left: 4px solid #002060;
}

.hoa_course_link_note a {
	color: #002060;
	text-decoration: underline;
	word-break: break-all;
}

.hoa_course_link_note a:hover {
	color: #005a9c;
}

/* カリキュラム一覧 */
.hoa_curriculum_list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 30px;
	margin: 30px 0;
}

.hoa_curriculum_card {
	background: #ffffff;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.hoa_curriculum_card:has(.hoa_curriculum_button:hover) {
	border-color: #00A040;
	box-shadow: 0 4px 12px rgba(0, 160, 64, 0.25);
}

.hoa_curriculum_header {
	background: linear-gradient(135deg, #002060 0%, #005a9c 100%);
	color: #ffffff;
	padding: 20px;
}

.hoa_curriculum_label {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

.hoa_curriculum_title {
	font-size: 20px;
	font-weight: bold;
	margin: 0;
	line-height: 1.4;
}

.hoa_curriculum_body {
	padding: 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hoa_curriculum_description {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin: 0;
}

.hoa_curriculum_info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 15px;
	border-top: 1px solid #e0e0e0;
}

.hoa_curriculum_info_item {
	display: flex;
	align-items: flex-start;
	font-size: 14px;
}

.hoa_curriculum_info_label {
	font-weight: bold;
	color: #002060;
	min-width: 80px;
	flex-shrink: 0;
}

.hoa_curriculum_info_value {
	color: #555;
	line-height: 1.6;
}

.hoa_curriculum_footer {
	padding: 20px 25px;
	background: #f8f9fa;
	border-top: 1px solid #e0e0e0;
}

.hoa_curriculum_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 14px 20px;
	background: #002060;
	color: #ffffff!important;
	text-decoration: none;
	border-radius: 6px;
	font-weight: bold;
	font-size: 15px;
	transition: all 0.3s ease;
	gap: 8px;
}

.hoa_curriculum_button:hover {
	background: #00A040;
	transform: translateX(4px);
}

.hoa_curriculum_arrow {
	font-size: 18px;
	transition: transform 0.3s ease;
}

.hoa_curriculum_button:hover .hoa_curriculum_arrow {
	transform: translateX(4px);
}

/* レスポンシブ対応（COURSE） */
@media (max-width: 768px) {
	.hoa_course_content_section {
		padding: 25px 20px;
	}

	.hoa_course_intro_text {
		font-size: 14px;
	}

	.hoa_course_tab_list {
		flex-direction: column;
		gap: 5px;
	}

	.hoa_course_tab_item a {
		padding: 12px 20px;
		font-size: 14px;
		border-radius: 8px;
	}

	.hoa_course_tab_content {
		padding: 20px 15px;
	}

	.hoa_course_tab_inner {
		padding: 15px;
	}

	.hoa_course_content_subtitle {
		font-size: 18px;
	}

	.hoa_course_content_text {
		font-size: 14px;
	}

	.hoa_curriculum_list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hoa_curriculum_header {
		padding: 15px;
	}

	.hoa_curriculum_title {
		font-size: 18px;
	}

	.hoa_curriculum_body {
		padding: 20px;
	}

	.hoa_curriculum_description {
		font-size: 14px;
	}

	.hoa_curriculum_info_label {
		min-width: 70px;
		font-size: 13px;
	}

	.hoa_curriculum_info_value {
		font-size: 13px;
	}

	.hoa_curriculum_footer {
		padding: 15px 20px;
	}

	.hoa_curriculum_button {
		padding: 12px 16px;
		font-size: 14px;
	}
}

/* ==========================================
   LINK PAGE STYLES
   ========================================== */

.hoa_links_grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 24px;
}

.hoa_link_card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	padding: 24px;
	text-decoration: none;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
}

.hoa_link_card::after {
	content: '';
	width: 8px;
	height: 8px;
	border-right: solid 1px #000;
	border-top: solid 1px #000;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.2s ease;
}

.hoa_link_card::before {
	content: '';
	width: 10px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	transition: all 0.2s ease;
}

.hoa_link_card:hover {
	border-color: #00A040;
	box-shadow: 0 4px 16px rgba(0, 160, 64, 0.15);
}

.hoa_link_card:hover::after {
	right: 25px;
	border-color: #00A040;
}

.hoa_link_card:hover::before {
	right: 25px;
	background: #00A040;
}

.hoa_link_card_inner {
	flex: 1;
	min-width: 0;
	padding-right: 50px;
}

.hoa_link_card_title {
	color: #333;
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px 0;
	line-height: 1.5;
	transition: color 0.2s ease;
}

.hoa_link_card:hover .hoa_link_card_title {
	color: #00A040;
}

.hoa_link_card_url {
	color: #555;
	font-size: 12px;
	word-break: break-all;
	line-height: 1.5;
	letter-spacing: 0.5px;
}

.hoa_link_card_icon {
	display: none;
}

.hoa_links_empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
	color: #999;
	font-size: 16px;
}

/* レスポンシブ対応（LINK） */
@media (max-width: 960px) {
	.hoa_links_grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.hoa_link_card {
		padding: 20px;
	}
	
	.hoa_link_card_title {
		font-size: 16px;
	}
	
	.hoa_link_card_url {
		font-size: 13px;
	}
}


.type_bg {
	width:100%;
	overflow: hidden;
	cursor:pointer;
}

.type_bg img{
	transition:1s all;
}
.type_bg:hover a img {
	transform:scale(1.1,1.1);
	transition:1s all;
}

@media (min-width: 1250px) {

    .sp_1250{
        display: none;
    }
}
@media (max-width: 1250px) {

    .sp_1250{
        display: block;
    }
}


@media (min-width: 960px) {
    .pcbr{
        display: inline-block;
    }
    .spbr{
        display: none;
    }
}
@media (max-width: 959px) {
    .pcbr{
        display: none;
    }
    .spbr{
        display: inline-block;
    }
}
@media (min-width: 960px) {
    .pc {
        display:block;
    }
    .sp {
        display:none;
    }
    .sp_only {
        display:none!important;
    }
}
@media (min-width: 767px) {
    .sp_only2 {
        display:none!important;
    }
}
@media (max-width: 960px) {
    .pc {
        display:none;
    }
    .pc_only {
        display:none!important;
    }
    .sp {
        display:block;
    }
}


.tablet_only {
  display:none;
}

@media screen and (max-width: 960px) and (min-width: 768px) {
  .tablet_only {
    display:block!important;
  }
}

.vmore_btn > a{
	min-width: 100px;
	padding: 10px 30px;
	border-radius: 10px;
	line-height: 1;
	border:solid 1px #0368B5;
	color: #0368B5!important;
	background-color: #fff;
	position: relative;
	transition: all .3s ease;
	display: inline-block;
	font-weight: 700;
	margin-top: 15px;
}
@media (min-width: 768px) {
	.vmore_btn > a:hover{
		border:solid 1px #0368B5;
		color: #fff!important;
		background-color: #0368B5;
	}
}
.vmore_btn > a > .icon_position{
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
a > .linkicon{
	width: 20px;
	height: 20px;
	transition: all .3s ease;
	display: inline-block;
}
a > .linkicon::after{
	content: '';
	width: 7px;
	height: 7px;
	border-top: solid 1px #0368B5;
	border-right: solid 1px #0368B5;
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s ease;
}

@media (min-width: 768px) {
	a:hover > .linkicon::after{
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		position: absolute
	}
}

.mark_w {
    display: inline;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    background-color: #ffffff!important;
}
.txt_w{
    color:#fff;
}
.txt_list {
	padding:15px;
}
.txt_list li{
	list-style:disc;
	margin-left: 30px;
}
.pdgb30{
    padding-bottom: 30px;
}
.pdgtb30{
    padding: 30px 0;
}
.pdgtb50{
    padding: 50px 0;
}
.pdgb50{
    padding-bottom: 50px;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.img_full{
    width:100%;
    height: auto;
	vertical-align: top;
}
.svg_full img{
    width:100%;
    max-width: 300px;
    height: auto;
}
.z_img img{
    transition:1s all;
}
.z_img img:hover{
    transform:scale(1.1,1.1);
    transition:1s all;
}
.op7_img img{
    transition:1s all;
}
.op7_img img:hover{
    opacity: 0.7;
    transition:1s all;
}


/**************gotopイベント****************/
@media (min-width: 768px) {
    #gotop a {
      display: inline-block;
      color: #000;
      font-size: 12px;
      font-family: 'Josefin Sans', sans-serif;
      line-height: 1;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      writing-mode: vertical-lr;
      position: absolute;
      bottom: 15px;
      right: 30px;
    }
}
@media (max-width: 767px) {
    #gotop a {
      display: inline-block;
      color: #000;
      font-size: 12px;
      font-family: 'Josefin Sans', sans-serif;
      line-height: 1;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      writing-mode: vertical-lr;
        position: absolute;
        bottom: 15px;
        right: 15px;
    }
}
#gotop a::after {
  content: '';
  position: absolute;
  bottom: 80px;
  right: 50%;
  width: 1px;
  height: 100px;
  background: #000;
}
#gotop a::after {
  animation: gtp 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes gtp {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
}
/**************スクロールダウンイベント****************/

#top_s_down a {
	display: inline-block;
	overflow: hidden;
	color: #fff;
	background: #0368B5;
	padding: 10px 5px;
	border-radius: 10px;
	box-sizing: border-box;
	font-size: 12px;
	font-family: 'Josefin Sans', sans-serif;
	line-height: 1;
	letter-spacing: .1em;
	text-decoration: none;
	writing-mode: vertical-lr;
	transform: rotate(180deg);
	position: absolute;
	bottom: 47px;
	right: 25px;
	z-index:1500;
}

/*img_animation*/
.objct_animation{
	animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
}
.i_animation_objct{
	animation-name: objct_anim_box;
}
@keyframes objct_anim_box {
  0% { transform: translate(0, 0px) }
  100% { transform: translate(0, -20px) }
}


/*------------------index_about------------------*/

.about_bg_loop {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  overflow: hidden;
  z-index: 0;
  height: 140px;
  pointer-events: none;
  white-space: nowrap;
}
.about_bg_loop__inner {
  display: inline-block;
  white-space: nowrap;
  animation: aboutLoop 80s linear infinite;
  will-change: transform;
}
.about_bg_loop span {
  color: rgba(255, 255, 255, 0.40);
  text-align: center;
  font-size: 100px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 2px;
  margin-right: 80px;
  display: inline-block;
}
@keyframes aboutLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.i_container_about {
  position: relative;
  z-index: 1;
}
.i_container_about {
  width: 100%;
  background: #002060;
  padding: 70px 0 70px 0;
  position: relative;
  overflow: hidden;
}
.i_container_about::before {
  content: '';
  position: absolute;
  bottom:  0;
  left: 0;
  width: 6229px;
  height: 6229px;
  z-index: 0;
  background: url(../images/about_bg_fan.png) no-repeat;

  /* 背景の中心を左下角に一致させる */
  background-position: center;
  transform-origin: center;
  transform: translate(-50%, 50%) rotate(0deg);
  animation: rotateFan 50s linear infinite;

  -webkit-filter: blur(75px);
  -moz-filter: blur(75px);
  -o-filter: blur(75px);
  -ms-filter: blur(75px);
  filter: blur(75px);
}
.i_container_about_btn_ctt{
    display: block;
    width: fit-content;
    margin: 32px auto 0 auto;
}
/* 回転アニメーション定義 */
@keyframes rotateFan {
  0% {
    transform: translate(-50%, 50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, 50%) rotate(360deg);
  }
}
.about_grid {
  max-width: 1440px;
  gap: 32px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-left: 80px;
  padding-right: 80px;
}
.about_text {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  color: #fff;
  padding-left: 0;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .about_grid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 960px) {
  .i_container_about {
    width: 100%;
    padding: 70px 0;
  }
  .about_bg_loop {
    position: absolute;
    left: 0;
    bottom:250px;
  }
  .about_grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 10px;
  }
  .about_text{
    grid-column: auto;
  }
  .about_text {
    padding: 30px 10px 30px 10px;
  }
}
.about_label {
  grid-column: 1 / -1;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.8;
  text-align: center ;
}
.about_title {
  grid-column: 1 / -1;
  width: 100%;
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 60px */
  letter-spacing: 2px;
  display: block;
}
.about_sub {
  grid-column: 1 / -1;
  width: 100%;
  font-size: 22px;
  font-weight: 400;
  display: block;
  margin-top: 8px;
  opacity: 0.8;
}
.about_desc {
  grid-column: 1 / -1;
  width: 100%;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 38px */
}
.about_btn {
  display: inline-block;
  background: #fff;
  color: #222!important;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
  border: 1px solid #eee;
}
.about_btn:hover {
  background: #f2f2f2;
  color: #0ba7c1;
}
.about_btn_arrow {
  margin-left: 10px;
  font-size: 20px;
  vertical-align: middle;
}
@media (max-width: 960px) {
  .about_label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.8;
    display: inline-block;
  }
  .about_grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }
  .about_text {
    padding: 30px 20px;
  }
  .about_title {
  grid-column: 1 / -1;
  width: 100%;
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 60px */
  letter-spacing: 2px;
  display: block;
}
}
@media (min-width: 960px) {
	.ictt_about{
		max-width: 1160px;
		margin: 0 auto;
		padding: 30px;
		position: relative;
		display: flex;
		flex-wrap: nowrap;
	}
}
@media (max-width: 959px) {
	.ictt_about{
		max-width: 1160px;
		position: relative;
	}
}


.i_about_cards_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 0 auto;
}
.i_about_card_item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.i_about_card_inner {
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.i_about_card_header {
  margin-bottom: 20px;
}
.i_about_card_icon {
  max-width: 205px;
  height: 200px;
  margin:0 auto;
}
.i_about_card_item:first-child .i_about_card_icon {
  height: 170px;
}
.i_about_card_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.i_about_card_title {
  color: #000;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 32.5px */
}
.i_about_card_content {
  flex: 1;
}
.i_about_card_desc {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

/* レスポンシブ対応 */
@media screen and (max-width: 960px) {
  .i_container_cards {
    padding: 60px 0;
  }
  .i_about_cards_grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .i_about_card_inner {
    padding: 30px 20px;
  }
  .i_about_card_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .i_about_cards_grid {
    padding: 0 10px;
  }
  .i_about_card_inner {
    padding: 25px 15px;
  }
}

/*------------------i_container_course------------------*/

.i_container_course {
  padding: 80px 0;
  background: #f8fafe;
}

.i_course_grid {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
  z-index: 2;
}

.i_course_text {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 60px;
}
.i_course_header_group{
  grid-column: 1 / -1;
  width: 100%;
}
.i_course_label {
  color: #777;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 10px;
}

.i_course_title {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%; /* 32px */
}

.i_course_desc {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 1px;
  grid-column: 1 / -1;
  width: 100%;
  display: block;
}

.i_course_cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

.i_course_card {
  grid-column: span 5;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

@media (min-width: 960px) {
  .i_course_card:first-child {
    grid-column: 2 / 7;
  }

  .i_course_card:last-child {
    grid-column: 7 / 12;
  }
}
@media (max-width: 959px) {
  .i_course_card:first-child {
    grid-column: 1 / -1;
  }

  .i_course_card:last-child {
    grid-column: 1 / -1;
  }
}
.i_course_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.i_course_card_business {
  background: linear-gradient(135deg, #e8f4fd 0%, #d1e9f7 100%);
}

.i_course_card_student {
  background: linear-gradient(135deg, #e8f7f0 0%, #d1f2e1 100%);
}

.i_course_card_inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  gap:23px;
}

.i_course_card_content {
  z-index: 2;
}

.i_course_card_title {
  color: #000;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 32.5px */
}

.i_course_card_desc {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  padding: 0 42px;
}

.i_course_card_image {
  width: 175px;
  height: 124px;
  margin: 0 auto;
}
.i_course_card_image2 {
  width: 219px;
  height: 124px;
  margin: 0 auto;
}

.i_course_card_image img,
.i_course_card_image2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

  .i_course_card_arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 49px;
    height: 49px;
    border-radius:50%;
    background: #fff;
    z-index: 2;
    transition: transform 0.3s ease;
  }

@media (max-width: 959px) {
  .i_course_card_arrow {
    bottom: 20px;
    right: 20px;
  }
}
.i_course_card_arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #00A040;
    border-right: solid 1px #00A040;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.i_course_card_arrow::after {
    content: '';
    width: 10px;
    height: 1px;
    background: #00A040;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.i_course_card:hover .i_course_card_arrow {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .i_course_grid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 960px) {
  .i_container_course {
    padding: 60px 0;
  }
  
  .i_course_grid {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .i_course_label {
    font-size: 20px;
  }
  
  .i_course_title {
    font-size: 28px;
  }
  
  .i_course_desc {
    font-size: 16px;
  }
  
  .i_course_cards {
    gap: 20px;
  }
  
  .i_course_card {
    grid-column: 1 / -1;
  }
  
  .i_course_card_inner {
    padding: 30px;
    height: auto;
  }
  
  .i_course_card_title {
    font-size: 20px;
  }
  
  .i_course_card_desc {
    font-size: 14px;
  }
}


/*------------------i_container_features------------------*/

/* 特集セクション */
.i_container_features {
  padding: 80px 0;
  background: #F5F5F5;
}

.i_features_grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.i_features_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
  border-bottom: solid 1px #002060;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.i_features_label {
  color: #777;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

.i_features_title {
  color: #000;
  font-size: 32px;
  font-weight: 600;
}

.i_features_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.i_features_card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.i_features_card_image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-radius: 12px;
}
.i_features_card_image:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.i_features_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.i_features_card .i_features_card_title{
  transition: all 0.3s ease;
}
.i_features_card:hover .i_features_card_title{
  color: #00A040!important;
}
.i_features_card:hover .i_features_card_image img {
  transform: scale(1.05);
}

.i_features_card_arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  transition: transform 0.3s ease;
}

.i_features_card_arrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 1px #00A040;
  border-right: solid 1px #00A040;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.i_features_card_arrow::after {
  content: '';
  width: 10px;
  height: 1px;
  background: #00A040;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.i_features_card:hover .i_features_card_arrow {
  transform: translateX(4px);
}

.i_features_card_content {
  padding: 20px 0;
}

.i_features_card_title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.i_features_card_date {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

@media (max-width: 1200px) {
  .i_features_grid {
    padding: 0 40px;
  }
}

@media (max-width: 959px) {
  .i_container_features {
    padding: 60px 0;
  }
  .i_features_grid {
    padding: 0 16px;
  }
  .i_features_header {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-bottom: solid 1px #002060;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .i_features_header_group {
    text-align: center;
}
  .i_features_label {
    font-size: 20px;
  }
  .i_features_title {
    font-size: 28px;
  }
  .i_features_cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .i_features_card_image {
    height: 200px;
  }
  .i_features_card_content {
    padding: 20px 0;
  }
  .i_features_card_title {
    font-size: 16px;
  }
}
/*------------------index_共通------------------*/

@media (min-width: 960px) {
	.i_ttl{
		font-family: "Noto Sans JP-Bold", Helvetica;
		font-weight: 700;
		color: #000000;
		font-size: 4rem;
		text-align: center;
		letter-spacing: 4px;
		line-height: 1.2em;
		padding-bottom: 50px;
	}
}
@media (max-width: 959px) {
	.i_ttl{
		font-family: "Noto Sans JP-Bold", Helvetica;
		font-weight: 700;
		color: #000000;
		font-size: 3rem;
		text-align: center;
		letter-spacing: 4px;
		line-height: 2em;
		padding:30px 0;
	}
}
.i_ttl_sub{
	font-family: "Noto Sans JP-Bold", Helvetica;
	font-weight: 700;
	color: #000000;
	font-size: 3rem;
	text-align: center;
	letter-spacing: 4px;
	line-height: 2em;
}
/*------------------index_service------------------*/
.img_roun_shadow{
	border-radius: 20px;
	box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25), -5px -5px 5px 0px rgba(255, 255, 255, 0.25);
}
@media (min-width: 960px) {
	.ictt_service_ttl{
		font-family: "Noto Sans JP-Regular", Helvetica;
		font-weight: 400;
		color: #f5f5f5;
		font-size: 8.8rem;
		letter-spacing: 2.64px;
		line-height: 1em;
		position: absolute;
		left: 0;
		top:40px;
		z-index: -1;
	}
    .i_container_service{
        width:100%;
        position: relative;
		padding: 50px 30px;
		box-sizing: border-box;
    }
	.i_container_service_inner{
        width: 100%;
        max-width: 1280px;
        height: auto;
        margin: 0 auto;
        box-sizing: border-box!important;
        position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		border-top: solid 1px #F5F5F5;
		border-left: solid 1px #F5F5F5;
	}
    .ictt_service{
        width:33.333333%;
		padding: 30px;
        box-sizing: border-box;
        position: relative;
		display:flex;
		flex-wrap: wrap;
		border-right: solid 1px #F5F5F5;
		border-bottom: solid 1px #F5F5F5;
        overflow: hidden;
    }
	.ictt_service > h3{
		font-size: 1.9rem;
		line-height: 1.5em;
		display: flex;
/*        display: inline-block;*/
        position: relative;
		align-items: center;
		font-weight: 700;
		min-height: 65px;
        
       
	}
    
.h3_marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}
.h3_marquee::before {
    background-color: #ffffff;
    z-index: 20;
    padding-right:5px!important;
    margin-right:0px!important;
}

.h3_marquee .marquee_inner {
    display: flex;
    gap: 2rem; /* 文字間の余白 */
    min-width: max-content;
/*    animation: marquee 50s linear infinite;
    animation-play-state: paused;*/
}
.h3_marquee.active .marquee_inner {
    animation-play-state: running; /* 画面中央でスクロール開始 */
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

    
    
    .ictt_service .img{
        position: relative;
        width: 100%;
        margin-bottom: 20px;
		overflow: hidden;
    }
    .ictt_service p{
		min-height: 64px;
    }
}
@media (max-width: 959px) {
	.ictt_service_ttl{
		font-family: "Noto Sans JP-Regular", Helvetica;
		font-weight: 400;
		color: #f5f5f5;
		font-size: 5rem;
		letter-spacing: 2.64px;
		line-height: 1em;
		position: absolute;
		left: 0;
		top:60px;
		z-index: -1;
	}
    .i_container_service{
        width: 100%;
        position: relative;
    }
	.i_container_service_inner{
        width: 100%;
        height: auto;
        margin: 0 auto;
        box-sizing: border-box;
        position: relative;
/*		display: flex;*/
		flex-wrap: wrap;
		align-items: stretch;
		border-top: solid 1px #F5F5F5;
		border-left: solid 1px #F5F5F5;
		padding: 10px;
	}
    .ictt_service{
/*        width:50%;*/
        width:100%;
		padding: 10px;
        box-sizing: border-box;
        position: relative;
		display:flex;
		flex-wrap: wrap;
		border-right: solid 1px #F5F5F5;
		border-bottom: solid 1px #F5F5F5;
    }
	.ictt_service > h3{
		font-size: 1.6rem;
		line-height: 1.3em;
		padding-bottom: 15px;
		display: flex;
		align-items: flex-start;
		font-weight: 700;
	}
    .ictt_service .img{
        position: relative;
        width: 100%;
		height: auto;
        margin-bottom: 15px;
		overflow: hidden;
		aspect-ratio: 3 / 2
    }
    .ictt_service p{
		min-height: 64px;
		font-size: 1.4rem;
		line-height: 1.5em;
    }
}
.ictt_service > h3::before{
	content: '●';
	font-size: 1rem;
	color: #0368B5;
	margin-right: 5px;
}
.ictt_service > .img > a{
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
}
.ictt_service .img > a > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	vertical-align: bottom;
}
.ico_pr{
	font-size: 1.6rem;
	font-weight: 700;
	display: inline-block;
	line-height: 1em;
	border:solid 2px #000;
	padding: 2px 5px;
}
.ictt_service_vmore{
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	position: relative;
}

.ictt_service_vmore > a{
	width: 100%;
	color: #0368B5!important;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	transition: all .3s ease;
}
.ictt_service_vmore > a > .arrow{
	margin-right: 4px;
	width:  9px;
	height: 9px;
	border-top: solid 2px #0368B5;
	border-right: solid 2px #0368B5;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s ease;
}
.ictt_service_vmore > a > .link{
	width: 21px;
	height: 16px;
	background:url("../img/ico_link.webp") no-repeat;
	background-size: contain;
}
.ictt_service_vmore > a > .link{
	transition: all .3s ease;}

@media (min-width: 768px) {
	.ictt_service_vmore > a:hover{
		text-decoration: underline;
		opacity: .7;
	}
	.ictt_service_vmore > a:hover > .arrow{
	margin-right: 0;
	}
	.ictt_service_vmore > a:hover > .link{
		opacity: .7;
	}
}



/*-------------------ictt_news-------------------*/
.i_container_news {
  padding: 80px 0;
  background: #fff;
}
.news_tit1 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }

.news_ttl_wrap {
  display: flex;
  flex-wrap: wrap;
	align-items: center;
  background: #fff;
  border-bottom: 1px solid #D6E5F5;
  padding: 32px 0; 
	position: relative;
  transition: all 0.2s ease;
}
.news_meta_row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news_ttl_wrap:hover {
	color: #00A040;
  transform: translateX(0);
}
.news_ttl_wrap::after {
  content: "→";
  font-size: 24px;
  margin-left: 24px;
  transition: all 0.2s ease;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
}

.news_ttl_wrap::after {
  content: '';
	width: 8px;
	height: 8px;
	border-right: solid 1px #000;
	border-top: solid 1px #000;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .2s ease;
}
.news_ttl_wrap::before {
  content: '';
	width: 10px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	transition: all .2s ease;
}
.news_ttl_wrap:hover::after {
	right: 0;
}
.news_ttl_wrap:hover::before {
	right: 0;
}
.news_date {
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
  width: 80px;
  flex-shrink: 0;
}
.news_tit_str {
  font-weight: 700;
  font-size: 18px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
	text-align: left;
  margin-left: 16px;
  line-height:24px;
}
/* ボタン共通 */
.index_btn {
  display: inline-flex;
	align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
	line-height: 1em;
  border: 1px solid #000; border-radius: 5px;
  background: #fff; color: #000;
  padding: 12px 32px 12px 12px; cursor: pointer;
  transition: 0.2s;
	position: relative;
}
.index_btn::after {
  content: '';
	width: 8px;
	height: 8px;
	border-right: solid 1px #000;
	border-top: solid 1px #000;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .2s ease;
}
.index_btn::before {
  content: '';
	width: 10px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	transition: all .2s ease;
}
.index_btn:hover {
  background: #21B5C6;
  border-color: #21B5C6;
  color: #fff;
}
.index_btn:hover::after {
	border-right: solid 1px #fff;
	border-top: solid 1px #fff;
	right: 7px;
}
.index_btn:hover::before {
	right: 7px;
	background: #fff;
}

.i_container_news_ctt {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.news_left { grid-column: 1 / span 3; }
.news_right { grid-column: 4 / span 9; }
.news_tit1 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.news_tit2 { font-size: 16px; line-height: 1.7; }
.activity_wrap > li:last-child{
	margin: 0;
}
@media (max-width: 959px) {
  .i_container_news_ctt { 
    display: block; 
    text-align: center; 
    padding: 0 10px; }
  
  .news_ttl_wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 16px 16px 0;
  }
  .news_meta_row {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 12px;
  }
  .news_date {
    font-size: 12px;
    width: auto;
    min-width: 70px;
  }
  
  .news_tit_str {
    font-size: 16px;
    white-space: normal;
    text-align: left;
    margin-left: 0;
    width: 100%;
    line-height:130%;
  }
  
  .news_title_wrap {
    background: #fff;
    border-radius: 24px;
    padding: 16px 20px;
    margin-bottom: 24px;
		position: relative;
  }
  
  .ictt_news_box { width: calc(50% - 10px); }
	.news_title_wrap {
			display: block;
			align-items: center;
			background: rgba(0,0,0,0.04);
			border-radius: 40px;
			box-shadow: 0 8px 24px rgba(0,0,0,0.08);
			padding: 16px 32px; margin-bottom: 32px;
			text-align: left;
	}
  .activity_right, .news_right { padding: 16px; }
  .activity_tit1, .news_tit1 { font-size:32px; font-weight: 700; margin-bottom: 16px; }
  .activity_tit2, .news_tit2 { font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
	.activity_title_wrap {
		display: block;
		background: #fff; 
    border-radius: 12px;
		box-shadow: 0 4px 24px rgba(0,0,0,0.08);
		padding: 16px; 
    margin-bottom: 32px;
		cursor: pointer; 
    transition: 0.2s;
	}
}


/*------------------------------------------------------------------------------
breadcrumb
------------------------------------------------------------------------------*/
#breadcrumb {
    position: relative;
    clear: both;
    overflow: hidden;
}
#breadcrumb ul {
    list-style: none;
	padding: 10px;
    clear: both;
    overflow: hidden;
}

@media (max-width: 959px) {
    #breadcrumb ul {
        padding-left:5px!important;
    }
}

#breadcrumb li {
    color: #919191;
    display: inline;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0px 5px;
    float: left;
}
#breadcrumb li::after {
	content: '>';
	padding-left: 10px;
}
#breadcrumb li:last-child::after {
	content: '';
}
#breadcrumb li a {
    color: #919191;
}
#breadcrumb li a:hover {
    color: #50a0d6;
}


/*-------------------下層ページcss-------------------*/

@media (min-width: 960px) {
	#top_image{
		width: 100%;
		height:400px;
		margin: 0 auto;
		position: relative;
		background-color: #f2f2f2;
/*		border-bottom: dotted 1px #0368B5;*/
	}
}
@media (max-width: 959px) {
	#top_image{
		width: 100%;
		height:300px;
		margin: 0 auto;
		position: relative;
		background-color: #f2f2f2;
	}
}
#top_image img{
    width:100%;
    height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

#top_image_ttl{
	position:absolute;
	bottom: 30px;
	left: 0;
	background: #fff;
	padding: 30px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
#top_image_ttl > h2{
	position:relative;
	z-index: 1;
	font-size: 2.2rem;
	line-height: 1em;
	letter-spacing: 3px;
	font-weight: 700;
	color: #0368B5;
}
#top_image_ttl > span{
	font-size:3rem;
	line-height: 1em;
	letter-spacing: 2px;
	color: #fff;
	display: inline-block;
	padding: 5px 7px;
	position: absolute;
	top: -40px;
	left: 0;
    white-space: nowrap;
}
@media (max-width: 959px) {
	#top_image_ttl{
		padding: 20px
	}
	#top_image_ttl > h2{
		font-size: 2rem;
	}
}
.bg_gry{
	background-color: #f2f2f2;
}
.bg_w{
	background-color: #ffffff;
}
.link_blk a{
	color:#000!important;
}
.radius_img{
	border-radius:45px;
	overflow: hidden;
}
.col_box{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
}
@media (min-width: 960px) {
	.col_box_inner{
		width: 100%;
		padding:  15px;
		box-sizing: border-box;
		position: relative;
	}
    .col2to1_box{
        width: 50%;
        box-sizing: border-box;
        position: relative;
		display: flex;
		flex-wrap: wrap;
    }
    .col2_box{
        width:50%;
        padding:  15px;
        box-sizing: border-box;
        position: relative;
    }
    .col3_box{
        width:33.333333%;
        padding:  15px;
        box-sizing: border-box;
        position: relative;
    }
    .col4to2_box{
        width:25%;
        padding:  15px;
        box-sizing: border-box;
        position: relative;
    }
}
@media (max-width: 959px) {
	.col_box_inner{
		width: 100%;
		padding:  10px;
		box-sizing: border-box;
		position: relative;
	}
    .col2to1_box{
        width: 100%;
        box-sizing: border-box;
        position: relative;
		display: flex;
		flex-wrap: wrap;
    }
    .col2_box{
        width:50%;
        padding:  10px;
        box-sizing: border-box;
        position: relative;
    }
    .col3_box{
        width:33.333333%;
        padding: 10px;
        box-sizing: border-box;
        position: relative;
    }
    .col4to2_box{
        width:50%;
        padding:  10px;
        box-sizing: border-box;
        position: relative;
    }
}
@media (min-width: 960px) {
	.container1280{
		width: 100%;
		max-width: 1280px;
		height: auto;
		margin: 0 auto;
		box-sizing: border-box;
		position: relative;
		display: flex;
		flex-wrap: nowrap;
	}
	.side_container{
		width: 280px;
		height: 100%;
		padding: 30px;
		position: sticky;
		top: 110px;
	}
	.main_container{
		width: calc(100% - 280px);
		padding: 30px;
		position: relative;
		min-height: 100vh;
	}
	.side_container> ul{
		display:block;
		color: #0368B5;
	}
}
@media (max-width: 959px) {
	.container1280{
		width: 100%;
		max-width: 1280px;
		margin: 0 auto;
		box-sizing: border-box;
		position: relative;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.side_container{
		width: 100%;
		padding: 30px;
		order: 2;
        margin-bottom:40px;
	}
	.main_container{
		width: 100%;
		padding:10px;
		order: 1;
	}
	.side_container> ul{
		display:block;
		color: #0368B5;
		position: relative;
	}
}

@media screen and (max-width: 767px) {
  	.main_container{
		min-height: 100vh;
	}
}

.side_container> ul > li > a{
	display:block;
	transition: all .5s ease;
	position: relative;
	color: #000;
	padding: 15px 15px 15px 0;
	font-size: 1.5rem;
	line-height: 1.5em;
	border-bottom: solid 1px #cccccc;
}
.side_container> ul > li > .active{
	color: #0368B5;
	border-bottom: solid 1px #0368B5;
/*	pointer-events: none;*/
	font-weight: 700;
}
.side_container> ul > li:not(.menu_group) > a::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 5px;
	width:6px;
	height: 6px;
	border-top: solid 1px #0368B5;
	border-right: solid 1px #0368B5;
	transform: rotate(45deg) translateY(-50%);
	transition: all .2s ease;
}
.side_container> ul > li:not(.menu_group) > a:hover::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width:6px;
	height: 6px;
	border-top: solid 1px #0368B5;
	border-right: solid 1px #0368B5;
	transform: rotate(45deg) translateY(-50%);
	transition: all .2s ease;
}
.side_container> ul > li > a::before{
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width:0;
	height: 1px;
	background-color: #0368B5;
	transition: all .2s ease;
}
.side_container> ul > li > a:hover{
	display:block;
	color: #0368B5;
}
.side_container> ul > li > a:hover::before{
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width:100%;
	height: 1px;
	background-color: #0368B5;
}
@media (min-width: 960px) {
	.base_ttl{
		width:100%;
		font-family: "Noto Sans JP-Bold", Helvetica;
        font-weight: 700;
        color: #000000;
        font-size: 3rem;
        letter-spacing: 4px;
        line-height: 2em;
		margin: 0;
	}
    .base_container{
		padding: 50px 0;
        box-sizing: border-box;
        display: block;
        position: relative;
    }
}
@media (max-width: 959px) {
	.base_ttl{
		width:100%;
		font-family: "Noto Sans JP-Bold", Helvetica;
        font-weight: 700;
        color: #000000;
        font-size: 3rem;
        letter-spacing: 4px;
        line-height: 2em;
		margin: 0;
	}
    .base_container{
        padding: 30px 0;
        box-sizing: border-box;
        display: block;
        position: relative;
    }
}

@media (min-width: 960px) {
    .table_ctt dl{
        width: 100%;
        padding-bottom: 10px;
        clear:both;
        overflow: hidden;
    }
    .table_ctt dt{
        width: calc(50% - 10px);
        margin-right: 10px;
        padding: 10px;
        background-color: #0052a5;
        color: #fff;
        font-weight: 700;
        float: left;
    }
    .table_ctt dd{
        width: calc(50% - 10px);
        margin-left: 10px;
        padding: 10px;
        float: left;
    }
}
@media (max-width: 959px) {
    .table_ctt dl{
        width: 100%;
        padding-bottom: 10px;
        clear:both;
        overflow: hidden;
    }
    .table_ctt dt{
        width: 100%;
        padding: 10px;
        background-color: #0052a5;
        color: #fff;
        font-weight: 700;
        float: left;
    }
    .table_ctt dd{
        width: 100%;
        padding: 10px;
        float: left;
    }
}
@media (min-width: 960px) {
    .caution_box{
        width: 80%;
        padding: 20px;
        margin: 30px 10%;
        box-sizing: border-box;
        background-color: #fff;
        border:solid 1px #0052a5;
        position: relative;
    }
}
@media (max-width: 959px) {
    .caution_box{
        width: 100%;
        padding: 20px;
        margin: 30px 0;
        box-sizing: border-box;
        background-color: #fff;
        border:solid 1px #0052a5;
        position: relative;
    }
}
.caution_box strong{
    color:#0052a5;
    font-weight: 700;
}
table {
	width: 100%;
	text-align: center;
}
table tr th,
table tr td {
	padding: 10px;
	vertical-align: middle;
}

table tr th {
	text-align: center;
	font-weight: bold;
}


/*-------------------form--------------------*/

#form_wrap {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

#form_wrap dl {
  border-bottom: 1px solid #D6E5F5;
  margin: 0;
  padding: 32px 0;
  display: block;
}

#form_wrap dl.odd {
  background-color: transparent;
}

#form_wrap dl dt {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
  width: 100%;
  margin-bottom: 12px;
}

#form_wrap dl dt img {
  margin-bottom: -3px;
}

#form_wrap dl dd {
  width: 100%;
}

#form_wrap input[type="text"],
#form_wrap input[type="email"],
#form_wrap textarea,
#form_wrap input[type="file"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

#form_wrap input[type="text"]:focus,
#form_wrap input[type="email"]:focus,
#form_wrap textarea:focus {
  border-color: #00A040;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 160, 64, 0.1);
}

#form_wrap textarea {
  resize: vertical;
  min-height: 150px;
}

#form_wrap .btn_wrap {
  margin: 40px auto 0;
  padding: 0;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

#form_wrap .btn_wrap input {
  border: none;
  color: #fff;
  background-color: #002060;
  padding: 14px 40px;
  min-width: 180px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

#form_wrap .btn_wrap input:hover {
  background-color: #00A040;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 160, 64, 0.3);
}

#form_wrap .btn_wrap input[type="button"] {
  background-color: #777;
}

#form_wrap .btn_wrap input[type="button"]:hover {
  background-color: #555;
}

#form_wrap p.txtcenter {
  margin-top: 30px;
  text-align: center;
}

#form_wrap .policy_check {
  background-color: #f0f7ff;
  border: 2px solid #002060;
  border-radius: 8px;
  margin: 30px 0;
  padding: 30px;
  text-align: center;
}

/* エラーメッセージ */
#form_wrap .error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  display: block;
}

/* 必須マーク */
#form_wrap dt::after {
  content: '';
}

#form_wrap dt:has(+ dd input[required])::after,
#form_wrap dt:has(+ dd textarea[required])::after {
  content: '※必須';
  color: #dc3545;
  font-size: 12px;
  margin-left: 8px;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  #form_wrap {
    padding: 20px 15px;
  }

  #form_wrap dl {
    padding: 20px 0;
    flex-direction: column;
    gap: 12px;
  }

  #form_wrap dl dt {
    min-width: auto;
    width: 100%;
  }

  #form_wrap dl dd {
    width: 100%;
  }

  #form_wrap input[type="text"],
  #form_wrap input[type="email"],
  #form_wrap textarea {
    font-size: 16px;
  }

  #form_wrap .btn_wrap {
    flex-direction: column;
    gap: 15px;
  }

  #form_wrap .btn_wrap input {
    width: 100%;
    min-width: auto;
  }

  #form_wrap .policy_check {
    padding: 20px;
  }
}



@media (min-width: 960px) {
    .b_more{
        width: 270px;
        margin: 10px 0;
        padding:15px 35px;
        border-radius: 11px;
        color: #fff;
        background-color: #000;
        font-weight: bold;
        font-size: 18px;
        display: inline-block;
        text-align: center;
        border: none;
    }
}
@media (max-width: 959px) {
    .b_more{
        width: 100%;
        margin-top: 10px;
        padding:15px 35px;
        border-radius: 11px;
        color: #fff;
        background-color: #000;
        font-weight: bold;
        font-size: 18px;
        display: inline-block;
        text-align: center;
        border: none;
        box-sizing: border-box;
    }
    table.formTable td,table.formTable th{
        width: 100%;
        padding:10px;
        display: inline-block;
    }
}

.b_more:hover{
	opacity:0.7;
	filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}



/*---------------------------四つのお約束-----------------------------*/
.syakun_ctt > dl{
	display: block;
	padding: 30px 20px 30px 70px;
	margin-bottom: 20px;
	position: relative;
	background-color: #f1eee8;
	border-radius: 5px;
	
}
.syakun_ctt > dl::before{
	content: '一、';
	font-size: 3rem;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 700;
	position: absolute;
	left:20px;
	top: 30px;
	color: #0368B5;
}
.syakun_ctt > dl > dt{
	font-size: 2.2rem;
	padding-bottom: 10px;
	border-bottom: solid 1px #cccccc;
	margin-bottom: 10px;
	font-weight: 700;
	letter-spacing: 2px;
}



/*---------------------------事業所一覧-----------------------------*/
.jigyousyo_ctt{
	display:flex;
	flex-wrap: wrap;
	align-items: stretch;
	margin: 0 -10px;
}

@media (min-width: 960px) {
	.jigyousyo_ctt > dl{
		width: calc(33.333333% - 20px);
		display: block;
		padding: 20px;
		box-sizing: border-box;
		margin: 10px;
		position: relative;
		background-color: #f1eee8;
		border-radius: 5px;
	}
}
@media (max-width: 959px) {
	.jigyousyo_ctt > dl{
		width: calc(50% - 20px);
		display: block;
		padding: 20px;
		box-sizing: border-box;
		margin: 10px;
		position: relative;
		background-color: #f1eee8;
		border-radius: 5px;
	}
}
.jigyousyo_ctt > dl::before{
	content: '';
	font-size: 3rem;
	font-weight: 700;
	position: absolute;
	left:20px;
	top: 30px;
	color: #0368B5;
}
.jigyousyo_ctt > dl > dt{
	font-size: 2.2rem;
	padding-bottom: 10px;
	border-bottom: solid 1px #cccccc;
	margin-bottom: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	position: relative;
}
.jigyousyo_ctt > dl > dt::before{
	content: '';
	width: 2px;
	height: calc(100% - 10px);
	background: #0368B5;
	position: absolute;
	left: -18px;
	top: 0;
}
.jigyousyo_ctt > dl > dd{
	font-size: 1.5rem;
	line-height: 1.5em;
}
a > .googlemap_btn{
	margin-bottom:10px ;
	display:inline-block;
	font-size: 1.3rem;
	padding: 2px 5px;
	line-height: 1em;
	border-radius: 10px;
	border:solid 1px #0368B5;
	color: #0368B5;
}
.jigyousyo_tel{
	display:flex;
	align-items: center;
	font-weight: 700;
	line-height: 1em;
	padding-top: 10px;
}
.jigyousyo_tel::before{
	content:'TEL';
	font-size: 1.2rem;
	line-height: 1em;
	padding: 2px 5px;
	color: #fff;background: #000;
	border: solid 1px #000;
	display: inline-block;
	border-radius: 3px;
}


/*---------------------------グループ会社-----------------------------*/

.groupc_ctt > ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

@media (min-width: 960px) {
	.groupc_ctt > ul > li{
		width: 50%;
	padding: 0 20px;
		box-sizing: border-box;
		position: relative;
	}
}
@media (max-width: 959px) {
	.groupc_ctt > ul > li{
		width: 100%;
		box-sizing: border-box;
		position: relative;
	}
}
.groupc_ctt > ul > li > a{
	display: block;
	border-bottom: solid 1px #cccccc;
	position: relative;
	padding: 20px;
	transition: all .5s ease;
}
.groupc_ctt > ul > li > a:hover{
	color: #0368B5;
}
.groupc_ctt > ul > li > a::before{
	content: '';
	width: 5px;
	height: 5px;
	background: #0368B5;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.groupc_ctt > ul > li > a::after{
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	background-size: contain!important;
	background: url("../img/ico_link.webp") no-repeat;
	transition: all .5s ease;
}
.groupc_ctt > ul > li > a:hover::after{
	opacity: .7;
}


/*---------------------------PRIVACY-----------------------------*/
.privacy_ctt {
	padding:15px;
}
.privacy_ctt p {
    line-height: 2em;
    padding-bottom: 20px;
}

.privacy_ctt h4 {
    line-height: 2em;
    padding-bottom: 20px;
	font-weight: 700;
}
.privacy_ctt ol{
	padding-left:20px;
}

/*--------------img_animation-----------------*/
.img_animation{
	animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
}
.i_animation_img{
	animation-name: img_anim_box;
}
@keyframes img_anim_box {
  0% { transform: translate(0, 0px) }
  100% { transform: translate(0, -10px) }
}



/*---------------------------post-----------------------------*/
@media (min-width: 960px) {
    .post_ctt{
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 50px 50px 50px;
        box-sizing: border-box;
        display: block;
        position: relative;
    }
	.post_ctt_p p{
		max-width:800px;
		margin: 0 auto;
		padding-bottom: 20px;
	}
}
@media (max-width: 959px) {
    .post_ctt{
        width: 100%;
        margin: 0 auto;
        padding: 0 15px 30px 15px;
        box-sizing: border-box;
        display: block;
        position: relative;
    }
	.post_ctt_p p{
		max-width:800px;
		margin: 0 auto;
		padding: 0 10px 20px 10px;
	}
}
.post_date{
    color: #999;
    font-size: 1.8rem;
    padding: 5px 0;
	
}
.post_ttl{
	font-size:4rem;
	line-height: 1.5em;
	font-weight: 700;
	padding-bottom: 15px;
	border-bottom: solid 1px #333;
	margin-bottom: 30px;
}
.post_ctt img{
	padding-bottom: 20px;
	width: 100%;
	height: auto;
}

.f_comp_span {
    color:#ffffff;
    position: relative;
    letter-spacing: 1px;
    padding-left:20px;
    font-size:16px;
    display:block;
    margin-top:10px;
    margin-left:3px;
}
.f_comp_span::before {
    content: "";
    display: inline-block;
    background-image: url(../img/f_access.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
}

.f_tel_span {
    color:#ffffff;
    position: relative;
    letter-spacing: 1px;
    padding-left:22px;
    font-size:16px;
    display:block;
    height:20px;
    line-height:20px;
    margin-left:3px;
    margin-top:10px;
}

.f_tel_span::before {
    content: "";
    display: inline-block;
    background-image: url(../img/f_tel.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


/*---------------------------workstyle-----------------------------*/
/* --- 基本スタイル (PC表示がデフォルト) --- */
.workstyle_topbox {
  position: relative;
  width: 100%;
  height: 280px;
  background: linear-gradient(35deg, #109cda 0%, #abdcf2 100%); /* グラデーションを背景として設定 */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 1; /* workstyle_topbox自体のz-index。この下のレイヤーにコンテンツは配置しない前提 */
}

/* 画像 - PCでは右上に配置、グラデーションの上に */
.workstyle_overlay_image {
  position: absolute;
  top: 10px; /* PCでの画像位置 */
  right: 50px; /* PCでの画像位置 */
  width: 100%;
  max-width: 300px; /* PCでの画像サイズ */
  height: auto;
  z-index: 3; /* グラデーション (z-index: 1) より上、テキスト (z-index: 4) と半円 (z-index: 5) より下 */
}

/* テキスト - 画像の上に */
.workstyle_toptext {
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  padding: 40px 0 0 40px; /* PCでの左寄せパディング */
  line-height: 60px;
  letter-spacing: 1px;
  position: relative;
  z-index: 4; /* 画像 (z-index: 3) より上、半円 (z-index: 5) より下 */
}

@media (min-width: 768px) {
    .workstyle_topbox {
        margin-top:10px;
    }
}

/* 半円 - いかなる場合も最上部 */
.half-circle-wrapper {
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 360px;
  height: 160px;
  overflow: hidden;
  z-index: 5; /* 最も高いz-indexを設定し、常に最上部に表示 */
}

/* --- 半円に関する既存スタイル (変更なし) --- */
.workstyle_halfcircle {
  position: relative;
  width: 340px;
  height: 320px;
  background: #fff;
  border-radius: 50%;
  top: 60px;
  transform: rotate(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-top: 30px;
}

.ws_posi_str,
.name_str {
  transform: rotate(180deg);
  color: #333;
  text-align: center;
  line-height: 1.4;
}

.ws_posi_str {
  padding-top: 20px;
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: bold;
  letter-spacing: 1px;
}

.name_str {
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 1px;
}

.ws_image-group {
  display: flex; /* 子要素をFlexアイテムとして横並びにする */
  gap: 20px;     /* 子要素間の間隔を20pxに設定 */
  /* 必要であれば、親要素の配置に関するスタイルを追加 */
}

/* --- レスポンシブ対応 (max-width: 768px) --- */
@media (max-width: 768px) {
  .workstyle_topbox {
    height: 350px; /* スマホ時の高さ (必要に応じて調整) */
    min-height: 350px; /* 最小高さも設定 */
    /* 背景グラデーションは引き続き存在 */
  }

	.workstyle_overlay_image {
	  position: absolute;
	  top: 20px;
	  left: 50%;
	  /* 垂直方向の -50% を削除し、水平方向の中央揃えのみにする */
	  transform: translateX(-50%); /* 自身の幅の半分だけ左に移動して水平方向に中央揃え */
	  /* width: 100%; */ /* 必要に応じてコメントアウトを解除してください。max-widthと併用する場合 */
	  height: 100%;
	  object-fit: cover; /* 画像が要素を完全に覆うように */
	  z-index: 3; /* グラデーション (z-index: 1) より上、テキスト (z-index: 4) と半円 (z-index: 5) より下 */
	}
    
    .workstyle_overlay_image {
	  top: 40px!important;
	}

  .workstyle_toptext {
    position: absolute;
    top:15%;
    left: 50%;
    transform: translate(-50%, -50%); /* 自身のサイズを考慮して完全に中央 */
    width: calc(100% - 40px); /* 左右にパディング分20pxずつ余白 */
    padding: 0; /* PCでのパディングをリセット */
    text-align: left; /* 中央寄せ */
    font-size: 5vw; /* 画面幅に合わせてフォントサイズを調整 */
    line-height: 1.4;
    z-index: 4; /* 画像 (z-index: 3) より上、半円 (z-index: 5) より下 */
  }

  /* 半円は常に最上部なので、スマホでも同様に配置とz-indexを維持 */
  .half-circle-wrapper {
    position: absolute;
    bottom:-20px; /* 下に固定 */
    left: 50%; /* 中央に寄せる */
    transform: translateX(-50%); /* 自身の幅の半分だけ左に移動して完全に中央 */
    width: 300px; /* 半円の幅を調整 */
    height: 140px; /* 半円の高さを調整 */
    z-index: 5; /* 最も高いz-indexを設定 */
  }

  .workstyle_halfcircle {
    width: 280px;
    height: 280px;
    top: 20px;
  }

  .ws_posi_str {
    font-size: 16px;
  }

  .name_str {
    font-size: 26px;
  }
}

/* 必要であれば、さらに狭いスマホ向けのメディアクエリを追加 */
@media (max-width: 480px) {
  .workstyle_toptext {
    font-size: 5.2vw;
  }
  .half-circle-wrapper {
    width: 260px;
    height: 120px;
  }
  .workstyle_halfcircle {
    width: 260px;
    height: 260px;
  }
  .ws_posi_str {
    padding-top: 20px;
  }
}



/* --- 見出しコンテナの基本設定 --- */
.stylish-heading-container {
  width: 100%;
  max-width: 1200px; /* 必要に応じて最大幅を設定 */
  margin: 80px auto 20px auto; /* 上下の余白と中央寄せ */
  padding: 0 10px; /* 左右のパディング */
  box-sizing: border-box;
  text-align: left; /* 左寄せ */
  position: relative;
  z-index: 10;
}



/* --- 見出しテキストのスタイル (案A) --- */
.stylish-heading-text.optionA {
  position: relative; /* 擬似要素の基準位置 */
  color: #333; /* デフォルトの文字色 */
  font-size: 30px; /* PCでの基本フォントサイズ */
  font-weight: normal; /* デフォルトはノーマル、strongタグで太字 */
  line-height: 1.4;
  letter-spacing: 1px;
  padding-left:5px; /* 左サイドバーのための余白 */
  margin: 0; /* デフォルトマージンをリセット */
}

.stylish-heading-text.optionA strong {
    color: #109cda; /* 会社を継いで を基調色に */
    font-weight: bold; /* strongタグの太字を維持 */
}

/* --- 左サイドバー (案A) --- */
.stylish-heading-text.optionA::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  height: 100%; /* テキスト全体の高さに合わせる */
  width: 4px; /* バーの太さ */
  background-color: #109cda; /* 基調色 */
  border-radius: 2px; /* 少し丸み */
}

/* --- レスポンシブ対応 (max-width: 768px) --- */
@media (max-width: 768px) {
  .stylish-heading-container {
    margin: 30px auto 10px auto;
    padding: 0 15px;
  }

  .stylish-heading-text.optionA {
    font-size: 6vw; /* 画面幅に応じてフォントサイズを調整 */
    line-height: 1.3;
    padding-left:5px; /* スマホでの左余白を調整 */
  }

  .stylish-heading-text.optionA::before {
    width: 3px; /* スマホで少し細く */
  }
}

/* さらに狭いスマホ向けの調整 */
@media (max-width: 480px) {
  .stylish-heading-text.optionA {
    font-size:5vw;
  }
}

.ws_image-container {
  width:100%; /* PC表示時：画面幅に対して80%の幅 */
  max-width: 1200px; /* 必要に応じて最大幅を設定 */
  height: 300px; /* 高さ250pxに固定 */
  margin: 20px auto; /* 中央寄せ */
  overflow: hidden; /* 画像がコンテナからはみ出す場合、隠す */
  position: relative; /* 内部の絶対配置要素の基準とするため */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ws_image-container img {
  width: 100%; /* 親要素の幅いっぱいに広がる */
  height: 100%; /* 親要素の高さいっぱいに広がる */
  object-fit: cover; /* 画像が要素を完全に覆うように拡大縮小し、はみ出し部分はトリミング */
  object-position: top center; /* 画像の中央部分が表示されるように調整 */
  display: block; /* img要素の下にわずかにできる余白を削除 */
  border-radius: 10px;
}
.ws_image-container .img_center {
  object-position: center center!important; /* 画像の中央部分が表示されるように調整 */
}


@media screen and (max-width: 960px) and (min-width: 768px) {
  .ws_image-container {
    width: 100%; /* レスポンシブ時：画面幅に対して90%の幅 */
    height: 400px; /* 高さ250pxは維持 */
  }
}


/* レスポンシブ対応 (画面幅が768px以下の場合) */
@media (max-width: 768px) {
  .ws_image-container {
    width: 100%; /* レスポンシブ時：画面幅に対して90%の幅 */
    height: 200px; /* 高さ250pxは維持 */
  }
}









/* --- 全体コンテナの基本スタイル --- */
.content-with-image {
  width: 100%;
  max-width: 1200px; /* PC表示時の最大幅 */
  margin: 20px auto; /* 中央寄せと上下の余白 */
  box-sizing: border-box; /* パディングを幅に含める */
  display: flow-root; /* floatを内包するため (clearfixのモダンな代替) */
}

/* --- 画像コンテナのスタイル (PC表示時) --- */
.styled-image-wrapper {
  float: right; /* 画像を右にフローティングさせる */
  width: 260px; /* 画像の固定幅 */
  height:260px;
  margin: -80px 0 10px 20px; /* 上右下左の余白: 上0, 右0, 下10px, 左20px */
  position: relative; /* transformの基準点とするため */
  transform: rotate(0deg); /* 少し傾ける */
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.25)); /* ドロップシャドウを追加 */
  border-radius: 50%; /* 角丸 */
  overflow: hidden; /* 角丸と影を適用するため */
  z-index: 1;
}

.styled-image-wrapper img {
  display: block; /* 画像の下のわずかな余白をなくす */
  width: 100%; /* 親要素の幅に合わせて画像が広がる */
  height: auto; /* 高さは自動調整 */
  border-radius: 10px; /* 画像自体にも角丸を適用 */
}

/* --- テキストブロックのスタイル --- */
.text-block {
  /* text-blockはp要素を含むため、float要素の横を自動的に回り込みます */
  line-height: 1.8; /* 行の高さ */
  color: #333; /* 文字色 */
  margin: 0; /* デフォルトのマージンをリセット */
  /* 必要に応じて、テキストブロックの幅を調整することも可能ですが、
     floatが機能していれば通常は自動調整されます。 */
}

.text-block p {
    /* text-blockの子要素として存在するため、個別のスタイルを必要であればここに追加 */
    margin: 0; /* デフォルトのマージンをリセット */
}


/* タブレット用（例：960px以下〜768px以上） */
@media screen and (max-width: 960px) and (min-width: 768px) {
  .styled-image-wrapper {
    float: none; 
    max-width: 100%; /* 最大幅も100% */
    margin: 0 auto; /* 中央寄せ */
  }
}

@media screen and (max-width: 767px) {
  .styled-image-wrapper {
    float: none; /* floatを解除し、通常のドキュメントフローに戻す */
    width: 100%; /* 幅をフルサイズに */
    max-width: 100%; /* 最大幅も100% */
    margin: 0 auto; /* 中央寄せ */
    transform: none; /* 傾きを解除 */
    border-radius: 10px; /* 角丸を解除 */
  }
}


/* --- レスポンシブ対応 (画面幅が768px以下の場合) --- */
@media (max-width: 960px) {
  .content-with-image {
	  margin-top:0px;
  }

  .text-block p {
    margin-bottom: 20px; /* 画像との間に下マージン */
  }



  .styled-image-wrapper img {
    border-radius: 0; /* 角丸を解除 */
  }
}

.heading-and-line {
  display: flex; /* 線と「入社のきっかけ」だけをflexで並べる */
  align-items: center; /* 垂直方向の中央揃え */
  margin-bottom: 10px; /* 必要であれば、線と「入社のきっかけ」の下に余白を追加 */
  margin-left:-10px;
}

.stylish-heading-line {
  display: inline-block;
  width: 15px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: black; /* 線の色 */
  margin-right:5px; /* 線と文字の間隔 */
  background-color: #109cda;
}






/*-------- footer --------*/

  .hoa-footer {
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .hoa_footer_ctt { 
    position: relative; 
    background: #002060;
    padding : 0 20px;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
  }

  .hoa_footer_ctt::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 2000px;
    height: 1000px;
    background: url(../images/about_bg_fan.png) no-repeat;
    background-position: center;
    transform-origin: center;
    transform: translate(-50%, 50%) rotate(37deg);
    -webkit-filter: blur(50px);
    -moz-filter: blur(50px);
    -o-filter: blur(50px);
    -ms-filter: blur(50px);
    filter: blur(50px);
    opacity:.4;
  }
  .hoa-footer-left { 
    width: 50%;
    display: flex; 
    flex-direction: column;
    z-index: 1;
    padding-bottom:32px;
  }
  .hoa-footer-right { 
    width: 50%;
    position: relative; 
    padding-bottom:32px;
  }

  @media (max-width: 959px) {
    .hoa_footer_ctt { 
      position: relative; 
      background: #002060;
      padding : 0 20px;
      display:block;
      position:relative;
    }
    .hoa-footer-left { 
      width: 100%;
      display: block; 
      flex-direction: column;
      z-index: 1;
      padding-bottom:32px;
    }
    .hoa-footer-right { 
      width: 100%;
      position: absolute; 
      top: -250px;
      right:20px;
    }
    .hoa-message {
      color: #002060;
      text-align: right;
      font-family: "DIN Alternate";
      font-size: 16px!important;
      font-style: normal;
      font-weight: 700;
      line-height: 120%!important;
      letter-spacing: -0.22px!important;
    }
  }
  .hoa-brand { 
    font-size: 24px; 
    font-weight: 700; 
    letter-spacing: .02em;
    padding-bottom:32px; 
  }
  .hoa-brand span { color: #00A040; font-weight: 800; }
  .hoa-contact { display: flex; flex-direction: column; gap: 12px; }
  .hoa-address { display: flex; gap: 12px; flex-wrap: wrap; }
  .hoa-address .pin { 
    width: 32px; 
    height: 32px; 
    position: relative; 
    padding: 0 10px 10px 0;}
  .hoa-address .addr { 
    display: grid; 
    gap: 2px; 
    color: #E6F0FF; }
  .hoa-address .gmap { 
    display: inline-block;  
    color: #fff; 
    font-size: 12px; 
    padding: 2px 10px; 
    border-radius: 12px; 
    text-decoration: none; 
    border: 1px solid rgba(255,255,255,.25);
    line-height:100%;
  }
  .hoa-tel { color: #E6F0FF; }
  .hoa-links { 
    display: flex; 
    gap: 16px; 
    list-style: none; 
    padding: 0;  
  }
  .hoa-links a { color: #E6F0FF; text-decoration: none; font-size: 13px; }

  .hoa-message { 
    font-size: 24px; 
    font-weight: 700; 
    text-align: right; 
    line-height: 1.6; 
    letter-spacing: .02em;
    font-family: "DIN Alternate";
  }
  .hoa-ship { position: absolute;  opacity: .95; z-index: 2; }
  .hoa-ship.ship01 { 
    width: 50px; height: auto;
    bottom: 20px;
    animation: ship-sail-rtl 90s linear infinite;
  }
  .hoa-ship.ship02 { 
    width: 76px; height: auto;
    top: 160px;
    animation: ship-sail-ltr 100s linear infinite;
  }
  @keyframes ship-sail-ltr {
    0% { left: -100px; }
    100% { left: calc(100% + 100px); }
  }
  @keyframes ship-sail-rtl {
    0% { left: calc(100% + 100px); }
    100% { left: -100px; }
  }
  .hoa-lighthouse { position: absolute; left: 0; bottom: 120px; width: 80px; }
  .hoa-cloud { position: absolute; bottom: 120px;}
  .hoa-cloud.l { left: 0; width: 33%; }
  .hoa-cloud.c { left: 50%; transform: translateX(-50%); width: 33%;}
  .hoa-cloud.r { right: 0; width: 33%;}
  .hoa-footer-bottom { 
    width: 100%;
    position: relative; 
    border-top: 1px solid rgba(255,255,255,.35); 
    padding: 10px 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
  }
  .hoa-footer-bottom .copy { color: #E6F0FF; font-size: 12px; text-align: right;}

  /* footer wind turbine */
  .hoa-footer-bg {
    position: relative;
    background: #ECF2FF;
    height:280px;
  }
  .hoa-footer_sea{
    position: absolute;
    top: 160px;
    left: 0;
    width: 100%;
    height: 120px;
    background-size: cover;
    z-index: 0;
    background:#002060;
  }
  .hoa-footer-visual {
    position: absolute;
    right: 0;
    bottom: 70px;
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 33%;
    width: 90%;
  }
  .hoa-footer-visual-left {
    position: absolute;
    left: 0;
    bottom: 114px;
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 33%;
    width: 90%;
  }
  .turbine-group { 
    --blade-length: 60px; 
    --hub-size: 12px;
    display: inline-block;
  }
  .hoa-footer-visual-left .turbine-group {
    --blade-length: 36px;
    transform: scale(0.6);
    transform-origin: bottom center;
  }
  .hoa-footer-visual-left .turbine-stem {
    height: 56px;
  }
  .turbine-stem-wrap { position: relative; display: inline-block; }
  .turbine-stem { display: block; height: 94px; width: auto; }
  .turbine-hub { position: absolute; top: 0; left: 50%; }
  .turbine-rotor { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 1px; 
    height: 1px; 
    transform-origin: 0 0; 
    animation: turbine-spin 8s linear infinite; 
  }
  .turbine-group-1 .turbine-rotor { animation-delay: 0s !important; }
  .turbine-group-2 .turbine-rotor { animation-delay: -2s !important; }
  .turbine-group-3 .turbine-rotor { animation-delay: -5.33s !important; }
  .turbine-group-4 .turbine-rotor { animation-delay: -4s !important; }
  .turbine-group-5 .turbine-rotor { animation-delay: -1s !important; }
  .turbine-group-6 .turbine-rotor { animation-delay: -3s !important; }
  .blade { position: absolute; top: 0; left: 0; transform-origin: 0 0; }
  .blade img { width: var(--blade-length); height: auto; transform: translateY(-50%); display: block; }
  .blade.b1 { transform: rotate(0deg); }
  .blade.b2 { transform: rotate(120deg); }
  .blade.b3 { transform: rotate(240deg); }
  @keyframes turbine-spin { to { transform: rotate(360deg); } }

  @media (max-width: 959px) {
    .turbine-group { --blade-length: 40px; }
    .turbine-stem { height: 60px; }
    .hoa-footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 16px 16px; }
    .hoa-lighthouse { position: absolute; left: 0; bottom: 120px; width: 50px; }
    .hoa-footer-bottom { 
      width: 100%;
      position: relative; 
      border-top: 1px solid rgba(255,255,255,.35); 
      padding: 16px 0; 
      display: flex; 
      flex-wrap: wrap;
      align-items: center;
    }
    .hoa-footer-bottom .copy {
      font-size: 10px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      text-align:left;
      padding-top: 16px;

    }
    .hoa-links { 
      display: block; 
      flex-wrap: wrap;
      list-style: none; 
      padding-top:16px;
    }
    .hoa-links > li{
      width: 100%;
      padding-bottom: 16px; 
      line-height:100%;
    }
    .hoa-brand { 
      font-size: 19px!important; 
    }
  }
  @media (prefers-reduced-motion: reduce) { .turbine-rotor { animation: none; } }

/* ===================================
   共通ページレイアウトスタイル
   indexページの12カラムgridシステムに基づく
   =================================== */

/* ページヘッダー */
.hoa_page_header {
	position: relative;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(93deg, #FFF 3.49%, #E4EDFF 97.95%);
	overflow: hidden;
}

.hoa_page_header_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
}

.hoa_page_header_inner {
	position: relative;
	z-index: 2;
	text-align: center;
}

.hoa_page_subtitle {
	color: #777;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 10px;
}

.hoa_page_title {
	color: #002060;
	font-size: 48px;
	font-weight: 600;
	margin: 0;
}

/* パンくずリスト */
.hoa_breadcrumb {
	background: #f8f9fa;
	padding: 20px 0;
}

.hoa_breadcrumb_inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
}

.hoa_breadcrumb ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.hoa_breadcrumb li {
	display: flex;
	align-items: center;
	color: #666;
	font-size: 14px;
}

.hoa_breadcrumb li:not(:last-child)::after {
	content: '>';
	margin: 0 10px;
	color: #999;
}

.hoa_breadcrumb a {
	color: #002060;
	text-decoration: none;
	transition: color 0.3s ease;
}

.hoa_breadcrumb a:hover {
	color: #1b9bd7;
}

/* 共通セクションレイアウト */
.hoa_page_section {
	background: #f5f5f5;
	padding: 80px 0;
}

/* 2カラムページ用コンテナ (about, courseなど) - 12カラム幅 */
.hoa_page_container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
}

/* シングルカラムページ用コンテナ (single, policy, contact, newsなど) - 10カラム幅 */
.hoa_page_container_narrow {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 80px;
}

/* 共通セクションヘッダースタイル */
.hoa_section_header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
}

.hoa_section_number {
	background: #002060;
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 600;
	flex-shrink: 0;
}

.hoa_section_title {
	color: #002060;
	font-size: 32px;
	font-weight: 600;
	margin: 0;
}

/* 共通コンテンツブロック */
.hoa_content_block {
	background: #fff;
	border-radius: 16px;
	padding: 60px 50px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
   ポリシーページ共通スタイル
   privacy-policy / site-policy
========================================= */

.hoa_policy_main {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.hoa_policy_block {
	padding-bottom: 40px;
	border-bottom: 1px solid #e0e0e0;
}

.hoa_policy_block:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.hoa_policy_title {
	background: #002060;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	padding: 15px 25px;
	margin: 0 0 30px 0;
	border-radius: 4px;
}

.hoa_policy_subtitle {
	color: #002060;
	font-size: 18px;
	font-weight: 600;
	margin: 30px 0 15px 0;
	padding-left: 15px;
	border-left: 4px solid #00A040;
}

.hoa_policy_content {
	line-height: 1.8;
	color: #333;
	font-size: 15px;
}

.hoa_policy_content p {
	margin: 0 0 20px 0;
}

.hoa_policy_content p:last-child {
	margin-bottom: 0;
}

.hoa_policy_content .text-red {
	color: #dc3232;
	font-weight: 600;
}

.hoa_policy_content ul {
	margin: 20px 0;
	padding-left: 25px;
}

.hoa_policy_content li {
	margin: 10px 0;
	line-height: 1.8;
}

.hoa_policy_content ul ul {
	margin: 10px 0;
	padding-left: 25px;
}

.hoa_policy_link {
	margin-top: 20px !important;
	padding: 20px;
	background: rgba(0, 160, 64, 0.05);
	border-left: 4px solid #00A040;
	border-radius: 4px;
}

.hoa_policy_link a {
	color: #002060;
	text-decoration: underline;
	font-weight: 600;
	transition: color 0.3s ease;
}

.hoa_policy_link a:hover {
	color: #1b9bd7;
}

.hoa_policy_info {
	margin-top: 30px !important;
	padding: 25px;
	background: #f8f9fa;
	border-radius: 8px;
	line-height: 1.8;
}

.hoa_policy_info strong {
	display: block;
	color: #002060;
	font-size: 16px;
	margin-bottom: 15px;
}

.hoa_policy_info p {
	margin: 8px 0;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
	.hoa_page_container,
	.hoa_page_container_narrow,
	.hoa_breadcrumb_inner {
		padding: 0 40px;
	}
}

@media (max-width: 960px) {
	.hoa_page_header {
		height: 200px;
	}
	
	.hoa_page_subtitle {
		font-size: 18px;
	}
	
	.hoa_page_title {
		font-size: 32px;
	}
	
	.hoa_page_section {
		padding: 60px 0;
	}
	
	.hoa_page_container,
	.hoa_page_container_narrow,
	.hoa_breadcrumb_inner {
		padding: 0 16px;
	}
	
	.hoa_breadcrumb ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.hoa_breadcrumb li:not(:first-child)::before {
		content: '>';
		margin-right: 8px;
		color: #999;
	}
	
	.hoa_breadcrumb li:not(:last-child)::after {
		content: none;
	}
	
	.hoa_section_header {
		gap: 15px;
		margin-bottom: 30px;
	}
	
	.hoa_section_number {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	
	.hoa_section_title {
		font-size: 24px;
	}
	
	.hoa_content_block {
		padding: 40px 30px;
	}
	
	.hoa_policy_main {
		gap: 40px;
	}
	
	.hoa_policy_block {
		padding-bottom: 30px;
	}
	
	.hoa_policy_title {
		font-size: 18px;
		padding: 12px 20px;
	}
	
	.hoa_policy_subtitle {
		font-size: 16px;
		margin: 25px 0 12px 0;
	}
	
	.hoa_policy_content {
		font-size: 14px;
	}
	
	.hoa_policy_content ul {
		padding-left: 20px;
	}
	
	.hoa_policy_link,
	.hoa_policy_info {
		padding: 15px;
	}
}

 /* ----------------協賛企業・団体--------------------*/
.sponsor_section {
  background: #E1F2F4;
  padding: 70px 0;
  text-align: center;
}
.sponsor_title h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 32px;
}
.sponsor_title p {
  font-size: 16px;
  margin-bottom: 32px;
}
@media (max-width: 959px) {
  .sponsor_section {
    background: #E1F2F4;
    padding: 64px 0;
    text-align: center;
  }
  .sponsor_title h2 { margin-bottom: 18px; }
  .sponsor_title p { margin-bottom: 18px; padding: 0 20px; }
}

/* ===== スクロールインフィニティ ===== */
@media (min-width: 960px) {
  .scroll-infinity-r {
    display: none;
  }
}
@media (max-width: 959px) {
  .scroll-scroll-infinity {
    margin-top:8px;
  }
  .scroll-infinity-r {
    margin-bottom:8px;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}
.scroll-infinity.is-ready .scroll-infinity__list--left {
  animation: infinity-scroll-left 60s linear 0.5s infinite both;
}
@keyframes infinity-scroll-left2 {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}
.scroll-infinity.is-ready .scroll-infinity__list--left2 {
  animation: infinity-scroll-left 60s linear 0.5s infinite both;
}
@keyframes infinity-scroll-right {
    from {
      transform: translateX(-100%);
    }
      to {
      transform: translateX(0%);
    }
}
.scroll-infinity__list--right{
  animation :infinity-scroll-right 60s infinite linear 0.5s both;
}

.scroll-infinity__wrap {
/*  display: flex;*/
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0
}
.scroll-infinity__item {
  width: calc(100vw / 5 - 24px);
  display: grid;
  place-content: center;
  flex-shrink: 0;
  height: 80px;
  background: #ffffff;
  color: #333333;
  border-radius: 8px;
  flex-shrink: 0;
  margin: 0 12px;

/*  &:nth-of-type(6n + 1) {
    background-color: #4b2c36;
  }
  &:nth-of-type(6n + 2) {
    background-color: #21b5c6;
  }
  &:nth-of-type(6n + 3) {
    background-color: #2a1818;
  }
  &:nth-of-type(6n + 4) {
    background-color: #fff; color: #222; border: 1px solid #eee; 
  }
  &:nth-of-type(6n + 5) {
    background-color: #ff6b35;
  }
  &:nth-of-type(6n + 6) {
    background-color: #ff0000;
  }*/
}@media (max-width: 959px) {
  .scroll-infinity__item {
    width: calc(100vw / 4 - 16px);
    height: 60px;
    margin: 8px;
  }
}

.scroll-infinity__item img {
    width:100%;
    object-fit: contain;    /* ← これで画像が切れない */
    object-position: center; /* 中央配置 */
    display: block;
}

.scroll-infinity__item:hover {
    opacity: 0.7;
}