/* ----------------------------------------------------------------header*/
header {
    position: relative;
	text-align: left;
}
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px calc(clamp(15px, 3.125%, 60px) + 42px) 15px clamp(15px, 3.125%, 60px);
	font-size: 0;
    z-index: 9999;
}
h1 {
    line-height: 0;
}
h1 img {
	width: auto;
	height: 40px;
}
.header_nav {
    display: flex;
    align-items: center;
}
.header_nav li a {
    display: flex;
    justify-content: center;
    align-items: center;
	width: 40px;
	height: 40px;
    font-size: 20px;
    text-decoration: none;
    color: var(--white);
}

@media print, screen and (min-width:768px) {
#header {
    padding: 24px calc(clamp(30px, 3.125%, 60px) + 62px) 24px clamp(20px, 3.125%, 60px);
}
h1 img {
	width: auto;
	height: 52px;
}
.header_nav {
    display: flex;
    align-items: center;
}
.header_nav li a {
	width: 60px;
	height: 60px;
    font-size: 30px;
}
}
@media print, screen and (min-width:1200px) {
#header {
    padding: 32px clamp(20px, 3.125%, 60px);
}
h1 img {
	width: auto;
	height: 52px;
}
.header_nav {
    display: none;
}
}

/*------------------------------------------------------------toggle*/
.toggle {
	position: fixed;
	top: 15px;
	right: clamp(15px, 3.125%, 60px);
	width: 40px;
	height: 40px;
	z-index: 99999;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.toggle span {
	display: block;
	background: var(--white);
	width: 20px;
	height: 2px;
	position: absolute;
	left: 10px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.toggle span:first-child {
	top: 12px;
}
.toggle span:nth-child(2) {
	margin-top: -1px;
	top: 50%;
}
.toggle span:nth-child(3) {
	bottom: 12px;
}
.toggle.opennav {
	position: fixed;
	z-index: 99999;
}
.toggle.opennav span {}
.toggle.opennav span:first-child {
	-webkit-transform: translateY(7px) rotate(45deg);
	-moz-transform: translateY(7px) rotate(45deg);
	-ms-transform: translateY(7px) rotate(45deg);
	transform: translateY(7px) rotate(45deg);
}
.toggle.opennav span:nth-child(2) {
	opacity: 0;
}
.toggle.opennav span:nth-child(3) {
	-webkit-transform: translateY(-7px) rotate(-45deg);
	-moz-transform: translateY(-7px) rotate(-45deg);
	-ms-transform: translateY(-7px) rotate(-45deg);
	transform: translateY(-7px) rotate(-45deg);
}
@media print, screen and (min-width:768px) {
.toggle {
	top: 24px;
	right: clamp(20px, 3.125%, 60px);
	width: 60px;
	height: 60px;
}
.toggle span {
	display: block;
	background: var(--white);
	width: 32px;
	height: 2px;
	position: absolute;
	left: 14px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.toggle span:first-child {
	top: 18px;
}
.toggle span:nth-child(2) {
	margin-top: -1px;
	top: 50%;
}
.toggle span:nth-child(3) {
	bottom: 18px;
}
.toggle.opennav span {}
.toggle.opennav span:first-child {
	-webkit-transform: translateY(11px) rotate(45deg);
	-moz-transform: translateY(11px) rotate(45deg);
	-ms-transform: translateY(11px) rotate(45deg);
	transform: translateY(11px) rotate(45deg);
}
.toggle.opennav span:nth-child(2) {
	opacity: 0;
}
.toggle.opennav span:nth-child(3) {
	-webkit-transform: translateY(-11px) rotate(-45deg);
	-moz-transform: translateY(-11px) rotate(-45deg);
	-ms-transform: translateY(-11px) rotate(-45deg);
	transform: translateY(-11px) rotate(-45deg);
}
}
@media print, screen and (min-width:1200px) {
.toggle {
		display: none;
}
}

/*------------------------------------------------------------mainnavi*/
#mainnavi {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	padding: 50px 15px;
	text-align: center;
	background: rgba(var(--black_tr),0.85);
    backdrop-filter: blur(5px);
    overflow: auto;
    z-index: 999;
}
#mainnavi > ul > li {
	line-height: 1.1;
    margin: 15px 0;
    font-family: "EB Garamond", "Zen Old Mincho", serif;
}
#mainnavi > ul > li > a {
	color: var(--white);
	text-decoration: none;
	display: block;
}
#mainnavi > ul > li > a > span {
	display: inline-block;
	border-bottom: 2px solid rgba(var(--white_tr),0);
	padding: 8px 0;
    transition: 0.5s;
}
#mainnavi > ul > li.active > a > span {
	border-bottom: 2px solid rgba(var(--white_tr),1);
}
#mainnavi > ul:last-child {
	margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
}
#mainnavi > ul:last-child li {
	font-size: 20px;
}

@media print, screen and (min-width:768px) {
#mainnavi {
	padding: 60px 20px 0;
}
#mainnavi > ul > li {
    margin: 18px 0;
	font-size: 18px;
}
#mainnavi > ul:last-child li {
	font-size: 30px;
}
}
@media print, screen and (min-width:1200px) {
#mainnavi {
    display: flex;
	position: static;
    height: auto;
	top: auto;
	left: auto;
	padding: 0;
	text-align: center;
    background: none;
    backdrop-filter: none;
	gap: 36px;
    overflow: visible;
}
#mainnavi > ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
    gap: 30px;
}
#mainnavi > ul > li {
    height: 100%;
	font-size: 18px;
    margin: 0;
}
#mainnavi > ul > li:hover > a > span {
	border-bottom: 2px solid rgba(var(--white_tr),1);
}
#mainnavi > ul > li a {
    display: flex;
    align-items: center;
    height: 100%;
}
#mainnavi > ul:last-child {
	margin-top: 0;
    gap: 30px;
}
#mainnavi > ul:last-child li {
	font-size: 30px;
}
#mainnavi > ul > li > a > span {
	padding: 12px 0;
}
}

