@charset "UTF-8";

*,
::before,
::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-style: solid;
	border-width: 0;
	min-width: 0;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	margin: 0;
}

main {
	display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}

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

dt {
	font-weight: inherit;
}

dd {
	margin-left: 0;
}

hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	border-top-width: 1px;
	margin: 0;
	clear: both;
	color: inherit;
}

pre {
	font-family: monospace, monospace;
	font-size: inherit;
}

address {
	font-style: inherit;
}

a {
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	color: inherit;
}

abbr[title] {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: inherit;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
	vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
	vertical-align: middle;
	color: inherit;
	font: inherit;
	background: rgba(0, 0, 0, 0);
	padding: 0;
	margin: 0;
	border-radius: 0;
	text-align: inherit;
	text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
	cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
	cursor: default;
}

:-moz-focusring {
	outline: auto;
}

select:disabled {
	opacity: inherit;
}

option {
	padding: 0;
}

fieldset {
	margin: 0;
	padding: 0;
	min-width: 0;
}

legend {
	padding: 0;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

[type=number] {
	-moz-appearance: textfield;
}

label[for] {
	cursor: pointer;
}

details {
	display: block;
}

summary {
	display: list-item;
}

[contenteditable]:focus {
	outline: auto;
}

table {
	border-color: inherit;
	border-collapse: collapse;
}

caption {
	text-align: left;
}

td,
th {
	vertical-align: top;
	padding: 0;
}

th {
	text-align: left;
	font-weight: bold;
}

:root {
	--greenMain: 43, 171, 158;
	--darkGreen: 53, 128, 121;
	--green: 43, 171, 71;
	--lightGreen: 214, 236, 235;
	--red: 210, 41, 47;
	--blue: 43, 102, 171;
	--darkCyan: 43, 142, 171;
	--orange: 230, 112, 57;
	--deepOrange: 228, 83, 57;
	--offWhite: 245, 246, 240;
	--paleCyan: 242, 250, 250;
	--paleBlue: 226, 242, 254;
	--paleGreen: 241, 249, 234;
	--white: 255, 255, 255;
	--lightGray: 242, 242, 242;
	--gray: 204, 204, 204;
	--darkGray: 118, 118, 118;
	--black: 51, 51, 51;
	--pureBlack: 0, 0, 0;
	--gold: 213, 157, 8;
	--silver: 126, 150, 163;
	--bronze: 167, 100, 80;
	--boxshadow-gray: 5px 0 5px rgba(var(--gray), 0.3), -5px 0 5px rgba(var(--gray), 0.3);
	--boxshadow-black: 0 0 6px -2px rgba(var(--black), 0.3);
	--gradient-gray: linear-gradient(
    to right,
    rgb(var(--gray)) 0%,
    rgb(var(--black)) 50%,
    rgb(var(--gray)) 100%
  );
	--gradient-blue: linear-gradient(
    to right,
    rgb(var(--blue)) 0%,
    rgb(var(--black)) 100%
  );
	--transition-base: all 0.2s ease-out;
	--transition-littleSlow: all 0.4s ease-out;
	--transition-slow: all 0.6s ease-out;
}

html {
	font-size: 62.5%;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizelegibility;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

body {
	background-color: rgb(var(--white));
	color: rgb(var(--black));
	font-weight: 500;
	font-family: "Noto sans JP", sans-sans;
	line-height: 1.8;
	min-width: 375px;
	position: relative;
}

#body.fixed {
	overflow: hidden;
}

main {
	overflow: hidden;
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
}

img,
picture {
	border-style: none;
	max-width: 100%;
	height: auto;
}

img {
	vertical-align: bottom;
}

a {
	color: rgb(var(--black));
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
}

a img {
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
}

a:hover img {
	opacity: 0.6;
}

p + p {
	margin-top: 2em;
}

.none {
	display: none !important;
}

.grecaptcha-badge {
	visibility: hidden;
}

#body.fixed .hamburger-overray {
	visibility: visible;
	opacity: 1;
}

