html {
}
html body {
	padding: 0;
	margin: 0;
	font-family: '游ゴシック';
	color: #434343;
	font-weight: 500;
	box-sizing: border-box;
}
body, th, td {
    font-size: 90%;
}
body, html {
	overflow-x: hidden;
	box-sizing: border-box;
}
p {
	line-height: 1.5;
	margin: 0.6em 0;
}
#main_contents p {
	padding: 0 1em;
}
#main {
	width: auto;
	box-sizing: border-box;
	font-size: 111.11111111%;
}
img {
	max-width: 100%;
	height: auto !important;
}
a img:hover {
	opacity: 0.75 ;
}
iframe {
	max-width: 100%;
}
.main a:visited, .main a:link {
	color: #4b3c2e;
}
.main h2 a:visited, .main h2 a:link {
	color: #fff;
}
.hide {
	display: none;
}
.page-header {
	background-image: url(/img/ruins-nakahama/page_ttl_img.png);
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: cover;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.page-header_pageTitle {
	line-height: 1;
	font-size: 2.5em;
	font-weight: 600;
	display: inline-block;
	letter-spacing: 2px;
	padding: 1.875em;
	border: 4px solid #e45d27;
	background: rgba(255,255,255,0.8);
	margin: 0;
}

.breadSection {
	margin-bottom: 5em;
	box-shadow: 0px 1px 20px 0px #e8e8e8;
	padding: 0 1.25em;
}
.wrapper {
	max-width: 1460px;
	padding: 0;
	margin: 0 auto;
}
.main_content_wrap  {
	max-width: 1460px;
	padding: 0;
	margin: 6.25em auto;
}
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: 1em 0;
	list-style: none;
	margin: 0;
}
.breadSection .breadcrumb>li+li:before {
	content: "＞";
	margin-left: 0.8em;
	margin-right: 0.8em;
	font-size: 0.75em;
}

/* スライドショーここから */
.slider img {
	width: 100%;
}
.header_wrap .slick-dots li button::before {
	line-height: 15px;
	width: 15px;
	height: 15px;
}
.header_wrap .slick-dots li button::before {
	font-size: 1em;
	color: #FFF;
	opacity: 1;
	background-color: #fff;
	border-radius: 20px;
}
.slick-dots li.slick-active button::before {
	opacity: .75;
	color: black;
	background-color: #000;
	border-radius: 20px;
}

/* スライドショーここまで */


.main_content_wrap ol {
	counter-reset: list-count;
	list-style: none;
	padding: 0;
}
.main_content_wrap ol li {
	position: relative;
	padding-left: 2em;
}
.main_content_wrap ol li::before {
	content: counter(list-count) ".";
	counter-increment: list-count;
	position: absolute;
	left: 5px;
	top: 0;
	font-weight: 700;
	color: #0068b7;
}

table {
	width: 100%;
	margin: 1.6em 0 1.2em;
	border: 1px solid #7d7d7d;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 15px;
	overflow: hidden;
}
table p {
	margin: 0;
	padding: 0;
}
.table tbody tr td, .table tbody tr th, .table td, .table th, .table thead tr td, .table thead tr th, table tbody tr td, table tbody tr th, table td, table th, table thead tr td, table thead tr th {
	*border: 1px solid #7d7d7d;
	border: none;
}
table tr th {
	background-color: #d9d3cf;
}
table thead tr th {
	background-color: #d9d3cf;
	font-weight: 700;
	text-align: center;
	color: #50352d;
	font-size: 1em;
	border-bottom: 1px solid #7d7d7d;
}
table thead tr th + th,
table tbody tr td:not(:first-child) {
	border-left: 1px solid #7d7d7d;
}
table tbody tr th, table tbody tr td {
	border-bottom: 1px solid #7d7d7d;
}
table tbody tr:last-child th,
table tbody tr:last-child td {
	border-bottom: none;
}
td, th {
	font-size: 1em;
	padding: 1em;
}

#page_top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10000;
	margin: 0;
}
#page_top a{
	position: relative;
	display: block;
	text-decoration: none;
}
/*----- スムーズスクロール -----*/
.back-top {
	position: fixed; /* 要素固定*/
	bottom: 3%; /*下からの位置*/
	right: 5%; /*右からの位置*/
	display: none; /*初めは非表示*/
	width: 80px;
	height: 80px;
	background-color: #FCBC06;
	border-radius: 100%;
}
.back-top a{
	color: #fff;
	text-decoration: none;
	text-align: center;
	display: block;
	line-height: 80px;
}

#menu-btn-check {
	display: none;
}
.menu-content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;/*leftの値を変更してメニューを画面外へ*/
	z-index: 80;
	background-color: #e45d27;
	transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
	left: 0;/*メニューを画面内へ*/
}
.menu-content ul {
	padding: 6.25em 1em 0.5em;
}
.menu-content ul li {
	border-bottom: solid 1px #ffffff;
	list-style: none;
}
.menu-content ul li a, .menu-content ul li strong {
	display: block;
	width: 100%;
	font-size: 1em;
	box-sizing: border-box;
	color:#ffffff;
	text-decoration: none;
	padding: 1.2em 1em;
	position: relative;
}
.menu-content ul li a::before, .menu-content ul li strong::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 26px;
}
body.site-index-ruins-nakahama .header_top.wrapper h1 {
	margin: 0;
}
.header_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 1.5rem 2.5%; /*remは文字サイズ変更によるレイアウト崩れ対策 */
	width: 98%;
	max-width: 100%;
	height: auto;
	position: absolute;
	z-index: 3;
	background-color: #FFF;
	top: 3rem;
	left: 0;
	right: 0;
	border-radius: 50px;
	box-shadow: 0 10px 30px rgb(0 0 0 / 5%);
	background-color: hsla(0,0%,100%,.85);
	backdrop-filter: blur(5px);
	box-sizing: border-box;
}
.header_right {
	display: flex;
}
.header_right_item {
	display: flex;
	align-items: center;
	margin: 0 0.5em;
	font-size: 1rem !important; /* 文字サイズ変更によるレイアウト崩れ対策 */
}
.header_right_item p {
	margin: 0 0.8em 0 0;
}
body.ruins-nakahama .main .header_right_item a, body.ruins-nakahama .main .header_right_item a:link {
	font-weight: 700;
	color: #000;
	text-decoration: none!important;
	padding: 1em 0.5em;
	margin: 0 0.5em 0 0;
	border-radius: 5px;
	border: #e5e5e5 solid 1px;
}
/* body.ruins-nakahama .main .header_right_item.text a, 
body.ruins-nakahama .main .header_right_item.text a:link, 
body.ruins-nakahama .main .header_right_item.yomiage a, 
body.ruins-nakahama .main .header_right_item.yomiage a:link {
	color: #000 !important;
} */
.main .header_right_item a, .main .header_right_item a:link {
	background: #fff;
}

.header_right_item.color a {
	padding: 1em 0.5em;
}
.header_right_item.color a:nth-child(2) {
	background-color: #fff !important;
	color: #000 !important;
}
.header_right_item.color a:nth-child(3) {
	background-color: #000;
	color: #FFF !important;
}
.header_right_item.color a:nth-child(4) {
	background-color: #0065e0;
	color: #FFF !important;
}
.header_right_item.yomiage a {
	border: #e5e5e5 dashed 1px;
}
.header_right_item.leaflet a {
	padding: 0.25em 1em 0.25em 0.8em !important;
	background-color: #ca4e27 !important;
	color: #FFF !important;
	display: flex;
	align-items: center;
	position: relative;
}
.header_right_item.leaflet a::before {
	content: url(/img/ruins-nakahama/leaflet_icon.png);
	width: 20px;
	height: 24px;
	margin-right: 0.5em;
}
.header_right_item.leaflet a::after {
	content: url(/img/ruins-nakahama/leaflet_arrow.png);
	width: 8px;
	height: 8px;
	position: absolute;
	right: 2px;
	bottom: 2px;
}
nav#NavMenu {
	border-bottom: 1px solid #e5e5e5;
}
#NavMenu ul {
	display: flex;
	max-width: 1600px;
	width: auto;
	height: 60px;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	padding: 0;
}

