:root {
  --main_black: #403f3f;
  --white: #ffffff;
  --tbl-title: 2rem;
  --h3-title: 2.5rem;
  --main-font-size: 1.6rem;
  --text-base-font-size: 1.4rem;
  --sp-text-base-font-size: 1.2rem;
  --yellow: #fbd76d;
  --green: #18c21d;
  --tel-color: #02294d;
  --pc-main-width: 1340px;
}

@media (max-width: 768px) {
  :root {
    --h3-title: 2rem;
  }
}
@media screen and (max-width: 767px) {
	.only-pc {
		display: none;
	}	
}
@media screen and (min-width: 768px) {
	.only-sp {
		display: none;
	}	
}

@font-face {
/*   font-family: "Noto Sans JP"; */
  src: url(../font/NotoSansJP-Regular.otf), url(../font/NotoSansJP-Bold.otf);
  font-weight: normal;
  font-style: normal;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 0.78125vw;
  font-size: clamp(6px, 0.78125vw, 10px);
  scroll-behavior: smooth;
}

body {
/*   font-family: "Noto Sans JP"; */
  font-size: 1.6rem;
  background: #ffffff;
  color: #403f3f;
  line-height: 1.7;
  margin: 0;
}

img {
  width: auto;
  max-width: 100%;
}

