

:root {
	--text_main_color: #1b1b1b;
	--text_middle_color: #909090;
	--text_white_color: #ffffff;
	--main_color: #0a2363;
	--bg_color: #ffffff;
	--middle_color: #ebebeb;
}

html {
	scroll-behavior: smooth;
	scroll-padding: 60px;
}

html body {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	position: relative;
	letter-spacing: 0.02em;
	color: var(--text_main_color);
	background-color: var(--bg_color);
}

html body a {
	/* リンクカラーの変更（33）
	color: var(--main_color);
	*/
	color: #1558d6;
	text-decoration: underline;
}

html body a:hover,
html body a:focus {
	/* リンクカラーの変更（33）
	color: var(--main_color);
	*/
	color: rgb(21,88,214,0.8);
}

/* ------------------------------------------
			common
------------------------------------------ */
.mt-h1, .mt-h2, .mt-h3, .mt-h4, .mt-h5,
h1, h2, h3, h4, h5 {
	font-size: 1em;
	margin: 0px;
	padding: 0px;
	line-height: 1.25;
	letter-spacing: 0.06em;
}

a {
	text-decoration: none;
}

ul, li {
	margin: 0px;
	padding: 0px;/*
	list-style: none;*/
}

dt, dl, dd {
	margin: 0px;
	padding: 0px;
}

.sp-only{
	display:none;
}

/* ------------------------------------------
			bootstrap overwrite
------------------------------------------ */
.mt-row {
	margin: 0;
}

.mt-row:before, .mt-row:after {
	display: none;
}

.mt-col-sm-3, .mt-col-sm-9, .mt-col-sm-6, .mt-col-sm-12 {
    padding-right: 28px;
    padding-left: 28px;;
    float: none !important;
}

.mt-container,
.mt-container-fluid{
	max-width: 1082px;
	margin-bottom: 3em;
}

.mt-h1 {
	font-size: 1em;
	/*
	color: var(--text_main_color);
	*/
	color: #fff;/* タイトルの文字色変更（33） */
	font-weight: 600;/* タイトルの太さ変更（33） */
	position: fixed;/* タイトルの位置変更（33） */
	/*
	left: 0;
	*/
	left: 5em;/* タイトルの位置変更（33） */
	margin: 0 0;
	padding: 0px;
	display: block;
	overflow: hidden;
	word-break: break-all;
	max-height: 80px;
	display: flex;
	height: auto;
}

.mt-h1 img {
	max-width: 100%;
	max-height: 60px;
	transition: all 0.5s;
}

a:hover .mt-h1 img {
	opacity: 0.8;
}

.mt-collapse {
	flex-grow: 0;
	background-color: transparent;
}

.mt-collapse li {
	padding: 0px 14px;
}

.mt-collapse.in.none {
	opacity: 0;
	transition: all 0.5s;
}

/* button */
.mt-btn-primary {
	font-size: 0.875em;
	transition: background-color 0.5s, color 0.5s;
	background: none;
	/* ボタン枠の色変更（33）
	border: 2px solid var(--main_color);
	*/
	border: 2px solid rgba(0,162,106,1);
	border-radius: 0px;
	line-height: 1.5;
	padding: 0.75em 2.25em 0.75em 3em;
	/* ボタン文字の色変更（33） 
	color: var(--main_color);
	*/
	color: rgba(0,162,106,1);
	text-decoration: none;
	position: relative;
}

.mt-btn-primary:after {
    content: "";
    width: 0.6em;
    height: 0.6em;
    rotate: 45deg;
    display: inline-block;
    border: 1px solid var(--main_color);
    border-width: 1px 1px 0 0;
    margin-left: 1em;
    position: relative;
    transition: 0.5s;
}

.mt-btn-primary:hover,
.mt-btn-primary:active,
.mt-btn-primary:focus {
	/* ホバー時のボタンの色の変更
	border: 2px solid var(--main_color);
	color: var(--text_white_color);
	background-color: var(--main_color);
	*/
	border: 2px solid rgba(0,162,106,1);
	color: #fff;
	background-color: rgba(0,162,106,1);
	opacity: 1;
}

.mt-btn-primary:hover:after,
.mt-btn-primary:active:after,
.mt-btn-primary:focus:after {
    border: 1px solid var(--text_white_color);
    border-width: 1px 1px 0 0;
}

.mt-btn-primary.active,
.mt-btn-primary:active,
.mt-btn-primary.open > .dropdown-toggle.btn-primary {
	background-image: none;
	outline: 0;
	box-shadow: none;
}

.mt-btn-primary.btn.active,
.mt-btn-primary.btn:active {
	background-image: none;
	outline: 0;
	box-shadow: none;
}

.mt-btn-primary.active.focus,
.mt-btn-primary.active:focus,
.mt-btn-primary.active:hover,
.mt-btn-primary:active.focus,
.mt-btn-primary:active:focus,
.mt-btn-primary:active:hover,
.open > .dropdown-toggle.mt-btn-primary.focus,
.open > .dropdown-toggle.mt-btn-primary:focus,
.open > .dropdown-toggle.mt-btn-primary:hover {
	color: var(---text_main_color);
	background-color: var(--main_color);
	border-color: var(--main_color);
}


/* ------------------------------------------
			navbar
------------------------------------------ */
.mt-navbar-header {
	float: none !important;
}

.mt-navbar-header a {
	text-decoration: none;
	transition: all 0.5s;
}

.mt-navbar {
  margin-bottom: 0;
  font-size: 1em;
  height: 80px;
  background: #fff;/* ヘッダーの色変更（33） */
  border: 0px;
  z-index: 1030;
  transition: all 0.5s;
  --bs-navbar-padding-y: 0;
}

.mt-navbar .mt-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin: 0 auto;
	width: 100%;
}
.mt-navbar .mt-container:before, .mt-navbar .mt-container:after {
	display: none;
}

.fixed {
	height: 60px;
	opacity: 0.9;
	top: 0px;
}

.mt-navbar-nav {
	height: 80px;
	float: none !important;
	display: flex;
	gap: 36px;
	flex-wrap: wrap;
	transition: all 0.5s;
	align-content: center;
}

.fixed .mt-navbar-nav {
	height: 60px;

}

.mt-navbar-brand {
	float: none !important;
	height: auto !important;
	padding: 0 !important;
	line-height: 20px;
	color: var(--text_main_color)  !important;
	width: auto;
	margin: 0 !important;
	display: flex;
	align-items: center;
}

.mt-navbar-brand:hover {
	/*
	color: var(--main_color) !important;
	text-decoration: underline;
	*/
	color: #fff !important;
	text-decoration: none;

}

.mt-navbar-brand:hover h1 {
	/*
	color: var(--main_color) !important;
	*/
	color: #fff !important;
}

.fixed .mt-navbar-nav .mt-h1 img {
	max-height: 40px;
}

.mt-navbar-default .mt-navbar-nav li {
	height: 100%;
	float: none !important;
	margin: 0;
	padding: 0;
}

.mt-navbar-default .active {
	color: var(--main_color) !important;
	position: relative;
}

