@charset "utf-8";
/* 
html5doctor.com Reset Stylesheet v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style: normal;
	background: transparent;
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, th {
	font-weight: normal;
}
body {
	line-height: 1;
	letter-spacing: 0.02em;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
	transition: all 0.4s;
	color: var(--point-color);
}
a:hover{
	opacity: 0.5;
	transition: all 0.4s;
}

/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
html {
	overflow-y: scroll;
}
img {
	line-height: 0;
	vertical-align: bottom;
	font-size: 0;
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	image-rendering: -webkit-optimize-contrast;
}
strong {
	font-weight: 700;
}
/***************/
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
@media screen and (max-width:599px) {
	html {
		font-size: 2.5vw;
	}
}
body {
	color: #3D3027;
	font-size: 1.8rem;
	font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	line-height: 1.6;
	overflow-x: clip; /*葉っぱのはみ出しによる横スクロールをなくす*/
}
@media screen and (max-width:599px) {
    body {
        font-size: 1.8rem;
        line-height: 1.5;
        text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
	}
}

header {
	width: 100%;
	padding: 18px;
	position: sticky;
	top: 0;
	background-color: transparent;
	z-index: 9999;
	animation: scroll-anim linear; /*スクロールアニメーション設定*/
	animation-timeline: scroll(); /*スクロールアニメーション設定*/
}

@keyframes scroll-anim {
  0% {
	background-color: rgba(255,255,255,1); /*スクロール前はヘッダー透過させない*/
  }
  0.1% {
	background-color: rgba(255,255,255,0.96); /*ページ最上部から5%スクロールするとヘッダー透過度90%（半透明）にする*/
  }
  100% {
	background-color: rgba(255,255,255,0.96); /*ページ最下部までそのままヘッダー透過度90%（半透明）にする*/
  }
}


header .header_inner {
    padding: 14px 140px 14px 10px;
}

header > div {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

header > div > div ul {
	display: flex;
}

.sp_loginbtn,
.sp_logoutbtn{
    display: none;
}


main {
	display: block;
	position: relative;
	margin: 0 auto;
}

footer {
	width: 100%;
	background-color: var(--gry-color);
	padding: 4rem 0 2rem 0;
}

.ft_wrap{
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.ft_wrap .ft_left {
	width: 40%;
	order: 1;
}

.ft_wrap .ft_left .ft_logo {
	display: block;
}

.ft_wrap .ft_left .ft_logo img {
	width: 78%;
}

.ft_wrap .ft_left .ft_address {
	display: block;
	font-size: 1.5rem;
	line-height: 2.8rem;
	margin: 2rem 0 3.4rem 0;
}

.ft_wrap .ft_left .ft_link li {
	margin-bottom: 8px;
	font-size: 1.5rem;
	color: #3D3027;
}
.ft_wrap .ft_left .ft_link li a {
	color: var(--font-color);
}

.ft_right {
	width: 55%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	vertical-align: top;
	order: 2;
}

footer .ft_right a:hover {
	color: var(--point-color);
}

.ft_wrap .ft_right dl{
	margin: 0 0 3rem 0;
}

.ft_wrap .ft_right .ft_menulist:first-child dl:first-child {
	margin: 0 0 6rem 0;
}

footer .ft_right a {
	color: #3D3027;
	display: block;
}

footer .ft_right dt {
	font-size: 1.7rem;
	font-weight: 700;
	text-decoration: none;
	display: block;
	margin-bottom: 6px;
}

footer .ft_right dd li {
	display: block;
	margin-bottom: 5px;
	font-size: 1.5rem;
}

footer .ft_right dd li > a::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 5px;
	margin: 0 6px 0 2px;
	border-top: 1px solid #b7b7b7;
}

footer .ft_right dd .smalltxt {
	display: block;
	margin-top: 5px;
	font-size: 1.3rem;
}

footer .ft_bottom {
	margin: 2rem auto 0 auto;
	padding: 2rem 0 0 0;
	border-top: 1px solid #d1d1d1;
}

footer .ft_bottom div {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto;
}

footer .ft_bottom div ul {
	display: flex;
	justify-content: flex-start;
	width: 320px;
}

footer .ft_bottom div ul li:first-child {
	margin-right: 2rem;
}

footer .ft_bottom div ul li a {
	font-size: 1.4rem;
	color: var(--font-color);
	line-height: 1;
}

#copy {
	font-size: 1.2rem;
	letter-spacing: 0.04em;
	line-height: 1;
}

@media screen and (max-width:1540px) {

header h1 {
	width: 31%;
}

header h1 img {
	width: 100%;
}
	
}