#mainnavi > ul > li.sub_toggle > a.sp {
	display: block;
}
#mainnavi > ul > li.sub_toggle > a.pc {
	display: none;
}
#mainnavi > ul > li.sub_toggle > a span {
	position: relative;
    padding-right: 20px;
}
#mainnavi > ul > li.sub_toggle > a span::after {
    position: absolute;
    top: 50%;
    right: 0;
	display: block;
    width: 8px;
    height: 8px;
	content: "";
    border-right: solid 2px var(--white);
    border-bottom: solid 2px var(--white);
    transform: translate(0, -50%) rotate(45deg);
}
#mainnavi > ul > li.sub_toggle ul {
	font-size: 0;
	padding: 10px 0;
	background: rgba(var(--gray_d),0.9);
    text-align: center;
	display: none;
}
#mainnavi > ul > li.sub_toggle ul li {
	display: inline-block;
	margin: 10px;
    line-height: 1.1;
	font-size: 14px;
}
#mainnavi > ul > li.sub_toggle ul li.title {
    text-align: center;	
	display: block;
	margin: 10px 8px;
    padding-bottom: 8px;
    line-height: 1.1;
	font-size: 15px;
    border-bottom: solid 1px rgba(var(--gray),0.4);
}
#mainnavi > ul > li.sub_toggle ul li a {
	text-decoration: none;
	display: block;
}
@media print, screen and (min-width:768px) {
#mainnavi > ul > li.sub_toggle ul li {
  font-size: 15px;
}
#mainnavi > ul > li.sub_toggle ul li.title {
	font-size: 16px;
}
}
@media print, screen and (min-width:1200px) {
#mainnavi > ul > li.sub_toggle {
	position: relative;
    transition: all 0.3s;
}
#mainnavi > ul > li.sub_toggle > a.sp {
	display: none;
}
#mainnavi > ul > li.sub_toggle > a.pc {
	display: flex;
}
#mainnavi > ul > li.sub_toggle ul {
    position: absolute;
    top: calc(100% - 7px);
    left: 0;
    width: 240px;
	font-size: 0;
	padding: 10px;
	background: rgba(var(--gray_d),0.9);
    backdrop-filter: blur(5px);
	display: none;
}
#mainnavi > ul > li.sub_toggle ul li {
	display: block;
	margin: 0;
    text-align: left;
}
#mainnavi > ul > li.sub_toggle ul li.title {
	display: none
}
#mainnavi > ul > li.sub_toggle ul li a {
	text-decoration: none;
	display: block;
    padding: 10px;
    transition: all 0.3s;
}
#mainnavi > ul > li.sub_toggle ul li a:hover {
	background: rgba(var(--gray),0.1);
}
}



/*-------------------------------------------header.fix*/
#header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(var(--black_tr),0.85);
    backdrop-filter: blur(5px);
    animation: mnavslide linear .3s 1;
	-webkit-animation: mnavslide linear .3s 1;
	z-index: 9999;
}
@keyframes mnavslide {
 0% {
	 
top: -90px;
}
 100% {
top: 0;
}
}
 @-webkit-keyframes mnavslide {
 0% {
top: -55px;
}
 100% {
top: 0;
}
}
#header.fixed h1 img {
    width: auto;
	height: 32px;
}
@media print, screen and (min-width:768px) {
#header.fixed h1 img {
    width: auto;
	height: 42px;
}
}
@media print, screen and (min-width:1200px) {
#header.fixed {
    padding: 15.5px clamp(20px, 3.125%, 60px);
}
}

/*------------------------------------------------------------pagetitle*/
#pagetitle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    padding: 125px clamp(15px, 3.125%, 60px) 0 clamp(15px, 3.125%, 60px);
    font-family: "EB Garamond", "Zen Old Mincho", serif;
    text-shadow: 
    rgba(0,0,0,0.2) 2px 0px 4px, rgba(0,0,0,0.2) -2px 0px 4px,
    rgba(0,0,0,0.2) 0px -2px 4px, rgba(0,0,0,0.2) 0px 2px 4px,
    rgba(0,0,0,0.2) 2px 2px 4px, rgba(0,0,0,0.2) -2px 2px 4px,
    rgba(0,0,0,0.2) 2px -2px 4px, rgba(0,0,0,0.2) -2px -2px 4px,
    rgba(0,0,0,0.2) 1px 2px 4px, rgba(0,0,0,0.2) -1px 2px 4px,
    rgba(0,0,0,0.2) 1px -2px 4px, rgba(0,0,0,0.2) -1px -2px 4px,
    rgba(0,0,0,0.2) 2px 1px 4px, rgba(0,0,0,0.2) -2px 1px 4px,
    rgba(0,0,0,0.2) 2px -1px 4px, rgba(0,0,0,0.2) -2px -1px 4px;
	background: url("../img/common_img/pagetitle.jpg") center bottom no-repeat;
    background-size: auto 90%;
}
#pagetitle h2 {
    text-align: center;
    line-height: 1.4;
    font-size: 24px;
}
#pagetitle h2 span {
    display: block;
}
#pagetitle h2 strong {
    display: block;
    font-size: 16px;
}
@media print, screen and (min-width:768px) {
#pagetitle {
    display: flex;
    align-items: center;
    height: 380px;
    padding: 110px clamp(15px, 3.125%, 60px) 0 clamp(15px, 3.125%, 60px);
	background: url("../img/common_img/pagetitle.jpg") center bottom no-repeat;
    background-size: auto 95%;
}
#pagetitle h2 {
    line-height: 1.3;
    font-size: 42px;
}
#pagetitle h2 strong {
    font-size: 20px;
}
}
@media print, screen and (min-width:992px) {
#pagetitle {
    height: 420px;
	background: url("../img/common_img/pagetitle.jpg") center bottom no-repeat;
    background-size: auto 100%;
}
}
@media print, screen and (min-width:1200px) {
#pagetitle {
    height: 460px;
    padding: 130px clamp(15px, 3.125%, 60px) 0 clamp(15px, 3.125%, 60px);
	background: url("../img/common_img/pagetitle.jpg") center bottom no-repeat;
    background-size: auto 95%;
}
}