a {
  text-decoration: none;
  background-color: transparent;
  color: #403f3f;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

p {
  margin: 0;
}

section {
  padding: 2rem 0;
}

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

/* font */
.text-sm {
	font-size: 1rem;
}
.text-base {
	font-size: var(--text-base-font-size);
}
.text-lg {
	font-size: 2.4rem;
}
.text-footer {
	font-size: 1.4rem;
}
.text-footer-title {
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 10px;
}
.text-h1 {
	font-size: 3rem;
}
.text-8px {
	font-size: 8px;
}
.text-9px {
	font-size: 9px;
}
.text-10px {
	font-size: 10px;
}
.text-14px {
	font-size: 14px;
}
.text-15px {
	font-size: 15px;
}
.text-25px {
	font-size: 25px;
}
.prd-custom-main-font {
	font-size: 29px;
}
.prd-custom-sub-font {
	font-size: 16px
}
.text-fluid-12-14 {
	font-size: clamp(12px, 3vw, 14px);
}
@media screen and (max-width: 767px) {
/* 	.text-base {
		font-size: var(--sp-text-base-font-size);
	} */
	.sp-font-14px {
		font-size: 14px;
	}
	.text-lg {
		font-size: 1.6rem;
	}
	.sp-main-padding {
		padding: 0 2%;
	}
	.text-h1 {
		font-size: 1.8rem;
	}
	.text-footer-title {
		font-size: 16px;
		font-weight: 400;
	}
	.prd-custom-main-font {
		font-size: 24px;
	}
	.prd-custom-sub-font {
		font-size: 15px
	}	
}
.text-bold {
	font-weight: bold;
}
.text-center {
  text-align: center;
}

/* color */
.color-white {
	color: #fff;
}
.color-a-blue {
	color: #3fa3ff;
}
.color-gray {
	color:  #666666;
}
/* background */
.background-black {
	background: black;
}
.background-main-black {
	background: var(--main_black);
}
@media screen and (max-width: 767px) {
	.background-footer-strong {
		background: #666666;
	}
}	
.border-base {
	border : 1px solid var(--main_black);
}

.border-base-bottom {
	border-bottom: 1px solid var(--main_black);
}
.border-none {
	border: none!important;
}
@media screen and (max-width: 767px) {
	.sp-footer-border-bottom {
	  border-bottom: 1px solid #fff;
	}
}	
.underline {
	text-decoration: underline;
}
.inline-block {
	display: inline-block;
}
.block {
	display: block;
}
.flex {
	display: flex;
}
@media screen and (max-width: 767px) {
	.sp-flex {
		display: flex;
	} 
	.sp-flex-col {
		flex-direction: column;
	}	
}	
.flex-col {
	flex-direction: column;
}
.flex-1 {
	flex: 1;
}
.flex-basis-25 {
	flex: 0 0 25%;
}
.flex-grow-1 {
	flex-grow: 1;
}
.justify-center {
	justify-content: center;
}
.justify-evenly {
	justify-content: space-evenly;
}
.ai-center {
	align-items: center;
}
.relative {
	position: relative;
}
.absolute {
  position: absolute;
}
.gap-5px {
	gap: 5px;
}
.gap-10px {
	gap: 10px;
}
.grid {
	display: grid;
}
.grid-cols-4-fr {
	grid-template-columns: repeat(4, minmax(0rem, 1fr));
}
@media screen and (max-width: 767px) {
	.sp-grid-cols-auto-4 {
	  grid-template-columns: repeat(4, auto);
	}
}

.w-full {
	width: 100%;
}
.h-full {
	height: 100%;
}
.h-120px {
	height: 120px;
}
.h-18rem {
	height: 18rem;
}
.w-3rem {
	width: 3rem;
}
@media screen and (max-width: 767px) {
	.sp-w-14rem {
		width: 14rem;
	}
	.sp-w-17rem {
		width: 17rem;
	}	
	.sp-w-70p {
		width: 70%;
	}
}
/* margin */
.margin-0 {
	margin: 0;
}
.margin-top-0 {
	margin-top: 0!important;
}
.margin-bottom-0 {
	margin-bottom: 0!important;
}
.margin-left-0 {
	margin-left: 0!important;
}
.mb-block-0 {
  margin-block-start: 0;
  margin-block-end: 0;
}
.my-0 {
	margin-top: 0;
	margin-bottom: 0;
}
.my-10px {
  margin-top: 10px;
  margin-bottom: 10px;
}
.my-15px {
  margin-top: 15px;
  margin-bottom: 15px;
}
.mt-30px {
	margin-top: 30px;
}
.mb-6px {
	margin-bottom: 6px;
}
.mb-15px {
	margin-bottom: 15px;
}
.mr-2px {
	margin-right: 2px;
}
.mr-10px {
	margin-right: 10px;
}
/* padding */
.padding-0 {
	padding: 0!important;
}
.padding-top-0 {
	padding-top: 0;
}
.p-p5 {
	padding: 5px;
}
.p-p16 {
	padding: 16px;
}
.py-0 {
	padding-top: 0; 
	padding-bottom: 0; 
}
.py-1px {
  padding-top: 1px;
  padding-bottom: 1px;
}
.py-5px {
  padding-top: 5px;
  padding-bottom: 5px;
}
.px-0_5 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-15px {
  padding-left: 15px;
  padding-right: 15px;
}
.px-21px {
  padding-left: 21px;
  padding-right: 21px;
}
.pt-2rem {
	padding-top: 2rem;
}
.pt-40px {
	padding-top: 40px;
}
.pb-10px {
	padding-bottom: 10px;
}
.pb-20px {
	padding-bottom: 20px;
}
.pb-100px {
	padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
	.sp-padding-f-menu {
		padding: 9px 34px;
	}
}
.translate-y-2px {
	transform: translateY(2px);
}
/* img */
.object-cover {
	object-fit: cover;
}
.object-contain {
	object-fit: contain;
}
.overflow-x-auto {
	overflow-x: auto;
}
.overflow-x-scroll {
	overflow-x: scroll;
}
.overflow-hidden {
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	.sp-overflow-x-scroll {
		overflow-x: scroll;
	}		
}	
.whitespace-nowrap {
	white-space: nowrap;
}
.c-container {
  max-width: 1000px;
  margin: auto;
}

.section-title {
  margin-bottom: 1rem;
}
.section-title h1 {
  font-size: 3rem;
  margin-top: 2rem;
  vertical-align: middle;
  display: flex;
  align-items: center;
}
.section-title h2 {
  margin: 0;
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.section-title h2 img {
  width: 3rem;
  margin-right: 1rem;
  height: auto;
  display: inline-block;
}
.section-title h3 {
  font-size: 3rem;
  margin: 0;
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.section-title h3 img {
  width: 3rem;
  margin-right: 1rem;
  height: auto;
  display: inline-block;
}

header {
  background: #403f3f;
  color: #fff;
  z-index: 100;
  position: relative;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

.h-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: inherit;
  flex-wrap: wrap;
  row-gap: 0.6rem;
}

.h-top .h-logo {
  margin: 0;
  font-size: 3rem;
}

.h-top .h-logo a {
  color: #fff;
  display: block;
}

.h-top .h-logo .logo-letter {
  font-size: 1.2rem;
  display: block;
  font-weight: 400;
  border-bottom: 1px solid #fff;
}

.h-menubar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.h-menubar-open {
  transition: 0.5s;
  opacity: 1;
  display: flex;
}

.h-menubar-close {
  transition: 0.5s;
  opacity: 0;
  position: absolute;
  display: flex;
}

.h-menubar.open .h-menubar-open {
  opacity: 0;
}

.h-menubar.open .h-menubar-close {
  opacity: 1;
}

.h-menu {
  display: flex;
  flex-flow: wrap;
  padding: 1rem 0;
}

.h-menu-item {
  width: calc(100% / 6);
  border: 1px solid #fff;
  transition: 0.5s;
  position: relative;
}

.h-menu-item a, #header-sauna .sp-head-accordion .ttl {
  width: 100%;
  padding: 0.6rem 0;
  color: #eeeeee;
  text-align: center;
  display: block;
  line-height: 1.4;
}

.h-menu-item:hover a {
  color: #403f3f;
}
.h-menu-item > a:hover {
  color: #fff;
  opacity: 0.7;
}
.h-submenu-item {
  font-size: 1.4rem;
}

.h-submenu-item a {
  padding: 0.5rem 0;
  text-align: left;
}

.footer-img img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  display: block;
  margin-top: 3rem;
}

footer {
  background: #403f3f;
  padding: 5rem 0 2rem;
}

.f-menu {
  display: flex;
  flex-flow: wrap;
}

.f-menu-box {
  width: calc(100% / 3);
  padding-bottom: 2rem;
}

.f-menu-item {
/*   padding: 0.2rem 0; */
  padding-bottom: 0.5rem;
}

.f-menu-item a {
  color: #fff;
  margin-left: 1rem;
}

.f-submenu-item {
/*   margin-left: 2.6rem; */
  font-size: 1.4rem;
}

.f-info {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-end;
}

.f-copyright {
  color: #fff;
  font-size: 1.2rem;
}

.f-copyright a {
  color: #fff;
  font-size: 1.2rem;
}
.f-company {
	padding: 0 14px 14px;
}
.f-menu-box-summary {
	padding: 0 20px 20px;
}
.f-menu-icon {
	margin-right: 2px;
}
@media (max-width: 768px) {
	.f-menu {
		margin: 0 -1rem;
	}
	.f-menu-box {
		padding: 0;
	}
	.f-menu-icon {
		margin-right: 7px;
	}
	.f-menu-box-summary {
		padding: 0 20px;
	}	
	.f-company {
		padding: 0 14px;
	}
	.f-menu-item {
		padding-bottom: 0;
	}
	.f-menu-item a {
		margin-left: 0;
	}
	.sp-foot-contact-area {
		padding: 40px;
	}
	.sp-foot-contact-btn {
		padding: 10px 80px;
		border: 1px solid #fff;
	}
	.sp-foot-contact-btn::before {
		content: ">";	
		position: absolute;
		right: 15%;
	}
	.sp-summary-area .links-row li+li{
	  position:relative;
	}
	.sp-summary-area .links-row li+li::before{
	  content:"|";
	  margin:0 12px; 
	  color: var(--white);
	}	
}	
.contact-btns {
  display: flex;
  align-items: center;
  color: #fff;
}

.contact-btns .contact-us {
  background: #ff0000;
  color: #fff;
}

.contact-btns .tel-us {
  position: relative;
  background: var(--tel-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.4rem;
}

.contact-btns .tel-us i {
  font-size: 2rem;
}

.contact-btns .tel-us h6 {
  font-size: 1.4rem;
}

.contact-btns .line-us {
  background: var(--green);
  color: #fff;
}
.contact-btns .line-us svg{
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  fill: var(--green);
}
.contact-btns .line-us h6{
  font-size: 1.4rem;
}
.contact-btns a {
  background: #fbd76d;
  width: 16rem;
  height: 5rem;
  margin-left: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-flow: wrap;
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 0.6rem;
}

.contact-btns a span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.search-items {
  display: flex;
  flex-flow: wrap;
  margin: 0 -0.4rem;
  margin-bottom: 0.6rem;
}

.search-item {
  width: calc(100% / 6);
  padding: 0 0.4rem;
}

.search-item-box {
  background: #fff;
  /*border: 1px solid #fbd76d;*/
  padding: 1rem;
  display: block;
}

.search-item-box-img {
  width: 100%;
  display: flex;
  height: 10rem;
}

.search-item-box-img img {
  width: 100%;
}

.h-logo a img {
  width: 24rem;
}

.search-item-box-title {
  margin: 1rem 0 0;
  text-align: center;
  font-weight: 600;
  font-size: 1.4rem;
}

.search-form {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto 0;
}
.extend{
  border: none !important;
    text-align: center;
    padding: 0 0 !important;
    margin: 0 0 !important;
    width: 2rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem !important;
}
.search-form-box {
  border: 1px solid #403f3f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.search-form-item {
  width: calc(100% / 3);
  padding: 2rem;
  display: flex;
  align-items: center;
  border: 1px solid #403f3f;
  background: #f5f5f5;
}

.search-form-item:nth-child(1),
.search-form-item:nth-child(2) {
  width: 50%;
}

.search-form-item p {
  width: 8rem;
}

.search-form-item select {
  width: calc(100% - 8rem);
  height: 3rem;
}

.search-form-item:first-child p {
  width: 11rem;
}

.search-form-item:first-child select {
  width: calc(100% - 11rem);
}

.search-form .form-submit {
  margin: 2rem 0;
}

.search-form .form-submit input {
  width: 100%;
  height: 5rem;
  background: #403f3f;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  cursor: pointer;
  border-color: #403f3f;
  border-radius: 0.4rem;
}

/* Start Magnolia code */

main.single-main .cnt-section .c-container.show-tbl-of-cnt #ez-toc-container {
  display: block;
  background: transparent;
  border: none;
  font-size: 2rem;
  background-color: #f7f7f7!important;
  border-radius: 4px;
  margin:16px 0 0 0!important;
  padding: 16px;
  position: relative;
}

.ez-toc-title-container{
  font-size: 1.6rem;
  line-height: 1.4666666667;
  border-left: #f7b62d solid 1px;
  border-bottom: #f7b62d solid 1px;
  padding-left: 2rem !important;
  padding-bottom: 0.5rem;
}

.single-main p {
  font-size: 1.4rem;
}

.btn {
  padding: 1rem 0;
  color: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table colgroup .fst-col {
  width: 30rem;
}

table tr,
td,
th {
  padding: 1rem;
  font-size: 1.4rem;
}

.filter-result-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0rem, 1fr));
  column-gap: 2rem;
  row-gap: 3rem;
}

