   body {
 	font-family: "Yu Gothic", YuGothic, "Yu Gothic Medium", Hiragino Kaku Gothic ProN, "Hiragino Sans", Verdana, Meiryo, sans-serif;
 	font-feature-settings: "palt" 1;
 	color: #000;
 	font-size: 12px;
 	line-height: normal;
 	letter-spacing: 0.08em;
 	margin: 0px !important;
 	background-color: transparent;
 	scroll-behavior: smooth;
 }

 b,
 strong,
 .bold {
 	font-family: 'Work Sans', "Yu Gothic", YuGothic, "Yu Gothic Medium", 'Noto Sans JP', 'Noto Serif JP', Hiragino Kaku Gothic ProN, "Hiragino Sans", Verdana, Meiryo, sans-serif;
 	font-weight: bold;
 }

 .f_helvechica {
 	font-family: "Helvetica", "Arial", "Roboto", sans-serif;
 	font-weight: 100 !important;
 }

 .f_mincho {
 	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", Hiragino Mincho Pro;
 	font-weight: 100;
 }

 .fuchi {
 	/*
 	color: #ffffff00;
 	-webkit-text-stroke: 1px #FFF;
 	text-stroke: 1px #FFF;*/
 }

 p {
 	letter-spacing: .09rem;
 }

 /* =====================

汎用style

===================== */
 /* スマホ改行解除用*/

 @media screen and (min-width: 780px) {
 	.spbr {
 		display: none !important;
 	}
 }



 @media screen and (max-width: 779px) {
 	.spbr_none {
 		display: none;
 	}
 }

 .txt_cn {
 	text-align: center;
 }

 a {
 	text-decoration: none;
 }

 /*=====================

ローディング

=====================*/


 /* ローディング画面 */
 #loader {
 	width: 100vw;
 	height: 100vh;
 	display: flex;
 	justify-content: center;
 	align-items: center;
 	transition: all 2s;
 	position: fixed;
 	top: 0;
 	left: 0;
 	z-index: 9999;
 	background-color: #fff;
 }

 .loaded {
 	opacity: 0;
 	visibility: hidden;
 }

 #load_id img {
 	max-width: 300px;
 	width: 200px;
 	margin: 0 auto;
 }

 /* ローディングアニメーション */
 @keyframes sk-scaleout {
 	0% {
 		transform: scale(0);
 	}

 	100% {
 		transform: scale(1.0);
 		opacity: 0;
 	}
 }


 /*=====================

ヘッダー

=====================*/


 #header {
 	position: fixed;
 	top: 0;
 	opacity: 1;
 	width: 100%;
 	z-index: 900;
 	display: flex;
 	align-items: center;
 	height: auto;
 }

 #header a {
 	color: #000;
 }

 #site_id {
 	width: auto;
 }

 #site_id img {
 	max-width: 200px;
 	padding-left: 10px;
 	width: 100%;
 }

 menu {
 	width: 100%;
 }

 #header .header_inner {
 	top: 0;
 	width: 100%;
 	height: 75px;
 	display: inline;
 	flex-direction: row;
 	justify-content: space-between;
 }

 #header .head_box {
 	max-width: 100%;
 	margin: 0px;
 	position: relative;
 }

 #header .menu {
 	width: 100%;
 	margin-top: 0px;
 	display: none;
 }

 #header .menu .menu-menu-container {
 	margin: 0 0px 0 0px;
 	height: 100vh;
 	width: 100%;
 	display: flex;
 	flex-direction: row;
 	justify-content: center;
 	align-items: center;
 	background: transparent;
 }

 #header .menu .menu-menu-container #menu-content {
 	position: fixed;
 	top: -100%;
 	left: -50%;
 	width: 300%;
 	height: 300%;
 	background-size: 50px;
 	background-repeat: repeat;
 	transform: rotate(30deg);
 	transform-origin: center;
 	z-index: -1;
 	transition: background-image 0s ease-in-out, background-color 0.3s ease-in-out;
 	/* 背景色をスムーズに透過 */
 	background-color: transparent;
 	/* 初期状態は透過 */
 }

 ul.menulist {
 	display: flex;
 	flex-direction: row;
 	flex-wrap: wrap;
 	justify-content: right;
 	max-width: 1200px;
 	min-width: 220px;
 	margin: 0 auto;
 }

 /* グローバルメニュー */


 .hamburger {
 	display: block;
 	position: absolute;
 	right: 0px;
 	top: 0px;
 	width: 44px;
 	height: 44px;
 	cursor: pointer;
 	z-index: 300;
 	background-color: #000;
 }

 .hamburger::after {
 	content: "";
 	position: absolute;
 	top: 0;
 	right: 0;
 	bottom: 0;
 	left: -40px;
 	z-index: -1;
 	background: #000;
 	transform: scaleY(2) perspective(.6em) rotateX(5.6deg);
 	transform-origin: bottom right;
 }

 .hamburger__line {
 	position: absolute;

 	width: 30px;
 	height: 1px;
 	border-top: 1px solid #fff;
 	box-sizing: border-box;
 	transition: all .1s;
 }

 .hamburger__line--1 {
 	top: 12px;
 	left: 0px;
 }

 .hamburger__line--2 {
 	top: 22px;
 	left: -6px;
 }

 .hamburger__line--3 {
 	top: 32px;
 	left: -12px;
 }

 .global-nav {
 	transition: 0.2s all linear;
 	position: fixed;
 	top: 0px;
 	width: 100%;
 	box-sizing: border-box;
 	height: 100vh;
 }

 .global-nav ul {
 	display: flex;
 	flex-direction: column;
 	width: 84%;
 	opacity: 0;
 	transition: 0.2s all linear;
 }

 .global-nav li {
 	height: 40px;
 }

 .global-nav li a {
 	font-size: 2.8rem !important;
 	font-weight: 100;
 	display: flex;
 	flex-direction: row;
 	height: auto;
 	color: #fff !important;
 	transition: 0.2s;
 }


 .global-nav li .lang_menu {
 	color: #fff !important;
 	font-size: 0.8rem;
 	padding: 50px 0 0;
 }

 .global-nav li .lang_menu a {
 	color: #fff !important;
 	font-size: 0.8rem !important;
 	display: inline-block;
 	text-decoration: underline;
 	cursor: pointer;
 }


 .global-nav li a img {
 	height: 46px;
 }

 .global-nav li a .mtxt {
 	display: inline-block;
 	opacity: 0;
 	padding: 17px 0 0 10px;
 	font-size: 0.8rem;
 }


 .nav-open .hamburger {
 	position: fixed;
 }

 .nav-open .hamburger__line {
 	width: 30px;
 	height: 1px;
 	border-top: 1px solid #000;
 	border-right: 0px solid transparent;
 }



 .nav-open .global-nav {
 	top: 0;
 	position: fixed;
 	width: 100%;
 	box-sizing: border-box;
 	height: 100vh;
 }

 .nav-open .global-nav .w_rogo {
 	padding: 20px;
 	max-width: 140px;
 	width: 100%;
 }

 .nav-open .global-nav ul {
 	display: flex;
 	flex-direction: column;
 	width: 84%;
 	transition: 0.2s all linear;
 	opacity: 1;
 }

 .nav-open .global-nav li {
 	height: 40px;
 }

 .nav-open .global-nav li a {
 	font-size: 2.8rem !important;
 	font-weight: 100;
 	display: flex;
 	flex-direction: row;
 	height: auto;
 	color: #fff !important;
 	transition: 0.2s;
 }

 .nav-open .global-nav li a .mtxt {
 	font-size: 0.8rem;
 	opacity: 1;
 }

 .nav-open .global-nav li a:hover {
 	color: #fff !important;
 }

 .nav-open .global-nav li a:hover .mtxt {
 	display: inline-block;
 	opacity: 1;
 	font-size: 1rem;
 }


 .nav-open .black-bg {
 	opacity: .8;
 	visibility: visible;
 }

 .nav-open .hamburger__line {
 	border-top: #fff 1px solid;
 }

 .nav-open .hamburger__line--1 {
 	transform: rotate(45deg);
 	top: 20px;
 	left: 0px;
 }

 .nav-open .hamburger__line--2 {
 	width: 0;
 	left: 50%;
 }

 .nav-open .hamburger__line--3 {
 	transform: rotate(-45deg);
 	top: 20px;
 	left: 0px;
 }

 .nav-open .global-nav li .lang_menu {
 	color: #fff !important;
 	font-size: 0.8rem;
 	padding: 50px 0 0;
 }

 .nav-open .global-nav li .lang_menu a {
 	color: #fff !important;
 	font-size: 0.8rem !important;
 	display: inline-block;
 	text-decoration: underline;
 	cursor: pointer;
 	opacity: 0.4;
 }


 /* =====================

  セクション　共通

===================== */

 .top_vm_box {
 	display: flex;
 	justify-content: start;
 	height: 120px;
 }

 .top_vm_box_st {
 	display: flex;
 	justify-content: start;
 	height: 70px;
 	margin-top: 5px;
 }

 .vmore_btn {
 	font-size: 0.9rem;
 	border: 1px solid #fff;
 	border-radius: 30px;
 	display: block;
 	width: 38%;
 	height: 22px;
 	max-height: 22px;
 	padding: 10px 30px;
 	margin-top: 15px;
 	text-align: left;
 	background: transparent;
 	color: #fff;
 	overflow: hidden;
 	position: relative;
 	z-index: 1;
 }

 .vmore_btn::before {
 	background: #fff;
 	position: absolute;
 	top: 0;
 	left: 0;
 	content: '';
 	width: 100%;
 	height: 100%;
 	transform: scale(0, 1);
 	transform-origin: left top;
 	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
 	z-index: -1;
 }

 .vmore_btn:hover {
 	color: #231815;
 	transition: .2s;
 }

 .vmore_btn:hover::before {
 	transform: scale(1, 1);
 }

 .vmore_btn .icon {
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	position: absolute;
 	top: 12px;
 	right: 14px;
 	margin: auto;
 	background: #fff;
 }

 .vmore_btn .icon.arrow {
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	right: 24px;
 	top: 20px;
 	width: 0.9rem;
 	height: 1px;
 	background: #fff;
 }

 .vmore_btn .icon.arrow::before {
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	position: absolute;
 	content: "";
 	top: -3px;
 	right: -30px;
 	box-sizing: border-box;
 	width: 30px;
 	height: 4px;
 	border: 4px solid transparent;
 	border-left: 4px solid #fff;
 }


 .vmore_btn:hover .icon.arrow {
 	background: #231815;
 	width: 1.2rem;
 	transform: translate(0.7rem, 0rem);
 }

 .vmore_btn:hover .icon.arrow::before {
 	border-left: 5px solid #000;
 }

 /* vm_btn black */

 .vmore_btn_blk {
 	font-size: 0.9rem;
 	border: 1px solid #000;
 	border-radius: 30px;
 	display: block;
 	width: 38%;
 	height: 22px;
 	max-height: 22px;
 	padding: 10px 30px;
 	margin-top: 15px;
 	text-align: left;
 	background: transparent;
 	color: #000;
 	overflow: hidden;
 	position: relative;
 	z-index: 1;
 }

 .vmore_btn_blk::before {
 	background: #8B8267;
 	position: absolute;
 	top: 0;
 	left: 0;
 	content: '';
 	width: 100%;
 	height: 100%;
 	transform: scale(0, 1);
 	transform-origin: left top;
 	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
 	z-index: -1;
 }

 .vmore_btn_blk:hover {
 	color: #fff;
 	border: 1px solid #8B8267;
 	transition: .2s;
 }

 .vmore_btn_blk:hover::before {
 	transform: scale(1, 1);
 }

 .vmore_btn_blk .icon {
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	position: absolute;
 	top: 12px;
 	right: 14px;
 	margin: auto;
 	background: #fff;
 }

 .vmore_btn_blk .icon.arrow {
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	right: 24px;
 	top: 20px;
 	width: 0.9rem;
 	height: 1px;
 	background: #000;
 }

 .vmore_btn_blk .icon.arrow::before {
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	position: absolute;
 	content: "";
 	top: -3px;
 	right: -30px;
 	box-sizing: border-box;
 	width: 30px;
 	height: 4px;
 	border: 4px solid transparent;
 	border-left: 4px solid #000;
 }


 .vmore_btn_blk:hover .icon.arrow {
 	background: #fff;
 	width: 1.2rem;
 	transform: translate(0.7rem, 0rem);
 }

 .vmore_btn_blk:hover .icon.arrow::before {
 	border-left: 5px solid #fff;
 }





 /* =====================

  コンテンツ

===================== */
 /* =====================

  セクション　共通

===================== */

 .top_link_btn_a {
 	border: 1px solid #fff;
 	transform: skewX(-30deg);
 	display: block;
 	width: 100%;
 	padding: 60px;
 	margin-top: 40px;
 	text-align: left;
 	background: transparent;
 	color: #fff;
 	overflow: hidden;
 	position: relative;
 	z-index: 1;
 }

 .top_link_btn_a:nth-child(2) {
 	margin-left: -35%;

 }


 .top_link_btn_a::before {
 	background: #8B8267;
 	position: absolute;
 	top: 0;
 	left: 0;
 	content: '';
 	width: 100%;
 	height: 100%;
 	transform: scale(0, 1);
 	transform-origin: left top;
 	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
 	z-index: -1;
 }

 .top_link_btn_a:hover {
 	color: #8B8267;
 	transition: .2s;
 }

 .top_link_btn_a:hover::before {
 	transform: scale(1, 1);
 }

 .top_link_btn_a span {
 	font-size: 1rem;

 }

 .top_link_btn_a span.txt {
 	display: inline-block;
 	transform: skewX(30deg);
 }

 .top_link_btn_a .icon {
 	transform: skewX(30deg);
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	position: absolute;
 	top: 50%;
 	right: 20px;
 	margin: auto;
 	background: #fff;
 }

 .top_link_btn_a .icon.arrow {
 	transform: skewX(30deg);
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	right: 24px;
 	top: 50%;
 	width: 0.6rem;
 	height: 1px;
 	background: #fff;
 }

 .top_link_btn_a .icon.arrow::before {
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	position: absolute;
 	content: "";
 	top: -2px;
 	right: 0px;
 	width: 4px;
 	height: 4px;
 	border-top: 1px solid #fff;
 	border-right: 1px solid #fff;
 	transform: rotate(45deg);
 }


 .top_link_btn_a:hover .icon.arrow {
 	background: #fff;
 	width: 1.2rem;
 	transform: translate(0.7rem, 0rem) skewX(30deg);
 }

 .top_link_btn_a:hover .icon.arrow::before {
 	border-top: 1px solid #fff;
 	border-right: 1px solid #fff;
 }




 h1 {
 	font-weight: normal;
 }




 /* =====================

  セクション　

===================== */



 /* スプラッシュ */
 .c-modal {
 	background-color: #eeeeee;
 	width: 100%;
 	height: 100vh;
 	z-index: 1000;
 	position: relative;
 }

 .c-modal img {
 	width: 100%;
 }

 .c-modal__text {
 	text-align: center;
 }

 .c-modal__btn {
 	position: absolute;
 	bottom: 5%;
 	left: 55%;
 	padding: 12px 40px;
 	z-index: 1001;
 }

 .c-btn {
 	background-color: #ffffff;
 	border: none;
 	border-radius: 20px;
 	color: #000;
 	display: block;
 	margin: auto;
 	padding: 12px 40px;
 }

 .l-modal {
 	left: 50%;
 	margin: auto;
 	position: fixed;
 	top: 50%;
 	transform: translate(-50%, -50%);
 }

 .sl_wrapper {
 	position: relative;
 	width: 100%;
 	height: 100vh;
 	overflow: hidden;
 }

 .slide_data {
 	position: absolute;
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	background-position: center center;
 	opacity: 0;
 	transition: opacity 1s ease-in-out;
 }

 .slide_data img.topsld {
 	object-fit: cover;
 	height: 100vh;
 	width: 100%;
 }

 .slide_data.active {
 	opacity: 1;
 }

 .top_splush_06 {
 	position: absolute;
 	background-image: url(/history/img/top_bg_s1.png);
 	background-size: cover;
 	background-position: center center;
 	background-repeat: no-repeat;
 	width: 100%;
 	height: 100%;
 	opacity: 0;
 	transition: opacity 1s ease-in-out;
 	object-fit: unset;
 }

 .top_splush_06.active {
 	opacity: 1;
 }

 .top_splush_06txt_a {
 	position: absolute;
 	top: 0;
 	right: 0;
 	bottom: 0;
 	left: 0;
 	margin: auto;
 	width: 86% !important;
 	height: auto;
 }

 .top_splush_06txt_b {
 	position: absolute;
 	bottom: 20%;
 	right: 0;
 	left: 0;
 	margin: 0 auto;
 	width: 70% !important;
 	height: auto;
 }


 /* TOP */

 .fullPageScroll {
 	width: 100%;
 	height: 100vh;
 	scroll-snap-type: none;
 	overflow-y: scroll;
 	scroll-behavior: smooth;
 }

 .section {
 	width: 100%;
 	height: auto;
 	scroll-snap-align: start;
 	padding-bottom: 0px;
 }

 .footer_section {
 	width: 100%;
 	height: 33vh;
 	scroll-snap-align: end;
 }

 .section_wrapper {
 	position: relative;
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	align-items: center;
 	width: 100%;
 	height: auto;
 	z-index: 10;
 	padding-bottom: 0px;
 }

 #section1 {
 	position: relative;
 }

 #section1_wrap {
 	height: 100vh;
 }



 #section1::before {
 	position: absolute;
 	top: 0;
 	left: 0;
 	content: '';
 	width: 100%;
 	height: 100vh;
 	background-image: url(/history/img/top_bg_s1.jpg);
 	background-size: cover;
 	background-position: center center;
 	background-repeat: no-repeat;
 }

 #section1 h1 {
 	width: 90%;
 }

 #section1 h1 img {
 	width: 100%;
 }


 .scrolldown {
 	position: absolute;
 	width: 100px;
 	height: 120px;
 	overflow: hidden;
 	bottom: 0px;
 }

 @keyframes loop_animation_right {
 	0% {
 		transform: translateY(0);
 	}

 	100% {
 		transform: translateY(30%);
 	}

 	0% {
 		transform: translateY(0);
 	}
 }

 .scrolldown img {
 	animation: loop_animation_right 2s linear infinite;
 	width: 100%;
 }

 #section2 {
 	background-color: #fff;
 	background-image: url(/history/img/top_s2_bg_tile.png);
 	background-size: auto;
 	background-repeat: repeat;
 	position: relative;
 	color: #fff;
 }

 #section2_wrap {
  background-image: url('/history/img/top_bgsp_s2_c.png'); /* 初期画像 */
 	background-size: contain;
 	background-position: center bottom;
 	background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
 	display: flex;
 	justify-content: center;
 	align-items: center;
 	padding: 20px 0 50px;
 }


 /* 2 枚目の画像（::before） */
