@charset "utf-8";
/* common */
/* Noto Sans JP */
/* @font-face {
	font-family: 'NSJ';
	src: url('../font/NSJP-Regular.woff') format('woff'),
		url(../font/NSJP-Regular.woff2) format('woff2'),
		url(../font/NSJP-Regular.ttf) format('truetype'),
		url(../font/NSJP-Regular.otf) format("opentype");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'NSJ';
	src: url('../font/NSJP-Medium.woff') format('woff'),
		url(../font/NSJP-Medium.woff2) format('woff2'),
		url(../font/NSJP-Medium.ttf) format('truetype'),
		url(../font/NSJP-Medium.otf) format("opentype");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'NSJ';
	src: url('../font/NSJP-Bold.woff') format('woff'),
		url(../font/NSJP-Bold.woff2) format('woff2'),
		url(../font/NSJP-Bold.ttf) format('truetype'),
		url(../font/NSJP-Bold.otf) format("opentype");
	font-weight: 900;
	font-style: normal;
} */

/* Zen Maru Gothic */
/* @font-face {
	font-family: 'ZMG';
	src: url('../font/ZMG-Regular.woff') format('woff'),
		url(../font/ZMG-Regular.woff2) format('woff2'),
		url(../font/ZMG-Regular.ttf) format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'ZMG';
	src: url('../font/ZMG-Medium.woff') format('woff'),
		url(../font/ZMG-Medium.woff2) format('woff2'),
		url(../font/ZMG-Medium.ttf) format('truetype');
	font-weight:600;
	font-style: normal;
}
@font-face {
	font-family: 'ZMG';
	src: url('../font/ZMG-Bold.woff') format('woff'),
		url(../font/ZMG-Bold.woff2) format('woff2'),
		url(../font/ZMG-Bold.ttf) format('truetype');
	font-weight: 700;
	font-style: normal;
}
 */
:root {
	--primary-color:#F87F5B;
	--secondary-color:#333;
	--tertiary-color:#FFF4E5;
	--quaternary-color:#FFCD88;
}
html {
	color:var(--secondary-color);
	overflow-x:hidden;
}
body {
	font-family: 'NSJ', sans-serif;
	font-size: 16px;
	overflow-x:hidden;
}
a,
a img {
	transition: all .5s;
}
a:hover img {
	opacity: 0.5;
}

a:hover,a:focus,a:visited{
	color: var(--secondary-color);
	text-decoration: none;
}
a,
a:visited,
a:hover,
a:focus,
a:active {
	color: var(--blue-color);
}
a:focus,
a:hover,
a:active {
	outline: none;
}
@media (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}
p{
	font-size: 14px;
	line-height:1.6;
	letter-spacing: 0.1em;
}
@media (min-width: 768px) {
	p {
		font-size: 16px;
		line-height: 2;
		letter-spacing: 0.1em;
	}
}
ul,
ol {
	margin: 0 0 1.5em 0;
	padding-left: 20px;
}
h1,h2,h3,h4,h5,h6,
table th{
	font-weight: 600;
}
.lh{
	line-height: 1.6;
}
/* layout */
.container {
	margin: 0 auto;
	max-width:none;
	padding: 0 15px;
}
.container.wide{
	max-width: none;
}
@media (min-width: 768px) {
	.container {
		max-width:1280px;
	}
	.container.wide{
		max-width: 1800px;
	}
}

/* parts */
.logo-link:hover {
	opacity: 0.8;
}
.tel-link {
	position: relative;
	text-decoration: none;
	display: inline-block;
	font-size: 28px;
	letter-spacing: 0;
	font-weight: 700;
	color: var(--secondary-color);
	line-height: 23px;
	padding-left:33px;
}
.tel-link::before{
	content: "";
	width: 23px;
	height: 23px;
	display: block;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	position: absolute;
	background: url(../img/tel-icon.svg) no-repeat;
}
@media (min-width: 414px) {
	.tel-link {
		font-size: 28px;
		letter-spacing: 0.05em;
	}
}

/* background */
.bg{
	background: #F0EBE1;
}
.bg-primary{
	background-color: var(--primary-color);
}
.bg-secondary{
	background-color: var(--secondary-color);
}
.bg-tertiary{
	background-color: var(--tertiary-color);
}
/* btn */
.bg-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 600;
	border-radius: 10px;
	color: #FFF;
	width: 100%;
	padding: 8px 25px;
	font-size: 16px;
	text-align: center;
}
.bg-btn:focus,
.bg-btn:active,
.bg-btn:visited{
	color:#FFF;
}

.bg-btn.bg-primary{
	border:solid 3px var(--primary-color);
}
.bg-btn.bg-primary:hover{
	background: #FFF;
	color: var(--primary-color);
	border:solid 3px var(--primary-color);
}
.bg-btn.bg-secondary{
	border:solid 3px var(--secondary-color);
}
.bg-btn.bg-secondary:hover{
	background: #FFF;
	color: var(--secondary-color);

}
.bg-btn.arrow{
	position: relative;
}
.bg-btn.arrow::after{
	content: "";
	position: absolute;
	background: url(../img/btn-arrow-w.svg) no-repeat;
	width: 9px;
	height:16px;
	background-size: contain;
	right:5px;
	transition: all .5s;
	display: block;
}
.bg-btn.arrow:hover::after{
	content: "";
	position: absolute;
	width: 9px;
	height: 16px;
	background-size: contain;
	right:10px;
}
.bg-btn.bg-primary.arrow:hover::after{
	background: url(../img/btn-arrow-p.svg) no-repeat; 
}

.bg-btn.bg-secondary.arrow:hover::after{
	background: url(../img/btn-arrow-s.svg) no-repeat; 
}

