@charset "UTF-8";

/* CSS Information
---------------------------------------------------------------
File name:common.css
Summary:reset styles
Created:2022-04-01
--------------------------------------------------------------- */
/* Link */
/* ------------------------------------------------------------ */

a:link,
a:visited {
	color: #FFA700;
	text-decoration: none;
}

a:hover,
a:active {
	color: #FF7600;
	text-decoration: none;
}

img {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.alpha:hover {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */

em {
	font-style: normal;
}

sup {
	font-size: 66%;
	vertical-align: top;
}

sub {
	font-size: 66%;
	vertical-align: baseline;
}

/* Margin */
/* ------------------------------------------------------------ */
.t_mgn5 {
	margin-top: 5px;
}

.t_mgn10 {
	margin-top: 10px;
}

.t_mgn10_b {
	margin-bottom: 10px;
}

.t_mgn20 {
	margin-top: 20px;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */

.indent {
	text-indent: -1em;
	margin-left: 1em;
}

/* Align */
/* ------------------------------------------------------------ */

.a_left {
	text-align: left !important;
}

.a_center {
	text-align: center !important;
}

.a_right {
	text-align: right !important;
}

/* Float */
/* ------------------------------------------------------------ */

.f_left {
	float: left;
}

.f_right {
	float: right;
}

/* Clear */
/* ------------------------------------------------------------ */

.clfx::after {
	content: "";
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

/* HR */
/* ------------------------------------------------------------ */

hr {
	height: 1px;
	margin: 40px 0;
	padding: 0;
	display: block;
	border: 0;
	border-top: 1px #e6e6e6 solid;
}

/* Center合わせ */
/* ------------------------------------------------------------ */

.c_mgn {
	margin-left: auto;
	margin-right: auto;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */

.pc_mode {
	display: inherit !important;
}

.sp_mode {
	display: none !important;
}


body {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

/* Header */
/* ------------------------------------------------------------ */

header {
	position: relative;
	z-index: 999;
	overflow: hidden;
}

header .inner {
	background: rgba(255, 255, 255, 1);
	width: 100%;
	position: fixed;
}

header .inner .header_area > div > div dl#font_size {
	font-size: 0;
	width: 140px;
	flex-shrink: 0;
}

header .inner .header_area > div > div dl#font_size dt {
	font-size: 12px;
    display: block;
	margin-bottom: 3px;
}

header .inner .header_area > div > div dl#font_size dd {
	box-sizing: border-box;
	border: 1px solid #707070;
	border-radius: 6px;
	background: #fff;
	font-size: 16px;
	width: 50px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	display: inline-block;
}

header .inner .header_area > div > div dl#font_size dd:nth-of-type(2) {
	margin-left: 10px;
}

header .inner .header_area > div > div dl#font_size dd.current {
	background: #E1E9EF;
}

header .inner .header_area > div > div dl#font_size dd:hover {
	cursor: pointer;
}

header .inner .header_area > div > div div#login_name {
	background: #505050;
	height: 100px;
	margin-right: 1px;
	padding: 0 25px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

header .inner .header_area > div > div div#login_name span:nth-of-type(1) {
	color: #fff;
	margin-right: 15px;
}

header .inner .header_area > div > div div#login_name span:nth-of-type(1) img {
	width: 30px;
	height: auto;
	margin-right: 10px;
}

header .inner .header_area > div > div div#btn_system {
	background: #505050;
	height: 100px;
	padding: 0 25px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

header .inner .header_area > div > div div#btn_system span {
	border: 1px solid #fff;
	border-radius: 6px;
	color: #fff;
	padding: 10px;
	display: block;
}

header .inner .header_area > div > div div#btn_system span:hover {
	cursor: pointer;
	border: 1px solid #FF7600;
	background: #FF7600;
}

@media screen and (min-width: 769px) {
	header .inner .header_area > div > h1 {
		width: 300px;
		margin-left: 30px;
	}

	header .inner .header_area > div > div {
		display: flex;
		align-items: center;
		flex-shrink: 0;
		margin-left: 30px;
	}

	header .inner .header_area > div {
		background: rgba(255, 255, 255, 1);
		height: 100px;
		padding: 0;
		position: relative;
		z-index: 99;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}



}

@media screen and (max-width: 768px) {
	header .inner .header_area > div > div{
		display: flex;
		align-items: center;
		flex-shrink: 0;
		width: 100%;
	}

	header .inner .header_area > div {
		background: rgba(255, 255, 255, 1);
		height: 50px;
		padding: 0;
		position: relative;
		z-index: 99;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	header .inner .header_area > div > div div#login_name{
		justify-content: flex-end;
		background: #505050;
		box-sizing: border-box;
		padding: 0 10px;
		margin: 0;
		width: 100%;
		height: 50px;
	}
	header .inner .header_area > div > div div#login_name span:nth-of-type(1){
		color: #fff;
	}
	#font_size, #btn_system, #logout_form, #btn_logout{
		display: none !important;
	}
	header .inner .header_area > div > h1{
		margin: 10px auto;
		width: 240px;
	}
	header .inner .header_area > div > h1 span{
		display: none !important;
	}
	header .inner .header_area > div > h1 div{
		width: 100%;
	}
	header .inner .header_area > div{
		flex-direction: column;
	}
	main{
		padding: 50px 0 55px !important;
	}
}

