@charset "UTF-8";
/*-------------------------------------------------------------*/
/* font face Yu Gothic */

@font-face {
	font-family: "yugothic", YuGothic, "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}

@font-face {
	font-family: "yugothic", YuGothic, "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}

@font-face {
	font-family: "yugothic", YuGothic, "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}

@font-face {
	font-family: "yugothic", YuGothic, "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}

@font-face {
	font-family: "yugothic", YuGothic, "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 500;
}

@font-face {
	font-family: "yugothic", YuGothic, "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: normal;
}

@font-face {
	font-family: "yugothic", YuGothic, "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}

/*-------------------------------------------------------------*/
/**
 * 変数
 * NOTE:
**/
:root {
	--site-c-main: #19C4E3;
	--site-c-main-hue: #FFD600;
	--site-c-black: #222222;
	--site-c-gray: #707070;
	--site-c-silvergray: #ccc;
	--site-c-lightgray: #F5F8FA;
	--site-c-disabledgray: #e9e9e9;
	--site-c-blue: #19C4E3;
	--site-c-red: #ec5937;
	--site-c-orange: #FFD600;
	--site-c-green: #28FF00;
	--font-c: #222222;
	--header-height: 96px;
	--site-btn-height: 48px;
	--site-btn-small-height: 40px;
	--site-input-height: 48px;
	--site-container-width: 1280px;
	--site-container-padding: 80px;
}

@media screen and (max-width: 959px) {
	:root {
		--header-height: 64px;
		--site-btn-height: 48px;
		--site-btn-small-height: 40px;
		--site-input-height: 48px;
		--site-container-padding: 20px;
	}
}

@media screen and (max-width: 767px) {
	:root {
		--header-height: 50px;
		--site-btn-height: 48px;
		--site-btn-small-height: 40px;
		--site-input-height: 48px;
		--site-container-padding: 15px;
	}
}

/*-------------------------------------------------------------*/
/**
 * CSSリセット
 * 参照元：http: //meyerweb.com/eric/tools/css/reset/
**/
*,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

input.btn,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	font-size: inherit;
	font-family: inherit;
}

/* iOS */
[type="submit"],
[type="button"] {
	border-radius: 0;
	border: none;
	font-size: inherit;
	font-family: inherit;
	cursor: pointer;
}

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

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


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

.select::after {
	content: '\f107';
	color: inherit;
	font-family: "Font Awesome 6 Free";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	font-weight: 700;
	line-height: 1;
	text-rendering: auto;
	position: absolute;
	right: 1em;
	top: 50%;
	z-index: 5;
	transform: translate(0, -50%) scale(0.75);
	transform-origin: right center;
}

.select select {
	border-radius: 10px;
	border: 1px solid var(--site-c-main);
	background: #fff;
	font-size: inherit;
	font-family: inherit;
	line-height: calc(var(--site-input-height) - 2px);
	height: var(--site-input-height);
	width: 100%;
	padding: 0 2em 0 1em;
	position: relative;
	z-index: 1;
}

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

@media screen and (max-width: 959px) {
	.select select {
		font-size: 12px;
	}
}


/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
	/*transition: 0.6s*/
}

body {
	line-height: 1
}

ol,
ul {
	list-style: none
}

blockquote,
q {
	quotes: none
}

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

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

img {
	margin: 0;
	padding: 0;
	vertical-align: bottom
}

/**
 * 再定義
**/
html,
body {
	scroll-behavior: smooth;
}

html {
	font-size: 62.5%;
}

body {
	color: var(--font-c);
	font-size: 16px;
	font-weight: 400;
	font-family: 'Noto Sans JP', "yugothic", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	line-height: 1.5;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

body>.wrap {
	padding-top: var(--header-height);
	overflow: hidden;
}

table {
	letter-spacing: 0;
	empty-cells: show
}

tbody {
	position: unset
}

table tr,
table th,
table td {
	empty-cells: show;
	transition: 0.6s;
	position: unset
}

input,
select,
textarea {
	font-size: 90%;
	background: none;
	transition: 0.6s
}

[type="checkbox"],
[type="radio"] {
	width: 18px;
	height: 18px;
	margin: 1px 5px 0 0
}

::placeholder {
	color: rgba(0, 0, 0, 0.4)
}

p {
	color: inherit;
	line-height: inherit;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}

a:hover {
	opacity: 0.75;
}

img {
	border: none;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: block;
	vertical-align: bottom;
	transition: 0.6s
}

/**
 * font color
**/
.fc__color {
	color: var(--site-c-main)
}

.fc__pink {
	color: #88d9d5;
}

.fc__red {
	color: #CE0D0D;
}

.fc__blue {
	color: #aee5d8;
}

/**
 * background color
**/
.bg__color {
	background: #ebf5ff
}

.bg__gray {
	background: #fafafa
}


/**
 * display
 * NOTE:「表示」を強制させるスタイルではありません。「非表示」を強制させるスタイルです。
**/
/** SP以下のみ表示 **/
@media (min-width: 768px) {

	.sp_disp,
	.sp--disp {
		display: none !important;
	}
}

/** pc以上のみ表示 **/
@media only screen and (max-width: 767px) {

	.pc_disp,
	.pc--disp {
		display: none !important;
	}
}


/**
 * section
**/
section {
	padding: 40px 0;
}

@media only screen and (max-width: 959px) {
	section {
		padding: 40px 0;
	}
}

/**
 * container
**/
.l-container {
	width: 100%;
	max-width: var(--site-container-width);
	margin: 0 auto;
	padding: 0 var(--site-container-padding);
	position: relative;
}


/**
 * display flex
**/
.c-flex {
	display: flex;
	flex-wrap: nowrap;
}

.c-flex--wrap {
	flex-wrap: wrap;
}

.c-flex--between {
	justify-content: space-between;
}

/**
 * subpage-head
**/
.subpage-head {
	padding: 40px 0;
}

.subpage-head .l-container {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
}

.subpage-head .c-head {
	margin-bottom: 0;
}

.subpage-head .c-head__txt {
	font-weight: 500;
	margin: 0;
	opacity: 0.65;
}

.subpage-head *+.c-head__txt {
	margin-top: 1em;
}

/**
 * TITLE
**/
.c-head {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: stretch;
	align-items: stretch;
	margin-bottom: 40px;
	position: relative;
}

*+.c-head {
	margin-top: 80px;
}

.c-head--second {
	margin-top: 80px;
}

.c-head--center {
	align-items: center;
	text-align: center;
}

.c-head__logo {
	/*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
	/*background: #000;*/
	width: 200px;
	margin-bottom: 24px;
	padding: 0;
}

.c-head__logo_bg {
	background: none;
}

.c-head__logo [src*="flow__"] {
	margin-bottom: -24px;
}

@media only screen and (max-width: 959px) {
	.c-head {
		margin-bottom: 28px;
	}

	*+.c-head {
		margin-top: 56px;
	}

	.c-head--second {
		margin-top: 48px;
	}

	.subpage-head {
		padding: 25px 0;
	}
}

@media only screen and (max-width: 767px) {
	.c-head {
		align-items: center;
		text-align: center;
		margin-bottom: 28px;
	}

	*+.c-head {
		margin-top: 40px;
	}

	.c-head--second {
		margin-top: 40px;
	}

	.subpage-head {
		padding: 20px 0 5px;
	}

	.c-head__logo {
		width: 144px;
		margin-bottom: 16px;
	}

	.c-head__logo [src*="flow__"] {
		margin-bottom: -16px;
	}
}

.c-head__ttl {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05ex;
}

.c-head__ttl::before {
	content: attr(data-small);
	display: block;
	color: var(--font-c);
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05ex;
	text-transform: uppercase;
	margin: 0 0 28px;
}

/*
.c-head__ttl::after {
	content: '';
	display: block;
	border-top: solid 2px var(--site-c-main);
	width: 4em;
	margin: 1.5em 0 0;
}
*/
.c-head--center .c-head__ttl {
	margin-left: auto;
	margin-right: auto;
}

.c-head--center .c-head__ttl::before {
	margin-left: auto;
	margin-right: auto;
}

/*
.c-head--center .c-head__ttl::after {
	margin-left: auto;
	margin-right: auto;
}
*/
.c-head__ttl:not([data-small])::before,
.c-head__ttl[data-small=""]::before {
	display: none;
}

.c-head__ttl.text--only-jp {
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 0.05ex;
}

.c-head__ttl.text--only-jp::before {
	display: none;
}

.c-head__ttl.text--only-jp::after {
	display: none;
}

.c-head__ttl.text--only-jp:not([data-small])::before,
.c-head__ttl.text--only-jp[data-small=""]::before {
	display: none;
}

@media only screen and (max-width: 1400px) {
	.c-head__ttl {
		font-size: 28px;
		line-height: 28px;
	}

	.c-head__ttl::before {
		font-size: 60px;
		margin: 0 0 28px;
	}

	.c-head__ttl.text--only-jp {
		font-size: 28px;
	}
}

@media only screen and (max-width: 959px) {
	.c-head__ttl {
		font-size: 22px;
		line-height: 22px;
	}

	.c-head__ttl::before {
		font-size: 48px;
		margin: 0 0 22px;
	}

	.c-head__ttl.text--only-jp {
		font-size: 22px;
	}
}

@media only screen and (max-width: 767px) {
	.c-head__ttl {
		font-size: 18px;
		line-height: 1.75;
		margin-left: auto;
		margin-right: auto;
	}

	.c-head__ttl::before {
		font-size: 36px;
		margin: 0 auto 12px;
	}

	.c-head__ttl.text--only-jp {
		font-size: 18px;
	}
}

.c-head__ttl--link {}

.c-head__ttl--link.btn,
.c-head__ttl--link {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	margin: 0;
}

.c-head__ttl--link>a:hover {
	color: #fff;
	background: var(--site-c-main);
}

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

	.c-head__ttl--link.btn,
	.c-head__ttl--link {
		width: 180px;
	}
}

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

	.c-head__ttl--link.btn,
	.c-head__ttl--link {
		width: 96px;
	}

	.c-head__ttl--link a {
		height: 56px;
	}
}

.c-head__txt {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0.05ex;
	opacity: 0.65;
	margin-top: 16px;
}

*+.c-head__txt {
	margin-top: 2em;
}


/**
 * button
**/
.btn {
	display: block;
	/* AdminLTE使用時のbootstrap解除 */
	border-radius: 0;
	/* AdminLTE使用時のbootstrap解除 */
	border: none;
	/* AdminLTE使用時のbootstrap解除 */
	background: transparent;
	/* AdminLTE使用時のbootstrap解除 */
	color: inherit;
	/* AdminLTE使用時のbootstrap解除 */
	font-weight: 500;
	text-align: center;
	max-width: 256px;
	width: 100%;
	height: auto;
	/* AdminLTE使用時のbootstrap解除 */
	margin: 40px auto 0;
	padding: 0;
	/* AdminLTE使用時のbootstrap解除 */
	position: static;
	/* AdminLTE使用時のbootstrap解除 */
}

label.btn {
	transition: all 0.2s ease;
	cursor: pointer;
	/* ここにcursorプロパティ、transitionプロパティ以外の記述禁止 */
}

label.btn:hover {
	opacity: 0.75;
	/* ここにopacityプロパティ以外の記述禁止 */
}



.btn a,
.btn input,
.btn button,
.btn>span {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	border-radius: 3em;
	border: solid 1px var(--site-c-main);
	background: #fff;
	color: var(--site-c-main);
	font-feature-settings: 'palt';
	font-weight: 500;
	text-align: center;
	width: 100%;
	height: var(--site-btn-height);
	padding-inline: 1em;
	position: relative;
}

.btn a::after {
	/* content: ''; */
	display: block;
	border-top: 2px solid;
	border-right: 2px solid;
	width: 8px;
	height: 8px;
	margin-left: 0;
	transform: translate(0, -50%) rotate(45deg);
	position: absolute;
	right: 1em;
	top: 50%;
	pointer-events: none;
}

.btn a:focus,
.btn input:focus,
.btn button:focus,
.btn>span:focus,
.btn a:hove,
.btn input:hove,
.btn button:hove,
.btn>span:hove {
	background: #44bdf2;
}

@media only screen and (max-width: 959px) {
	.btn {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 767px) {
	.btn {
		margin-top: 30px;
	}
}


.btn--small {
	display: block;
	/* AdminLTE使用時のbootstrap解除 */
	border-radius: 0;
	/* AdminLTE使用時のbootstrap解除 */
	border: none;
	/* AdminLTE使用時のbootstrap解除 */
	background: transparent;
	/* AdminLTE使用時のbootstrap解除 */
	color: inherit;
	/* AdminLTE使用時のbootstrap解除 */
	height: auto;
	/* AdminLTE使用時のbootstrap解除 */
	padding: 0;
	/* AdminLTE使用時のbootstrap解除 */
	position: static;
	/* AdminLTE使用時のbootstrap解除 */
	max-width: 256px;
	width: 100%;
}

.btn--small a,
.btn--small button,
.btn--small input,
.btn--small>span {
	border-radius: 3em;
	border: 1px solid var(--site-c-main);
	background: #fff;
	color: var(--site-c-main);
	font-size: 12px;
	font-weight: 700;
	width: 100%;
	height: var(--site-btn-small-height);
	padding-inline: 1em;
	position: relative;
}

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

	.btn--small a,
	.btn--small button,
	.btn--small input,
	.btn--small>span {
		font-size: 10px;
	}
}

.btn--like a,
.btn--like a:hover {
	border: 1px solid #E9F1F4;
	background: #fff;
	color: var(--site-c-main);
	font-weight: 600;
}

.btn--like a::before {
	display: none;
}

.btn--like a::after {
	content: '\f004';
	color: #E1F3F8;
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	font-weight: 700;
	line-height: 1;
	text-rendering: auto;

	border: none;
	width: auto;
	height: auto;
	margin: 0;
	transform: translate(0, -50%);
	position: absolute;
	right: 1em;
	top: 50%;
}

.btn--like a:focus::before,
.btn--like a:hover::before,
.btn--likeoff a::before,
.btn--like a:focus::after,
.btn--like a:hover::after,
.btn--likeoff a::after {
	color: var(--site-c-main-hue);
}

.btn--message a {
	border: 1px solid var(--site-c-main);
	background: #fff;
	color: var(--site-c-main);
}

.btn--message a::before {
	content: "";
	display: inline-block;
	background: url("../images/icon__btn--message.png") center center / 100% no-repeat;
	background-color: transparent;
	width: 15px;
	height: 15px;
	position: relative;
	top: 0;
	right: 5px;
	transition: all 0.2s ease;
}

.btn--message a:focus,
.btn--message a:hover {
	background: #edf9ff;
}

/* button color */
.btn--plain {}

.btn--plain a,
.btn--plain input,
.btn--plain button,
.btn--plain>span {
	border: solid 1px var(--site-c-main);
	background: #fff;
	color: var(--site-c-main);
}

.btn--plain a:focus,
.btn--plain input:focus,
.btn--plain button:focus,
.btn--plain>span:focus,
.btn--plain a:hove,
.btn--plain input:hove,
.btn--plain button:hove,
.btn--plain>span:hove {
	border: solid 1px var(--site-c-main);
	background: #fff;
	color: var(--site-c-main);
}


.btn--fill {}

.btn--fill a,
.btn--fill input,
.btn--fill button,
.btn--fill>span {
	border: solid 1px var(--site-c-main);
	background: var(--site-c-main);
	color: #fff;
}

.btn--fill a:focus,
.btn--fill input:focus,
.btn--fill button:focus,
.btn--fill>span:focus,
.btn--fill a:hove,
.btn--fill input:hove,
.btn--fill button:hove,
.btn--fill>span:hove {
	border: solid 1px var(--site-c-main);
	background: var(--site-c-main);
	color: #fff;
}



.btn-over-txt {
	text-align: center;
	width: 100%;
	margin-bottom: 10px;
}

.btn-over-txt a {
	color: var(--site-c-main);
}

.btn-over-txt a:hover {
	text-decoration: underline;
}

.btn-under-txt {
	text-align: center;
	width: 100%;
	margin-top: 20px;
}

.btn-under-txt a {
	color: var(--site-c-main);
}

.btn-under-txt a:hover {
	text-decoration: underline;
}

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


/** 横並びボタン **/
.box_buttons {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.box_buttons .btn {
	width: 49%;
	max-width: none;
}

.box_buttons .btn--small {
	width: auto;
	margin: 10px 5px 5px 0;
	display: block;
}

.box_buttons .btn a:hover {
	color: #fff;
	background: var(--site-c-main);
}

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


/**
 * link
**/
.link {
	color: var(--site-c-main);
}

.link.link--blank::after {
	content: '';
	display: inline-block;
	background-image: url("/common/images/icon-blank.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 1em;
	height: 1em;
	margin: 0 0 0 1ex;
	vertical-align: baseline;
	transform: translate(0, 16.666%);
}


/**
 * swipe
**/
@media only screen and (max-width: 767px) {
	.swipe {
		width: auto;
		padding: 10px;
		display: block;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
		overflow: auto
	}
}


/**
 * form formset
**/
.formset {}

@media screen and (min-width: 768px) {
	.formset {
		border-radius: 5px;
		border: 1px solid #D6D6D6;
		background: #fff;
		box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
		margin-bottom: 30px;
		padding: 40px;
	}
}

@media screen and (max-width: 767px) {
	.formset {
		padding-bottom: 20px;
	}
}

.formset__item {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}

*+.formset__item {
	margin-top: 20px;
}

@media screen and (max-width: 767px) {
	.formset__item {
		flex-flow: column nowrap;
		align-items: stretch;
	}
}

.formset__ttl {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	/* align-content: center; */
	align-items: flex-start;
	font-weight: 700;
	width: 320px;
	padding: 1em 0 0 1em;
	gap: 0;
	font-size: 1.4rem;
}

.formset__input {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	width: 100%;
	padding: 0 1em;
}

.formset__input__box {
	width: 100%;
	margin-top: 15px;
	border-bottom: solid 1px #eee;
	padding-bottom: 20px;
}

.formset__input__box_link {
	width: 100%;
	margin-top: 3px;
	border-bottom: solid 1px #eee;
	padding-bottom: 20px;
}

@media only screen and (max-width: 959px) {
	.formset__ttl {
		width: 200px;
	}
}

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

	.formset__ttl,
	.formset__input {
		width: auto;
	}

	.formset__input {
		padding: 1em 1em 0;
	}
}

.formset__ttl span {
	background: var(--site-c-main);
	color: #edf9ff;
	font-weight: bold;
	margin-left: 10px;
	font-size: 12px;
	padding: 2px 7px;
	border-radius: 5px;
}

.formset__must {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	background: var(--site-c-red);
	color: #fff;
	font-size: 10px;
	height: 20px;
	padding: 0 8px;
}

.formset__ttl .formset__must {
	margin: 0 0 0 auto;
}

.formset__input .formset__must {
	margin: 0;
}

.formset__input *+.formset__must {
	margin-left: 1ex;
}

.formset__input img {
	border-radius: 5px;
	width: 180px;
	height: 180px;
	margin-bottom: 10px;
	object-fit: cover;
}

@media screen and (max-width: 767px) {
	.formset__input img {
		width: 120px;
		height: 120px;
	}
}

.formset__input ul li {
	display: inline-flex;
	margin: 0 10px 10px 0
}

.formset__list {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}

.formset__list.formset__list--col {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: stretch;
}

.formset__input .formset__list li {
	display: block;
	margin: 0;
}

.input_select,
.formset__input [type="text"],
.formset__input [type="number"],
.formset__input [type="email"],
.formset__input [type="password"],
.formset__input [type="date"],
textarea {
	width: 100%;
	max-width: 500px;
	padding: 15px;
	font-size: 16px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px
}

.formset__input [type="number"],
.input_select {
	width: auto
}

textarea {
	max-width: none;
}

.formset__btn {
	margin-left: auto;
	margin-right: auto;
}

.formset__btn.btn * {
	transition: .6s;
}

.formset__btn.btn *:hover {
	background: var(--site-c-main);
	color: #fff;
}

.formset__btn_txt {
	text-align: center;
	margin-top: 20px;
	font-size: smaller;
	opacity: 0.65;
}

.formset__item.formset__loginpass .formset__ttl {
	padding-bottom: 20px;
}

.formset__btn--back {
	margin-top: 10px;
}

.formset__btn--back button {
	color: var(--site-c-main);
	background: #fff;
	border: 1px solid var(--site-c-main);
}

.formset__btn--back button:hover {
	background: #edf9ff;
}

.txt-delete {
	top: -3px;
}

.check-delete {
	margin-left: 1em;
}

.attention_koukai {
	padding-top: 50px;
	padding-bottom: 10px;
	opacity: 0.65;
}

a.link__underline {
	text-decoration: underline;
}

a.link__underline:hover {
	text-decoration: none;
}

/**
 * form tableset
**/
.tableset {
	width: 100%;
	background: #fff
}

@media screen and (min-width: 768px) {
	.tableset {
		margin-bottom: 30px;
		padding: 40px;
		border: 1px solid #D6D6D6;
		border-radius: 5px
	}
}

.tableset__list {
	width: 100%;
	display: table;
	text-align: left;
}

*+.tableset__list {
	border-top: 1px solid #D6D6D6;
}

.tableset__ttl {
	width: 320px;
	display: table-cell;
	vertical-align: middle;
	padding: 20px 40px;
	font-weight: 700
}

.tableset__must {
	height: 20px;
	padding: 0 8px;
	color: #fff;
	font-size: 10px;
	background: #ec5937;
	border-radius: 5px;
	float: right;
	display: flex;
	align-items: center;
	justify-content: center
}

.tableset__txt {
	display: table-cell;
	word-break: break-all;
	padding: 20px
}

.tableset__txt img {
	width: 180px;
	height: 180px;
	margin-bottom: 10px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
	border-radius: 5px
}

.tableset__txt ul li {
	display: inline-flex;
	margin: 0 10px 10px 0
}

.input_select,
.tableset__txt [type="text"],
.tableset__txt [type="email"],
.tableset__txt [type="password"],
textarea {
	width: 100%;
	max-width: 500px;
	padding: 15px;
	font-size: 16px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px
}

.input_select {
	width: auto
}

textarea {
	max-width: none
}

.tableset__btn {
	margin-left: auto;
	margin-right: auto
}

@media only screen and (max-width: 959px) {
	.tableset__ttl {
		width: 210px
	}
}

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

	.tableset__ttl,
	.tableset__txt {
		width: 100%;
		display: block;
		padding: 0 0 20px
	}

	.tableset__txt img {
		width: 120px;
		height: 120px
	}
}

/**
 * form error
**/
span.jquery-validate--error {
	display: block;
	color: #e73656;
	margin-bottom: .5em;
}

/**
 * エフェクト
**/
/* fade in */
/* .effect-fade:not(.effect-fade-in-no-slide) {
	opacity: 0;
	transform: translate(0, 135px);
	transition: all 1000ms;
}
.effect-fade-2:not(.effect-fade-in-no-slide) {transform: translate(0, 135px)}
.effect-fade-3:not(.effect-fade-in-no-slide) {transform: translate(0, 135px)}
.effect-fade-4:not(.effect-fade-in-no-slide) {transform: translate(0, 180px)}
.effect-fade-5:not(.effect-fade-in-no-slide) {transform: translate(0, 225px)}
.effect-fade-6:not(.effect-fade-in-no-slide) {transform: translate(0, 270px)}
.fade-t:not(.effect-fade-in-no-slide) {transform: translate(0, -135px)}
.fade-r:not(.effect-fade-in-no-slide) {transform: translate(135px, 0)}
.fade-l:not(.effect-fade-in-no-slide) {transform: translate(-135px, 0)} */

/* .effect-fade.effect-scroll:not(.effect-fade-in-no-slide) {
	opacity: 1;
	transform: translate(0, 0);
} */


/* .effect-fade.effect-fade-in-bottom:not(.effect-fade-in-no-slide) {
	opacity: 0;
	transform: translate(0, 135px);
	transition:
		opacity 1000ms ease-out,
		transform 1000ms ease-out;
} */
/* .effect-fade.effect-scroll.effect-fade-in-bottom:not(.effect-fade-in-no-slide) {
	opacity: 1;
	transform: translate(0, 0);
} */
/* .effect-fade.effect-fade-in-no-slide {
	opacity: 0;
	transition: opacity 1000ms ease-out;
} */
/* .effect-fade.effect-scroll.effect-fade-in-no-slide {
	opacity: 1;
} */
.popup_mcontact {
	top: 0 !important;
	left: 0 !important;
}

#popup_mcontact iframe {
	width: 100vw;
	height: 100vw;
}


/*------------------------------------------------------------------
 vendor, javascript
------------------------------------------------------------------ */

/* mbase アコーディオン
--------------------------------- */
[data-acc-head][data-acc-head][data-acc-head]+* {
	display: none;
}



/* mbase アコーディオン（検索一覧専用）
--------------------------------- */
/* NOTE: @media only screen and (max-width: 959px)のブレークポイントの数値をJS側（common.js）と合わせる必要があります。 */
@media only screen and (max-width: 959px) {
	[data-search-acc-head][data-search-acc-head][data-search-acc-head]+* {
		display: none;
	}

	[data-search-acc-body][data-search-acc-body][data-search-acc-body] {
		display: none;
	}
}


/* slick
--------------------------------- */

.slick-slider .slick-prev,
.slick-slider .slick-next {
	display: block;
	border: none;
	outline: none;
	background: transparent;
	color: transparent;
	font-size: 0;
	line-height: 0;
	width: 40px;
	height: 40px;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: auto;
	left: auto;
	transform: translate(0, -200%);
	opacity: 1;
	cursor: pointer;
}

.slick-slider .slick-prev {
	right: 50px;
}

.slick-slider .slick-next {
	right: 0;
}

.slick-slider .slick-prev::before,
.slick-slider .slick-next::before {
	content: '\f105';
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Font Awesome 6 Free";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	font-weight: 700;
	line-height: 1;
	text-rendering: auto;
	border-radius: 50%;
	background: var(--site-c-gray);
	color: #fff;
	width: 40px;
	height: 40px;
	opacity: 1;
}

.slick-slider .slick-prev::before {
	content: '\f104';
}

.slick-slider .slick-next::before {
	content: '\f105';
}

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

	.slick-slider .slick-prev,
	.slick-slider .slick-next {
		width: 40px;
		height: 40px;
		transform: translate(0, -200%);
	}

	.slick-slider .slick-prev {
		right: 50px;
	}

	.slick-slider .slick-next {
		right: 0;
	}

	.slick-slider .slick-prev::before,
	.slick-slider .slick-next::before {
		width: 40px;
		height: 40px;
	}
}

