@charset "utf-8";

/*---------------------------
メイン#11bdbd
背景#eefbfa
背景#d4f4f2
背景#eafcfb
グレー#e6e6e6 #f5f5f5 #bfd9d9
黄色#faf45d
文字色#4d4d4d
暗色#11a3a3 #0c8484
ピンク#FB5483 #f06666 #fb728c
---------------------------*/
/*------------------------------
  リセット
------------------------------*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
}

::before, ::after {
	box-sizing: inherit;
}

summary, ul, ol {
	list-style: none;
	display: block;
}

summary::-webkit-details-marker {
	display: none;
}

button, input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea, select {
	background: none;
	border: none;
	outline: none;
	appearance: none;
	font-size: 1rem;
	font-size: calc(1rem * 1.6);
	-webkit-appearance: none;
	-moz-appearance: none;
}

iframe {
	border: none;
	overflow: hidden;
}

/*------------------------------
  共通設定
------------------------------*/
html {
	scroll-behavior: smooth;
	scroll-padding-top: 70px;
	font-size: 14px;
	line-height: 1.4;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

body {
	background: #fff;
	color: #4d4d4d;
}

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

p, blockquote {
	line-height: 1.6;
}

p:not(:last-child) {
	margin-bottom: 1em;
}

a {
	color: #11bdbd;
	text-decoration: none;
}

a:hover {
	color: #fb728c;
}

a, button, summary, label {
	cursor: pointer;
}

button:disabled {
	cursor: default;
}

table {
	margin: 1em 0;
	font-size: 1em;
	width: 100%;
}

table, th, td {
	border-collapse: collapse;
	padding: 0.5em;
}

th, td {
	vertical-align: top;
}

caption {
	font-weight: bold;
	text-align: left;
	margin-bottom: 0.5em;
}

h4, h5, h6 {
	font-size: 1em;
}

input, select {
	max-width: 100%;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea, select {
	background-color: #fff;
	border: 1px solid #bfd9d9;
	border-radius: 5px;
	padding: 0.5em;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
	border: 1px solid #11bdbd;
	outline: none;
}

select {
	padding-right: 2.5em;
	background: url("/assets/images/common/img/ico-expand_more.svg#gray") no-repeat center right 1em / 1em 1em;
}

select:focus {
	background-image: url("/assets/images/common/img/ico-expand_more.svg");
}

::placeholder {
	color: #bfd9d9;
}

:focus-visible {
	outline: 3px solid #fb728c !important;
	outline-offset: 3px;
}

/*AGX追加 start*/
button, input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea, select {
	outline: none !important;
}

select:focus, textarea:focus {
	outline: none !important;
}

/*AGX追加 end*/
/*------------------------------
  機能
------------------------------*/
/** #js-gotop, #js-loadingは、LWC側はidセレクタでcssを充てられないためclass指定を追加 */
#js-gotop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	text-align: center;
	background: #11bdbd url("/assets/images/common/img/ico-expand_less.svg#white") no-repeat top 10px center / 15px 15px;
	padding-top: 30px;
	color: #fff;
	font-size: 12px;
	z-index: 1;
}

.js-gotop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	text-align: center;
	background: #11bdbd url("/assets/images/common/img/ico-expand_less.svg#white") no-repeat top 10px center / 15px 15px;
	padding-top: 30px;
	color: #fff;
	font-size: 12px;
	z-index: 1;
}

@media (hover: hover) {
	#js-gotop:hover {
		background: #faf45d url("/assets/images/common/img/ico-expand_less.svg") no-repeat top 10px center / 15px 15px;
		color: #11bdbd;
	}
}

@media (hover: hover) {
	.js-gotop:hover {
		background: #faf45d url("/assets/images/common/img/ico-expand_less.svg") no-repeat top 10px center / 15px 15px;
		color: #11bdbd;
	}
}

#js-loading {
	background: rgba(255, 255, 255, 0.8);
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.js-loading {
	background: rgba(255, 255, 255, 0.8);
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
}

#js-loading.loaded {
	display: none;
}

.js-loading.loaded {
	display: none;
}

#js-loading .wrap-spinner {
	animation-name: loading0;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

.js-loading .wrap-spinner {
	animation-name: loading0;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

#js-loading .spinner {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background-color: #11bdbd;
	border-radius: 50%;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

.js-loading .spinner {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background-color: #11bdbd;
	border-radius: 50%;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

#js-loading .spinner:first-child {
	animation-name: loading1;
}

.js-loading .spinner:first-child {
	animation-name: loading1;
}

#js-loading .spinner:last-child {
	animation-name: loading2;
}

.js-loading .spinner:last-child {
	animation-name: loading2;
}