#NavMenu ul li {
	padding-right: 1.5em;
	padding-left: 1.5em;
	list-style: none;
	display: flex;
	align-items: center;
}
#NavMenu ul li:nth-child(1)::before {
	content: url(/img/ruins-nakahama/menu_icon_1.png);
	margin-right: 0.8em;
	margin-top: 0em;
}
#NavMenu ul li:nth-child(2)::before {
	content: url(/img/ruins-nakahama/menu_icon_2.png);
	margin-right: 0.8em;
	margin-top: 0em;
}
#NavMenu ul li:nth-child(3)::before {
	content: url(/img/ruins-nakahama/menu_icon_3.png);
	margin-right: 0.8em;
	margin-top: 0em;
}
#NavMenu ul li:nth-child(4)::before {
	content: url(/img/ruins-nakahama/menu_icon_4.png);
	margin-right: 0.8em;
	margin-top: 0em;
}
#NavMenu ul li:nth-child(5)::before {
	content: url(/img/ruins-nakahama/menu_icon_5.png);
	margin-right: 0.8em;
	margin-top: 0em;
}

.header_menu .menu__mega a {
	text-decoration: none !important;
	color:#4c4c4c;
	border: none;
	font-weight: 700;
}

.header_menu .menu__mega a:hover {
	border-bottom: 2px solid #e45d27;
	padding-bottom: 2px;
	color: #e45d27;
}

.header_menu .menu__mega.page__maga a {
    background-color: #fff6e6;
}

.menu-content .sp-menu-anchor ul li a, .menu-content .sp-menu-anchor ul li strong {
	background-color: #fffdf6;
}

.mega_menu_title {
	font-size: 1em;
	font-weight: 700;
	color: #434343;
}

.header_wrap {
	position: relative;
	z-index: 2;
	padding: 0em;
	line-height: 0;
}
.header_wrap .slick-dots {
	bottom: 20px;
}
.header_wrap .slick-dots li button:before {
	font-size: 1em;
	color: #FFF;
	opacity: 1;
}

.header_wrap .slick-dotted.slick-slider {
	margin-bottom: 0;
}
.slick-prev, .slick-next {
	width: 39px !important;
	height: 61px !important;
}
.slick-prev::before, .slick-next::before {
	font-size: unset !important;
	display: block;
}
.slick-next::before {
	content: '' !important;
	opacity: 1!important;
	background-image: url(/img/ruins-nakahama/slide_right.png);
	width: 39px;
	height: 61px;
	background-size: contain;
}
.slick-prev::before {
	content: '' !important;
	opacity: 1 !important;
	background-image: url(/img/ruins-nakahama/slide_left.png) !important;
	width: 39px;
	height: 61px;
	background-size: contain;
}
.slick-next {
	right: 50px !important;
	z-index: 3;
}
.slick-prev {
	left: 50px !important;
	z-index: 3;
}


.area_1_box {
	position: relative;
	background-color: #f9f9f9;
}
.about_wrap {
	text-align: center;
	background-image: url(/img/ruins-nakahama/main_bg.png);
	background-color: #FFF;
	padding: 6.25em 2.5% 2.5em;
	background-position: bottom;
	position: relative;
	background-size: cover;
}
.about_wrap::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	background: url(/img/ruins-nakahama/main_bg_wave.png);
	width: 100%;
	height: 83px;
	z-index: 1;
	background-position: center;
	background-size: cover;
}
.top_title {
	color: #4c4c4c;
	font-size: 2.125em;
	font-weight: 600;
	letter-spacing: 2px;
	display: inline-block;
	position: relative;
	margin-bottom: 2.5em;
	color: #434343;
	width: 100%;
	text-align: center;
}
.about_title::after {
	content: "ー About ー";
	position: absolute;
	top: 3.25em;
	left: 0;
	font-size: 0.5em;
	font-weight: 700;
	color: #e45d27;
	width: 100%;
	text-align: center;
}
.news_title::after {
	content: "ー News ー";
	position: absolute;
	top: 3.25em;
	left: 0px;
	font-size: 0.5em;
	font-weight: 700;
	color: #e45d27;
	width: 100%;
	text-align: center;
}
.calendar_title::after {
	content: "ー Calendar ー";
	position: absolute;
	top: 3.25em;
	left: 0px;
	font-size: 0.5em;
	font-weight: 700;
	color: #e45d27;
	width: 100%;
	text-align: center;
}
.sns_title::after {
	content: "ー Social Network Service ー";
	position: absolute;
	top: 3.25em;
	font-size: 0.5em;
	font-weight: 700;
	color: #e45d27;
	width: auto;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.about_box {
	display: flex;
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	justify-content: space-between;
	gap: 4.5em 1.5%;
	flex-wrap: wrap;
}
.about_box .about_left p > span {
	white-space: nowrap;
}
.about_left {
	width: 40%;
}
.about_left p {
	line-height: 2.5;
	font-weight: 700;
	color: #434343;
	text-align: left;
	font-size: 1.125em;
	margin-top: 0;
	margin-bottom: 2.5em;
}
.about_right {
	width: 58.5%;
}
.about_right iframe {
	border-radius: 30px;
}
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.text_d2 .kuwashiku_btn, .about_left .kuwashiku_btn, #footer .kuwashiku_btn, .calendar_box .kuwashiku_btn {
	font-weight: 700;
	color: #4b3c2e;
	position: relative;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 0.5em 3em;
	margin: 0 auto;
	border-radius: 50px;
	max-width: 100%;
	width: 250px;
	border-top: #4b3c2e 1px solid;
	border-bottom: #4b3c2e 4px solid;
	border-right: #4b3c2e 1px solid;
	border-left: #4b3c2e 1px solid;
	box-sizing: border-box;
}
.kuwashiku_btn:hover {
	*text-decoration: underline;
	opacity: 0.8;
}
.kuwashiku_btn::after {
	content: url(/img/ruins-nakahama/main_btn_icon.png);
	position: absolute;
	top: calc(50% - 20px / 2);
	right: 30px;
}
.area_2_box {
	padding: 7.5em 0 0;
	position: relative;
}
.area_2_box::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	background: url(/img/ruins-nakahama/main_bg_wave_white.png);
	width: 100%;
	height: 83px;
	z-index: 1;
	background-position: center;
	background-size: cover;
}
.oshirase_box {
	padding: 0 2.5%;
}

.corona_bnr {
	text-align: center;
	margin-bottom: 3.125em;
}
.oshirase_inner {
	display: flex;
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	justify-content: space-between;
	flex-direction: column;
	align-items: center;
}
.list_ccc {
	width: 100%;
}
.oshirase_list {
	list-style: none;
	padding: 0;
	width: 100%;
	margin-bottom: 4em;
}
.oshirase_list span ,.oshirase_list p {
	display: inline-block;
}
.oshirase_list span:nth-child(1) {
	margin-right: 2em;
	font-weight: 700;
	min-width: 10em;
}
.oshirase_list span.span_b a {
	font-size: 1.25em;
	color: #434343;
	text-decoration: none;
	font-weight: 500;
}
.oshirase_list li {
	border-top: 2px #e45d27 solid;
	padding: 1.25em 0;
	display: flex;
	align-items: baseline;
}
.oshirase_list li:last-child {
	border-bottom: 2px #e45d27 solid;
}

/* メッセージここから */
.area_3_box {
	font-size: 1em;
	color: #434343;
	text-decoration: none;
	font-weight: 500;
	position: relative;
}
.area_3_box::after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0;
	background: url(/img/ruins-nakahama/main_bg_wave_white2.png);
	width: 100%;
	height: 110px;
	z-index: 1;
	background-position: center;
	background-size: cover;
}
.message_box {
	text-align: center;
	background-image: url(/img/ruins-nakahama/img_bg.jpg);
	background-color: #FFF;
	padding: 10em 2.5% 4em;
	background-position: bottom;
	background-size: cover;
}
.orange_text {
	font-size: 2em;
	font-weight: 700;
	color: #FFFFFF;
	text-shadow: 0px 0px 10px #e45d27, 0px 0px 10px #e45d27, 0px 0px 10px #e45d27;
	margin-bottom: 4em;
	padding-top: 1.25em;
}
.orange_text_top {
	margin-bottom: 1em;
}
.orange_text span {
	white-space: nowrap;
}
.message_item {
	display: flex;
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	justify-content: space-between;
	align-items: center;
	gap: 1.5%;
	flex-wrap: wrap;
}
.message_item.item1 {
	margin-bottom: 6em;
}
.message_item p {
	font-size: 1.625em;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 3;
	text-align: left;
	text-shadow: 0px 0px 10px rgb(0 0 0 / 100%);
}
.message_item p > span {
	white-space: nowrap;
}
.message_item.item1 .col-lg-5 {
	width: 570px;
}
.message_item.item1 .col-lg-XXX {
	max-width: calc(100% - 570px - 1.5%);
}
.message_item.item2 .col-lg-7 {
	width: 650px;
}
.message_item.item2 .col-lg-XXX {
	max-width: calc(100% - 650px - 1.5%);
}
/* メッセージここまで */

