@charset "UTF-8";

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;
	box-sizing: border-box;
}

body {
	background-color: #eff0f4;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

span.text,
span.img {
	display: block;
}

.globalHeader {
	background: #ffffff;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
	justify-content: left;
	height: 50px;
	color: #222;
}
.globalHeader h1 {
	width: 400px;
	margin: 0 auto;
}
.globalHeader > ul {
	position: absolute;
	top: 51%;
	right: 16px;
	list-style: none;
	display: flex;
	transform: translate(0, -50%);
}
.globalHeader > ul li {
	margin-left: 24px;
}
.globalHeader > ul li.num {
	position: relative;
	cursor: pointer;
}
.globalHeader > ul li.num div {
	width: 30px;
}
.globalHeader > ul li.num span {
	position: absolute;
	right: -20px;
	top: -5px;
	display: inline-block;
	padding: 2px 3px;
	color: #fff;
	background: #ff5858;
	border-radius: 5%;
	font-size: 10px;
	font-weight: 500;
}
.globalHeader > ul li.member {
	font-size: 13px;
}
.globalHeader > ul li.member {
	display: flex;
	color: #000;
	text-decoration: none;
	align-items: center;
	cursor: pointer;
}
.globalHeader > ul li.member .member_img {
	display: flex;
	align-items: center;
}
.globalHeader > ul li.member .member_img button {
	cursor: pointer;
	width: 36px;
	height: 36px;
	background: url(/img/tileView/ic_ham_menu.svg) center center / contain no-repeat;
	border: none;
}
.globalHeader > ul li.member .member_img button:hover {
	background-color: #00000008;
}
.globalHeader > ul li.member .member_img img {
	height: 30px;
	padding-right: 10px;
}
.globalHeader > ul li.member .member_name {
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	flex: 1;
}

.globalHeader .logo {
	display: flex;
	align-items: center;
	-webkit-box-align: center;
	font-weight: bold;
	color: #000;
	padding: 0px 16px;
}

.globalHeader .logo img {
	width: 225px;
	height: auto;
}

.globalHeader .page_title {
	min-width: 0px;
	flex: 0 0 auto;
	height: 100%;
}

.globalHeader .page_title_text {
	position: relative;
	height: 100%;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	background: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgb(239, 239, 239) 100%) left center / 50px 100% no-repeat;
	font-size: 16px;
	font-weight: 700;
	padding: 0px 16px 0px 30px;
}

.globalHeader .page_title_text::before {
	content: '';
	position: absolute;
	left: 1px;
	top: 0px;
	clip-path: polygon(0px 0px, 100% 50%, 0px 100%);
	height: 100%;
	width: 10px;
	background: rgb(170, 170, 170);
}

.globalHeader .page_title_text::after {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	clip-path: polygon(0px 0px, 100% 50%, 0px 100%);
	height: 100%;
	width: 10px;
	background: rgb(255, 255, 255);
}
.globalHeader .page_title_text a {
	color: #000;
}