.jost {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

.cl-green {
	color: rgb(var(--greenMain));
}

.cl-red {
	color: rgb(var(--red));
}

.kome {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 0.8em;
}

.kome::before {
	content: "※";
}

.bold {
	font-weight: 700;
}

.semibold {
	font-weight: 600;
}

.txt-c {
	text-align: center;
}

.decimal {
	list-style: decimal inside;
}

.decimal li {
	padding-left: 1em;
	text-indent: -1em;
}

.disc {
	list-style: disc inside;
}

.disc li {
	padding-left: 1.5em;
	text-indent: -1.5em;
}

.latin {
	list-style: lower-latin inside;
}

.latin li {
	padding-left: 1em;
	text-indent: -1em;
}

.scale {
	overflow: hidden;
}

.scale img {
	-webkit-transition: all 0.6s ease-out;
	transition: all 0.6s ease-out;
	opacity: 1 !important;
}

.scale:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.flex-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex-box.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex-box.column-reverse {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.sec-inner {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.breadcrumb-inner {
	position: relative;
}

.breadcrumb li:not(:last-of-type)::after {
	content: "/";
	margin: 0 0.75em;
}

.iframe-wrapper {
	width: 100%;
}

.iframe-wrapper iframe {
	width: 100%;
	height: 100%;
}

.button-01 {
	background: rgb(var(--greenMain));
	border-radius: 50px;
	color: rgb(var(--white));
	font-size: clamp(14px, 14px + 2 * (100vw - 375px) / 1545, 16px);
	text-align: center;
	padding: 12px;
}

.button-01.arrow {
	background-image: url("../../assets/images/icon_arrow_white.svg");
	background-repeat: no-repeat;
	background-position: right 30px top 50%;
	padding-right: 50px;
	padding-left: 50px;
}

.button-01.orange {
	background: rgb(var(--orange));
}

.button-01-wrapper {
	text-align: center;
}

.button-02 {
	border: 1px solid rgb(var(--greenMain));
	color: rgb(var(--greenMain));
	font-weight: 600;
	display: inline-block;
}

.button-03 {
	background: rgb(var(--greenMain));
	color: rgb(var(--white));
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.button-04 {
	background-image: url("../../assets/images/icon_arrow_green.svg");
	background-repeat: no-repeat;
	border: 2px solid rgb(var(--greenMain));
	border-radius: 100px;
	color: rgb(var(--greenMain));
	display: block;
	font-weight: 700;
	text-align: center;
}

.button-05 {
	background: rgb(var(--orange));
	color: rgb(var(--white));
	display: inline-block;
	text-align: center;
	position: relative;
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
	text-indent: -1em;
}

.button-05:hover {
	opacity: 0.6;
}

.button-05::after {
	content: "";
	display: block;
	border-top: 2px solid rgb(var(--white));
	border-right: 2px solid rgb(var(--white));
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
}

.icon-pdf .cls-1 {
	fill: rgb(var(--white));
}

.title-01 {
	font-weight: 700;
	position: relative;
}

.title-01::after {
	background: rgb(var(--greenMain));
	content: "";
	display: block;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.title-02 {
	font-weight: 700;
}

.title-03 {
	font-weight: 700;
}

.title-04 {
	font-weight: 700;
	line-height: 1.4;
}

.title-05 {
	text-align: center;
	font-weight: 700;
}

.gray-wrapper {
	background-color: rgb(var(--lightGray));
}

.rankingNo {
	background: rgb(var(--black));
	border-radius: 5px;
	color: rgb(var(--white));
}

.rankingNo.no-1 {
	background: rgb(var(--gold));
}

.rankingNo.no-2 {
	background: rgb(var(--silver));
}

.rankingNo.no-3 {
	background: rgb(var(--bronze));
}

.new-icon {
	background: rgb(var(--black));
	border-radius: 3px;
	color: rgb(var(--white));
	font-size: 10px;
	padding: 3px 10px;
}

.header-upperRow {
	background: rgb(var(--black));
	color: rgb(var(--white));
}

.header-upperRow-text {
	font-size: clamp(11px, 11px + 1 * (100vw - 375px) / 1545, 12px);
	line-height: 1;
}

.header-upperRow-nav-list a {
	color: rgb(var(--white));
	display: block;
	line-height: 1;
	position: relative;
}

.header-upperRow-nav-list a::after {
	border-style: solid;
	border-width: 3.5px 0 3.5px 6px;
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgb(var(--white));
	content: "";
	display: block;
	height: 0;
	width: 0;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.header-underRow-contents-cta {
	margin-bottom: 25px;
}

.header-underRow-contents-cta-tel {
	text-align: center;
}

.header-underRow-contents-cta-tel a {
	display: block;
	line-height: 1.2;
}

.header-underRow-contents-cta-tel a img {
	vertical-align: baseline;
	margin-right: 6px;
}

.header-underRow-contents-cta-tel-time {
	font-size: 12px;
}

.header-underRow-contents-cta-customer a,
.header-underRow-contents-cta-contact a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 12px;
	padding-right: 40px;
	padding-left: 50px;
}

.header-underRow-contents-cta-customer a img,
.header-underRow-contents-cta-contact a img {
	margin-right: 8px;
}

.header-underRow-contents-cta-customer {
	margin-right: 20px;
	margin-left: 46px;
}

.header-underRow-contents-nav-area-list-item a {
	display: block;
	line-height: 1;
}

.header-underRow-contents-nav-area-list-item a:hover {
	color: rgb(var(--greenMain));
}

.header-underRow-btn-home {
	width: 30px;
}

.header-underRow-btn-home a {
	display: block;
}

.header-underRow-btn-home-icon {
	display: block;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 3px;
}

.header-underRow-btn-home-text {
	display: block;
	font-size: 10px;
	line-height: 1;
}

.header-underRow-btn-hamburger {
	width: 40px;
	padding-top: 23px;
	position: relative;
}

.header-underRow-btn-hamburger-line {
	background: rgb(var(--black));
	border-radius: 5px;
	width: 17px;
	height: 2px;
	margin: auto;
	position: absolute;
	top: 10px;
	right: 0;
	left: 0;
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
}

.header-underRow-btn-hamburger-line-upper {
	-webkit-transform: translateY(-6px);
	transform: translateY(-6px);
}

.header-underRow-btn-hamburger-line-lower {
	-webkit-transform: translateY(6px);
	transform: translateY(6px);
}

.header-underRow-btn-hamburger.active .header-underRow-btn-hamburger-line-upper {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}

.header-underRow-btn-hamburger.active .header-underRow-btn-hamburger-line-middle {
	opacity: 0;
}

.header-underRow-btn-hamburger.active .header-underRow-btn-hamburger-line-lower {
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}

.header-underRow-btn-hamburger-text {
	display: block;
	font-size: 10px;
	line-height: 1;
	text-align: center;
}

.header-underRow-btn-hamburger .close {
	display: none;
}

.header-underRow-btn-hamburger.active .open {
	display: none;
}

.header-underRow-btn-hamburger.active .close {
	display: block;
}

.hamburger-overray {
	background: rgba(var(--black), 0.7);
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
	visibility: hidden;
	opacity: 0;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
}

.footer {
	background: rgb(var(--black));
}

.footer-nav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer-nav-list li a {
	color: rgb(var(--white));
}

.footer-contents-info {
	color: rgb(var(--white));
}

.footer-contents-office-list-box {
	color: rgb(var(--white));
}

.footer-contents-sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.copyright {
	background: rgb(var(--darkGray));
}

.copyright small {
	color: rgb(var(--white));
}

.sec-cta {
	background: url("../../assets/images/cta_bg.png");
}

.sec-cta-title {
	color: rgb(var(--white));
	font-weight: 700;
	text-align: center;
}

.sec-cta-text {
	color: rgb(var(--white));
	font-weight: 700;
	text-align: center;
}

.sec-cta-btn-tel,
.sec-cta-btn-contact {
	border-radius: 10px;
	text-align: center;
}

.sec-cta-btn-tel {
	background: rgb(var(--white));
	padding: 20px;
}

.sec-cta-btn-tel-no {
	line-height: 1;
}

.sec-cta-btn-tel-no img {
	vertical-align: baseline;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	margin-right: max(5px, 1.3333333333vw);
}

.sec-cta-btn-contact {
	background: rgb(var(--orange));
}

.sec-cta-btn-contact a {
	color: rgb(var(--white));
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.sec-cta-btn-contact-subText img {
	vertical-align: baseline;
	margin-right: 5px;
}

.sec-area {
	padding: 0;
}

.sec-area-inner {
	background-color: rgb(var(--lightGray));
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
}

.sec-area-list-dl .column {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.sec-area-list-dl-box {
	border-bottom: 1px solid rgb(var(--lightGray));
	padding-top: 20px;
	padding-bottom: 20px;
}

.sec-area-list-dl-box-dt {
	background: url("../../assets/images/icon_pin.svg") no-repeat left top 50%;
	font-weight: 700;
}

.sec-area-list-text {
	text-align: right;
}

.embla {
	position: relative;
	width: 100%;
}

.embla__viewport {
	overflow: hidden;
	width: 100%;
}

.embla__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	will-change: transform;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.embla .embla-item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.embla__controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 16px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.embla__prev,
.embla__next {
	background: url("../../assets/images/icon_circleArrow.svg") no-repeat 0 0/100%;
	border: none;
	cursor: pointer;
	text-indent: -9999px;
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
	position: absolute;
	top: 40%;
}

.embla__prev {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.embla__dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.embla__dots .embla__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgb(var(--darkGray));
	border: none;
	opacity: 0.5;
	cursor: pointer;
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
}

.embla__dots .embla__dot.is-selected {
	background-color: rgb(var(--greenMain)) !important;
	opacity: 1;
}

.fv-before-text {
	background: rgb(var(--greenMain));
	color: rgb(var(--white));
	font-size: max(14px, 3.7333333333vw);
	text-align: center;
	line-height: max(30px, 8vw);
}

.pagetitle {
	color: rgb(var(--white));
	font-weight: 700;
	text-align: center;
}

.pagetitle-wrapper {
	background: rgba(var(--greenMain), 0.4);
}

.list-border {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.list-border li {
	border: 2px solid rgba(var(--darkGray), 0.2);
	color: rgb(var(--greenMain));
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
}

.list-check {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.list-check li {
	background-image: url("../../assets/images/icon_check_01.svg");
	background-repeat: no-repeat;
}

.gray-belt {
	text-align: center;
}

.gray-belt-title {
	background: rgb(var(--darkGray));
	color: rgb(var(--white));
	font-weight: 700;
	text-align: center;
}

.post-side-title {
	font-weight: 700;
}

.post-side-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.post-side-list a {
	background-image: url("../images/icon_arrow_green_right.svg");
	background-repeat: no-repeat;
	display: block;
	padding-right: 10px;
}

.single-nav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.single-nav-list li a {
	position: relative;
}

.single-nav-list li a::after {
	background: url("../images/icon_arrow_green_right.svg") no-repeat 0 0/100%;
	content: "";
	display: block;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
}

.single-nav-list li.single-nav-prev a::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	left: 0;
}

.single-nav-list li.single-nav-next a::after {
	right: 0;
}

.single-nav-archive {
	text-align: center;
}

.single-nav-archive a {
	background-image: url("../images/icon_arrow_white.svg");
	background-repeat: no-repeat;
	background-position: right 20px top 50%;
}

.single-title {
	border-bottom: 1px solid rgb(var(--gray));
	font-weight: 700;
	position: relative;
}

.single-title::after {
	background: rgb(var(--greenMain));
	content: "";
	display: block;
	position: absolute;
	height: 1px;
	left: 0;
	bottom: -1px;
}

.head-breamcrumb {
	background: #F2F2F2;
}

.head-breamcrumb .breadcrumb-wrap {
	margin: 0;
	padding: 15px 0;
}

.column-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 140px;
	background: #2BAB9E;
	font-size: 32px;
	list-style: 1.5;
	text-align: center;
	font-weight: 700;
	color: #FFF;
}

.column-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 28px;
	margin-bottom: 40px;
}

.column-info--sm {
	gap: 20px;
	margin-bottom: 18px;
}

.column-info__date {
	font-size: 14px;
	letter-spacing: 0.05em;
}

.cat-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
}

.cat-list li a {
	position: relative;
	display: block;
	z-index: 1;
	padding: 5px 15px;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 500;
	color: #2BAB9E;
	letter-spacing: 0.05em;
	border: 1px solid #2BAB9E;
	border-radius: 50px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.single-content {
	font-size: 16px;
	line-height: 1.875;
}

.single-content > *:first-child {
	margin-top: 0;
}

.single-content > p {
	margin: 20px 0;
	letter-spacing: 0.05em;
}

.single-content a {
	text-decoration: underline;
}

.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
	margin-bottom: 34px;
}

.single-content h2 + p,
.single-content h3 + p,
.single-content h4 + p,
.single-content h5 + p,
.single-content h6 + p {
	margin-top: 20px;
}

.single-content h2 {
	margin-top: 60px;
	margin-bottom: 30px;
	font-size: 32px;
	line-height: 1.6875;
	font-weight: 700;
}

.single-content h3 {
	margin-top: 60px;
	padding-bottom: 12px;
	font-size: 28px;
	line-height: 1.5;
	font-weight: 700;
	border-bottom: 4px solid #319E97;
}

.single-content h4 {
	margin-top: 60px;
	margin-bottom: 20px;
	padding-bottom: 12px;
	font-size: 24px;
	line-height: 1.5;
	font-weight: 700;
	border-bottom: 2px solid #767676;
}

.single-content img {
	display: block;
	margin-bottom: 56px;
	border-radius: 10px;
}

.single-content ul:not([class]) {
	margin: 20px 0;
	padding-left: 20px;
	list-style: disc;
}

.single-content ul:not([class]) li ul,
.single-content ul:not([class]) li ol {
	margin-top: 10px;
	margin-bottom: 10px;
}

.single-content ol:not([class]) {
	margin: 20px 0;
	padding-left: 20px;
	list-style: decimal;
}

.single-content ol:not([class]) li ul,
.single-content ol:not([class]) li ol {
	margin-top: 10px;
	margin-bottom: 10px;
}

.single-content .summary {
	margin-top: 60px;
	margin-bottom: 60px;
	padding: 26px 40px;
	background: #EDFAFA;
	border-radius: 10px;
	border: 2px solid #2BAB9E;
}

.single-content .summary__head {
	margin-bottom: 15px;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 700;
	color: #2BAB9E;
}

.single-content .summary__list li {
	font-size: 16px;
	line-height: 1.875;
	text-indent: -0.5em;
	padding-left: 0.5em;
}

.single-content .summary__list li::before {
	content: "• ";
}

.single-content .editor-columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.single-content .editor-columns img {
	margin-bottom: 0;
}

.single-content table {
	overflow: hidden;
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 0 1px #F2F2F2;
	box-shadow: inset 0 0 0 1px #F2F2F2;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 700;
	text-align: center;
}

.single-content table thead th,
.single-content table thead td {
	padding: 18px;
	background: #2BAB9E;
	color: #FFF;
	text-align: center;
	border: 1px solid #F2F2F2;
}

.single-content table tbody th,
.single-content table tbody td {
	padding: 20px;
	text-align: center;
	border: 1px solid #F2F2F2;
}

.single-content table tbody th {
	background: #EDFAFA;
}

.single-content #toc_container {
	margin-top: 60px;
	margin-bottom: 60px;
	padding: 28px 38px;
	border: 1px solid #F2F2F2;
	border-radius: 10px;
}

.single-content #toc_container .toc_title {
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 700;
}

.single-content #toc_container .toc_list {
	font-size: 16px;
}

.single-content #toc_container .toc_list > li:not(:last-child) {
	margin-bottom: 0.5em;
}

.single-content #toc_container .toc_list > li a {
	line-height: 1.5;
	color: #2BAB9E;
	text-decoration: none;
}