/* カレンダーここから */
.area_4_box {
	position: relative;
	padding: 0 2.5%;
}
.calendar_box {
	display: flex;
	flex-direction: column;
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	align-items: center;
	padding: 6.25em 0 0;
}
.googleCalender {
	width: 100%;
	max-width: 800px;
}
.googleCalender iframe {
	width: 100%;
	height: 400px;
}
@media all and (min-width: 768px) {
	.googleCalender iframe {
		height: 600px;
	}
}
.calendar_box iframe {
	margin-bottom: 3em;
}
.kuwashiku_btn_wrap {
	padding: 0 0.5em;
}
.calendar_box .kuwashiku_btn.calendar {
	width: 380px;
	max-width: 100%;
	padding: 1em 3em;
	font-size: 1.125em;
}
.area_4_box::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	background: url(/img/ruins-nakahama/main_bg_wave_white.png);
	width: 100%;
	height: 83px;
	z-index: 1;
	background-position: center;
	background-size: cover;
}
.calender_memo_area {
	max-width: 480px;
	width: 100%;
	margin: 0 auto 2.5em;
	padding: 1.3em 1.8em;
	background-color: #F6F0E1;
	text-align: left;
	font-size: 0.95em;
	text-align: center;
	box-sizing: border-box;
}
.calender_memo_area_inner {
	max-width: 450px;
	width: 100%;
	display: inline-block;
	text-align: left;
	box-sizing: border-box;
}
.calender_memo_area h3 {
	margin: 0.5em 0;
}
/* カレンダーここまで */

/* 各種SNSここから */
.area_5_box {
	text-align: center;
	background-image: url(/img/ruins-nakahama/main_bg.png);
	background-size: cover;
	background-color: #FFF;
	padding: 9em 2.5% 5em;
	background-position: top;
	position: relative;
}

.sns_top {
	width: 50%;
	margin: 0 auto;
	margin-bottom: 22px;
}

.sns_inner {
	display: flex;
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	justify-content: space-between;
	margin-bottom: 3.25em;
	gap: 1.5em 1.5%;
}
.sns_inner a + span.external_link_text {
	display: none;
}
.sns_left {
	width: 100%;
}
.sns_right {
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: space-between;
}
/* 各種SNSここまで */

/* 関連リンクここから */
.link_title {
	margin-bottom: 2.5em;
}
.link_title::after {
	content: "ー Link ー";
	position: absolute;
	top: 50px;
	left: 0px;
	font-size: 0.5em;
	font-weight: 700;
	color: #e45d27;
	width: 100%;
	text-align: center;
}
.link_inner {
	display: flex;
	gap: 0.8em 0.8em;
	justify-content: center;
	flex-wrap: wrap;
}
.link_inner a {
	width: calc(25% - 0.8em);
	max-width: 350px;
}
.link_inner a + span.external_link_text {
	display: none;
}
/* 関連リンクここまで */

/* 地図ここから */
.map_box {
	*height: 0;
	height: 400px;
	overflow: hidden;
	*padding-bottom: 21%;
	position: relative;
}
.map_box a, .map_box a:link {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2em;
	font-size: 112.5%;
	text-align: center;
	font-weight: 700;
	color: #4b3c2e;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 0.75em;
	margin: 0 auto;
	border-radius: 50px;
	max-width: 250px;
	width: 100%;
	border-top: #4b3c2e 1px solid;
	border-bottom: #4b3c2e 4px solid;
	border-right: #4b3c2e 1px solid;
	border-left: #4b3c2e 1px solid;
}
.map_box a::after {
	content: url(/img/ruins-nakahama/main_btn_icon.png);
	position: absolute;
	top: 15px;
	right: 30px;
}
.map_box a:hover {
	opacity: 0.8;
}
/* 地図ここまで */


/* フッターここから */
#footer {
	background-image: url(/img/ruins-nakahama/footer_bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 3em 2.5%;
	position: relative;
}
.footer_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 100%;
	width: 1200px;
	margin: 0 auto;
	background-color: rgba(255,255,255,0.8);
	border-radius: 30px;
	padding: 3em 1.5em;
	box-sizing: border-box;
}
.footer_logo {
	margin-bottom: 2em;
}
.footer_inner p {
	margin: 1.25em 0;
	line-height: 1.5;
}
.footer_flex {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 800px;
	flex-wrap: wrap;
	gap: 3.5em 2.5%;
	box-sizing: border-box;
}
.footer_flex > div {
	max-width: 47.5%;
}
.footer_flex span {
	font-size: 1.25em;
	font-weight: 700;
	color: #2a1d11;
	position: relative;
	padding: 0 0 0 1.6em;
	padding: 0 0 0 0;
}
.footer_flex span::before {
	*content: "";
	*width: 20px;
	*height: 2px;
	*background-color: #2a1d11;
	*display: inline-block;
	*position: absolute;
	*top: calc(50% - 2px / 2);
	*left: 0;
}

#footer .kuwashiku_btn.footer {
	margin: 0;
	border-top: #e45d27 1px solid;
	border-bottom: #e45d27 4px solid;
	border-right: #e45d27 1px solid;
	border-left: #e45d27 1px solid;
	font-size: 1.125em;
    width: 280px;
    padding: 0.5em 2em;
}
#footer .kuwashiku_btn.footer::before {
	content: url(/img/ruins-nakahama/contact_icon.png);
	position: absolute;
	top: calc(50% - 22px / 2);
    left: 15px;
}
#footer .kuwashiku_btn.footer::after {
	content: url(/img/ruins-nakahama/contact_arrow.png);
	position: absolute;
	top: calc(50% - 20px / 2);
    right: 15px;
}
.copySection {
	text-align: center;
	color: #FFF;
	width: 100%;
	background-color: #50352d;
	font-size: 0.75em;
	font-weight: 100;
}
.copySection p {
	margin: 0;
	padding: 0.5em
}
/* フッターここまで */

/* 下層ここから */
body:not(.site-index-ruins-nakahama) .header_wrap {
	position: relative;
	padding: 0em;
}
body:not(.site-index-ruins-nakahama) .header_wrap #header {
	width: 100%;
	line-height: 0;
	background-color: #fff6e6;
}
body:not(.site-index-ruins-nakahama) .header_wrap #header .header_top {
	padding: 2em 2.5% 1em;
	width: 100%;
	max-width: 98%;
	height: auto;
	position: static;
	box-sizing: border-box;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
}
body:not(.site-index-ruins-nakahama) .header_wrap nav#NavMenu {
	border-bottom: none;
	background-color: #fff6e6;
}
body:not(.site-index-ruins-nakahama) .header_wrap nav#NavMenu ul {
	max-width: 1600px;
}

/*- 下層見出し1ここから -*/
body:not(.site-index-ruins-nakahama) .header_wrap #main_header {
	background-image: url(/img/ruins-nakahama/bg_h1.jpg);
	height: auto;
	background-size: cover;
	background-position: center;
	position: relative;
	margin: 0;
	min-height: 400px;
}
body:not(.site-index-ruins-nakahama) .header_wrap #main_header div.h1_wrap {
	width: 100%;
	height: 100%;
	min-height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5em;
	box-sizing: border-box;
}
body:not(.site-index-ruins-nakahama) .header_wrap #main_header div.h1_wrap h1 {
	margin: 0;
	padding: 1.4em;
	font-size: 2.25em;
	background-color: rgba(255,255,255,0.75);
	border-radius: 15px;
	color: #50352d;
	line-height: 1.5;
}
/*- 下層見出し1ここまで -*/

/*- パンくずここから -*/
.pankuzu_wrap {
	box-shadow: 0px 6px 10px -5px rgba(0,0,0,0.2);
}
.pankuzu {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 1em 0.5em;
	box-sizing: border-box;
}
.pankuzu > a {
}
.pankuzu > span {
	color: #e45d27;
	position: relative;
	padding: 0 0.75em;
}
.pankuzu > span::before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8.7px;
	border-color: transparent transparent transparent #e45d27;
	top: calc(50% - 10px / 2);
	left: calc(50% - 8.7px / 2);
}

/*- パンくずここまで -*/
body:not(.site-index-ruins-nakahama) #content_header {
	text-align: right;
}
/*- コンテンツヘッダーここから -*/
body:not(.site-index-ruins-nakahama) #content_header > span {
	margin: ;
	padding: 0 0.5em;
}
/*- コンテンツヘッダーここまで -*/
/*- メインコンテンツここから -*/
body:not(.site-index-ruins-nakahama) #main_body {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 2.5em 2.5% 7.5em;
	box-sizing: border-box;
}
/*- メインコンテンツここまで -*/