@media print {
/*プリント専用css*/
	header{
		position: inherit;
	}
	
	.login-inner{
		width: 120px;
		height: 120px;
		z-index: 999;
	}
	
	.header_login{
		width: 100px;
		height: 100px;
	}
	
	.header_login a{
		font-size: 1.3rem;
	}
	
	.header_logout{
		width: 100px;
		height: 100px;
	}
	
	.header_logout a{
		font-size: 1.3rem;
	}
	
	#nav li{
		padding: 0;
	}
}


@media print, screen and (max-width:1470px) {
header .header_inner{
	padding: 0 140px 0 0;
}
	
header > div {
	display: block;
}
	
header h1 {
	margin-bottom: 1.5rem;
	width: auto;
}
header h1 img {
	width: auto;
	max-height: 34px;
}

.ft_wrap .ft_left .ft_logo img {
	width: auto;
	max-height: 36px;
}

}

@media screen and (max-width:1300px) {
header {
	width: 100%;
	min-width: 100%;
	padding: 10px;
	position: sticky;
	top: 0;
	z-index: 9999;
	background-color: rgba(255,255,255,0.96);
}

header h1 {
	margin: 0.3rem 0;
}

header .header_inner{
	padding: 0;
}

.login-inner{
    display: none;
}

.sp_loginbtn {
	display: block;
	width: 86%;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
}

.sp_loginbtn a {
	padding: 14px 10px 14px 30px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 1.7rem;
	font-weight: 600;
    transition: all 0.4s;
	display: block;
	position: relative;
	background: var(--btn-color);
	border-radius: 40px;
	line-height: 1.5;
}
	
.sp_loginbtn a:hover {
    opacity: 0.5;
    transform: scale(0.97,0.97);
	transition: all .3s;
}

.sp_loginbtn a span{
    position: relative;	
	
}

.sp_loginbtn a span:before{
    content: "";
    background: url("../images/icon/icon_person.svg") no-repeat left top;
    width: 18px;
    height: 25px;
    background-size: contain;
    vertical-align: middle;
    line-height: 1.8;
    /* padding-right: 4rem; */
    position: absolute;
    left: -23px;
    top: 50%;
    transform: translateY(-50%);
}

/*ログアウトボタン*/

.sp_logoutbtn {
	display: block;
	width: 86%;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
}

.sp_logoutbtn a {
	padding: 14px 10px 14px 30px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 1.7rem;
	font-weight: 600;
    transition: all 0.4s;
	display: block;
	position: relative;
	background: transparent linear-gradient(155deg, #6bd2c0 0%, #2fc7d8 100%) 0% 0% no-repeat padding-box;
	border-radius: 40px;
	line-height: 1.5;
}
	
.sp_logoutbtn a:hover {
    opacity: 0.5;
    transform: scale(0.97,0.97);
	transition: all .3s;
}

.sp_logoutbtn a span{
    position: relative;	
	
}

.sp_logoutbtn a span:before{
    content: "";
    background: url("../images/icon/icon_logout.svg") no-repeat left top;
    width: 20px;
    height: 26px;
    background-size: contain;
    vertical-align: middle;
    line-height: 1.8;
    /* padding-right: 4rem; */
    position: absolute;
    left: -27px;
    top: 60%;
    transform: translateY(-50%);
}

	
header > div {
	max-width: inherit;
	min-width: inherit;
	margin: 0 auto;
}
	
header > div > div ul {
	display: none;
}

footer {
	width: 100%;
	padding: 30px;
}

.ft_wrap{
	width: 100%;
	display: block;
}
	
.ft_wrap .ft_left{
	width: 100%;
	display: block;
	padding: 0 0 4% 0;
	margin: 0 auto;
}

.ft_wrap .ft_right{
	width: 100%;
	margin-bottom: 2rem;
}

footer > div:nth-child(1) > div {
	width: 100%;
	margin: 0 auto;
}

footer > div:nth-child(1) > div > p a {
	padding: 10px 0;
	font-size: 1.3rem;
	text-align: center;
}

footer > div:nth-child(1) > div > p a:hover {
	color: var(--point-color);
	background-color: #fff;
}

}


@media screen and (max-width:768px) {
header {
	min-width: 100%;
	padding: 12px 16px 16px 14px;
}
	
	
header h1 img {
	width: auto;
	max-height: 26px;
}

	
header h1 a {
	text-decoration: none;
}
	
header > div {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	margin: 0;
}
header > div > div {
	display: block;
}
	
footer {
	width: 100%;
	padding: 0;
}
	
.ft_wrap{
	width: 100%;
	display: block;
	padding: 20px 30px 30px 30px;
}
	
.ft_wrap .ft_left{
	width: 100%;
	display: block;
	border-bottom: none;
	padding: 0;
	margin: 0 auto;
}
	
.ft_wrap .ft_left .ft_logo{
	text-align: center;
}
	
.ft_wrap .ft_left .ft_logo img{
	width: 98%;
}

.ft_wrap .ft_left .ft_address{
	text-align: center;
	font-size: 1.4rem;
	line-height: 2rem;
	margin: 1.4rem 0 2rem 0;
}

.ft_wrap .ft_left .ft_address a{
	color: var(--point-color);
}

.ft_wrap .ft_left .ft_link li{
	font-size: 1.4rem;
}
	
.ft_wrap .ft_right{
	width: 100%;
	display: block;
}
	
.ft_wrap .ft_right dl{
	display: block;
	margin: 0 0 1rem 0;
}
	
.ft_wrap .ft_right .ft_menulist:first-child dl:first-child {
	margin: 0 0 1rem 0;
}
	
footer .ft_right dt{
	font-size: 1.6rem;
	margin-bottom: 0;
}
	
footer .ft_right dd li{
	font-size: 1.6rem;
}
	
footer > div:nth-child(1) > div {
	width: 100%;
	margin: 0 auto;
	display: block;
}

footer > div:nth-child(1) > div > p a {
	padding: 10px 0;
	font-size: 1.3rem;
	text-align: center;
}

footer > div:nth-child(1) > div > p a:hover {
	color: var(--point-color);
	background-color: #fff;
}

.ft_menulist dl {
	margin: 6px 0;
	border-radius: 10px;
	overflow: hidden;
}

.ft_menulist dt {
	background: #bbf3ec;
	padding: 14px 40px 14px 14px; /* 右に余白を作る */
	cursor: pointer;
	font-weight: bold;
	position: relative;
}
.ft_menulist dt .icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
}
.ft_menulist dt a {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	width: 100%;
}
.ft_menulist dd {
	margin: 0;
	padding: 10px;
	display: none;
	background: #fff;
}
	
.ft_menulist dl.active dd {
	display: block;
}

footer .ft_right dd .smalltxt {
	display: block;
	margin-top: 5px;
	font-size: 1.3rem;
}

/* メンバー登録だけ＋アイコンを非表示 */
.ft_menulist .nolabel::after {
	content: none !important;
}
	
.ft_menulist dt.ft_menulist_member {
	background: var(--btn-color2);
}
	
	
footer .ft_bottom {
	margin: 0 auto;
	padding: 30px;
	border-top: 1px solid #d1d1d1;
}
	
footer .ft_bottom div {
	display: block;
	justify-content: space-between;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto;
}

footer .ft_bottom div ul {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin-bottom: 20px;
}

footer .ft_bottom div ul li:first-child {
	margin-right: 2rem;
}

footer .ft_bottom div ul li a {
	font-size: 1.4rem;
	color: var(--font-color);
	line-height: 1;
}

#copy {
	font-size: 1.1rem;
	letter-spacing: 0.06em;
	line-height: 1;
}

}