@media (min-width: 768px) {
	.bg-btn {
		font-size: 18px;
		width: 250px;
	}
	.bg-btn.arrow::after {
		width: 34px;
		height: 16px;
		right: -10px;
	}
}
.small-btn{
	width: 180px;
}
.section{
	padding: 30px 0;
}
.section.pt-0 {
	padding-top: 0;
}
.section.pb-0{
	padding-bottom: 0;
}
.page .section{
	position: relative;
	z-index: 1;
}
@media (min-width: 768px) {
	.section {
		padding: 80px 0;
	}
}
/* headline */
.headline{
	font-family: 'ZMG';
	font-weight: 700;
}
.headline-txt{
	font-size: 17px;
	margin:0 0 25px 0;
}
.headline.hl-under-dotted {
	color: var(--primary-color);
	padding-bottom: 10px;
	border-bottom: dotted var(--brown-color) 4px;
}
.headline.hl-bg {
	padding: 5px 20px;
	background:var(--green-color);
	border-radius: 30px;
	color: #FFF;
}
@media (min-width: 768px) {
	.headline.hl-bg {
		padding: 15px 30px;
	}
}
.headline.hl-lb{
	background:url(../img/hl-lb-bg.png) 7px no-repeat;
	padding-left: 30px;
	color: var(--secondary-color);
}
.headline.left-line {
	background: url(../img/left-line.svg) 7px no-repeat;
	padding-left:50px;
	color: var(--secondary-color);
	font-size:16px;
	font-family: 'ZMG';
}
@media (min-width: 768px) {
	.headline.left-line {
		font-size: 20px;
	}
}
.line-bg{
	border-bottom: solid 1px #FFF4E5;
}
.line-bg .headline.line{
	position: relative;
	font-family: "NSJ";
}
.line-bg .headline.line::before{
	content: "";
	position: absolute;
	display: block;
	left: 0;
	bottom: -11px;
	border-bottom: var(--primary-color) solid 1px;
	width: 45px;
	height: 1px;
}

/* font size */
.fs-0 {
	font-size:30px;
}
.fs-1 {
	font-size: 24px;
}

.fs-2 {
	font-size: 20px;
}

.fs-3 {
	font-size: 18px;
}

.fs-4 {
	font-size: 16px;
}

@media (min-width: 768px) {
	.fs-0 {
		font-size: 60px;
	}
	.fs-1 {
		font-size: 36px;
	}
	.fs-2 {
		font-size: 26px;
	}

	.fs-3 {
		font-size: 24px;
	}

	.fs-4 {
		font-size: 21px;
	}
}
/* font */
.nsj {
	font-family: 'NSJ';
}
.zmg{
	font-family: 'ZMG';
}

.underline{
	text-decoration: underline;
}
/* color */
.primary{
	color:var(--primary-color);
}
.secondary{
	color:var(--secondary-color);
}

/* img */
.img-rounded{
	object-fit: cover;
	width: 100%;
	height:auto;
	border-radius: 20px;
}
@media (min-width:768px) {
	.img-rounded {
		width: 600px;
		height: 400px;
	}
}
.img-circle {
	object-fit: cover;
	width: 100%;
	height: auto;
	border-radius:50%;
}

@media (min-width:768px) {
	.img-circle {
		width: 300px;
		height: 300px;
	}
}