#section2_wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/history/img/top_bgsp_s2_a.png');
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
	opacity: 0; /* 初期状態では透明 */
	transition: opacity 2s ease-in-out;

}

 /* 3 枚目の画像（::after） */
 #section2_wrap::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/history/img/top_bgsp_s2_b.png');
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
	opacity: 0; /* 初期状態では透明 */
	transition: opacity 2s ease-in-out;

}


/* フェードアニメーション */
#section2_wrap.active1::before {
	opacity: 1;
}

#section2_wrap.active2::after {
	opacity: 1;
}


 #section2 #top_box_s2 {
 	padding-top: 14%;
 	padding-left: 0%;
 	padding-bottom: 60%;
 	width: 90%;
 	max-width: 470px;
 	background-image: url(/history/img/top_s2_head_bg.svg);
 	background-repeat: no-repeat;
 	background-size: 40%;
 	background-position: right 6%;
 	margin-top: -3%;
 	opacity: 1;
 }

 #section2 #top_box_s2 h1 {
 	margin-bottom: 1.1rem;
 	font-size: 2rem;
 	font-weight: normal;
 	width: 100%;
 	color: #ffffff;
 }

 #section2 #top_box_s2 p {
 	line-height: 1.6;
 	font-size: 0.95rem;

 }

 #section3 {
 	background-color: #fff;
 	background-image: url(/history/img/top_bg_s3.svg);
 	background-size: cover;
 	background-position: center center;
 	/*/*overflow-x: visible;*/
 }



 #section3 #top_box_s3 {
 	padding-top: 18%;
 	padding-left: 0%;
 	margin-right: 0;
 	width: 90%;
 	max-width: 470px;
 	background-image: url(/history/img/top_s3_head_bg.svg);
 	background-repeat: no-repeat;
 	background-size: 65%;
 	background-position: right 44px;
 	margin-top: 0%;
 	opacity: 1;
 	order: 1;
 }

 #section3 #top_box_s3 h1 {
 	margin-bottom: 1rem;
 	font-size: 2rem;
 	font-weight: normal;
 	width: 100%;
 	color: #000;
 }

 #section3 #top_box_s3 p {
 	width: 100%;
 	line-height: 1.6;
 	font-size: 0.95rem;
 }

 #section3 #top_box_s3_slide {
 	width: 100%;
 	max-width: 470px;
 	margin-right: 0;
 	overflow: hidden;
 	/*margin-left: -20px;*/
 	position: relative;
 	padding: 20px 0 20px;
 	order: 2;
 }

 #section3 #top_box_s3_slide .swiper {
 	overflow: visible;
 	margin-left: 0;
 }



 #section3 #top_box_s3_slide .s_slider {
 	position: relative;
 	/* ボタンがabsoluteなので、位置の基準値を設定する */
 }

 .s_slider .swiper-button-next::after {
 	content: '→';
 	/* ボタンの矢印変更 */
 	color: #fff;
 	font-size: 1.5rem;
 }

 .s_slider .swiper-button-prev::after {
 	content: '←';
 	/* ボタンの矢印変更 */
 	color: #fff;
 	font-size: 1.5rem;
 }

 #section3 #top_box_s3_slide .swiper-wrapper .swiper-slide {
 	width: 70%;
 	height: 90%;
 	margin: 0;
 	display: inline-block;
 	background: #FDAB75;
 	transform: skewX(-30deg);
 	overflow: hidden;
 	position: relative;
 	margin-bottom: 20px;
 }

 #section3 #top_box_s3_slide .swiper-wrapper .swiper-slide img {
 	width: 100%;
 	transform: skewX(30deg) scale(2.6);
 }

 #section3 #top_box_s3_slide .swiper-wrapper .swiper-slide .sl_txt {
 	position: absolute;
 	bottom: 0px;
 	left: -40px;
 	height: 60px;
 	width: 100%;
 	padding: 6px 16px;
 	text-align: left;
 }

 #section3 #top_box_s3_slide .swiper-wrapper .swiper-slide .sl_txt img {
 	height: 30px;
 }

 #section3 #top_box_s3_slide .swiper-wrapper .swiper-slide .s3_mini_btn {
 	position: absolute;
 	bottom: 20px;
 	right: 30px;
 	width: 50px;
 	height: 50px;
 	border-radius: 30px;
 	border: 1px #fff solid;
 	transform: skewX(30deg);
 	display: block;
 	background-color: #827a6100;
 }

 #section3 #top_box_s3_slide .swiper-wrapper .swiper-slide .s3_mini_btn:hover {
 	background-color: #827a61;
 	bottom: 18px;
 	right: 28px;
 	width: 54px;
 	height: 54px;
 	border: 1px #827a61 solid;
 	transition: all 1s ease;
 }

 #section3 #top_box_s3_slide .swiper-wrapper .swiper-slide .arrow {
 	display: inline-block;
 	vertical-align: middle;
 	text-decoration: none;
 }

 #section3 #top_box_s3_slide .swiper-wrapper .swiper-slide .arrow::before,
 #section3 #top_box_s3_slide .swiper-wrapper .swiper-slide .arrow::after {
 	position: absolute;
 	top: 0;
 	bottom: 0;
 	left: 0;
 	margin: auto;
 	content: "";
 	vertical-align: middle;
 }

 #section3 #top_box_s3_slide .swiper-wrapper .swiper-slide .s3_mini_btn::before {
 	left: 32px;
 	box-sizing: border-box;
 	width: 30px;
 	height: 6px;
 	border: 6px solid transparent;
 	border-left: 6px solid #fff;
 }

 #section3 #top_box_s3_slide .swiper-wrapper .swiper-slide .s3_mini_btn::after {
 	left: 12px;
 	width: 8px;
 	height: 1px;
 	border-left: 20px solid #fff;
 }

 #top_box_s3_slide .swiper-button-prev {
 	bottom: unset;
 	top: 22px;
 	left: 35px;
 	color: #fff;
 	width: 50px;
 	padding: 10px;
 	background-color: #000;
 	transform: skewX(-30deg);
 }

 #top_box_s3_slide .swiper-button-prev::after {
 	content: '←';
 	color: #fff;
 	font-size: 1rem;
 	transform: skewX(30deg);
 }

 #top_box_s3_slide .swiper-button-next {
 	bottom: 20px;
 	top: unset;
 	left: unset;
 	right: 35px;
 	color: #fff;
 	width: 50px;
 	padding: 10px;
 	background-color: #000;
 	transform: skewX(-30deg);
 }

 #top_box_s3_slide .swiper-button-next::after {
 	content: '→';
 	color: #fff;
 	font-size: 1rem;
 	transform: skewX(30deg);
 }

 .swiper-slide-prev,
 .swiper-slide-next {
 	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
 	opacity: 0;
 }

 #section4 {
 	background-color: #fff;
 	background-image: url(/history/img/top_bg_s4.jpg);
 	background-size: cover;
 	background-position: center center;
 	display: flex;
 	flex-direction: column;
 	justify-content: left;
 	align-items: center;
 	/*overflow-x: visible;*/
 }

 #section4_wrap {
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	align-items: center;
 	padding: 0 0 180px;
 }

 #section4 #top_box_s4 {
 	padding-top: 18%;
 	width: 90%;
 	max-width: 470px;
 	background-image: url(/history/img/top_s4_head_bg.svg);
 	background-repeat: no-repeat;
 	background-size: 80%;
 	background-position: right 45px;
 	margin-top: 0%;
 	opacity: 1;
 }

 #section4 #top_box_s4 h1 {
 	margin-bottom: 1rem;
 	font-size: 2rem;
 	font-weight: normal;
 	width: 100%;
 	color: #fff;
 }

 #section4 #top_box_s4 p {
 	width: 100%;
 	line-height: 2;
 	font-size: 0.95rem;
 	color: #fff;
 }

 #section4 .top_box_s4_r {
 	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
 	width: 68%;
 	max-width: 270px;
 }


 .top_link_btn_a {
 	border: 1px solid #fff;
 	transform: skewX(-30deg);
 	display: block;
 	width: 88%;
 	padding: 30px 20px;
 	margin-top: 30px;
 	text-align: left;
 	background: transparent;
 	color: #fff;
 	overflow: hidden;
 	position: relative;
 	z-index: 1;
 }

 .top_link_btn_a:nth-child(2) {
 	margin-left: 0px;

 }


 .top_link_btn_a::before {
 	background: #8B8267;
 	position: absolute;
 	top: 0;
 	left: 0;
 	content: '';
 	width: 100%;
 	height: 100%;
 	transform: scale(0, 1);
 	transform-origin: left top;
 	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
 	z-index: -1;
 }

 .top_link_btn_a:hover {
 	color: #8B8267;
 	transition: .2s;
 }

 .top_link_btn_a:hover::before {
 	transform: scale(1, 1);
 }

 .top_link_btn_a span {
 	font-size: 1.2rem;

 }

 .top_link_btn_a span.txt {
 	display: inline-block;
 	transform: skewX(30deg);
 }

 .top_link_btn_a .icon {
 	transform: skewX(30deg);
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	position: absolute;
 	top: 50%;
 	right: 20px;
 	margin: auto;
 	background: #fff;
 }

 .top_link_btn_a .icon.arrow {
 	transform: skewX(30deg);
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	right: 24px;
 	top: 50%;
 	width: 0.6rem;
 	height: 1px;
 	background: #fff;
 }

 .top_link_btn_a .icon.arrow::before {
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	position: absolute;
 	content: "";
 	top: -3px;
 	right: -30px;
 	box-sizing: border-box;
 	width: 30px;
 	height: 4px;
 	border: 4px solid transparent;
 	border-left: 4px solid #fff;
 	transform: none;
 }


 .top_link_btn_a:hover .icon.arrow {
 	background: #fff;
 	width: 1.2rem;
 	transform: translate(0.7rem, 0rem) skewX(30deg);
 }

 .top_link_btn_a:hover .icon.arrow::before {
 	border-top: 1px solid #fff;
 	border-right: 1px solid #fff;
 }


 #section4 .s4_modal {}

 #section4 .s4_modal button {
 	position: absolute;
 	bottom: 10vh;
 	left: 8vw;
 	color: #fff;
 	font-size: 1.0rem;
 }

 #section4 .s4_modal button a {
 	color: #fff;
 	cursor: pointer;
 }


 #section4 .s4_modal .modal-open {
 	background: none;
 	width: auto;
 	height: auto;
 	border: none;
 	border-radius: 0;
 	cursor: auto;
 	transition: none;
 }

 #section4 .s4_modal .modal-open:hover {
 	transform: scale(1);
 }

 .link_btn_s {
 	position: relative;
 }

 .link_btn_s span {
 	width: 20px;
 	height: 20px;
 	border-radius: 30px;
 	border: 1px #fff solid;
 	display: block;
 	background-color: #827a6100;
 	position: absolute;
 	bottom: 2px;
 	right: -24px;
 }

 a:hover .link_btn_s span {
 	background-color: #827a61;
 	width: 22px;
 	height: 22px;
 	border: 1px #827a61 solid;
 	transition: all .2s ease;
 	bottom: 1px;
 	right: -25px;
 }

 .link_btn_s span.arrow {
 	display: inline-block;
 	vertical-align: middle;
 	text-decoration: none;
 }

 .link_btn_s span.arrow::before,
 .link_btn_s span.arrow::after {
 	position: absolute;
 	top: 0;
 	bottom: 0;
 	left: 0;
 	margin: auto;
 	content: "";
 	vertical-align: middle;
 }

 .link_btn_s span::before {

 	box-sizing: border-box;
 	width: 8px;
 	height: 6px;
 	border: 3px solid transparent;
 	border-left: 3px solid #fff;
 	right: -12px;
 	transition: all .2s ease;
 }

 .link_btn_s span::after {
 	left: 12px;
 	width: 4px;
 	height: 1px;
 	border-left: 10px solid #fff;
 	right: -4px;
 	transition: all .2s ease;
 }

 a:hover .link_btn_s span::after {
 	right: -2px;
 }

 a:hover .link_btn_s span::before {
 	right: -14px;
 }



 #section5 {
 	background-color: #fff;
 	background-image: url(/history/img/top_bg_s3.svg);
 	background-size: cover;
 	background-position: center center;
 	display: flex;
 	flex-direction: column;
 	justify-content: left;
 	align-items: center;
 	/*overflow-x: visible;*/
   position: relative;
   z-index: 3;
 }

 #section5_wrap {
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	align-items: center;
 	padding: 0 0 60px;
 }

 #section5 #top_box_s5 {
 	padding-top: 16%;
 	padding-left: 0%;
 	width: 90%;
 	max-width: 470px;
 	background-image: url(/history/img/top_s5_head_bg.svg);
 	background-repeat: no-repeat;
 	background-size: 80%;
 	background-position: right 44px;
 	opacity: 1;
 }

 #section5 #top_box_s5 h1 {
 	margin-bottom: 1rem;
 	font-size: 2rem;
 	font-weight: normal;
 	width: 100%;
 	color: #000;
 }

 #section5 #top_box_s5 p {
 	width: 90%;
 	line-height: 2;
 	font-size: 0.95rem;
 }

 #section5 #top_box_s5_mat {
 	width: 90%;
 	overflow: visible;
 	display: flex;
 	flex-direction: row;
 	flex-wrap: wrap;
 	justify-content: center;
 	padding: 30px 0 0;
 	margin-left: 0%;
 	transform: skewX(0deg);
 }

 #section5 #top_box_s5_mat .mat_btns {
 	width: 40%;
 	height: 15vh;
 	max-width: 190px;
 	max-height: 160px;
 	min-height: 120px;
 	background-color: #000;
 	margin: 4px 0.4vw;
 	overflow: hidden;
 	transform: skewX(-30deg);
 }

 #section5 #top_box_s5_mat .mat_btns div {
 	position: relative;
 	height: 100%;
 }


 #section5 #top_box_s5_mat .mat_btns p {
 	position: absolute;
 	bottom: 10px;
 	left: 20px;
 	color: #fff;
 	transform: skewX(30deg);
 }


 #section5 #top_box_s5_mat .mat_btns .icon {
 	transform: skewX(30deg);
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	position: absolute;
 	top: 50%;
 	right: 20px;
 	margin: auto;
 	background: #fff;
 }

 #section5 #top_box_s5_mat .mat_btns .icon.arrow {
 	transform: skewX(30deg);
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	right: 24px;
 	top: unset;
 	bottom: 17px;
 	width: 0.6rem;
 	height: 1px;
 	background: #fff;
 }

 #section5 #top_box_s5_mat .mat_btns .icon.arrow::before {
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	position: absolute;
 	content: "";
 	top: -2px;
 	right: 0px;
 	width: 4px;
 	height: 4px;
 	border-top: 1px solid #fff;
 	border-right: 1px solid #fff;
 	transform: rotate(45deg);
 }


 #section5 #top_box_s5_mat .mat_btns:hover .icon.arrow {
 	background: #fff;
 	width: 1.2rem;
 	transform: translate(0.7rem, 0rem) skewX(30deg);
 }

 #section5 #top_box_s5_mat .mat_btns:hover .icon.arrow::before {
 	border-top: 1px solid #fff;
 	border-right: 1px solid #fff;
 }

 #section5 #top_box_s5_mat .mat_btns .icon_olink {
 	position: absolute;
 	top: 83%;
 	right: -12px;
 	display: block;
 	width: 12px;
 	height: 12px;
 	z-index: 3;
 }

 #section5 #top_box_s5_mat .mat_btns .icon_olink img {
 	width: 100%;
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 }

 #section5 #top_box_s5_mat .mat_btns:hover .icon_olink img {
 	transform: scale(1.2) skewX(30deg);
 }

 #section5 #top_box_s5_mat .s5_btn_a img {
 	transform: skewX(30deg);
 	position: absolute;
 	top: -20px;
 	left: -70px;
 	width: 180%;
 	height: auto;
 }

 #section5 #top_box_s5_mat .s5_btn_b img {
 	transform: skewX(30deg);
 	position: absolute;
 	top: -15px;
 	left: -60px;
 	width: 170%;
 	height: auto;
 }

 #section5 #top_box_s5_mat .s5_btn_c img {
 	transform: skewX(30deg);
 	position: absolute;
 	top: -15px;
 	left: -30px;
 	width: 200%;
 	height: auto;
 }

 #section5 #top_box_s5_mat .s5_btn_d img {
 	transform: skewX(30deg);
 	position: absolute;
 	top: -20px;
 	left: -50px;
 	width: 160%;
 	height: auto;
 }

 #section5 #top_box_s5_mat .s5_btn_e img {
 	transform: skewX(30deg);
 	position: absolute;
 	top: -5px;
 	left: -30px;
 	width: 160%;
 	height: auto;
 }

 #section5 #top_box_s5_mat .s5_btn_f img {
 	transform: skewX(30deg);
 	position: absolute;
 	top: 0;
 	left: -30px;
 	width: 160%;
 	height: auto;
 }

 #section5 #top_box_s5_mat .s5_btn_g img {
 	transform: skewX(30deg);
 	position: absolute;
 	top: 0;
 	left: -30px;
 	width: 145%;
 	height: auto;
 }

 #section5 #top_box_s5_mat .s5_btn_h img {
 	transform: skewX(30deg);
 	position: absolute;
 	top: 0;
 	left: -40px;
 	width: 180%;
 	height: auto;
 }

 #section5 #top_box_s5_mat .s5_btn_i img {
 	transform: skewX(30deg);
 	position: absolute;
 	top: -16px;
 	left: -30px;
 	width: 160%;
 	height: auto;
 }

 #section6 {
 	background-color: #fff;
 	background-image: url(/history/img/top_s6_bg_sp.jpg);
 	background-size: cover;
 	background-position: right;
 	display: flex;
 	flex-direction: column;
 	justify-content: left;
 	align-items: center;
 	/*overflow-x: visible;*/
 }

 #section6 #top_box_s6 {
 	padding-top: 19%;
 	padding-left: 0%;
 	width: 90%;
 	max-width: 470px;
 	background-image: url(/history/img/top_s6_head_bg.svg);
 	background-repeat: no-repeat;
 	background-size: 60%;
 	background-position: right 40px;
 	opacity: 1;
 }

 #section6 #top_box_s6 h1 {
 	margin-bottom: 1rem;
 	font-size: 2rem;
 	font-weight: normal;
 	width: 100%;
 	color: #fff;
 }

 #section6 #top_box_s6 p {
 	width: 100%;
 	line-height: 2;
 	font-size: 0.95rem;
 	color: #fff;
 }

 #section6 #top_s6_mov_btn {
 	width: 100%;
 	text-align: center;
 	padding: 60px 0;
 }

 #section6 #top_s6_mov_btn img {
 	width: 260px;
 	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
 }

 #section6 #top_s6_mov_btn:hover img {
 	width: 280px;
 	height: auto;
 }

 /* モーダルを開くボタン */
 .modal-open {
 	cursor: pointer;
 	background-color: transparent;
 	border: none;
 	width: 280px;
 	height: 280px;
 	border-radius: 200px;
 	background-color: #ffffff36;
 	background-image: url(/history/img/mov_btn_txt.svg);
 	background-repeat: no-repeat;
 	background-position: center center;
 	background-size: 70px;
 	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
 }

 .modal-open:hover {
 	background-color: #ffffff88;
 	transform: scale(1.1, 1.1);
 }

 /* モーダルと背景の指定 */
 .modal {
 	position: fixed;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100vh;
 	text-align: center;
 	background: rgba(0, 0, 0, 70%);
 	overflow: hidden;
 	opacity: 0;
 	visibility: hidden;
 	transition: .3s;
 	box-sizing: border-box;
 }

 /* モーダルの擬似要素の指定 */
 .modal:before {
 	content: "";
 	display: inline-block;
 	vertical-align: middle;
 	height: 100%;
 	margin-left: -0.2em;
 }

 /* クラスが追加された時の指定 */
 .modal.is-active {
 	opacity: 1;
 	visibility: visible;
 	z-index: 12;
 }

 /* モーダル内側の指定 */
 .modal-container {
 	position: relative;
 	display: inline-block;
 	vertical-align: middle;
 	max-width: 600px;
 	width: 90%;
 }

 /* モーダルを閉じるボタンの指定 */
 .modal-close {
 	position: absolute;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	top: -20px;
 	right: -20px;
 	width: 40px;
 	height: 40px;
 	color: #fff;
 	background: #000;
 	border-radius: 50%;
 	cursor: pointer;
 }

 #modal-set .modal-close img {
 	width: 50% !important;
 	min-width: auto !important;
 }


 /* モーダルのコンテンツ部分の指定 */
 .modal-content {
 	background: #fff;
 	text-align: left;
 	line-height: 1.8;
 	width: 100%;
 	padding: 20px;
 }

 /* モーダルのコンテンツ部分のテキストの指定 */
 #section6 .modal-content p iframe {
 	width: 100% !important;
 	max-width: 100% !important;
 	height: auto;
 	aspect-ratio: 16 / 9;
 }


 #section7 {
 	background-color: #fff;
 	background-image: url(/history/img/top_bg_s7.jpg);
 	background-size: cover;
 	background-position: -250px center;
 	display: flex;
 	flex-direction: column;
 	justify-content: left;
 	align-items: center;
 }

 #section7_wrap {
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	align-items: center;
 	padding: 0 0 100px;
 }

 #section7 #top_box_s7_btn {
 	order: 2;
 	padding-left: 0%;
 	padding-top: 60px;
 	width: 82%;
 }


 .top_link_btn_b {
 	border: 1px solid #707070;
 	transform: skewX(-30deg);
 	display: block;
 	width: 70%;
 	max-width: 300px;
 	padding: 20px 30px;
 	margin: 0 auto 18px;
 	text-align: left;
 	background: transparent;
 	color: #707070;
 	overflow: hidden;
 	position: relative;
 	z-index: 1;
 }


 .top_link_btn_b::before {
 	background: #8B8267;
 	position: absolute;
 	top: 0;
 	left: 0;
 	content: '';
 	width: 100%;
 	height: 100%;
 	transform: scale(0, 1);
 	transform-origin: left top;
 	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
 	z-index: -1;
 }

 .top_link_btn_b:hover {
 	color: #fff;
 	transition: .2s;
 }

 .top_link_btn_b:hover::before {
 	transform: scale(1, 1);
 }

 .top_link_btn_b span {
 	font-size: 1.2rem;

 }

 .top_link_btn_b span.txt {
 	display: inline-block;
 	transform: skewX(30deg);
 }

 .top_link_btn_b .icon {
 	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 	position: absolute;
 	top: 40%;
 	right: 20px;
 	width: auto;
 	height: auto;

 	padding: 4px 10px;
 	color: #fff;
 	margin: auto;
 	background: #960000;
 }

 .top_link_btn_b .icon .txt {
 	transform: skewX(30deg);
 	font-size: 0.7rem;
 }

 #section7 #top_box_s7 {
 	order: 1;
 	margin-top: 18px;
 	padding-top: 18%;
 	padding-left: 0%;
 	margin-right: 0%;
 	width: 90%;
 	max-width: 470px;
 	background-image: url(/history/img/top_s7_head_bg.svg);
 	background-repeat: no-repeat;
 	background-size: 80%;
 	background-position: right 40px;
 	opacity: 1;

 }

 #section7 #top_box_s7 h1 {
 	margin-bottom: 1rem;
 	font-size: 2rem;
 	font-weight: normal;
 	width: 100%;
 	color: #000;
 }

 #section7 #top_box_s7 p {
 	width: 100%;
 	line-height: 2;
 	font-size: 0.95rem;
 }

 #section8 {
 	height: auto;
 	/* 高さを自動にする */
 	min-height: 500px;
 	/* 必要であれば最小の高さを設定 */
 }



 #fp-nav {
 	position: fixed;
 	z-index: 10;
 	margin-top: unset !important;
 	opacity: 1;
 	right: 0px !important;
 	top: unset !important;
 }

 .pagination {
 	position: fixed;
 	bottom: 0px;
 	right: 0px;
 	display: flex;
 	flex-direction: column;
 	justify-content: end;
 	align-items: flex-end;
 	aspect-ratio: 1/cos(30deg);
 	clip-path: polygon(0 100%, 100% 0, 100% 100%);
 	background-color: #524930b5;
 	height: 607px;
 	width: 350px;
 	padding: 0 48px 51px 0;
 	transition: opacity 0.5s ease, visibility 0.5s ease;
 	opacity: 0;
 	visibility: hidden;
 	z-index: 10;
 }

 .pagination.hidden {
 	opacity: 0;
 	visibility: hidden;
 }

 .pagination a {
 	color: #ffffff83;
 	font-size: 1.78rem;
 	font-weight: normal;
 	line-height: 1.1;
 	display: inline-block;
 }

 .pagination li.active {
 	color: #fff;
 }

 .menu_foot,
 .menu_top {
 	display: none;
 }


 /*-------------

下階層

----------------*/


 /*

下階層共通

*/

 #snd_sitewrap {
 	background-image: url(/history/img/under_comm_bg.jpg);
 	background-repeat: repeat;
 }

 .content_wrap {
 	width: 100%;
 	max-width: 1110px;
 	margin: 40px auto 100px;
 }

 .snd_read {
 	font-size: 0.9rem;
 	text-align: center;
 	margin: -20px 0 40px;
 	padding: 0 18px;
 	text-align: justify;
 }

 #page_nav {
 	position: fixed;
 	top: unset;
 	bottom: 50px;
 	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
 	right: 10px;
 	width: 90%;
 	height: 280px;
 	cursor: pointer;
 	opacity: 0;
 	visibility: hidden;
 	transition: all 1s ease;
 	z-index: 40;
 }

 #page_nav ul {
 	position: absolute;
 	opacity: 1;
 	right: -140px;
 	top: 0px;
 	transition: all 1s ease;
 }


 #page_nav li {
 	margin-bottom: 4px;
 }

 #page_nav a {
 	display: block;
 	text-align: center;
 	background-color: #B9B299;
 	border-radius: 3px;
 	color: #fff;
 	min-width: 70px;
 	padding: 8px;
 	transition: all 1s ease;
 }

 #page_nav a:hover,
 #page_nav a.active {
 	background-color: #524930;
 }

 #page_nav a:hover {
 	background-color: #524930;
 }

 #page_nav a p {
 	padding: 0px 8px;
 }

 #page_nav a p.read {
 	font-size: 0.9rem;
 	display: none;
 }

 #page_nav a p.year {
 	font-size: 0.6rem;
 }


 #page_nav #cp_toggle01 {
 	position: absolute;
 	display: none;
 	opacity: 0;
 }

 #page_nav #cp_toggle01:checked~ul {
 	right: 0px;
 }

 /* menu toggle */
 #page_nav #cp_toggle01~label {
 	position: absolute;
 	bottom: -40px;
 	right: 0;
 	background-color: #000;
 	display: block;
 	cursor: pointer;
 	text-align: center;
 	color: #fff;
 	border-radius: 3px;
 	padding: 6px 22px 6px 36px;
 	transition: all 1s ease;
 	opacity: 1;
 	background-image: url(/history/img/snd/page_nav_spbtn.svg);
 	background-repeat: no-repeat;
 	background-size: 15px;
 	background-position: 10px 11px;
 }

 #page_nav #cp_toggle01:checked~label {
 	opacity: 0.7;
 }

 #page_nav.active {
 	opacity: 1;
 	visibility: visible;
 }

 .business #page_nav ul {
 	position: absolute;
 	opacity: 1;
 	right: -155px;
 	top: -120px;
 	transition: all 1s ease;
 }

 .business #page_nav a {
 	padding: 8px 4px;
 }

 .business #page_nav ul li p.ms_ande {
 	font-size: 0.5rem;
 }

 .genealogy #page_nav ul {
 	position: absolute;
 	opacity: 1;
 	right: -140px;
 	top: -66px;
 	transition: all 1s ease;
 }

 .genealogy #page_nav #cp_toggle01~label {
 	bottom: 10px;
 }

 /*  pagetop btn  */

 #pagetop_btn {
 	transition: all .4s ease;
 	position: absolute;
 	bottom: 330px;
 	right: 40px;
 }

 #pagetop_btn a {
 	width: 50px;
 	height: 50px;
 	border-radius: 30px;
 	border: 1px #827a61 solid;
 	display: block;
 	background-color: #827a6100;
 	position: absolute;
 	bottom: 230px;
 	right: auto;
 }

 #pagetop_btn a:hover {
 	background-color: #827a61;
 	width: 54px;
 	height: 54px;
 	border: 1px #827a61 solid;
 	transition: all .4s ease;
 }

 #pagetop_btn a.arrow {
 	display: inline-block;
 	vertical-align: middle;
 	text-decoration: none;
 }

 #pagetop_btn a.arrow::before,
 #pagetop_btn a.arrow::after {
 	position: absolute;
 	top: 0;
 	bottom: 0;
 	left: 0;
 	margin: auto;
 	content: "";
 	vertical-align: middle;
 }

 #pagetop_btn a::before {
 	box-sizing: border-box;
 	width: 6px;
 	height: 6px;
 	border: 6px solid transparent;
 	border-bottom: 6px solid #827a61;
 	right: 0px;
 	top: -20px !important;
 	transition: all .4s ease;
 }

 #pagetop_btn a::after {
 	width: 1px;
 	height: 1px;
 	border-top: 20px solid #827a61;
 	right: 0px;
 	transition: all .4s ease;
 }

 #pagetop_btn a:hover::before {
 	top: -30px !important;
 	border-bottom: 6px solid #fff;
 }

 #pagetop_btn a:hover::after {
 	border-top: 25px solid #fff;
 }

 .backtop_box {
 	text-align: right;
 	padding: 6px 0;
 	width: 90%;
 	margin: 0 auto;
 }

 .backtop_box a.backtop_btn {
 	background-image: url(/history/img/snd/goback_arr.svg);
 	background-repeat: no-repeat;
 	background-size: 13px;
 	background-position: 0px 2px;
 	padding-left: 20px;
 	font-size: 1rem;
 	color: #524930;
 }

 .backtop_box a.backtop_btn:hover {
 	font-weight: 700;
 }

 #head_box {
 	background-size: cover;
 	background-position: center center;
 	width: 100%;
 	height: auto;
 	display: flex;
 	justify-content: center;
 	align-items: center;
 }

 #section_head {
 	background-repeat: no-repeat;
 	background-size: 100%;
 	color: #fff;
 	text-align: center;
 	font-size: 2.1rem;
 }

 .sndcotents #sub_ttl {
 	background-size: cover;
 	background-repeat: no-repeat;
 	width: 90%;
 	height: 100px;
 	margin: 0 auto;
 	position: relative;
 }

 .sndcotents #sub_ttl::after {
 	position: absolute;
 	top: unset;
 	bottom: 0px;
 	right: 0px;
 	width: 58px;
 	height: 100%;
 	margin: auto;
 	content: url(/history/img/snd/sub_ttl_tri_b.svg);
 }

 .sndcotents #sub_ttl .ttl_txt {
 	position: relative;
 	background-color: #8B8267;
 	display: inline-block;
 	width: auto;
 	height: 100%;
 	padding: 10px 10px 0;
 	color: #fff;
 }

 .sndcotents #sub_ttl .ttl_txt::before {
 	position: absolute;
 	top: 0px;
 	bottom: unset;
 	left: unset;
 	right: -58px;
 	width: 58px;
 	height: 100%;
 	margin: auto;
 	content: url(/history/img/snd/sub_ttl_tri_a.svg);
 }

 .sndcotents #sub_ttl .ttl_txt h2 {
 	font-weight: 100;
 	font-size: 1.6rem;
 }

 .sndcotents #sub_ttl .ttl_txt .year {
 	font-size: 0.7rem;
 }

 .sndcotents #sub_ttl .ttl_txt .wareki {
 	font-size: 0.55rem;
 }





 /*

歴史を読む
body.history 

*/

 .history #head_box {
 	background-image: url(/history/img/timeline/head_bg.jpg);
 	background-size: cover;
 	background-position: center center;
 	width: 100%;
 	height: auto;
 	min-height: 220px;
 	display: flex;
 	justify-content: center;
 	align-items: center;
 }

 #section_head {
 	background-image: url(/history/img/timeline/head_txtbg.svg);
 	background-repeat: no-repeat;
 	background-size: 80%;
 	background-position: center;
 	color: #fff;
 	width: 90%;
 	height: auto;
 	text-align: center;
 	padding: 10vh 0 0;
 	font-size: 2.1rem;
 }

 .history .sndcotents .tl01_ttl {
 	background-image: url(/history/img/timeline/sub-title_sp-tl01.jpg);
	background-position: center center;
 }

 .history .sndcotents .tl02_ttl {
 	background-image: url(/history/img/timeline/sub-title_sp-tl02.jpg);
	 background-position: center center;
 }

 .history .sndcotents .tl03_ttl {
 	background-image: url(/history/img/timeline/sub-title_sp-tl03.jpg);
	 background-position: center center;
 }

 .history .sndcotents .tl04_ttl {
 	background-image: url(/history/img/timeline/sub-title_sp-tl04.jpg);
	 background-position: center center;
 }

 .history .sndcotents .tl05_ttl {
 	background-image: url(/history/img/timeline/sub-title_sp-tl05.jpg);
	 background-position: center center;
 }

 .history .sndcotents .tl06_ttl {
 	background-image: url(/history/img/timeline/sub-title_sp-tl06.jpg);
	 background-position: center center;
 }

 .history .sndcotents .tl07_ttl {
 	background-image: url(/history/img/timeline/sub-title_sp-tl07.jpg);
	 background-position: center center;
 }

 .history .sndcotents .tl08_ttl {
 	background-image: url(/history/img/timeline/sub-title_sp-tl08.jpg);
	 background-position: center center;
 }





 ul#his_toplist {
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	flex-wrap: wrap;
 }

 ul#his_toplist li {
 	width: 90%;
 	height: auto;
 	margin: 0 auto 10px;
 }

 ul#his_toplist li a {
 	width: auto;
 	max-width: 545px;
 	height: auto;
 	max-height: 245px;
 	aspect-ratio: 9 / 3.4;
 	background-size: 100%;
 	background-repeat: no-repeat;
 	padding: 20px;
 	display: flex;
 	flex-direction: row;
 	justify-content: space-between;
 	color: #fff;
 	margin-bottom: unset;
 	margin-right: unset;

 }

 ul#his_toplist li:last-child {
 	margin-bottom: 60px;
 }

 .history ul#his_toplist li.his_btn_a a {
 	background-image: url(/history/img/timeline/his_t_btn_bg_a.jpg);
 }

 .history ul#his_toplist li.his_btn_b a {
 	background-image: url(/history/img/timeline/his_t_btn_bg_b.jpg);
 }

 .history ul#his_toplist li.his_btn_c a {
 	background-image: url(/history/img/timeline/his_t_btn_bg_c.jpg);
 }

 .history ul#his_toplist li.his_btn_d a {
 	background-image: url(/history/img/timeline/his_t_btn_bg_d.jpg);
 }

 .history ul#his_toplist li.his_btn_e a {
 	background-image: url(/history/img/timeline/his_t_btn_bg_e.jpg);
 }

 .history ul#his_toplist li.his_btn_f a {
 	background-image: url(/history/img/timeline/his_t_btn_bg_f.jpg);
 }

 .history ul#his_toplist li.his_btn_g a {
 	background-image: url(/history/img/timeline/his_t_btn_bg_g.jpg);
 }

 .history ul#his_toplist li.his_btn_h a {
 	background-image: url(/history/img/timeline/his_t_btn_bg_h.jpg);
 }

 ul#his_toplist li .hset {
 	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
 	font-weight: 100;
 }

 ul#his_toplist li .hset p.read {
 	font-size: 1.7rem;
 }

 ul#his_toplist li .hset p.year {
 	font-size: 0.9rem;
 }

 ul#his_toplist li .hset p.wareki {
 	font-size: 0.5rem;
 }

 ul#his_toplist li .hset .btn_read {
 	font-size: 0.7rem;
 }

 ul#his_toplist li .blank_btn {
 	position: relative;
 }

 ul#his_toplist li .blank_btn span {
 	width: 25px;
 	height: 25px;
 	display: block;
 	position: absolute;
 	transition: all .2s ease;
 	bottom: 2px;
 	right: 2px;
 }

 ul#his_toplist li a:hover .blank_btn span {
 	transform: scale(1.3);
 }

 ul#his_toplist li .link_btn {
 	position: relative;
 }

 ul#his_toplist li .link_btn span {
 	width: 40px;
 	height: 40px;
 	border-radius: 30px;
 	border: 1px #fff solid;
 	display: block;
 	background-color: #827a6100;
 	position: absolute;
 	bottom: 2px;
 	right: 2px;
 }

 ul#his_toplist li .top_link_btn_a:hover .link_btn span {
 	background-color: #827a61;
 	width: 44px;
 	height: 44px;
 	border: 1px #827a61 solid;
 	transition: all .4s ease;
 	bottom: 0px;
 	right: 0px;
 }

 ul#his_toplist li .link_btn span.arrow {
 	display: inline-block;
 	vertical-align: middle;
 	text-decoration: none;
 }

 ul#his_toplist li .link_btn span.arrow::before,
 ul#his_toplist li .link_btn span.arrow::after {
 	position: absolute;
 	top: 0;
 	bottom: 0;
 	left: 0;
 	margin: auto;
 	content: "";
 	vertical-align: middle;
 }

 ul#his_toplist li .link_btn span::before {
 	left: 32px;
 	box-sizing: border-box;
 	width: 30px;
 	height: 6px;
 	border: 6px solid transparent;
 	border-left: 6px solid #fff;
 	right: -40px;
 	transition: all .4s ease;
 }

 ul#his_toplist li .link_btn span::after {
 	left: 12px;
 	width: 8px;
 	height: 1px;
 	border-left: 20px solid #fff;
 	right: -8px;
 	transition: all .4s ease;
 }

 ul#his_toplist li a:hover .link_btn span::after {
 	right: 0px;
 }

 ul#his_toplist li a:hover .link_btn span::before {
 	right: -44px;
 }

 /*

history 下層
body.history

*/




 .his_content {
 	border-bottom: #8B8267 3px solid;
 	background-color: #fff;
 	padding: 40px 20px;
 	margin-top: 100px;
 	position: relative;
 	width: 90%;
 	margin-left: auto;
 	margin-right: auto;

 }

 .his_content:first-child {
 	margin-top: 180px;
 }

 .his_content h3 {
 	position: absolute;
 	top: -74px;
 	left: 20px;
 	display: inline-block;
 	width: auto;
 	max-width: 400px;
 }

 .his_content h3 span {
 	font-size: 1.1rem;
 	color: #8B8267;
 }

 .his_content h3 span.his_head_a {
 	font-size: 4.8rem;
 	color: #8B8267;
 	/*-webkit-text-stroke: 1px #8B8267;
 	text-stroke: 1px #8B8267;*/
 }

 .his_content h3 img {
 	max-width: 100px;
 }

 .his_content .content_box {
 	display: flex;
 	flex-direction: column;
 	flex-wrap: wrap;
 	justify-content: space-between;
 }

 .his_content .txt_box {
 	width: 100%;
 	padding: 0px 0 20px;
 }

 .his_content .txt_box.noimg {
 	width: 100%;
 }

 .his_content .txt_box .read {
 	font-size: 1.1rem;
 	padding-bottom: 25px;
 	line-height: 1.5;
 	font-weight: 700;
 	color: #524930;
 }

 .his_content .txt_box p {
 	font-size: 0.9rem;
 	line-height: 1.8;
 	padding-bottom: 1rem;
 }

 .his_content .img_box {
 	width: 100%;
 }

 .his_content .img_box img {
 	width: 100%;
 }

 .his_content .img_box p {
 	text-align: right;
 }


 .page_nav_btm {
 	display: flex;
 	flex-direction: row;
 	justify-content: space-between;
 	width: 84%;
 	margin: 30px auto;
 	padding-bottom: 40px;
 }

 .page_nav_btm li {
 	width: 32%;
 	text-align: center;
 }

 .page_nav_btm li a {
 	display: inline-block;
 	padding: 8px 0;
 	color: #fff;
 	font-weight: 100;
 	font-size: 0.6rem;
 	transform: skewX(-30deg);
 }

 .page_nav_btm li span {
 	display: inline-block;
 	transform: skewX(30deg);
 }

 .page_nav_btm li.pnb_pre a,
 .page_nav_btm li.pnb_next a {
 	background-color: #AAA282;
 	transform: skewX(-30deg);
 	/*transition: all .6s ease;*/
 	width: 100%;
 }

 .page_nav_btm li.pnb_top a {
 	background-color: #fff;
 	transform: skewX(-30deg);
 	/*transition: all .6s ease;*/
 	width: 100%;
 }

 .page_nav_btm li.pnb_top a {
 	color: #000 !important;
 }

 .page_nav_btm li.pnb_pre a:hover,
 .page_nav_btm li.pnb_next a:hover {
 	background-color: #524930;
 	transform: skewX(-30deg);
 }


 /*---------------------------------------------------------

事業の歴史
body.business 

*/

 .business #head_box {
 	background-image: url(/history/img/business/head_bg.jpg);

 }

 .business #section_head {
 	background-image: url(/history/img/business/head_txtbg.svg);
 	width: 100%;
 	height: auto;
 	padding: 10vh 0 5vh;
 	background-size: 50%;
 	font-size: 2.1rem;
 	margin-top: 30px;
 }

 .business ul#his_toplist li.his_btn_a a {
 	background-image: url(/history/img/business/bus_t_btn_bg_a.jpg);
 }

 .business ul#his_toplist li.his_btn_b a {
 	background-image: url(/history/img/business/bus_t_btn_bg_b.jpg);
 }

 .business ul#his_toplist li.his_btn_c a {
 	background-image: url(/history/img/business/bus_t_btn_bg_c.jpg);
 }

 .business ul#his_toplist li.his_btn_d a {
 	background-image: url(/history/img/business/bus_t_btn_bg_d.jpg);
 }

 .business ul#his_toplist li.his_btn_e a {
 	background-image: url(/history/img/business/bus_t_btn_bg_e.jpg);
 }

 .business ul#his_toplist li.his_btn_f a {
 	background-image: url(/history/img/business/bus_t_btn_bg_f.jpg);
 }

 .business ul#his_toplist li.his_btn_g a {
 	background-image: url(/history/img/business/bus_t_btn_bg_g.jpg);
 }

 .business ul#his_toplist li.his_btn_h a {
 	background-image: url(/history/img/business/bus_t_btn_bg_h.jpg);
 }

 .business ul#his_toplist li.his_btn_i a {
 	background-image: url(/history/img/business/bus_t_btn_bg_i.jpg);
 }

 .business ul#his_toplist li a {
 	padding: 14px;
 }

 .business ul#his_toplist li .hset p.read {
 	line-height: 1.02;
 }

 .business ul#his_toplist li .hset .btn_read {
 	max-width: 80%;
 }

 /*

事業の歴史 下層
body.business 

*/

 /* 
事業の歴史
#sub_ttl
*/
 .business .sndcotents #sub_ttl .ttl_txt {
 	display: inline-flex;
 	height: 100%;
 	padding: 0 10px 0 15px;
 	align-items: center;
 	color: #fff;
 }

 .business .sndcotents #sub_ttl .ttl_txt h2 {
 	font-size: 1.2rem;
 }

 .business .sndcotents .ship_ttl {
 	background-image: url(/history/img/business/sub-title_sp_ship.jpg);
 	background-position: 5%;
 }

 .business .sndcotents .rs_ttl {
 	background-image: url(/history/img/business/sub-title_sp_rs.jpg);
 	background-position: center center;
 }

 .business .sndcotents .aero_ttl {
 	background-image: url(/history/img/business/sub-title_sp_aero.jpg);
 	background-position: center center;
 }

 .business .sndcotents .engine_ttl {
 	background-image: url(/history/img/business/sub-title_sp_engine.jpg);
 	background-position: center center;
 }

 .business .sndcotents .plant_ttl {
 	background-image: url(/history/img/business/sub-title_sp_plant.jpg);
 	background-position: center center;
 }

 .business .sndcotents .energy_plant_ttl {
 	background-image: url(/history/img/business/sub-title_sp_energy_plant.jpg);
 	background-position: center center;
 }

 .business .sndcotents .motorcycles_ttl {
 	background-image: url(/history/img/business/sub-title_motorcycles.jpg);
 	background-position: center center;
 }

 .business .sndcotents .hydraulic_ttl {
 	background-image: url(/history/img/business/sub-title_sp_hydraulic.jpg);
 	background-position: center center;
 }

 .business .sndcotents .robot_ttl {
 	background-image: url(/history/img/business/sub-title_sp_robot.jpg);
 	background-position: center center;
 }




 .business .head_subread {
 	width: 90%;
 	margin: 0 auto;
 	padding: 18px 5px;
 	font-size: 0.8rem;
 	text-align: justify;
 	line-height: 1.8;
 }

 .bus_content {
 	background-color: #fff;
 	padding: 15px 15px;
 	margin-top: 70px;
 	position: relative;
 	width: 92%;
 }

 .bus_content.al {
 	margin-right: auto;
 	margin-left: auto;
 }

 .bus_content.ar {
 	margin-right: auto;
 	margin-left: auto;
 }

 .bus_content:first-child {
 	margin-top: 20px;
 }

 .bus_content h3 {
 	display: block;
 	width: 100%;
 	padding-bottom: 15px;
 	border-bottom: #000 1px dotted;
 	margin-bottom: 20px;
 	color: #8B8267;
 }

 .bus_content h3 span.his_head_a {
 	font-size: 4.2rem;
 	line-height: 1;
 	color: #8B8267;
 	/*-webkit-text-stroke: 1px #8B8267;
 	text-stroke: 1px #8B8267;*/
 }

 .bus_content h3 span {
 	font-size: 1.5rem;
 }

 .bus_content .content_box {
 	display: flex;
 	flex-direction: column;
 	flex-wrap: wrap;
 	justify-content: space-between;
 	align-items: center;
 }

 .bus_content .txt_box {
 	width: 100%;
 	padding: 0px 0 20px;
 }

 .bus_content .txt_box.noimg {
 	width: 100%;
 }

 .bus_content .txt_box .read {
 	font-size: 1.3rem;
 	padding-bottom: 15px;
 	line-height: 1.5;
 	font-weight: 700;
 }

 .bus_content .txt_box p {
 	text-align: justify;
 	padding-right: 0px;
 	font-size: 0.9rem;
 	line-height: 2;
 	padding-bottom: 1rem;
 }

 .bus_content .img_box {
 	width: 100%;
 }

 .bus_content .img_box img {
 	width: 100%;
 }

 .bus_content .img_box p {
 	text-align: right;
 }

 .bus_content .b1896 .txt_box {
 	width: 100%;
 }

 .bus_content .b1896 .img_box {
 	width: 100%;
 }

 /*---------------------------------------------------------

事業の歴史
body.genealogy 

*/

 .genealogy #head_box {
 	background-image: url(/history/img/genealogy/head_bg.jpg);

 }

 .genealogy #section_head {
 	background-image: url(/history/img/genealogy/head_txtbg.svg);
 	width: 100%;
 	height: auto;
 	padding: 10vh 0 5vh;
 	background-size: 50%;
 	font-size: 2.1rem;
 	margin-top: 30px;
 }

 .genealogy #sub_nav {
 	width: 100%;
 	border-bottom: #524930 solid 1px;
 }

 .genealogy #sub_nav ul {
 	margin-top: 60px;
 	display: flex;
 	flex-direction: row;
 	justify-content: center;
 }

 .genealogy #sub_nav ul li {
 	text-align: center;
 	width: 40%;
 	border-top: #524930 solid 1px;
 	border-left: #524930 solid 1px;
 	border-right: #524930 solid 1px;
 	border-bottom: #524930 solid 1px;
 	margin: 0 5px -1px;
 	transform: skewX(-30deg);
 }

 .genealogy #sub_nav ul li a {
 	color: #000;
 }

 .genealogy #sub_nav ul li a:hover p {
 	background-color: #fff;
 }

 .genealogy #sub_nav ul li p {
 	display: inline-block;
 	width: 88%;
 	margin: 4px 8px;
 	padding: 8px 6px;
 	background-color: #DDDACD;
 	font-size: 1.0rem;
 	font-weight: 700;
 	transition: all .4s ease;
 }

 .genealogy #sub_nav ul li p span {
 	display: inline-block;
 	transform: skewX(30deg);
 }

 .genealogy #sub_nav ul li.active {
 	border-bottom: #f5f3e7 solid 1px;
 }

 .genealogy #sub_nav ul li.active p {
 	background-color: #fff;
 }


 .genealogy ul.gne_list {
 	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
 	flex-wrap: wrap;
 	margin: 0px 18px 30px;
 	padding-top: 120px;
 	background-image: url(/history/img/genealogy/link_line_dot10.png);
 	background-repeat: repeat-y;
 	background-position: center;
 	position: relative;
 }

 .genealogy ul.gne_list::after {
 	content: "";
 	width: 10px;
 	height: 320px;
 	background-image: url(/history/img/genealogy/link_line_dot10_end.png);
 	background-repeat: no-repeat;
 	position: absolute;
 	right: 0;
 	left: 0;
 	margin: 0 auto;
 	bottom: -20px;
 	z-index: 1;
 }

 .genealogy .gne_list li {
 	position: relative;
 	width: 100%;
 	height: auto;
 	z-index: 2;
 }

 .genealogy li .y_content {
 	width: 100%;
 	max-width: 740px;
 	background-color: #fff;
 	position: relative;
 	display: flex;
 	flex-direction: row;
 	justify-content: flex-start;
 	flex-wrap: wrap;
 	padding: 10px 0;
 	margin-bottom: 26px;
 }

 .genealogy ul.gne_list li::before {
 	position: absolute;
 	top: 50%;
 	content: "";
 	display: block;
 	width: 100%;
 	height: 2px;
 	background-image: unset;
 	background-repeat: repeat-x;
 	background-position: center center;
 }

 .genealogy .gne_list li:nth-child(2n-1) {
 	margin-bottom: auto;
 }

 .genealogy .gne_list li:nth-child(2n) {
 	margin-top: auto;
 }

 .genealogy .gne_list li:nth-child(2n) .y_content {
 	margin-left: auto;
 }

 .genealogy .y_content .yc_headset {
 	display: flex;
 	flex-direction: column;
 	margin-left: -5px;
 	width: min-content;
 	min-width: 120px;
 }

 .genealogy .y_content .yc_headset h2 {
 	font-size: 3.15rem;
 	color: #8B8267;
 	padding-left: 10px;
 }

 .genealogy .y_content .yc_headset .category {
 	display: inline-block;
 	padding: 3px 18px;
 	font-size: 1rem;
 	color: #fff;
 	text-align: center;
 	max-width: 120px;
 	margin-bottom: 5px;
 }

 /*カテゴリ　共通*/
 .genealogy .y_content .yc_headset .category.cat_a {
 	background-color: #4C4948;
 }

 /*カテゴリ　船舶海洋*/
 .genealogy .y_content .yc_headset .category.cat_b {
 	background-color: #72A1C7;
 }

 /*カテゴリ　車両*/
 .genealogy .y_content .yc_headset .category.cat_c {
 	background-color: #C13932;
 }

 /*カテゴリ　航空宇宙*/
 .genealogy .y_content .yc_headset .category.cat_d {
 	background-color: #AAA282;
 }

 /*カテゴリ　ジェットエンジン　*/
 .genealogy .y_content .yc_headset .category.cat_e {
 	background-color: #784D23;
 }

 /*カテゴリ　プラント*/
 .genealogy .y_content .yc_headset .category.cat_f {
 	background-color: #E77400;
 }

 /*カテゴリ　エネルギー?舶用*/
 .genealogy .y_content .yc_headset .category.cat_g {
 	background-color: #215787;
 }

 /*カテゴリ　モーターサイクル*/
 .genealogy .y_content .yc_headset .category.cat_h {
 	background-color: #3EB370;
 }

 /*カテゴリ　精密機械*/
 .genealogy .y_content .yc_headset .category.cat_i {
 	background-color: #5CB5AA;
 }

 /*カテゴリ　ロボット*/
 .genealogy .y_content .yc_headset .category.cat_j {
 	background-color: #9C7399;
 }

 .genealogy .y_content .yc_txtset {
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	align-items: flex-start;
 	padding: 10px 10px 30px 30px;
 	font-size: 0.9rem;
 	width: 96%;
 	font-weight: 700;
 }

 .genealogy .y_content .yc_txtset img {
 	width: 100%;
 }

 .genealogy .y_content .yc_txtset p {
 	padding-bottom: 20px;
 }

 .genealogy .y_content .yc_txtset.dotline {
 	border-bottom: #000 1px dotted;
 	margin-bottom: 20px;
 }

 .genealogy .y_content .yc_txtset.dotline_top {
 	border-top: #000 1px dotted;
 }

 .genealogy .y_content.start {
 	width: 80%;
 	max-width: 740px;
 	background-color: #524930;
 	color: #fff;
 	position: relative;
 	margin: 0 auto;
 	padding: 30px 0;
 	display: flex;
 	flex-direction: column;

 	justify-content: flex-start;
 	align-items: center;
 }

 .genealogy .y_content.start img {
 	position: relative;
 	display: block;
 	right: unset;
 	top: unset;
 	bottom: unset;
 	margin: auto 0;
 }

 .genealogy .y_content.start h2 {
 	color: #fff;
 }

 .genealogy .start .yc_txtset {
 	width: 100%;
 	font-size: 1.2rem;
 	padding: 30px;
 	align-items: center;
 }

 .genealogy .y_content.start .yc_txtset img {
 	width: 100%;
 	min-width: 180px;
 	max-width: 220px;
 }

 /* 変遷　追加ボタン */
 .genealogy #page_nav .to_tra a {
 	position: fixed;
 	bottom: 20px;
 	right: 20px;
 	display: block;
 	border-radius: 0px;
 	text-align: left;
 	background-color: #000;
 	color: #fff;
 	min-width: 120px;
 	padding: 8px 0 8px 20px;
 	transition: all 1s ease;
 	transform: skewX(-30deg);
 }

 .genealogy #page_nav .to_tra a:hover {
 	background-color: #B9B299;
 }

 .genealogy #page_nav .to_tra a p {
 	transform: skewX(30deg);
 }

 .genealogy #page_nav .to_tra a.link_btn span {
 	transform: skewX(30deg);
 	width: 40px;
 	height: 40px;
 	display: block;
 	position: absolute;
 	bottom: -3px;
 	right: 20px;
 }

 .genealogy #page_nav .to_tra a.link_btn:hover span {
 	width: 48px;
 	right: 10px;
 	transition: all .4s ease;
 }

 .genealogy #page_nav .to_tra a.link_btn span.arrow {
 	display: inline-block;
 	vertical-align: middle;
 	text-decoration: none;
 }

 .genealogy #page_nav .to_tra a.link_btn span.arrow::before,
 .genealogy #page_nav .to_tra a.link_btn span.arrow::after {
 	position: absolute;
 	top: 0;
 	bottom: 0;
 	left: 0;
 	margin: auto;
 	content: "";
 	vertical-align: middle;
 }

 .genealogy #page_nav .to_tra a.link_btn span::before {
 	box-sizing: border-box;
 	width: 30px;
 	height: 6px;
 	border: 6px solid transparent;
 	border-left: 6px solid #fff;
 	right: -40px;
 	transition: all .4s ease;
 }

 .genealogy #page_nav .to_tra a.link_btn span::after {
 	left: 12px;
 	width: 8px;
 	height: 1px;
 	border-left: 20px solid #fff;
 	right: -8px;
 	transition: all .4s ease;
 }

 .genealogy #page_nav .to_tra a.link_btn:hover span::after {
 	right: -10px;
 }

 .genealogy #page_nav .to_tra a.link_btn:hover span::before {
 	right: -50px;
 }

 /*---------------------------------------------------------

麻豆传媒 人物伝
body.genealogy 

*/

 .dna #head_box {
 	background-image: url(/history/img/dna/head_bg.jpg);

 }

 .dna #section_head {
 	background-image: url(/history/img/dna/head_txtbg.svg);
 	width: 100%;
 	height: auto;
 	padding: 13vh 0 5vh;
 	background-size: 40%;
 	font-size: 2.1rem;
 	margin-top: 10px;
 }

 .dna .sub_nav {
 	display: flex;
 	flex-direction: row;
 	width: 100%;
   justify-content: space-between;
 }

 .dna .sub_nav li {
 	width: 33%;
 	display: block;
 	position: relative;

 }

 .dna .sub_nav li a {
 	display: block;
 	width: 100%;
 	height: auto;
 	aspect-ratio: 51/49;
 	background-repeat: no-repeat;
 	background-size: cover;
 	background-position: top center;
 	transition: all .4s ease;
 	s
 }

 .dna .sub_nav li a.btn_a {
 	background-image: url(/history/img/dna/suv_nav_btn_a.jpg);
 }

 .dna .sub_nav li a.btn_b {
 	background-image: url(/history/img/dna/suv_nav_btn_b.jpg);
 	/*border-left: #ddd9cd 1px solid;*/
 }

 .dna .sub_nav li a.btn_c {
 	background-image: url(/history/img/dna/suv_nav_btn_c.jpg);
 	/*order-left: #ddd9cd 1px solid;
 	border-right: #ddd9cd 1px solid;*/
 }

 .dna .sub_nav li a.btn_a:hover {
 	background-image: url(/history/img/dna/suv_nav_btn_a_on.jpg);
 }

 .dna .sub_nav li a.btn_b:hover {
 	background-image: url(/history/img/dna/suv_nav_btn_b_on.jpg);
 }

 .dna .sub_nav li a.btn_c:hover {
 	background-image: url(/history/img/dna/suv_nav_btn_c_on.jpg);
 }


 .dna ul.sub_nav li.link_btn {
 	position: relative;
 }

 .dna ul.sub_nav li.link_btn span {
 	width: 40px;
 	height: 40px;
 	border-radius: 30px;
 	border: 1px #fff solid;
 	display: block;
 	background-color: #827a6100;
 	position: absolute;
 	bottom: 10px;
 	left: unset;
 	right: 10px;
 }

 .dna ul.sub_nav li.link_btn a:hover span {
 	background-color: #827a61;
 	width: 44px;
 	height: 44px;
 	border: 1px #827a61 solid;
 	transition: all .4s ease;
 	bottom: 10px;
 	left: unset;
 	right: 10px;
 }

 .dna ul.sub_nav li.link_btn span.arrow {
 	display: inline-block;
 	vertical-align: middle;
 	text-decoration: none;
 }

 .dna ul.sub_nav li.link_btn span.arrow::before,
 .dna ul.sub_nav li.link_btn span.arrow::after {
 	position: absolute;
 	top: 0;
 	left: 0;
 	margin: auto;
 	content: "";
 	vertical-align: middle;
 }

 .dna ul.sub_nav li.link_btn span::before {
 	box-sizing: border-box;
 	width: 6px;
 	height: 6px;
 	border: 6px solid transparent;
 	border-top: 6px solid #fff;
 	right: 0px;
 	bottom: -16px;
 	transition: all .4s ease;
 }

 .dna ul.sub_nav li.link_btn span::after {
 	width: 1px;
 	height: 1px;
 	border-bottom: 16px solid #fff;
 	right: 0px;
 	bottom: 0px;
 	transition: all .4s ease;
 }

 .dna ul.sub_nav li.link_btn a:hover span::after {
 	right: 0px;
 }

 .dna ul.sub_nav li.link_btn a:hover span::before {
 	bottom: -22px;
 }

 .dna_c {
 	margin-top: 70px;
 	padding: 0 10px;
 }

 .dna_c h2 {
 	font-size: 1.9rem;
 	line-height: 1.5;
 	margin-bottom: 16px;
 }

 .dna_c h2 span {
 	display: inline-block;
 	margin-top: 18px;
 }

 .dna_c p.subttl {
 	width: 100%;
 	text-align: right;
 	font-size: 0.9rem;
 	font-weight: 700;
 	display: flex;
 	flex-direction: row;
 	justify-content: start;
 	align-items: center;
 }

 .dna_c p.subttl::before {
 	content: "";
 	display: inline-block;
 	width: 10%;
 	margin-right: 10px;
 	border-top: #000 1px solid;
 }

 .dna_c.c_right .dna_c_headSet {
 	display: flex;
 	flex-direction: column;
 	justify-content: flex-start;
 	align-items: self-start;
 	text-align: left;
 }

 .dna_cBox {
 	padding: 30px 0 0;
 	font-size: 0.85rem;
 	line-height: 2.2;
 }

 .dna_cBox p {
 	padding-bottom: 16px;
 }

 .c_imgBox {
 	width: 90%;
 	margin: 0 auto;
 }

 #dna_c_a .c_imgBox,
 #dna_c_c .c_imgBox {
 	float: unset;
 	margin-left: auto;
 	padding-bottom: 40px;
 	position: relative;
 }

 #dna_c_b .c_imgBox {
 	float: unset;
 	margin-right: auto;
 	padding-bottom: 40px;
 	position: relative;
 }

 /*  swiper */

 .dna .slmain img {
 	width: 100%;
 	object-fit: cover;
 }


 .slider-thumbnail .swiper-slide {
 	opacity: .5;
 	transition: opacity .5s;
 	width: calc(100% / 3);
 }

 .sl_thum {
 	width: 35%;
 	height: 90px;
 	margin-left: auto !important;
 	margin-right: unset !important;
 }

 .sl_thum img {
 	width: 90%;
 }

 .sl_thum .swiper-slide {
 	opacity: 1 !important;
 	text-align: right;
 }

 .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
 	opacity: 1;
 }

 .swiper-button-prev,
 .swiper-rtl .swiper-button-next {
 	left: 10px;
 	right: auto;
 	top: 43%;
 	color: #ddd9cd;
 }

 .swiper-button-next,
 .swiper-rtl .swiper-button-prev {
 	right: 10px;
 	left: auto;
 	top: 43%;
 	color: #ddd9cd;
 }

 .sl_thum .swiper-slide {
 	cursor: pointer;
 }

 /* 前へ次への矢印カスタマイズ */