@keyframes loading0 {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes loading1 {
	50% {
		transform: translateX(-8px);
	}
}

@keyframes loading2 {
	50% {
		transform: translateX(8px);
	}
}

.js-tooltip {
	position: relative;
	z-index: 1;
}

.js-tooltip:hover::after {
	content: attr(data-style-tooltip);
	position: absolute;
	top: -3em;
	left: 50%;
	transform: translateX(-50%);
	background: #4d4d4d;
	color: #fff;
	border-radius: 5px;
	padding: 0.3em 0.5em;
	display: inline-block;
	white-space: nowrap;
	font-size: smaller;
}

.js-tooltip:hover::before {
	content: '';
	position: absolute;
	top: -0.9em;
	left: 50%;
	margin-left: -0.5em;
	border: 0.5em solid transparent;
	border-top: 0.5em solid #4d4d4d;
}

.js-accordion summary {
	position: relative;
	padding-right: 20px;
}

.js-accordion summary::after, .js-accordion summary::before {
	content: "";
	position: absolute;
	width: 2px;
	height: 12px;
	background-color: #4d4d4d;
	transition: all 0.3s;
	top: calc(50% - 6px);
	right: 0.5em;
}

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

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

.js-accordion .content {
	overflow: hidden;
	padding-top: 1em;
	height: auto;
	opacity: 1;
	visibility: visible;
	transition: all 0.3s;
}

.js-accordion:not(.is-opened) > .content {
	height: 0;
	opacity: 0;
	visibility: hidden;
	padding-top: 0;
}

.js-tab .tab-menu {
	display: flex;
}

.js-tab .tab-menu-item {
	cursor: pointer;
}

.js-tab .tab-panel-box {
	display: none;
}

.js-tab .tab-panel-box.is-show {
	display: block;
}

/*------------------------------
  レイアウト
------------------------------*/
@media (min-width: 768px) {
	.wrap {
		display: grid;
		grid-template-columns: 1fr minmax(auto, 920px) 280px 1fr;
	}

	.header-site {
		display: grid;
		grid-template-columns: subgrid;
		grid-column: 1/5;
		position: sticky;
		top: 0;
		height: 70px;
	}

	main {
		grid-column: 2/3;
	}

	.no-sidebar main {
		grid-column: 2/4;
	}

	.sidebar {
		grid-column: 3/4;
		grid-row: 2/3;
		padding-left: 40px;
	}

	.append {
		grid-column: 2/4;
	}

	.append-full {
		grid-column: 1/5;
	}

	.footer-site {
		display: grid;
		grid-template-columns: subgrid;
		grid-column: 1/5;
	}

	.header-site-left {
		grid-column: 2/3;
	}

	.header-site-right {
		grid-column: 3/4;
		padding-left: 40px;
	}

	.footer-site-left {
		grid-column: 2/3;
	}

	.footer-site-right {
		grid-column: 3/4;
		padding-left: 40px;
	}

	.footer-copyright {
		grid-column: 2/4;
	}
}

main {
	margin-top: 20px;
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.sidebar-sticky {
		position: sticky;
		top: 65px;
		z-index: 1;
		background-color: #fff;
		padding-top: 20px;
	}
}

/* SP用余白 */
@media (max-width: 999px) {
	.header-site {
		padding-left: 15px;
		padding-right: 15px;
	}

	.footer-site, .append-full {
		padding-left: 20px;
		padding-right: 20px;
	}

	main, .sidebar, .append {
		margin-left: 20px;
		margin-right: 20px;
	}

	.sidebar {
		margin-top: 20px;
	}
}

/*------------------------------
  ヘッダー　.header-site
------------------------------*/
.header-site {
	position: sticky;
	top: 0;
	height: 65px;
	background-color: #fff;
	box-shadow: 0px 2px 3px 0px rgba(155, 190, 190, 0.5);
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

@media (min-width: 768px) {
	.header-site {
		/* display: inherit; */
		display: flex;
	}
}

.header-site h1 {
	margin-right: 15px;
	display: flex;
	align-items: center;
	flex-shrink: 1;
}

.header-site h1 img {
	display: block;
}

@media (min-width: 768px) {
	.header-site h1 img {
		width: 160px;
	}
}

.header-site-login {
	display: flex;
	font-size: 0.9em;
	margin-right: 50px;
}

.header-site-login .btn-member-registration, .header-site-login .btn-member-login {
	padding: 0.2em 0.8em;
}

.header-site-login .btn-member-registration {
	margin-right: 5px;
}

@media (min-width: 768px) {
	.header-site-login {
		justify-content: space-between;
		margin-right: 0;
	}

	.header-site-login .btn-member-registration, .header-site-login .btn-member-login {
		width: 110px;
		text-align: center;
	}

	.header-site-left {
		display: flex;
		align-content: center;
		justify-content: space-between;
	}
}

/* メニュー */
.header-site-login {
	z-index: 1;
}

.gnavi .gnavi-menu-container {
	z-index: 2;
}

.gnavi.toggled .gnavi-menu-container::before {
	z-index: 3;
}

.header-site h1 {
	z-index: 4;
	position: relative;
}

.gnavi-toggle {
	z-index: 5;
}

.gnavi-toggle {
	border-radius: 0;
	width: 65px;
	height: 65px;
	position: absolute;
	top: 0;
	right: 0;
}

.gnavi-toggle svg line {
	fill: none;
	stroke: #11bdbd;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2px;
	transition: transform 0.2s ease;
}

.gnavi-toggle svg line.top {
	transform-origin: 32px 20px;
}

.gnavi-toggle svg line.bottom {
	transform-origin: 32px 44px;
}

.toggled .gnavi-toggle svg line.top {
	transform: translate(0px, 12px) rotate(45deg);
}

.toggled .gnavi-toggle svg line.bottom {
	transform: translate(0px, -12px) rotate(-45deg);
}

.toggled .gnavi-toggle svg line.middle {
	opacity: 0;
}

.gnavi .gnavi-menu-container {
	width: 100%;
	height: 100dvh;
	overflow: auto;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #f2f2f2;
	transition: transform 0.2s ease-out;
	transition-delay: 0.1s;
	transform: translateY(-110vh);
	padding: 0px 20px 20px 20px;
}

.gnavi.toggled .gnavi-menu-container {
	transform: translateY(0px);
}

.gnavi.toggled .gnavi-menu-container::before {
	content: "";
	background-color: #f2f2f2;
	width: 100%;
	height: 70px;
	display: block;
	position: sticky;
	top: 0;
	left: 0;
}

body.toggled {
	/* height: 100%;
	overflow: hidden; */
	position: fixed;
	left: 0;
	width: 100%;
}

.header-site .btn-member-registration,
.header-site .btn-member-login {
	border-radius: 100vh;
	padding: 0.2em 1em;
}

.header-site .btn-member-registration {
	background-color: #11bdbd;
	color: #faf45d;
}

@media (hover: hover) {
	.header-site .btn-member-registration:hover {
		background-color: #faf45d;
		color: #11bdbd;
	}
}

.gnavi-login .btn-member-registration, .gnavi-login .btn-member-login {
	padding: 0.5em;
	width: 80%;
	text-align: center;
}

.gnavi-menu {
	margin-bottom: 20px;
}

.gnavi-menu a, .gnavi-menu label {
	display: block;
	color: #4d4d4d;
	padding: 0.5em 0;
	font-size: 1.2rem;
	font-size: calc(1.2rem * 1.4);
	font-weight: bold;
	border-bottom: 1px solid #4d4d4d;
}

.gnavi-menu ul a {
	/* font-size: 1rem; */
	font-size: (1rem * 1.4);
	font-weight: normal;
	border-bottom: 1px dashed #ccc;
}

.gnavi-menu label {
	position: relative;
	padding-right: 40px;
}

.gnavi-menu label::after, .gnavi-menu label::before {
	content: "";
	position: absolute;
	width: 2px;
	height: 12px;
	background-color: #4d4d4d;
	transition: all 0.3s;
	top: calc(50% - 6px);
	right: 20px;
}

.gnavi-menu label::after {
	transform: rotate(90deg);
}

.gnavi-menu input {
	display: none;
}

.gnavi-menu ul {
	max-height: 0;
	overflow-y: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}

.gnavi-menu input[type="checkbox"]:checked ~ label ~ .gnavi-menu-child ul {
	max-height: 100vh;
	overflow-y: visible;
	transition: all 1.5s;
}

.gnavi-menu input[type="checkbox"]:checked ~ label::before {
	transform: rotate(90deg);
}

.gnavi-seminar {
	margin-bottom: 20px;
}

.gnavi-seminar li {
	margin-top: 10px;
}

.gnavi-seminar a {
	background: #fff url("/assets/images/common/img/ico-arrow_right_circle.svg") no-repeat bottom 10px right 10px / 20px 20px;
	display: block;
	padding: 10px;
	border-radius: 5px;
}

.gnavi-seminar-date {
	font-size: smaller;
	color: #4d4d4d;
	border-top: 1px dashed #ccc;
	display: block;
	margin: 0.3em 30px 0 0;
	padding-top: 0.3em;
}

.gnavi-footer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em 1em;
}

.gnavi-footer a {
	color: #4d4d4d;
}

@keyframes anim-gnavi-pulldown {
	0% {
		opacity: 0;
		top: -1em;
	}

	100% {
		opacity: 1;
		top: 0;
	}
}

@media (min-width: 1001px) {
	.gnavi-toggle {
		display: none;
	}

	.gnavi .gnavi-menu-container {
		transform: none;
		width: auto;
		height: auto;
		padding: 0;
		position: static;
		background: none;
		overflow: visible;
	}

	.gnavi.toggled .gnavi-menu-container::before {
		display: none;
	}

	.gnavi-login {
		display: none;
	}

	.gnavi-seminar {
		display: none;
	}

	.gnavi-footer {
		display: none;
	}

	.gnavi-menu label::after, .gnavi-menu label::before {
		display: none;
	}

	.gnavi-menu {
		display: flex;
		margin-bottom: 0;
	}

	.gnavi-menu > li {
		margin-left: 20px;
	}

	.gnavi-menu-child {
		position: relative
	}

	.gnavi-menu ul {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		background: #fff;
		z-index: -2;
		width: 13em;
		background: #fff url("/assets/images/common/img/deco-border.svg") no-repeat top center;
		padding: 15px 15px 10px 15px;
		border-radius: 0 0 5px 5px;
		box-shadow: 0px 2px 3px 0px rgba(155, 190, 190, 0.5);
		display: none;
	}

	.gnavi-menu a, .gnavi-menu label {
		padding: 0.5em 0;
		/* font-size: 0.9rem; */
		font-size: calc(0.9rem * 1.6);
		border-bottom: none;
	}

	.gnavi-menu a:hover, .gnavi-menu label:hover {
		color: #11bdbd;
	}

	.gnavi-menu li:hover ul, .gnavi-menu li:focus-within ul {
		max-height: inherit;
		display: block;
		animation-name: anim-gnavi-pulldown;
		animation-duration: 0.3s;
	}

	.gnavi-menu ul a {
		/* font-size: 1rem; */
		font-size: calc(1rem * 1.6);
		font-weight: normal;
	}

	.gnavi-menu ul li:last-child a {
		border: none;
	}
}

/*------------------------------
  コンテンツ　main [幅：920px]
------------------------------*/
.breadcrumb {
	background-color: transparent;
	font-size: smaller;
	margin-bottom: 1em;
}

.breadcrumb ol, .breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
}