/* accordion */
.accordion{
	margin-bottom: 50px;
}
.accordion-img .img-item{
	align-self: flex-end;
}
.accordion-img img:first-of-type {
	width: 200px;
}
.accordion-img img:last-of-type{
	margin-left: auto;
	display: flex;
	width:80px;
}
@media (min-width:768px) {
	.accordion-img img:first-of-type,
	.accordion-img img:last-of-type{
		width: auto;
	}

}
.toggle {
	display: none;
}
.question {
	display: flex;
	padding: 10px 50px 10px 10px;
	background: var(--primary-color);
	border-radius: 10px;
	color: #FFF;
	cursor: pointer;
	position: relative;
	font-size: 18px;
	line-height: 1.4;
	align-items: top;
}
.question .question-number {
	font-size: 20px;
	margin-right: 5px;
	color: #3B4043;
	font-weight: 600;
}
.question-icon {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.question-icon::before,
.question-icon::after {
	position: absolute;
	content: "";
	display: block;
	transition: all 0.4s;
	background:#FFF;
	right: 50%;
	top: 50%;
	width: 28px;
	height: 3px;
	transform: translate(-50%, -50%);
}
.question-icon::before {
	transform: translate(-50%, -50%) rotate(90deg);
}
.toggle:checked+.question>.question-icon::before {
	transform: translate(-50%, -50%) rotate(0deg);
}
.question,
.answer {
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.answer {
	height: 0;
	margin-bottom: 10px;
	padding: 0 20px;
	overflow: hidden;
}
.toggle:checked+.question+.answer {
	height: auto;
	padding: 15px 20px;
	transition: all .3s;
	background: #FFF;
}
.toggle:checked+.question+.answer p {
	margin: 0;
	line-height: 1.4;
	margin-left: 2.5em;
	text-indent: -2.5em;
}
.toggle:checked+.question+.answer span {
	font-size: 26px;
	margin-right: 15px;
}
@media (min-width:420px) {
	.question {
		padding: 15px 50px 15px 30px;
	}
	.question .question-number {
		margin-right: 15px;
	}
}
@media (min-width:768px) {
	.page-faq .img-box {
		margin-top: 0;
	}
	.question {
		padding: 15px 30px;
		font-size: 20px;
		align-items: center;
	}
	.question .question-number {
		font-size: 25px;
		margin-right: 30px;
	}
	.question-icon {
		right: 15px;
	}
	.toggle:checked+.question+.answer {
		padding: 15px 30px 30px;
		margin: 0 20px 15px;
	}
	.toggle:checked+.question+.answer p {
		margin-left: 3em;
		text-indent: -3em;
	}
	.toggle:checked+.question+.answer span {
		margin-right: 30px;
	}
}

/* wave */
.wave-top-w::before{
	content: "";
	display: inline-block;
	background:url(../img/wave-top-w.png) left bottom;
	background-repeat: repeat-x;
	background-size: cover;
	height: 19px;
	width: 100%;
	position: absolute;
	top: -19px;
}
.wave-top-tertiary::before{
	content: "";
	display: inline-block;
	background:url(../img/wave-top-tertiary.png) left bottom;
	background-repeat: repeat-x;
	background-size: cover;
	height: 19px;
	width: 100%;
	position: absolute;
	top: -19px;
}
.wave-bottom-tertiary::after{
	content: "";
	display: inline-block;
	background:url(../img/wave-bottom-tertiary.png) left top;
	background-repeat: repeat-x;
	background-size: cover;
	height: 19px;
	width: 100%;
	position: absolute;
	bottom: -19px;
}

/* Ensure waves span viewport width even inside centered/narrow containers */
.wave-top-w::before,
.wave-top-tertiary::before,
.wave-bottom-tertiary::after{
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	max-width: none;
	pointer-events: none;
}

/* other */
.relative{
	position: relative;
}
.letter{
	letter-spacing: 0.2em;
}
@media (min-width:768px) {
	.letter{
		letter-spacing: 0.1em;
	}
}
.new-line span{
	display: inline-block;
}
.check-list{
	list-style: none;
	padding-left: 0;
}
.check-list li{
	position: relative;
	padding-left:25px;
	font-size:16px;
	font-weight: 600;
	margin-bottom:15px;
}
.check-list li::before{
	background: url(../img/check-icon.svg) no-repeat;
	content: "";
	position:absolute;
	width: 20px;
	height: 20px;
	background-size: cover;
	left: 0;
	top:5px;
}
@media (min-width:768px) {
	.check-list li {
		font-size: 20px;
		padding-left:45px;
		margin-bottom: 30px;
	}
	.check-list li::before {
		width: 22px;
		height: 22px;
	}
}

.check-list02 {
	list-style: none;
	padding-left: 0;
}
.check-list02 li {
	position: relative;
	padding-left:35px;
	margin-bottom: 15px;
}
.check-list02 li::before {
	background: url(../img/check-icon02.svg) no-repeat;
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	background-size: cover;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.txt-img-box{
	display: flex;
	flex-direction:column-reverse;

}
@media (min-width:992px) {
	.txt-img-box {
		flex-direction: row;
	}
}
.video{
	width: 100%;
	position: relative;
	padding-top: 56.25%;
}
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.table-scroll {
	overflow-x: scroll;
}
.table-scroll .table {
	width: 100%;
	min-width: 1000px;
	border-collapse: collapse;
	border-top: solid 1px #CCC;
	border-left:solid 1px #CCC ;
}
.table-scroll .table th,
.table-scroll .table td {
	padding:15px 5px;
	border-right: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}

.table-scroll .table .bg{
	background:var(--quaternary-color);
}
.table-scroll .table .bg02 {
	background: #7A6856;
}
@media (min-width:1100px) {
	.table-scroll  {
		overflow-x: auto;
	}
}

/* header */

/* header-sp-001 */
.header-sp-001 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
	background:url(../img/g-navi-bg-sp.svg) bottom repeat-x ;
    z-index: 7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
	padding-bottom:12px;

}

.header-sp-001-logo {
    padding: 10px;
}
.header-sp-001-logo img {
    height:30px;
}
@media (min-width: 340px) {
    .header-sp-001-logo img {
        height:40px;
    }
}
.header-sp-001-icon {
    background-color: var(--primary-color);
    width: 53px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.header-sp-001-right {
    height: 100%;
    display: flex;
    align-items: center;
}
.tel-box{
	margin-right:15px;
	display: flex;
	justify-content: center;
	flex-direction:column;
	text-decoration: none;
	color: var(--secondary-color);
	font-size: 12px;
	width: 30px;
}
.tel-box img{
	width: 25px;
}

/* header-sp-001 end */

/* header-nav-sp-001 */
.header-nav-sp-001 {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top:70px;
    left: 0;
    z-index: 7;
    background-color: #FFF;
}
.header-nav-sp-001 > ul {
    height: calc(100% - 78px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.header-nav-sp-001 ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.header-nav-sp-001 li {
    width: 100%;
    border-bottom:1px solid #CCC;
}
.header-nav-sp-001 a {
    display: block;
    padding: 10px;
    color:#3B4043;
    text-decoration: none;
    width: 100%;
}
.header-nav-sp-001 ul.sub-menu > li:last-child {
    border-bottom: none;
}
.header-nav-sp-001 .menu-item-has-children>a::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 7px;
    background-image: url(../img/arrow-down.png) ;
    background-size: 12px 7px;
    background-repeat: no-repeat;
    margin-left: 15px;
}
.header-nav-sp-001 .sub-menu {
    display: none;
    padding:0;
    width: 100%;
}
.header-nav-sp-001 .sub-menu li{
    display: block;
    padding-left: 15px;
}
/* header-nav-sp-001 end */

/* header-pc-001 */
.header-pc-001 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	background: url(../img/g-navi-bg.svg) bottom repeat-x;
	padding-bottom: 20px;
    z-index: 7;
}
.header-pc-001-inner {
    width: 100%;
    height: 140px;
    margin-left:auto;
    margin-right:auto;
    padding: 10px 30px;
	position: relative;
}
.header-pc-001-logo {
    transition: opacity .5s ease;
}
.header-pc-001-logo img {
    height:50px;
    width: auto;
}
@media (min-width:991px) {
	.header-pc-001-logo img {
		height: 78px;
	}
}
.header-contact {
	margin-top: 10px;
	display: none;
	font-weight: 600;
	line-height: 0.8;
}
.header-contact-sub-txt {
	font-size: 12px;
}
.web-btn {
	display: block;
	position: relative;
	margin-left: 15px;
	background: var(--primary-color);
	border-radius: 18px;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 15px 5px 35px;
	width: 210px;
	height: 40px;
	text-decoration: none;
	font-size: 18px;
	border: solid 3px var(--primary-color);
}

 .web-btn::before {
	content: "";
	position: absolute;
	background: url(../img/contact-icon-w.svg) center;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	left: 30px;
	width: 33px;
	height: 27px;
	transition: all .5s;
}

.web-btn:hover {
	border: solid 3px var(--primary-color);
	color: var(--primary-color);
	background: #FFF;
}

.web-btn:hover::before {
	content: "";
	position: absolute;
	background: url(../img/contact-icon-o.svg) center;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	left: 30px;
	width: 33px;
	height: 27px;
}
.header-contact-sub-txt {
	margin-top: 5px;
}
@media (min-width:768px) {
	.header-contact {
		display: flex;
		align-items: center;
		margin-left: auto;
	}
	.header-contact-box {
		display: flex;
		flex-direction:column;
		flex-wrap: wrap;
		align-items: center;
	}
}

.header-pc-001-nav {
    margin-top:30px;
	list-style: none;
}
.header-pc-001-nav ul{
	list-style: none;
}
.header-pc-001-nav li::before {
    content: '/';
    color:#707070;
    font-weight: 600;
}
.header-pc-001-nav li:first-child::before {
    display: none;
}
.header-pc-001-nav a {
    padding:0 10px;
     font-size:18px;
    text-decoration: none;
    color:#7B7D80;
    font-weight: 600;
    transition: opacity .5s ease;
	font-family: "ZMG";
	letter-spacing: 0.1em;
	position: relative;
}

.header-pc-001-nav a::after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	content: '';
	width: 60px;
	height: 3px;
	background: var(--primary-color);
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.header-pc-001-nav a:hover::after {
	visibility: visible;
	bottom:-10px;
	opacity: 1;
}

@media (min-width: 992px) {
	.header-pc-001-nav {
		margin-top: 10px;
	}
    .header-pc-001-nav a {
        padding:0 20px;
		letter-spacing: 0.2em;
    }
}
.header-pc-001-nav a:hover {
    opacity:0.7;
}
.header-pc-001-nav .menu-item-has-children > a::after {
	position: static;
    content:'';
    display: inline-block;
    width: 12px;
    height: 7px;
    margin-left: 10px;
	background: transparent;
    background-image: url(../img/arrow-down.png) ;
    background-size: 12px 7px;
    background-repeat: no-repeat;
	transform:none;
	opacity: 100;
	bottom: auto;
	visibility: visible;
}
.header-pc-001-nav .sub-menu {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    padding:10px 0;
	margin-left: 0;
	z-index: 3;
}
.header-pc-001-nav .sub-menu li::before {
    content: '';
}

.header-pc-001-nav .sub-menu a {
    display: inline-block;
    width: 100%;
	padding: 5px 15px;
}
.header-pc-001-nav .sub-menu a::after{
	content: none;
}

/* header-pc-001 end */

/* top */
.bx-wrapper {
  width: 100%;
  box-shadow: none;
  border: none;
  overflow: hidden;
  margin-bottom: 0;
  background:#ffe5ba ;
}
.bx-wrapper li{
	margin: 0 5px;
}

.top-img{
	position: absolute;
	top:300px;
	width:65%;
	z-index: 2;
}
@media (min-width: 375px) {
	.top-img{
		top:380px;
	}
}
@media (min-width: 414px) {
	.top-img{
		top:415px;
	}
}
@media (min-width: 428px) {
	.top-img{
		top:420px;
	}
}

@media (min-width:768px) {
	.top-img{
		top:780px;
	}
}
@media (min-width:810px) {
	.top-img{
		top:170px;
		width:400px;
	}
}
@media (min-width:991px) {
	.top-img{
		top:220px;
	}
}
@media (min-width:1200px) {
	.top-img{
		top:300px;
		width:470px;
	}
}
@media (min-width:1300px) {
	.top-img{
		top:330px;
		width:600px;
	}
}

/* top effect */
.home .js-effect {
	transform: translateY(30px);
	transition-duration: 0.5s;
	opacity: 0;
}
.home .js-effect.effect {
	transform: translateY(0);
	opacity: 1;
}


/* info */
.info-list-item:first-child{
	border-top: solid 1px none;
}
.info-list-item{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-bottom: solid 1px #BCBCBC;
	padding:15px 0;
}
.info-list-time{
	font-size: 14px;
}
.info-category{
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;

	width: 80px;
	padding: 5px 0;
	background: var(--primary-color);
	border-radius: 7px;
	display: block;
	color: #FFF;
	text-decoration: none;
	font-size: 12px;
}
.info-category + .info-category{
	margin-top: 5px;
}
.info-category a{
	width: 80px;
	padding: 5px 0;
	background: var(--primary-color);
	border-radius: 7px;
	display: block;
	color: #FFF;
	text-decoration: none;
	font-size: 12px;
}
.info-category a:hover{
	opacity: 0.5;
}
.info-list-title{
	width: 100%;
	margin-left: 0;
	color: var(--secondary-color);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	letter-spacing: 0.1em;
	margin-top: 10px;
}
.info-list-title a{
	color: var(--secondary-color);
	text-decoration: none;
}
.info-list-title a:hover{
	text-decoration: underline;
}
.home .info .bg-btn{
	margin-bottom: 20px;
	margin-right: auto;
	max-width: 260px;
}
.home .info .bg-btn.small-btn{
	max-width: 160px;
	margin-left: auto;
	margin-right: 0;
}
@media (min-width:768px) {
	.info-list-item:first-child {
		border-top: solid 1px #BCBCBC;
	}
	.info-list-item {
		padding:23px 0;
	}
	.info-list-title {
		margin-top: 0;
		width: calc(100% - 190px - 15px);
		margin-left: 15px;
	}
	.home .info .bg-btn {
		margin-bottom:0;
	}
}
.home .consultation .bg-btn{
	width:100% ;
	margin-bottom: 15px;
}
@media (min-width:768px) {
	.home .consultation .bg-btn {
		width: calc(50% - 30px);
	}
}
/* concept */
.home .concept{
	/*background: url(../img/concept-bg-sp.png?20240531) left top no-repeat ;*/
	background: url(../photo/floor1/IMG_2193_blur_sp.png) left top no-repeat ;
	padding-top:330px;
	min-height:800px;
}

.home .concept .fs-2{
	background: #FFF;
	padding: 2px 10px;
}
.home .concept p{
	font-size: 14px;
	font-weight: 600;
}
@media (min-width:768px) {
	.home .concept {
		/*background: url(../img/concept-bg.png) right bottom no-repeat ;*/
		background: url(../photo/floor1/IMG_2193_blur.png) right bottom no-repeat ;
		height: auto;
		padding-top:80px;
	}
}

/* treatment */
.bg-treatment{
	margin-top: 30px;
	background: url(../photo/treatment-room/IMG_2213.jpg) center center no-repeat;
	background-size: cover;
	width: 100%;
	padding-top:50px;
	height: 200px;
}
@media (min-width:768px) {
	.bg-treatment {
		margin-top: 0;
		padding-top: 180px;
		height: 430px;
	}
}
.treatment-list{
	display: flex;
	list-style: none;
	flex-wrap: wrap;
}
.treatment-list li{
	width:calc(50% - 30px);
	margin:0 15px 30px;
}
.treatment-list li a{
	display: block;
}
@media (min-width:768px) {
	.treatment-list li{
		width: calc(33.3% - 60px);
		margin:0 30px 50px;
		max-width: 260px;
	}
}
.treatment-item:hover{
	transform: rotateZ(360deg);
}
/* footer */
.footer{
	margin-bottom:45px;
}
@media (min-width:768px) {
	.footer{
		margin-bottom:0;
	}
}
.bg-footer{
	padding-top: 50px;
	padding-bottom: 30px;
}
.footer hr {
	background:transparent;
	border-top: 1px dotted #7A6856;
}

.footer .tel-link{
	font-size:30px;
}
@media (min-width:855px) {

	.footer .tel-link::before{
		width: 40px;
		height: 40px;
		background-size:cover;
	}
	.footer .tel-link {
		font-size: 45px;
		padding-left: 50px;
	}
}
.copy-right{
	color:#BCBCBC;
	font-size: 14px;
}
.footer-sp-navi{
	list-style: none;
	margin: 0;
	padding: 0;
	position: fixed;
	bottom:0;
	width: 100%;
	z-index: 3;
}
.footer-sp-navi .link{
	text-decoration: none;
	color: #FFF;
	height: 45px;
	display: flex;
	align-items: center;
}
.footer-sp-navi li{
	width: 50%;
}
.footer-sp-navi li a img{
	width: 13px;
	margin-right: 5px;
}
.footer-sp-navi li:first-child a{
	background: var(--primary-color);
}

.footer-sp-navi li:nth-child(2) a {
	background: var(--secondary-color);
}
.footer-sp-navi li:nth-child(2) a img {
	width: 15px;
}
.footer-sp-navi li:last-child a {
	background:var(--quaternary-color);
	color: var(--secondary-color);
}
.footer-sp-navi li:last-child a img {
	width: 13px;
}

/* Footer lobby banner with overlay */
.footer-lobby{
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 382px;
	aspect-ratio: 382 / 171;
	border-radius: 12px;
	overflow: hidden;
}
.footer-lobby-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lobby-badge{
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}
.lobby-badge span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(60%, 260px);
	max-width: 260px;
	height: clamp(70px, 35%, 100px);
	background: rgba(248, 127, 91, 0.8); /* var(--primary-color) with transparency */
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	padding: 12px;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	.lobby-badge span{
		width: min(55%, 240px);
		font-size: 18px;
	}
}

/* consultation-hours-table */
.consultation-hours-table-box {
	padding: 15px ;
	background:#FFF;
	font-size: 12px;
	border-radius:15px;
	border: solid 3px var(--secondary-color);
}
.consultation-hours-table {
	border-collapse: collapse;
	text-align: center;
	margin-bottom:0;
}
.consultation-hours-table th {
	width: 130px;
}
.consultation-hours-table thead th {
	padding: 0 0 5px;
}
.consultation-hours-table thead td {
	padding: 0 5px 5px;
}
.consultation-hours-table tbody tr:first-child th {
	padding: 15px 15px 0 0;
}
.consultation-hours-table tbody tr:first-child td {
	padding: 15px 5px 0;
}
.consultation-hours-table thead th,
.consultation-hours-table thead td {
	border-bottom: solid 1px #BCBCBC;
}
.consultation-hours-table tbody th {
	padding: 15px 0 ;
}
.consultation-hours-table tbody td {
	padding: 15px 5px 15px;
}
.consultation-hours p span {
	margin-right: 15px;
}
@media (min-width:768px) {
	.consultation-hours-table-box {
		font-size: 16px;
	}
}
@media (min-width:1200px) {
	.consultation-hours-table-box {
		padding: 15px 30px ;

	}
	.consultation-hours-table tbody tr:first-child th {
		padding: 15px 0 0 0;
	}
	.consultation-hours-table thead td {
		padding: 0 10px 15px;
	}
}
.footer-navi {
	margin: 30px 0 50px;
	padding: 0;
	list-style: none;
}
.footer-navi a {
	font-size: 17px;
	font-weight: 600;
	text-decoration: none;
	margin-right: 15px;
	color: var(--secondary-color);
	padding: 0 5px;
}
.footer-navi a:hover {
	color: #FFF;
	background: var(--primary-color);
}
.pagetop-btn {
	position: fixed;
	z-index:1;
	background:#5B4023;
	text-decoration: none;
	width: 60px;
	height: 60px;
	bottom:55px;
	right: 15px;
	text-align: center;
	border-radius: 50%;
	border: solid 1px #5B4023;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagetop-btn:hover {
	opacity: 0.5;
}
@media (min-width:768px) {
	.pagetop-btn {
		bottom: 15px;
	}
}

.main-top{
	margin-top: 74px;
}
@media (min-width:768px) {
	.main-top{
		margin-top: 150px;
	}
}
/* page */
.page-main{
	padding-top:74px;
	background: url(../img/page-main-bg1.jpg) no-repeat;
	background-size: cover;
	height:250px;
}
.page-main .container{
	height: 210px;
}
.page-title{
	margin:-30px 0 0 0;
	line-height: 1.1;
	width: 100%;
	text-align: center;
}
.page-title-sub{
	font-size: 16px;
}

@media (min-width:1100px) {
	.page-main {
		padding-top: 150px;
		height: 400px;
	}
	.page-main .container {
		height: 310px;

	}
}

.page .main a,
.page .main a.base-btn:not{
	color: var(--blue-color);
}
.page .main .page-txt-box{
	margin: 15px 5px 30px;
}

@media (min-width:768px) {
	.page .main .page-txt-box {
		margin: 20px 20px 50px;
	}
}
.breadcrumbs {
	margin-top: 25px;
}
.breadcrumbs span{
	margin:0 5px;
}
.breadcrumbs .home {
	position: relative;
	padding-left: 20px;
}

.breadcrumbs .home::before {
	position: absolute;
	content: "";
	width: 13px;
	height: 15px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../img/breadcrumb-icon.svg);
}
.breadcrumbs a {
	text-decoration: none;
	color: var(--secondary-color);
}
.page-outline{
	padding:40px 0 30px;
	margin: 80px 0 40px;
}
.page .page-outline .container{
	position: relative;
}
.page-outline-txt{
	width: 100%;
	padding-top: 60%;
}
.page-outline-txt h3{
	font-size:22px;
}
.page-outline-img{
	position:absolute;
	max-width: 500px;
	width: 100%;
	top: -80px;
	right: 10px;
	z-index: 2;
}

@media (min-width:768px) {
	.page-outline-txt {
		width: 50%;
		padding-top:0;
	}
	.page-outline-img{
		position:static;
		right: auto;
		top: auto;
		width:45%;
		margin: 0 2.5%;
	}
}

@media (min-width:1380px) {
	.page-outline {
		padding: 40px 0 30px;
		margin: 60px auto 80px;
	}
	.page .page-outline .container {
		padding-top: 0;
	}
	.page-outline-txt {
		width: 70%;
	}
	.page-outline-txt h3 {
		font-size: 30px;
	}
	.page-outline-img{
		width: 100%;
		top: -80px;
		right: -220px;
		position: absolute;
	}
}
.page main .container{
	max-width: 1100px;
}
.page-txt{
	margin-bottom: 30px;
}
.page-txt ol{
	counter-reset: item;
	list-style: none;
	padding-left:50px;
}
.page-txt ol li{
	margin-bottom: 20px;
}
.page-txt ol li::before{
	counter-increment: item;
	content: counter(item);
	background: var(--primary-color);
	color: #FFF;
	border-radius: 50%;
	font-size: 17px;
	font-weight: 600;
	width: 26px;
	height: 26px;
	display: inline-block;
	text-align: center;
	margin-right: 15px;
}
@media (min-width:768px) {
	.page-txt {
		margin-bottom: 80px;
	}
}

/* page-medical-information-child */
.page-medical-information-child .bg-flow-item{
	background: #FFF4E5;
	margin-bottom: 100px;
	position: relative;
	border-radius: 10px;
}
.page-medical-information-child .bg-flow-item::after {
	position: absolute;
	content: "";
	background:url(../img/flow-bottom-icon.svg) no-repeat;
	background-size: cover;
	width:68px ;
	height: 40px;
	left:0;
	right: 0;
	margin: auto;
	bottom: -70px;
}
.page-medical-information-child .bg-flow-item.last::after,
.page-medical-information-child .bg-flow-item:last-child::after {
	content: none;
}
.page-medical-information-child .bg-flow-item h4 {
	border-radius: 8px;
	display: inline-block;
	line-height: 1.2;
	font-size: 22px;
	letter-spacing: 0.2em;
}
.page-medical-information-child .bg-flow-item p.fs-4 {
	font-size: 20px;
}

.page-medical-information-child .flow .col-md-6{
	position: relative;
}
.page-medical-information-child .flow .col-md-6::after {
	position: absolute;
	content: "";
	background: url(../img/triangle-bottom-icon.svg) no-repeat;
	background-size: cover;
	width: 50px;
	height: 25px;
	top: auto;
	left: 50%;
	transform: translate(-50%,0);
	bottom:5px;
}
.page-medical-information-child .flow .col-md-6:last-child{
	margin-bottom: 50px;
}
.page-medical-information-child .flow .col-md-6:last-child::after{
	content: none;
}

.page-medical-information-child .flow .col-md-4{
	position: relative;
}
.page-medical-information-child .flow .col-md-4::after {
	position: absolute;
	content: "";
	background: url(../img/triangle-bottom-icon.svg) no-repeat;
	background-size: cover;
	width: 50px;
	height: 25px;
	top: auto;
	left: 50%;
	transform: translate(-50%,0);
	bottom:5px;
}
.page-medical-information-child .flow .col-md-4:last-child{
	margin-bottom: 50px;
}
.page-medical-information-child .flow .col-md-4:last-child::after{
	content: none;
}
@media (min-width:992px) {
	.page-medical-information-child .flow .col-md-6::after {
		position: absolute;
		content: "";
		background: url(../img/triangle-right-icon.svg)no-repeat;
		width: 25px;
		height: 50px;
		left: auto;
		right: 25px;
		top: 50%;
		transform: translate(0, -50%);
	}
	.page-medical-information-child .flow.video-box .col-md-6::after {
			right:-10px;
	}
	.page-medical-information-child .flow .col-md-4::after {
		position: absolute;
		content: "";
		background: url(../img/triangle-right-icon.svg)no-repeat;
		width: 25px;
		height: 50px;
		left: auto;
		right: 25px;
		top: 50%;
		transform: translate(0, -50%);
	}
}
.page-medical-information-child .bg-box{
	background: #F6F1EC;
	border-radius: 15px;
	padding: 15px;
}
.page-medical-information-child .bg-box .bg{
	background: #DDCBB8;
	padding: 5px 15px;
	margin-bottom: 15px;
}
.page-medical-information-child .bg-box .fs-4{
	font-size: 18px;
}
@media (min-width:992px) {
	.page-medical-information-child .bg-box {
		padding: 15px 30px;
	}
}
.page-medical-information-child .definition-list {
	margin: 0;
	border: solid 1px var(--brown-color);
}
.page-medical-information-child .definition-list dt{
	background: var(--brown-color);
	color: #FFF;
	text-align: center;
	padding: 2px 0;
}
.page-medical-information-child .definition-list dd {
	padding: 2px 15px 15px;
	margin: 0;
	min-height: 70px;
}
.page-medical-information-child .merit-table thead th{
	background: #F6F1EC;
}
.page-medical-information-child .merit-table thead td{
	width: 40%;
}
.page-medical-information-child .merit-table .merit-bg{
	background: #FADAD8;
}
.page-medical-information-child .merit-table .merit-list,
.page-medical-information-child .merit-table .demerit-list{
	margin: 0;
}
.page-medical-information-child .merit-table .merit-list li,
.page-medical-information-child .merit-table .demerit-list li{
	position: relative;
	list-style-type: none;
}
.page-medical-information-child .merit-table .merit-list li:before,
.page-medical-information-child .merit-table .demerit-list li:before{
	border-radius: 50%;
	content: '';
	position: absolute;
	top: .6em;
	left: -.5em;
	width: 6px;
	height: 6px;
}
.page-medical-information-child .merit-table .merit-list li:before{
	background-color: #F95423;
}
.page-medical-information-child .merit-table .demerit-list li:before{
	background-color: #2339F9;
}
.page-medical-information-child .merit-table .demerit-bg {
	background: #D8F5FA;
}
.warning-box {
	border: #FFA217 solid 3px;
	border-radius: 15px;
}



/* doctor */
.doctor-box,
.doctor-box02 {
	margin-bottom:30px;
}
.doctor-box{
	flex-direction: column;
}
.doctor-img-box{
	position: relative;
}
.doctor-img-box .doctor-img {
	position:static;
	width:80%;
	right:auto;
	display: block;
	margin: 0 auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.doctor-img-box .name-box{
	position: static;
	top:auto;
	left: auto;
	width:250px;
	margin: 10px auto 20px;
	transform: none;
}
.doctor-box.chairman .doctor-img-box .name-box {
	width: 330px;
}

.name-box .position{
	background: var(--primary-color);
	color: #FFF;
	margin-right: 25px;
	font-size: 18px;
	padding:5px 15px;
}
.doctor-box.chairman .name-box .position{
	font-size: 16px;
	padding: 5px;
}
.name-box ruby{
	font-size: 28px;
	color: var(--primary-color);
}
.name-box ruby rt{
	color: var(--secondary-color);
}

.doctor-box02 .doctor-img{
	width: 80%;
	margin: 0 auto;
	display: block;
}
.doctor-box dl,
.doctor-box02 dl{
	font-size: 14px;
}
.doctor-box dl dt,
.doctor-box02 dl dt{
	font-weight: normal;
}
.doctor-box dl dt,
.doctor-box02 dl dt{
	width: 100%;
	padding:0 0 0 0;
}
.doctor-box dl dd,
.doctor-box02 dl dd{
	width: 100%;
	padding: 0 0 10px 0;
	margin: 0;
}



@media (min-width:991px) {
	.doctor-box,
	.doctor-box02 {
		margin-bottom: 90px;
	}
	.doctor-box.chairman{
		margin-bottom: 150px;
	}
	.doctor-img-box .doctor-img {
		position: absolute;
		width: 100%;
		aspect-ratio: 4 / 5;
	}
	.doctor-img-box .name-box {
		position: absolute;
		top:220px;
	}
	.doctor-box.chairman .doctor-img-box .name-box {
		top: 230px;
	}
	.doctor-box {
		flex-direction:row-reverse;
	}
	.doctor-box02 .doctor-img {
		width: 100%;
	}
	.doctor-box dl,
	.doctor-box02 dl {
		font-size: 16px;
	}
	.doctor-box dl dt,
	.doctor-box02 dl dt {
		width: 20%;
		padding:0 0 10px 0;
	}
	.doctor-box dl dd,
	.doctor-box02 dl dd {
		width: 80%;
		padding: 0 0 10px 10px;
		margin: 0;
	}
}

@media (min-width:1200px) {
	.page-doctor .doctor-img-box .doctor-img {
		right: -15px;
	}

}

/* Keep doctor image/name in normal flow */
.doctor-box .doctor-img-box{
	position: relative;
	height: auto;
}
.doctor-box .doctor-img-box .doctor-img{
	position: static !important;
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.doctor-box .name-box{
	position: static !important;
	top: auto;
	left: auto;
	margin: 12px auto 0;
	text-align: center;
	width: 100%;
	transform: none;
}

/* Doctor page spacing tweaks (body.page-id-7) */
body.page-id-7 .doctor-box,
body.page-id-7 .doctor-box02 {
	margin-bottom: 20px;
}
@media (min-width:991px) {
	body.page-id-7 .doctor-box,
	body.page-id-7 .doctor-box02 {
		margin-bottom: 60px;
	}
}
.bg-staff {
	background: url(../photo/floor1/IMG_2201.jpg) center center no-repeat;
	background-size: cover;
	width: 100%;
	padding-top: 50px;
	height: 200px;
	margin-bottom:50px;
	color: #FFF;
}
.staff-txt{
	background:#F0EBE1;
	padding:15px;
	margin-top:30px;
	font-size: 15px;
	margin-bottom:30px;
}
		@media (min-width:768px) {
			.bg-staff {
				width: 100%;
				padding-top: 180px;
				height: 430px;
				margin-bottom: 100px;
			}
	.staff-txt {
		margin-top: 60px;
		padding: 36px;
		margin-bottom: 90px;
	}
}
/* clinic */
.page-clinic .img-rounded{
	width:100%;
	height: auto;
}
.page-clinic .clinic-photo {
	margin-bottom: 110px;
}
.page-clinic .clinic-photo .clinic-photo-item{
	padding: 0;
	margin-bottom: 30px;
}

.page-clinic .clinic-photo .clinic-photo-item p{
	line-height: 1.6;
}
@media (min-width:768px) {
	.page-clinic .img-rounded {
		width: 333px;
		height: 200px;
	}
	.page-clinic .clinic-photo .clinic-photo-item {
		padding: 0 20px 0 ;
		margin-bottom: 50px;
	}
}
.swiper02 {
	overflow: hidden;
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	background: #FFF;
	margin-bottom: 40px;
}
.swiper02 .swiper-wrapper {
	transition-timing-function: linear;
}
.swiper02 .swiper-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.swiper02 .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* price */

.price-table{
	min-width:750px;
	font-size: 14px;
}
.price-table th,
.price-table td{
	padding:15px;
	border-right: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}
.price-table th{
	text-align: left;
	border-left: solid 1px #CCC;
	width:70%;
}
.price-table td.center{
	width: 20%;
}
@media (min-width:1000px) {
	.price-table {
		min-width:1000px;
		font-size: 16px;
	}
}
.page-price .price-bottom-txt{
	margin-bottom: 50px;
}
@media (min-width:768px) {
	.page-price .price-bottom-txt {
		margin-bottom: 100px;
	}
}
/* clinic-tour */
.page-clinic-tour .tour-box{
	background: #F0EBE1;
	min-height: 130px;
	margin-bottom: 30px;
}
.page-clinic-tour .tour-box h3{
	color: #C29F62;
}
@media (min-width:768px) {
	.page-clinic-tour .tour-box {
		margin-bottom: 0;
	}
}

/* access */
.page-clinic-information .bg-brown{
	padding: 80px 0 150px;
}
.page-clinic-information .consultation-hours p{
	margin-bottom: 0;
}


.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 80%;
	position: relative;
}

.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

@media (min-width:768px) {

	.gmap {
		padding-bottom: 50%;
	}

}


/* consultation */
.consultation-item{
	border:solid #FFCFBE 2px;
	border-radius: 15px;
	padding: 30px 40px;
	margin:0 15px 45px;
}
.consultation-item-icon{
	width: 110px;
	height:110px;
	margin-right: 20px;
}
.consultation-item-icon h3{
	margin: 0;
}
.consultation-item p{
	min-height: auto;
}
@media (min-width:768px) {
	.consultation-item p {
		min-height: 130px;
	}
}
.archives {
	margin-bottom: 30px;
}

@media (min-width:768px) {
	.archives {
		min-height: 500px;
	}
}

/* single */
.headline-post {
	line-height: 1.2;
	margin: 0 0 15px;
	color: var(--primary-color);
	border-bottom: solid 4px var(--primary-color);
	padding: 0 10px 8px;
	font-size: 25px;
}
.headline-post .time {
	font-weight: 600;
	color: var(--secondary-color);
	font-size: 18px;
}
.single-content{
	overflow: hidden;
	margin-bottom: 50px;
}
@media (min-width:768px) {
	.single-content{
		min-height: 500px;
	}
}
.single-content .article-info{
	margin-bottom: 15px;
	display: flex;
	flex-wrap: wrap;
}

.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
	font-weight: 600;
	margin-bottom: 15px;
	color:var(--primary-color);
}

.single-content .article-img{
	margin-bottom: 15px;
}

.single-content h2{
	background:var(--primary-color);
	color: #FFF;
	border-radius: 12px;
	padding: 5px 20px 7px;
	font-size: 18px;
}
.single-content h3 {
	padding: 0 5px;
	margin-bottom: 0;
	font-size: 20px;
	border-bottom: solid 3px var(--primary-color);
}
.single-content h4,
.single-content h5 {
	font-size: 18px;
}
.single-content h6 {
	font-size: 16px;
}
.single-content blockquote {
	position: relative;
	margin: 5px 0 15px 0;
	padding: 40px 15px 8px 15px;
	box-sizing: border-box;
	font-style: italic;
	font-size: 18px;
	background:var(--tertiary-color);
	color:var(--secondary-color);
}

.single-content blockquote:before {
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 3px;
	content: "“";
	color: var(--primary-color);
	font-size: 90px;
	line-height: 1;
}

.single-content blockquote p {
	padding: 0;
	margin: 10px 0;
	line-height: 1.7;
}

.single-content blockquote cite {
	display: block;
	text-align: right;
	color:var(--primary-color);
	font-size:1em;
}
.single-content table{
	border:solid 1px var(--primary-color);
	border-collapse: collapse;
}
.single-content table thead th{
	background:var(--secondary-color);
	color: #FFF;
	padding: 5px;
	border: solid 1px #FFF;
}
.single-content table tbody th{
	background: var(--tertiary-color);
}
.single-content table tbody th,
.single-content table tbody td {
	padding:15px;
	border: solid 1px #CCC;
}
.single-content ul,
.single-content ol{
	margin: 5px 0 15px 15px;
}
.single-content ul {
	list-style: disc;
}
.single-content ol {
	list-style: decimal;
}
.single-content img{
	margin-bottom: 15px;
}
.single-content .wp-caption .wp-caption-text{
	font-size: 14px;
	margin-top: -15px;
}
.single-content .aligncenter{
	margin-top: 15px;
}



/*wp-pagenavi base*/
 .wp-pagenavi {
	margin-top: 50px;
	clear: both;
	text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
	color: var(--secondary-color);
	background-color: #FFF;
	border: solid 1px var(--secondary-color);
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	border-radius: 3px;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration: none;
}

.wp-pagenavi a:hover {
	color: #FFF;
	background-color: var(--secondary-color);
	border-color: solid 1px var(--secondary-color);
}

.wp-pagenavi span.current {
	color: #FFF;
	background-color:var(--primary-color);
	border-color:var(--primary-color);
	font-weight: 600;
}