/*------------------------------------------------------------wrapper*/
#wrapper {
    padding: 50px 0 0;
}
#wrapper #content_sub {
    margin-top: 50px;
    padding: 30px 15px;
    background: rgba(var(--gray_d),1);
}
#wrapper .main {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: left;
}
@media print, screen and (min-width:576px) {
#wrapper #content_sub {
    margin-bottom: 30px;
    background: none;
}
}
@media print, screen and (min-width:768px) {
#wrapper {
    padding: 80px 0 0;
}
#wrapper .main {
    max-width: 720px;
    padding: 0 15px;
}
}
@media print, screen and (min-width:992px) {
#wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 0 100px;
}
#wrapper .main {
    width: 650px;
    max-width: 650px;
    margin: 0;
    padding: 0;
}
#wrapper #content_sub {
    width: 250px;
    margin: 0;
    padding: 0;
    background: none;
}
}
@media print, screen and (min-width:1200px) {
#wrapper .main {
    width: 850px;
    max-width: 850px;
}
}

/*------------------------------------------------------------sidenavi*/
.search_keyword {
    margin-bottom: 20px;
}
.search_keyword form {
    display: flex;
    justify-content: space-between;
}
.search_keyword form input {
    width: calc(100% - 40px);
    font-size: 16px;
}
.search_keyword form button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    font-size: 18px;
    color: var(--white);
    border: solid 1px var(--white);
    background: none;
    transition: all 0.3s;
}
.search_keyword form button:hover {
    opacity: 0.7;
    background: rgba(var(--gray),0.4);
}


.accordionlist dt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background: rgba(var(--gray_d2),1)
}
.accordionlist dd {
    display:none;
    width: 100%;
	padding:0;
}
.accordion_icon,
.accordion_icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.accordion_icon {
	position: relative;
	width: 30px;
	height: 30px;
}
.accordion_icon span {
	position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
	height: 2px;
    background-color: var(--white);
    transform: translate(-50%, -50%);
}
.accordion_icon span:nth-of-type(1) {
	transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
	-moz-transform: translate(-50%, -50%) rotate(0deg);
	-ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
}
.accordion_icon span:nth-of-type(2) {
	transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
	-moz-transform: translate(-50%, -50%) rotate(90deg);
	-ms-transform: translate(-50%, -50%) rotate(90deg);
    -o-transform: translate(-50%, -50%) rotate(90deg);
}
/*＋、－切り替え*/
.accordion_icon.active span:nth-of-type(1) {
	display:none;
}
.accordion_icon.active span:nth-of-type(2) {
	transform: translate(-50%, -50%) rotate(180deg);
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
	-moz-transform: translate(-50%, -50%) rotate(180deg);
	-ms-transform: translate(-50%, -50%) rotate(180deg);
    -o-transform: translate(-50%, -50%) rotate(180deg);
}

.select_area .pc {
    display: none;
}

.select_area ul.select {
	margin: 0 9px 9px 9px;
}
.select_area ul.select img {
	width: 20px;
}
@media print, screen and (min-width:992px) {
.select_area {
    padding: 0px 0 10px;
    text-align: left;
}
.select_area .sp {
    display: none;
}
.select_area .pc {
    display: block;
    padding: 0;
}
.accordionbox {
    padding-bottom: 10px; 
    background: rgba(var(--gray_d),1);
}
.accordionlist dt {
    border-bottom: solid 1px rgba(var(--gray),0.5);
    background: none;
}
.accordionlist dt a {
    position: relative;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
}
.accordionlist dt a::before {
    position: absolute;
    right: 20px;
    bottom: 1em;
    display: block;
    width: 22px;
    height: 1px;
    content: "";
    background: var(--white);
    transition: all 0.3s;
}
.accordionlist dt a::after {
    position: absolute;
    right: 20px;
    bottom: calc(1em + 3px);
    display: block;
    width: 8px;
    height: 1px;
    content: "";
    background: var(--white);
    transform: rotate(45deg);
    transition: all 0.3s;
}
.accordionlist dt a:hover {
    opacity: 0.7;
    color: var(--white);
}
.accordionlist dt a:hover::before {
    right: 10px;
}
.accordionlist dt a:hover::after {
    right: 10px;
}
.accordionlist dd{
    display:block;
}
}