/*- 見出しなどここから -*/
.btn_reserve {
	margin: 1.5em 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8em 2.5%;
}
.btn_reserve a, .btn_reserve a:link, .btn_reserve a:visited {
	color: #212121;
	background-color: #fadbb3;
	text-decoration: none;
	font-size: 1.25em;
	font-weight: 500;
	display: block;
	max-width: 15em;
	min-width: 10em;
	padding: 0.5em 2em;
	border-radius: 100vh;
	border: 3px solid #ee8600;
	transition: 0.3s;
	text-align: center;
}
.btn_reserve a:hover {
	color: #fff;
	background-color: #ee8600;
}

body:not(.site-index-ruins-nakahama) h2 {
	margin: 1.6em 0 1em;
	padding: 0.75em 0.5em 0.75em 1.8em;
	font-size: 1.75em;
	color: #fff;
	background-color: #50352d;
	border-radius: 100vh;
	position: relative;
}
body:not(.site-index-ruins-nakahama) h2::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 100vh;
	border: 1px dashed #a0a0a0;
	position: absolute;
	left: -0.4em;
	top: -0.4em;
	pointer-events: none;
}
body:not(.site-index-ruins-nakahama) h3 {
	margin: 1.6em 0 1em;
	padding: 0.65em 0.5em 0.65em 1.2em;
	color: #323232;
	background: #fef7ec;
	font-size: 1.5em;
	position: relative;
}
body:not(.site-index-ruins-nakahama) h3::before {
	content: '';
	background: rgb(80,53,45);
	background: linear-gradient(180deg, rgb(80, 53, 45) 75%, rgb(228, 93, 39) 75%);
	width: 5px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
body:not(.site-index-ruins-nakahama) h4 {
	font-size: 1.25em;
	color: #4c4c4c;
	border-bottom: 3px solid #50352d;
	position: relative;
	background-color: #f5f5f5;
	margin: 1.6em 0 1em;
	padding: 0.5em 0.5em 0.5em 1.5em;
}

body:not(.site-index-ruins-nakahama) h5 {
	color: #50352d;
	font-size: 1.125em;
	position: relative;
	margin: 1.6em 0 1em;
	padding: 0.5em 0.5em 0.5em 0.5em;
	border-bottom: 2px dotted #50352d;
}
body:not(.site-index-ruins-nakahama) #main_body ul {
	list-style-type: none;
}
body:not(.site-index-ruins-nakahama) #main_body ul li {
	position: relative;
}
body:not(.site-index-ruins-nakahama) #main_body ul li::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 100vh;
	position: absolute;
	background-color: #e45d27;
	left: -1em;
	top: 10px;
}
/*- 見出しなどここまで -*/

/*- 沿革デザインここから -*/
.history_wrapper {
	margin: 3.5em 0 3.5em;
	padding: 0 0 0 2.5%;
}
.history_inner {
	display: flex;
	gap: 2.5%;
	padding: 0 1em 3em 1em;
	border-left: 1px solid #333;
	position: relative;
}
.history_inner::before {
	content: '';
	position: absolute;
	left: -7px;
	top: -7px;
	width: 14px;
	height: 14px;
	background-color: #e45d27;
	border-radius: 100vh;
	z-index: 999;
}
.history_inner:last-child {
	border-left: none;
}
.history_inner .history_left {
	width: 25%;
	min-width: 300px;
	position: relative;
}
.history_inner .history_left::before {
	content: '';
	position: absolute;
	left: -1em;
	top: 0;
	background-color: #c2cbcc;
	width: 3.5em;
	height: 1px;
}
.history_inner .history_right {
	width: 75%;
}
body:not(.site-index-ruins-nakahama) .history_left h3 {
	margin: -0.75em 0 2em 2em;
	padding: 0;
	background: transparent;
}
body:not(.site-index-ruins-nakahama) .history_left h3::before {
	display: none;
}
body:not(.site-index-ruins-nakahama) #main_body .history_right ul {
	margin: -0.75em 0 0 0;
}
@media all and (max-width:767px){
	.history_inner {
		flex-wrap: wrap;
	}
	body:not(.site-index-ruins-nakahama) .history_left h3 {
		margin: -0.75em 0 1em 0.5em;
	}
	.history_inner .history_left::before {
		width: 1.5em;
	}
	.history_inner .history_left, .history_inner .history_right {
		width: 100%;
	}
}
/*- 沿革デザインここまで -*/

/*- 大メニューページここから -*/
body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-2-main ul {
	display: flex;
	gap: 1.5em 5%;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style-type: none;
}
body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-2-main ul li {
	box-sizing: border-box;
	font-size: 1.25em;
	border-radius: 0px 10px 10px 0px;
	position: relative;
	width: 47.5%;
	transition: 0.3s;
	list-style-type: none;
}
body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-2-main ul li::before {
	display: none;
}
body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-2-main ul li::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	z-index: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: #e1e1e1;
	border-radius: 0 10px 10px 0;
}
body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-2-main ul li:hover {
	opacity: 0.8;
}
body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-2-main ul li a {
	display: block;
	position: relative;
	z-index: 1;
	background-color: #FEF8EC;
	padding: 1em 3.5em 1em 1.5em;
	border-left: 10px solid #50352C;
	border-radius: 0 10px 10px 0;
	text-decoration: none;
	font-weight: 700;
}
body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-2-main ul li a::after {
	content: '';
	position: absolute;
	top: calc(50% - 32px / 2);
	right: 1em;
	background-image: url(/img/ruins-nakahama/icon_list2.png);
	display: block;
	width: 32px;
	height: 32px;
	background-size: contain;
}
/*- 大メニューページここまで -*/
/*- 小メニューぺーじここから -*/
.list_ccc.list-1-main {
	border: 25px solid #CCE0F9;
	border-radius: 10px;
	padding: 0.2em 2em 1em 2em;
	box-sizing: border-box;
}
body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-1-main ul {
	margin: 0;
	padding: 0;
}
body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-1-main ul li {
	padding: 1.2em 0.5em 1em;
	border-bottom: 1px dashed #212121;
	display: flex;
}
body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-1-main ul li::before {
	display: none;
}
body:not(.site-index-ruins-nakahama) #main_body ul li .span_a {
	min-width: 12em;
}

body:not(.site-index-ruins-nakahama) #main_body ul li .span_a .span_a_inner {
	display: inline-block;
	margin-right: 1.5em;
	padding: 0em 0.5em;
	font-weight: 700;
	color: #51342E;
	background-color: #E0CBC6;
	border-radius: 5px;
}
/*- 小メニューぺーじここまで -*/
/* 下層ここまで */

/* 本田追加 */
.about_box {
  flex-direction: column;
  align-items: center;
}
.about_left {
  width: 60%;
}
.about_right {
  width: 62.5%;
}

@media (max-width: 1460px) {
	.header_top {
		max-width: 100%;
		height: auto;
		min-height: 10em;
		top: 0;
		flex-direction: column;
		border-radius: 0;
		position: relative;
		padding: 2em 3em;
	}
}/* @media (max-width: 1460px) */

@media (max-width: 1280px) {
	#NavMenu ul li {
		padding-right: 0.65em;
		padding-left: 0.65em;
		list-style: none;
	}
	.mega_menu_title {
		font-size: 0.75em;
	}

	/* メッセージここから */
	.orange_text {
		font-size: 1.875em;
		margin-bottom: 1.5em;
		padding-top: 1.5em;
	}
	.message_item.item1 .col-lg-5 {
		width: 510px;
	}
	.message_item.item1 .col-lg-XXX {
		max-width: calc(100% - 510px - 1.5%);
	}
	.message_item.item2 .col-lg-7 {
		width: 560px;
	}
	.message_item.item2 .col-lg-XXX {
		max-width: calc(100% - 560px - 1.5%);
	}
	.message_item p {
		font-size: 1.375em;
		line-height: 2.4;
	}
	/* メッセージここまで */
}/* @media (max-width: 1280px) */