.single-content #toc_container .toc_list > li a span {
	color: #333333;
}

.single-content #toc_container .toc_list ul {
	padding-left: 15px;
	font-size: 14px;
}

.single-content .faq-list {
	margin-top: 60px;
	margin-bottom: 60px;
}

.single-content .faq-list-box .dt {
	background: rgb(var(--lightGray));
	border-radius: 100px;
	font-weight: 700;
}

.single-content .faq-list-box .dt::before {
	content: "Q";
}

.single-content .faq-list-box .dd::before {
	color: rgb(var(--greenMain));
	content: "A";
}

.single-content .faq-list-box .dt,
.single-content .faq-list-box .dd {
	position: relative;
}

.single-content .faq-list-box .dt::before,
.single-content .faq-list-box .dd::before {
	display: block;
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	position: absolute;
	line-height: 1;
}

.columm-card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	-webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
}

.columm-card__image {
	overflow: hidden;
	aspect-ratio: 380/220;
}

.columm-card__image img {
	display: block;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.columm-card__body {
	padding: 30px;
}

.columm-card__title {
	margin-bottom: 27px;
	font-size: 22px;
	line-height: 1.5454;
	font-weight: 700;
}

.columm-card__title a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.columm-card__text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 16px;
}

.column-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px 5.5%;
}

.column-archive {
	margin-top: 100px;
}

.column-archive__cat {
	margin-top: 35px;
	margin-bottom: 40px;
}

.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin-top: 100px;
}

.pagination .page-numbers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 100px;
	font-family: "Jost", sans-serif;
	background: #F2F2F2;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: none;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.pagination .page-numbers.current {
	color: #FFF;
	background: #2BAB9E;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	position: relative;
	display: block;
	border: none;
	background: none;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.pagination .page-numbers.prev::before,
.pagination .page-numbers.next::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	width: 10px;
	height: 10px;
	border-top: 2px solid #333333;
	border-right: 2px solid #333333;
	background: #FFF;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.pagination .page-numbers.prev {
	-webkit-transform: scale(-1, 1);
	transform: scale(-1, 1);
	margin-right: 8px;
}