.user_menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 10px;
	box-shadow: rgba(0, 0, 0, 0.48) 0px 6px 18px 0px;
	z-index: 110;
	animation: 0.3s ease-in-out 0s 1 normal none running open;
	font-weight: 400;
	letter-spacing: 0px;
}
.user_menu.show {
	display: block;
	animation: open 0.3s ease-in-out;
}
@keyframes open {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.user_menu .user_menu_inner {
	width: 280px;
	background: rgb(255, 255, 255);
	font-size: 14px;
}
.user_menu .user_info {
	padding: 11px;
	display: flex;
	flex-direction: column;
	row-gap: 5px;
}
.user_menu .user_info .user_info_inner {
	width: 100%;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.user_menu .user_info .user_info_inner .user_name {
	min-width: 0px;
	flex: 1 1 0%;
}
.user_menu .user_info .user_info_inner .user_name .text {
	display: block;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.user_menu .user_info .user_mailaddress {
	display: block;
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.user_menu .user_info .link {
	font-size: 12px;
	color: rgb(14, 163, 170);
	text-decoration: underline;
}
.user_menu .user_info .link:hover {
	color: #363636;
}
.user_menu .site_info {
	border-top: 1px solid rgb(204, 204, 204);
	padding: 11px;
	display: flex;
	flex-direction: column;
	row-gap: 5px;
}
.user_menu .site_info .site_info_name {
	display: block;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.user_menu .site_info .site_info_inner {
	width: 100%;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.user_menu .site_info .site_info_inner .plan_name {
	min-width: 0px;
	flex: 0 0 auto;
}
.user_menu .site_info .site_info_inner .plan_name .text {
	display: block;
	font-size: 12px;
}
.user_menu .site_info .site_info_inner .plan_size {
	min-width: 0px;
	flex: 0 0 auto;
}
.user_menu .site_info .site_info_inner .plan_size .plan_tag {
	display: inline-flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	height: 20px;
	padding: 0px 3px;
	color: rgb(255, 255, 255);
}
.user_menu .site_info .site_info_inner .plan_size.plan1 .plan_tag {
	background-color: #e36411;
}
.user_menu .site_info .site_info_inner .plan_size.plan2 .plan_tag {
	background-color: #8fcc31;
}
.user_menu .site_info .site_info_inner .plan_size.plan3 .plan_tag {
	background-color: #66823e;
}
.user_menu .site_info .site_info_inner .plan_size.plan4 .plan_tag {
	background-color: #000;
}
.user_menu .site_info .site_info_inner .plan_size.option .plan_tag {
	background-color: #ffb012;
}
.user_menu .site_info .site_link {
	width: 100%;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	column-gap: 11px;
}
.user_menu .site_info .site_link .link {
	font-size: 12px;
	color: rgb(14, 163, 170);
	text-decoration: underline;
}
.user_menu .site_info .site_link .link:hover {
	color: #363636;
}
.user_menu .menu_link {
	border-top: 1px solid #ccc;
	font-weight: 500;
}
.user_menu .menu_link .link {
	-webkit-box-align: center;
	align-items: center;
	width: 100%;
	height: 36px;
	padding: 0px 11px;
	display: flex;
	column-gap: 11px;
	color: inherit;
}
.user_menu .menu_link .link:hover {
	background: rgb(245, 245, 245);
}
.user_menu .menu_link .link::before {
	content: '';
	width: 20px;
	height: 20px;
}

@keyframes user_menu_popup {
	0% {
		transform: translateY(0px) scale(0.8);
		opacity: 0;
	}
	100% {
		transform: translateY(0) scale(1);
	}
	80%,
	100% {
		opacity: 1;
	}
}

/* 固定ヘッダの影響でページ内リンクがずれるのに対応 */
html {
	scroll-padding-top: 55px;
	background-color: #eff0f4;
}

main {
	padding-top: 55px;
}

.form-section .container {
	margin: 0 auto;
}

main .form-section .container > .box {
	border: none;
}

.remodal {
	max-width: 800px;
	padding: 10px;
}

.remodal .modal_inner {
	display: flex;
	text-align: left;
	justify-content: space-between;
}

.remodal h2 {
	font-weight: 700;
	font-size: 20px;
	line-height: 29px;
	text-align: center;
	color: #333333;
}

.remodal .wrap {
	display: flex;
	margin: 0;
}
.remodal-confirm {
	margin-right: 1rem;
}
.remodal-confirm:hover {
	color: #fff;
}
.remodal-cancel:hover {
	color: #fff;
}
.remodal .wrap > div {
	-webkit-flex: 1;
	flex: 1;
	background: none;
}

.remodal .wrap > .summary {
	margin-left: 1rem;
	text-align: left;
}

.remodal .wrap > .summary p {
	margin-left: 1rem;
	text-align: left;
}

.remodal .wrap > .summary p + p {
	margin-top: 1rem;
}

.remodal .wrap > .summary ul {
	list-style: disc;
	padding-left: 2rem;
	margin: 1.6rem 0;
}
.remodal .archive_contents {
	width: 85%;
}
.remodal .archive_head {
	border-bottom: 1px solid #ccc;
}
.remodal .archive_info + h2 {
	margin-top: 1rem;
}

/* マイサイト */
.header {
	display: flex;
	align-items: flex-start;
	border-bottom: 1px solid #424242;
	margin: 0 0 20px 0;
	justify-content: space-between;
	flex-direction: column;
}

.header .header_title {
	display: flex;
	align-items: center;
	padding-bottom: 10px;
}

.header .header_title .title_text {
	font-size: 24px;
}

.header_title_wrap {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.header_link {
	position: absolute;
	right: 0;
}

.header_link a {
	color: #0ea3aa;
	border: 1px solid #0ea3aa;
	border-radius: 20px;
	padding: 6px 20px;
	background-color: #fff;
	font-weight: bold;
}

.header .header_title .link {
	display: inline-block;
	border: 1px solid #0ea3aa;
	border-radius: 100vh;
	background: #fff url(/img/mysites/arrow-right.svg) no-repeat;
	background-position: right 10px top 50%;
	padding: 1px 24px 1px 14px;
	margin: 3px 0 0 10px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	font-weight: bold;
	font-size: 13px;
}
.header .header_title .link:hover {
	color: #0ea3aa;
}

.header .header_title_notes {
	font-size: 13px;
	color: #555555;
	margin-bottom: 12px;
}

.header .update_time {
	display: flex;
	padding-bottom: 12px;
}

.filters {
	border-top: 1px solid #000;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	padding: 5px 10px;
	margin-left: 5px;
}

.tag {
	border: 0;
	margin: 0 5px;
}

.selected {
	background: #000 !important;
	color: #fff !important;
}

.box_link {
	text-align: right;
	margin: 3px 0 0 0;
}

.box_link .link {
	display: inline-block;
	background-color: #0ea3aa;
	color: #fff;
	padding: 3px 10px;
	margin: 0 0 0 4px;
	border-radius: 100vh;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	max-width: 140px;
}

.box_link .link.disabled {
	background-color: #e5e6ea;
	color: #333;
}

.link_text {
	background-color: #000;
	color: #fff;
	border-radius: 10px 0 0 0;
	padding: 0 15px 0 10px;
	margin-right: 5px;
}

.wrap {
	max-width: 1160px;
	width: 100%;
	margin: 20px auto 0;
}

.wrap .row {
	display: flex;
	justify-content: space-between;
}

.site_userseminar .site_header {
	text-align: center;
	margin-bottom: 40px;
}
.site_userseminar .site_header h1 {
	font-size: 40px;
}
.site_userseminar .site_header .breadcrumb {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
.site_userseminar .site_header .breadcrumb li a,
.site_userseminar .site_header .breadcrumb li span {
	display: block;
	color: #fff;
	text-decoration: none;
	border-radius: 10rem;
	font-size: 13px;
	text-align: center;
}
.site_userseminar .site_header .breadcrumb li a i,
.site_userseminar .site_header .breadcrumb li span i {
	font-size: 16px;
	vertical-align: middle;
}
.site_userseminar .site_header .breadcrumb li span {
	background-color: #81cbcf;
	padding: 4px 26px 4px 10px;
}
.site_userseminar .site_header .breadcrumb li a {
	background-color: #0ea3aa;
	padding: 4px 10px;
	margin-left: -18px;
}

.fa-caret-left:before {
	top: -2px;
	position: relative;
}

.globalNavLink {
	max-width: 1160px;
	margin: 20px auto 0;
	width: 100%;
}

.globalNavLink .buttons {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

.globalNavLink .link {
	background-color: #fff;
	color: #000;
	padding: 5px 80px;
	border: 2px solid #9c9c9c;
	border-radius: 5px;
	display: flex;
	align-items: center;
}
.globalNavLink .link:before {
	content: '';
	display: inline-block;
	margin-right: 8px;
	background-size: cover;
}

.nav-top:before {
	background: url(/img/mysites/nav-top.png) no-repeat;
	width: 17px;
	height: 15px;
}
.nav-mysite:before {
	background: url(/img/mysites/nav-mysite.png) no-repeat;
	width: 14px;
	height: 14px;
}
.nav-support:before {
	background: url(/img/mysites/nav-support.png) no-repeat;
	width: 7px;
	height: 15px;
}
.settings .header-title .main-title {
    margin: 60px 0 0 0;
}
.settings .main_contents {
    margin: 60px 0 0 0;
}

@media screen and (max-width: 500px) {
	.globalNavLink .link {
		padding: 5px 10px;
	}

	.globalHeader {
		overflow: hidden;
	}
}