@media (max-width: 991px){
	.hamburger-menu .menu-content {
		background-image: url(/img/ruins-nakahama/main_bg.png);
		background-color: transparent;
	}
	.menu-content .sp-menu-anchor ul li {
		border-bottom: solid 1px #461b06;
		line-height: 1.25;
	}
	.menu-content .sp-menu-anchor ul li a, .menu-content .sp-menu-anchor ul li strong {
		color: #461b06;
		font-weight: 500;
		background-color: #fffdf6;
	}
	.menu-content .sp-menu-anchor ul li a::before, .menu-content .sp-menu-anchor ul li strong::before {
		top: calc(50% - 7px * 1.41421356 / 2);
		right: 1.5em;
		border-top: solid 2px #461b06;
		border-right: solid 2px #461b06;
	}
	.menu-content .sp-menu-anchor ul li strong {
		background-color: rgba(227,227,227,0.8);
	}
	.menu-content .sp-menu-anchor ul li strong::before {
		display: none;
	}
	body.ruins-nakahama .main .header_right_item.leaflet {
		justify-content: center;
	}
	body.ruins-nakahama .main .header_right_item.leaflet a {
		margin: 1em 0 0;
	}
	.menu-btn {
		position: fixed;
		top: 10px;
		right: 10px;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		background-color: #e45d27;
		border: 2px solid #FFF;
		cursor: pointer;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #ffffff;
		position: absolute;
	}
	.menu-btn span:before {
		bottom: 8px;
	}
	.menu-btn span:after {
		top: 8px;
	}
	#menu-btn-check:checked ~ .menu-btn span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	.menu-btn {
		top: 17px;
		right: 17px;
	}
	#container > #NavMenu, body:not(.site-index-ruins-nakahama) .header_wrap nav#NavMenu {
		display: none;
	}
	.header_top {
		align-items: center;
		justify-content: center;
		padding: 1.875em;
		min-height: 0;
	}

	.header_wrap .slick-dots {
		bottom: 10px;
	}
	.about_box {
		position: relative;
		margin-bottom: 0em;
	}
	#page_top {
		width: 50px;
		height: 50px;
		position: fixed;
		right: 10px;
		bottom: 10px;
		background: #e45d27;
		opacity: 1;
		border-radius: 50%;
		z-index: 10000;
		border: 2px solid #FFF;
	}
	.header_right {
		display: none;
	}

	/* Aboutここから */
	.about_wrap {
		padding: 3em 2.5% 1em;
	}
	.top_title {
		font-size: 1.875em;
		margin-bottom: 2.5em;
	}
    .about_left, .about_right {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
	.about_left p {
		font-size: 1.125em;
		margin-bottom: 1.5em;
	}
	/* Aboutここまで */

	/* Newsここから */
	.oshirase_list {
		margin-bottom: 3em;
	}
	.oshirase_list span.span_b a {
		font-size: 1.125em;
	}
	/* Newsここまで */

	/* メッセージここから */
	.message_item > div {
		width: 100%;
	}
	.message_item.item1 .col-lg-5 {
		max-width: 550px;
		min-width: 0;
		width: auto;
		margin: 0 auto 0 0;
	}
	.message_item.item1 .col-lg-XXX {
		max-width: none;
		padding-left: 15%;
	}
	.message_item.item2 .col-lg-7 {
		max-width: 550px;
		min-width: 0;
		width: auto;
		margin: 0 0 0 auto;
		order: 1;
	}
	.message_item.item2 .col-lg-XXX {
		order: 2;
		max-width: none;
		padding-right: 15%;
	}
	.message_item p {
		*line-height: 2.5;
	}
	/* メッセージここまで */

	/* 下層ここから */
	/*- 下層ヘッダーここから -*/
	body:not(.site-index-ruins-nakahama) .header_wrap #header .header_top {
		padding: 1.5em 2.5% 1.5em;
	}
	/*- 下層ヘッダーここまで -*/
	/* 下層ここまで */
}/*@media (max-width: 991px)*/

@media (max-width: 767px) {
	.header_top {
		align-items: flex-start;
		padding: 1.875em 1.5em;
	}
	.menu-btn {
		top: 20px;
		right: 10px;
	}
	.header_wrap .slick-dots {
		bottom: 5px;
	}
	.top_title {
		font-size: 1.5em;
		margin-bottom: 2.5em;
	}
	.kuwashiku_btn::after {
		right: 21px;
	}
	.bnr_box {
		flex-direction: column;
	}
	.bnr_box a {
		width: 95%;
		text-align: center;
	}
	.bnr_box img {
		margin: 0;
	}
	.footer_inner {
		width: 100%;
		margin: 0 auto;
	}
	.page-header_pageTitle {
		font-size: 1.875em;
	}
	/* スクロールヒントここから */
	.js-scrollable {
		width: 100%;
		white-space: nowrap;
		overflow-x: scroll;
	}
	/* スクロールヒントここまで */
	/* スライドショーここから */
	.slick-prev, .slick-next {
		width: 20px !important;
		height: 31px !important;
	}
	.slick-next::before {
		content: '' !important;
		opacity: 1 !important;
		background-image: url(/img/ruins-nakahama/slide_right.png);
		width: 20px;
		height: 31px;
		background-size: contain;
	}
	.slick-prev::before {
		content: '' !important;
		opacity: 1 !important;
		background-image: url(/img/ruins-nakahama/slide_left.png) !important;
		width: 20px;
		height: 31px;
		background-size: contain;
	}
	.slick-next {
		right: 2.5% !important;
		z-index: 3;
	}
	.slick-prev {
		left: 2.5% !important;
		z-index: 3;
	}
	/* スライドショーここまで */
	/* 新着情報ここから */
	.news_title::after {
	}
	/* 新着情報ここまで */
	/* カレンダーここから */
	.link_inner a {
		width: calc(50% - 0.8em);
	}
	.calendar_title::after {
		top: 35px;
	}
	/* カレンダーここまで */
	/* 各種SNSここから */
	.sns_title::after {
	}
	/* 各種SNSここまで */
	/* 関連リンクここから */
	.link_title::after {
	}
	/* 関連リンクここまで */

	/* フッターここから */
	.footer_flex > div {
		max-width: 100%;
		margin: 0 auto;
	}
	.footer_inner {
		padding: 5em 1.5em 1em;
	}
	/* フッターここまで */

	/* 下層ここから */
	/*- 下層ヘッダーここから -*/
	body:not(.site-index-ruins-nakahama) .header_wrap #main_header div.h1_wrap h1 {
		padding: 0.6em 1.2em;
		font-size: 1.75em;
	}
	/*- 下層ヘッダーここまで -*/
	/*- 見出し1ここから -*/
	body:not(.site-index-ruins-nakahama) .header_wrap #main_header, body:not(.site-index-ruins-nakahama) .header_wrap #main_header div.h1_wrap {
		min-height: 250px;
	}
	/*- 見出し1ここまで -*/
	/*- パンくずここから -*/
	.pankuzu {
		padding: 0.75em 0.75em;
		font-size: 0.9em;
	}
	/*- パンくずここまで -*/
	/*- メインコンテンツここから -*/
	body:not(.site-index-ruins-nakahama) #content_header {
		font-size: 0.9em;
	}
	body:not(.site-index-ruins-nakahama) h2 {
		font-size: 1.25em;
	}
	body:not(.site-index-ruins-nakahama) h2::before {
		top: -0.3em;
		left: -0.3em;
	}
	body:not(.site-index-ruins-nakahama) h3 {
		font-size: 1.15em;
	}
	body:not(.site-index-ruins-nakahama) h4 {
		font-size: 1.05em;
	}
	body:not(.site-index-ruins-nakahama) h5 {
		font-size: 1em;
	}
	.btn_reserve a, .btn_reserve a:link, .btn_reserve a:visited {
		font-size: 1.05em;
	}
	/*- メインコンテンツここまで -*/
	/*- 大メニューここから -*/
	body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-2-main ul li {
		font-size: 1.125em;
		width: 100%;
	}
	/*- 大メニューここまで -*/
	/*- 小メニューここから -*/
	body:not(.site-index-ruins-nakahama) #main_body ul li .span_a, body:not(.site-index-ruins-nakahama) #main_body ul li {
		flex-wrap: wrap;
	}
	body:not(.site-index-ruins-nakahama) #main_body ul li .span_a, body:not(.site-index-ruins-nakahama) #main_body ul li .span_b {
		width: 100%;
	}
	body:not(.site-index-ruins-nakahama) #main_body ul li .span_a .span_a_inner {
		font-size: 0.8em;
	}
	body:not(.site-index-ruins-nakahama) #main_body ul li .span_b {
		font-size: 0.9em;
	}
	/*- 小メニューここまで -*/
	/* 下層ここまで */
}/*@media (max-width: 767px)*/