/* 768px以上（769px未満）の時はフッターアコーディオンメニューアイコンを非表示 */
@media (min-width: 769px){
	.ft_menulist dt .icon {
		display: none;
	}
}


/***** ID *****/

@media screen and (max-width:768px) {
}
/***** nav *****/
/*#nav {
	background-color: rgba(255, 255, 255, 0.1);
}*/
#nav .focus a {
	color: #3D3027;
}
#nav .menu-item-has-children .sub-menu {
	display: none;
}

@media only screen and (max-width : 1300px) {
	#menu_btn {
		top: 10px;
		right: 10px;
		transition: .3s;
		cursor: pointer;
		position: absolute;
		z-index: 9999;
		width: 42px;
		height: 42px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: var(--btn-color);
		border-radius: 50%;
		padding: 8px;
	}
	.menu-trigger {
		width: 22px;
		height: 18px;
		position: relative;
	}
	.menu-trigger span {
		display: inline-block;
		box-sizing: border-box;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: var(--base-color);
		transition: all .2s;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 0;
	}
	.menu-trigger span:nth-of-type(2) {
		/*width: 70%;*/
		top: 8px;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 0;
	}	
	#menu_btn.active .menu-trigger span {
		background-color: #fff;
	}
	#menu_btn.active .menu-trigger span:nth-of-type(1) {
		transform: translateY(8px) rotate(-45deg);
	}
	#menu_btn.active .menu-trigger span:nth-of-type(2) {
		opacity: 0;
	}
	#menu_btn.active .menu-trigger span:nth-of-type(3) {
		transform: translateY(-8px) rotate(45deg);
	}
	#nav {
		width: 100%;
		height: 100%;
		overflow: auto;
		margin-top: 60px;
		padding: 0 0 60px 0;
		background: var(--base-color);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 12;
		transform: translate(100%);
		transition: all .5s;
		font-family: "Zen Kaku Gothic New", "Montserrate";
	}
	#nav.open {
		transform: translateZ(0);
	}
	#nav li {
		padding: 0;
		border-bottom: var(--point-color) 1px solid;
	}
	/*#nav li:first-child {
		border-top: #fff 1px dotted;
	}*/
	#nav li a {
		padding: 10px;
		text-decoration: none;
		display: block;
		position: relative;
		text-align: center;
	}
	#nav li a span {
		display: block;
		text-align: center;
	}
	
	#nav .nav > li a span:first-child {
		font-size: 1.7rem;
		font-weight: 600;
		color: var(--font-color);
	}
	#nav .nav > li a span:last-child {
		font-size: 1.3rem;
		color: var(--point-color);
	}
	
	#nav li.focus a {
		color: var(--base-color);
		background-color: #fff;
	}
	#nav .menu-item-has-children > a {
		position: relative;
	}
	#nav .menu-item-has-children > a::before {
		content: "";
		width: 10px;
		height: 10px;
		border: 1px solid #fff;
		border-left: 0;
		border-bottom: 0;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: rotate(135deg) translateX(-50%);
		display: block;
	}
	#nav .menu-item-has-children > a.open::before {
		content: "";
		width: 10px;
		height: 10px;
		border: 1px solid #fff;
		border-left: 0;
		border-bottom: 0;
		position: absolute;
		right: 10px;
		top: 45%;
		transform: rotate(-45deg) translateX(-50%);
		display: block;
	}
	#nav .menu-item-has-children.focus > a::before {
		content: "";
		width: 10px;
		height: 10px;
		border: 1px solid var(--base-color);
		border-left: 0;
		border-bottom: 0;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: rotate(135deg) translateX(-50%);
		display: block;
	}
	#nav .menu-item-has-children.focus > a.open::before {
		content: "";
		width: 10px;
		height: 10px;
		border: 1px solid var(--base-color);
		border-left: 0;
		border-bottom: 0;
		position: absolute;
		right: 10px;
		top: 45%;
		transform: rotate(-45deg) translateX(-50%);
		display: block;
	}
	#nav .menu-item-has-children .sub-menu li {
		border: none;
	}
	#nav .menu-item-has-children .sub-menu li a {
		padding: 12px 20px;
		color: #fff!important;
		border-top: #fff 1px dotted;
		background-color: #7bc177;
	}
}
@media print, screen and (min-width : 1300px) {
	#menu_btn, .overlay {
		display: none;
	}
	#nav {
		/*padding: 25px 0 0 0;*/
	}
	#nav ul {
		display: flex;
		align-items: center;
	}
	#nav li {
		flex: auto;
		position: relative;
		padding: 0 20px;
		border-right: 1px solid #d3d3c8;
	}
	#nav li:last-child {
		border-right: none;
	}
	#nav .current-menu-item {
		padding-bottom: 15px;
	}	
	/*#nav li:first-child {
		border-top: #fff 1px dotted;
	}*/
	#nav .nav > li a {		
		height: 38px;
		font-size: 1.7rem;
		font-weight: 600;
		text-align: center;
		text-decoration: none;
		color: #333;
		position: relative;
		transition: .4s;
		/*display: flex;
		justify-content: center;
		align-items: center;*/
	}