/* Header fixed */
/* ------------------------------------------------------------ */

header .inner.fixed {
	background: rgba(255, 255, 255, 1) !important;
}

header .inner.open {
	position: fixed !important;
	top: 0px !important;
	margin-top: 0 !important;
	z-index: 99;
}

/* Global menu */
/* ------------------------------------------------------------ */

nav#menu {
    background: rgba(255, 255, 255, 0.9);
    color: #fff;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

nav#menu ul {
    list-style: none;
	background: #E1E9EF;
	width: 100%;
	height: 190px;
	margin-top: 100px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

nav#menu ul li {
	text-align: left;
    display: block;
	margin-right: 60px;
	opacity: 0;
	transform: translateX(200px);
	transition: transform 0.3s ease, opacity 0.1s ease;
}

nav#menu ul li:nth-of-type(1) {
	transition-delay: .1s;
}

nav#menu ul li:nth-of-type(2) {
	transition-delay: .15s;
}

nav#menu ul li:nth-of-type(3) {
	transition-delay: .2s;
}

nav#menu ul li:nth-of-type(4) {
	transition-delay: .25s;
}

nav#menu ul li:nth-of-type(5) {
	transition-delay: .3s;
}

nav#menu ul li.slide_btn a {
	/* background: url(../img/common/btn_arrow_gray.svg) no-repeat center right; */
	background-size: 14px 10px;
	color: #505050;
	width: 250px;
	padding: 10px 0;
	position: relative;
	display: inline-block;
}

nav#menu ul li.slide_btn a::after {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
    right: 0;
    width: 6px;
    height: 6px;
    border-top: 2px solid #505050;
    border-right: 2px solid #505050;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

nav#menu ul li.slide_btn a span {
	background: #D9D9D9;
	width: 250px;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
}

nav#menu ul li.slide_btn a span::after {
	content: "";
	width: 0px;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #18419E;
	transition: 0.4s;
}

nav#menu ul li.slide_btn a:hover span::after {
	width: 100%;
}

.open nav#menu {
    visibility: visible;
    opacity: 1;
}

.open nav#menu ul li {
    opacity: 1;
	transform: translateX(0);

}

/* Main */
/* ------------------------------------------------------------ */
main {
	box-sizing: border-box;
	padding: 100px 0 55px;
}

@media screen and (min-width: 769px) {
	main section:not(#title) {
		margin: 55px auto 0;
		padding: 0 70px;
	}
}
@media screen and (max-width: 768px) {
	main section:not(#title) {
		/* margin: 55px 50px 0; */
	}
}

main section p.comment {
	line-height: 1.7;
}

/* title */
/* ------------------------------------------------------------ */

main section#title {
	background: #18419E;
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

main section#title div#title_endbtn {
	width: 450px;
	height: 100px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	margin: 0 35px 0 0;
}

@media screen and (max-width: 879px) {
	main section#title h2 {
		color: #fff;
		font-size: 1.275em;
		font-weight: bold;
		margin: 0 0 20px 70px;
	}
	/* body#question1 section#title h2 span:first-child {
		font-size: 0.9em;
	}
	body#question1 section#title h2 span:last-child {
		color: #fff;
		font-size: 0.7em;
		font-weight: bold;
	} */
}

@media screen and (min-width: 880px) {
	main section#title h2 {
		color: #fff;
		font-size: 1.875em;
		font-weight: bold;
		margin: 0 0 20px 70px;
	}
	/* body#question1 section#title h2 span:last-child {
		color: #fff;
		font-size: 1em;
		font-weight: bold;
	} */
}

main section#title p.btn_user,
.title_edit,
.title_entry {
	box-sizing: border-box;
	margin: 0 20px 20px 0;
	cursor: pointer;
}

main section#title p.btn_user a,
.title_edit,
.title_entry {
	white-space: nowrap;
	box-sizing: border-box;
	border-radius: 6px;
	background-color: #505050;
	color: #fff;
	box-sizing: border-box;
	padding: 13px 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

main section#title p.btn_user a:hover,
.title_edit:hover,
.title_entry:hover{
	background-color: #FF7600;
	color: #fff;
}

main section#title p.btn_user a span,
.title_edit span,
.title_entry span {
	position: relative;
}

@media screen and (min-width: 769px) {
	body#question1 section#title h2,
	body#question2 section#title h2 {
		display: flex;
		flex-direction: column;
		color: #fff;
		font-size: 1.875em;
		margin: auto 0 auto 5%;
	}
	body#question1 section#title h2 span:first-child,
	body#question2 section#title h2 span:first-child {
		/* margin-bottom: 2px; */
	}
	body#question1 section#title h2 span:last-child,
	body#question2 section#title h2 span:last-child {
		font-weight: bold;
	}
}

