@charset 'utf-8';

*,
*:before,
*:after {
	box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
}

ul,
li {
	list-style: none;
}

input:not([type='checkbox']):not([type='radio']),
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	border-radius: 0;
	font: inherit;
	font-size: inherit;
	vertical-align: middle;
	color: inherit;
	border: 1px solid #ccc;
	outline: none;
	margin: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
	opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #ccc;
	opacity: 1;
}

input::placeholder,
textarea::placeholder {
	color: #ccc;
	opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #ccc;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #ccc;
	opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #ccc;
}

input:-ms-placeholder,
textarea:-ms-placeholder {
	color: #ccc;
}

input::-ms-placeholder,
textarea::-ms-placeholder {
	color: #ccc;
}

textarea {
	resize: vertical;
	overflow: auto;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.cmn-inner {
	margin-left: auto;
	margin-right: auto;
}

.footer {
	background: url('../img/bg.jpg') repeat;
	background-position: center center;
}

.footer-inner {
	text-align: center;
}

.footer-offer {
	font-weight: 600;
}

.footer-offer a:hover {
	opacity: 0.85;
}

.footer-location {
	font-weight: 600;
}

.footer-copyright {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.header-title {
	font-weight: 700;
	letter-spacing: 0.2em;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s color, border-color 0.5s, background 0.5s;
	background: #fff;
}

.header-btn {
	position: absolute;
	top: 0;
	right: 0;
	background: #25ab38;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

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

.header-menu {
	display: none;
	background: #25ab38;
}

.header-menu-inner::-webkit-scrollbar {
	display: none;
}

.header-menu-lists li {
	opacity: 0;
}

.header-menu-lists li:nth-of-type(1) {
	-webkit-animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	-webkit-animation-delay: 0.05s;
	animation-delay: 0.05s;
}

.header-menu-lists li:nth-of-type(2) {
	-webkit-animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.header-menu-lists li:nth-of-type(3) {
	-webkit-animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	-webkit-animation-delay: 0.15s;
	animation-delay: 0.15s;
}

.header-menu-lists li a {
	display: inline-block;
	position: relative;
	color: #fff;
	font-weight: 500;
}

.header-menu-lists li a:after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	background: url('../img/icon-arrow.png') no-repeat;
	background-size: contain;
}

.header-menu-pdfs li {
	opacity: 0;
}

.header-menu-pdfs li:nth-of-type(1) {
	-webkit-animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.header-menu-pdfs li:nth-of-type(2) {
	-webkit-animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

.header-menu-pdfs li a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #fff;
	font-weight: 600;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.header-menu-pdfs li a:before {
	content: '';
	display: inline-block;
	background: url('../img/icon-pdf_green.png') no-repeat;
	background-size: contain;
}

.header-menu-copyright {
	opacity: 0;
	display: inline-block;
	color: #fff;
	font-weight: 600;
	line-height: 1;
	-webkit-animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	animation: fadeOutUp 0.6s both cubic-bezier(0.25, 1, 0.5, 1);
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.header.nav-active {
	background: #25ab38;
}

.header.nav-active .header-title {
	color: #fff;
	border-color: #fff;
	background: #25ab38;
}

.header.nav-active .header-btn .menu {
	display: none;
}

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

.header.nav-active .header-menu-lists li:nth-of-type(1) {
	-webkit-animation: fadeInUp 0.6s forwards;
	animation: fadeInUp 0.6s forwards;
	-webkit-animation-delay: 0.05s;
	animation-delay: 0.05s;
}

.header.nav-active .header-menu-lists li:nth-of-type(2) {
	-webkit-animation: fadeInUp 0.6s forwards;
	animation: fadeInUp 0.6s forwards;
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.header.nav-active .header-menu-lists li:nth-of-type(3) {
	-webkit-animation: fadeInUp 0.6s forwards;
	animation: fadeInUp 0.6s forwards;
	-webkit-animation-delay: 0.15s;
	animation-delay: 0.15s;
}

.header.nav-active .header-menu-lists li:nth-of-type(4) {
	-webkit-animation: fadeInUp 0.6s forwards;
	animation: fadeInUp 0.6s forwards;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.header.nav-active .header-menu-pdfs li:nth-of-type(1) {
	-webkit-animation: fadeInUp 0.6s forwards cubic-bezier(0.25, 1, 0.5, 1);
	animation: fadeInUp 0.6s forwards cubic-bezier(0.25, 1, 0.5, 1);
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.header.nav-active .header-menu-pdfs li:nth-of-type(2) {
	-webkit-animation: fadeInUp 0.6s forwards cubic-bezier(0.25, 1, 0.5, 1);
	animation: fadeInUp 0.6s forwards cubic-bezier(0.25, 1, 0.5, 1);
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

.header.nav-active .header-menu-copyright {
	-webkit-animation: fadeInUp 0.6s forwards cubic-bezier(0.25, 1, 0.5, 1);
	animation: fadeInUp 0.6s forwards cubic-bezier(0.25, 1, 0.5, 1);
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.main .modal {
	display: none;
	position: fixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #fff;
	z-index: 200;
	overflow: visible;
}

.main .modal-container::-webkit-scrollbar {
	display: none;
}

.main .modal-title {
	color: #000;
	font-weight: 600;
	text-align: center;
	position: relative;
}

.main .modal-title .caution {
	position: absolute;
	right: 0;
	font-weight: 400;
}

.main .modal-list-image img {
	width: 100%;
	height: auto;
}

.main .modal-close-btn_top {
	position: absolute;
	background: #25ab38;
	cursor: pointer;
}

.main .modal-close-btn_top:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #fff;
}

.main .modal-close-btn_bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	color: #fff;
	background: #25ab38;
	margin-left: auto;
	margin-right: auto;
}

.main .modal.sns .modal-reception {
	width: 100%;
	background: #f19500;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main .modal.sns .modal-schedule {
	color: #000;
}

.main .modal.sns .modal-schedule-detail {
	font-weight: 700;
	text-align: center;
}

.main .modal.sns .modal-schedule.col2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

/*
.main .modal.sns .modal-schedule.col2:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #000;
	height: 100%;
}
*/

.main .modal.sns .modal-schedule.col2 .modal-schedule-detail:first-of-type {
	text-align: left;
}

.main .modal.sns .modal-line {
	display: flex;
	justify-content: start;
	align-items: center;
}

.main .modal.sns .modal-line-id {
	font-weight: 700;
}

.main .modal-bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(34, 172, 56, 0.6);
	z-index: 150;
}

body {
	-webkit-text-size-adjust: 100%;
	opacity: 0;
	overflow: hidden;
	transition: 2s opacity ease;
}

body.loaded {
	opacity: 1;
	overflow: visible;
}

body.no-scroll {
	overflow: hidden;
}

body header,
body main,
body footer,
body .modal {
	display: block;
	overflow: hidden;
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', 'メイリオ',
		'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 400;
	color: #25ab38;
	letter-spacing: normal;
	line-height: 1;
}

body header *,
body main *,
body footer *,
body .modal * {
	box-sizing: border-box;
}

body header section,
body main section,
body footer section,
body .modal section {
	position: relative;
}

body header img,
body main img,
body footer img,
body .modal img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

body header a,
body main a,
body footer a,
body .modal a {
	color: inherit;
	text-decoration: none;
	outline: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body header p,
body main p,
body footer p,
body .modal p {
	line-height: inherit;
}

body header h1,
body main h1,
body footer h1,
body .modal h1,
body header h2,
body main h2,
body footer h2,
body .modal h2,
body header h3,
body main h3,
body footer h3,
body .modal h3,
body header h4,
body main h4,
body footer h4,
body .modal h4,
body header h5,
body main h5,
body footer h5,
body .modal h5,
body header h6,
body main h6,
body footer h6,
body .modal h6 {
	font-weight: inherit;
	font-size: inherit;
	font-family: inherit;
}

body header input,
body main input,
body footer input,
body .modal input,
body header textarea,
body main textarea,
body footer textarea,
body .modal textarea,
body header button,
body main button,
body footer button,
body .modal button,
body header select,
body main select,
body footer select,
body .modal select {
	font-family: inherit;
	font-size: inherit;
}

/*==============================================================================
  共通クラス
==============================================================================*/

.nowrap {
	display: inline-block;
	white-space: nowrap;
}

.headline-adujust {
	margin-right: -0.45em;
}

/*==============================================================================
  index
==============================================================================*/

.main .kv-title img {
	width: 100%;
	height: auto;
}

.main .intro-title {
	width: 100%;
	color: #fff;
	background: #25ab38;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	line-height: 1.6;
	padding: 0.5em 20px;
}

.main .intro-title span {
	display: inline-block;
	font-size: 85%;
}

.main .intro-copy {
	text-align: center;
}

.main .intro-pdf {
	display: flex;
	justify-content: center;
}

.main .intro-pdf a {
	display: inline-block;
	text-align: center;
	font-weight: 700;
	background: #f19500;
}

.main .intro-pdf a span {
	display: block;
	color: #fff;
}

.main .intro-pdf a span:last-of-type {
	color: #f19500;
	background: #fff;
}

.main .intro-pdf a span:last-of-type:after {
	content: '';
	display: inline-block;
	background: url('../img/icon-pdf.png') no-repeat;
	background-size: contain;
	vertical-align: bottom;
	position: relative;
}

.main .consultation-title,
.main .snsConsultation-title,
.main .message-title {
	text-align: center;
	font-weight: 700;
}

.main .consultation-lists,
.main .snsConsultation-lists {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.main .consultation-lists li a,
.main .snsConsultation-lists li a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #25ab38;
	color: #fff;
	position: relative;
	transition: 0.3s background-color ease;
}

.main .consultation-lists li a:after,
.main .snsConsultation-lists li a:after {
	content: '';
	display: inline-block;
	background: url('../img/icon-arrow.png') no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: 0.3s background-image ease;
}

.main .message {
	background: #25ab38;
}

.main .message-title {
	color: #fff;
}

.main .message-lists {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.main .message-card {
	background: #fff;
}

.main .message-card-title {
	text-align: center;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.main .message-card-copy {
	font-weight: 600;
	color: #4c4c4c;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-bottom: 2rem;
}

.main .message-card-contact {
	color: #f19500;
	text-align: center;
}

.main .message-card-contact-name {
	font-weight: 600;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.main .message-card-contact-tel {
	line-height: 1.4;
}

.fixed-btn {
	position: fixed;
	right: 0;
	bottom: 30%;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.fixed-btn a {
	display: inline-block;
	background: #f19500;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	font-size: 24px;
	padding: 22px 18px;
	border-radius: 10px 0 0 10px;
	letter-spacing: 0.1em;
}

.fixed-btn a span img {
	display: inline-block;
	width: 1em;
}

.main .q-and-a {
	padding-top: 95px;
	padding-bottom: 80px;
}

.main .q-and-a-title {
	font-size: 30px;
	letter-spacing: 0.4em;
	line-height: 1.75;
	text-align: center;
	font-weight: 700;
}

.main .q-and-a .lead {
	line-height: 2.1;
	margin-top: 30px;
	text-align: center;
	font-weight: 700;
}

.main .ac-wrap {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	row-gap: 35px;
}

.ac-wrap summary {
	/* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
	display: block;
}

.ac-wrap summary::-webkit-details-marker {
	/* Safariで表示されるデフォルトの三角形アイコンを消します */
	display: none;
}

.js-details {
	border-radius: 5px;
	background: #fefcf8;
	overflow: hidden;
	position: relative;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
	border-left: 10px solid #25ab38;
}

.summary_inner {
	cursor: pointer;
	display: flex;
	justify-content: start;
	align-items: start;
	column-gap: 8px;
	padding: 25px 3.5em 25px 20px;
	font-weight: bold;
	font-size: 22px;
	line-height: 1.4;
	color: #4c4c4c;
	letter-spacing: 0.05em;
}

.js-summary {
	position: relative;
}

.js-summary::after,
.js-summary::before {
	content: '';
	display: block;
	width: 1.3em;
	height: 3px;
	position: absolute;
	top: 50%;
	right: 30px;
	transition: all 0.3s;
	background: #4c4c4c;
	border-radius: 50em;
}

.js-summary::before {
	transform: rotate(90deg);
}

.js-details.is-opened .js-summary::before {
	transform: rotate(180deg);
	transform-origin: center;
	opacity: 0;
}

.content_inner {
	display: flex;
	justify-content: start;
	align-items: start;
	column-gap: 10px;
	padding: 0 25px 25px 20px;
	line-height: 1.6;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.0825em;
}

.content_inner .answer {
	font-size: 22px;
}

.modal-open.more-message {
	background: #f1a8a7;
	background-image: url(../img/btn_arrow.svg);
	background-repeat: no-repeat;
	background-position: bottom 10px right 10px;
	color: #fff;
	display: block;
	text-align: center;
	border-radius: 10px;
	font-size: min(1.325vw, 18px);
	font-weight: 600;
	line-height: 2.2;
	padding: 1.7em 10px;
	margin-top: 20px;
	transition: all 0.3s;
}

.modal-open.more-message:hover {
	background-color: #d89291;
}

.modal-message-wrap {
	border: 1px solid #000;
}

.modal-message-wrap dl {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid #000;
}

.modal-message-wrap dl:last-of-type {
	border-bottom: none;
}

.modal-message-wrap dt {
	display: flex;
	align-items: center;
	width: 24%;
	background-color: #25ab38;
	color: #fff;
	padding: 10px 10px 10px 20px;
}

.modal-message-wrap .dt-inner {
	font-size: 18px;
	line-height: 1.9;
	font-weight: 600;
}

.modal-message-wrap dd {
	border-left: 1px solid #000;
	flex: 1;
	color: #000;
	padding: 15px 8px 15px 18px;
	line-height: 1.8;
}

.modal-message-wrap .contact {
	display: block;
	margin-top: 12px;
	font-weight: 600;
	color: #f19500;
}

@media print, screen and (min-width: 768px) {
	.cmn-inner {
		max-width: 1100px;
		padding: 0 60px;
		box-sizing: content-box;
	}

	.footer {
		background-size: 300px 300px;
	}

	.footer-inner {
		padding: 60px 0 45px;
		border-bottom: 6px solid #25ab38;
	}

	.footer-offer {
		font-size: 37px;
		line-height: 1.75;
	}

	.footer-location {
		font-size: 24px;
		line-height: 1.75;
		margin-top: 15px;
	}

	.footer-copyright {
		font-size: 11px;
		height: 55px;
	}

	.header {
		box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
	}

	.header-title {
		font-size: 30px;
		border-bottom: 6px solid #25ab38;
		height: 90px;
	}

	.header-btn {
		width: 87px;
		height: 84px;
	}

	.header-btn .menu {
		width: 43px;
	}

	.header-btn .close {
		width: 49px;
	}

	.header-menu {
		height: calc(100vh - 90px);
		min-height: 810px;
	}

	.header-menu-inner {
		max-width: 1000px;
		padding: 120px 0 40px;
		margin-left: auto;
		margin-right: auto;
		max-height: calc(100vh - 90px);
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.header-menu-lists li {
		width: 360px;
	}

	.header-menu-lists li:nth-of-type(n + 2) {
		margin-top: 40px;
	}

	.header-menu-lists li a {
		font-size: 30px;
		line-height: 1.35;
		width: 100%;
	}

	.header-menu-lists li a:after {
		width: 30px;
		height: 30px;
	}

	.header-menu-pdfs {
		margin-top: 65px;
	}

	.header-menu-pdfs li {
		width: 460px;
		height: 110px;
	}

	.header-menu-pdfs li:nth-of-type(n + 2) {
		margin-top: 35px;
	}

	.header-menu-pdfs li a {
		border-radius: 9px;
		font-size: 23px;
		letter-spacing: 0.02em;
		line-height: 1.36;
		padding: 0 28px 0 32px;
	}

	.header-menu-pdfs li a:before {
		width: 41px;
		height: 51px;
		margin-right: 25px;
	}

	.header-menu-copyright {
		margin-top: 110px;
		font-size: 11px;
		letter-spacing: 0.2em;
	}

	.main .modal {
		border-radius: 9px;
		width: 1100px;
		padding: 60px 49px 75px;
	}

	.main .modal-container {
		max-height: 60vh;
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.main .modal-title {
		font-size: 31px;
		line-height: 1.32;
		letter-spacing: 0.1em;
	}

	.main .modal-title .caution {
		font-size: 19px;
		line-height: 1.4;
		letter-spacing: 0;
		bottom: -5px;
	}

	.main .modal-title .caution.small {
		font-size: 16px;
	}

	.main .modal-list-image {
		margin-top: 30px;
	}

	.main .modal-list-image + .modal-title {
		margin-top: 70px;
	}

	.main .modal-list-image.forSP {
		display: none;
	}

	.main .modal-close-btn_top {
		top: -18px;
		right: -24px;
		border-radius: 35px;
		width: 70px;
		height: 70px;
		border: 5px solid #fff;
	}

	.main .modal-close-btn_top:before {
		width: 28px;
		height: 5px;
	}

	.main .modal-close-btn_bottom {
		width: 320px;
		height: 50px;
		margin-top: 60px;
		border-radius: 9px;
		font-size: 23px;
		letter-spacing: 0.1em;
	}

	.main .modal.sns {
		width: 700px;
		padding: 45px 45px 70px;
	}

	.main .modal.sns .modal-reception {
		margin-top: 35px;
		font-size: 21px;
		letter-spacing: 0.1em;
		height: 48px;
		border-radius: 9px;
	}

	.main .modal.sns .modal-schedule {
		margin-top: 20px;
	}

	.main .modal.sns .modal-schedule-detail {
		font-size: 23px;
		line-height: 1.4;
	}

	.main .modal.sns .modal-schedule.col2:after {
		width: 2px;
	}

	.main .modal.sns .modal-line {
		margin-top: 30px;
	}

	.main .modal.sns .modal-line-qr {
		width: 160px;
		height: 160px;
	}

	.main .modal.sns .modal-line-id {
		margin-left: 30px;
		font-size: 25px;
		line-height: 1.4;
	}

	.forSP {
		display: none !important;
	}

	.main {
		margin-top: 90px;
	}

	.main .intro {
		padding-bottom: 75px;
		box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
	}

	.main .intro-title {
		font-size: 31px;
	}

	.main .intro-copy {
		font-size: 26px;
		font-weight: 700;
		line-height: 2.1;
		margin-top: 45px;
	}

	.main .intro-pdf {
		margin-top: 35px;
	}

	.main .intro-pdf a {
		padding: 25px;
		border-radius: 30px;
		width: 600px;
	}

	.main .intro-pdf a span:first-of-type {
		font-size: 31px;
		line-height: 1.3;
		letter-spacing: 0.1em;
	}

	.main .intro-pdf a span:last-of-type {
		font-size: 24px;
		line-height: 1.3;
		letter-spacing: 0.1em;
		width: 368px;
		margin: 10px auto 0;
		padding: 7px 0;
		border-radius: 30px;
	}

	.main .intro-pdf a span:last-of-type:after {
		width: 28px;
		height: 35px;
		left: 25px;
	}

	.main .consultation,
	.main .snsConsultation {
		padding-top: 95px;
	}

	.main .consultation-title,
	.main .snsConsultation-title,
	.main .message-title {
		font-size: 30px;
		letter-spacing: 0.4em;
		line-height: 1.75;
	}

	.main .consultation-lists,
	.main .snsConsultation-lists {
		max-width: 1000px;
		margin: 35px auto 0;
	}

	.main .consultation-lists li,
	.main .snsConsultation-lists li {
		width: 320px;
		height: 90px;
	}

	.main .consultation-lists li:not(:nth-of-type(3n + 1)),
	.main .snsConsultation-lists li:not(:nth-of-type(3n + 1)) {
		margin-left: 20px;
	}

	.main .consultation-lists li:nth-of-type(n + 4),
	.main .snsConsultation-lists li:nth-of-type(n + 4) {
		margin-top: 47px;
	}

	.main .consultation-lists li a,
	.main .snsConsultation-lists li a {
		font-size: 20px;
		letter-spacing: 0.1em;
		padding-left: 16px;
		border-radius: 10px;
		line-height: 1.27;
		box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.6);
		flex-direction: column;
		align-items: start;
		justify-content: center;
		row-gap: 5px;
	}

	.main .consultation-lists li a span,
	.main .snsConsultation-lists li a span {
		font-size: 12px;
		letter-spacing: 0.01em;
	}

	.main .consultation-lists li a:after,
	.main .snsConsultation-lists li a:after {
		width: 30px;
		height: 30px;
		right: 20px;
	}

	.main .consultation-lists li a:hover,
	.main .snsConsultation-lists li a:hover {
		background: #006837;
	}

	.main .consultation-lists li a:hover:after,
	.main .snsConsultation-lists li a:hover:after {
		background: url('../img/icon-arrow_hover.png') no-repeat;
		background-size: contain;
	}

	.main .snsConsultation {
		padding-top: 75px;
		padding-bottom: 110px;
	}

	.main .snsConsultation-lists li a {
		letter-spacing: -0.05em;
	}

	.main .message {
		padding: 70px 0;
	}

	.main .message-lists {
		margin-top: 65px;
	}

	.main .message-card {
		width: 346px;
		border-radius: 15px;
		padding: 35px 28px;
		box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
	}

	.main .message-card:not(:nth-of-type(3n + 1)) {
		margin-left: 31px;
	}

	.main .message-card:nth-of-type(n + 4) {
		margin-top: 36px;
	}

	.main .message-card-title {
		font-size: 20px;
		line-height: 1.4;
		padding-bottom: 22px;
		border-bottom: 3px solid #25ab38;
		min-height: 81px;
	}

	.main .message-card-copy {
		font-size: 16px;
		line-height: 1.75;
		margin-top: 20px;
	}

	.main .message-card-contact {
		margin-top: 15px;
	}

	.main .message-card-contact-name {
		font-size: 16px;
		line-height: 1.375;
	}

	.main .message-card-contact-tel {
		font-size: 21px;
		font-weight: 700;
		letter-spacing: 0.05em;
		margin-top: 10px;
	}

	.main .message-card-contact-tel:nth-of-type(n + 2) {
		margin-top: 0;
	}

	.main .message-card-contact-tel .lb:nth-of-type(n + 2) {
		margin-top: 5px;
	}
}

@media screen and (-ms-high-contrast: none) and (min-width: 768px) {
	.main .message-card-title {
		display: table-cell;
		vertical-align: middle;
		width: 290px;
	}
}

@media only screen and (max-width: 767px) {
	.cmn-inner {
		padding: 0 2.67vw;
	}

	.main .modal-list-image.forPC {
		display: none;
	}

	.forPC {
		display: none !important;
	}

	/*	header*/
	.header-title {
		border-bottom: 3px solid #25ab38;
		height: 46px;
		justify-content: left;
		padding-left: 1em;
		letter-spacing: 0;
	}

	.header-btn {
		width: 46px;
		height: 43px;
	}

	.header-btn .menu {
		width: 23px;
	}

	.header-btn .close {
		width: 25px;
	}

	.header-menu {
		height: 100vh;
	}

	.header-menu-inner {
		padding: 40px;
	}

	.header-menu-lists li {
		font-size: 19px;
		width: 220px;
	}

	.header-menu-lists li a {
		line-height: 2.7;
		width: 100%;
	}

	.header-menu-lists li a:after {
		width: 19px;
		height: 19px;
	}

	.header-menu-lists li a:after {
		content: '';
		display: inline-block;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 0;
		background: url(../img/icon-arrow.png) no-repeat;
		background-size: contain;
	}

	.header-menu-pdfs {
		margin-top: 40px;
	}

	.header-menu-pdfs li a {
		border-radius: 9px;
		font-size: 14px;
		letter-spacing: 0.02em;
		line-height: 1.36;
		padding: 15px 15px 15px 20px;
	}

	.header-menu-pdfs li a:before {
		width: 27px;
		height: 32px;
		margin-right: 20px;
	}

	.header-menu-pdfs li:nth-of-type(n + 2) {
		margin-top: 35px;
	}

	small.header-menu-copyright {
		font-size: 11px;
		letter-spacing: 2px;
		position: absolute;
		bottom: 22%;
	}

	/*	header*/

	/*	main*/
	.main {
		margin-top: 46px;
	}

	.main .intro {
		padding-bottom: 50px;
		box-shadow: 0 0 30px 0 rgb(0 0 0 / 25%);
	}

	.main .intro-title {
		font-size: 18px;
		line-height: 25px;
	}

	.main .intro-title span {
		margin-bottom: 10px;
	}

	.main .intro-copy {
		font-size: 20px;
		font-weight: 400;
		line-height: 30px;
		margin-top: 35px;
	}

	.main .intro-pdf {
		margin-top: 35px;
	}

	.main .intro-pdf a {
		padding: 15px;
		border-radius: 20px;
		width: 77vw;
	}

	.main .intro-pdf a span:first-of-type {
		font-size: 15px;
		line-height: 1.3;
		letter-spacing: 0.1em;
	}

	.main .intro-pdf a span:last-of-type {
		font-size: 12px;
		line-height: 1.3;
		letter-spacing: 0.1em;
		margin: 5px auto 0;
		padding: 3px 0;
		border-radius: 50em;
		width: 70%;
	}

	.main .intro-pdf a span:last-of-type:after {
		width: 14px;
		height: 18px;
		left: 10px;
	}

	.main .consultation,
	.main .snsConsultation {
		padding-top: 50px;
	}

	.main .consultation-title,
	.main .snsConsultation-title,
	.main .message-title {
		font-size: 23px;
		line-height: 1.75;
		font-weight: normal;
	}

	.main .consultation-lists,
	.main .snsConsultation-lists {
		margin: 35px auto 0;
	}

	.main .consultation-lists li,
	.main .snsConsultation-lists li {
		width: 320px;
		height: 90px;
		margin: 0 auto 20px;
	}

	.main .consultation-lists li:last-child,
	.main .snsConsultation-lists li:last-child {
		margin-bottom: 0;
	}

	.main .consultation-lists li a {
		font-size: 20px;
		letter-spacing: 0.1em;
		padding-left: 16px;
		border-radius: 10px;
		line-height: 1.27;
		box-shadow: 0 0 5px 0 rgb(0 0 0 / 60%);
		flex-direction: column;
		align-items: start;
		justify-content: center;
		row-gap: 5px;
	}

	.main .snsConsultation-lists li a {
		font-size: 20px;
		padding-left: 16px;
		letter-spacing: -1.3px;
		border-radius: 10px;
		line-height: 1.27;
		box-shadow: 0 0 5px 0 rgb(0 0 0 / 60%);
		flex-direction: column;
		align-items: start;
		justify-content: center;
		row-gap: 5px;
	}

	.main .consultation-lists li a span,
	.main .snsConsultation-lists li a span {
		font-size: 12px;
		letter-spacing: 0.01em;
	}

	li a:after,
	.main .snsConsultation-lists li a:after {
		width: 30px;
		height: 30px;
		right: 24px;
	}

	.main .snsConsultation {
		padding-top: 40px;
		padding-bottom: 35px;
	}

	.main .message {
		padding: 50px 0 5px;
	}

	.main .message-lists {
		margin-top: 30px;
		display: block;
	}

	.main .message-card {
		width: 97%;
		border-radius: 15px;
		padding: 35px 28px;
		box-shadow: 0 0 5px 0 rgb(0 0 0 / 40%);
		margin: 0 auto 20px;
	}

	.main .message-card-title {
		font-size: 20px;
		line-height: 1.4;
		padding-bottom: 22px;
		border-bottom: 3px solid #25ab38;
		min-height: 81px;
	}

	.main .message-card-copy {
		font-size: 16px;
		line-height: 1.75;
		margin-top: 20px;
	}

	.main .message-card-contact {
		margin-top: 15px;
	}

	.main .message-card-contact-name {
		font-size: 16px;
		line-height: 1.375;
	}

	.main .message-card-contact-tel {
		font-size: 21px;
		font-weight: 700;
		letter-spacing: 0.05em;
		margin-top: 10px;
	}

	/*	main*/

	/*	footer*/
	.footer-inner {
		padding: 30px 0;
		border-bottom: 6px solid #25ab38;
	}

	.footer-offer {
		font-size: 20px;
		line-height: 1.75;
	}

	.footer-location {
		font-size: 14px;
		line-height: 1.75;
		margin-top: 15px;
	}

	.footer-copyright {
		font-size: 11px;
		height: 55px;
	}

	/*	footer*/

	/*	modal*/

	.main .modal-title {
		font-size: 20px;
		line-height: 1.32;
		letter-spacing: 0.1em;
	}

	.main .modal-close-btn_bottom {
		width: 8.6em;
		margin-top: 25px;
		border-radius: 9px;
		font-size: 14px;
		letter-spacing: 0.1em;
		padding: 0.6em;
	}

	.main .modal.sns .modal-reception {
		margin-top: 10px;
		margin-bottom: 20px;
		font-size: 21px;
		letter-spacing: 0.1em;
		height: 48px;
		border-radius: 9px;
	}

	.main .modal-close-btn_top {
		top: -18px;
		right: -24px;
		border-radius: 35px;
		width: 55px;
		height: 55px;
		border: 5px solid #fff;
	}

	.main .modal-close-btn_top:before {
		width: 20px;
		height: 5px;
	}

	.main .modal-list-image + .modal-title {
		margin-top: 70px;
	}

	.main .modal-title .caution {
		position: static;
		display: block;
		font-size: 14px;
		line-height: 1.4;
		letter-spacing: 0;
	}

	.main .modal {
		width: 85%;
		padding: 30px 15px 40px;
		border-radius: 9px;
	}

	.main .modal.sns {
		width: 85%;
		padding: 30px 15px 40px;
		border-radius: 9px;
	}

	.main .modal.sns .modal-schedule-detail {
		line-height: 2;
		margin-bottom: 1em;
	}

	.main .modal.sns .modal-schedule-detail.forSP {
		line-height: 1.4;
		text-align: left;
	}

	.main .modal.sns hr {
		border-top: solid 2px #000;
		margin: 0 2.7rem 1rem;
	}

	.main .modal-container {
		max-height: 60vh;
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.main .modal .line-id-link {
		font-size: 22px;
		font-weight: bold;
		padding: 16px 16px 16px 40px;
		letter-spacing: -1.3px;
		border-radius: 10px;
		line-height: 1.27;
		box-shadow: 0 0 5px 0 rgb(0 0 0 / 60%);
		display: flex;
		align-items: center;
		text-align: center;
		width: 100%;
		height: 100%;
		margin-bottom: 15px;
		background: #25ab38;
		color: #fff;
		position: relative;
		transition: 0.3s background-color ease;
	}

	.main .modal .line-id-link:after {
		content: '';
		display: inline-block;
		background: url(../img/icon-arrow.png) no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		transition: 0.3s background-image ease;
		width: 30px;
		height: 30px;
		right: 24px;
	}

	.main .modal .mv_line img {
		margin-bottom: 15px;
	}
	/*	modal*/

	.fixed-btn {
		width: 100%;
		bottom: 0;
		writing-mode: unset;
	}

	.fixed-btn a {
		display: block;
		border-radius: 0;
		padding: 10px;
		text-align: center;
	}

	.footer {
		padding-bottom: 47px;
	}

	.main .q-and-a {
		padding-top: 50px;
	}

	.main .q-and-a-title {
		font-size: 23px;
		line-height: 1.75;
		font-weight: normal;
		letter-spacing: normal;
	}

	.main .q-and-a .lead {
		font-size: 14px;
		font-weight: 500;
	}

	.summary_inner {
		font-size: 16px;
	}

	.content_inner {
		font-size: 14px;
		font-weight: 500;
		letter-spacing: normal;
	}

	.content_inner .answer {
		font-size: 16px;
	}

	.modal-open.more-message {
		font-size: 18px;
	}

	.modal-message-wrap dl {
		flex-direction: column;
	}

	.modal-message-wrap dl > dt,
	.modal-message-wrap dl > dt {
		width: 100%;
	}

	.modal-message-wrap dt {
		padding: 10px 10px 10px 10px;
	}

	.modal-message-wrap .dt-inner > br {
		display: none;
	}

	.modal-message-wrap dd {
		border-left: none;
		padding: 15px 10px 15px 10px;
	}
}

@media only screen and (max-width: 368px) {
	.forSP_ex {
		display: none !important;
	}

	.main .intro-copy {
		font-size: 17px;
	}

	.main .intro-pdf a span:first-of-type {
		font-size: 14px;
	}

	.main .consultation-lists li a,
	.main .snsConsultation-lists li a {
		font-size: 20px;
	}

	.main .modal.sns .line-id-link {
		font-size: 20px;
		padding: 16px;
	}

	ul.message-card-contact-tel span {
		display: block;
	}

	.main .message-card {
		padding: 25px 15px;
	}
}

@media print, screen and (min-width: 768px) and (max-width: 1366px) {
	.cmn-inner {
		max-width: 80.53vw;
		padding: 0vw 4.39vw;
	}

	.footer-inner {
		padding: 4.39vw 0vw 3.29vw;
		border-width: 0.44vw;
	}

	.footer-offer {
		font-size: 2.71vw;
	}

	.footer-location {
		font-size: 1.76vw;
		margin-top: 1.1vw;
	}

	.footer-copyright {
		font-size: 0.81vw;
		height: 4.03vw;
	}

	.header-title {
		font-size: 2.2vw;
		border-width: 0.44vw;
		height: 6.59vw;
	}

	.header-btn .menu {
		width: 3.15vw;
	}

	.header-btn .close {
		width: 3.59vw;
	}

	.header-btn {
		width: 6.37vw;
		height: 6.15vw;
	}

	.header-menu-inner {
		max-width: 73.21vw;
		padding: 8.78vw 0vw 2.93vw;
		max-height: calc(100vh - 6.59vw);
	}

	.header-menu-lists li:nth-of-type(n + 2) {
		margin-top: 2.93vw;
	}

	.header-menu-lists li a:after {
		width: 2.2vw;
		height: 2.2vw;
	}

	.header-menu-lists li a {
		font-size: 2.2vw;
	}

	.header-menu-lists li {
		width: 26.35vw;
	}

	.header-menu-pdfs li:nth-of-type(n + 2) {
		margin-top: 2.56vw;
	}

	.header-menu-pdfs li a:before {
		width: 3vw;
		height: 3.73vw;
		margin-right: 1.83vw;
	}

	.header-menu-pdfs li a {
		border-radius: 0.66vw;
		font-size: 1.68vw;
		padding: 0vw 2.05vw 0vw 2.34vw;
	}

	.header-menu-pdfs li {
		width: 33.67vw;
		height: 8.05vw;
	}

	.header-menu-pdfs {
		margin-top: 4.76vw;
	}

	.header-menu-copyright {
		margin-top: 8.05vw;
		font-size: 0.81vw;
	}

	.header-menu {
		height: calc(100vh - 6.59vw);
		min-height: 59.3vw;
	}

	.header {
		box-shadow: 0vw 0vw 2.2vw 0vw rgba(0, 0, 0, 0.3);
	}

	.main .modal-title .caution {
		font-size: 1.39vw;
		bottom: -0.37vw;
	}

	.main .modal-title {
		font-size: 2.27vw;
	}

	.main .modal-list-image + .modal-title {
		margin-top: 5.12vw;
	}

	.main .modal-list-image {
		margin-top: 2.2vw;
	}

	.main .modal-close-btn_top:before {
		width: 2.05vw;
		height: 0.37vw;
	}

	.main .modal-close-btn_top {
		top: -1.32vw;
		right: -1.76vw;
		border-radius: 2.56vw;
		width: 5.12vw;
		height: 5.12vw;
		border-width: 0.37vw;
	}

	.main .modal-close-btn_bottom {
		width: 23.43vw;
		height: 3.66vw;
		margin-top: 4.39vw;
		border-radius: 0.66vw;
		font-size: 1.68vw;
	}

	.main .modal.sns .modal-reception {
		margin-top: 2.56vw;
		font-size: 1.54vw;
		height: 3.51vw;
		border-radius: 0.66vw;
	}

	.main .modal.sns .modal-schedule-detail {
		font-size: 1.68vw;
	}

	.main .modal.sns .modal-schedule.col2:after {
		width: 0.15vw;
	}

	.main .modal.sns .modal-schedule {
		margin-top: 1.46vw;
	}

	.main .modal.sns .modal-line-qr {
		width: 11.71vw;
		height: 11.71vw;
	}

	.main .modal.sns .modal-line-id {
		margin-left: 2.2vw;
		font-size: 1.83vw;
	}

	.main .modal.sns .modal-line {
		margin-top: 2.2vw;
	}

	.main .modal.sns {
		width: 51.24vw;
		padding: 3.29vw 3.29vw 5.12vw;
	}

	.main .modal {
		border-radius: 0.66vw;
		width: 80.53vw;
		padding: 4.39vw 3.59vw 5.49vw;
	}

	.main .intro-title {
		font-size: 2.27vw;
	}

	.main .intro-copy {
		font-size: 1.9vw;
		font-weight: bold;
		margin-top: 3.29vw;
	}

	.main .intro-pdf a span:first-of-type {
		font-size: 2.27vw;
	}

	.main .intro-pdf a span:last-of-type:after {
		width: 2.05vw;
		height: 2.56vw;
		left: 1.83vw;
	}

	.main .intro-pdf a span:last-of-type {
		font-size: 1.76vw;
		width: 26.94vw;
		margin: 0.73vw auto 0vw;
		padding: 0.51vw 0vw;
		border-radius: 2.2vw;
	}

	.main .intro-pdf a {
		padding: 1.83vw;
		border-radius: 2.2vw;
		width: 43.92vw;
	}

	.main .intro-pdf {
		margin-top: 2.56vw;
	}

	.main .intro {
		padding-bottom: 5.49vw;
		box-shadow: 0vw 0vw 2.2vw 0vw rgba(0, 0, 0, 0.25);
	}

	.main .consultation-title,
	.main .snsConsultation-title,
	.main .message-title {
		font-size: 2.2vw;
	}

	.main .consultation-lists li:not(:nth-of-type(3n + 1)),
	.main .snsConsultation-lists li:not(:nth-of-type(3n + 1)) {
		margin-left: 1.46vw;
	}

	.main .consultation-lists li:nth-of-type(n + 4),
	.main .snsConsultation-lists li:nth-of-type(n + 4) {
		margin-top: 3.44vw;
	}

	.main .consultation-lists li a:after,
	.main .snsConsultation-lists li a:after {
		width: 2.2vw;
		height: 2.2vw;
		right: 1.76vw;
	}

	.main .consultation-lists li a,
	.main .snsConsultation-lists li a {
		font-size: 1.68vw;
		padding-left: 1.17vw;
		border-radius: 0.73vw;
		box-shadow: 0vw 0vw 0.37vw 0vw rgba(0, 0, 0, 0.6);
	}

	.main .consultation-lists li a span,
	.main .snsConsultation-lists li a span {
		padding-right: 3.5em;
	}

	.main .consultation-lists li,
	.main .snsConsultation-lists li {
		width: 23.43vw;
		/* height: 5.86vw; */
	}

	.main .consultation-lists,
	.main .snsConsultation-lists {
		max-width: 73.21vw;
		margin: 2.56vw auto 0vw;
	}

	.main .consultation,
	.main .snsConsultation {
		padding-top: 6.95vw;
	}

	.main .snsConsultation {
		padding-top: 5.49vw;
		padding-bottom: 8.05vw;
	}

	.main .message-lists {
		margin-top: 4.76vw;
	}

	.main .message-card:not(:nth-of-type(3n + 1)) {
		margin-left: 2.27vw;
	}

	.main .message-card:nth-of-type(n + 4) {
		margin-top: 2.64vw;
	}

	.main .message-card-title {
		font-size: 1.46vw;
		padding-bottom: 1.61vw;
		border-width: 0.22vw;
		min-height: 5.93vw;
	}

	.main .message-card-copy {
		font-size: 1.17vw;
		margin-top: 1.46vw;
	}

	.main .message-card-contact-name {
		font-size: 1.17vw;
	}

	.main .message-card-contact-tel .lb:nth-of-type(n + 2) {
		margin-top: 0.37vw;
	}

	.main .message-card-contact-tel {
		font-size: 1.54vw;
		margin-top: 0.73vw;
	}

	.main .message-card-contact {
		margin-top: 1.1vw;
	}

	.main .message-card {
		width: 25.33vw;
		border-radius: 1.1vw;
		padding: 2.56vw 2.05vw;
		box-shadow: 0vw 0vw 0.37vw 0vw rgba(0, 0, 0, 0.4);
	}

	.main .message {
		padding: 5.12vw 0vw;
	}

	.main {
		margin-top: 6.59vw;
	}
}

@media screen and (-ms-high-contrast: none) and (min-width: 768px) and (max-width: 1366px) {
	.main .message-card-title {
		width: 21.23vw;
	}
}

/*# sourceMappingURL=common.css.map */