.breadcrumb li:not(:last-child)::after {
	content: ">";
	margin: 0 0.5em;
}

/*------------------------------
  サイドバー　.sidebar [幅：240px]
------------------------------*/
.sidebar-item {
	border: 1px solid #bfd9d9;
	padding: 10px;
	margin-bottom: 20px;
}

.sidebar-item h3 {
	font-size: 1rem;
	font-size: calc(1rem * 1.4);
	border-bottom: 2px solid #11bdbd;
	margin-bottom: 0.5em;
	padding-bottom: 0.2em;
}

@media (min-width: 768px) {
	.sidebar-item h3 {
		text-align: center;
	}
}

.sidebar-item li {
	/* font-size: 0.8rem; */
	font-size: calc(0.8rem * 1.4);
}

.sidebar-item li:not(:last-child) {
	border-bottom: 1px dashed #ccc;
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
}

.sidebar-list-recommend li a, .sidebar-list-ranking li a {
	display: flex;
	position: relative;
}

.sidebar-list-recommend img, .sidebar-list-ranking img {
	object-fit: cover;
	width: 50px;
	height: 50px;
	margin-right: 0.5em;
}

.sidebar-item .date, .sidebar-item .source {
	color: #4d4d4d;
	display: block;
}

.sidebar-list-ranking a:before {
	width: 2.5em;
	height: 2.5em;
	position: absolute;
	top: -0.4em;
	left: -0.4em;
	color: #fff;
	border-radius: 50%;
	font-size: 0.7em;
	font-weight: bold;
	text-align: center;
	line-height: 2.5em;
}