.pagination .page-numbers.next {
	margin-left: 8px;
}

.pagination .page-numbers.dots {
	border: none;
	pointer-events: none;
}

.pagination .page-numbers:not(.dots) {
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

@media (hover: hover) {

.pagination .page-numbers:hover {
	background: #2BAB9E;
	border-color: #2BAB9E;
	color: #FFF;
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
	background: #FFF;
	border-color: #333333;
}

.pagination .page-numbers.prev:hover::before,
.pagination .page-numbers.next:hover::before {
	background: #333333;
}

}

@media (min-width: 768px) and (max-width: 1024px) {

.pc-only,
.sp-only,
.tab-none {
	display: none !important;
}

.tab-only {
	display: initial !important;
}

}

@media (min-width: 768px) {

.flex-box.reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.flex-box-left {
	width: min(51.5625%, 660px);
}

.flex-box-right {
	width: min(43.75%, 560px);
}

.sec {
	padding-top: 50px;
	padding-bottom: 80px;
}

.sec-inner {
	width: min(100%, 1320px);
	padding-right: 20px;
	padding-left: 20px;
}

.breadcrumb {
	font-size: 12px;
}

.breadcrumb-wrap {
	margin-top: 100px;
	padding: 15px 0 40px;
}

.breadcrumb-inner {
	max-width: 1320px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}

.iframe-wrapper {
	aspect-ratio: 16/9;
}

.button-01 {
	display: inline-block;
}

.button-01-wrapper .button-01 {
	width: 400px;
}

.button-02 {
	border-radius: 20px;
	padding: 7px 20px 6px;
}

.button-03 {
	border-radius: 10px;
	font-size: 18px;
	padding: 20px;
}

.button-03 .icon-pdf {
	margin-right: 20px;
	width: 36px;
}

.button-04 {
	background-size: 13px;
	background-position: right 25px top 50%;
	padding: 13px;
}

.button-05 {
	border-radius: 10px;
	padding: 20px 40px;
	min-width: 260px;
}

.button-05::after {
	width: 8px;
	height: 8px;
	right: 20px;
}

.title-01 {
	font-size: 20px;
	margin-bottom: 40px;
	padding-bottom: 18px;
}

.title-01::after {
	width: 70px;
}

.title-01-subText {
	font-size: 14px;
}

.title-02 {
	font-size: 18px;
	margin-bottom: 20px;
}

.title-03 {
	font-size: 18px;
	margin-bottom: 20px;
}

.title-04 {
	font-size: 20px;
	margin-bottom: 40px;
}

.title-05 {
	font-size: 20px;
	margin-bottom: 50px;
}

.title-05-subText {
	font-size: 14px;
}

.rankingNo {
	font-size: 12;
}

.rankingNo {
	padding: 6px 13px 2px;
}

.rankingNo span {
	font-size: 16px;
}

.header-upperRow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 6.5px 20px;
}

.header-upperRow-nav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 24px;
}

.header-upperRow-nav-list a {
	font-size: 12px;
	padding-left: 14px;
}

.header-underRow-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 10px 20px 25px;
}

.header-underRow-contents-cta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.header-underRow-contents-cta-tel a {
	font-size: 26px;
}

.header-underRow-contents-nav-area-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header-underRow-contents-nav-area-list-item.under-menu > a::after {
	border-style: solid;
	border-width: 6px 3.5px 0 3.5px;
	border-color: rgb(var(--greenMain)) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -16px;
}

.header-underRow-contents-nav-area-list-item a {
	font-size: 14px;
	position: relative;
}

.header-underRow-btn {
	display: none;
}

.header-megamenu {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	margin: auto;
	padding-top: 35px;
	width: min(1120px, 96%);
	position: absolute;
	left: 0;
	right: 0;
	z-index: 100;
}

.header-megamenu-inner {
	background: rgb(var(--white));
	border-radius: 0 0 20px 20px;
	-webkit-box-shadow: var(--boxshadow-black);
	box-shadow: var(--boxshadow-black);
	padding: 32px 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 30px 3.03%;
}

.header-megamenu-inner .appliances,
.header-megamenu-inner .setitem {
	width: min(550px, 55.54%);
}

.header-megamenu-inner .furniture,
.header-megamenu-inner .rentalplan {
	width: min(410px, 41.42%);
}

.header-megamenu-overray {
	background: rgba(var(--darkGray), 0.9);
	width: 100%;
	height: calc(100% - 181.78px);
	position: absolute;
	z-index: 100;
	left: 0;
	right: 0;
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
	-webkit-transform: translateY(55px);
	transform: translateY(55px);
	opacity: 0;
	visibility: hidden;
}

.under-menu:hover .header-megamenu {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.under-menu:hover .header-megamenu-overray {
	opacity: 1;
	visibility: visible;
}

.header-megamenu-label {
	font-weight: 700;
	margin-bottom: 18px;
	padding-left: 30px;
	position: relative;
}

.header-megamenu-label::after {
	background: rgb(var(--greenMain));
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.header-megamenu-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 10px;
}

.header-megamenu-list-item {
	background: rgb(var(--white));
	border-radius: 10px;
	-webkit-box-shadow: var(--boxshadow-black);
	box-shadow: var(--boxshadow-black);
	min-height: 150px;
}

.header-megamenu-list-item a {
	background: url("../../assets/images/icon_arrow_green.svg") no-repeat bottom center/15px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	height: 100%;
	padding: 15px 20px;
}

.header-megamenu-list-item-img {
	width: 60px;
}

.header-megamenu-list-item-name {
	font-size: 14px;
}

.appliances .header-megamenu-list-item,
.setitem .header-megamenu-list-item {
	width: min(130px, (100% - 30px) / 4);
}

.furniture .header-megamenu-list-item,
.rentalplan .header-megamenu-list-item {
	width: min(130px, (100% - 20px) / 3);
}

.header-hamburger {
	display: none;
}

.footer {
	padding-top: 90px;
	padding-bottom: 50px;
}

.footer-nav {
	margin-bottom: 80px;
}

.footer-nav-list {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 20px 70px;
}

.footer-contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer-contents-info {
	width: 420px;
}

.footer-contents-info-name {
	font-size: 14px;
	margin: 20px 0 10px;
}

.footer-contents-info-address {
	font-size: 12px;
}

.footer-contents-info-tokushoho {
	margin: 20px 0 30px;
}

.footer-contents-office {
	width: 820px;
}

.footer-contents-office-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 40px;
}

.footer-contents-office-list-box dt {
	font-size: 14px;
}

.footer-contents-office-list-box dd {
	font-size: 12px;
}

.footer-contents-sns {
	gap: 20px;
}

.copyright small {
	font-size: 11px;
	line-height: 30px;
}

.fixed-link {
	display: none;
}

.sec-cta-title {
	font-size: 20px;
}

.sec-cta-text {
	font-size: 14px;
	margin: 20px 0;
}

.sec-cta-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 40px;
}

.sec-cta-btn-tel,
.sec-cta-btn-contact {
	width: 420px;
}

.sec-cta-btn-tel-text {
	font-size: 14px;
}

.sec-cta-btn-tel-no {
	font-size: 36px;
}

.sec-cta-btn-tel-time {
	font-size: 13px;
}