@media screen and (max-width: 768px) {
	main section#title {
		height: 50px;
	}

	main section#title div#title_endbtn {
		width: auto;
		height: auto;
		display: inline-block;
		margin: auto 15px auto 0;
	}

	body#question1 section#title .btn_user,
	body#question2 section#title .btn_user{
		display: none;
	}

	body#question1 section#title .title_edit,
	body#question2 section#title .title_edit{
		margin: 0;
		padding: 10px 20px;
	}

	body#question1 section#title h2,
	body#question2 section#title h2 {
		display: flex;
		flex-direction: column;
		color: #fff;
		font-size: 1em;
		margin: auto 5%;
	}
	/* body#question1 section#title h2 span:first-child,
	body#question2 section#title h2 span:first-child {
		display: none;
	} */
	body#question1 section#title h2 span:last-child,
	body#question2 section#title h2 span:last-child {
		font-weight: bold;
	}
}


/* Form */
/* ------------------------------------------------------------ */

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form input[type="password"],
form input[type="date"],
form input[type="number"] {
	border-radius: 6px;
	border: 1px #707070 solid;
	background: #fff;
	font-size: 1em;
	letter-spacing: 1px;
	width: 100%;
	height: 36px;
	padding: 0 10px;
	box-sizing: border-box;
}

form select {
	border-radius: 6px;
	border: 1px #707070 solid;
	background: #fff;
	font-size: 1em;
	letter-spacing: 1px;
	height: 36px;
	padding: 0 10px;
	box-sizing: border-box;
	-webkit-appearance: none;
}

form textarea {
	border-radius: 6px;
	border: 1px #707070 solid;
	background: #fff;
	font-size: 1em;
	letter-spacing: 1px;
	width: 100%;
	padding: 0 10px;
	box-sizing: border-box;
}

form input[type="file"] {
	font-size: 1em;
}

/*Custom CheckBox*/
form .check label {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
}
form .check label input[type="checkbox"] {
	position: absolute;
	z-index: 0;
	opacity: 0;
}
form .check label .custom_check {
	position: relative;
	background: #FFF;
	width: 20px;
	min-width: 20px; /* 20230310_okuda:add */
	height: 20px;
	border: 1px solid #727171;
	border-radius: 3px;
}
form .check label .custom_check::before {
	content: "";
	height: 2px;
	width: 7px;
	background: #FFF;
	position: absolute;
	transform: rotate(40deg);
	top: 11px;
	left: 4px;
	display: none;
}
form .check label .custom_check::after {
	content: "";
	height: 2px;
	width: 10px;
	background: #FFF;
	position: absolute;
	transform: rotate(-50deg);
	top: 9px;
	left: 8px;
	display: none;
}
form .check label input:checked + .custom_check,
form .check label input:checked ~ .custom_check {
	border: 1px solid #18419E;
	background: #18419E;
}
form .check label input:checked + .custom_check::before,
form .check label input:checked + .custom_check::after,
form .check label input:checked ~ .custom_check::before,
form .check label input:checked ~ .custom_check::after {
	display: block;
}
form .check label span {
	line-height: 1;
}
form .check label span a {
	text-decoration: underline;
}

@media screen and (min-width: 769px) {
	form .check label span.custom_check_txt {
		margin-left: 10px;
	}
}
@media screen and (max-width: 768px) {
	form .check label span.custom_check_txt {
		margin-left: 5%;
	}
}
/*Custom radio button*/
form .radio label {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
form .radio label input[type="radio"] {
	position: absolute;
	visibility: hidden;
	width: auto;
}
form .radio .mwform-radio-field-text {
	line-height: 1;
	margin-right: 20px;
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
form .radio .mwform-radio-field-text::before {
	position: relative;
	left: 0;
	top: 0;
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background: #fff;
	border: 1px solid #727171;
	box-sizing: border-box;
	border-radius: 50%;
	vertical-align: middle;
}
form .radio input[type="radio"]:checked + .mwform-radio-field-text::before {
	border: 1px solid #18419E;
}
form .radio input[type="radio"]:checked + .mwform-radio-field-text::after {
	position: absolute;
	left: 5px;
	top: 5px;
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #18419E;
	border-radius: 50%;
	box-sizing: border-box;
	vertical-align: middle;
}

form .btn_submit {
	background-color: #18419E;
	border-radius: 6px;
	color: #fff;
	width: 350px;
	height: 40px;
	margin: 40px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	display: block;
	cursor: pointer;
	border: none;
}

form .btn_submit:hover {
	background-color: #001E60;
}

/*===== okuda_20210507 =====*/
.tooltip{
    position: relative;
    cursor: pointer;
}
.tooltip p{
    margin:0;
    padding:0;
}
.description {
    text-align: left;
    position: absolute;
    padding: 10px;
    font-size: 13px;
    line-height: 1.4em;
    border-radius: 5px;
    background: #fff;
    height: auto;
    width: 200px;
    top: 50%;
    left: 50%;
	transform: translateY(-50%) translateX(-50%);
    border: 3px solid #18419E;
    z-index: 1;
}
.description_display_none{
	display: none;
}