.mt-navbar-default .mt-navbar-nav li a {
	height: 100%;
	/*
	color: var(--text_main_color);
	*/
	color: #fff; /* ヘッダーナビの文字色変更 */
	text-decoration: none;
	transition: all 0.5s;
	padding: 0;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.mt-navbar-default .mt-navbar-nav li a:visited {
	/*
	color: var(--text_main_color);
	*/
	color: #fff !important; /* ヘッダーナビの文字色変更（33） */
	text-decoration: none;
}

.mt-navbar-default .mt-navbar-nav li a:hover {
	/*
	color: var(--text_main_color);
	*/
	color: #fff !important; /* ヘッダーナビの文字色変更（33） */
	opacity: 0.8;
}

/* ------------------------------------------
			ヘッダーのグレー部分ここから（33）
------------------------------------------ */

.navbar-collapse{
	background: #666464;
	position: fixed;
	right: 0;
}

.navbar-collapse .mt-navbar-nav::before{
	content:"";
	display: inline-block;
	background: #666464;
	width: 100px; /* 要素の幅（ここでは基準）*/
	height: 5em; /* 要素の高さ（ここでは基準）*/
	clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
	overflow: hidden !important;
	position: absolute;
	margin-left: -99px;
	bottom: 0;
}



/* --- ヘッダーのグレー部分ここまで --*/

/* ------------------------------------------
			ヘッダーのお問い合わせボタンの装飾（33）
------------------------------------------ */
.mt-navbar-default .mt-navbar-nav li:nth-last-of-type(1){
	width: 11em;
	position: relative;
}
.mt-navbar-default .mt-navbar-nav li:nth-last-of-type(1) a{
	background-color:rgba(0,162,106,1);
	color: #fff !important;
	position: absolute;
	display: inline-block;
	height: 2.5em;
	width: 9em;
	top: 0;
	bottom: 0;
	right: 2em;
	left: 0;
	margin: auto;
	border-radius: 4px;
	text-align: center;
	line-height: 2.5em;
}

/* ------------------------------------------
			ヘッダーのインスタボタンの装飾（33）
------------------------------------------ */
body:not(.mp-header) .mt-navbar-default .mt-navbar-nav li:nth-last-of-type(2){
	background-image:url(/images/common/Insta_logo.webp);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	height: 100%;
	width: 2.5em;
	position: relative;
}
body:not(.mp-header) .mt-navbar-default .mt-navbar-nav li:nth-last-of-type(2) a{
	color: rgba(0,0,0,0) !important;
}

/* --- ヘッダーのお問い合わせボタンの装飾ここまで --*/

/* ------------------------------------------
			マッリジプラザのヘッダー
------------------------------------------ */

.mp-header .mt-navbar {
    background: #fff;/* ヘッダーの背景色変更（33） */
}
.mp-header .mt-navbar-brand .mt-h1{
	color: rgb(255,123,172,1) !important;
}
.mp-header .navbar-collapse{
	background: #B39056;
}
.mp-header .navbar-collapse .mt-navbar-nav::before{
	background: #B39056;
}

/* --- マリッジプラザヘッダーのお問い合わせボタン --*/
.mp-header .mt-navbar-default .mt-navbar-nav li:nth-last-of-type(1){
	width: 15em;
	position: relative;
}
.mp-header .mt-navbar-default .mt-navbar-nav li:nth-last-of-type(1) a{
	background-color:rgb(255,123,172,1);
	color: #fff !important;
	position: absolute;
	display: inline-block;
	height: 2.5em;
	width: 13em;
	top: 0;
	bottom: 0;
	right: 2em;
	left: 0;
	margin: auto;
	border-radius: 1em;
	text-align: center;
	line-height: 2.5em;
}




/* ------------------------------------------
			backtop
------------------------------------------ */

.backtop .backtop__iconWrap {
	width: 48px;
	height: 48px;
	background-color: var(--text_main_color);
	transition: all 0.5s;
	position: fixed;
	bottom: 1em;
	right: 1em;
	opacity: 1;
	cursor: pointer;
	z-index: 10000;
}

.backtop .backtop__iconWrap:hover {
	opacity: 0.5;
}

.backtop .backtop__icon {
	width: 1em;
	height: 1em;
	display: block;
	border: 3px solid var(--bg_color);
	border-width: 3px 3px 0 0;
	rotate: -45deg;
	position: relative;
	left: 16px;
	top: 20px;
}

/* ------------------------------------------
						pankuzu
------------------------------------------ */

.pankuzu {
	font-size: 0.75em;
	color: var(--text_middle_color);
	margin: 1em 0;
	background-color: var(--bg_color);
}

.pankuzu .mt-row{
	--bs-gutter-x: 0;
}

.pankuzu ul {
	display: flex;
	flex-wrap: wrap;
}

.pankuzu ul li{
	list-style-type: none;
}

.pankuzu li:after {
	content: "";
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	border: 1px solid var(--text_middle_color);
	border-width: 1px 1px 0 0;
	rotate: 45deg;
	position: relative;
	margin: 0 8px 0 6px;
	bottom: 2px;
}

.pankuzu li:last-child:after {
	display: none;
}

.pankuzu a, .pankuzu a:visited {
	color: var(--text_middle_color);
	text-decoration: underline;
}

.pankuzu a:hover {
	color: var(--main_color);
}

.pankuzu__current {
	color: var(--text_main_color);
	text-decoration: none;
}

/* ------------------------------------------
						footer
------------------------------------------ */
footer {
	font-size: 0.875em;
	/* 背景色と文字色の変更（33）
	color: var(--text_main_color);
	background-color: var(--middle_color);
	*/
	color: #fff;
	background-color: #565656;
	/*
	padding: 2em 0;
	*/
	padding: 2em 0 1em;
}

.footer-menu a, .footer-menu a:visited {
	/* 文字色の変更（33）
	color: var(--text_main_color);
	*/
	color: #fff;
	text-decoration: none;
}

.footer-menu a:hover {
	color: #fff;
	opacity: 1;
	text-decoration: none;
}

.footer-item  {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0px;
	margin-bottom: 2em;
}

.footer-menu .footer-menu__wrap {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 40px 80px;
	flex-wrap: wrap;
	line-height: 1.75;
}

.footer-menu .footer-menu__wrap li {
	/* フッター項目の幅変更
	width: 210px;
	*/
	width: auto;
	list-style: none;
	position: relative;
}

.footer-menu .footer-menu__column {
	margin: 0px;
}

.footer-menu .footer-menu__column dt {
	display: flex;
	align-items: baseline;
	gap: 0.5em;
	margin-top: 0.5em;	/* 行間をdtと揃える（33）*/
}

.footer-menu .footer-menu__column dt:before {
	content: "";
	display: block;
	width: 0.5em;
	height: 0.5em;
	/* <マークの色の変更
	border: 1px solid var(--text_main_color);
	*/
	border: 1px solid #fff;
	border-width: 1px 1px 0 0;
	rotate: 45deg;
	translate: 0 -0.125em;
}

.footer-menu .footer-menu__column dt.no-check {
	text-decoration: none;
}

.footer-menu .footer-menu__column dd {
	padding-left: 1em;
	margin-top: 0.5em;
}

.footer-menu .footer-menu__column .firstmenu {
	margin-top: 0.5em;
}

.footer-menu .footer-menu__column .catdepth-2 {
	margin-left: 1em;
}
.footer-menu .footer-menu__column .catdepth-3 {
	margin-left: 2em;
}
.footer-menu .footer-menu__column .nolink {
	/* 文字色の変更（33）
	color: var(--text_middle_color);
	*/
	color: #fff;
	margin-bottom: 0;
}

.footer-menu .footer-menu__column--depth2 {
	margin-top: 1.5em;
	margin-left: 1em;
}

.footer-menu .footer-menu__column--depth3 {
	margin-top: 1.5em;
	margin-left: 1.5em;
}

.footer-sns .footer-sns__wrap {
	display: flex;
	gap: 0.5em;
}

.footer-sns .footer-sns__wrap li {
	display: block;
	padding: 0px;
	list-style: none;
	line-height: 20px;
}

.footer-sns .footer-sns__wrap li a {
	min-width: 30px;
	display: block;
	padding: 5px 0;
	color: var(--text_white_color);
	text-align: center;
}

.footer-sns .footer-sns__wrap li:last-child {
	margin: 0px;
}

.footer-sns .footer-sns__facebook a {
	background: #3B599C;
}

.footer-sns .footer-sns__x-twitter a {
	background: #000000;
}

.footerlogo__wrap a {
	width: auto;
	height: auto;
	font-size: 2em;
	display: block;
}

.footerlogo__wrap a img {
	width: auto;
	height: 40px;
}

.footer__number {
	margin: 0.5em auto 0;
	font-weight: bold;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.footer__number i {
	font-size: 1.25em;
	margin-right: 0.25em;
	position: relative;
}

/* ------------------------------------------
						copyarea
------------------------------------------ */

/*
.copyarea {
	display: flex;
	gap: 40px;
	margin: 4em 0 0;
	justify-content: space-between;
	align-items: flex-end;
}

.copyarea a, .copyarea a:visited {
	text-decoration: none;
}

.copyarea__text {
	margin: 0;
	text-align: center;
}
*/

.copyarea {
	margin-top: 5em;
	text-align: center;
}

/* ------------------------------------------
			mainpage
------------------------------------------ */
.mt-jumbotron {
	min-height: 92vh;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 0px;
}

.mt-jumbotron p {
	margin: 0;
	font-size: initial;
	font-weight: normal;
}

.mt-jumbotron  .mainlead__caption {
	font-size: 1em;
}

.jumbotron__indexImg {
	background-size: cover;
	background-position: center;
   padding-top: 80px;
   background-attachment: fixed;
	background-color: var(--middle_color);
}

.jumbotron__indexImg .mainlead__block {
	width: fit-content;
	position: relative;
	z-index: 50;
	color: var(--text_main_color);
}

.mainlead__block[data-mt-site-editor-mainlead__block] {
	padding: 2em;
}

.jumbotron__indexImg .mainlead__block:after {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.jumbotron__indexImg .mainlead__block[data-mt-site-editor-mainlead__block]:after {
	background-color: var(--bg_color);
}

.jumbotron__indexImg .mainlead__title p {
	font-size: 2.5em;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	line-height: 1.5;
	font-weight: bold;
	margin: 0;
	letter-spacing: 0.08em;
  /* color: var(--text_lead_color); */
  color: #fff;
}

.jumbotron__indexImg .mainlead__caption {
	font-size: 1em;
	margin-top: 1em;
	margin-bottom: 0px;
	line-height: 1.75;
}

.UnderlayerJumbotron {
	width: auto;
	height: 240px;
	position: relative;
	padding: 60px 0 0 0;
}

.UnderlayerJumbotron .Jumbotron__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	background-color: var(--middle_color);
	z-index: 10;
}

.UnderlayerJumbotron .mt-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	padding-top: 20px;
	flex-direction: column;
	position: relative;
	z-index: 50;
}

.UnderlayerJumbotron.UnderlayerJumbotron__img, .UnderlayerJumbotron.UnderlayerJumbotron__newsimg, .UnderlayerJumbotron.UnderlayerJumbotron__webpageimg {
	background-size: cover;
	background-position: center center;
}
.UnderlayerJumbotron.UnderlayerJumbotron__img:after, .UnderlayerJumbotron.UnderlayerJumbotron__newsimg:after, .UnderlayerJumbotron.UnderlayerJumbotron__webpageimg:after {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.UnderlayerJumbotron.UnderlayerJumbotron__newsimg[data-mt-site-editor-UnderlayerJumbotron__news--bgcolor]:after,
.UnderlayerJumbotron.UnderlayerJumbotron__webpageimg[data-mt-site-editor-UnderlayerJumbotron__bgcolor]:after {
    background-color: var(--bg_color);
}

.UnderlayerJumbotron .mainlead__block {
	padding: 3em;
	width: fit-content;
	text-align: center;
}

.pagemenu {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.pagemenu .mt-row {
	display: block;
}

.pagemenu .pagemenu__bgwrap {
	width: 100%;
	position: relative;
	z-index: 10;
}
.pagemenu .pagemenu__bgwrap:after {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.pagemenu__bgwrap[data-mt-site-editor-pagemenu__bgwrap]:after {
    background-color: var(--bg_color);
}

.pagemenu .pagemenu__textwrap {
	width: 100%;
	margin: 0 auto;
	height: auto;
	min-height: 320px;
	padding-block: 3em;
	z-index: 20;
	position: relative;
}

.pagemenu .pagemenu__title {
	font-size: 2em;
	margin-bottom: 1em;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}

.pagemenu .pagemenu__text {
	width: auto;
	margin-bottom: 2em;
}

.pagemenu .pagemenu__button {
	margin-bottom: 0px;
}

.pagemenu .mt-btn-lg .fa {
	margin-right: 3px;
}

.pagemenu .mt-col-sm-6 {
	width: 100%;
	float: none !important;
}

.pagemenu__bgwrap {
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	padding: 0;
}

.pagemenu__bgwrap:nth-child(odd) {
	background-color: var(--bg_color);
}

.pagemenu__bgwrap:nth-child(even) {
	background-color: var(--middle_color);
}

.newsarea {
	position: relative;
	margin: 4em auto;
}

/*　ニュースエリアの切り替えボタン */
.newsarea__entry {
    display: flex;
    flex-wrap: wrap;
	width: 100%;
}
.newsarea__entry > label {
    flex: 1 1;
    order: -1;
	display: inline-block;
	background-color: rgb(102,100,100,1);
	text-align: center;
	color: #fff;
	font-weight: 600;
	margin: 0 3px 3px 0;
	padding: 0.5em 0;
	border-radius: 8px 8px 0 0;
    cursor: pointer;
}
.newsarea__entry > label:hover {
	opacity: 0.8;
}
.newsarea__entry label:has(:checked){
	background-color: rgba(0,162,106,1);
}
.newsarea__entry label:has(:checked):hover{
	opacity: 1;
}
.newsarea__entry > label:last-of-type{
	margin-right: 0;
}
.newsarea__entry input {
	display: none;
}
.newsarea__entry > ul {
	display: none;
}
.newsarea__entry label:has(:checked) + ul {
	display: block;
	width: 100%;
}


/*　ニュースエリアの中身 */
.newsarea .newsarea__title {
	font-size: 1.75em;
	padding-bottom: 0.5em;
	/* 下線削除（33）
	border-bottom: 1px solid var(--text_main_color);
	*/
	color: rgba(0,162,106,1); /*文字色変更（33）*/
	font-weight: 500;/*文字の太さ変更（33）*/
	font-size: 2.75em;/*文字のサイズ変更（33）*/
	background-color:
}

.newsarea .newsarea__entry {
	margin: 0px;
	padding: 0px;
	border: 0px;
	overflow: hidden;
}

.newsarea .newsarea__entry dl:nth-last-child(2) {
	margin-bottom: 15px;
}

.newsarea .newsarea__entry > ul {
	transition: all 0.5s;
}

.newsarea .newsarea__entry > ul li a,
.newsarea .newsarea__entry > ul article a {
	color: var(--text_main_color);
	text-decoration: none;
}

.newsarea .newsarea__entry > ul li article {
	padding-bottom: 1em;
	padding-top: 1em;
	transition: all 0.5s;
}

.newsarea .newsarea__entry > ul li:nth-child(odd){/* お知らせの奇数行だけ背景色（33） */
	background-color: rgba(0,162,106,0.08);
}

.newsarea .newsarea__entry > ul li a:hover article {/* ホバー時の背景色変更 */
	/*
	background-color: var(--middle_color);
	*/
	background-color: rgba(0,162,106,0.2);
}

.newsarea .newsentry__item .newsdata__wrap {
	margin-bottom: 0;
}

.newsarea .newsarea__entry dl:nth-last-child(2) {
	margin-bottom: 15px;
}

.newsarea .newsarea__entry li {
	/* ニュースエリア下線の削除（33）
	border-bottom: 1px solid var(--middle_color);
	　*/
}
.newsarea .newsarea__entry li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	/* ニュースエリア下線の削除（33）
	border-bottom: 1px solid var(--text_main_color);
	*/
}

.newsarea .newsentry__item {
	display: flex;
	gap: 40px;
	padding: 0 1em;
}

.newsarea .newsentry__item .newsentry__date {
	font-weight: normal;
	width: 100px;
	margin: 0 20px 0 0;
}

.newsarea .newsentry__item .newsentry__text {
	width: calc(100% - 100px - 120px - 80px );
	margin: 0px;
}

.newsentry__genreWrap {
	width: 120px;
}

.newsarea .newsentry__item .newsentry__genre {
	width: 120px;
	height: 28px;
	background-color: var(--middle_color);
	color: var(--text_main_color);
	display: block;
	font-size: 0.75em;
	line-height: 28px;
	margin: 0;
	padding: 0 8px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.newsarea .newsentry__item .newsentry__title {
	padding-top: 0px;
	font-size: 1em;
	margin: 0;
	line-height: 1.75;
	letter-spacing: 0.06em;
}

.newsarea .newsentry__button {
	text-align: right;
	margin-top: 2em;
	margin-bottom: 0;
}

.newsarea .mt-btn-primary .fa {
	margin-right: 3px;
}

/* ------------------------------------------
	お知らせカテゴリタグの背景色変更（33）
------------------------------------------ */

.お知らせ {
	background-color: #ffa600 !important;
	color: #fff !important;
	display: inline-block;
	font-weight: 600;
}

.ニュースリリース {
	background-color: #ff0059 !important;
	color: #fff !important;
	display: inline-block;
	font-weight: 600;
}

.イベント情報 {
	background-color: #00ffa6 !important;
	color: #fff !important;
	display: inline-block;
	font-weight: 600;
}

.マリッジプラザ {
	background-color: #a600ff !important;
	color: #fff !important;
	display: inline-block;
	font-weight: 600;
}

.予備色 {
	background-color: #ffa600 !important;
	color: #fff !important;
	display: inline-block;
	font-weight: 600;
}

.予備色 {
	background-color: #59ff00 !important;
	color: #fff !important;
	display: inline-block;
	font-weight: 600;
}

/* ------------------------------------------
	スライドショーここから（33）
------------------------------------------ */
.swiper-wrapper{
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  /*
  align-items: center;
  */
}

/* スライドの画像を暗く
.swiper-wrapper::after {
  content: "";
  position: absolute;
  top: 0;  bottom: 0;
  left: 0;  right: 0;
  background: #000;
  opacity:0.4;
}
*/

.swiper-slide{
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  min-width: 100%;
  width: auto;
  pointer-events: none;
}

.swiper-slide img{
  height: 100vh;
  min-width: 100%;
  width: auto;
}

.swiper-slide:nth-of-type(1){
  animation: slide-animation-01 50s infinite;
}
.swiper-slide:nth-of-type(2){
  animation: slide-animation-02 50s infinite;
}
.swiper-slide:nth-of-type(3){
	animation: slide-animation-03 50s infinite;
}
.swiper-slide:nth-of-type(4){
	animation: slide-animation-04 50s infinite;
}
.swiper-slide:nth-of-type(5){
	animation: slide-animation-05 50s infinite;
}

@keyframes slide-animation-01 {
    0% {opacity: 1;}
  15% {opacity: 1;}
  25% {opacity: 0;}
  35% {opacity: 0;}
  45% {opacity: 0;}
  55% {opacity: 0;}
  65% {opacity: 0;}
  75% {opacity: 0;}
  85% {opacity: 0;}
  95% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes slide-animation-02 {
    0% {opacity: 0;}
  15% {opacity: 0;}
  25% {opacity: 1;}
  35% {opacity: 1;}
  45% {opacity: 0;}
  55% {opacity: 0;}
  65% {opacity: 0;}
  75% {opacity: 0;}
  85% {opacity: 0;}
  95% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes slide-animation-03 {
    0% {opacity: 0;}
  15% {opacity: 0;}
  25% {opacity: 0;}
  35% {opacity: 0;}
  45% {opacity: 1;}
  55% {opacity: 1;}
  65% {opacity: 0;}
  75% {opacity: 0;}
  85% {opacity: 0;}
  95% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes slide-animation-04 {
    0% {opacity: 0;}
  15% {opacity: 0;}
  25% {opacity: 0;}
  35% {opacity: 0;}
  45% {opacity: 0;}
  55% {opacity: 0;}
  65% {opacity: 1;}
  75% {opacity: 1;}
  85% {opacity: 0;}
  95% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes slide-animation-05 {
    0% {opacity: 0;}
  15% {opacity: 0;}
  25% {opacity: 0;}
  35% {opacity: 0;}
  45% {opacity: 0;}
  55% {opacity: 1;}
  65% {opacity: 0;}
  75% {opacity: 0;}
  85% {opacity: 1;}
  95% {opacity: 1;}
  100% {opacity: 0;}
}

/* --- スライドショーここまで --*/

/* ------------------------------------------
	スライドショーの上に重ねるコンセプト（33）
------------------------------------------ */

.swiper-wrapper .mt-container{
	z-index: 50; /* スライドショーに重ねる */
	color: #fff; /* 文字色白に */
	/*
	margin-top: 124px;
	*/
	position: absolute;
	margin: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* 文字のサイズ */
.mainlead__title p:nth-of-type(1){
	font-size: clamp(22px,3vw,48px);
	line-height: 1em;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-shadow: #333 1px 0 10px,#333 1px 0 10px;
}
.mainlead__title p:nth-of-type(2){
	font-size: clamp(42px,6vw,96px);
	line-height: 1em;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-shadow: #333 1px 0 10px,#333 1px 0 10px;
}
.mainlead__caption {
	font-size: clamp(18px,3vw,24px);
	line-height: 1.5em;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
	text-shadow: #333 1px 0 3px,#333 1px 0 3px,#333 1px 0 3px,#333 1px 0 3px,#333 1px 0 5px,#333 1px 0 5px,#333 1px 0 5px,#333 1px 0 5px;
	font-family: "BIZ UDMincho", "BIZ UDPMincho", "YuMincho", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;	
}

/* --- スライドショーの上に重ねるコンセプトここまで --*/

/* ------------------------------------------
	スライドショーに重ねるアイコン(マリッジ、リージョ)（33）
------------------------------------------ */

.top-icon-area{
	margin-top: 48px;
	width: 100%;
	position: absolute;
	bottom: 24px;
	text-align: right;
	margin-right:3em;
}

.top-icon-area .icon-name {
	font-size: clamp(14px,3.5vw,21px);
	letter-spacing: 0.05em;
	line-height: clamp(32px,5.3vw,48px);
	text-align: center;
	color: #fff;
	font-weight: 500;
}

.top-icon-area a{
	text-decoration: none !important;
}

.top-icon-area .icon-business {
	display: inline-block;
	background: rgba(0,162,106,1);
	width: clamp(144px,27vw,216px);
	height: clamp(32px,6vw,48px);
	border-radius: 8px;
	position: relative;
	margin: 2px;
	margin-top: 1em;
	padding-right: 0.5em;
	z-index: 1000;
	box-shadow:  #333 1px 0 10px,#333 1px 0 10px;
}
.top-icon-area .icon-business .icon-name:before{
	content:"　";
	display: inline-block;
	background-image:url(/images/top/icon/icon-w-business.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-position: right;
	width: clamp(24px,4.5vw,36px);
	height: clamp(32px,6vw,48px);
}

.top-icon-area .icon-business .icon-name::after {
	content: "販路開拓\A企画開発\Aふるさと納税活用";
	white-space: pre-wrap;
	font-size: 14px;
	letter-spacing: 0.1em;
	font-weight: 550;
	color: #333;
	text-align: left;
	line-height: 1.5;
	display: inline-block;
	padding: 4px 12px;
	border-radius: 8px;
	background-color: rgb(255,255,255,0.8);
	z-index: 1050;
	position: absolute;
	top: -77px;
	left: 0;
	width: 180px;
}
.top-icon-area .icon-business:has(.icon-name)::before {
	content: " ";
	display: inline-block;
	background-color: rgb(255,255,255,0.8);
	z-index: 1050;
	position: absolute;
	top: -6px;
	left: 16px;
	width: 24px;
	height: 12px;
	clip-path: polygon(0 0, 70% 100%, 100% 0);
}

.top-icon-area .icon-33marri {
	display: inline-block;
	background: rgb(255,123,172,1);
	width: clamp(144px,27vw,216px);
	height: clamp(32px,6vw,48px);
	border-radius: 8px;
	position: relative;
	margin: 2px;
	margin-top: 1em;
	padding-right: 0.5em;
	z-index: 1000;
	box-shadow:  #333 1px 0 10px,#333 1px 0 10px;
}
.top-icon-area .icon-33marri .icon-name:before{
	content:"　";
	display: inline-block;
	background-image:url(/images/top/icon/icon-w-marriage.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-position: right;
	width: clamp(24px,4.5vw,36px);
	height: clamp(32px,6vw,48px);
}

.top-icon-area .icon-regio {
	display: inline-block;
	background: rgb(255,136,0,1);
	width: clamp(144px,27vw,216px);
	height: clamp(32px,6vw,48px);
	border-radius: 8px;
	position: relative;
	margin: 2px;
	margin-top: 1em;
	padding-right: 0.5em;
	z-index: 1000;
	box-shadow:  #333 1px 0 10px,#333 1px 0 10px;
}
.top-icon-area .icon-regio .icon-name:before{
	content:"　";
	display: inline-block;
	background-image:url(/images/top/icon/icon-w-regio.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-position: right;
	width: clamp(24px,4.5vw,36px);
	height: clamp(32px,6vw,48px);
	margin-right: -4px !important;
}

.top-icon-area .icon-33bank {
	display: inline-block;
	background: #fff;
	background-image:url(/images/top/icon/33bank_logo.webp);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center;
	width: clamp(144px,27vw,216px);
	height: clamp(32px,6vw,48px);
	border-radius: 8px;
	position: relative;
	margin: 2px;
	margin-top: 1em;
	z-index: 1000;
	box-shadow:  #333 1px 0 10px,#333 1px 0 10px;
}
.top-icon-area .icon-33bank .icon-name{
	opacity: 0;
}
/* ------------------------------------------
	トップページのServiceサービスメニュー（33）
------------------------------------------ */

.servicearea__entry ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.servicearea__entry ul .service_box{
	display: inline-block;
	width: 30%;
	margin: 1.6%;
	background-color: #EBF8F3;
	padding: 1em;
	padding-bottom: 48px;
	position: relative;
}

.servicearea__entry ul li h4{
	font-size: 1.25em;
	line-height: 2em;
	color: rgba(0,162,106,1);
	font-weight: 500;
}

.servicearea__entry ul .check{
	display: block;
}

.servicearea__entry ul .check li{
	background-color: #EBF8F3;
	text-indent: -1.5em;
	padding-left: 1.5em;
	list-style-type: none;
}

.servicearea__entry ul .check li::before{
	content:"\00A0\02714\00A0";
	color: rgba(0,162,106,1);
}

.servicearea__entry ul .service_box .newsentry__button{
	display: inline-block;
	position: absolute;
	bottom: 8px;
	right: 16px;
	padding: 0;
}
.servicearea__entry ul .service_box .newsentry__button a{
	padding: 0.25em 1em;
	border-radius: 10px;
}


/* ------------------------------------------
						newslist
------------------------------------------ */
.UnderlayerJumbotron {
	color: var(--text_main_color);
}

.newslistWrap .mt-col-sm-3, .newslistWrap .mt-col-sm-9 {
    padding-right: 0;
    padding-left: 0;
}

.newsHeader__title {
	font-size: 4.2em;
	font-weight: bold;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	position: relative;
	z-index: 50;
	letter-spacing: 0.5px;
	color: #00A26A; /*文字色変更（33）*/
	text-shadow: #fff 1px 0 10px,#fff 1px 0 10px,#fff 1px 0 10px;
}
.newsHeader__title a{
	color: #00A26A; /*文字色変更（33）*/
	text-decoration: none;
}

.newsHeader__title a:hover{
	color: #00A26A; /*文字色変更（33）*/
	text-decoration: none;
	opacity: 0.8;
}

.newslistWrap, .newsWrap {
	margin-top: 2em;
	margin-bottom: 4em;
}

.UnderlayerJumbotron__newsimg{
	background-image:url(/images/news/header_news.webp);
}


/* リストの下線削除（33）
.newslist li {
	border-bottom: 1px solid var(--middle_color);
}

.newslist li:last-child {
	border-bottom: 1px solid var(--text_main_color);
}
*/

.newslist li{
	list-style-type: none;
}

.newslist li:nth-of-type(odd){/* お知らせの奇数行だけ背景色（33） */
	background-color: rgba(0,162,106,0.08) !important;
}


.newslist li a,
.newslist article a {
	color: var(--text_main_color);
 	padding: 1em;
	text-decoration: none;
	display: block;
	height: 100%;
	width: 100%;
	transition: all 0.5s;
}

.newslist li a:hover,
.newslist article a:hover {
	color: var(--text_main_color);
	/* ホバー時の背景色変更（33）
	background-color: var(--middle_color);
	*/
	background-color: rgba(0,162,106,0.2);
	display: block;
	opacity: 1.0;
}

.newslist .newslist__title {/*ニュースリストタイトルのスタイル変更（33）*/
    /*
	font-size: 1em;
	*/
	font-size: 1.5em;
	margin: 0;
	padding-bottom: 0.5em;
	/*
	border-bottom: 1px solid var(--text_main_color);
	*/
	font-weight: bold;
	color: #00A26A;
}

.newslist .newstext__title {
	font-size: 1.25em;
	margin: 0;
	line-height: 1.25em;
}

.newslist .newslistbutton-wrap {
	margin-top: 2em;
	display: flex;
	justify-content: space-between;
}

.newslist .newslist__nextbutton {
	margin: 0 0 0 auto;
}

.newslist .newslist__prevbutton {
	margin: 0 auto 0 0;
	padding: 0.75em 3em 0.75em 2.25em;
}

.newslist .newslist__prevbutton:after {
	display: none;
}

.newslist .newslist__prevbutton:before {
	content: "";
	width: 0.6em;
	height: 0.6em;
	rotate: 225deg;
	display: inline-block;
	border: 1px solid var(--main_color);
	border-width: 1px 1px 0 0;
	margin-right: 1em ;
	position: relative;
	transition: 0.5s;
}

.newslist .newslist__prevbutton:hover:before,
.newslist .newslist__prevbutton:active:before,
.newslist .newslist__prevbutton:focus:before {
    border: 1px solid var(--text_white_color);
    border-width: 1px 1px 0 0;
}

.news-sidemenu {
	padding: 0.5em 0.5em 5em;
	height: 100%;
	background-color: rgb(0, 162, 106, 0.1);
}

.news-sidemenu__wrap {
	margin: 0 0 2em;
}

.news-sidemenu .group > ul > li {
	margin-bottom: 24px;
}

.news-sidemenu .submenu li > a::before{
	content: none;
}

.news-sidemenu .sub-folder .folder-label {
	padding: 0;
	border-bottom: solid 1px var(--main_color);
	font-weight: bold;
}
.news-sidemenu .depth-3 {
	margin-left: 5px;
}

.news-sidemenu li a,
.news-sidemenu article a {
	color: var(--text_main_color);
	text-decoration: none;
	padding: 0;
}

.news-sidemenu li .nolink,
.news-sidemenu article .nolink {
	margin-bottom: 0;
	padding: 0;
	text-decoration: none;
	color: var(--text_middle_color);
}

.news-sidemenu .news-sidemenu__subtitle {/*ニュースレフトメニューのタイトル（33）*/
	font-size: 1.25em;
	font-weight: bold;
	/*
	color: var(--text_main_color);
	*/
	color: #666464;
	color: rgba(0,162,106,1);
	padding-bottom: 0.5em;
	/*
	margin-bottom: 1em;
	border-bottom: 1px solid var(--text_main_color);
	*/
}

/* マリッジプラザのニュース一覧 */
.mp-newslist{
	margin: 3em auto;
}

.mp-newslist .mp-info{
	display: flex;
	overflow-x: none;
	white-space: wrap;
	flex-wrap: wrap;
}
.mp-newslist .mp-info::-webkit-scrollbar{
	display: none;
}

.mp-newslist .mp-info li{
	display: inline-block;
	width: 32%;
	margin-right: 1%;
	white-space: wrap;
	vertical-align: top;
	padding-bottom: 3em;
}
.mp-info li a{
	text-decoration: none !important;
}
.mp-info li a:hover{
	opacity: 0.8;
}
.mp-info li figure{
	width: 100%;
	aspect-ratio: 8 / 5;
	background-color: rgb(51,51,51,0.05);
	overflow: hidden;
	position: relative;
	background-image: url(/images/top/icon/icon-w-marriage.png);
	background-repeat: no-repeat;
	background-size: contain;
	text-align: center;
	vertical-align: middle;
}
.mp-info li figure img{
	height: 100%;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}

.mp-info li figure p{
	color: rgb(51,51,51,0.3);
	font-size: 1.5em;
	font-weight: 600;
	line-height: 1.5em;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}
.mp-info li p{
	color: #333;
	line-height: 1.5em;
	text-decoration: none !important;
}
.mp-info-more{
	margin-right: 0;
	aspect-ratio: 8 / 5;
	padding-bottom:0;
	position: relative;
}
.mp-info-more div{
	width: 100%;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}
.mp-info-more p{
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	font-size: 1em;
	line-height: 1em;
	color: rgba(179,144,86,1) !important;
	vertical-align: bottom;
}
.mp-header .entry-navigation{
	display: inline-block;
	width: 100%;
	padding: 0;
	margin-top: 3em;
	margin-bottom: 2em;
}
.mp-header .paging-buttons{
	display: inline-block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
.mp-header .entry-navigation li{
	list-style-type: none;
}
.mp-header .entry-navigation .prev{
	display: inline-block;
	width: 100px;
	text-align: center;
	position: absolute;
	left: 0;
	border: 1px solid #B39056;
}
.mp-header .entry-navigation .next{
	display: inline-block;
	width: 100px;
	text-align: center;
	position: absolute;
	right: 0;
	border: 1px solid #B39056;
}
.mp-header .entry-navigation li a{
	color: #B39056;
	text-decoration: none;
	display: inline-block;
	height: 3em;
	line-height: 3em;
}

.side-entry__wrap {
	margin-bottom: 2em;
	flex-direction: column;
}

.side-entry__wrap.nav>li>a {
	display: inline;
}

.side-entry__wrap.nav>li>a:hover {
	background: none;
	/* ホバー時の下線削除
	text-decoration: underline;
	*/
	opacity: 0.8;
	color: var(--text_main_color);
}

.side-entry__wrap:last-child {
	margin-bottom: 0px;
}

.side-entry__wrap li {
	margin-bottom: 0.5em;
}

.side-entry__lastlatest {
	line-height: 1.5;
}

.side-entry__wrap li date {
	font-size: 0.875em;
	margin-bottom: 0.5em;
}

.side-entry__wrap li p {
	margin: 0;
	padding: 0;
}

.side-entry__wrap .active {
	font-weight: bold;
	color: #333; /*文字色指定*/
}


/* サブカテゴリー対応 */
.side-entry__wrap .submenu li {
	margin-top: 0.5em;
}

.news-sidemenu .catdepth-2 {
	position: relative;
	margin-left: 1em;
	margin-bottom: 0;
}

.news-sidemenu .catdepth-2 .nolink {
	color: var(--text_middle_color);
}
.news-sidemenu .catdepth-2 .nolink::before {
	content: none;
}

.news-sidemenu .catdepth-3 {
	position: relative;
	margin-left: 1em;
	margin-bottom: 0;
}

.news-sidemenu .catdepth-3 .nolink {
	color: var(--text_middle_color);
}
.news-sidemenu .catdepth-2 .nolink::before {
	content: none;
}

/* ------------------------------------------
						news
------------------------------------------ */
.newsMain h1{
	color: #00A26A;
	font-weight: 600;
}


.newsWrap {
	min-height: 40vh;
}

.newsWrap .mt-col-sm-3, .newsWrap .mt-col-sm-9 {
    padding-right: 0;
    padding-left: 0;
}

.newsdata__wrap {
	display: flex;
	width: fit-content;
	margin-bottom: 0.5em;
}

.newsdata__wrap dl {
	width: 100%;
}

.newsdata__wrap .date {
	width: auto;
	color: var(--text_main_color);
   margin: 0 1em 0 0;
}

.newsdata__wrap .genre {
	width: 120px;
	height: 28px;
	background-color: var(--middle_color);
	color: var(--text_main_color);
	display: block;
	font-size: 0.75em;
	line-height: 28px;
	margin: 0;
	padding: 0 8px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*snsbutton*/
.social-button__wrap {
	margin-top: 2em;
}

.social-button__wrap ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* ------------------------------------------
						pages
------------------------------------------ */
.pageHeader__title {
	font-size: 2.75em;
	font-weight: bold;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	position: relative;
	z-index: 50;
}

.pageHeader__detial {
    margin: 1em 0 0 0;
}


/* ------------------------------------------
					ページ一覧
------------------------------------------ \*/

.pagesWrap {
    margin: 2em auto 4em;
    min-height: 40vh;
	max-width: 1082px;
}


.pageslistWrap {
    margin-top: 2em;
    margin-bottom: 1em;
}

/* ページリスト */
.pageslist {
	margin: 0em;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	gap: 16px;
	padding-left: 2em;
	padding-right: 1em;
}

.pageslist h3{
	color: #00A26A;
	font-weight: 550;
}

.pages-subnavi {
	margin-top: -2em;
	margin-bottom: 2em;
}

.pages-subnavi .subnavi-depth__wrap {
	display: flex;
   flex-wrap: wrap;
	height: 48px;
	line-height: 48px;
 	border-bottom: 1px solid var(--text_main_color);
}

.pages-subnavi li {
	display: block;
}

.pages-subnavi li a {
	font-size: 0.825em;
	color: var(--text_main_color);
	text-decoration: none;
	display: block;
	padding: 0;
	transition: all 0.5s;
}

.pages-subnavi li a:hover {
	opacity: 1.0;
	color: var(--main_color);
}

.pages-subnavi .active {
	color: var(--main_color) !important;
	position: relative;
}

.pages-subnavi .active:after {
	content: "";
	display: block;
	width:100%;
	height: 3px;
	background-color: var(--main_color);
	position: absolute;
	bottom: 0;
}

.pages-subnavi .subnavi-depth {
	display: flex;
	gap: 20px;
}

.pages-subnavi.fixed {
	display: block;
	position: fixed;
	top: 60px;
	width: 100%;
	z-index: 1050;
}

/* ページリストに表示する項目 */
.pagesColumnWrap {
	width: calc(33.33% - 16px);
	overflow: hidden;
	margin-bottom: 64px;
}

.pagesColumnWrap .mt-row {
    gap: 60px;
}

.pagesColumnWrap .pagesitem__subtitle {
	font-size: 1.25em;
	margin: 1em 0;
}

.pagesColumnWrap .pagesitem__text {
	margin: 0;
}

.pagesColumnWrap .pages-figure {
	margin: 28px 0px 0px;
	padding: 0px;
}

.pagesColumnWrap .pages-figure img {
	max-width: 100%;
	height: auto;
}

.pagesColumnWrap .pages__button {
	text-align: right;
	margin-top: 2em;
	margin-bottom: 0px;
}

.pagesColumnWrap .pages__button a{
	padding: 0.25em 1em;
	border-radius: 10px;
}

.pagesColumnWrap .pages__item {
	padding: 0px;
}

.pages__title {
	font-size: 2.25em;
	margin: 0 0 1.5em 0;
	border-left: 3px solid var(--middle_color);
	padding: 0 0 0 0.5em;
}

.pagesColumnWrap .itemimages__wrap {
	width: 100%;
	margin-top: 0px;
	aspect-ratio: 8 / 5;
	position: relative;
}

.pagesColumnWrap .itemimages__wrap .itemimages__images {
	position: absolute;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.お問い合わせ .pageslistWrap h2,
.販路開拓 .pagesWrap .pageslistWrap h2,
.企画開発 .pagesWrap .pageslistWrap h2,
.ふるさと納税活用 .pagesWrap .pageslistWrap h2 {
	color: #333;
	font-size: 1.25em !important;
	margin-top: 2em;
	border-bottom: 6px solid rgba(0,162,106,0.1);
	line-height: 2em;
}
.販路開拓 .pagesWrap .pageslistWrap h2:first-of-type,
.企画開発 .pagesWrap .pageslistWrap h2:first-of-type,
.ふるさと納税活用 .pagesWrap .pageslistWrap h2:first-of-type {
	margin-top: 2em;
}
.販路開拓 .pagesWrap .pageslistWrap h2::before,
.企画開発 .pagesWrap .pageslistWrap h2::before,
.ふるさと納税活用 .pagesWrap .pageslistWrap h2::before {
	content:"\02714\00A0";
	color: rgba(0,162,106,1);
}
.販路開拓 .pagesWrap .pageslistWrap h2::after,
.企画開発 .pagesWrap .pageslistWrap h2::after,
.ふるさと納税活用 .pagesWrap .pageslistWrap h2::after {
	content: none;
}

.ふるさと納税活用 .mt-be-column {
	flex: 1;
	background-color: #EBF8F3;
	padding: 1em 1em 3em;
	border-radius: 16px;
}
.ふるさと納税活用 .mt-be-column h4{
	text-align: center;
	color: rgba(0,162,106,1);
}

/*
.販路開拓 .pagesWrap .pageslistWrap .wysiwyg p{
	width: 721px;
	max-width: 100%;
	margin: auto;
	display: block;
}*/

.jirei{
	color: #333;
	font-size: 1.25em !important;
	font-weight: 550;
	margin-top: 4em;
	margin-bottom: 2em;
	border-bottom: 6px solid rgba(0,162,106,0.1);
	line-height: 2em;
	width: calc(100% - 3em);
	margin-left: 1.5em;
}
.jirei::before{
	content:"\02714\00A0";
	color: rgba(0,162,106,1);
}

.sousei-contact{
	background:  rgba(0,162,106,1);
	color : #fff;
	font-weight: 550;
	line-height: 3em;
	width: 260px;
	margin: 3em auto 1em;
	border: none;
	border-radius: 6px;
	display: block;
	letter-spacing: 0.1em;
}

.pageslistWrap .sousei-contact{
	margin: 0 auto;
}

.sousei-contact:hover{
	opacity: 0.8;
}

.note{
	padding-left: 1em;
	text-indent: -1em;
}

.note:has(+ .note){
	margin-bottom: 0;
}

/* ------------------------------------------
	各ウェブページのヘッダー
------------------------------------------ */

.pageHeader__title{
	color: #333;
	font-size: 2.75em;
	color: #00A26A; /*文字色変更（33）*/
	text-shadow: #fff 1px 0 10px,#fff 1px 0 10px,#fff 1px 0 10px;
}


body .お問い合わせ:has(.pageHeader__title),
body .ご予約・お問い合わせ:has(.pageHeader__title),
body .ご入会時の必要書類:has(.pageHeader__title),
body .会社概要:has(.pageHeader__title),
body .販路開拓:has(.pageHeader__title),
body .企画開発:has(.pageHeader__title) ,
body .ふるさと納税活用:has(.pageHeader__title) {
	background-image:url(/images/news/header_news.webp);
}

.mp-header .ご成婚実績・お知らせ:has(.pageHeader__title) {
	top: 0 !important;
	width: 100%;
	background-image:url(/images/marriage/mp-news-top.webp);
}
.mp-header .ご予約・お問い合わせ .pageHeader__title,
.mp-header .ご入会時の必要書類 .pageHeader__title,
.mp-header .ご成婚実績・お知らせ .pageHeader__title{
	color: rgb(255,123,172,1);
	font-size: clamp(32px,3vw,48px);
	text-shadow: #fff 1px 0 10px,#fff 1px 0 10px,#fff 1px 0 10px,#fff 1px 0 10px,#fff 1px 0 10px;
}
/* マリッジプラザのヘッダー画像（メイン画像） */
.mp-header .三十三マリッジプラザ:has(.pageHeader__title) {
	height: 100vh;
	background-image:url(/images/marriage/marriage_main_bnr.webp);
}
.mp-header .三十三マリッジプラザ .pageHeader__title{
	color: rgb(255,123,172,1);
	font-size: clamp(32px,3vw,48px);
	position: absolute;
	top: 48px;
	text-shadow: #fff 1px 0 10px,#fff 1px 0 10px,#fff 1px 0 10px,#fff 1px 0 10px,#fff 1px 0 10px;
}
.mp-header .三十三マリッジプラザ .pageHeader__title:before{
	content:"みえの結婚相談所\A";
	white-space: pre;
	color: rgb(255,123,172,1);
	font-size: clamp(21px,2vw,32px);
}

/* お問い合わせページの書式 */
.お問い合わせ .wysiwyg h3,
.お問い合わせ .wysiwyg .mt-be-columns,
.お問い合わせ .wysiwyg p,
.ご予約・お問い合わせ .wysiwyg h3,
.ご予約・お問い合わせ .wysiwyg .mt-be-columns,
.ご予約・お問い合わせ .wysiwyg p{
	width: 100%;
	max-width: 740px;
	margin: auto;
}
.お問い合わせ .wysiwyg h3,
.ご予約・お問い合わせ .wysiwyg h3{
	font-weight: 550;
	color: #333;
	line-height: 2em;
}
.お問い合わせ .wysiwyg iframe,
.ご予約・お問い合わせ .wysiwyg iframe{
	margin-top: 2em;
}



/* ------------------------------------------
	マリッジプラザページの書式設定
------------------------------------------ */
.mp-header .mt-container-fluid h2{
	color: rgb(255,123,172,1);
	text-align: center;
	margin-top: 3em;
	padding-top: 2em;
	margin-bottom: 1em;
	font-size: 1.5em;
	font-weight: bold;
}

.mp-merit{
	width: 100%;
	text-align: center;
	background-image: url(/images/contact/bg_contact.webp);
	padding: 1em 0;
	border-radius: 1em;
}

.mp-merit dl{
	display: inline-block;
	width: 600px;
	max-width: 100%;
	text-align: left;
	margin: 1em 0 !important;
}

.mp-merit dt{
	font-size: 1.25em;
	text-indent: -1.5em;
	padding-left: 1.5em;
	margin-bottom: 0 !important;
	color: #B39056;
}

.mp-merit dt::before{
	content:"\02714\00A0";
	color: rgba(0,162,106,1);
}

.mp-merit dd{
	padding: 0 1em 1em;
	vertical-align: middle;
}


/* マリッジプラザトップのお知らせ一覧 */
.mp-info{
	display: block;
	overflow-x: scroll;
	white-space: nowrap;
}
.mp-info::-webkit-scrollbar{
	width: 12px;
}
.mp-info::-webkit-scrollbar-thumb{
	background: #b3905699;
}
.mp-info::-webkit-scrollbar-track{
	background: #b390564d;
}

.mp-info li{
	display: inline-block;
	width: 30%;
	margin-right: 1%;
	white-space: wrap;
	vertical-align: top;
	padding-bottom: 2em;
}

.mp-info-all{
	width: 100%;
	text-align: right;
	margin-top: 2em;
}

.mp-info-all a{
	display: inline-block;
	width: 150px;
	color: rgba(179,144,86,1) !important;
	border: 1px solid rgba(179,144,86,1);
	line-height: 2.5em;
	height: 2.5em;
	text-align: center;
	text-decoration: none;
}


/* マリッジプラザトップのご利用の流れ */
.mp-flow{
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.mp-flow .mp-flow-step{
	list-style-type:none;
	counter-increment: number;
	padding: 1em 0.5em;
	margin-bottom: 3em;
	border-top: 1px solid #b390564d;
	border-bottom: 3px solid #b390564d;
	position: relative;
}
.mp-flow .mp-flow-step:after{
	content: "▼";
	color: #b3905699;
	position: absolute;
	bottom: -24px;
	left: 50%;
	transform: translate(-50%, 0%);
}
.mp-flow .mp-flow-step:last-of-type:after{
	content: none;
}
.mp-flow .mp-flow-step h3{
	font-size: 1.25em;
	color: rgb(255,123,172,1);
	font-weight: 600;
	display: inline-block;
	width: 15em;
	vertical-align: top;
}
.mp-flow .mp-flow-step h3:before{
	content: "\00A0" counter(number) "." "\00A0";
	color: #ff7bac;
	font-weight: 600;
	font-feature-settings: "palt";
}
.mp-flow .mp-flow-detail{
	width: calc(100% - 20em);
	padding-left: 2em;
	display: inline-block;
	border-left: 3px dotted #b390564d;
	min-height: 5em;
}
.mp-flow .mp-flow-detail li{
	list-style-type: disc !important;
}
.mp-flow .mp-flow-detail li .note{
	margin-bottom: 0;
}

.mp-flow-yoyaku {
	text-align: center;
	margin: 2em 0 4em;
}

.mp-flow-yoyaku p {
	color:rgba(179, 144, 86);
}

.mp-flow-yoyaku button{
	background-color: rgb(255, 123, 172);
	color: #fff;
	width: 13em;
	border: 2px solid rgb(255, 123, 172, 0.3);
	border-radius: 1em;
	font-weight: 600;
	height: 2.5em;
	display: inline-block;
}

.mp-fee {
	width: 100%;
	background-image: url(/images/contact/bg_contact.webp);
	padding: 1em;
	border-radius: 1em;
	text-align: center;
}
.mp-fee .mp-fee-table-area{
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
.mp-fee table{
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
.mp-fee table tr{
	border-bottom: 2px solid #b390564d;
}
.mp-fee table th{
	text-align: left;
	color: rgba(179,144,86,1);
	padding-top: 2em;
}
.mp-fee table td{
	text-align: right;
	padding-top: 2em;
}
.mp-fee .note{
	text-align: left;
	margin-top: 0.5em;
}
/* マリッジプラザの料金表 */
.mp-application-form{
	margin: 0 !important;
}
.mp-application-form li{
	counter-increment: number;
	display: block !important;
	padding-left: 1.5em;
	text-indent: -1.5em;
	margin-left: 0 !important;
}

.mp-application-form li:before{
	content: "\00A0" counter(number) "." "\00A0";
}

/*　マリッジプラザアクセス */
/*
.mp-header .wysiwyg table{
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
*/
.mp-header .wysiwyg table th{
	background-color: #B39056;
	border: 1px solid #DED3B6;
	color: #fff !important;
}
.mp-header .wysiwyg table td{
	border: 1px solid #DED3B6;
}
.mp-under-line{
	background: linear-gradient(transparent 70%, rgb(255,123,172,0.5) 70%)
}
/*	tablet 991px以下  */
@media (max-width: 991px) {
	html body {
		font-size: 14px;
	}

	.pagemenu .mt-row {
	padding: 0;
	}

	.pagemenu .mt-col-sm-6 {
	padding: 0 40px;
	}

	.pagemenu__bgwrap .pagemenu__textwrap {
		margin: 0;
		padding: 3em 40px;
		min-height: 300px;
	}

	.pagemenu .pagemenu__text {
    margin-bottom: 2em;
	}

	.newsarea {
    margin-top: 2em;
	}

	.pageslistWrap, .pagesWrap {
    margin-bottom: 4em;
	}

	.pagesColumnWrap {
    padding: 2em 0;
	}

	.pagesColumnWrap .pages__button {
    margin-top: 1em;
	}
}

@media (max-width: 991px) {
	.mt-navbar {
		height: 60px;
		top: 0;
	}

	.mt-navbar .mt-container {
		height: 60px;
	}

	.container>.navbar-header {
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		align-items: center;
		float: none;
		margin: 0;
		height: 60px;
		line-height: 60px;
	}

	.container>.navbar-header:before, .container>.navbar-header:after {
			display: none;
	}

	.navbar-left,
	.navbar-right {
		float: none !important;
	}

	.mt-navbar-toggler {
		border-radius: 0px;
	}

	.navbar-collapse {
		/*
		border-top: 1px solid transparent;
		*/
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
		left: 0;
		top: 60px; /* ハンバーガメニューを開いたときの表示位置 */
	}

	.navbar-fixed-top {
		top: 0;
		border-width: 0 0 1px;
	}

	.container>.navbar-collapse {
		flex-basis: calc( 100% + 80px );
		margin-right: -40px;
		margin-left: -40px;
		background: #fff;
		width: 100%;
		margin:0;
	}

	.mt-navbar-nav {
		height: auto;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: flex-start;
		gap: inherit;
	}

	.mt-navbar-nav ul {
		margin: 0px;
		background-color: var(--bg_color);
		margin:0;
	}
	
	/* ---ヘッダーのインスタボタンの装飾（33--- */
	body:not(.mp-header) .mt-navbar-default .mt-navbar-nav li:nth-last-of-type(2){
	background-image:url(/images/common/Insta_logo.webp);
	background-repeat: no-repeat;
	background-size: 29px;
	background-position: center;
	background-position: 10em 50%;
	width: 100%;
	position: relative;
    }
	body:not(.mp-header) .mt-navbar-default .mt-navbar-nav li:nth-last-of-type(2) a{
	color: #fff !important;
    }

	.mt-navbar-nav > li {
		float: none;
		background-color: #666464 !important; /*　背景色変更（33） */
	}

	.mp-header .mt-navbar-nav > li {
		float: none;
		background-color: #B39056 !important;/*　マリッジの背景色変更（33） */
	}

	.navbar-nav > li > a {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.mt-navbar-default .navbar-collapse, .mt-navbar-default .navbar-form {
		border-color: var(--text_main_color) !important;
	}

	.mt-navbar-default .active:after {
			display: none;
	}

	.mt-navbar-default .mt-navbar-nav li {
		width: 100%;
		font-size: 1.25em;
		padding: 20px 40px 18px;
		/*
		border-bottom: 1px solid var(--text_main_color);
		*/
	}
}

@media (max-width: 991px) {
	.mt-h1{/* タブレットでのタイトルの位置変更（33） */
		left: 0.5em;
		width:12em;
	}
	.navbar-collapse .mt-navbar-nav::before{/* タブレットではヘッダーの三角形を表示しない（33） */
		display: none;
	}
	.mt-navbar-default .mt-navbar-nav li:nth-last-of-type(1){/* タブレットでのお問い合わせボタン（33） */
		width: 100%;
		position: relative;
    }
	.mt-navbar-default .mt-navbar-nav li:nth-last-of-type(1) a{
		position: relative;
		display: block;
		height: auto;
		width: auto;
		border-radius: 1em;
		line-height: 2em;
	}

	.swiper-wrapper .mt-container { /* スライドショーに重ねるコンセプトのスマホでの表示位置 */
		top: 120px;
		left: 0;
		transform: none;
	}
	
	.top-icon-area{
		margin-top: 48px;
		width: 100%;
		position: absolute;
		bottom: 48px;
	}

	.servicearea__entry ul .check li::before{
		content:"\02713\00A0";
		color: rgba(0,162,106,1);
	}

	/* 以下マリッジプラザ（33） */

	.mp-header .navbar-collapse .mt-navbar-nav::before{/* タブレットではヘッダーの三角形を表示しない（33） */
		display: none;
	}
	.mp-header .mt-navbar-default .mt-navbar-nav li:nth-last-of-type(1){/* タブレットでのお問い合わせボタン（33） */
		width: 100%;
		position: relative;
    }
	.mp-header .mt-navbar-default .mt-navbar-nav li:nth-last-of-type(1) a{
		position: relative;
		display: block;
		height: auto;
		width: auto;
		border-radius: 1em;
		line-height: 2em;
	}

	.mp-flow .mp-flow-detail{
	width: 100% ;
	border-left: none;
    }
}


/* ------------------------------------------
			sp - 575px
------------------------------------------ */
@media (max-width: 575px) {
	.sp-only{
	display: block;
    }

	.mt-btn-primary {
    padding: 0.5em 2em 0.5em 2.5em;
	}

	.mt-btn-primary:after {
    bottom: 1px;
	}

	.mt-navbar .mt-container {
        padding: 0 20px;
    }
	
	.swiper-wrapper{
		min-height: 667px;
	}
	
	.swiper-slide{
		min-height: 667px;
	}
	
	.swiper-slide img{
		min-height: 667px;
	}
	
	.top-icon-area .icon-name{
		font-weight: 550;
	}

	.mainlead__caption {
		font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    	text-shadow: #333 1px 0 5px,#333 1px 0 5px,#333 1px 0 5px,#333 1px 0 5px,#333 1px 0 5px,#333 1px 0 5px;
    }


	/* mainpage*/
	.mt-jumbotron {
		min-height: calc(92vh - 60px);
	}

	.jumbotron__indexImg {
	   background-attachment: scroll;
	}

	.jumbotron__indexImg .mainlead__title p {
		font-size: 1.5em;
	}

	.jumbotron__indexImg .mainlead__block {
    	position: relative;
	}

	.pagemenu .mt-col-sm-6 {
		padding: 0px 20px;
	}

	.pagemenu .mt-row {
    display: block;
	}

	.pagemenu__bgwrap .pagemenu__textwrap {
        min-height: 200px;
        padding: 3em 20px;
    }

	.pagemenu__bgwrap:nth-child(3) {
		background-color: var(--bg_color);
	}

	.pagemenu__bgwrap:nth-child(4) {
		background-color: var(--middle_color);
	}

	.pagemenu .pagemenu__title {
    font-size: 1.5em;
    margin-bottom: 0.5em;
	}

	.newsarea .newsarea__title {
    font-size: 1.75em;
	}

	.newsarea .newsentry__item {
		display: block;
		gap: 20px;
		padding: 0 0.5em;
	}

	.newsarea .newsentry__item .newsentry__date {
		width: auto;
	}
	.newsarea .newsentry__genreWrap {
		width: auto;
	}
	.newsarea .newsentry__genreWrap .newsentry__genre {
		max-width: 120px;
		width: fit-content;
		padding: 0 8px;
		margin: 0 0 0 auto;
		line-height: 24px;
		height: 24px;
	}

	.newsarea .newsentry__item .newsentry__text {
		width: 100%;
    	margin: 0;
		margin-top: 0.5em;
	}
	
	/* ご成婚実績・お知らせページ */
	.mp-newslist .mp-info li{
	width: 48%;
	margin-right:4%;
    }

	.mp-newslist .mp-info li:nth-of-type(even){
	margin-right: 0;
    }

	/* footer */
	.footerlogo__wrap {
		margin: 0 0 2em 0;
	}

	.footerlogo__ a img {
		max-width: 100%;
		width: auto;
		height: auto;
	}

	.footer__number {
		justify-content: center;
	}

	.footer-menu .footer-menu__wrap {
    gap: 30px;
	}

	.footer-menu .footer-menu__wrap li {
		width: calc(50% - 15px);
		list-style: none;
		position: relative;
	}

	.footer-item {
    display: block;
	}

	.footer-item hgroup {
    text-align: center;
   	 margin-bottom: 1em;
	}

	.footer-sns .footer-sns__wrap {
    display: flex;
    gap: 0.5em;
    justify-content: center;
   	 margin-top: 1em;
	}

	.copyarea {
    display: block;
   	 margin-top: 2em;
   	 text-align: center;
	}

	.copyarea__text {
   	 margin-top: 1em;
	}

	.newsHeader__title {
    font-size: 2em;
	}

	.UnderlayerJumbotron {
    height: auto;
    min-height: 150px;
    display: flex;
    align-items: center;
	}

	.UnderlayerJumbotron .mt-container {
    padding: 20px;
    display: block;
    margin: 0;
	}

	.newslist {
   	 margin-bottom: 2em;
	}

	.newslistWrap.mt-row {
    gap: 0;
    flex-direction: column-reverse;
	}

	.newslistWrap .mt-col-sm-3, .newsWrap .mt-col-sm-3 {
    width: 100%;
   	 margin-bottom: 0;
	}

	.newslistWrap .mt-col-sm-9,  .newsWrap .mt-col-sm-9 {
    width: 100%;
   	 margin-bottom: 4em;
	}

	.newslist li {
   		padding: 1em 0;
	}

	.newslist li a, .newslist article a {
    	padding: 0;
	}

	.newslist .newslistbutton-wrap {
   		 margin-top: 1em;
	}

	.newslist .newslist__prevbutton {
		padding: 0.5em 2.5em 0.5em 2em;
	}

	.news-sidemenu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
	}

	.news-sidemenu__wrap {
    width: calc(50% - 15px);
    margin: 0;
	}

	.newsWrap.mt-row {
    gap: 0;
    flex-direction: column-reverse;
	}

	.newsWrap .mt-col-sm-9, .newsWrap .mt-col-sm-3 {
    width: 100%;
	}

	.newsdata__wrap .genre {
    max-width: 120px;
    width: fit-content;
    height: 24px;
    line-height: 24px;
	}

	.pageHeader__title {
	font-size: 2em;
	}

	.pageHeader__detial {
		font-size: 0.825em;
	}

	.pagesColumnWrap .mt-row {
    display: flex;
    gap: 20px;
    flex-direction: column;
	}

	.pagesColumnWrap .mt-col-sm-6 {
   width: 100%;
   padding: 0;
	}

	.pages-subnavi .mt-container {
		padding: 0;
	}

	.pages-subnavi .subnavi-depth__wrap {
		height: 36px;
		line-height: 36px;
    	padding: 0 20px;
	}

	.pankuzu li:after {
    	bottom: 0px;
	}
}

@media (max-width: 575px) {
	.servicearea__entry ul .service_box{ /* スマートフォンでのトップページサービスメニュー（33）*/
		width: 100%;
	}
}
/* ------------------------------------------
						wysiwyg
------------------------------------------ */
.wysiwyg>*:first-child {
	margin-top: 0;
}
.wysiwyg>*:last-child {
	margin-bottom: 0;
}

.wysiwyg h1 {
	font-size: 2em;
	margin: 1em 0;
	}

.wysiwyg h2 {
	font-size: 1.5em;
	margin: 2em 0 1em;
	padding-top: 1em;
	font-weight: bold;
	color:rgba(0,162,106,1);
}

.pagesWrap .wysiwyg h2::before{
	content: "▼ ";
	color:rgba(0,162,106,1);
}
.pagesWrap .wysiwyg h2::after{
	content: " ▲";
	color:rgba(0,162,106,1);
}

.wysiwyg h3 {
	font-size: 1.25em;
	margin: 2em 0 0.5em;
	font-weight: bold;
	color:rgba(0,162,106,1);
}

.wysiwyg h4 {
	font-size: 1.125em;
	margin: 1em 0 0.5em;
	font-weight: bold;
}

.wysiwyg h5 {
	font-size: 1em;
	margin: 2em 0 0.5em;
	display: flex;
	font-weight: normal;
	gap: 0.5em;
}

.wysiwyg h5:before {
	content: "";
	display: block;
	width:4px;
	background-color: rgba(0,162,106,0.5);
}

.wysiwyg h6 {
	font-size: 1em;
	margin: 1em 0 0.25em;
	font-weight: bold;
}

.wysiwyg p{
	margin-left: 0.5em;
	margin-bottom: 0 !important;
	display: block;
	min-height: 16px !important;
}

.wysiwyg a {
	/* リンクカラーの変更（33）
	color: var(--main_color);
	*/
	color: #1558d6;
	text-decoration: underline;
}

.wysiwyg a:hover {
	text-decoration: none;
	color: rgb(21,88,214,0.8);
}

.wysiwyg strong {
	font-weight: bold;
}

/*
.wysiwyg ul {
	margin: 0 0 1em 1.5em;
}

.wysiwyg ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	padding-left: 1.25em;
	margin-bottom: 0.5em;
	position: relative;
}
*/
.wysiwyg ul li:last-child {
	margin-bottom: 0;
}

.wysiwyg ul {
	margin: 0 0 1em 1em;
	padding-inline-start: 0;
}

.wysiwyg ul li {
	list-style-type: disc #333;
	display: list-item;
	margin-bottom: 0.5em;
	margin-left: 1em;
}

.wysiwyg ol {
	margin: 0 0 1em 1em;
	padding-inline-start: 0;
}

.wysiwyg ol li {
	list-style-type: decimal;
	margin-bottom: 0.5em;
	margin-left: 1.5em;
	padding-left: 0.5em;
}

.wysiwyg ol li::marker {
  font-weight: bold;
}

.wysiwyg dl {
	margin: 0 0 1em 1.25em;
}

.wysiwyg dl dt {
	margin: 0 0 0.5em 0;
}

.wysiwyg dl dd {
	margin: 0;
}

.wysiwyg dd+dt {
	margin: 0.5em 0 ;
}


.wysiwyg hr {
	margin: 2em 0;
	border-top: 1px solid var(--middle_color);
}

.wysiwyg blockquote {
	width: auto;
	display: block;
	border-left: 3px solid var(--middle_color);
	padding: 0 0 0 1em;
	margin: 0 0 1em;
	font-size: 1em;
}

.wysiwyg pre {
	width: fit-content;
	display: block;
	color: var(--text_main_color);
	border: 1px solid var(--text_middle_color);
	border-radius: 0;
   line-height: 1.75;
	padding: 1em;
	margin: 0 0 1em;
	font-size: 0.875em;
}

.wysiwyg p {
	margin-bottom: 1em;
}

/* ウェブページ内の表の書式設定 */

.wysiwyg table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    border: 1px solid var(--text_main_color);
}

.wysiwyg table th {
	width: 5% !important;
	padding: auto 1.5em;
	vertical-align: top;
	text-align-last: justify;
	white-space: nowrap;
	color: #333 !important;
	border: 1px solid #ccc;
    background-color: #f2f2f2;
    padding: 1em;
}

.mp-header .wysiwyg table th {
	width: 15% !important;
}

.wysiwyg table td {
	vertical-align: top;
	color: #333 !important;
	border: 1px solid #ccc;
    padding: 1em;
}

.wysiwyg table td p{
	margin-bottom: 0;
}

.wysiwyg table, .wysiwyg th, .wysiwyg td {
    border: 1px solid var(--text_main_color);
}

.wysiwyg table td .note{
	margin-bottom: 0;
}

.wysiwyg .mt-be-columns {
	margin: 2em 0;
	gap: 40px;
}

/* figure */
.wysiwyg figure,
.wysiwyg img {
	margin: 1em auto;
	max-width: 100%;
	width: auto;
	height: auto;
}

.wysiwyg figure figcaption {
	margin-top: -10px;
}

.wysiwyg figure figcaption {
	font-size: 0.825em;
}
.wysiwyg figure.mt-figure-center figcaption {
	text-align: center;
}


@media (max-width: 575px) {
	.wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5,.mp-header .mt-container-fluid h2 {
   		margin: 1.25em 0 1em;
	}
	.wysiwyg figure, .wysiwyg img {
   		width: 100%;
   		height: auto;
	}
	.wysiwyg ul li:before {
    	top: 0.5em;
	}


	/* ページリスト */
	.pageslist {
		padding-left: 1.5em !important;
		padding-right: 1.5em !important;
		display: block;
		position: relative;
	}
	.pagesColumnWrap {
		width: 100%;
		margin-bottom: 32px;
	}
	
	.販路開拓 .pagesWrap .pageslistWrap h2::before,
	.企画開発 .pagesWrap .pageslistWrap h2::before,
	.ふるさと納税活用 .pagesWrap .pageslistWrap h2::before,
	.jirei::before {
		content:"\02713\00A0";
		color: rgba(0,162,106,1);
	}

	.ふるさと納税活用 .mt-be-columns {
		flex-direction: column;
	}
	.ふるさと納税活用 .mt-be-column h3{
		text-align: left;
	}

	/* マリッジプラザの書式設定 */
	.mp-merit dt::before{
		content:"\02713";
	}
	.mp-merit dt{
		text-indent: 0em;
		padding-left: 0.5em;
	}
	.mp-merit dd{
		padding-left: 1em;
	}
	.mp-info li{
	width: 70%;
	margin-right: 5%;
    }
}

/*-------------
	webpush
-------------*/
.webpush {
	display: none;
}

.mtnet-push-notification-service-enabled .webpush {
	display: block;
}

a.webpush:hover {
	text-decoration: none;
}

a:hover .side-webpush {
	text-decoration: none;
}

.side-webpush {
	max-width: 100%;
	margin: 1rem auto 30px;
	display: block;
	text-align: center;
	padding: 10px;
	background: var(--main_color);
	color: var(--text_white_color);
}

div.mtnet-subscription-modal-fold,
.mtnet-subscription-modal .mtnet-subscription-modal-button-primary,
.mtnet-subscription-modal .mtnet-subscription-modal-button-primary:hover,
.mtnet-subscription-modal .mtnet-subscription-modal-button-primary:active,
.mtnet-subscription-modal .mtnet-subscription-modal-button-primary:focus {
	background: var(--main_color);
	/* リンクホバー時の下線削除（33）
	border-color: var(--main_color);
	*/
	color: var(--text_white_color);
}

.side-webpush__txt {
	text-align: center;
}

.side-webpush__txt::before {
	content: "\f0f3";
	margin-right: 0.25rem;
	font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* ------------------------------------------
						Search
------------------------------------------ */

/* search area */
.mt-site-search-form {
	display: flex;
}

@media only screen and (min-width: 64.063em) {
	.mt-site-search-form {
		width: 480px;
	}
}

.mt-site-search-form__query {
	position: relative;
	display: block;
	width: calc(100% - 62px - 0.5em);
	height: 30px;
	padding: 0 8px;
	font-size: 1em;
	box-sizing: inherit;
	border: 1px solid var(--text_main_color);
	color:  var(--text_main_color);
}

.mt-site-search-form__button {
	text-align: center;
	width: 62px;
	height: 30px;
	font-size: 1em;
	padding: 0 14px;
	border: 1px solid var(--text_main_color);
	color: var(--text_main_color);
}

.mt-site-search-result-item__excerpt, .mt-site-search-result-item__url {
	font-size: 1em !important;
}

/*  result */

.mt-site-search-result a {
	text-decoration: none;
}

.mt-site-search-result__list>div {
	padding: 1.5em 0;
	margin: 0;
	border-bottom: 1px solid var(--middle_color);
}

.mt-site-search-result-item__label {
    font-size: 1.5em;
    margin: 0 0 0.5em 0;
    font-weight: bold;
}

.mt-site-search-result-item__url {
	display: none;
}

.mt-site-search__pagination ul {
    width: 100%;
    display: flex;
    gap: 20px;
    font-size: 1em !important;
    margin: 2em 0 0 0;
    justify-content: center;
}

.mt-site-search__pagination ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
.mt-site-search__pagination ul li:before {
    display: none;
}

.mt-site-search__pagination a {
	text-decoration: none;
}

.mt-site-search__pagination a strong {
	font-size: 1.5em;
	position: relative;
	bottom: 2px;
}

.mt-site-search-pagination-item--previous .mt-site-search-pagination-item__link, .mt-site-search-pagination-item--next .mt-site-search-pagination-item__link {
	position: relative;
}
.mt-site-search-pagination-item--previous .mt-site-search-pagination-item__link:before {
	content: "";
	display: block;
	width: 0.75em;
	height: 0.75em;
	border: 1px solid var(--main_color);
	border-width: 2px 2px 0 0;
	rotate: -135deg;
	position: absolute;
	top: 8px;
}

.mt-site-search-pagination-item--next .mt-site-search-pagination-item__link:after {
	content: "";
	display: block;
	width: 0.75em;
	height: 0.75em;
	border: 1px solid var(--main_color);
	border-width: 2px 2px 0 0;
	rotate: 45deg;
	position: absolute;
	top: 8px;
}

.mt-site-search-pagination-item--previous .mt-site-search-pagination-item__link span, .mt-site-search-pagination-item--next .mt-site-search-pagination-item__link span {
    visibility: hidden;
}

/* ------------------------------------------
			かんたんデザイン編集対応
------------------------------------------ */
.tox.tox-tinymce-inline {
    z-index: 9999;
}