@media (max-width: 580px) {
	#main_contents p {
		padding: 0 0.5em;
	}
	/* ヘッダーここから */
	.header_left {
		max-width: 350px;
	}
	.header_top {
	}
	.menu-btn {
		top: 10px;
		right: 10px;
	}
	/* ヘッダーここまで */

	/* Aboutここから */
	.top_title {
		font-size: 1.5em;
	}
	.about_left p {
		font-size: 1em;
		line-height: 2.2;
	}
	.about_title::after {
		top: 2.75em;
		font-size: 0.575em;
	}
	/* Aboutここまで */

	/* 新着情報ここから */
	.news_title::after {
		top: 2.75em;
		font-size: 0.575em;
	}
	.oshirase_list {
		margin-bottom: 3em;
	}
	.oshirase_list li {
		display: block;
		padding: 0.8em 0;
	}
	.oshirase_list span:nth-child(1) {
		width: 100%;
		font-size: 0.875em;
	}
	.oshirase_list span.span_b a {
		font-size: 1em;
	}
	.text_d2 .kuwashiku_btn, .about_left .kuwashiku_btn, #footer .kuwashiku_btn, .calendar_box .kuwashiku_btn {
		padding: 0.5em 3em;
		font-size: 1em;
	}
	.kuwashiku_btn::after {
		top: calc(50% - 20px / 2);
	}
	/* 新着情報ここまで */
	/* メッセージここから */
	.orange_text {
		font-size: 1.5em;
		margin-bottom: 2em;
		padding-top: 1em;
	}
	.message_item p {
		font-size: 1.125em;
		line-height: 2.2;
	}
	/* メッセージここまで */
	/* カレンダーここから */
	.calendar_title::after {
		top: 2.75em;
		font-size: 0.575em;
	}
	.link_inner a {
		width: calc(100%);
	}
	.calendar_box {
		padding: 4.25em 0 0;
	}
	/* カレンダーここまで */
	/* 各種SNSここから */
	.sns_title::after {
		top: 2.75em;
		font-size: 0.575em;
	}
  .sns_top {
		width: 100%;
		margin: 0;
	}
	.sns_inner {
		flex-wrap: wrap;
	}
	.sns_right {
		gap: 1.5em 0;
	}
	/* 各種SNSここまで */

	/* 関連リンクここから */
	.link_title::after {
		top: 2.75em;
		font-size: 0.575em;
	}
	/* 関連リンクここまで */
	/* フッターここから */
	.footer_logo {
		margin-bottom: 1.4em;
	}
	.footer_inner {
		padding: 2.5em 1.5em 1em;
	}
	.footer_flex span {
		font-size: 1.05em;
	}
	.footer_flex {
		gap: 3em 5%;
	}
	.footer_inner p {
		margin: 0.5em 0 1em;
		font-size: 0.9em;
		line-height: 1.8;
	}
	#footer {
		padding: 3.25em 2.5% 6.25em;
	}
	#footer .kuwashiku_btn.footer::before {
		top: calc(50% - 22px / 2);
	}
	#footer .kuwashiku_btn.footer::after {
		top: calc(50% - 20px / 2);
	}
	/* フッターここまで */
	/* 下層ここから */
	/*- 見出し1ここから -*/
	body:not(.site-index-ruins-nakahama) .header_wrap #main_header, body:not(.site-index-ruins-nakahama) .header_wrap #main_header div.h1_wrap {
		min-height: 200px;
	}
	body:not(.site-index-ruins-nakahama) .header_wrap #main_header div.h1_wrap h1 {
		padding: 0.6em 1.2em;
		font-size: 1.5em;
	}
	/*- 見出し1ここまで -*/
	/*- 大メニューここから -*/
	body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-2-main ul {
		gap: 1em 5%;
	}
	body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-2-main ul li {
		font-size: 1em;
	}
	body:not(.site-index-ruins-nakahama) #main_body .list_ccc.list-2-main ul li a {
		display: block;
		position: relative;
		z-index: 1;
		background-color: #FEF8EC;
		padding: 0.8em 3.5em 0.8em 1em;
		border-left: 10px solid #50352C;
		border-radius: 0 10px 10px 0;
		text-decoration: none;
		font-weight: 700;
	}
	/*- 大メニューここまで -*/
	/*- 小メニューここから -*/
	.list_ccc.list-1-main {
		border: 10px solid #CCE0F9;
		padding: 0.2em 0.5em 1em 0.5em;
	}
	/*- 小メニューここまで -*/
	/* 下層ここまで */
}/*@media (max-width: 580px)*/

@media (max-width: 470px) {
	.header_left {
		max-width: 300px;
	}

	/* メッセージここから */
	.orange_text {
		font-size: 1.25em;
		margin-bottom: 2em;
		padding-top: 1em;
	}
	.message_item p {
		font-size: 1em;
		line-height: 2.2;
	}
	.message_item.item1 {
		margin-bottom: 4em;
	}
	/* メッセージここまで */

	/* カレンダーここから */
	.calendar_box {
		padding: 3.5em 0 0;
	}
	/* カレンダーここまで */
}/*@media (max-width: 470px)*/

@media (max-width: 420px) {
	.header_left {
		max-width: 260px;
	}
	.header_top {
	}
	.menu-btn {
		height: 40px;
		width: 40px;
		top: 15px;
		right: 10px;
	}
	.menu-content ul {
		padding: 3em 1em 0.5em;
	}
}/*@media (max-width: 420px)*/

@media (max-width: 374px) {
	.kuwashiku_btn.calendar {
		width: 300px;
		max-width: 100%;
	}
}



/* グリッドシステムここから */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.container-sm, .container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container-md, .container-sm, .container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container-lg, .container-md, .container-sm, .container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container-xl, .container-lg, .container-md, .container-sm, .container {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
		max-width: 1320px;
	}
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(var(--bs-gutter-y) * -1);
	margin-right: calc(var(--bs-gutter-x) / -2);
	margin-left: calc(var(--bs-gutter-x) / -2);
}

.row>* {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) / 2);
	padding-left: calc(var(--bs-gutter-x) / 2);
	margin-top: var(--bs-gutter-y);
}

.col {
	flex: 1 0 0%;
}

.row-cols-auto>* {
	flex: 0 0 auto;
	width: auto;
}

.row-cols-1>* {
	flex: 0 0 auto;
	width: 100%;
}

.row-cols-2>* {
	flex: 0 0 auto;
	width: 50%;
}

.row-cols-3>* {
	flex: 0 0 auto;
	width: 33.3333333333%;
}

.row-cols-4>* {
	flex: 0 0 auto;
	width: 25%;
}

.row-cols-5>* {
	flex: 0 0 auto;
	width: 20%;
}

.row-cols-6>* {
	flex: 0 0 auto;
	width: 16.6666666667%;
}

.col-auto {
	flex: 0 0 auto;
	width: auto;
}

.col-1 {
	flex: 0 0 auto;
	width: 8.3333333333%;
}

.col-2 {
	flex: 0 0 auto;
	width: 16.6666666667%;
}

.col-3 {
	flex: 0 0 auto;
	width: 25%;
}

.col-4 {
	flex: 0 0 auto;
	width: 33.3333333333%;
}

.col-5 {
	flex: 0 0 auto;
	width: 41.6666666667%;
}

.col-6 {
	flex: 0 0 auto;
	width: 50%;
}

.col-7 {
	flex: 0 0 auto;
	width: 58.3333333333%;
}

.col-8 {
	flex: 0 0 auto;
	width: 66.6666666667%;
}

.col-9 {
	flex: 0 0 auto;
	width: 75%;
}

.col-10 {
	flex: 0 0 auto;
	width: 83.3333333333%;
}

.col-11 {
	flex: 0 0 auto;
	width: 91.6666666667%;
}

.col-12 {
	flex: 0 0 auto;
	width: 100%;
}

.offset-1 {
	margin-left: 8.3333333333%;
}

.offset-2 {
	margin-left: 16.6666666667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.3333333333%;
}

.offset-5 {
	margin-left: 41.6666666667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.3333333333%;
}

.offset-8 {
	margin-left: 66.6666666667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.3333333333%;
}

.offset-11 {
	margin-left: 91.6666666667%;
}

.g-0,
.gx-0 {
	--bs-gutter-x: 0;
}

.g-0,
.gy-0 {
	--bs-gutter-y: 0;
}