#menu {
	text-align: left;
    padding: 10px;
	background: rgba(var(--gray),0.1);
}
#menu > ul {
	border-top: solid 1px rgba(var(--gray),0.1);
}
#menu ul li {
	line-height: 1.25;
}
#menu ul li a {
	text-decoration: none
}
#menu > ul > li {
    font-size: 15px;
	border-bottom: solid 1px rgba(var(--gray),0.1);
}
#menu > ul > li > a {
	display: block;
    padding: 10px;
}
#menu > ul > li.sub_toggle {
	position: relative;
}
#menu > ul > li.sub_toggle::after {
    position: absolute;
    top: 15px;
    right: 10px;
	display: block;
    width: 8px;
    height: 8px;
	content: "";
    border-right: solid 2px var(--white);
    border-bottom: solid 2px var(--white);
    transform: rotate(45deg);
}
#menu > ul > li.sub_toggle > a.sp {
	display: block;
}
#menu > ul > li.sub_toggle > a.pc {
	display: none;
}
#menu > ul > li.sub_toggle ul {
	font-size: 0;
	padding: 10px 0;
	background: rgba(var(--gray),0.1);
	display: none;
}
#menu > ul > li.sub_toggle ul li {
	display: inline-block;
	margin: 10px;
    line-height: 1.1;
	font-size: 14px;
}
#menu > ul > li.sub_toggle ul li.title {
	display: block;
	margin: 10px 8px;
    padding-bottom: 8px;
    line-height: 1.1;
	font-size: 15px;
    border-bottom: solid 1px rgba(var(--gray),0.4);
}
#menu > ul > li.sub_toggle ul li a {
	text-decoration: none;
	display: block;
}
@media print, screen and (min-width:992px) {
#menu {
	text-align: left;
    padding: 0;
	background: none;
}
#menu > ul > li {
	border-bottom: none;
}
#menu > ul > li.link a {
	padding: 12px 15px;
}
#menu > ul > li.link a:hover {
	background: rgba(var(--gray),0.1);
}
#menu > ul > li.sub_toggle {
	position: relative;
    transition: all 0.3s;
}
#menu > ul > li.sub_toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
	display: block;
    width: 8px;
    height: 8px;
	content: "";
    border-right: solid 2px var(--white);
    border-bottom: solid 2px var(--white);
    transform: rotate(45deg);
}
#menu > ul > li.sub_toggle:hover {
    background: rgba(var(--gray_d2),1);
}
#menu > ul > li.sub_toggle > a.sp {
	display: none;
}
#menu > ul > li.sub_toggle > a.pc {
	display: block;
    padding: 12px 20px;
	text-decoration: none;
}
#menu > ul > li.sub_toggle ul {
    position: absolute;
    top: 0;
    right: 100%;
    width: 290px;
	font-size: 0;
	padding: 10px;
	background: rgba(var(--gray_d2),1);
	display: none;
}
#menu > ul > li.sub_toggle ul li {
	display: block;
	margin: 0;
	font-size: 14px;
}
#menu > ul > li.sub_toggle ul li.title {
	display: none
}
#menu > ul > li.sub_toggle ul li a {
	text-decoration: none;
	display: block;
    padding: 10px;
    transition: all 0.3s;
}
#menu > ul > li.sub_toggle ul li a:hover {
	background: rgba(var(--gray),0.1);
}
}
@media print, screen and (min-width:992px) {
#menu > ul > li.link a {
	padding: 10px 20px;
}
#menu > ul > li.sub_toggle::after {
    right: 20px;
}
}



/*------------------------------------------------------------content*/
.content_bg01 {
    padding: 50px 0;
	text-align: left;
}
.content_bg02 {
	text-align: left;
	padding-top: 10px;
}
.section {
	clear: both;
	padding-bottom: 10px;
}

@media print, screen and (min-width:768px) {
.content_bg01 {
	padding-top: 30px;
}
.content_bg02 {
	padding-top: 30px;
}
.section {
	padding-bottom: 30px;
}
}
/* ----------------------------------------------------------------footer*/
#footer_contact {
	text-align: center;
	padding: 160px 0 0;
    background: url("../img/common_img/contact_ph.png") center top no-repeat, url("../img/common_img/contact_bg.png") center top repeat-x;
    background-size: auto 160px, auto 160px;
}
#footer_contact .contents {
	padding: 30px 15px 40px;
    background: rgba(var(--gray_d),1);
}
#footer_contact .contents h3 {
    position: relative;
    margin-bottom: 20px;
	padding-bottom: 15px;
    line-height: 1.5;
}
#footer_contact .contents h3::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    width: 100px;
    height: 1px;
	text-align: center;
    content: "";
    background: var(--white);
    transform: translateX(-50%);
}
#footer_contact .contents p {
    margin-bottom: 30px;
    line-height: 1.5;
}
#footer_contact .contents ul {
    display: flex;
    justify-content: center;
    gap: 10px;
}
#footer_contact .contents ul li {
    width: calc((100% - 10px) / 2);
    max-width: 250px;
    font-family: "EB Garamond", serif;
}
#footer_contact .contents ul li a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: var(--white);
    border: solid 1px var(--white);
    transition: all 0.3s;
}
#footer_contact .contents ul li a span {
    position: relative;
    display: inline-block;
    padding-right: 42px;
}
#footer_contact .contents ul li a span::before {
    position: absolute;
    right: 0;
    bottom: 0.5em;
    display: block;
    width: 22px;
    height: 1px;
    content: "";
    background: var(--white);
    transition: all 0.3s;
}
#footer_contact .contents ul li a span::after {
    position: absolute;
    right: 0;
    bottom: calc(0.5em + 3px);
    display: block;
    width: 8px;
    height: 1px;
    content: "";
    background: var(--white);
    transform: rotate(45deg);
    transition: all 0.3s;
}
@media print, screen and (min-width:576px) {
#footer_contact {
	padding: 0 0 0 35%;
    background: url("../img/common_img/contact_ph.png") calc(50% - 200px) top no-repeat, url("../img/common_img/contact_bg.png") center top repeat-x;
    background-size: auto 100%, auto 100%;
}
#footer_contact .contents {
	text-align: center;
	padding: 40px 15px;
    background: rgba(var(--gray_d),0.85);
}
}
@media print, screen and (min-width:768px) {
#footer_contact {
	padding: 0 0 0 35%;
    background: url("../img/common_img/contact_ph.png") calc(50% - 250px) top no-repeat, url("../img/common_img/contact_bg.png") center top repeat-x;
    background-size: auto 100%, auto 100%;
}
#footer_contact .contents {
	padding: 80px 40px;
}
#footer_contact .contents h3 {
    position: relative;
    margin-bottom: 40px;
	padding-bottom: 30px;
    line-height: 1.5;
    font-size: 26px;
}
#footer_contact .contents p {
    margin-bottom: 50px;
    font-size: 22px;
}
#footer_contact .contents ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}
#footer_contact .contents ul li {
    width: calc((100% - 20px) / 2);
}
#footer_contact .contents ul li a:hover {
    opacity: 0.7;
    background: rgba(var(--gray),0.4);
}
#footer_contact .contents ul li a:hover span::before {
    right: -10px;
}
#footer_contact .contents ul li a:hover span::after {
    right: -10px;
}
}