/*	#nav .nav > .focus > a::before {
		content: "";
		width: 40%;
		height: 2px;
		background-color: var(--base-color);
		position: absolute;
		left: 50%;
		bottom: -5px;
		transform: translateX(-50%);
	}*/
	#nav .nav > .focus a {
		color: var(--point-color);
		font-weight: 600;
	}
	#nav .nav > li a span {
		display: block !important;
	}
	#nav .nav > li a span:first-child {
		font-size: 1.7rem;
	}
	#nav .nav > li a span:last-child {
		font-size: 1rem;
		color: var(--point-color);
	}
	
	#nav li a:hover {
		/*color: var(--point-color);*/
	}
	#nav .menu-item-has-children > a {
		padding-right: 0;
		cursor: pointer;
	}
	#nav .current-menu-item li a {
		color: #333;
	}
	#nav li ul.sub-menu {
		position: absolute;
		width: 100%;
		left: 0;
		right: 0;
		top: 49px;
		z-index: 999;
		border: none;
	}
	#nav li ul.sub-menu li {
		width: 100%;
		border-bottom: #333 1px dotted;
		border-right: none;
	}
	#nav li ul.sub-menu li:last-child {
		border: none;
	}
	#nav li ul.sub-menu li a {
		padding: 25px 10px;
		background-color: rgba(255,255,255,1);
		font-size: 1.6rem;
	}
	#nav li ul.sub-menu li a:hover {
		color: var(--base-color);
		background: #e0fade;
		opacity: 1;
	}
}

/***** header_login *****/
.login-inner {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 180px;
    height: 180px;
}