.sec-cta-btn-contact a {
	padding: 25px;
}

.sec-cta-btn-contact-subText {
	font-size: 14px;
}

.sec-cta-btn-contact-text {
	font-size: 20px;
	margin-top: 10px;
}

.sec-area-inner {
	background-image: url("../../assets/images/bg_map.png");
}

.sec-area-inner-text {
	font-size: 18px;
}

.sec-area-list-dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px 40px;
}

.sec-area-list-dl-box-dt {
	margin-bottom: 15px;
	padding-left: 20px;
}

.sec-area-list-dl-box-dd {
	font-size: 12px;
}

.sec-area-list-text {
	font-size: 13px;
}

.embla__controls {
	margin-top: 50px;
}

.embla__prev,
.embla__next {
	width: 32px;
	height: 32px;
}

.embla__prev {
	left: -16px;
}

.embla__next {
	right: -16px;
}

.pagetitle {
	font-size: 24px;
	padding: 47px 0;
}

.page-sec {
	padding-top: 100px;
}

.page-sec + section:not(.page-sec) {
	margin-top: 50px;
}

.list-border {
	gap: 10px;
}

.list-border li {
	width: 280px;
	height: 80px;
	padding: 10px;
}

.list-check {
	gap: 20px;
}

.list-check li {
	background-position: left 0 top 7px;
	background-size: 22.5px;
	font-size: 18px;
	padding-left: 30px;
}

.gray-belt-title {
	font-size: 20px;
	padding: 18px 10px;
}

.gray-belt-inner {
	padding: 30px 10px;
}

.post-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: min(100%, 1320px);
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 50px;
	padding-top: 100px;
	padding-right: 20px;
	padding-left: 20px;
}

.post-side {
	width: min(20%, 200px);
}

.post-side-title {
	font-size: 18px;
	margin-bottom: 20px;
}

.post-side-list {
	gap: 15px;
}

.post-side-list a {
	background-size: 5px;
	background-position: right 0 top 50%;
}

.single-nav {
	margin-top: 80px;
}

.single-nav-list li a {
	font-size: 18px;
}

.single-nav-list li a::after {
	width: 5px;
	height: 10px;
}

.single-nav-list li.single-nav-prev a {
	padding-left: 20px;
}

.single-nav-list li.single-nav-next a {
	padding-right: 20px;
}

.single-nav-archive {
	margin-top: -42px;
}

.single-nav-archive a {
	width: 400px;
}

.single-article {
	width: min(78%, 1000px);
}

.single-title {
	font-size: 28px;
	margin-bottom: 10px;
	padding-bottom: 15px;
}

.single-title::after {
	width: 70px;
}

.single-info__date {
	font-size: 14px;
}

.single-content .faq-list-box + .faq-list-box {
	margin-top: 40px;
}

.single-content .faq-list-box .dt {
	margin-bottom: 30px;
	font-size: 18px;
	padding: 15px 20px 15px 70px;
}

.single-content .faq-list-box .dt::before {
	top: 17px;
}

.single-content .faq-list-box .dd {
	padding-left: 70px;
}

.single-content .faq-list-box .dd::before {
	top: 3px;
}

.single-content .faq-list-box .dt::before,
.single-content .faq-list-box .dd::before {
	font-size: 28px;
	left: 30px;
}

}

@media screen and (min-width: 768px) {

.cat-list li a { /* 767px以上 */
}

.cat-list li a:hover {
	background: #2BAB9E;
	color: #FFF;
}

.columm-card:has(.columm-card__title:hover) { /* 767px以上 */
}

.columm-card:has(.columm-card__title:hover) img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

}

@media (min-width: 1025px) {

body {
	font-size: 16px;
}

.tab-only,
.sp-only,
.pc-none {
	display: none !important;
}

.pc-only {
	display: initial !important;
}

}

@media (max-width: 767px) {

body {
	font-size: max(16px, 4.2666666667vw);
}

.pc-only,
.tab-only,
.sp-none {
	display: none !important;
}

.sp-only {
	display: initial !important;
}

#body {
	padding-bottom: max(60px, 16vw);
}