.g-1,
.gx-1 {
	--bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
	--bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
	--bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
	--bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
	--bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
	--bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
	--bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
	--bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
	--bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
	--bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
	.col-sm {
		flex: 1 0 0%;
	}

	.row-cols-sm-auto>* {
		flex: 0 0 auto;
		width: auto;
	}

	.row-cols-sm-1>* {
		flex: 0 0 auto;
		width: 100%;
	}

	.row-cols-sm-2>* {
		flex: 0 0 auto;
		width: 50%;
	}

	.row-cols-sm-3>* {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.row-cols-sm-4>* {
		flex: 0 0 auto;
		width: 25%;
	}

	.row-cols-sm-5>* {
		flex: 0 0 auto;
		width: 20%;
	}

	.row-cols-sm-6>* {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-sm-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-sm-1 {
		flex: 0 0 auto;
		width: 8.3333333333%;
	}

	.col-sm-2 {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-sm-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-sm-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.col-sm-5 {
		flex: 0 0 auto;
		width: 41.6666666667%;
	}

	.col-sm-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-sm-7 {
		flex: 0 0 auto;
		width: 58.3333333333%;
	}

	.col-sm-8 {
		flex: 0 0 auto;
		width: 66.6666666667%;
	}

	.col-sm-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-sm-10 {
		flex: 0 0 auto;
		width: 83.3333333333%;
	}

	.col-sm-11 {
		flex: 0 0 auto;
		width: 91.6666666667%;
	}

	.col-sm-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-sm-0 {
		margin-left: 0;
	}

	.offset-sm-1 {
		margin-left: 8.3333333333%;
	}

	.offset-sm-2 {
		margin-left: 16.6666666667%;
	}

	.offset-sm-3 {
		margin-left: 25%;
	}

	.offset-sm-4 {
		margin-left: 33.3333333333%;
	}

	.offset-sm-5 {
		margin-left: 41.6666666667%;
	}

	.offset-sm-6 {
		margin-left: 50%;
	}

	.offset-sm-7 {
		margin-left: 58.3333333333%;
	}

	.offset-sm-8 {
		margin-left: 66.6666666667%;
	}

	.offset-sm-9 {
		margin-left: 75%;
	}

	.offset-sm-10 {
		margin-left: 83.3333333333%;
	}

	.offset-sm-11 {
		margin-left: 91.6666666667%;
	}

	.g-sm-0,
	.gx-sm-0 {
		--bs-gutter-x: 0;
	}

	.g-sm-0,
	.gy-sm-0 {
		--bs-gutter-y: 0;
	}

	.g-sm-1,
	.gx-sm-1 {
		--bs-gutter-x: 0.25rem;
	}

	.g-sm-1,
	.gy-sm-1 {
		--bs-gutter-y: 0.25rem;
	}

	.g-sm-2,
	.gx-sm-2 {
		--bs-gutter-x: 0.5rem;
	}

	.g-sm-2,
	.gy-sm-2 {
		--bs-gutter-y: 0.5rem;
	}

	.g-sm-3,
	.gx-sm-3 {
		--bs-gutter-x: 1rem;
	}

	.g-sm-3,
	.gy-sm-3 {
		--bs-gutter-y: 1rem;
	}

	.g-sm-4,
	.gx-sm-4 {
		--bs-gutter-x: 1.5rem;
	}

	.g-sm-4,
	.gy-sm-4 {
		--bs-gutter-y: 1.5rem;
	}

	.g-sm-5,
	.gx-sm-5 {
		--bs-gutter-x: 3rem;
	}

	.g-sm-5,
	.gy-sm-5 {
		--bs-gutter-y: 3rem;
	}
}

@media (min-width: 768px) {
	.col-md {
		flex: 1 0 0%;
	}

	.row-cols-md-auto>* {
		flex: 0 0 auto;
		width: auto;
	}

	.row-cols-md-1>* {
		flex: 0 0 auto;
		width: 100%;
	}

	.row-cols-md-2>* {
		flex: 0 0 auto;
		width: 50%;
	}

	.row-cols-md-3>* {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.row-cols-md-4>* {
		flex: 0 0 auto;
		width: 25%;
	}

	.row-cols-md-5>* {
		flex: 0 0 auto;
		width: 20%;
	}

	.row-cols-md-6>* {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-md-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-md-1 {
		flex: 0 0 auto;
		width: 8.3333333333%;
	}

	.col-md-2 {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-md-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-md-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.col-md-5 {
		flex: 0 0 auto;
		width: 41.6666666667%;
	}

	.col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-md-7 {
		flex: 0 0 auto;
		width: 58.3333333333%;
	}

	.col-md-8 {
		flex: 0 0 auto;
		width: 66.6666666667%;
	}

	.col-md-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-md-10 {
		flex: 0 0 auto;
		width: 83.3333333333%;
	}

	.col-md-11 {
		flex: 0 0 auto;
		width: 91.6666666667%;
	}

	.col-md-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-md-0 {
		margin-left: 0;
	}

	.offset-md-1 {
		margin-left: 8.3333333333%;
	}

	.offset-md-2 {
		margin-left: 16.6666666667%;
	}

	.offset-md-3 {
		margin-left: 25%;
	}

	.offset-md-4 {
		margin-left: 33.3333333333%;
	}

	.offset-md-5 {
		margin-left: 41.6666666667%;
	}

	.offset-md-6 {
		margin-left: 50%;
	}

	.offset-md-7 {
		margin-left: 58.3333333333%;
	}

	.offset-md-8 {
		margin-left: 66.6666666667%;
	}

	.offset-md-9 {
		margin-left: 75%;
	}

	.offset-md-10 {
		margin-left: 83.3333333333%;
	}

	.offset-md-11 {
		margin-left: 91.6666666667%;
	}

	.g-md-0,
	.gx-md-0 {
		--bs-gutter-x: 0;
	}

	.g-md-0,
	.gy-md-0 {
		--bs-gutter-y: 0;
	}

	.g-md-1,
	.gx-md-1 {
		--bs-gutter-x: 0.25rem;
	}

	.g-md-1,
	.gy-md-1 {
		--bs-gutter-y: 0.25rem;
	}

	.g-md-2,
	.gx-md-2 {
		--bs-gutter-x: 0.5rem;
	}

	.g-md-2,
	.gy-md-2 {
		--bs-gutter-y: 0.5rem;
	}

	.g-md-3,
	.gx-md-3 {
		--bs-gutter-x: 1rem;
	}

	.g-md-3,
	.gy-md-3 {
		--bs-gutter-y: 1rem;
	}

	.g-md-4,
	.gx-md-4 {
		--bs-gutter-x: 1.5rem;
	}

	.g-md-4,
	.gy-md-4 {
		--bs-gutter-y: 1.5rem;
	}

	.g-md-5,
	.gx-md-5 {
		--bs-gutter-x: 3rem;
	}

	.g-md-5,
	.gy-md-5 {
		--bs-gutter-y: 3rem;
	}
}

@media (min-width: 992px) {
	.col-lg {
		flex: 1 0 0%;
	}

	.row-cols-lg-auto>* {
		flex: 0 0 auto;
		width: auto;
	}

	.row-cols-lg-1>* {
		flex: 0 0 auto;
		width: 100%;
	}

	.row-cols-lg-2>* {
		flex: 0 0 auto;
		width: 50%;
	}

	.row-cols-lg-3>* {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.row-cols-lg-4>* {
		flex: 0 0 auto;
		width: 25%;
	}

	.row-cols-lg-5>* {
		flex: 0 0 auto;
		width: 20%;
	}

	.row-cols-lg-6>* {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-lg-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-lg-1 {
		flex: 0 0 auto;
		width: 8.3333333333%;
	}

	.col-lg-2 {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-lg-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.6666666667%;
	}

	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.3333333333%;
	}

	.col-lg-8 {
		flex: 0 0 auto;
		width: 66.6666666667%;
	}

	.col-lg-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-lg-10 {
		flex: 0 0 auto;
		width: 83.3333333333%;
	}

	.col-lg-11 {
		flex: 0 0 auto;
		width: 91.6666666667%;
	}

	.col-lg-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-lg-0 {
		margin-left: 0;
	}

	.offset-lg-1 {
		margin-left: 8.3333333333%;
	}

	.offset-lg-2 {
		margin-left: 16.6666666667%;
	}

	.offset-lg-3 {
		margin-left: 25%;
	}

	.offset-lg-4 {
		margin-left: 33.3333333333%;
	}

	.offset-lg-5 {
		margin-left: 41.6666666667%;
	}

	.offset-lg-6 {
		margin-left: 50%;
	}

	.offset-lg-7 {
		margin-left: 58.3333333333%;
	}

	.offset-lg-8 {
		margin-left: 66.6666666667%;
	}

	.offset-lg-9 {
		margin-left: 75%;
	}

	.offset-lg-10 {
		margin-left: 83.3333333333%;
	}

	.offset-lg-11 {
		margin-left: 91.6666666667%;
	}

	.g-lg-0,
	.gx-lg-0 {
		--bs-gutter-x: 0;
	}

	.g-lg-0,
	.gy-lg-0 {
		--bs-gutter-y: 0;
	}

	.g-lg-1,
	.gx-lg-1 {
		--bs-gutter-x: 0.25rem;
	}

	.g-lg-1,
	.gy-lg-1 {
		--bs-gutter-y: 0.25rem;
	}

	.g-lg-2,
	.gx-lg-2 {
		--bs-gutter-x: 0.5rem;
	}

	.g-lg-2,
	.gy-lg-2 {
		--bs-gutter-y: 0.5rem;
	}

	.g-lg-3,
	.gx-lg-3 {
		--bs-gutter-x: 1rem;
	}

	.g-lg-3,
	.gy-lg-3 {
		--bs-gutter-y: 1rem;
	}

	.g-lg-4,
	.gx-lg-4 {
		--bs-gutter-x: 1.5rem;
	}

	.g-lg-4,
	.gy-lg-4 {
		--bs-gutter-y: 1.5rem;
	}

	.g-lg-5,
	.gx-lg-5 {
		--bs-gutter-x: 3rem;
	}

	.g-lg-5,
	.gy-lg-5 {
		--bs-gutter-y: 3rem;
	}
}

@media (min-width: 1200px) {
	.col-xl {
		flex: 1 0 0%;
	}

	.row-cols-xl-auto>* {
		flex: 0 0 auto;
		width: auto;
	}

	.row-cols-xl-1>* {
		flex: 0 0 auto;
		width: 100%;
	}

	.row-cols-xl-2>* {
		flex: 0 0 auto;
		width: 50%;
	}

	.row-cols-xl-3>* {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.row-cols-xl-4>* {
		flex: 0 0 auto;
		width: 25%;
	}

	.row-cols-xl-5>* {
		flex: 0 0 auto;
		width: 20%;
	}

	.row-cols-xl-6>* {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-xl-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-xl-1 {
		flex: 0 0 auto;
		width: 8.3333333333%;
	}

	.col-xl-2 {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-xl-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-xl-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.col-xl-5 {
		flex: 0 0 auto;
		width: 41.6666666667%;
	}

	.col-xl-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-xl-7 {
		flex: 0 0 auto;
		width: 58.3333333333%;
	}

	.col-xl-8 {
		flex: 0 0 auto;
		width: 66.6666666667%;
	}

	.col-xl-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-xl-10 {
		flex: 0 0 auto;
		width: 83.3333333333%;
	}

	.col-xl-11 {
		flex: 0 0 auto;
		width: 91.6666666667%;
	}

	.col-xl-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-xl-0 {
		margin-left: 0;
	}

	.offset-xl-1 {
		margin-left: 8.3333333333%;
	}

	.offset-xl-2 {
		margin-left: 16.6666666667%;
	}

	.offset-xl-3 {
		margin-left: 25%;
	}

	.offset-xl-4 {
		margin-left: 33.3333333333%;
	}

	.offset-xl-5 {
		margin-left: 41.6666666667%;
	}

	.offset-xl-6 {
		margin-left: 50%;
	}

	.offset-xl-7 {
		margin-left: 58.3333333333%;
	}

	.offset-xl-8 {
		margin-left: 66.6666666667%;
	}

	.offset-xl-9 {
		margin-left: 75%;
	}

	.offset-xl-10 {
		margin-left: 83.3333333333%;
	}

	.offset-xl-11 {
		margin-left: 91.6666666667%;
	}

	.g-xl-0,
	.gx-xl-0 {
		--bs-gutter-x: 0;
	}

	.g-xl-0,
	.gy-xl-0 {
		--bs-gutter-y: 0;
	}

	.g-xl-1,
	.gx-xl-1 {
		--bs-gutter-x: 0.25rem;
	}

	.g-xl-1,
	.gy-xl-1 {
		--bs-gutter-y: 0.25rem;
	}

	.g-xl-2,
	.gx-xl-2 {
		--bs-gutter-x: 0.5rem;
	}

	.g-xl-2,
	.gy-xl-2 {
		--bs-gutter-y: 0.5rem;
	}

	.g-xl-3,
	.gx-xl-3 {
		--bs-gutter-x: 1rem;
	}

	.g-xl-3,
	.gy-xl-3 {
		--bs-gutter-y: 1rem;
	}

	.g-xl-4,
	.gx-xl-4 {
		--bs-gutter-x: 1.5rem;
	}

	.g-xl-4,
	.gy-xl-4 {
		--bs-gutter-y: 1.5rem;
	}

	.g-xl-5,
	.gx-xl-5 {
		--bs-gutter-x: 3rem;
	}

	.g-xl-5,
	.gy-xl-5 {
		--bs-gutter-y: 3rem;
	}
}

@media (min-width: 1400px) {
	.col-xxl {
		flex: 1 0 0%;
	}

	.row-cols-xxl-auto>* {
		flex: 0 0 auto;
		width: auto;
	}

	.row-cols-xxl-1>* {
		flex: 0 0 auto;
		width: 100%;
	}

	.row-cols-xxl-2>* {
		flex: 0 0 auto;
		width: 50%;
	}

	.row-cols-xxl-3>* {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.row-cols-xxl-4>* {
		flex: 0 0 auto;
		width: 25%;
	}

	.row-cols-xxl-5>* {
		flex: 0 0 auto;
		width: 20%;
	}

	.row-cols-xxl-6>* {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-xxl-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-xxl-1 {
		flex: 0 0 auto;
		width: 8.3333333333%;
	}

	.col-xxl-2 {
		flex: 0 0 auto;
		width: 16.6666666667%;
	}

	.col-xxl-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-xxl-4 {
		flex: 0 0 auto;
		width: 33.3333333333%;
	}

	.col-xxl-5 {
		flex: 0 0 auto;
		width: 41.6666666667%;
	}

	.col-xxl-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-xxl-7 {
		flex: 0 0 auto;
		width: 58.3333333333%;
	}

	.col-xxl-8 {
		flex: 0 0 auto;
		width: 66.6666666667%;
	}

	.col-xxl-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-xxl-10 {
		flex: 0 0 auto;
		width: 83.3333333333%;
	}

	.col-xxl-11 {
		flex: 0 0 auto;
		width: 91.6666666667%;
	}

	.col-xxl-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-xxl-0 {
		margin-left: 0;
	}

	.offset-xxl-1 {
		margin-left: 8.3333333333%;
	}

	.offset-xxl-2 {
		margin-left: 16.6666666667%;
	}

	.offset-xxl-3 {
		margin-left: 25%;
	}

	.offset-xxl-4 {
		margin-left: 33.3333333333%;
	}

	.offset-xxl-5 {
		margin-left: 41.6666666667%;
	}

	.offset-xxl-6 {
		margin-left: 50%;
	}

	.offset-xxl-7 {
		margin-left: 58.3333333333%;
	}

	.offset-xxl-8 {
		margin-left: 66.6666666667%;
	}

	.offset-xxl-9 {
		margin-left: 75%;
	}

	.offset-xxl-10 {
		margin-left: 83.3333333333%;
	}

	.offset-xxl-11 {
		margin-left: 91.6666666667%;
	}

	.g-xxl-0,
	.gx-xxl-0 {
		--bs-gutter-x: 0;
	}

	.g-xxl-0,
	.gy-xxl-0 {
		--bs-gutter-y: 0;
	}

	.g-xxl-1,
	.gx-xxl-1 {
		--bs-gutter-x: 0.25rem;
	}

	.g-xxl-1,
	.gy-xxl-1 {
		--bs-gutter-y: 0.25rem;
	}

	.g-xxl-2,
	.gx-xxl-2 {
		--bs-gutter-x: 0.5rem;
	}

	.g-xxl-2,
	.gy-xxl-2 {
		--bs-gutter-y: 0.5rem;
	}

	.g-xxl-3,
	.gx-xxl-3 {
		--bs-gutter-x: 1rem;
	}

	.g-xxl-3,
	.gy-xxl-3 {
		--bs-gutter-y: 1rem;
	}

	.g-xxl-4,
	.gx-xxl-4 {
		--bs-gutter-x: 1.5rem;
	}

	.g-xxl-4,
	.gy-xxl-4 {
		--bs-gutter-y: 1.5rem;
	}

	.g-xxl-5,
	.gx-xxl-5 {
		--bs-gutter-x: 3rem;
	}

	.g-xxl-5,
	.gy-xxl-5 {
		--bs-gutter-y: 3rem;
	}
}
/* グリッドシステムここまで */