.header_login {
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: -8px;
    right: -16px;
    cursor: pointer;
	transition: all .3s;
}

.header_login:hover {
    transform: scale(0.95,0.95);
	transition: all .3s;
}

.header_login a {
    font-size: 1.5rem;
    line-height: 1.42857em;
    letter-spacing: .026em;
    font-weight: 700;
    color: #fff;
    position: relative;
    left: 2px;
    z-index: 1;
    transition: color .3s;
    will-change: color;
    cursor: pointer;
	text-decoration: none;
}

.header_login .icon_person {
    margin: 0 0 14px -5px;
}

.header_login a p {
    margin: 0 0 0 -5px;
}

.header_login .icon_person img {
    filter: brightness(0) invert(1);
	width: 34%; 
}

.header_login a:after {
    content: '';
    height: 156px;
    width: 156px;
    position: absolute;
    left: -37px;
    top: -31px;
    border-radius: 50%;
}

.header_login:after {
    content: '';
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(155deg, #81de9a 0%, #4AE3CF 100%) 0% 0% no-repeat padding-box;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: height .3s, width .3s;
    will-change: height, width;
}

/*ログアウトボタン*/
.header_logout {
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: -8px;
    right: -16px;
    cursor: pointer;
	transition: all .3s;
}

.header_logout:hover {
    transform: scale(0.95,0.95);
	transition: all .3s;
}

.header_logout a {
    font-size: 1.5rem;
    line-height: 1.42857em;
    letter-spacing: .026em;
    font-weight: 700;
    color: #fff;
    position: relative;
    left: 2px;
    z-index: 1;
    transition: color .3s;
    will-change: color;
    cursor: pointer;
	text-decoration: none;
}

.header_logout .icon_logout {
    margin: 3px 0 14px -5px;
}

.header_logout a p {
    margin: 0 0 0 -5px;
}

.header_logout .icon_logout img {
    filter: brightness(0) invert(1);
    width: 22%;
}

.header_logout a:after {
    content: '';
    height: 156px;
    width: 156px;
    position: absolute;
    left: -37px;
    top: -31px;
    border-radius: 50%;
}

.header_logout:after {
    content: '';
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(155deg, #81dece 0%, #2fc7d8 100%) 0% 0% no-repeat padding-box;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: height .3s, width .3s;
    will-change: height, width;
}


/***** clearfix *****/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	/*\*/ /*/
  height: auto;
  overflow: hidden;
  /**/
}
.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	
	.sp {
		display: block;
	}
}

/***** padding *****/
.pt10{
	padding-top: 10px;
}

/***** margin *****/
.margin0 {
	margin: 0 !important;
}
.mt3 {
	margin-top: 3px;
}
.mt5 {
	margin-top: 5px;
}
.mt10 {
	margin-top: 10px;
}
.mt15 {
	margin-top: 15px;
}
.mt20 {
	margin-top: 20px;
}
.mt25 {
	margin-top: 25px;
}
.mt30 {
	margin-top: 30px;
}
.mt35 {
	margin-top: 35px;
}
.mt40 {
	margin-top: 40px;
}
.mb0 {
	margin-bottom: 0 !important;
}
.mb3 {
	margin-bottom: 3px;
}
.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb35 {
	margin-bottom: 35px;
}
.mb40 {
	margin-bottom: 40px;
}

/***** リスト（緑丸） *****/
.disc{
 list-style: none;
}

.disc li{
  text-indent: -1em;
  padding-left: 1em;
}

.disc li::before{
 content: "⚫︎"; /* 記号(黒丸)を挿入 */
 color: var(--point-color); /* 好きな色にする */
 font-size: 1em; /* 点の大きさ */
 margin-right: 0.5em; /* 点とテキストの距離 */
}

/***** リスト（茶丸） *****/
.disc2{
 list-style: none;
}

.disc2 li{
  display: flex; /* 点とリストを横並びに */
  align-items: top; /* 点の位置 */
  text-indent: -1em;
  padding-left: 1em;
}

.disc2 li::before{
 content: "⚫︎"; /* 記号(黒丸)を挿入 */
 color: var(--font-color); /* 好きな色にする */
 font-size: 1em; /* 点の大きさ */
 margin-right: 1em; /* 点とテキストの距離 */
}

/***** リスト（入れ子の場合に使用） *****/
.disc_in{
 list-style: none;
}

.disc_in li{
  text-indent: -1em;
  padding-left: 1em;
}

.disc_in li::before{
 content: "-"; /* 記号を挿入 */
 color: var(--point-color); /* 好きな色にする */
 font-size: 1em; /* 大きさ */
 margin-right: 0.5em; /*記号とテキストの距離 */
}

/***** リスト（オンライン面談アイコン） *****/
.disc_online{
 list-style: none;
}

