.u-desktop {
	display: none;
}

fieldset,
legend,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	margin: 0;
	outline: none;
	padding: 0;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
	border: 1px solid #ccc;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 4px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: 1px solid #ccc;
	border-radius: 0;
	font-size: 16px;
	margin-left: 0;
	margin-right: 0;
	outline: none;
	padding: 4px;
}

textarea {
	height: 100px;
	overflow: auto;
	width: 100%;
}

select {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
	background-position: right 3px center;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	padding-right: 30px;
}

.select {
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.select select {
	background: none;
	border: 1px solid #ccc;
	cursor: pointer;
	padding-right: 24px;
	text-overflow: "";
	width: 100%;
}

.select::before {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666;
	content: "";
	height: 0;
	padding: 0;
	pointer-events: none;
	position: absolute;
	right: 8px;
	top: 13px;
	width: 0;
}

/* radio & checkbox */

input[type=radio],
input[type=checkbox] {
	display: none;
}

input[type=radio] + span,
input[type=checkbox] + span {
	color: #555;
	cursor: pointer;
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1;
	margin-left: 8px;
	padding: 10px 20px;
	position: relative;
	text-align: center;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
	background: #fff;
	border: 1px solid #ccc;
	content: "";
	height: 16px;
	left: -8px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	width: 16px;
}

/* fieldset */

fieldset {
	border: 1px solid #ccc;
	padding: 8px 16px;
}

legend {
	padding: 0 8px;
}

/* button */

input[type=submit],
input[type=reset],
input[type=button],
button {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	background: #efefef;
	border: 1px solid #999;
	border-radius: 0;
	color: #000;
	cursor: pointer;
	display: inline-block;
	font-size: 20px;
	margin: 0;
	padding: 10px 30px;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */

/* Firefox */

/* IE */

select::-ms-expand {
	display: none;
}

/* webkit */

/* iOS */

input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
	display: none;
}

::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
	-moz-appearance: none;
	-webkit-appearance: textfield;
	-webkit-box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border: 0;
	border-radius: 0;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 0;
}

/* 挙動
---------------------------------------------------------------------------- */

/* hover */

input:hover,
textarea:hover,
select:hover {
	border-color: #666;
}

input[type=radio] + span:hover,
input[type=checkbox] + span:hover {
	color: #000;
}

input[type=radio] + span:hover::before,
input[type=checkbox] + span:hover::before {
	border-color: #000;
}

input[type=radio] + span:hover::after,
input[type=checkbox] + span:hover::after {
	background: #ccc;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* checked */

input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
	color: #F8CD29;
}

input[type=radio]:checked + span::before,
input[type=checkbox]:checked + span::before {
	border-color: #F8CD29;
}

input[type=radio]:checked + span::after,
input[type=checkbox]:checked + span::after {
	background: #F8CD29;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* radio */

input[type=radio] + span::before,
input[type=radio] + span:hover::after,
input[type=radio]:checked + span::after {
	border-radius: 50%;
}

/* button */

input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
button:hover {
	background: #F8CD29;
	border-color: #F8CD29;
	color: #fff;
}

/* focus */

input:focus,
textarea:focus {
	border-color: #F8CD29;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
	outline-offset: -2px;
}

/* disabled */

input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
	background: #eee;
	border-color: #ccc;
	cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
	color: #ccc;
	cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
	border-color: #ccc;
	cursor: not-allowed;
}

/* バリデーション */

/* placeholder */

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

html {
	font-size: 4.2666666667vw;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
	background: url(../images/common/bg01.jpg);
	color: #333;
	font-family: "ヒラギノ角ゴ std W3", "メイリオ", "ＭＳ Ｐゴシック", Osaka;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	overflow-wrap: break-word;
	position: relative;
	z-index: -9999;
}

/* Box sizing rules */

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

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

video,
iframe,
object {
	border: none;
	height: auto;
	max-width: 100%;
}

ul,
ol {
	list-style: none;
}

table {
	border: 1px solid;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

th,
td {
	border: 1px solid;
	padding: 4px 6px;
	text-align: left;
	vertical-align: top;
}

blockquote,
q {
	quotes: none;
}

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

address {
	font-style: normal;
}

b,
strong {
	font-weight: 700;
}

form {
	margin: 0;
	padding: 0;
}

label {
	display: inline-block;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
	touch-action: manipulation;
}

input,
button,
select,
optgroup,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}

button,
select {
	text-transform: none;
}

select {
	cursor: pointer;
}

textarea {
	-ms-overflow-style: scrollbar;
	overflow: auto;
	resize: vertical;
}