.filter-result-wrapper .img-card {
  /*border: 1px solid var(--yellow);*/
  overflow: hidden;
}

.filter-result-wrapper .img-card .card-header {
  position: relative;
}

.filter-result-wrapper .img-card .card-header .new-item {
  position: absolute;
  width: 8rem;
  height: 8rem;
  text-align: center;
  background: var(--yellow);
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

.filter-result-wrapper .img-card .card-header .new-item span {
  display: inline-block;
  transform: rotate(-45deg) translate(-2rem, 0rem);
}

.filter-result-wrapper .img-card figure {
  width: 100%;
  height: 100%;
  margin: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-result-wrapper .img-card figure img {
  width: 100%;
  height: 22rem;
  object-fit: contain;
  object-position: center center;
}

.filter-result-wrapper .img-card .card-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 15rem;
  aspect-ratio: 318 / 220;
  overflow: hidden;
  opacity: 1;
  z-index: 0;
}

.filter-result-wrapper .img-card .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.4s ease-in-out;
  z-index: 0;
  border-radius: 12px;
}

.filter-result-wrapper .img-card .card-img:hover {
  opacity: 1;
}

.filter-result-wrapper .img-card .card-img:hover img {
  transform: scale(1.1);
}

.filter-result-wrapper .img-card .card-body {
  padding: 3rem 2rem;
  background: var(--main_black);
  color: var(--white);
}