.disc_online li{
  position: relative;
}

.disc_online li::before{
  content: "";
  background: url("../images/icon/icon_online.svg") no-repeat left;
  width: 22px;
  height: 22px;
  background-size: contain;
  line-height: 1.8;
  position: absolute;
  left: 0;
  top: 8.5%;
}

.disc_online li span{
  text-indent: -1.6em;
  padding-left: 1.6em;
}

@media screen and (max-width:768px) {
.disc_online li::before{
  width: 20px;
  height: 20px;
  top: 8%;
}
	
.disc_online li span{
  text-indent: -1.3em;
  padding-left: 1.3em;
}
	
}


.deci {
	margin-left: 25px;
	list-style-type: decimal;
}

.num li::marker {
	color: var(--point-color);
	font-weight: 700;
	font-size: 2.6rem;
}

.num li {
	margin-left: 2em;
	padding-left: 0.2em;
	list-style-type: decimal;
}

@media screen and (max-width:768px) {
.num li::marker {
	color: var(--point-color);
	font-weight: 700;
	font-size: 2.2rem;
}
.num li {
	margin-left: 2em;
	padding-left: 0.2em;
	margin-bottom: 2rem !important;
	list-style-type: decimal;
	line-height: 2.6rem;
}
}



.li_mb5 li {
	margin-bottom: 5px;
}
.li_mb5 li:last-child {
	margin-bottom: 0;
}
.li_mb10 li {
	margin-bottom: 10px;
}
.li_mb10 li:last-child {
	margin-bottom: 0;
}
.li_mb15 li {
	margin-bottom: 15px;
}
.li_mb15 li:last-child {
	margin-bottom: 0;
}
.li_mb20 li {
	margin-bottom: 20px;
}
.li_mb20 li:last-child {
	margin-bottom: 0;
}

/***** 文字サイズ *****/
.ft_s {
	font-size: 0.8em;
}
.ft_l {
	font-size: 1.2em;
}
.ft_ll {
	font-size: 1.4em;
}
/***** フォント太さ *****/
.bold {
	font-weight: bold;
}
.normal {
	font-weight: normal;
}
/***** ※ *****/
.note {
	margin-left: 1em;
	text-indent: -1em;
}
.note::before {
	content: "※";
}
.note_dl, .note_dl_s {
	margin-top: 5px;
}
.note_dl dt {
	width: 2.5em;
	float: left;
	clear: left;
}
.note_dl dd {
	margin-bottom: 3px;
	padding-left: 2.5em;
}
.note_dl_s dt {
	width: 1.5em;
	float: left;
	clear: left;
}
.note_dl_s dd {
	margin-bottom: 3px;
	padding-left: 1.5em;
}
/***** 位置 *****/
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.top {
	vertical-align: top;
}
/***** 上付・下付 *****/
/*.sup {
	vertical-align: super;
}
.sub {
}*/
/***** 色 *****/
.red {
	color: #e10000;
}
.pink {
	color: #DD6C91;
}
.blue {
	color: #6997DE;
}
.black {
	color: #000;
}
/***** 取り消し *****/
.cancel {
	text-decoration: line-through;
}
.cancel > span {
	color: #000;
}
/***** 下線 *****/
.u_line {
	text-decoration: underline;
}

/***** アイコン *****/
.win_icon {
	margin-right: 2px;
	padding-right: 18px;
	background: url("../images/common/win_icon.svg") 100% 50% no-repeat;
	background-size: 13px 11px;
}