@media print, screen and (min-width:992px) {
#footer_contact {
	padding: 0 0 0 35%;
    background: url("../img/common_img/contact_ph.png") calc(50% - 280px) top no-repeat, url("../img/common_img/contact_bg.png") center top repeat-x;
    background-size: auto 100%, auto 100%;
}
#footer_contact .contents {
	padding: 100px 40px;
}
#footer_contact .contents p {
    margin-bottom: 70px;
}
}
@media print, screen and (min-width:1200px) {
#footer_contact {
    display: flex;
    justify-content: flex-end;
	padding: 0;
    background: url("../img/common_img/contact_ph.png") calc(50% - 360px) top no-repeat, url("../img/common_img/contact_bg.png") center top repeat-x;
    background-size: auto 100%, auto 100%;
}
#footer_contact .contents {
    min-width: 50%;
	padding: 100px 40px;
}
#footer_contact .contents h3 span {
    display: block;
}
#footer_contact .contents p {
    margin-bottom: 70px;
}
}
@media print, screen and (min-width:1600px) {
#footer_contact {
    background: url("../img/common_img/contact_ph.png") 10% top no-repeat, url("../img/common_img/contact_bg.png") center top repeat-x;
    background-size: auto 100%, auto 100%;
}
}

/*footer*/
#footer {
	padding: 50px 0;
    text-align: center;
    font-family: "EB Garamond", "Zen Old Mincho", serif;
}
#footer h2 {
	margin-bottom: 20px;
}
#footer h2 img {
    width: auto;
	height: 40px;
}
#footer p .inline_block {
    display: inline-block;
}
#footer .btn_map {
    margin: 15px 0 20px;
}
#footer .btn_map a {
    display: inline-block;
    width: 210px;
    padding: 4.4px 0;
    text-decoration: none;
    color: var(--white);
    border: solid 1px var(--white);
    transition: all 0.3s;
}
#footer .btn_map a span {
    position: relative;
    display: inline-block;
    padding-right: 42px;
}
#footer .btn_map a span::before {
    position: absolute;
    right: 0;
    bottom: 0.5em;
    display: block;
    width: 22px;
    height: 1px;
    content: "";
    background: var(--white);
    transition: all 0.3s;
}
#footer .btn_map a span::after {
    position: absolute;
    right: 0;
    bottom: calc(0.5em + 3px);
    display: block;
    width: 8px;
    height: 1px;
    content: "";
    background: var(--white);
    transform: rotate(45deg);
    transition: all 0.3s;
}
#footer .bn_oks {
    margin-bottom: 30px;
}
#footer .bn_oks a {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    padding: 10.4px 0;
    text-decoration: none;
    color: var(--white);
    border: solid 1px var(--white);
    transition: all 0.3s;
}
#footer nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}
#footer nav ul:first-child {
    margin-bottom: 20px;
}
#footer nav ul li a {
    text-decoration: none;
}

@media print, screen and (min-width:768px) {
#footer {
	padding: 100px 0;
}
#footer h2 {
	margin-bottom: 40px;
}
#footer h2 img {
    width: auto;
	height: 52px;
}
#footer p .inline_block {
    display: inline-block;
}
#footer .btn_map {
    margin: 20px 0 30px;
}
#footer .btn_map a:hover {
    opacity: 0.7;
    background: rgba(var(--gray),0.4);
}
#footer .btn_map a:hover span::before {
    right: -10px;
}
#footer .btn_map a:hover span::after {
    right: -10px;
}
#footer .bn_oks {
    margin-bottom: 60px;
}
#footer .bn_oks a:hover {
    opacity: 0.7;
    background: rgba(var(--gray),0.4);
}
#footer nav ul {
    gap: 10px 30px;
}
#footer nav ul:first-child {
    margin-bottom: 20px;
}
#footer nav ul li a {
    text-decoration: none;
}
#footer nav ul li a:hover {
    text-decoration: underline;
}
}
small {
    display: block;
	margin-top: 50px;
	font-size: 12px;
    letter-spacing: 0.1em;
}
@media print, screen and (min-width:768px) {
small {
	margin-top: 80px;
}
}