.dna .swiper-button-prev,
.dna .swiper-button-next {
  height: 50px;
  width: 25px;
}
/* 前へ次への矢印カスタマイズ */
.dna .swiper-button-prev::after,
.dna .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 25px;
}
/* 前への矢印カスタマイズ */
.dna .swiper-button-prev::after {
  background-image: url(/history/img/dna/arr_L.svg);
}
/* 次への矢印カスタマイズ */
.dna .swiper-button-next::after {
  background-image: url(/history/img/dna/arr_R.svg);
}
/* 画像サイズ調整 */
.dna .swiper-slide img {
  height: auto;
  width: 100%;
}

 /*---------------------------------------------------------

デジタルミュージアム
body.museum 

*/
.museum #page_nav {
  width: 0;
}
 .museum #page_nav ul {
 	right: 0;
 	top: 250px;
 }

 .museum #page_nav #cp_toggle01:checked~label {
 	display: none;
 }

 .museum #head_box {
 	background-image: url(/history/img/museum/head_bg.jpg);

 }



 .museum #section_head {
 	background-image: url(/history/img/museum/head_txtbg.svg);
 	width: 100%;
 	height: auto;
 	padding: 13vh 0 5vh;
 	background-size: 60%;
 	font-size: 2.1rem;
 	margin-top: 10px;
 }

 .museum h2 {
 	margin: 0 10px;
 	padding: 8px 16px;
 	color: #fff;
 	font-size: 0.9rem;
 	position: relative;
 }

 .museum h2 span {
 	position: relative;
 	z-index: 2;
 }

 .museum h2::before {
 	content: "";
 	position: absolute;
 	right: 0px;
 	top: 0px;
 	width: 100%;
 	height: 100%;
 	background-image: url(/history/img/museum/head_r.svg);
 	background-size: cover;
 	background-repeat: no-repeat;
 }

 .museum ul.cdata_pdf {
 	margin: 40px 0;
 	display: flex;
 	flex-direction: column;
 	flex-wrap: wrap;
 	justify-content: space-between;
 }

 .museum ul.cdata_pdf li {
 	width: 94%;
 	margin-right: 3%;
 	margin-left: 3%;
 	margin-bottom: 20px;
 	background-color: #fff;
 	box-shadow: 0px 0px 7px -5px #777777;
 	;
 }


 .museum ul.cdata_pdf li a {
 	padding: 20px;
 	display: flex;
 	flex-direction: row;
  align-items: center;
  position: relative;
 }

 .museum ul.cdata_pdf li a img {
 	max-width: 140px;
 }

 .museum ul.cdata_pdf li a .data_txtBox {
 	width: auto;
 	padding: 4px 4px;
 	color: #000;
  position: relative;
 }

 .museum ul.cdata_pdf li a .data_txtBox h3 {
 	font-size: 0.9rem;
 	font-weight: 700;
 	padding-bottom: 4px;
 }

 .museum ul.cdata_pdf li a .data_txtBox .pyear {
 	font-size: 0.7rem;
 	padding-bottom: 18px;
 }

 .museum ul.cdata_pdf li a .data_txtBox .sub_read {
	font-size: 1rem;
  font-weight: bold;
	padding-bottom: 18px;
}

 .museum ul.cdata_pdf li a .data_txtBox .readtxt {
 	font-size: 0.8rem;
 }


 .museum li .link_btn {
 	position: relative;
 	display: none;
 }

 .museum li .link_btn span {
 	width: 40px;
 	height: 40px;
 	border-radius: 30px;
 	border: 1px #8B8267 solid;
 	display: block;
 	background-color: #8B826700;
 	position: absolute;
 	bottom: 2px;
 	right: 2px;
 }

 .museum li a:hover .link_btn span {
 	background-color: #8B8267;
 	width: 44px;
 	height: 44px;
 	border: 1px #8B8267 solid;
 	transition: all .4s ease;
 	bottom: 0px;
 	right: 0px;
 }

 .museum li .link_btn span.arrow {
 	display: inline-block;
 	vertical-align: middle;
 	text-decoration: none;
 }

 .museum li .link_btn span.arrow::before,
 .museum li .link_btn span.arrow::after {
 	position: absolute;
 	top: 0;
 	bottom: 0;
 	left: 0;
 	margin: auto;
 	content: "";
 	vertical-align: middle;
 }

 .museum li .link_btn span::before {
 	left: 32px;
 	box-sizing: border-box;
 	width: 30px;
 	height: 6px;
 	border: 4px solid transparent;
 	border-left: 4px solid #8B8267;
 	right: -40px;
 	transition: all .4s ease;
 }

 .museum li .link_btn span::after {
 	left: 8px;
 	width: 8px;
 	height: 1px;
 	border-left: 16px solid #8B8267;
 	right: -8px;
 	transition: all .4s ease;
 }

 .museum li a:hover .link_btn span::after {
 	right: 0px;
 	border-left: 20px solid #fff;
 }

 .museum li a:hover .link_btn span::before {
 	right: -42px;
 	border-left: 6px solid #fff;
 }




 .museum ul.data_pdf {
 	margin: 40px 0;
 	display: flex;
 	flex-direction: row;
 	flex-wrap: wrap;
 	justify-content: flex-start;
 }

 .museum ul.data_pdf li {
 	width: 46%;
 	margin-right: 2%;
 	margin-left: 2%;
 	margin-top: 20px;
 	background-color: #fff;
 	box-shadow: 0px 0px 7px -5px #777777;
 	;
 }


 .museum ul.data_pdf li a {
 	padding: 46px 30px 20px;
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	align-items: center;
 	position: relative;
 }

 .museum ul.data_pdf li a img {
 	max-width: 100px;
 	aspect-ratio: 1 / 1.4;
 }

 .museum ul.data_pdf li a .data_txtBox {
 	width: 100%;
 	padding: 12px 0px 0;
 	text-align: left;
 	color: #000;
 }

 .museum ul.data_pdf li a .data_txtBox h3 {
 	font-size: 0.9rem;
 	font-weight: 700;
 	padding-bottom: 4px;
 }

 .museum ul.data_pdf li a .data_txtBox .pyear {
 	font-size: 0.7rem;
 	padding-bottom: 18px;
 }

 .museum ul.data_pdf li a .data_txtBox .readtxt {
 	font-size: 0.8rem;
 }

 .museum ul.cdata_pdf li a .pdf_ico {
  position: absolute;
  top: 20px;
  right: unset;
  left: 20px;
  background-color: #960000;
  color: #fff;
  transform: skewX(-30deg);
  padding: 2px 10px;
}