.filter-result-wrapper .img-card .card-body h5 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 1rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-result-wrapper .img-card .card-body h5 a {
  color: inherit;
  font-size: 1.2rem;
}

.filter-result-wrapper .img-card .card-body h5 a:hover {
  text-decoration: underline;
}

.pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  column-gap: 0.6rem;
}

.pagination a {
  width: 4rem;
  height: 4rem;
  text-align: center;
  vertical-align: middle;
  color: var(--white);
  background: var(--main_black);
  display: inline-block;
}

.pagination a.active {
  background: var(--main_black);
}

.tbl-of-content .content-lists h2,
.tbl-of-content .content-lists h3,
.tbl-of-content .content-lists h4 {
  margin: 0 0;
}

.tbl-of-content .content-lists .sub-content-lists,
.tbl-of-content .content-lists .super-sub-content-lists {
  padding: 1rem 3rem;
}

/* table of content */

.tbl-of-content h2,
.tbl-of-content h3,
.tbl-of-content h4 {
  display: flex;
}

.tbl-of-content ul,
.tbl-of-content li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tbl-of-content li {
  margin-left: 15px;
}

.tbl-of-content .caret:before {
  content: "\25B6";
  display: inline-block;
  margin-right: 5px;
  cursor: pointer;
  transform: rotate(90deg);
  transition: transform 0.3s;
}