.sidebar-list-ranking li:nth-child(1) a:before {
	content: "1";
	background-color: #e9b800;
}

.sidebar-list-ranking li:nth-child(2) a:before {
	content: "2";
	background-color: #b4b4b5;
}

.sidebar-list-ranking li:nth-child(3) a:before {
	content: "3";
	background-color: #b28146;
}

.sidebar-sticky {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 20px
}

.sidebar-sticky a {
	display: block;
	margin-bottom: 20px;
}

.sidebar-sticky a:hover img {
	opacity: 0.6;
}

/*------------------------------
  フッター　.footer-site
------------------------------*/
.footer-site {
	border-top: 2px solid #11bdbd;
	padding-top: 40px;
	padding-bottom: 20px;
}

.footer-site img {
	display: inline-block;
}

.footer-company {
	margin-bottom: 2em;
}

.footer-logo {
	margin-bottom: 1em;
}

.footer-company strong {
	font-size: 1.2em;
}

.footer-menu {
	margin-bottom: 2em;
}

.footer-search {
	margin-bottom: 1em;
}

.footer-search input {
	background: #fff url("/assets/images/common/img/ico-search.svg") no-repeat left 0.5em center / auto 1em;
	padding-left: 2em;
	font-size: 1.2em;
}

@media (min-width: 768px) {
	.footer-search input {
		font-size: 1em;
	}
}

.footer-search input:focus {
	background-image: url("/assets/images/common/img/ico-search.svg#green");
}

.footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.2em 2em;
	margin-bottom: 1em;
}

.footer-menu-terms {
	font-size: 0.9em;
}

.footer-site-right {
	text-align: center;
	border-top: 1px solid #bfd9d9;
	padding-top: 2em;
	margin-bottom: 2em;
}

.footer-site-right p {
	text-align: left;
	width: fit-content;
	margin: 0 auto;
	background: url("/assets/images/common/img/ico-help.svg") no-repeat left center / 40px 40px;
	padding-left: 50px;
}

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

@media (min-width: 768px) {
	.footer-company {
		font-size: smaller;
		white-space: nowrap;
		margin-right: 40px;
	}

	.footer-logo img {
		height: 40px;
		width: auto;
	}

	.footer-site-left {
		display: flex;
		justify-content: space-between;
	}

	.footer-menu {
		width: 100%;
	}

	.footer-menu ul {
		display: block;
		margin-bottom: 0;
	}

	.footer-menu ul li {
		margin-bottom: 1em;
	}

	.footer-menu nav {
		display: flex;
		justify-content: space-between;
	}

	.footer-menu-contents {
		column-count: 2;
	}

	.footer-menu-terms {
		font-size: 1em;
	}

	.footer-site-right p {
		font-size: smaller;
	}

	.footer-site-right .btn-round_white {
		width: 100%;
		padding: 0.5em 0;
	}

	.footer-site-right {
		border-top: none;
		padding-top: calc(40px + 1em);
		margin-bottom: 0;
	}

	.footer-search input {
		width: 50%;
	}

	.footer-copyright {
		text-align: left;
	}
}

/*------------------------------
  テキスト
------------------------------*/
.only-PC {
	display: none;
}

@media (min-width: 768px) {
	.only-PC {
		display: block;
	}
}

.txt-B {
	font-weight: bold;
}

.txt-S {
	font-size: smaller;
}

.txt-R {
	text-align: right;
}