.flex-box {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex-box.reverse {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.flex-box {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: max(25px, 6.6666666667vw);
}

.sec {
	padding-top: max(50px, 13.3333333333vw);
	padding-bottom: max(80px, 21.3333333333vw);
}

.sec-inner {
	padding-right: max(16px, 4.2666666667vw);
	padding-left: max(16px, 4.2666666667vw);
}

.breadcrumb {
	font-size: max(12px, 3.2vw);
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	overflow-x: scroll;
	scrollbar-width: none;
	padding-right: 2em;
}

.breadcrumb-wrap {
	overflow: hidden;
	margin-top: max(40px, 10.6666666667vw);
	padding: max(10px, 2.6666666667vw) max(20px, 5.3333333333vw) max(40px, 10.6666666667vw);
}

.breadcrumb-inner::after {
	background: -webkit-gradient(linear, left top, right top, from(rgba(30, 87, 153, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
	background: linear-gradient(to right, rgba(30, 87, 153, 0) 0%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
	content: "";
	width: 2em;
	height: 100%;
	position: absolute;
	right: -1px;
	top: 0;
	bottom: 0;
}

.breadcrumb li {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.iframe-wrapper {
	aspect-ratio: 4/3;
}

.button-01 {
	display: block;
}

.button-02 {
	border-radius: max(20px, 5.3333333333vw);
	padding: max(7px, 1.8666666667vw) max(20px, 5.3333333333vw) max(6px, 1.6vw);
}

.button-03 {
	border-radius: max(10px, 2.6666666667vw);
	font-size: max(16px, 4.2666666667vw);
	padding: max(17px, 4.5333333333vw);
}

.button-03 .icon-pdf {
	margin-right: max(10px, 2.6666666667vw);
	width: max(36px, 9.6vw);
}

.button-04 {
	background-size: max(13px, 3.4666666667vw);
	background-position: right max(23px, 6.1333333333vw) top 50%;
	padding: max(13px, 3.4666666667vw);
}

.button-05 {
	display: block;
	border-radius: max(10px, 2.6666666667vw);
	padding: max(20px, 5.3333333333vw) max(40px, 10.6666666667vw);
}

.button-05::after {
	width: max(8px, 2.1333333333vw);
	height: max(8px, 2.1333333333vw);
	right: max(20px, 5.3333333333vw);
}

.title-01 {
	font-size: max(20px, 5.3333333333vw);
	margin-bottom: max(40px, 10.6666666667vw);
	padding-bottom: max(18px, 4.8vw);
}

.title-01::after {
	width: max(70px, 18.6666666667vw);
}

.title-01-subText {
	font-size: max(14px, 3.7333333333vw);
}

.title-02 {
	font-size: max(18px, 4.8vw);
	margin-bottom: max(26px, 6.9333333333vw);
}

.title-03 {
	font-size: max(18px, 4.8vw);
	margin-bottom: max(20px, 5.3333333333vw);
}

.title-04 {
	font-size: max(20px, 5.3333333333vw);
	margin-bottom: max(20px, 5.3333333333vw);
}

.title-05 {
	font-size: max(20px, 5.3333333333vw);
	margin-bottom: max(20px, 5.3333333333vw);
}

.title-05-subText {
	font-size: max(14px, 3.7333333333vw);
}

.scroll-box {
	overflow-x: scroll;
}

.rankingNo {
	font-size: max(12px, 3.2vw);
}

.rankingNo {
	display: inline-block;
	padding: 0 max(13px, 3.4666666667vw);
}

.rankingNo span {
	font-size: max(16px, 4.2666666667vw);
}

.header-upperRow {
	margin-bottom: max(60.47px, 16.1253333333vw);
	padding: max(7px, 1.8666666667vw) max(20px, 5.3333333333vw);
}

.header-upperRow-nav {
	display: none;
}

.header-upperRow-nav-list a {
	font-size: max(12px, 3.2vw);
	padding-left: max(14px, 3.7333333333vw);
}

.header-underRow {
	width: 100%;
	position: absolute;
	z-index: 10000;
	top: max(25px, 6.6666666667vw);
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
}

.header-underRow.is-active {
	position: fixed;
	top: 0;
	-webkit-box-shadow: 0 max(-9px, -2.4vw) max(15px, 4vw) rgb(var(--black));
	box-shadow: 0 max(-9px, -2.4vw) max(15px, 4vw) rgb(var(--black));
}

.header-underRow-inner {
	background: rgb(var(--white));
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: max(12px, 3.2vw) max(16px, 4.2666666667vw);
}

.scrolled-down .header-underRow {
	top: max(-86px, -22.9333333333vw);
}

.header-underRow_logo {
	width: max(208px, 55.4666666667vw);
}

.header-underRow-contents {
	display: none;
}

.header-underRow-contents-cta-tel a {
	font-size: max(26px, 6.9333333333vw);
}

.header-underRow-contents-nav-area-list-item a {
	font-size: max(14px, 3.7333333333vw);
}

.header-underRow-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: max(85px, 22.6666666667vw);
}

.header-hamburger {
	background: rgb(var(--white));
	opacity: 0;
	overflow-y: scroll;
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
	visibility: hidden;
	width: max(335px, 89.3333333333vw);
	position: fixed;
	top: 0;
	right: -100%;
	bottom: 0;
	z-index: 9999;
}

.header-hamburger.open-menu {
	opacity: 1;
	visibility: visible;
	right: 0;
}

.header-hamburger-inner {
	padding: max(35px, 9.3333333333vw) max(16px, 4.2666666667vw) max(50px, 13.3333333333vw);
}

.header-hamburger .hamburger-close-button {
	-webkit-box-shadow: var(--boxshadow-black);
	box-shadow: var(--boxshadow-black);
	border-radius: 50%;
	display: block;
	width: max(24px, 6.4vw);
	height: max(24px, 6.4vw);
	margin-left: auto;
	margin-bottom: max(20px, 5.3333333333vw);
	position: absolute;
	top: max(35px, 9.3333333333vw);
	right: max(16px, 4.2666666667vw);
}

.header-hamburger .hamburger-close-button::before,
.header-hamburger .hamburger-close-button::after {
	background: rgb(var(--darkGray));
	border-radius: max(2px, 0.5333333333vw);
	content: "";
	display: block;
	width: max(13px, 3.4666666667vw);
	height: max(2px, 0.5333333333vw);
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.header-hamburger .hamburger-close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.header-hamburger .hamburger-close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.header-hamburger-title {
	font-size: max(18px, 4.8vw);
	font-weight: 700;
	margin-bottom: max(30px, 8vw);
}

.header-hamburger-cta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: max(16px, 4.2666666667vw);
	margin-bottom: max(50px, 13.3333333333vw);
}

.header-hamburger-cta-customer a,
.header-hamburger-cta-contact a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 12px;
	padding-right: 40px;
	padding-left: 50px;
}

.header-hamburger-cta-customer a img,
.header-hamburger-cta-contact a img {
	margin-right: 8px;
}

.header-hamburger-mainNav-list-item {
	border-bottom: 1px solid rgb(var(--lightGray));
}

.header-hamburger-mainNav-list-item.ac-btn {
	position: relative;
}

.header-hamburger-mainNav-list-item.ac-btn::after {
	border-color: rgb(var(--greenMain)) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
	border-style: solid;
	border-width: max(10px, 2.6666666667vw) max(6px, 1.6vw) 0 max(6px, 1.6vw);
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: max(23px, 6.1333333333vw);
	right: max(10px, 2.6666666667vw);
}

.header-hamburger-mainNav-list-item > a {
	display: block;
	padding: max(16px, 4.2666666667vw) max(20px, 5.3333333333vw);
}

.header-hamburger-mainNav-list-under-item a {
	background: url("../../assets/images/icon_arrow_green_right.svg") no-repeat right max(10px, 2.6666666667vw) top 50%/max(5px, 1.3333333333vw) max(8px, 2.1333333333vw);
	display: block;
	font-size: max(14px, 3.7333333333vw);
	padding: max(8px, 2.1333333333vw) max(10px, 2.6666666667vw) max(8px, 2.1333333333vw) max(36px, 9.6vw);
}

.header-hamburger-mainNav-list-under-item:last-child {
	margin-bottom: max(8px, 2.1333333333vw);
}

.header-hamburger-tel {
	text-align: center;
	line-height: 1.6;
	margin-bottom: max(30px, 8vw);
}

.header-hamburger-tel-text {
	font-size: max(14px, 3.7333333333vw);
}

.header-hamburger-tel a {
	font-size: max(26px, 6.9333333333vw);
}

.header-hamburger-tel a img {
	vertical-align: middle;
	-webkit-transform: translateY(max(-3px, -0.8vw));
	transform: translateY(max(-3px, -0.8vw));
}

.header-hamburger-tel-time {
	font-size: max(12px, 3.2vw);
}

.header-hamburger-subNav {
	background: rgb(var(--black));
	padding: max(30px, 8vw) max(16px, 4.2666666667vw);
}

.header-hamburger-subNav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: max(12px, 3.2vw) 0;
}

.header-hamburger-subNav-list li {
	width: 50%;
}

.header-hamburger-subNav-list a {
	color: rgb(var(--white));
	font-size: max(12px, 3.2vw);
	padding-left: max(14px, 3.7333333333vw);
	position: relative;
}

.header-hamburger-subNav-list a::after {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgb(var(--white));
	border-style: solid;
	border-width: max(3px, 0.8vw) 0 max(3px, 0.8vw) max(7px, 1.8666666667vw);
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.footer {
	padding-top: max(50px, 13.3333333333vw);
	padding-bottom: max(50px, 13.3333333333vw);
}

.footer-nav {
	margin-bottom: max(50px, 13.3333333333vw);
}

.footer-nav-list {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: max(15px, 4vw) 0;
}

.footer-nav-list li {
	width: max(180px, 48vw);
}

.footer-nav-list li:nth-of-type(odd) {
	width: max(138px, 36.8vw);
}

.footer-nav-list li a {
	font-size: max(12px, 3.2vw);
}

.footer-nav-list li:first-of-type {
	width: 100%;
}

.footer-nav-list li:first-of-type a {
	font-size: max(14px, 3.7333333333vw);
}

.footer-contents-info-name {
	font-size: max(14px, 3.7333333333vw);
	margin: max(20px, 5.3333333333vw) 0 max(8px, 2.1333333333vw);
}

.footer-contents-info-address {
	font-size: max(12px, 3.2vw);
	margin-top: 0;
}

.footer-contents-info-tokushoho {
	font-size: max(12px, 3.2vw);
	margin: max(20px, 5.3333333333vw) 0 max(40px, 10.6666666667vw);
}

.footer-contents-office {
	margin-top: max(40px, 10.6666666667vw);
}

.footer-contents-office-list {
	border-top: 1px solid rgb(var(--darkGray));
}

.footer-contents-office-list-box {
	border-bottom: 1px solid rgb(var(--darkGray));
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: max(30px, 8vw);
	padding: max(15px, 4vw) 0;
}

.footer-contents-office-list-box dt {
	width: max(90px, 24vw);
	font-size: max(14px, 3.7333333333vw);
}

.footer-contents-office-list-box dd {
	font-size: max(14px, 3.7333333333vw);
}

.footer-contents-sns {
	gap: max(20px, 5.3333333333vw);
	margin-top: max(50px, 13.3333333333vw);
}

.copyright small {
	display: block;
	font-size: max(11px, 2.9333333333vw);
	line-height: 1.2;
	padding: max(5px, 1.3333333333vw) 0;
}

.fixed-link {
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 100;
}

.fixed-link-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.fixed-link-list-item {
	width: max(90px, 24vw);
}

.fixed-link-list-item a {
	background: rgb(var(--lightGray));
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: max(10px, 2.6666666667vw);
	height: 100%;
	padding: max(11.5px, 3.0666666667vw) 0;
}

.fixed-link-list-item span {
	color: rgb(var(--orange));
}

.fixed-link-list-item:last-child {
	width: max(105px, 28vw);
}

.fixed-link-list-item:last-child a {
	background: rgb(var(--orange));
	color: rgb(var(--white));
}

.sec-cta-title {
	font-size: max(20px, 5.3333333333vw);
}

.sec-cta-text {
	font-size: max(14px, 3.7333333333vw);
	margin: max(20px, 5.3333333333vw) 0;
}

.sec-cta-btn-tel-text {
	font-size: max(14px, 3.7333333333vw);
}

.sec-cta-btn-tel-no {
	font-size: max(31px, 8.2666666667vw);
}

.sec-cta-btn-tel-time {
	font-size: max(12px, 3.2vw);
}

.sec-cta-btn-contact {
	margin-top: max(20px, 5.3333333333vw);
}

.sec-cta-btn-contact a {
	padding: max(30px, 8vw);
}

.sec-cta-btn-contact-subText {
	font-size: max(14px, 3.7333333333vw);
}

.sec-cta-btn-contact-text {
	font-size: max(16px, 4.2666666667vw);
	margin-top: 0;
}

.sec-area-inner {
	background-image: url("../../assets/images/bg_map_sp.png");
}

.sec-area-inner-text {
	font-size: max(18px, 4.8vw);
}

.sec-area-list-dl-box-dt {
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
	position: relative;
	margin-bottom: 0;
	padding-left: max(20px, 5.3333333333vw);
}

.sec-area-list-dl-box-dt::before,
.sec-area-list-dl-box-dt::after {
	background: rgb(var(--greenMain));
	border-radius: max(2px, 0.5333333333vw);
	content: "";
	display: block;
	-webkit-transition: var(--transition-base);
	transition: var(--transition-base);
	width: max(13px, 3.4666666667vw);
	height: max(2px, 0.5333333333vw);
	margin: auto;
	position: absolute;
	top: 0;
	right: max(15px, 4vw);
	bottom: 0;
}

.sec-area-list-dl-box-dt::before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.sec-area-list-dl-box-dt.open {
	margin-bottom: max(15px, 4vw);
}

.sec-area-list-dl-box-dt.open::before {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.sec-area-list-dl-box-dt.open::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	opacity: 0;
}

.sec-area-list-dl-box-dd {
	font-size: max(12px, 3.2vw);
}

.sec-area-list-text {
	font-size: max(12px, 3.2vw);
	margin-top: max(30px, 8vw);
}

.embla .embla-item {
	width: 100%;
}

.embla__controls {
	margin-top: max(50px, 13.3333333333vw);
}

.embla__prev,
.embla__next {
	width: max(32px, 8.5333333333vw);
	height: max(32px, 8.5333333333vw);
}

.embla__prev {
	left: max(-16px, -4.2666666667vw);
}

.embla__next {
	right: max(-16px, -4.2666666667vw);
}

.pagetitle {
	font-size: max(24px, 6.4vw);
	padding: max(20px, 5.3333333333vw) 0;
}

.page-sec {
	padding-top: max(50px, 13.3333333333vw);
}

.page-sec:first-of-type {
	padding-top: max(20px, 5.3333333333vw);
}

.page-sec + section:not(.page-sec) {
	margin-top: max(25px, 6.6666666667vw);
}

.list-border {
	gap: max(7px, 1.8666666667vw);
}

.list-border li {
	font-size: max(14px, 3.7333333333vw);
	width: max(168px, 44.8vw);
	padding: max(14px, 3.7333333333vw) max(10px, 2.6666666667vw);
}

.list-check {
	gap: max(20px, 5.3333333333vw);
}

.list-check li {
	background-position: left 0 top max(7px, 1.8666666667vw);
	background-size: max(22.5px, 6vw);
	font-size: max(16px, 4.2666666667vw);
	padding-left: max(30px, 8vw);
}

.gray-belt-title {
	font-size: max(20px, 5.3333333333vw);
	padding: max(20px, 5.3333333333vw) max(16px, 4.2666666667vw);
}

.gray-belt-inner {
	padding: max(30px, 8vw) max(16px, 4.2666666667vw);
}

.post-wrapper {
	margin-bottom: max(50px, 13.3333333333vw);
	padding-top: max(20px, 20 / 375 * 100vw);
	padding-right: max(16px, 4.2666666667vw);
	padding-left: max(16px, 4.2666666667vw);
}

.post-side-title {
	font-size: max(18px, 4.8vw);
	margin-bottom: max(20px, 5.3333333333vw);
}

.post-side-list {
	gap: max(15px, 4vw);
}

.post-side-list a {
	background-size: max(5px, 1.3333333333vw);
	background-position: left 10em top 50%;
}

.single-nav {
	margin-top: max(80px, 21.3333333333vw);
}

.single-nav-list li a {
	font-size: max(18px, 4.8vw);
}

.single-nav-list li a::after {
	width: max(5px, 1.3333333333vw);
	height: max(10px, 2.6666666667vw);
}

.single-nav-list li.single-nav-prev a {
	padding-left: max(20px, 5.3333333333vw);
}

.single-nav-list li.single-nav-next a {
	padding-right: max(20px, 5.3333333333vw);
}

.single-nav-archive {
	margin-top: max(50px, 13.3333333333vw);
}

.single-nav-archive a {
	display: block;
}

.single-article {
	margin-bottom: max(75px, 75 / 375 * 100vw);
}

.single-title {
	font-size: max(24px, 6.4vw);
	margin-bottom: max(10px, 2.6666666667vw);
	padding-bottom: max(15px, 4vw);
}

.single-title::after {
	width: max(70px, 18.6666666667vw);
}

.single-info__date {
	font-size: max(14px, 3.7333333333vw);
}

.single-content .faq-list-box + .faq-list-box {
	margin-top: max(40px, 10.6666666667vw);
}

.single-content .faq-list-box .dt {
	margin-bottom: max(30px, 8vw);
	font-size: max(18px, 4.8vw);
	padding: max(20px, 5.3333333333vw) max(17px, 4.5333333333vw) max(20px, 5.3333333333vw) max(45px, 12vw);
}

.single-content .faq-list-box .dt::before {
	margin: auto;
	top: 0;
	bottom: 0;
}

.single-content .faq-list-box .dd {
	padding-left: max(45px, 12vw);
}

.single-content .faq-list-box .dd::before {
	top: max(5px, 1.3333333333vw);
}

.single-content .faq-list-box .dt::before,
.single-content .faq-list-box .dd::before {
	font-size: max(24px, 6.4vw);
	height: 1em;
	left: max(15px, 4vw);
}

}

@media screen and (max-width: 767px) {

.column-head { /* 767px以下 */
	min-height: inherit;
	padding: 12px 0;
	font-size: max(20px, 20 / 375 * 100vw);
}

.column-info { /* 767px以下 */
	gap: max(20px, 20 / 375 * 100vw);
	margin-bottom: max(20px, 20 / 375 * 100vw);
}

.column-info--sm { /* 767px以下 */
	gap: max(20px, 20 / 375 * 100vw);
	margin-bottom: max(18px, 18 / 375 * 100vw);
}

.column-info__date { /* 767px以下 */
	font-size: max(14px, 14 / 375 * 100vw);
}

.cat-list { /* 767px以下 */
	gap: max(5px, 5 / 375 * 100vw);
}

.cat-list li a { /* 767px以下 */
	font-size: max(12px, 12 / 375 * 100vw);
	padding: max(6px, 6 / 375 * 100vw) max(15px, 15 / 375 * 100vw);
}

.cat-list--spsm li a { /* 767px以下 */
	padding: max(2px, 2 / 375 * 100vw) max(10px, 10 / 375 * 100vw);
}

.single-content { /* 767px以下 */
	font-size: max(16px, 16 / 375 * 100vw);
}

.single-content > p { /* 767px以下 */
	margin: max(20px, 20 / 375 * 100vw) 0;
}

.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 { /* 767px以下 */
	margin-bottom: max(34px, 34 / 375 * 100vw);
}

.single-content h2 + p,
.single-content h3 + p,
.single-content h4 + p,
.single-content h5 + p,
.single-content h6 + p { /* 767px以下 */
	margin-top: max(20px, 20 / 375 * 100vw);
}

.single-content h2 { /* 767px以下 */
	margin-top: max(30px, 30 / 375 * 100vw);
	margin-bottom: max(20px, 20 / 375 * 100vw);
	font-size: max(24px, 24 / 375 * 100vw);
	line-height: 1.5;
}

.single-content h3 { /* 767px以下 */
	margin-top: max(50px, 50 / 375 * 100vw);
	margin-bottom: max(26px, 26 / 375 * 100vw);
	padding-bottom: max(16px, 16 / 375 * 100vw);
	font-size: max(24px, 24 / 375 * 100vw);
	border-bottom-width: max(2px, 2 / 375 * 100vw);
}

.single-content h4 { /* 767px以下 */
	margin-top: max(47px, 47 / 375 * 100vw);
	margin-bottom: max(25px, 25 / 375 * 100vw);
	padding-bottom: max(17px, 17 / 375 * 100vw);
	font-size: max(20px, 20 / 375 * 100vw);
}

.single-content img { /* 767px以下 */
	margin-bottom: max(20px, 20 / 375 * 100vw);
	border-radius: max(10px, 10 / 375 * 100vw);
}

.single-content .summary { /* 767px以下 */
	margin-top: max(20px, 20 / 375 * 100vw);
	margin-bottom: max(20px, 20 / 375 * 100vw);
	padding: max(18px, 18 / 375 * 100vw);
}

.single-content .summary__head { /* 767px以下 */
	margin-bottom: max(15px, 15 / 375 * 100vw);
	font-size: max(18px, 18 / 375 * 100vw);
}

.single-content .summary__list li { /* 767px以下 */
	font-size: max(16px, 16 / 375 * 100vw);
}

.single-content .editor-columns { /* 767px以下 */
	margin-top: max(38px, 38 / 375 * 100vw);
	margin-bottom: max(38px, 38 / 375 * 100vw);
	gap: max(10px, 10 / 375 * 100vw);
}

.single-content .table-wrap { /* 767px以下 */
	max-width: 100%;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.single-content table { /* 767px以下 */
	min-width: max(630px, 630 / 375 * 100vw);
	font-size: max(18px, 18 / 375 * 100vw);
}

.single-content table thead th,
.single-content table thead td { /* 767px以下 */
	padding: max(20px, 20 / 375 * 100vw);
}

.single-content table tbody th,
.single-content table tbody td { /* 767px以下 */
	padding: max(23px, 23 / 375 * 100vw);
}

.single-content #toc_container { /* 767px以下 */
	margin-top: max(20px, 20 / 375 * 100vw);
	margin-bottom: max(53px, 53 / 375 * 100vw);
	padding: max(14px, 14 / 375 * 100vw) max(20px, 20 / 375 * 100vw);
}

.single-content #toc_container .toc_title { /* 767px以下 */
	margin-bottom: max(12px, 12 / 375 * 100vw);
	font-size: max(18px, 18 / 375 * 100vw);
}

.single-content #toc_container .toc_list { /* 767px以下 */
	font-size: max(16px, 16 / 375 * 100vw);
}

.single-content #toc_container .toc_list ul { /* 767px以下 */
	font-size: max(14px, 14 / 375 * 100vw);
	padding-right: max(15px, 15 / 375 * 100vw);
}

.single-content .faq-list { /* 767px以下 */
	margin-top: max(60px, 60 / 375 * 100vw);
	margin-bottom: max(60px, 60 / 375 * 100vw);
}

.columm-card { /* 767px以下 */
	border-radius: max(10px, 10 / 375 * 100vw);
}

.columm-card__image { /* 767px以下 */
	aspect-ratio: 343/220;
}

.columm-card__title { /* 767px以下 */
	margin-bottom: max(20px, 20 / 375 * 100vw);
	font-size: max(18px, 18 / 375 * 100vw);
}

.columm-card__text { /* 767px以下 */
	font-size: max(16px, 16 / 375 * 100vw);
}

.column-list { /* 767px以下 */
	grid-template-columns: repeat(1, 1fr);
	gap: max(20px, 20 / 375 * 100vw);
}

.column-archive { /* 767px以下 */
	margin-top: max(15px, 15 / 375 * 100vw);
}

.column-archive .title-01 { /* 767px以下 */
	margin-bottom: max(15px, 15 / 375 * 100vw);
}

.column-archive__cat { /* 767px以下 */
	margin-top: max(20px, 20 / 375 * 100vw);
	margin-bottom: max(30px, 30 / 375 * 100vw);
}

.pagination { /* 767px以下 */
	gap: max(8px, 8 / 375 * 100vw);
	margin-top: max(80px, 80 / 375 * 100vw);
}

.pagination .page-numbers { /* 767px以下 */
	width: max(32px, 32 / 375 * 100vw);
	height: max(32px, 32 / 375 * 100vw);
	font-size: max(16px, 16 / 375 * 100vw);
}

.pagination .page-numbers.prev { /* 767px以下 */
	margin-right: max(8px, 8 / 375 * 100vw);
}

.pagination .page-numbers.next { /* 767px以下 */
	margin-left: max(8px, 8 / 375 * 100vw);
}

}