/*カレンダー更新プログラム（フッター）フォーマット*/
.calendar {
	width: 100%;
	padding: 10px 9px;
	margin: 0 0 10px;
	background: var(--white);
	position: relative;
}
.calendar .cal_title {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}
.calendar .month {
	font-size: 11px;
	line-height: 1.2;
	font-weight: bold;
	text-align: right;
	position: absolute;
	top: 12px;
	right: 10px;
	z-index: 999;
}
.calendar .month strong {
	font-size: 16px;
}
.calendar table {
	width: 100%;
	border-collapse: collapse;
}
.calendar table th, .calendar table td {
	font-size: 12px;
	text-align: center;
	padding: 10px 0;
}
.calendar table th {
	background: #C0C0C0;
	font-weight: bold;
}
.calendar table td.color01 {
	font-weight: bold;
	background: url(../img/common_img/holiday.png) no-repeat center center;
}
.calendar table td.color02 {
	font-weight: bold;
	background: url(../img/common_img/half.png) no-repeat center center;
}
.calendar table td.color03 {
	color: var(--white);
	font-weight: bold;
	background: url(../img/common_img/monday.png) no-repeat center center;
}
.calendar ul.page_ctl {
	text-align: center;
	padding: 8px 10px;
	margin: 0 0 10px;
}
.calendar ul.page_ctl li {
	font-size: 12px;
	color: #389e7c;
}
.calendar ul.page_ctl li a {
	text-decoration: underline;
}
.calendar ul.page_ctl li a:hover {
	color: #999;
}
.calendar ul.page_ctl .ctl_left {
	float: left;
}
.calendar ul.page_ctl .ctl_right {
	float: right;
}
.calendar .tx_color01 {
	float: left;
	margin-right: 20px;
	padding: 0 0 0 15px;
	background: url(../img/common_img/holiday_s.png) no-repeat left center;
}
.calendar .tx_color02 {
	float: left;
	padding: 0 0 0 15px;
	background: url(../img/common_img/half_s.png) no-repeat left center;
}
.calendar .tx_color03 {
	clear: both;
	padding: 0 0 0 15px;
	background: url(../img/common_img/monday_s.png) no-repeat left center;
}

@media print, screen and (min-width:768px) {
.calendar {
	width: 60%;
	margin: 0 auto 10px;
}
}

@media print, screen and (min-width:992px) {
.calendar {
	width: 100%;
	margin: 0 0 10px;
}
}
/*カレンダー更新プログラム（メインカラム）フォーマット*/
.calender02 .note {
	display: inline-block;
	color: var(--white);
	font-size: 14px;
	font-weight: bold;
	background-color: #969696;
	top: 0px;
	border-radius: 4px;
	padding: 5px 10px;
	margin-bottom: 20px;
}
.calender02 .calender_nav {
	width: 260px;
	margin: 0 auto;
	text-align: center;
}
.calender02 div.date {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
.calender02 .calender_table {
	overflow-x: auto;
	clear: both;
	position: relative;
}
.calender02 table {
	width: 600px;
	border-collapse: collapse;
	margin-bottom: 10px;
}
.calender02 table tr th {
	text-align: center;
	background: #CBCBCB;
	border: 1px dotted #6F6F6F;
	border-bottom: 1px solid #6F6F6F;
	padding: 10px;
	width: 14%;
}
.calender02 table tr td {
	text-align: center;
	border: 1px dotted #6F6F6F;
	padding: 10px;
}
.calender02 table tr.tr_date td {
	background: #E5E5E5;
}
.calender02 table tr.tr_text td {
	height: 60px;
	vertical-align: top;
}
.calender02 .bg_color01 {
	background: #D5A8A9;
}
.calender02 .bg_color02 {
	background: #B1CAD8;
}
.calender02 .tx_color01 {
	color: #D5A8A9;
}
.calender02 .tx_color02 {
	color: #B1CAD8;
}

@media print, screen and (min-width:768px) {
.calender02 .note {
	display: none;
}
.calender02 table {
	width: 100%;
}
}
/*------------------------------------------------------------Pankuzu*/
/*pankuzu*/
#pankuzu {
    position: relative;
	width: 100%;
	margin: 0;
    padding: 0 clamp(15px, 3.125%, 60px);
	clear: both;
}
#pankuzu ol {
	list-style: none;
}
#pankuzu ol li {
	float: left;
	font-size: 11px;
	padding: 0 7px 0 10px;
    font-family: "EB Garamond", "Zen Old Mincho", serif;
	background: url(../img/common_img/icon_pankuzu.gif) no-repeat 0 50%;
}
#pankuzu ol li em {
	font-style: normal;
}
#pankuzu ol li.home {
	padding-left: 0;
	background: none;
}
#pankuzu ol li a:link, #pankuzu ol li a:visited {
	text-decoration: underline;
}
#pankuzu ol li a:hover, #pankuzu ol li a:active {
	text-decoration: none;
}
@media print, screen and (min-width:768px) {
#pankuzu {
	margin: -20px 0 0;
    z-index: 1;
}
}
@media print, screen and (min-width:992px) {
#pankuzu {
	margin: -40px 0 0;
    z-index: 1;
}
}

/* ----------------------------------------------------------------rayout*/
.center {
	display: block;
	margin: auto;
}

/*------------------------------------------------------------js-scrollable*/
.js-scrollable-wrap {
    white-space: nowrap;
}

.js-scrollable {
    word-break: break-all;
    table-layout: fixed;
    display: block;
    overflow: scroll;
}

/*------------------------------------------------------------table*/
.sheet_basic {
	width: 100%;
	border-collapse: collapse;
	border-top: solid 1px rgba(var(--gray),0.5);
	border-left: solid 1px rgba(var(--gray),0.5);
}
.sheet_basic tr th, .sheet_basic tr td {
	padding: 10px;
	text-align: left;
	vertical-align: top;
    line-height: 1.4;
	border-right: solid 1px rgba(var(--gray),0.5);
	border-bottom: solid 1px rgba(var(--gray),0.5);
}
.sheet_basic tr th {
	font-weight: 400;
}
.sheet_basic.price tr th {
	background: rgba(var(--gray_d),1);
}
.sheet_basic.price tr:first-child th {
    text-align: center;
	background: rgba(var(--gray_d2),1);
}