.museum ul.cdata_pdf li a .pdf_ico span {
  transform: skewX(30deg);
  display: inline-block;

}

 .museum ul.data_pdf li a .pdf_ico {
 	position: absolute;
 	top: 8px;
 	right: 16px;
 	background-color: #960000;
 	color: #fff;
 	transform: skewX(-30deg);
 	padding: 2px 10px;
 }

 .museum ul.data_pdf li a .pdf_ico span {
 	transform: skewX(30deg);
 	display: inline-block;

 }

 .museum ul.mov_list {
 	margin: 40px 0;
 	display: flex;
 	flex-direction: row;
 	flex-wrap: wrap;
 	justify-content: flex-start;
 }

 .museum ul.mov_list li {
 	width: 94%;
 	margin-right: 3%;
 	margin-left: 3%;
 	margin-top: 20px;
 	padding: 20px;
 	background-color: #fff;
 	box-shadow: 0px 0px 7px -5px #777777;
 	;
 }

 .museum ul.mov_list li iframe {
 	width: 100%;
 	aspect-ratio: 16 / 9;
 }

 .museum ul.mov_list li .mov_ttl {
 	padding-top: 18px;
 	font-size: 0.9rem;
 	font-weight: 700;
  margin-bottom: 16px;
 }

 /*  PDF詳細　*/

 .museum h2#data_head {
 	margin: 20px 3% 0;
 	padding: 8px 16px;
 	height: 48px;
 	color: #fff;
 	font-size: 1.0rem;
 	position: relative;
 	width: 94%;
 }

 .museum h2#data_head span.headtxt {
 	position: absolute;
 	top: 22%;
 	left: 12px;
 	z-index: 2;
 	width: 80%;
 }

 .museum h2#data_head a span.bLink {
 	position: absolute;
 	top: -25px;
 	right: 12px;
 	z-index: 3;
 	color: #000;
 	padding-left: 20px;
 	background-image: url(/history/img/snd/goback_arr.svg);
 	background-size: cover;
 	background-position: left center;
 	background-size: 14px;
 	background-repeat: no-repeat;
 }

 .museum h2#data_head::before {
 	content: "";
 	position: absolute;
 	left: 0px;
 	top: 0px;
 	width: 100%;
 	height: 100%;
 	background-image: url(/history/img/museum/head_r.svg);
 	background-size: cover;
 	background-repeat: no-repeat;
 	background-position: 0 0%;
 }


 .museum .data_setBox {
 	margin-top: 50px;
 	display: flex;
 	flex-direction: column;
 }

 .museum .data_setBox .imgBox {
 	width: 90%;
 	margin: 0 3% 30px;
 	padding-right: 0px;
 	text-align: center;
 }

 .museum .data_setBox .imgBox img {
 	width: 70%;
 	margin: 0 auto;
 }

 .museum .data_setBox .imgBox p {
 	width: 70%;
 	margin: 0 auto;
 	font-size: 0.8rem;
 	padding-top: 8px;
 	text-align: right;
 }

 .museum .data_setBox .dataBox {
 	width: 96%;
 	margin: 0 2%;
 }

 .museum .data_setBox .dataBox .dlBox {
 	background-color: #fff;
 	padding: 20px;
 	margin-bottom: 30px;
 	box-shadow: 0px 0px 7px -5px #777777;
 }

 .museum .data_setBox .dataBox .dl_head {
 	font-size: 1.0rem;
 	font-weight: 700;
 	width: 100%;
 	display: flex;
 	flex-direction: row;
 	justify-content: space-between;
 	position: relative;
 }

 .dl_ico {
 	display: inline-block;
 	padding-right: 20px;
 	background-image: url(/history/img/snd/dl_ico_b.svg);
 	background-repeat: no-repeat;
 	background-size: 16px;
 	background-position: right center;
 }

 .dl_ico_w {
 	display: inline-block;
 	padding-right: 20px;
 	background-image: url(/history/img/snd/dl_ico_w.svg);
 	background-repeat: no-repeat;
 	background-size: 16px;
 	background-position: right center;

 }

 .museum .data_setBox .dataBox .dlBox a .dl_head {
 	color: #000;
 	width: 100%;
 }

 .museum .data_setBox .dataBox .dlBox .dl_head .pdf_ico {
 	position: absolute;
 	height: 20px;
 	top: 0;
 	bottom: 0;
 	margin: auto 0;
 	right: 16px;
 	background-color: #960000;
 	color: #fff;
 	transform: skewX(-30deg);
 	padding: 2px 10px;
 	font-size: 0.7rem;
 }

 .museum .data_setBox .dataBox .dlBox .dl_head .pdf_ico span {
 	transform: skewX(30deg);
 	display: inline-block;

 }

 .museum .data_setBox .dataBox .dlBox ul {
 	width: 100%;
 }

 .museum .data_setBox .dataBox .dlBox ul li a {
 	width: 100%;
 	box-sizing: border-box;
 	display: flex;
 	flex-direction: row;
 	justify-content: space-between;
 	background-color: #AAA282;
 	padding: 5px 16px;
 	color: #fff;
 	font-size: 0.9rem;
 	margin-top: 14px;
 }

 .museum .data_setBox .dataBox .dlBox ul.data_setb li a {
 	width: 100%;
 	box-sizing: border-box;
 	display: flex;
 	flex-direction: row;
 	background-color: #EAE9E1;
 	padding: 5px 16px 5px 44px;
 	color: #000;
 	font-size: 0.9rem;
 	margin-top: 8px;
 	margin-bottom: 4px;
 }

 /*       museum ACC      */

 .accordion p.data_accttl {
 	cursor: pointer;
 	margin: 0;
 	position: relative;
 	width: 100%;
 	box-sizing: border-box;
 	display: flex;
 	flex-direction: row;
 	justify-content: space-between;
 	background-color: #AAA282;
 	padding: 5px 16px;
 	color: #fff;
 	font-size: 0.9rem;
 	margin-top: 14px;
 }

 .accordion p .plus {
 	position: absolute;
 	right: 32px;
 	top: 15px;
 	font-size: 18px;
 	font-weight: bold;
 	transform: translateY(-50%);
 }


 .plus::before,
 .plus::after {
 	content: '';
 	display: inline-block;
 	width: 15px;
 	height: 2px;
 	background-color: #fff;
 	/* プラスマイナスの色 */
 	position: absolute;
 	top: 50%;
 	transform: translateY(-50%);
 	transition: opacity 1s, transform 1s;
 }

 .plus::after {
 	transform: translateY(-50%) rotate(90deg);
 	/* 縦線 */
 }

 .plus.show::before {
 	opacity: 0;
 	/* 横線が非表示になり、マイナスになる */
 }

 .plus.show::after {
 	transform: translateY(-50%) rotate(180deg);
 	/* 縦線が回転してマイナス表示に */
 }

 .accordion .content {
 	display: none;
 }

 .accordion .content p {
 	margin: 0;
 }



 /*
---------------------------

footer

---------------------------
*/

 footer {
 	background-color: #fff;
 	padding: 8%;
 }

 footer a {
 	color: #000;
 }