.tbl-of-content .caret-down:before {
  transform: rotate(0deg);
  /* display: flex;
align-items: center; */
}

.tbl-of-content ul ul {
  display: none;
}

.tbl-of-content ul li a {
  display: block;
  padding: 5px;
  text-decoration: none;
}

.tbl-of-content ul ul li {
  margin-left: 15px;
}

.tbl-of-content ul ul ul li {
  margin-left: 30px;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  width: 40rem;
  width: fit-content;
  column-gap: 1rem;
  align-items: center;
}

.wp-pagenavi span.current {
  font-weight: bold;
  display: inline-block;
  text-align: center;
  background: var(--main_black);
  border: 1px solid var(--main_black);
  color: #fff;
  cursor: pointer;
  background: #fff;
  color: var(--main_black);
  width: 4rem !important;
  height: 4rem !important;
}

.wp-pagenavi span.pages {
  display: none;
}

.wp-pagenavi span.current,
.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi .last{
  width: fit-content;
}
.wp-pagenavi .first{
  width: fit-content;
}
.pagination a:hover {
  border-color: var(--main_black) !important;
}

.view-more {
  background: var(--main_black);
  padding: 1.3rem 0;
  width: 15rem;
  color: #fff;
  margin-left: auto;
  margin-right: 0;
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: block;
  text-align: center;
  border-radius: 0.5rem;
  font-size: 1.6rem;
}

.faq .faq-section .faq-items h2 {
  font-size: 2.6rem;
}

.faq .faq-section .faq-items p {
  font-size: 2rem;
  padding-left: 1rem;
}

/* End Magnolia code */