.txt-notes {
	background: linear-gradient(transparent 40%, #fffb8e 60%);
}

@media (min-width: 768px) {
	.txt-C {
		text-align: center;
	}
}

.txt-green {
	color: #11bdbd;
}

/*------------------------------
  カラム
------------------------------*/
@media (min-width: 768px) {
	.flex {
		display: flex;
		align-items: flex-start;
		gap: 1em;
	}

	.flex.reverseR {
		flex-direction: row-reverse;
	}
}

[class^="card-"] > *, [class^="column-"] > *,
[class*=" card-"] > *, [class*=" column-"] > * {
	margin-bottom: 1.5em;
}

[class^="card-"] a,
[class*=" card-"] a {
	display: block;
	padding: 1em;
	border: 1px solid #bfd9d9;
	border-radius: 8px;
	width: 100%;
	overflow: hidden;
}

[class^="card-"] a:hover,
[class*=" card-"] a:hover {
	border-color: #11bdbd;
	background-color: #d4f4f2;
}

@media (min-width: 768px) {

	[class^="card-"], [class*=" card-"],
	[class^="column-"], [class*=" column-"] {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 20px;
	}

	[class^="card-"] > *, [class*=" card-"] > * {
		display: flex;
		margin-bottom: 0;
	}

	[class^="column-"] > *, [class*=" column-"] > * {
		margin-bottom: 0;
	}

	.card-2,
	.column-2 {
		gap: 20px;
	}

	.card-2 > *,
	.column-2 > * {
		width: calc(100% / 2 - 10px);
	}

	.card-3 {
		gap: 15px;
	}

	.card-3 > * {
		width: calc(100% / 3 - 10px);
	}

	.card-5 {
		gap: 10px;
	}

	.card-5 > * {
		width: calc(100% / 5 - 8px);
	}

	.column-3 {
		gap: 30px;
	}

	.column-3 > * {
		width: calc(100% / 3 - 20px);
	}
}

/*------------------------------
  画像
------------------------------*/
.img-C {
	display: block;
	margin: 0 auto;
}

/*------------------------------
  余白
------------------------------*/
.m-b-0 {
	margin-bottom: 0 !important;
}

.m-t-1em {
	margin-top: 1em !important;
}

/*------------------------------
  リスト
------------------------------*/
.list-defaultStyle {
	margin: 1em 0;
}

table .list-defaultStyle {
	margin: 0;
}

ul.list-defaultStyle li {
	list-style: disc outside none;
	display: list-item;
	margin-left: 1.5em;
}

ol.list-defaultStyle li {
	list-style: decimal outside none;
	display: list-item;
	margin-left: 1.5em;
}

.list-defaultStyle li:not(:last-child) {
	margin-bottom: 0.5em;
}

.list-noStyle {
	margin: 1em 0;
}

.list-noStyle li:not(:last-child) {
	margin-bottom: 0.5em;
}

.dl-defaultStyle dt {
	font-weight: bold;
}

.dl-defaultStyle dd {
	margin-left: 1em;
}

.dl-defaultStyle dd:not(:last-child) {
	margin-bottom: 1em;
}

/*------------------------------
  見出し
------------------------------*/
@media (min-width: 768px) {
	h1, h2, h3, h4, h5, h6 {
		letter-spacing: 0.02em;
	}
}

.ttl-page {
	position: relative;
	font-weight: bold;
	margin-bottom: 1em;
	transform: translateY(-5px);
	padding-bottom: 10px;
}

@media (min-width: 768px) {
	.ttl-page {
		transform: translateY(-1px);
	}
}

.ttl-page:before {
	position: absolute;
	bottom: -1px;
	left: 0;
	z-index: 2;
	width: 24px;
	height: 3px;
	content: '';
	background: #faf45d;
}

.ttl-page:after {
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 27px;
	z-index: 1;
	height: 6px;
	content: '';
	background: -moz-radial-gradient(circle, #87dddd 30%, white 30%);
	background: -webkit-radial-gradient(circle, #87dddd 30%, white 30%);
	background: radial-gradient(circle, #87dddd 30%, white 30%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#87DDDD", endColorstr="#ffffff", GradientType=1);
	background-repeat: repeat;
	background-size: 6px 6px;
}

.ttl-dot_tb {
	font-weight: bold;
	margin-bottom: 1em;
}

.ttl-dot_tb:before, .ttl-dot_tb:after {
	background: radial-gradient(circle farthest-side, #11bdbd, #11bdbd 30%, transparent 30%, transparent);
	background-size: 6px;
	content: '';
	display: inline-block;
	height: 6px;
	width: 100%;
}

.ttl-dot_tb:before {
	margin-bottom: 0.3em;
}

.ttl-dot_tb:after {
	margin-top: 0.3em;
}

.ttl-border_lr {
	position: relative;
	text-align: center;
	font-weight: bold;
	color: #11bdbd;
	margin-bottom: 1em;
}

.ttl-border_lr:before {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	background: #11bdbd;
}

.ttl-border_lr span {
	position: relative;
	padding: 0 1em;
	background: #fff;
}

.ttl-bg_green {
	display: inline-block;
	background: #11bdbd;
	color: #fff;
	font-weight: bold;
	padding: 0.5em 0.8em;
}

.ttl-corner_line {
	background-color: #11bdbd;
	background-image: url("/assets/images/common/img/deco-corner_line_left.svg"), url("/assets/images/common/img/deco-corner_line_right.svg");
	background-repeat: no-repeat;
	background-position: left top, right bottom;
	color: #fff;
	font-weight: bold;
	padding: 0.5em 1em;
	margin-bottom: 1em;
}

.ttl-border_lb {
	border-left: 8px solid #11bdbd;
	border-bottom: 2px solid #11bdbd;
	font-weight: bold;
	padding-left: 10px;
	margin-bottom: 1em;
	padding-bottom: 0.3em;
}

.ttl-border_dash_b {
	border-bottom: 2px dashed #11bdbd;
	font-weight: bold;
	padding-bottom: 0.2em;
	margin-bottom: 1em;
}

.ttl-border_tb {
	font-weight: bold;
	margin-bottom: 1em;
	border-top: 1px solid #11bdbd;
	border-bottom: 3px solid #11bdbd;
	padding: 0.3em 0;
}

.ttl-bg_lightBlue {
	background: #d4f4f2;
	font-weight: bold;
	padding: 0.5em 0.8em;
	margin-bottom: 1em;
}

/*------------------------------
  ボタン
------------------------------*/
[class^="btn-"], [class*=" btn-"] {
	display: block;
	background-color: #fff;
	color: #11bdbd;
	border-radius: 5px;
	border: 2px solid #11bdbd;
	margin: 1em auto;
	font-weight: bold;
	/*transition-duration: 0.25s;*/
}

a[class^="btn-"], a[class*=" btn-"] {
	width: fit-content;
}

@media (hover: hover) {
	[class^="btn-"]:hover, [class*=" btn-"]:hover {
		background-color: #d4f4f2;
		color: #11bdbd;
		text-decoration: none;
	}
}

.btn-arrow_bottom {
	background: #fff url("/assets/images/common/img/ico-arrow_bottom.svg") no-repeat right 0.8em center/1em;
	padding: 0.7em 3.5em 0.7em 2.5em;
}

/*
.btn-arrow_bottom:hover {
  background-image: url("/assets/images/common/img/ico-arrow_bottom.svg#white");
}
*/
.btn-arrow_bottom:disabled {
	background-color: #e6e6e6;
	background-image: url("/assets/images/common/img/ico-arrow_bottom.svg#white");
	color: #fff;
	border: 2px solid #e6e6e6;
}

.btn-arrow_right {
	background: #fff url("/assets/images/common/img/ico-arrow_right.svg") no-repeat left 0.8em center/1em;
	padding: 0.7em 2.5em 0.7em 3.5em;
	vertical-align: middle;
}

/*
.btn-arrow_right:hover {
  background-color: #11bdbd;
  background-image: url("/assets/images/common/img/ico-arrow_right.svg#white");
  color: #fff;
}
*/
.btn-mail {
	outline: solid 1px #11bdbd;
	outline-offset: 3px;
	padding: 1em 1em 1em 4.5em;
	background: #eefbfa url("/assets/images/common/img/ico-mail_bg.svg") no-repeat left top / auto 101%;
}

@media (hover: hover) {
	.btn-mail:hover {
		background-color: #11bdbd;
		color: #fff;
	}
}

.btn-pink {
	background-color: #fff;
	border-color: #FB728C;
	color: #FB728C;
}

button.btn-pink {
	background-color: #FB728C;
	border-color: #FB728C;
	color: #fff;
}

@media (hover: hover) {
	.btn-pink:hover {
		background-color: #ffeaee;
		border-color: #FB728C;
		color: #FB728C;
	}

	button.btn-pink:hover {
		background-color: #e65061;
		border-color: #e65061;
		color: #fff;
	}
}

.btn-yellow {
	background-color: #faf45d;
	color: #11bdbd;
}

@media (hover: hover) {
	.btn-yellow:hover {
		background-color: #11bdbd;
		border-color: #11bdbd;
		color: #fff;
	}
}

[class^="btn-round"], [class*=" btn-round"] {
	border-radius: 100vh;
	padding: 0.2em 1em;
}

.btn-round_green {
	background-color: #11bdbd;
	color: #fff;
}

@media (hover: hover) {
	.btn-round_green:hover {
		background-color: #099a9a;
		color: #fff;
	}
}

.btn-round_yellow {
	background-color: #faf45d;
	color: #11bdbd;
}

@media (hover: hover) {
	.btn-round_yellow:hover {
		background-color: #11bdbd;
		color: #fff;
	}
}

.btn-round_pink {
	border-color: #FB728C;
	background-color: #FB728C;
	color: #fff;
}

@media (hover: hover) {
	.btn-round_pink:hover {
		border-color: #e65061;
		background-color: #e65061;
		color: #fff;
	}
}

/* 塗りつぶし .btn-fill */
.btn-fill {
	background-color: #11bdbd;
	color: #fff;
}

@media (hover: hover) {
	.btn-fill:hover {
		border-color: #099a9a;
		background-color: #099a9a;
		color: #fff;
	}
}

/* ボタンは以下定義へ移行予定 */
:root {
	--color-green: #11bdbd;
	--color-green-light: #d4f4f2;
	--color-green-dark: #099a9a;
	--color-pink: #FB728C;
	--color-pink-light: #ffeaee;
	--color-pink-dark: #e65061;
}

[class^="btn-"], [class*=" btn-"] {
	display: block;
	border-radius: 5px;
	margin: 1em auto;
	font-weight: bold;
	padding: 0.5em 1em;
}

a[class^="btn-"], a[class*=" btn-"] {
	width: fit-content;
}

[class^="btn-round"], [class*=" btn-round"] {
	border-radius: 100vh;
	padding: 0.2em 1em;
}

@media (hover: hover) {
	[class^="btn-"]:hover, [class*=" btn-"]:hover {
		text-decoration: none;
	}
}

[class^="btn-"]:disabled, [class*=" btn-"]:disabled {
	background-color: #ededed;
	border-color: #ededed;
	color: #b8b8b8;
	cursor: default;
}

@media (hover: hover) {
	[class^="btn-"]:disabled:hover, [class*=" btn-"]:disabled:hover {
		background-color: #ededed;
		border-color: #ededed;
		color: #b8b8b8;
		cursor: default;
	}
}

.btn-A-1 {
	background-color: var(--color-pink);
	border-color: var(--color-pink);
	color: #fff;
}

@media (hover: hover) {
	.btn-A-1:hover {
		background-color: var(--color-pink-dark);
		border-color: var(--color-pink-dark);
		color: #fff;
	}
}

.btn-A-2 {
	background-color: #fff;
	border-color: var(--color-pink);
	color: var(--color-pink);
}

@media (hover: hover) {
	.btn-A-2:hover {
		background-color: var(--color-pink-light);
		border-color: var(--color-pink);
		color: var(--color-pink);
	}
}

.btn-B-1 {
	background-color: var(--color-green) !important;
	border-color: var(--color-green) !important;
	color: #fff;
}

@media (hover: hover) {
	.btn-B-1:hover {
		background-color: var(--color-green-dark) !important;
		border-color: var(--color-green-dark) !important;
		color: #fff;
	}
}

.btn-B-2 {
	background-color: #fff;
	border-color: var(--color-green) !important;
	color: var(--color-green) !important;
}

@media (hover: hover) {
	.btn-B-2:hover {
		background-color: var(--color-green-light) !important;
		border-color: var(--color-green) !important;
		color: var(--color-green);
	}
}

.btn-arrow_bottom {
	background-image: url("/assets/images/common/img/ico-arrow_bottom.svg");
	background-repeat: no-repeat;
	background-position: right 0.8em center;
	background-size: 1em auto;
	padding-left: 2em;
	padding-right: 3em;
}

.btn-arrow_bottom:disabled,
.btn-A-1.btn-arrow_bottom, .btn-B-1.btn-arrow_bottom {
	background-image: url("/assets/images/common/img/ico-arrow_bottom.svg#white");
}

.btn-A-2.btn-arrow_bottom {
	background-image: url("/assets/images/common/img/ico-arrow_bottom.svg#pink");
}

.btn-arrow_right {
	background-image: url("/assets/images/common/img/ico-arrow_right.svg");
	background-repeat: no-repeat;
	background-position: left 0.8em center;
	background-size: 1em auto;
	padding-right: 2em;
	padding-left: 3em;
}

.btn-arrow_right:disabled,
.btn-A-1.btn-arrow_right, .btn-B-1.btn-arrow_right {
	background-image: url("/assets/images/common/img/ico-arrow_right.svg#white");
}

.btn-A-2.btn-arrow_right {
	background-image: url("/assets/images/common/img/ico-arrow_right.svg#pink");
}

.btn-mail {
	outline: solid 1px #11bdbd;
	outline-offset: 3px;
	padding: 1em 1em 1em 4.5em;
	background: #eefbfa url("/assets/images/common/img/ico-mail_bg.svg") no-repeat left top / auto 101%;
}

/*------------------------------
  リンク
------------------------------*/
a.link-noColor, .link-noColor a {
	color: inherit;
}

a.link-noColor:hover, .link-noColor a:hover {
	color: #11bdbd;
}

.link-internal {
	background: transparent url("/assets/images/common/img/ico-arrow_right_circle.svg") no-repeat left 0 top 0.3em / 1em auto;
	padding-left: 1.2em;
	margin: 0 0.2em;
}

.link-external {
	background: transparent url("/assets/images/common/img/ico-window_open.svg") no-repeat left 0 top 0.3em / 1em auto;
	padding-left: 1.2em;
	margin: 0 0.2em;
}

a.link-zoomImg {
	overflow: hidden;
	display: block;
	max-width: 100%;
}

a.link-zoomImg:hover img {
	transform: scale(1.1);
	transition: 0.3s;
	opacity: 1;
}

/*------------------------------
  テーブル
------------------------------*/
.tbl-defaultStyle, .tbl-defaultStyle tr > * {
	border: 1px solid #4d4d4d;
	background-color: #fff;
}

.tbl-defaultStyle caption {
	background: url("/assets/images/common/img/ico-table.svg") no-repeat left center / 1em auto;
	padding-left: 1.2em;
}

.tbl-defaultStyle th {
	background-color: #11bdbd;
	color: #fff;
	text-align: left;
}

.tbl-border th {
	white-space: nowrap;
	text-align: left;
	padding-right: 0.5em;
}

.tbl-border tr > * {
	border-top: 1px solid #11bdbd;
}

.tbl-border tr:last-child > * {
	border-bottom: 1px solid #11bdbd;
}

table .cell-bg_blue {
	background-color: #eefbfa;
	color: #4d4d4d;
}

/*------------------------------
  ラベル
------------------------------*/
.label-yellow {
	background-color: #faf45d;
	color: #11bdbd;
	padding: 0.2em 0.5em;
	display: inline-block;
	line-height: 1.2em;
}

.label-green {
	background-color: #11bdbd;
	color: #fff;
	padding: 0.2em 0.5em;
	display: inline-block;
	line-height: 1.2em;
}

.label-pink {
	background-color: #fb728c;
	color: #fff;
	padding: 0.2em 0.5em;
	display: inline-block;
	line-height: 1.2em;
}

/*------------------------------
  ボックス
------------------------------*/
.area-bg_blue {
	padding: 1em;
	background-color: #eefbfa;
}

.area-bg_blue-border {
	padding: 1em;
	background-color: #eefbfa;
	border: 1px solid #11bdbd;
}

.area-bg_gray-border {
	padding: 1em;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
}

.area-label-bg_gray {
	padding: 1.5em 1em;
	background-color: #f5f5f5;
	position: relative;
}

.area-label-bg_gray::before {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 0.7em;
	padding: 0 0.5em;
	background-color: #999;
	color: #fff;
}

.area-label-bg_yellow {
	padding: 1.5em 1em;
	background-color: #fbfaea;
	position: relative;
}

.area-label-bg_yellow::before {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 0.7em;
	padding: 0 0.5em;
	background-color: #11bdbd;
	color: #fff;
}

.area-label-bg_yellow::before, .area-label-bg_gray::before {
	content: attr(data-style-label);
}

.area-border_blue-tb {
	border-bottom: 1px solid #11bdbd;
	border-top: 1px solid #11bdbd;
}

/*------------------------------
  動画
------------------------------*/
.video-16_9 {
	width: 1000px;
	max-width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

/*------------------------------
  その他
------------------------------*/
.list-document img {
	width: auto;
	height: 140px;
	object-fit: contain;
	margin-bottom: 15px;
	box-shadow: 0px 8px 8px -5px rgba(155, 190, 190, 0.8);
	background: #fff;
}

.list-document h3 {
	font-size: 1rem;
	font-size: (1rem * 1.6);
	line-height: 1.2;
	font-weight: normal;
}

.list-document a {
	background: #fff url('/assets/images/common/img/bg-list-document.svg') no-repeat center top/100% 150px;
	text-decoration: none;
	text-align: center;
	color: #4d4d4d;
}

.list-document a:hover {
	background-color: #d4f4f2;
	text-decoration: none;
}

.list-document img.service-logo {
	padding: 30px;
}

.list-column a {
	color: #4d4d4d;
	display: flex;
	flex-direction: column;
}

.list-column li {
	position: relative;
}

.list-column img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	margin-bottom: 0.5em;
}

.list-column h3 {
	font-size: 1em;
	margin-bottom: 0.5em;
	color: #0c8484;
}

.list-column .date {
	display: block;
	font-size: smaller;
	margin-bottom: 2em;
}

.list-column .tag-column {
	font-size: smaller;
	display: flex;
	flex-wrap: wrap;
	column-gap: 1em;
	margin: auto 50px 0 0;
}

.list-column .tag-column li::before {
	content: "#"
}

.list-column .share_bookmark {
	display: flex;
	gap: 10px;
	position: absolute;
	right: 1em;
	bottom: 1em;
}

.list-column .share_bookmark svg {
	fill: #bfd9d9;
}

.list-column .share_bookmark button:hover svg {
	fill: #11bdbd;
}

.list-column .share_bookmark-description {
	display: none;
}

.list-headline a {
	border-top: 1px solid #bfd9d9;
	padding: 1em 0;
	color: #4d4d4d;
	display: block;
}

.list-headline li:last-child a {
	border-bottom: 1px solid #bfd9d9;
}

.list-headline a:hover {
	background: #f5f5f5;
}

@media (min-width: 768px) {
	.list-headline a {
		display: flex;
		align-items: flex-start;
		column-gap: 1em;
	}
}

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

.list-headline [class^="type-"],
.list-headline [class*=" type-"] {
	min-width: 10em;
	font-size: smaller;
	border: 1px solid #bfd9d9;
	text-align: center;
	padding: 0.1em;
	background: #fff;
	display: inline-block;
	margin-left: 0.5em;
}

@media (min-width: 768px) {

	.list-headline [class^="type-"],
	.list-headline [class*=" type-"] {
		margin-left: 0;
	}
}

.list-headline .type-news {
	border-color: #11bdbd;
	color: #11bdbd;
}

.list-headline .type-info {
	border-color: #fb728c;
	color: #fb728c;
}

.list-headline .type-service {
	border-color: #ffba00;
	color: #e6b000;
}

.list-headline .type-campaign {
	border-color: #66B4EA;
	color: #66B4EA;
}

.list-headline .type-event {
	border-color: #8A75AE;
	color: #8A75AE;
}

.list-headline .type-maintenance {
	border-color: #C83030;
	color: #C83030;
}

.list-headline .title {
	font-weight: bold;
	color: #0c8484;
	display: block;
	margin-top: 0.5em;
}

@media (min-width: 768px) {
	.list-headline .title {
		margin-top: 0;
	}
}

#modal-requestMemberLogin iframe {
	height: 500px;
}