/* 忍者ツールズ
--------------------------------- */
@media screen and (max-width: 767px) {

	.ninja_onebutton_output_overlay,
	.ninja_onebutton_output_overlay.show {
		display: table !important;
		/* NOTE: .showがbootstrapとコンフリクトしているため、!importantが必要です。 */
		width: 100%;
		top: auto;
		right: auto;
		bottom: 0;
		left: 0;
	}
}

/* NOTE: twitterをXに変更 */
.ninja_onebutton_output_overlay .twitter,
.ninja_onebutton_output_responsive .twitter,
.st-wrapper .ninja_onebutton_output_overlay .twitter,
.st-wrapper .ninja_onebutton_output_responsive .twitter,
.ninja_onebutton_output_overlay .twitter,
.ninja_onebutton_output_responsive .twitter {
	/* default style */
	/*background-color: #55acee;*/
	/*color: #ffffff;*/
	background-color: #444 !important;
	color: rgba(0, 0, 0, 0) !important;
}

.st-wrapper .ninja_onebutton_output_overlay [class*='onebtn_overlay'].twitter::before,
.st-wrapper .ninja_onebutton_output_responsive [class*='onebtn_responsive_'].twitter::before,
.ninja_onebutton_output_overlay [class*='onebtn_overlay'].twitter::before,
.ninja_onebutton_output_responsive [class*='onebtn_responsive_'].twitter::before {
	/* default style */
	/*content: "\e606";*/
	/*font-family: 'omatome_icomoon', sans-serif;*/
	/*vertical-align: middle;*/
	/* X logo mark svg */
	/* NOTE:
    URLデコードなので直接文言変更でSVGを編集出来ます。
    「fill%3D%22white」というキーワードを探して色を変更してください。
    「white」の部分に色をCSSの記法で指定できます。
    例えば#333などは、%23333です。「%23」が「#」
  */
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%201200%201227%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M714.163%20519.284L1160.89%200H1055.03L667.137%20450.887L357.328%200H0L468.492%20681.821L0%201226.37H105.866L515.491%20750.218L842.672%201226.37H1200L714.137%20519.284H714.163ZM569.165%20687.828L521.697%20619.934L144.011%2079.6944H306.615L611.412%20515.685L658.88%20583.579L1055.08%201150.3H892.476L569.165%20687.854V687.828Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E');
	background-position: center center;
	background-repeat: no-repeat;
	background-color: transparent;
	background-size: contain;
	color: rgba(0, 0, 0, 0);
	/* NOTE: 元のアイコンを非表示 */
}

.outline__range__must {
	margin-left: 1em;
	background-color: #FFF;
	color: var(--site-c-main);
	font-weight: bold;
	margin-left: 10px;
	font-size: 12px;
	padding: 2px 7px;
	border-radius: 5px;
}

.formset__item .outline__range {
	width: 100%;
}

.formset__item .outline__range>dt {
	width: 14em;
}

.formset__item .outline__range ol {
	background-image: none;
}

.formset__item .slider-group {
	width: 100%;
}

.formset__item .slider-container input[type="range"] {
	height: 4px;
}

@media screen and (max-width: 767px) {
	.outline__range__must {
		font-size: 11px;
		padding: 1px 5px;
		border-radius: 3px;
	}
}

.mlist25p {
	border: solid 1px #ccc;
	padding: 1rem 1rem 0;
	margin: .5rem 0;
	border-radius: 5px;
}