.foot_siteBox a img{
width: 100%; 
max-width: 200px;
}

 .foot_pan {
 	background-color: #52493055;
 }

 .foot_pan_inner {
 	width: 90%;
 	max-width: 1110px;
 	padding: 10px 0;
 	margin: 0px auto;
 	font-size: 0.65rem;
 }

 .foot_pan_inner a {
 	color: #000;
 }

 footer .footerinner {
 	position: relative;
 	width: 100%;
 	height: auto;
 	margin: 0 auto;
 }

 .foot_btnBox {
 	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
 	align-items: center;
 	padding-bottom: 18px;
 }

 .foot_btnBox p.foot_mhead {
 	font-size: 1.1rem;
 }

 .foot_btnBox .foot_sites {
 	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
 	align-items: center;
 }

 .foot_siteBox {
 	display: flex;
 	flex-direction: column;
 	align-items: center;
 	margin: 0 15px;
 }

 .foot_siteBox p {
  font-size: 0.75rem;
 	padding-left: 14px;
 }

 .foot_sns {
 	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
 	align-items: center;
 	padding-bottom: 18px;
 }

 .foot_sns img {
 	margin-left: 12px;
 }

 .foot_sns_a {
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	align-items: center;
 	margin-top: 30px;
 	padding: 0 30px;
 }

 .foot_sns_b {
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	align-items: center;
 	margin-top: 30px;
 }

 .foot_sns_b figure {
 	display: flex;
 	align-items: center;
 }

 .foot_sns_b figure a {
 	display: flex;
 	align-items: center;
 }

 .foot_sns_b figure img {
 	margin-right: 12px;
 	margin-left: 22px;
 }

 .foot_ids {
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	border-top: 1px #000 solid;
 	padding-top: 18px;
 }

 .foot_ids ul {
 	display: flex;
 	flex-direction: row;
 	flex-wrap: wrap;
 	justify-content: center;
 }

 .foot_ids ul li {
 	padding-right: 18px;
 }

 .foot_ids p {
 	padding-top: 30px;
 	text-align: center;
 }