.pdf_icon {
	margin-right: 5px;
	padding-right: 22px;
	background: url(../images/common/pdf_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}

.xls_icon {
	margin-right: 5px;
	padding-right: 22px;
	background: url(../images/common/xls_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}

.doc_icon {
	margin-right: 5px;
	padding-right: 22px;
	background: url(../images/common/doc_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}

.ppt_icon {
	margin-right: 5px;
	padding-right: 22px;
	background: url(../images/common/ppt_icon.svg) 100% 50% no-repeat;
	background-size: 15px 15px;
}

@media screen and (max-width:768px) {
	.pdf_icon {
		padding-right: 20px;
		background: url(../images/common/pdf_icon.svg) 100% 50% no-repeat;
		background-size: 13px;
	}
	
	.xls_icon {
		padding-right: 20px;
		background: url(../images/common/xls_icon.svg) 100% 50% no-repeat;
		background-size: 13px;
	}
	
	.doc_icon {
		padding-right: 20px;
		background: url(../images/common/doc_icon.svg) 100% 50% no-repeat;
		background-size: 13px;
	}
	
	.ppt_icon {
		padding-right: 20px;
		background: url(../images/common/ppt_icon.svg) 100% 50% no-repeat;
		background-size: 13px;
	}
}


/***** ボタン *****/
:root {
	--btn-border: #76ECBD 2px solid;/*色はサイトによる*/
	--btn-color: linear-gradient(270deg,rgba(118, 236, 189, 1) 0%, rgba(103, 201, 198, 1) 100%);/*色はサイトによる*/
	--btn-color2: transparent linear-gradient(90deg, #fffb6a 0%, #faff7c 100%) 0% 0% no-repeat padding-box;
	--btn-pad: 20px 0;
	--btn-pad2: 12px 0;
}
@media screen and (max-width:768px){
:root {
	--btn-pad: 14px 20px 14px 10px;
	--btn-pad2: 10px 0;
}
}

.btn {
	margin: 0 auto !important;
}

.btn a {
	padding: var(--btn-pad);
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
    transition: all 0.4s;
	display: block;
	position: relative;
	background: var(--btn-color);
	border-radius: 40px;
	line-height: 1.5;
}

.btn.btn_back a {
	padding: var(--btn-pad);
	text-align: center;
	text-decoration: none;
	color: var(--font-color);
	font-size: 1.8rem;
	font-weight: 600;
    transition: all 0.4s;
	display: block;
	position: relative;
	background: #d9f9e8;
	border-radius: 40px;
	line-height: 1.5;
}

.btn.no_link {
	text-align: center;
}

.btn a::after{
	content: '';
	display: inline-block;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	background: url("../images/arrow.png") no-repeat;
	background-size: 32px 32px;
}

.btn.btn_back a::after{
	content: '';
	display: inline-block;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) scaleX(-1);
	left: 20px;
	background: url("../images/arrow.png") no-repeat;
	background-size: 32px 32px;
}

.btn.btn__gray a{
	padding: var(--btn-pad2);
	background-color: #E2E2E2;
	border: 2px solid #E2E2E2;
	color: #444;
	font-size: 1.8rem;
	font-weight: 500;
}

.btn.btn__gray a::after{
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-right: 2px solid #0BA800;
	border-bottom: 2px solid #0BA800;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(-45deg);
	transition-duration: 500ms;
}

.btn.btn__gray2 a{
	padding: var(--btn-pad2);
	background-color: #E2E2E2;
	border: 2px solid #E2E2E2;
	color: #444;
}

.btn.btn__gray2 a::after{
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	border-right: 2px solid #0BA800;
	border-bottom: 2px solid #0BA800;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(-45deg);
	transition-duration: 500ms;
}

.btn.btn__gray2.no_link{
	padding: var(--btn-pad2);
	background-color: #E2E2E2;
	border: 2px solid #E2E2E2;
	color: #444;
	font-weight: 500;
}

.btn.btn__gray2.no_link::after{
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	border-right: 2px solid #0BA800;
	border-bottom: 2px solid #0BA800;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(-45deg);
	transition-duration: 500ms;
}

@media screen and (max-width:768px){
.btn a {
    padding: var(--btn-pad);
	font-size: 1.7rem;
}
.btn a::after{
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	background: url("../images/arrow.png") no-repeat;
	background-size: 25px 25px;
}

.btn.btn__gray a{
	font-size: 1.7rem;
}
	
.btn.btn__gray2 a{
	font-size: 1.7rem;
}
.btn.btn__gray2.no_link{
	font-size: 1.7rem;
}	
	
}

.btn a:hover {
    opacity: 0.5;
    transform: scale(0.97,0.97);
	transition: all .3s;
}

.btn .no_link {
	padding: var(--btn-pad);
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	color: #999;
	background-color: #f3f3f3;
	border: #ccc 3px solid;
    border-radius: 5px;
	display: block;
}
@media screen and (max-width:768px){
.btn .no_link {
	padding: var(--btn-pad);
}
}

.btn2 {
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media screen and (max-width:768px){
.btn2 {
    display: block;
}
}

.btn2 li {
	width: 48%;
    margin-bottom: 2%;
    display: flex;
    justify-content: center;
}
@media screen and (max-width:768px){
.btn2 li {
    width: 100%;
    display: block;
}
}

.btn2 a {
    width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width:768px){
.btn2 a {
	padding: var(--btn-pad);
    display: block;
	box-sizing: border-box;
}
}

.btn3 {
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media screen and (max-width:768px){
.btn3 {
    display: block;
}
}

.btn3 li {
	width: 32%;
    margin-bottom: 2%;
    display: flex;
    justify-content: center;
}
@media screen and (max-width:1300px){
.btn3 li {
    width: 80%;
    display: block;
	margin: 0 auto 2.4% auto;
}
}

.btn3 a {
    width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width:768px){
.btn3 a {
	padding: var(--btn-pad);
    display: block;
	box-sizing: border-box;
}
}


.btn_ss {
	width: 30%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width:768px){
.btn_ss {
	width: 100%;
}
}

.btn_s {
	width: 50%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width:768px){
.btn_s {
	width: 100%;
}
}

.btn_m {
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width:768px){
.btn_m {
	width: 100%;
}
}

.btn_l {
	width: 85%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width:768px){
.btn_l {
	width: 100%;
}
}


/**** 矢印のみ ****/

/* テキストリンク */
.arrow1 a {
	text-decoration: none;
	color: #222;
	font-weight: 500;
	transition: all 0.4s;
	display: block;
	position: relative;
	line-height: 1.5;
}

.arrow1 a::after{
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-right: 2px solid #0BA800;
	border-bottom: 2px solid #0BA800;
	position: absolute;
	top: 50%;
	right: -13px;
	transform: translateY(-50%) rotate(-45deg);
	transition-duration: 500ms;
}

.arrow2 span {
	text-decoration: none;
	color: #222;
	font-weight: 500;
	transition: all 0.4s;
	display: block;
	position: relative;
	line-height: 1.5;
}

.arrow2 span::after{
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-right: 2px solid #0BA800;
	border-bottom: 2px solid #0BA800;
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translateY(-50%) rotate(-45deg);
	transition-duration: 500ms;
}


/***** ボタン
.btn {
	margin-top: 20px;
	margin-bottom: 20px;
}

.inner .btn:first-child,
.inner_item .btn:first-child {
	margin-top: 0;	
}

.inner .btn:last-child,
.inner_item .btn:last-child {
	margin-bottom: 0;	
}

.btn .no_link {
	padding: 25px 0;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	letter-spacing: normal;
	color: #999;
	background-color: #f3f3f3;
	border: #ccc 3px solid;
	display: block;
}

.btn a {
	width: 100%;
	padding: 25px 0;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	letter-spacing: normal;
	color: #fff;
	background-color: var(--point-color);
	border: 3px solid;
	border-color: var(--point-color);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: all 0.5s;	
	flex-grow: 1;
}

.btn a:hover {
	color: #fff;
	background-color: var(--base-color);
	border: 3px solid;
	border-color: var(--base-color);
}

.btn_two {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.btn_two li {
	width: 49%;
	margin-bottom: 2%;
	display: flex;
	justify-content: center;
}

.btn_two li:nth-child(odd) {
	margin-right: 2%;
}

.btn_three {
	display: flex;
	flex-wrap: wrap;
}

.btn_three li {
	width: 32%;
	margin-right: 2%;
	margin-bottom: 2%;
	display: flex;
}

.btn_three li:nth-child(3n) {
	margin-right: 0;
}

.btn_s {
	width: 50%;
	margin-right: auto;
	margin-left: auto;
}

.btn_m {
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}

.btn_l {
	width: 85%;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (max-width:768px) {
	.btn .no_link {
		padding: 20px 0;
	}
	
	.btn a {
		padding: 20px 0;
	}
	
	.btn_two {
		display: block;
	}	
	
	.btn_two li {
		width: 100%;
		display: block;
	}
		
	.btn_two li:nth-child(odd) {
		margin-right: 0;
		margin-bottom: 2%;
	}
	
	.btn_three {
	display: block;
}

.btn_three li {
	width: 100%;
	margin-right: 0;
	margin-bottom: 2%;
}
	
	.btn_s {
		width: 100%;
	}
	
	.btn_m {
		width: 100%;
	}
	
	.btn_l {
		width: 100%;
	}
}
 *****/

/* 数字リスト */
.list_number {
    margin: 0 0 20px;
    padding-left: 22px;
}

.list_number li {
    list-style: decimal;
    margin: 0 0 10px;
}

@media screen and (max-width:768px) {
.list_number {
    padding-left: 30px;
}
}

/* ページトップ */
/*********************/
#pagetop {
	position: fixed;
	bottom: -80px;
	right: 20px;
	z-index: 999;
	transition: 0.5s;
}
#pagetop:hover {
	opacity: 0.7;
}

#pagetop a {
  width: 48px;
  height: 48px;
  text-decoration: none;
  background-color: #0BA800;
  display: block;
  text-align: center;
  border-radius: 24px;
}

#pagetop a::before {
  content: '\f077';
  font-family: 'Font Awesome 6 Free';
  font-size: 23px;
  font-weight: 900;
  color: #fff;
  line-height: 48px;
}


/*****  *****/
:root {
	--base-color: #ebfef4;
	--point-color: #2DB1A1;
	--font-color: #3D3027;
	--gry-color: #f5f5f5;
	--red-color: #cc0000;
	--box-shadow: 1px 1px 20px 7px rgba(100, 100, 100, 0.1);
	--tb-border: #ddd 1px solid;
	--tb-bk: #FFF3F7;
	--td-cap-bk: #f5f5f5;
}