.sheet_dotline {
	width: 100%;
	border-collapse: collapse;
	border-top: dotted 1px rgba(var(--gray),1);
	border-left: none;
}
.sheet_dotline tr th, .sheet_dotline tr td {
	padding: 10px;
	text-align: left;
	vertical-align: top;
    line-height: 1.4;
	border-right: none;
	border-bottom: dotted 1px rgba(var(--gray),1);
}
.sheet_dotline tr th {
	font-weight: 400;
}

/*------------------------------------------------------------list*/
.list_basic li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 1.5em;
    line-height: 1.5;
}
.list_basic li::before {
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    display: block;
    width: 5px;
    height: 5px;
    content: "";
    border-radius: 50%;
    background: var(--white);
}

.list_num {
}
.list_num li {
    position: relative;
    counter-increment: cnt;
    margin-bottom: 10px;
    padding-left: 2.2em;
    line-height: 1.5;
}
.list_num li::before {
    position: absolute;
    top: -0.3em;
    left: 0;
    content: "0"counter(cnt);
    display: inline-block;
    width: 2.2em;
    font-family: "EB Garamond", serif;
    font-size: 1.4em;
}

.list_num_s {
    counter-reset: cnt;
}
.list_num_s li {
    position: relative;
    counter-increment: cnt;
    margin-bottom: 8px;
    padding-left: 2.0em;
    line-height: 1.5;
}
.list_num_s li::before {
    position: absolute;
    left: 0;
    content: "("counter(cnt)")";
    display: inline-block;
}

.list_kome li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 1.5em;
    line-height: 1.5;
}
.list_kome li::before {
    position: absolute;
    left: 0;
    display: inline-block;
    content: "※";
}

/*------------------------------------------------------------Decoration*/
/*Line*/
hr.line_01 {
	height: 1px;
	clear: both;
	margin: 40px 0px;
	border-top: 1px solid rgba(var(--white_tr),0.3);
	border-right: 0 dotted #CCC;
	border-bottom: 0 dotted #CCC;
	border-left: 0 dotted #CCC;
}
hr.line_02 {
	height: 1px;
	clear: both;
	margin: 20px 0px;
	border-top: 1px dotted rgba(var(--white_tr),0.3);
	border-right: 0 dotted #CCC;
	border-bottom: 0 dotted #CCC;
	border-left: 0 dotted #CCC;
}
@media print, screen and (min-width:768px) {
hr.line_01 {
	margin: 90px 0px;
}
hr.line_02 {
	margin: 40px 0px;
}
}
.space_10 {
	height: 10px;
	clear: both;
}
.space_20 {
	height: 20px;
	clear: both;
}
.space_30 {
	height: 30px;
	clear: both;
}
.space_10 hr, .space_20 hr, .space_30 hr {
	display: none;
}
/*------------------------------------------------------------Text*/
/*title*/
.title01 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px; 
	font-size: 22px;
	text-align: left;
    line-height: 1.35;
}
.title01::after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 60px;
    height: 1px;
    content: "";
    background: var(--white);
}
.title02 {
	margin-bottom: 20px;
    padding-bottom: 8px; 
    line-height: 1.35;
	font-size: 20px;
	border-bottom: solid 1px rgba(var(--white_tr),0.7);
}
.title02 span {
	font-size: 0.8em;
}
.title03 {
    position: relative;
	margin-bottom: 15px;
    padding-bottom: 10px; 
    line-height: 1.35;
	font-size: 18px;
}
.title03::after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
	content: "";
    width: 45px;
    height: 1px;
    background: rgba(var(--white_tr),0.5);
}
.title03 span {
	font-size: 0.8em;
}
.title_catch01 {
    margin-bottom: 20px;
    line-height: 1.35;
    font-size: 18px;
}
.title_catch01 span {
    display: block;
    margin-top: 4px;
    font-size: 1.2em;
}

@media print, screen and (min-width:768px) {
.title01 {
    margin-bottom: 40px;
    padding-bottom: 20px; 
	font-size: 32px;
}
.title01::after {
    width: 120px;
}
.title02 {
	margin-bottom: 30px;
    padding-bottom: 10px; 
	font-size: 24px;
}
.title03 {
    position: relative;
	margin-bottom: 20px;
    padding-bottom: 12px; 
	font-size: 20px;
}
.title03::after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
	content: "";
    width: 90px;
    height: 1px;
    background: rgba(var(--white_tr),0.5);
}
.title_catch01 {
    margin-bottom: 30px;
    font-size: 24px;
}
.title_catch01 span {
    font-size: 1.32em;
}
}
/*TextRight*/
.tx_right {
	text-align: right;
}
/*TextLeft*/
.tx_left {
	text-align: left;
}
/*TextCenter*/
.tx_cent {
	text-align: center;
}
/*bold*/
.tx_bold {
	font-style: normal;
	font-weight: bold;
}
/*TextRed*/
.tx_red {
	color: #C33;
}

.tx_em01 {
    color: var(--yellow);
}
.tx_em02 {
    color: var(--blue);
}
.tx_s {
}
.tx_l {
	font-size: 1.1em;
}

/*attention*/
.attention {
	font-size: 11px;
	line-height: 130%;
	margin: 5px 0;
}
/*------------------------------------------------------------Float*/
/*FloatLeft*/
.float_left {
	float: left;
}
/*FloatRight*/
.float_right {
	float: right;
}
/*ClearBoth*/
.clearboth {
	clear: both;
}
/*phbox*/
.phbox_right {
	text-align: center;
}
.phbox_right img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.phbox_left {
	text-align: center;
}
.phbox_left img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.ov_hidden {
	overflow: hidden;
}