dialog {
	background-color: inherit;
	border: solid;
	color: inherit;
	display: block;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	left: 0;
	margin: auto;
	padding: 1em;
	position: absolute;
	right: 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

dialog:not([is-open]) {
	display: none;
}

summary {
	cursor: pointer;
	display: list-item;
}

/* Remove all animations and transitions for people that prefer not to see them */

.c-base-text {
	color: #444;
	font-size: 13px;
	letter-spacing: 0.01875rem;
	line-height: 1.3846153846;
}

.c-base-text--bg {
	background: #ffefd5;
}

.c-base-text.c-base-text--bg-gray {
	background: #F9F9F9;
	border-radius: 0.625rem;
	padding: 0.625rem;
}

.c-base-text--underline {
	background: #ffa07a;
	background: linear-gradient(#ffa07a, #ffa07a) 0 100%/100% 2px no-repeat;
}

.c-btn {
	background-color: black;
	color: white;
	padding: 0.625rem 2.5rem;
}

.c-info-link {
	color: #F46A9B;
	display: block;
	font-size: 13px;
	font-weight: 700;
	padding: 0.75rem 0;
	text-align: center;
}

.c-info-link span {
	display: inline-block;
	white-space: nowrap;
}

.c-voice-body {
	color: #444;
	position: relative;
}

.c-voice-body.c-voice-qa::after {
	content: "a.";
}

.c-voice-head {
	color: #96864C;
	font-weight: bold;
}

.c-voice-head.c-voice-qa::after {
	content: "q.";
}

.c-voice-qa {
	padding-left: 1.5625rem;
	position: relative;
}

.c-voice-qa::after {
	display: block;
	left: 0;
	position: absolute;
	text-transform: uppercase;
	top: 0;
}

.c-voice-toggle {
	background: transparent;
	border: #96864C 2px solid;
	border-radius: 2.5rem;
	color: #96864C;
	cursor: pointer;
	display: inline-block;
	font-size: 1.25rem;
	font-weight: bold;
	max-width: 33.5625rem;
	padding: 1.125rem;
	width: 100%;
}

.c-voice-toggle span {
	display: inline-block;
}

.c-voice-toggle:focus-visible {
	border: 1px solid #FF9C00;
}

.grecaptcha-badge {
	visibility: hidden;
}

.recaptcha-explain {
	color: #CCC;
	font-size: 12px;
	margin-top: 40px;
	text-align: center;
}

.l-breadcrumb {
	margin-top: 1.875rem;
}

.l-common-smilechat {
	padding-bottom: 2.5rem;
	padding-top: 0.625rem;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 33.75rem;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.l-top-test {
	margin-top: 6.25rem;
}

.p-breadcrumb {
	font-size: 14px;
	text-align: left;
}

.p-breadcrumb__inner {
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
	width: 100%;
}

.p-common-smilechat {
	background: url(../images/top/bg_content.png);
	width: 100%;
}

.p-common-smilechat__inner.l-inner {
	padding: 0 0.625rem;
}

.p-common-smilechat__contents {
	background: #FFF;
	padding-bottom: 1.25rem;
}

.p-common-smilechat__title {
	background: url(../images/top/bg_h2.png);
	height: 100%;
	padding: 0.9375rem 0.3125rem 1.25rem;
	width: 100%;
}

.p-common-smilechat__title img {
	min-height: 2.1875rem;
}

.p-common-smilechat__title.p-common-smilechat__title--pt0 {
	padding: 0;
}

.p-common-smilechat__subtitle {
	margin-top: 0.9375rem;
	padding: 0rem 0.625rem;
}

.p-common-smilechat__body {
	padding: 0.9375rem 0.3125rem;
}

.p-common-smilechat__text + .p-common-smilechat__text {
	margin-top: 0.625rem;
}

.p-common-smilechat__checkpoint {
	padding: 0 0.625rem;
	transition: opacity 0.5s;
}

.p-common-smilechat__checkpoint:hover {
	opacity: 0.8;
}

.p-common-smilechat__ribbon {
	background-image: url(../images/sub/bg-header.png), url(../images/sub/bg-footer.png), url(../images/sub/bg-body.png);
	background-position: center top, center bottom, center center;
	background-repeat: no-repeat, no-repeat, repeat-y;
	background-size: 100%;
	margin-top: 2.5rem;
	padding: 0.625rem 0.625rem 0.3125rem 0.3125rem;
}

.p-common-smilechat__img {
	position: relative;
	width: 100%;
}

.p-common-smilechat__img::before {
	content: "";
	display: block;
	padding-top: 88.2352941176%;
}

.p-common-smilechat__img img {
	-o-object-fit: contain;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: contain;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-common-smilechat__img.p-common-smilechat__img--large {
	width: 100%;
}

.p-common-smilechat__img.p-common-smilechat__img--large::before {
	padding-top: 25.9587020649%;
}

.p-common-smilechat__img.p-common-smilechat__imgp-common-smilechat__img--support::before {
	padding-top: 30%;
}

.p-common-smilechat__block-items {
	margin-top: 2.1875rem;
	padding: 0 0.9375rem;
}

.p-common-smilechat__block-item {
	width: 100%;
}

.p-common-smilechat__block-item + .p-common-smilechat__block-item {
	margin-top: 2.1875rem;
}

.p-drawer-menu__items {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.p-drawer-menu__item {
	color: #96864c;
	position: relative;
	text-align: center;
}

.p-drawer-menu__item + .p-drawer-menu__item {
	margin-top: 1.25rem;
}

.p-drawer-menu__link {
	display: block;
	line-height: 1.4;
	padding: 0.625rem 1.875rem;
	position: relative;
	z-index: 1;
}

.p-drawer-menu__item:hover::after {
	opacity: 1;
}

.p-drawer-menu__en {
	display: none;
}

.p-drawer-menu__ja {
	font-size: 0.875rem;
	font-weight: 700;
}

/* Safariハック*/

_::-webkit-full-page-media,
_:future,
:root .p-drawer-menu__ja {
	font-size: 0.85rem;
}

.p-entry-form__inner {
	padding: 0 0.625rem;
}

.p-entry-form__table {
	border: none;
}

.p-entry-form__table th,
.p-entry-form__table td {
	border: none;
}

.p-entry-form__items {
	margin-top: 2.5rem;
}

.p-entry-form__item + .p-entry-form__item {
	margin-top: 2.5rem;
}

.p-entry-form__head {
	background: url(../images/entry/comment.png);
	color: #999;
	font-size: 14px;
	position: relative;
}

.p-entry-form__head.p-entry-form__head--required::after {
	background: #f50000;
	border-radius: 0.625rem;
	color: #FFF;
	content: "必須";
	display: block;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	padding: 0.1875rem 0.625rem;
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
}

.p-entry-form__head label {
	padding: 0.9375rem 0.625rem;
	width: 100%;
}

.p-entry-form__item.p-entry-form__item--meeting span {
	width: 100%;
}

.p-entry-form__body {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.625rem;
}

.p-entry-form__body input[type=file] {
	font-size: 15px;
	white-space: normal;
	width: 100%;
}

.p-entry-form__body input[type=text],
.p-entry-form__body input[type=tel],
.p-entry-form__body input[type=email],
.p-entry-form__body textarea,
.p-entry-form__body select {
	border: 1px solid #444;
	border-radius: 0.3125rem;
	box-shadow: inset 0 0 0 2px #ccc;
	font-size: 12px;
}

.p-entry-form__body input[type=text],
.p-entry-form__body input[type=tel],
.p-entry-form__body input[type=email],
.p-entry-form__body textarea {
	padding: 1.3125rem 0.9375rem;
	width: 100%;
}

.p-entry-form__body input[name=your-date] {
	cursor: pointer;
}

.p-entry-form__body span.your-name,
.p-entry-form__body span.your-kana,
.p-entry-form__body span.your-tel,
.p-entry-form__body span.your-email,
.p-entry-form__body span.your-contact {
	width: 100%;
}

.p-entry-form__body span.your-birthday {
	padding: 0;
}

.p-entry-form__body textarea {
	padding: 0.5rem 0.9375rem;
	width: 100%;
}

.p-entry-form__body select {
	line-height: 1.8125rem;
	padding: 0.5rem 0.9375rem;
}

.p-entry-form__body span {
	font-size: 15px;
	padding: 0 0.375rem;
}

.p-entry-form__body input[type=text]:focus,
.p-entry-form__body input[type=tel]:focus,
.p-entry-form__body input[type=email]:focus,
.p-entry-form__body textarea:focus,
.p-entry-form__body select:focus,
.p-entry-form__body input[type=file]:focus {
	background-color: #fff;
	border: 1px solid #FF9C00;
	box-shadow: 0px 0px 16px 0px #FF9C00;
}

.p-entry-form__time {
	margin-top: 0.625rem;
}

.p-entry-form__attention {
	color: #f50000;
	font-size: 12px;
	padding: 3px 11px;
}

.p-entry-form__radio {
	align-items: center;
	display: flex;
}

.p-entry-form__radio + .p-entry-form__radio {
	margin-left: 0.9375rem;
}

.p-entry-form__radio label {
	margin-left: 0.3125rem;
}

.p-entry-form__radio span {
	padding: 0;
}

.p-entry-form__radio span.wpcf7-list-item-label {
	font-size: 13px;
}

.p-entry-form__radio span.wpcf7-list-item.first {
	margin-left: 0;
}

.p-entry-form__radio input[type=radio]:checked + span {
	color: #FF9C00;
}

.p-entry-form__radio input[type=radio]:checked + span::before {
	border-color: #FF9C00;
}

.p-entry-form__radio input[type=radio]:checked + span::after {
	background: #FF9C00;
}

.p-entry-form__btn.p-entry-form__btn--error,
.p-entry-form__btn.p-entry-form__btn--confirm {
	display: flex;
	justify-content: center;
	margin-top: 1.875rem;
}

.p-entry-form__btn.p-entry-form__btn--error input[type=button],
.p-entry-form__btn.p-entry-form__btn--confirm input[type=submit] {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	border: 0 transparent;
	border-radius: 0.1875rem;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 1.5rem 2rem;
}

.p-entry-form__btn.p-entry-form__btn--error input[type=button] {
	background-color: #ccc;
	box-shadow: 2px 2px 0 #b3b3b3;
	color: #666;
	cursor: no-drop;
}

.p-entry-form__btn.p-entry-form__btn--confirm input[type=submit] {
	background-color: #FF9C00;
	box-shadow: 2px 2px 0 #cc8400;
	color: #FFF;
	cursor: pointer;
	transition: top 0.3s, right 0.3s;
	transition: opacity 0.3s;
}

.p-entry-form__btn.p-entry-form__btn--confirm input[type=submit]:hover {
	box-shadow: none;
	position: relative;
	right: -2px;
	top: 2px;
}

.p-faq-item:not(:last-child) {
	background: url(../images/faq/separator.png);
	background-position: bottom, center;
	background-repeat: no-repeat;
	padding-bottom: 1.875rem;
}

.p-faq-item + .p-faq-item {
	margin-top: 1.875rem;
}

.p-faq-item__head,
.p-faq-item__body {
	align-items: center;
	display: flex;
}

.p-faq-item__body {
	margin-top: 0.9375rem;
}

.p-faq-item__img {
	margin-bottom: auto;
	max-width: 6.5625rem;
	position: relative;
	width: 30.985915493%;
}

.p-faq-item__img::before {
	content: "";
	display: block;
	padding-top: 22.8260869565%;
}

.p-faq-item__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-faq-item__head-text,
.p-faq-item__body-text {
	margin-left: 1.25rem;
	width: 63.3802816901%;
}

.p-faq-item__head-text {
	color: #fd627c;
	font-size: 0.875rem;
	font-weight: 700;
}

.p-faq-item__body-text {
	font-size: 0.8125rem;
}

.p-footer-banner {
	display: flex;
}

.p-footer-entry__logo {
	display: none;
}

.p-footer-entry__contact {
	margin-top: -2.6875rem;
}

.p-footer-entry__contact-btn {
	display: flex;
	margin-top: -0.625rem;
}

.p-footer-entry__line,
.p-footer-entry__form {
	width: calc((100% - 1.25rem) / 2);
}

.p-footer-entry__line,
.p-footer-entry__form,
.p-footer-entry__mail,
.p-footer-entry__tel {
	transition: opacity 0.3s;
}

.p-footer-entry__line:hover,
.p-footer-entry__form:hover,
.p-footer-entry__mail:hover,
.p-footer-entry__tel:hover {
	opacity: 0.8;
}

.p-footer-entry__line img,
.p-footer-entry__form img {
	height: 100%;
}

.p-footer-entry__form {
	margin-left: 1.25rem;
}

.p-footer-entry__line,
.p-footer-entry__form {
	padding-top: 10.4%;
	position: relative;
}

.p-footer-entry__line img,
.p-footer-entry__form img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-footer-entry__address {
	display: flex;
	margin-top: 1.25rem;
}

.p-footer-entry__mail,
.p-footer-entry__tel {
	width: calc((100% - 1.25rem) / 2);
}

.p-footer-entry__tel {
	margin-left: 1.25rem;
}

.p-footer-sitemap-item {
	color: #96864c;
	font-size: 13px;
	font-weight: 700;
	text-align: left;
}

.p-footer-sitemap__list {
	display: flex;
	padding-left: 0.625rem;
}

.p-footer-sitemap__items {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: 50%;
}

.p-footer-sitemap__item {
	position: relative;
}

.p-footer-sitemap__item + .p-footer-sitemap__item {
	margin-top: 0.625rem;
}

.p-footer-sitemap__item:nth-child(6) {
	margin-top: 0;
}

.p-footer-sitemap-item__link {
	padding: 0.1875rem 0.3125rem 0.1875rem 0.9375rem;
	position: relative;
}

.p-footer-sitemap-item__link::before {
	background: url(../images/footer/footer_arrow.png);
	background-repeat: no-repeat;
	content: "";
	display: block;
	height: 13px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.p-footer-sitemap-item__link::after {
	background: #96864c;
	bottom: 0rem;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.5s;
	width: 100%;
}

.p-footer-sitemap-item__link:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

.p-footer {
	background: url(../images/footer/footer_bg01.jpg);
	padding-bottom: 18.6666666667%;
	padding-top: 1.25rem;
	position: relative;
}

.p-footer::after {
	background: url(../images/footer/footer_lace.png);
	background-repeat: repeat-x;
	background-size: 23px, auto, 320px, auto;
	content: "";
	display: block;
	height: 14px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-footer__contents {
	display: flex;
	flex-direction: column-reverse;
}

.p-footer__logo {
	display: none;
}

.p-footer__logo a {
	transition: opacity 0.3s;
}

.p-footer__logo a:hover {
	display: block;
	opacity: 0.8;
}

.p-footer__sitemap {
	margin-top: 1.875rem;
}

.p-footer__copyrights {
	background: url(../images/footer/copy_bg.jpg);
	height: 2.4375rem;
	margin: 0 calc(50% - 50vw);
	margin-top: 3.125rem;
	text-align: center;
	width: 100vw;
}

.p-footer__copyright {
	color: #FFF;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 600;
	line-height: 2.4375rem;
	text-transform: uppercase;
}

.p-footer__banner {
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	z-index: 10;
}

.p-hamburger {
	background: transparent;
	border: none;
	box-shadow: 0 0 2rem transparent;
	height: 1.25rem;
	margin: auto;
	padding: 0;
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	transition: ease 0.3s;
	width: 1.875rem;
	z-index: 99;
}

.p-hamburger[aria-expanded=true],
.p-hamburger[aria-expanded=false] {
	background: none;
}

/* ドロワーボタンfocus時 */

.p-hamburger:focus .p-hamburger__line,
.p-hamburger:focus .p-hamburger__line::before,
.p-hamburger:focus .p-hamburger__line::after {
	box-shadow: 0 0 4px #FF9C00;
}

.p-hamburger__line {
	background-color: #ccc;
	height: 0.125rem;
	position: absolute;
	right: 0;
	transition: ease 0.3s;
	width: 1.875rem;
}

.p-hamburger__line::before,
.p-hamburger__line::after {
	background-color: inherit;
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	transition: ease 0.3s;
	width: 100%;
}

.p-hamburger__line::before {
	top: -10px;
}

.p-hamburger__line::after {
	top: 10px;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line {
	background-color: transparent;
	box-shadow: none;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::before,
.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
	background-color: #ccc;
	top: 0;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::before {
	transform: rotate(45deg);
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
	transform: rotate(-45deg);
}

.p-hamburger__hidden {
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.p-header {
	background: url(../images/header/header_bg01.png);
	background-repeat: repeat;
	background-size: contain;
	position: relative;
}

.p-header::after {
	background: url(../images/header/header_bg02.png);
	content: "";
	display: block;
	height: 0.5625rem;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.p-header__inner {
	align-items: center;
	display: flex;
	padding: 0.75rem 1.25rem;
}

.p-header__logo {
	transition: opacity 0.3s;
	width: 30.9333333333%;
}

.p-header__logo:hover {
	opacity: 0.8;
}

.p-header__lead {
	color: #96864c;
	font-size: 10px;
	font-weight: 700;
	margin-left: 0.75rem;
	text-align: left;
	width: 53.3333333333%;
}

.p-header__drawer {
	position: fixed;
}

.p-header__nav {
	background: rgba(255, 255, 255, 0.9);
	content: "";
	display: none;
	height: 100vh;
	left: 0;
	overflow-y: scroll;
	position: fixed;
	right: 0;
	top: 0;
}

.p-header__nav.click-close {
	z-index: 1;
}

.p-main-contents__inner {
	width: 100%;
}

/* メンテナンス用 */

.p-maintenance a {
	pointer-events: none;
}

.p-maintenance__body {
	margin-bottom: 6.25rem;
	margin-top: 6.25rem;
}

.p-mv {
	background: url(../images/mv/mainbg_sp.jpg);
	background-repeat: round;
	background-size: contain;
}

.p-mv__img {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: 23.4375rem;
}

.p-mv__img::before {
	content: "";
	display: block;
	padding-top: 30.125rem;
}

.p-mv__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-r-navi {
	float: initial;
	margin-bottom: 1.25rem;
	width: initial;
}

.p-r-navi .category-list nav.category-nav .toggle-nav li a {
	font-size: 1rem;
	position: relative;
	text-align: left;
}

/* ブログ投稿のアクセ */

.p-r-navi .category-list nav.category-nav .toggle-nav .children .cat-item a {
	font-size: 0.875rem;
}

.p-room-item__title {
	color: #ff99cc;
	font-size: 16px;
	font-weight: 700;
}

.p-room-item__img {
	position: relative;
	width: 100%;
}

.p-room-item__img::before {
	content: "";
	display: block;
	padding-top: 74.8520710059%;
}

.p-room-item__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 0.625rem;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-room-item__body {
	background: #f1f1f1;
	border-radius: 0.625rem;
	margin-top: 1.25rem;
	padding: 0.9375rem;
}

.p-room-item__text {
	background: url(../images/room/comment.png);
	border-radius: 0.625rem;
	font-size: 13px;
	padding: 0.625rem;
}

.p-side-banner {
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 0.625rem;
	margin-top: 1.25rem;
	padding: 0.625rem;
}

.p-side-banner__items {
	align-items: center;
	display: flex;
	justify-content: center;
}

.p-side-banner__item {
	max-width: 10.5625rem;
	position: relative;
	width: 100%;
}

.p-side-banner__item::before {
	content: "";
	display: block;
	padding-top: 39.6449704142%;
}

.p-side-banner__item img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-side-banner__item + .p-side-banner__item {
	margin-left: 0.9375rem;
}

.p-side-banner__item:focus {
	box-shadow: 0px 0px 10px 3px rgba(248, 157, 38, 0.6);
	outline: 2px solid #FF9C00;
}

.p-side-contact {
	background: url(../images/side-contact/contact_bg.png);
	background-size: cover;
	padding-bottom: 0.625rem;
	padding-top: 1.25rem;
}

.p-side-contact__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 33.75rem;
	padding: 0 0.75rem;
	width: 100%;
}

.p-side-contact__contact {
	margin-left: auto;
	margin-right: auto;
	max-width: 17.75rem;
	position: relative;
	width: 100%;
}

.p-side-contact__contact::before {
	content: "";
	display: block;
	padding-top: 25.3521126761%;
}

.p-side-contact__contact img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-side-contact__contact-btn {
	display: flex;
	margin-top: 0.625rem;
}

.p-side-contact__form,
.p-side-contact__line,
.p-side-contact__tel,
.p-side-contact__mail,
.p-side-banner__item,
.p-side-info__link {
	transition: opacity 0.5s;
}

.p-side-contact__form:hover,
.p-side-contact__line:hover,
.p-side-contact__tel:hover,
.p-side-contact__mail:hover,
.p-side-banner__item:hover,
.p-side-info__link:hover {
	opacity: 0.8;
}

.p-side-contact__line {
	margin-left: 0.625rem;
}

.p-side-contact__form,
.p-side-contact__line {
	width: calc((100% - 0.625rem ) / 2);
}

.p-side-contact__textimg {
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.9375rem;
	max-width: 13.3125rem;
	position: relative;
	width: 100%;
}

.p-side-contact__textimg::before {
	content: "";
	display: block;
	padding-top: 9.8591549296%;
}

.p-side-contact__textimg img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-side-contact__address {
	display: flex;
	margin-top: 0.9375rem;
}

.p-side-contact__mail {
	margin-left: 0.625rem;
}

.p-side-contact__tel,
.p-side-contact__mail {
	width: calc((100% - 0.625rem ) / 2);
}

.p-side-contents {
	width: 100%;
}

.p-side-contents__inner {
	background: url(../images/bg/bg01.jpg);
}

.p-side-info-item {
	border-bottom: 1px dotted #ffb751;
	padding: 0.625rem 0.625rem 0.625rem 0.3125rem;
	transition: opacity 0.3s;
}

.p-side-info-item:hover {
	opacity: 0.8;
}

.p-side-info-item__box {
	align-items: center;
	display: flex;
}

.p-side-info-item__img {
	height: 100%;
	max-height: 60px;
	max-width: 60px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-side-info-item__img::before {
	content: "";
	display: block;
	overflow: hidden;
	padding-top: 100%;
}

.p-side-info-item__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.4s, height 0.4s;
	width: 100%;
}

/* ホバー時画像拡大 */

.p-side-info-item:hover .p-side-info-item__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 110%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 110%;
}

.p-side-info-item__body {
	margin-left: 0.625rem;
	text-align: left;
}

.p-side-info-item__date {
	border: 1px solid #aaa;
	border-radius: 0.625rem;
	color: #aaa;
	font-size: 10px;
	padding: 0.0625rem 0.625rem;
}

.p-side-info-item__title {
	color: #96864c;
	font-size: 12px;
	font-weight: 700;
}

.p-side-info-item__content {
	color: #96864c;
	font-size: 11px;
	text-align: left;
}

.p-side-info-item .p-side-info-item__title,
.p-side-info-item .p-side-info-item__content {
	position: relative;
}

.p-side-info-item:hover .p-side-info-item__title,
.p-side-info-item:hover .p-side-info-item__content {
	text-decoration: underline;
}

.p-side-info {
	background: url(../images/side-info/side-info_bg.jpg);
	border: 1px solid #ffefad;
	border-radius: 0.3125rem;
	margin-top: 3.125rem;
	padding-bottom: 0.5rem;
	padding-top: 3.125rem;
	width: 100%;
}

.p-side-info__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 33.75rem;
	padding: 0 0.4375rem;
	width: 100%;
}

.p-side-info__img {
	margin-top: -5.3125rem;
	width: 13.125rem;
}

.p-side-info__wrapper {
	background: #FFF;
	border-radius: 0.3125rem;
}

.p-side-snsbanner {
	padding: 1.875rem;
}

.p-side-snsbanner__items {
	align-items: center;
	display: flex;
	justify-content: center;
}

.p-side-snsbanner__item {
	max-width: 3.75rem;
	position: relative;
	width: 100%;
}

.p-side-snsbanner__item::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.p-side-snsbanner__item img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-side-snsbanner__item + .p-side-snsbanner__item {
	margin-left: 7.5rem;
}

.p-smilechat-apply-item {
	align-items: center;
	border-bottom: 4px solid #EEE;
	display: flex;
	padding: 0.625rem 0;
}

.p-smilechat-apply-item__text,
.p-smilechat-apply-item__body {
	font-size: 13px;
}

.p-smilechat-apply-item__head {
	align-items: center;
	color: #FF9C00;
	display: flex;
	letter-spacing: 0.125rem;
	margin-bottom: auto;
	padding-left: 0.625rem;
	width: 40.8450704225%;
}

.p-smilechat-apply-item__icon {
	height: 0.75rem;
	width: 0.75rem;
}

.p-smilechat-apply-item__text {
	margin-left: 0.9375rem;
}

.p-smilechat-apply-item__body {
	width: 59.1549295775%;
}

.p-smilechat-block-item {
	background: url(../images/qualification/qualification-bg.png);
	border: 1px solid #fff;
	border-radius: 0.625rem;
	box-shadow: 0 5px 1px rgba(11, 3, 6, 0.16), inset 0 0 10px rgba(5, 5, 5, 0.05);
	padding: 0.625rem 0.9375rem 1.25rem;
}

.p-smilechat-block-item__jtag {
	margin-left: auto;
	margin-right: auto;
	margin-top: -2rem;
	max-width: 18.3125rem;
	position: relative;
	width: 100%;
}

.p-smilechat-block-item__jtag::before {
	content: "";
	display: block;
	padding-top: 19.0839694656%;
}

.p-smilechat-block-item__jtag img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-smilechat-block-item__contents {
	margin-top: 1.25rem;
}

.p-smilechat-block-item__img {
	float: left;
	margin-right: 0.75rem;
}

.p-smilechat-block-item__text {
	line-height: 1.6153846154;
}

.p-smilechat-block-item__clear {
	clear: both;
}

.p-sub-entry__lead {
	padding: 0 0.625rem;
}

.p-sub-notfound__contents {
	padding-top: 3.75rem;
}

.p-sub-notfound__text {
	font-size: 1rem;
	text-align: center;
}

.p-sub-notfound__btn .button {
	height: 100%;
	margin-top: 3.75rem;
	text-align: center;
}

.p-sub-notfound__btn .button a {
	display: inline-block;
	height: inherit;
	position: relative;
}

.p-sub-notfound__btn .button a::after {
	background: url(../../images/btn/thanks_hover.png);
	background-repeat: no-repeat;
	content: "";
	display: block;
	height: inherit;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	transition: opacity 0.3s;
	width: 100%;
}

.p-sub-notfound__btn .button a:hover::after {
	opacity: 1;
}

.p-sub-qualification__ribbon.p-common-smilechat__ribbon:first-of-type {
	margin-top: 0;
}

.p-sub-room__items {
	padding: 0.625rem;
}

.p-sub-room__item + .p-sub-room__item {
	margin-top: 1.875rem;
}

.p-sub-room .wp-block-nextend-smartslider3 {
	padding: 0.625rem;
}

.p-sub-salary__img {
	margin-top: 1.875rem;
}

.p-sub-support__img {
	width: 100%;
}

.p-sub-support__text {
	width: 100%;
}

.p-sub-thanks .button {
	height: 100%;
}

.p-sub-thanks .button a {
	display: inline-block;
	height: inherit;
	position: relative;
}

.p-sub-thanks .button a::after {
	background: url(../../images/btn/thanks_hover.png);
	background-repeat: no-repeat;
	content: "";
	display: block;
	height: inherit;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	transition: opacity 0.3s;
	width: 100%;
}

.p-sub-thanks .button a:hover::after {
	opacity: 1;
}

.p-sub-work__text.c-base-text--bg-gray {
	margin-top: 0.625rem;
}

.p-top-chatlady__title.p-common-smilechat__title {
	background: url(../images/top/bg_h2.png);
	background-size: 100%;
}

.p-top-chatlady__title.p-common-smilechat__title img {
	min-height: initial;
	width: 81.1594202899%;
}

.p-top-chatlady__body.p-common-smilechat__body {
	text-align: center;
}

.p-top-room__body.p-common-smilechat__body {
	text-align: center;
}

.p-top-room__contents {
	position: relative;
}

.p-top-room__title.p-common-smilechat__title {
	background: url(../images/top/bg_h2.png);
	background-size: 100%;
}

.p-top-room__title.p-common-smilechat__title img {
	min-height: 1.875rem;
	width: 81.1594202899%;
}

.p-top-voice__title-wrap {
	background: #FFF;
	padding: 1.6875rem 1.25rem 1.875rem;
}

.p-top-voice__title {
	padding: 0;
	position: relative;
	width: 100%;
}

.p-top-voice__title::before {
	content: "";
	display: block;
	padding-top: 17.6056338028%;
}

.p-top-voice__title img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-top-voice__list + .p-top-voice__list {
	margin-top: 1.875rem;
}

.p-top-works__contents {
	position: relative;
}

.p-top-works__title.p-common-smilechat__title {
	background: url(../images/top/bg_h2.png);
	background-size: 100%;
}

.p-top-works__title.p-common-smilechat__title img {
	min-height: 1.875rem;
	width: 81.1594202899%;
}

.p-top-works__body.p-common-smilechat__body {
	text-align: center;
}

.p-top-works__text.p-common-smilechat__text {
	letter-spacing: 0;
}

.p-top-youtube {
	background: url(../images/top/you_bg.png);
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
}

.p-top-youtube__inner {
	padding: 0 1.25rem;
}

.p-top-youtube__items {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 0.625rem;
}

.p-top-youtube__item {
	width: 100%;
}

.p-top-youtube__item + .p-top-youtube__item {
	margin-top: 1.875rem;
}

.p-voice-info {
	padding: 1.875rem;
}

.p-voice-info__item {
	align-items: center;
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	flex-wrap: nowrap;
}

.p-voice-info__item + .p-voice-info__item {
	margin-top: 0.5rem;
}

.p-voice-info__head {
	width: 128px;
}

.p-voice-info__body {
	margin-left: 0.9375rem;
	width: calc(100% - 128px - 0.9375rem );
}

.p-voice-list__item {
	background-repeat: repeat;
	background-size: contain;
	margin: 0 calc(50% - 50vw);
	padding-top: 3.75rem;
	position: relative;
	width: 100vw;
}

.p-voice-list__item:nth-child(odd) {
	background-image: url(../images/voice/yellow_bg.jpg);
}

.p-voice-list__item:nth-child(even) {
	background-image: url(../images/voice/pink_bg.jpg);
}

.p-voice-list__item + .p-voice-list__item {
	margin-top: 2.5rem;
}

.p-voice-list__item::before {
	background-image: url(../images/voice/voice_bg_lace.png);
	background-size: contain;
	content: "";
	display: block;
	height: 1.25rem;
	left: 0;
	margin: 0 calc(50% - 50vw);
	position: absolute;
	top: 0;
	width: 100vw;
}

.p-voice-list__item::after {
	background-image: url(../images/voice/voice_bg_lace.png);
	background-size: contain;
	bottom: 0;
	content: "";
	display: block;
	height: 1.25rem;
	left: 0;
	margin: 0 calc(50% - 50vw);
	position: absolute;
	transform: rotate(180deg);
	width: 100vw;
}

.p-voice-list__item-inner.l-inner {
	max-width: 33.75rem;
}

.p-voice-list__info {
	display: flex;
	flex-direction: column;
}

.p-voice-list__info-img {
	margin-top: 1.25rem;
	order: 2;
	position: relative;
	width: 100%;
}

.p-voice-list__info-img::before {
	content: "";
	display: block;
	padding-top: 133.7313432836%;
}

.p-voice-list__info-img img {
	-o-object-fit: contain;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: contain;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-voice-list__info-items {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 0.625rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	order: 1;
	width: 100%;
}

.p-voice-list__questionnaire-open {
	padding: 2.5rem 0;
	text-align: center;
}

.p-voice-list__questionnaire-open.is-open {
	display: none;
}

.p-voice-list__qa {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 0.3125rem;
	display: none;
	margin-top: 2.5rem;
	padding: 2.5rem 1.25rem;
}

.p-voice-list__qa.is-open {
	display: block;
}

.p-voice-list__request {
	margin-top: 1.25rem;
}

.p-voice-list__questionnaire-close {
	display: none;
	padding: 2.5rem 0;
	text-align: center;
}

.p-voice-list__questionnaire-close.is-open {
	display: block;
}

.p-voice-modal-container {
	height: 0;
	opacity: 0;
	visibility: hidden;
}

.p-voice-qa__item + .p-voice-qa__item {
	margin-top: 1.5625rem;
}

.p-voice-qa__answer {
	margin-top: 0.3125rem;
}

.p-voice-qa__answer + .p-voice-qa__answer {
	margin-top: 0.3125rem;
}

.p-youtube-item__video {
	position: relative;
	width: 100%;
}

.p-youtube-item__video::before {
	content: "";
	display: block;
	padding-top: 54.6666666667%;
}

.p-youtube-item__video iframe {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-youtube-item__img {
	margin-top: 1.375rem;
	position: relative;
	width: 100%;
}

.p-youtube-item__img p {
	font-size: 2rem;
	text-align: center;
}

.p-youtube-item__img::before {
	content: "";
	display: block;
	padding-top: 8%;
}

.p-youtube-item__img img {
	-o-object-fit: contain;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: contain;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	-webkit-animation-duration: 0.01ms !important;
	-webkit-animation-iteration-count: 1 !important;
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0.01ms !important;
}

}

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

html {
	font-size: 16px;
}

}

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

.u-mobile {
	display: none;
}

.u-desktop {
	display: block;
}

html {
	font-size: 1.6vw;
}

.c-base-text {
	letter-spacing: 0.0125rem;
}

.c-voice-toggle {
	font-size: 1.75rem;
}

.l-common-smilechat {
	padding-bottom: 0.4375rem;
	padding-top: 0.4375rem;
}

.l-common-smilechat.subpage {
	padding-bottom: 2.5rem;
}

.l-contents-wrapper {
	margin-top: 1.875rem;
}

.l-footer {
	margin-top: 1.875rem;
}

.l-inner {
	max-width: 1040px;
	padding-left: 20px;
	padding-right: 20px;
}

.p-breadcrumb__inner {
	max-width: 60rem;
	width: 100%;
}

.p-common-smilechat {
	width: 44.375rem;
}

.p-common-smilechat + .p-common-smilechat {
	margin-top: 1.875rem;
}

.p-common-smilechat__inner.l-inner {
	padding: 0 0.4375rem;
}

.p-common-smilechat__contents {
	padding-bottom: 3.125rem;
}

.p-common-smilechat__title {
	padding: 0 0 1.25rem;
}

.p-common-smilechat__title img {
	min-height: initial;
}

.p-common-smilechat__subtitle {
	margin-top: initial;
	text-align: center;
}

.p-common-smilechat__body {
	margin-top: 0.625rem;
}

.p-common-smilechat__checkpoint {
	margin-left: auto;
	margin-right: auto;
	max-width: 27.125rem;
	width: 100%;
}

.p-common-smilechat__box {
	max-width: 18.75rem;
	width: 45%;
}

.p-common-smilechat__img {
	width: 48%;
}

.p-common-smilechat__img::before {
	padding-top: 78.2208588957%;
	padding-top: 40%;
}

.p-common-smilechat__img.p-common-smilechat__img--large::before {
	padding-top: 23.8461538462%;
}

.p-common-smilechat__img.p-common-smilechat__imgp-common-smilechat__img--support::before {
	padding-top: 20%;
}

.p-common-smilechat__block-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.p-common-smilechat__block-item {
	max-width: calc((100% - 0.9375rem ) / 2);
}

.p-common-smilechat__block-item + .p-common-smilechat__block-item {
	margin-top: initial;
}

.p-common-smilechat__block-item:nth-child(even) {
	margin-left: 0.9375rem;
}

.p-common-smilechat__block-item:nth-child(n+3) {
	margin-top: 3.125rem;
}

.p-common-smilechat__apply {
	padding: 0.9375rem;
}

.p-contents-wrapper {
	display: flex;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: calc(60rem + 40px);
	padding: 0 20px;
	width: 100%;
}

.p-drawer-menu__items {
	display: flex;
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
	position: initial;
	top: initial;
	transform: initial;
	width: 100%;
}

.p-drawer-menu__item {
	padding: 0.4375rem 0;
	width: 11.0416666667%;
}

.p-drawer-menu__item + .p-drawer-menu__item {
	margin-top: initial;
}

.p-drawer-menu__item:nth-child(5) {
	margin-left: 15.625%;
}

.p-drawer-menu__item:nth-child(6) {
	width: 10.625%;
}

.p-drawer-menu__item:nth-child(7) {
	width: 11.9791666667%;
}

.p-drawer-menu__item:nth-child(8) {
	width: 9.5833333333%;
}

.p-drawer-menu__item:nth-child(9) {
	width: 9.5833333333%;
}

.p-drawer-menu__link {
	padding: initial;
}

.p-drawer-menu__item::after {
	background-image: url(../images/header/nav_on.jpg);
	background-repeat: repeat-x;
	background-size: contain;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition-duration: 0.8s;
	width: 100%;
	z-index: 0;
}

.p-drawer-menu__en {
	display: block;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.2px;
	text-transform: uppercase;
}

.p-entry-form__item {
	align-items: center;
	display: flex;
}

.p-entry-form__item + .p-entry-form__item {
	margin-top: 1.25rem;
}

.p-entry-form__head {
	width: 33.3333333333%;
}

.p-entry-form__head label {
	padding: 2.1875rem 1.25rem;
}

.p-entry-form__item.p-entry-form__item--meeting .p-entry-form__head label {
	padding: 4.8125rem 1.25rem;
}

.p-entry-form__body {
	margin-left: 1.25rem;
	margin-top: initial;
	width: 63.7931034483%;
}

.p-entry-form__body span {
	font-size: 16px;
	padding: 0 0.6875rem;
}

.p-faq-item__img {
	width: 16.9230769231%;
}

.p-faq-item__head-text,
.p-faq-item__body-text {
	width: 80%;
}

.p-faq-item__head-text {
	font-size: 15px;
}

.p-faq-item__body-text {
	font-size: 13px;
}

.p-footer-entry__logo {
	display: block;
}

.p-footer {
	padding-bottom: 0.9375rem;
}

.p-footer__contents {
	flex-direction: row;
}

.p-footer__logo {
	display: block;
}

.p-footer__sitemap {
	margin-top: initial;
}

.p-footer__entry {
	margin-left: 0.625rem;
}

.p-footer__banner {
	display: none;
}

.p-hamburger {
	display: none;
}

.p-header {
	height: 8.75rem;
}

.p-header__inner {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
	padding: 0 10px;
	width: 100%;
}

.p-header__logo {
	display: block;
	height: 9.5625rem;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 10.875rem;
	z-index: 1;
}

.p-header__lead {
	font-size: 0.875rem;
	font-weight: normal;
	line-height: 1.2;
	padding-top: 0.75rem;
}

.p-header__drawer {
	display: none;
}

.p-header__nav {
	background: url(../images/header/nav_bg.png);
	background-repeat: repeat-x;
	background-size: contain;
	display: block;
	height: initial;
	left: 0;
	margin-top: 0.5625rem;
	margin-top: 9px;
	position: absolute;
	top: 50%;
	transform: translateY(-20%);
	width: 100%;
}

.p-main-contents__inner {
	max-width: 44.375rem;
}

.p-maintenance__body {
	margin-bottom: 18.75rem;
	margin-top: 18.75rem;
}

.p-mv {
	background: url(../images/mv/mainbg_pc.jpg);
	background-size: cover;
}

.p-mv__img {
	max-width: 59.375rem;
	width: 100%;
}

.p-mv__img::before {
	padding-top: 42.1052631579%;
}

.p-room-item__title {
	font-size: 20px;
}

.p-room-item__img::before {
	padding-top: 74.8091603053%;
}

.p-side-banner {
	max-width: 13.75rem;
	width: 100%;
}

.p-side-banner__items {
	display: block;
}

.p-side-banner__item {
	max-width: 12.5rem;
}

.p-side-banner__item::before {
	padding-top: 40%;
}

.p-side-banner__item + .p-side-banner__item {
	margin-left: initial;
	margin-top: 0.625rem;
}

.p-side-contact {
	max-width: 13.75rem;
	padding-bottom: 0.625rem;
	padding-top: 0.625rem;
	width: 100%;
}

.p-side-contact__inner {
	max-width: 100%;
	padding: 0 0.625rem;
}

.p-side-contact__contact::before {
	padding-top: 25.3588516746%;
}

.p-side-contact__contact-btn {
	display: block;
}

.p-side-contact__line {
	margin-top: 0.3125rem;
}

.p-side-contact__form,
.p-side-contact__line {
	margin-left: auto;
	margin-right: auto;
	width: 12.5rem;
}

.p-side-contact__textimg {
	margin-left: initial;
	max-width: 9.375rem;
}

.p-side-contact__textimg::before {
	padding-top: 10%;
}

.p-side-contact__address {
	display: block;
	margin-top: 0.3125rem;
}

.p-side-contact__mail {
	margin-left: initial;
}

.p-side-contact__mail a {
	display: flex;
}

.p-side-contact__tel,
.p-side-contact__mail {
	width: 12.0625rem;
}

.p-side-contents {
	margin-left: 1.875rem;
	width: 13.75rem;
}

.p-side-info {
	max-width: 13.75rem;
}

.p-side-info__inner {
	max-width: 100%;
}

.p-side-snsbanner {
	display: none;
}

.p-side-snsbanner__items {
	display: block;
}

.p-side-snsbanner__item {
	max-width: 12.5rem;
}

.p-side-snsbanner__item::before {
	padding-top: 40%;
}

.p-side-snsbanner__item + .p-side-snsbanner__item {
	margin-left: initial;
}

.p-smilechat-apply-item__head {
	width: 35.8208955224%;
}

.p-smilechat-apply-item__body {
	width: 64.1791044776%;
}

.p-smilechat-block-item {
	padding: 0.625rem 0.9375rem 1.25rem;
}

.p-smilechat-block-item__jtag {
	max-width: 16.375rem;
}

.p-smilechat-block-item__contents {
	margin-top: 1.875rem;
}

.p-smilechat-block-item__img {
	margin-right: 0.75rem;
}

.p-sub-room__items {
	padding: 0.9375rem;
}

.p-sub-support__body + .p-sub-support__body {
	margin-top: 2.5rem;
}

.p-sub-support__img {
	margin-left: auto;
	margin-right: auto;
	max-width: 40.625rem;
}

.p-sub-support__text {
	margin-left: auto;
	margin-right: 10%;
	margin-top: -3.4375rem;
	max-width: 28.125rem;
	position: relative;
	z-index: 1;
}

.p-sub-work__body:nth-of-type(3) {
	flex-direction: row-reverse;
}

.p-sub-work__body:nth-of-type(n+2) {
	display: flex;
}

.p-sub-work__body:nth-of-type(2n) .p-common-smilechat__img {
	margin-left: 1.25rem;
}

.p-sub-work__body:nth-of-type(3) .p-common-smilechat__box {
	margin-left: 1.25rem;
}

.p-top-chatlady__title.p-common-smilechat__title img {
	min-height: 1.875rem;
	width: 100%;
}

.p-top-chatlady__contents {
	position: relative;
}

.p-top-chatlady__contents::after {
	background: url(../images/top/top_bg_3.png);
	background-size: cover;
	bottom: 0;
	content: "";
	display: block;
	height: 2.5625rem;
	position: absolute;
	right: 0;
	width: 2.5625rem;
}

.p-top-room__contents::after {
	background: url(../images/top/top_bg_3.png);
	background-size: cover;
	bottom: 0;
	content: "";
	display: block;
	height: 2.5625rem;
	position: absolute;
	right: 0;
	width: 2.5625rem;
}

.p-top-room__title.p-common-smilechat__title img {
	min-height: initial;
	width: 100%;
}

.p-top-voice__title-wrap {
	padding: 1.75rem 1.25rem 1.75rem;
}

.p-top-voice__inner.l-inner {
	padding: initial;
}

.p-top-voice__title::before {
	padding-top: 17.6712328767%;
}

.p-top-works__contents::after {
	background: url(../images/top/top_bg_3.png);
	background-size: cover;
	bottom: 0;
	content: "";
	display: block;
	height: 2.5625rem;
	position: absolute;
	right: 0;
	width: 2.5625rem;
}

.p-top-works__title.p-common-smilechat__title img {
	min-height: initial;
	width: 100%;
}

.p-top-youtube__item {
	width: calc((100% - 1.125rem * 2 ) / 2);
}

.p-top-youtube__item + .p-top-youtube__item {
	margin-top: initial;
}

.p-top-youtube__item:nth-child(even) {
	margin-left: 2.1875rem;
}

.p-top-youtube__item:nth-child(n+3) {
	margin-top: 1.875rem;
}

.p-voice-info__item-wrap {
	margin: 0 auto;
}

.p-voice-list__item {
	margin: initial;
	max-width: 44.375rem;
	width: 100%;
}

.p-voice-list__item::before {
	margin: initial;
	width: 100%;
}

.p-voice-list__item::after {
	margin: initial;
	width: 100%;
}

.p-voice-list__item-inner.l-inner {
	max-width: 100%;
	padding-left: 10.2739726027%;
	padding-right: 10.2739726027%;
}

.p-voice-list__info {
	display: flex;
	flex-direction: row;
}

.p-voice-list__info-img {
	cursor: pointer;
	margin-top: initial;
	min-height: 12.5rem;
	order: initial;
	width: 26.5910299592%;
}

.p-voice-list__info-img::before {
	padding-top: 75%;
}

.p-voice-list__info-items {
	margin-left: 5.3571428571%;
	margin-top: initial;
	width: 66.6666666667%;
}

.p-voice-modal-container {
	background: rgba(0, 0, 0, 0.6);
	bottom: 0;
	height: initial;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: all 0.4s;
	z-index: 99;
}

.p-voice-modal-container.is-show {
	opacity: 1;
	visibility: visible;
}

.p-voice-modal-container > div {
	align-items: center;
	display: flex;
	height: 100vh;
	justify-content: center;
}

.p-voice-modal-container > div > img {
	max-height: 80vh;
	max-width: 80vw;
}

.p-youtube-item__video::before {
	padding-top: 54.6666666667%;
}

.p-youtube-item__img {
	margin-top: 0.3125rem;
}

.p-youtube-item__img::before {
	padding-top: 28.6666666667%;
}

}

@media (min-width: 1000px) {

html {
	font-size: 16px;
}