@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
  .h-submenu {
    display: none;
    position: absolute;
    background: #ffffff;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    opacity: 0;
    transition: 0.5s;
    box-shadow: 3px 3px 6px #403f3f88;
  }
  .h-menu-item:hover .h-submenu {
    display: block;
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .c-container {
    max-width: 700px;
  }
	main.prd-ctg .c-container {
    padding: 0 1px;;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.8rem;
  }
  section {
    padding: 0.4rem 0;
  }
  .c-container {
    max-width: 100%;
    padding: 0 2rem;
  }
  .section-title {
    margin-bottom: 0.6rem;
  }
  .top .section-title {
	margin-bottom: 0;
  }	
  .section-title h1 {
	margin-top: 1rem;	  
    font-size: 1.8rem;
  }		
  .section-title h2 {
    font-size: 1.8rem;
  }	
  .section-title h3 {
    font-size: 1.8rem;
  }
  .h-top .h-logo {
    font-size: 2.4rem;
  }
  .h-bottom {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: calc(100vh - 6rem);
    top: 0;
    transform: translateY(-100%);
    transition: 0.5s ease-in-out;
    left: 0;
    padding: 0 2rem;
    overflow: auto;
    background: var(--main_black);
  }
  .contact-btns .line-us img {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.8rem;
    margin-top: 0.4rem;
  }
  .contact-btns .tel-us h6 {
    font-size: 1rem;
  }
  .contact-btns .tel-us i {
    margin-top: 0.6rem;
    font-size: 2rem;
  }
  .contact-btns a {
    height: 3.6rem;
  }
  .h-bottom.open {
    transform: translateY(6rem);
  }
  .h-nav {
    padding: 0 0;
  }
  .h-menu {
    padding: 0.6rem 0;
  }
  .h-menu-item {
    width: 100%;
    border: none;
  }
  .h-menu-item {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .h-menu-item .h-submenu-item:not(:last-child) {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .h-submenu-item {
    padding-left: 3rem;
  }
  .h-submenu-item a {
    text-align: left;
  }
  .h-nav li:hover > a {
    background: #fff;
    color: #403f3f;
  }
  .h-nav li:hover > a::after {
    border-left: 1px solid #403f3f;
    border-bottom: 1px solid #403f3f;
  }
  .h-menu-item:hover a {
    color: #fff;
  }
  .h-menu-item a, #header-sauna .sp-head-accordion .ttl, .sp-foot-accordion .ttl {
    position: relative;
  }
  .h-menu-item a::after, #header-sauna .sp-head-accordion .ttl:after {
    content: "";
    position: absolute;
    left: 5%;
    top: 36%;
    width: 0.6rem;
    height: 0.6rem;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(-135deg) translateY(-50%);
  }
  .h-submenu {
    border-top: 1px solid #fff;
  }
  .h-menu-item a, #header-sauna .sp-head-accordion .ttl {
    text-align: left;
    padding-left: 3rem;
  }
  .footer-img img {
    height: 20rem;
  }
  .f-menu-box {
    width: 100%;
  }
  .f-menu-item {
    width: 100%;
  }
  .f-submenu-item {
    font-size: 1.2rem;]
	display: flex;
	padding-bottom: 5px;
  }
  .f-info {
    flex-direction: column-reverse;
    align-items: normal;
  }
  .f-copyright {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    padding-top: 40px;
	padding-bottom: 40px;
  }
  .contact-btns {
    justify-content: center;
    column-gap: 0.4rem;
    flex: 0 0 100%;
  }
  .contact-btns a {
    margin: 0 0;
    font-size: 1rem;
    width: calc((100% - 0.8rem) / 3);
  }
  .search-item {
    width: calc(100% / 3);
    padding: 0.3rem;
  }
  .search-item-box {
    padding: 0.2rem;
  }
  .search-item-box-title {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
  .search-form {
    padding: 0;
    margin: 0;
  }
  .search-form-item {
    width: 100% !important;
    padding: 0.5rem;
  }
  .search-form-item p {
    width: 10rem !important;
    font-size: 1rem;
    padding-left: 1.4rem;
    font-weight: 600;
  }
  .search-form-item select {
    width: calc(100% - 10rem) !important;
    font-size: 1rem;
    height: 2.4rem;
    font-weight: 600;
  }
  .search-form .form-submit {
    margin: 0.4rem 0;
  }
  .search-form .form-submit input {
    height: 3rem;
    font-size: 1.4rem;
  }
  /* magnolia css code */
  table tr,
  td,
  th {
    padding: 0.6rem;
    font-size: 1.2rem;
  }
  table colgroup .fst-col {
    width: 30rem;
    width: 12rem;
  }
  .filter-result-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0rem, 1fr));
    column-gap: 1rem;
    row-gap: 1rem;
  }
  .filter-result-wrapper .img-card .card-header .new-item {
    width: 5rem;
    height: 5rem;
  }
  .filter-result-wrapper .img-card .card-header .new-item span {
    transform: rotate(-45deg) translate(-0.7rem, -0.5rem);
    font-size: 1.2rem;
  }
  .filter-result-wrapper .img-card .card-body {
    padding: 1.6rem 1.2rem;
  }
  .card-body p {
    font-size: 1.2rem;
  }
  .filter-result-wrapper .img-card figure img {
    width: 100%;
    height: auto;
    padding: 1rem 1rem 0 1rem;
    object-fit: contain;
    object-position: center center;
  }
  .search-item-box-img {
    height: 6rem;
  }
  #ez-toc-container ul li{
    display:flex;
  }
  #ez-toc-container a {
    color: #403f3f;
    box-shadow: none;
    text-decoration: none;
    text-shadow: none;
    display: inline-flex;
    align-items: center; 
    flex-wrap: nowrap;
    font-size: 1.6rem;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  main.single-main .cnt-section .c-container h1 {
    margin: 1rem 0;
    font-size: 1.9rem;
    padding: 1rem 3rem;
    position: relative;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .h-logo a img {
    width: 20rem;
  }
  .faq .faq-section .faq-items h2 {
    font-size: 2rem;
  }
  .faq .faq-section .faq-items p {
    font-size: 1.6rem;
  }
  .view-more {
    padding: 1rem 0;
    font-size: 1.2rem;
  }
  .prd-ctg .ctg-outline td {
    padding: 0.6rem;
    font-size: 1.2rem;
  }
  .contact-btns .line-us svg{
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.8rem;
    margin-top: 0.4rem;
    fill: var(--green);
  }
  .contact-btns .line-us h6{
    font-size: 1rem;
  }
  .wp-pagenavi .first {
    width: fit-content;
    width: 5rem;
    font-size: 0.8rem;
	}
	.wp-pagenavi .last {
	  width: fit-content;
	  font-size: 0.8rem;
	  width: 5rem;
	}
	.pagination a {
	  width: 4rem;
	  height: 4rem;
	  text-align: center;
	  vertical-align: middle;
	  color: var(--white);
	  background: var(--main_black);
	  display: inline-block;
	  width: 2.5rem;
	  height: 2.5rem;
	  font-size: 0.8rem;
	}
	.wp-pagenavi a, .wp-pagenavi span {
	  text-decoration: none;
	  border: 1px solid #BFBFBF;
	  padding: 3px 5px;
	  margin: 2px;
	  width: 2.5rem;
	  height: 2.5rem;
	  font-size: 0.8rem;
	}
	.pagination a {
	  width: 2.5rem;
	  height: 2.5rem;
	  text-align: center;
	  vertical-align: middle;
	  color: var(--white);
	  background: var(--main_black);
	  display: inline-block;
	  font-size: 0.8rem;
	}
	.extend {
	  border: none !important;
		text-align: center;
		padding: 0 0 !important;
		width: 1.2rem !important;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.7rem !important;
	}
	.wp-pagenavi span.current {
	  width: 2.5rem !important;
	  height: 2.5rem !important;
	}
	.wp-pagenavi {
	  display: flex;
	  justify-content: center;
	  margin-top: 2rem;
	  margin-left: auto;
	  margin-right: auto;
	  width: 40rem;
	  width: fit-content;
	  column-gap: 0.01rem;
	  align-items: center;
	}
	.single .side-area {
		display:none;
	}
  .filter-result-wrapper {
    display: grid;
    grid-template-columns: 100%;
  }
  .filter-result-wrapper .img-card .card-header .new-item {
    width: 9rem;
    height: 9rem;
  }
  .filter-result-wrapper .img-card .card-header .new-item span {
    transform: rotate(-45deg) translate(-2rem, -0.5rem);
    font-size: 2rem;
  }
  .card-body p {
    font-size: 1.4rem;
  }	
}
#ez-toc-container a {
	color: #403f3f;	
	white-space: normal;
}
#header-sauna .sp-head-accordion .ttl {
	padding-right: 30px;
}
#header-sauna .sp-head-accordion .ttl::before, .sp-foot-accordion .ttl::before{
  content: "+";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  font-size: 18px;
  color: inherit;
}
.sp-foot-button .ttl::before {
  content: ">";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  font-size: 18px;
  color: inherit;	
}
#header-sauna .sp-head-accordion .ttl.open::before, .sp-foot-accordion .ttl.open::before {
  content: "−";
}
/* スクロールトップボタン */
#top-btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: opacity 0.4s ease;
  opacity: 0;
}

#top-btn.show {
  opacity: 1;
  visibility: visible;
}

#top-btn::before {
  display: inline-block;
  position: absolute;
  top: 60%;
  left: 50%;
  content: '';
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  #top-btn {
    right: 15px;
    bottom: 65px;
    width: 40px;
    height: 40px;
  }

  #top-btn::before {
    width: 12px;
    height: 12px;
  }
}