@media print, screen and (min-width:768px) {
.phbox_right {
	float: right;
	margin-left: 30px;
	margin-bottom: 0px;
}
.phbox_left {
	float: left;
	margin-right: 30px;
	margin-bottom: 0px;
}
}
/*------------------------------------------------------------Margin*/
/*MarginTop*/
.margin_t05 {
	margin-top: 5px;
}
.margin_t10 {
	margin-top: 10px;
}
.margin_t20 {
	margin-top: 20px;
}
.margin_t30 {
	margin-top: 30px;
}
.margin_t40 {
	margin-top: 40px;
}
.margin_t50 {
	margin-top: 50px;
}
/*MarginBottom*/
.margin_b0 {
	margin-bottom: 0!important;
}
.margin_b05 {
	margin-bottom: 5px;
}
.margin_b10 {
	margin-bottom: 10px;
}
.margin_b20 {
	margin-bottom: 20px;
}
.margin_b30 {
	margin-bottom: 30px;
}
.margin_b40 {
	margin-bottom: 40px;
}
.margin_b50 {
	margin-bottom: 50px;
}
/*MarginRight*/
.margin_r05 {
	margin-right: 5px;
}
.margin_r10 {
	margin-right: 10px;
}
.margin_r15 {
	margin-right: 15px;
}
.margin_r20 {
	margin-right: 20px;
}
/*MarginLeft*/
.margin_l05 {
	margin-left: 50px;
}
.margin_l10 {
	margin-left: 10px;
}
.margin_l15 {
	margin-left: 15px;
}
.margin_l20 {
	margin-left: 20px;
}
/*Margin_device*/
.margin-xs-b10 {
	margin-bottom: 10px;
}

@media print, screen and (min-width:768px) {
.margin-xs-b10 {
	margin-bottom: 0px;
}
}
/*------------------------------------------------------------ClearFix*/
.clearfix {
	zoom: 1;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
/*------------------------------------------------------------Hoverimg*/
a:hover img.hoverimg {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
}
/*------------------------------------------------------------other*/
/*Pagetop*/
#pagetop {
	position: fixed;
	bottom: 20px;
	right: 15px;
    z-index: 999;
}
#pagetop img {
	width: 50px;
    height: auto;
}
@media print, screen and (min-width:768px) {
#pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#pagetop img {
	width: auto;
    height: auto;
}
}


.contact_box {
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    font-family: "EB Garamond", "Zen Old Mincho", serif;
    background: rgba(var(--gray_d),1);
}
.contact_box ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.contact_box ul li:not(:last-child) {
    width: 49%;
}
.contact_box ul li:not(:last-child) span {
    font-size: 20px;
}
.contact_box ul li a {
    color: var(--white);
    text-decoration: none;
}
.contact_box ul li:last-child {
    width: 100%;
    margin-top: 10px;
}
.contact_box ul li:last-child a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    line-height: 1.1;
    border: solid 1px var(--white);
    transition: all 0.3s;
}
.contact_box ul li:last-child a i {
    font-size: 1.4em;
}
@media print, screen and (min-width:768px) {
.contact_box {
    margin-top: 30px;
    padding: 30px;
}
.contact_box ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.contact_box ul li:not(:last-child) {
    width: auto;
}
.contact_box ul li:not(:last-child) span {
    font-size: 24px;
}
.contact_box ul li a {
    color: var(--white);
    text-decoration: none;
}
.contact_box ul li:last-child {
    width: auto;
    margin-top: 0;
    font-size: 18px;
}
.contact_box ul li:last-child a {
    padding: 10px 15px;
}
.contact_box ul li:last-child a:hover {
    opacity: 0.7;
    background: rgba(var(--gray),0.4);
}
}
@media print, screen and (min-width:1200px) {
.contact_box {
    margin-top: 40px;
}
.contact_box ul li:not(:last-child) {
    font-size: 20px;
}
.contact_box ul li:not(:last-child) span {
    font-size: 33px;
}
.contact_box ul li:last-child {
    font-size: 20px;
}
.contact_box ul li:last-child a {
    padding: 15px 20px;
}
.contact_box ul li:last-child a i {
    font-size: 1.6em;
}
}

.tx_box p:not(:last-child) {
    margin-bottom: 1em;
}

/*PageNavi*/
.pagenavi {
	margin: 0 0 10px;
	padding: 10px 10px 5px;
	text-align: center;
}
.pagenavi li {
	display: inline;
	margin: 0 2px;
	padding: 0;
}
.pagenavi li span {
	display: inline-block;
	text-decoration: none;
	vertical-align: middle;
	margin-bottom: 5px;
	padding: 3px 10px;
	color: rgba(var(--gray_l),0.8);
	border: 1px solid rgba(var(--gray),0.5);
	background: rgba(var(--gray_d),1);
}
.pagenavi li a {
	display: inline-block;
	text-decoration: none;
	vertical-align: middle;
	margin-bottom: 5px;
	padding: 3px 10px;
	color: var(--white);
	border: 1px solid var(--white);
	background: none;
	zoom: 1;
    transition: all 0.3s;
}
.pagenavi li a:hover {
    opacity: 0.7;
    background: rgba(var(--gray),0.4);
}


.anchor_point {
    margin-top: -100px;
    padding-top: 100px;
}
/*-----------------------------------コンバージョン用ソースコード表示*/
.email {
 display: none;
}
.phone_number {
 display: none;
 margin-bottom: 20px;
}