*,
::after,
::before {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: "Yu Gothic",YuGothic,"游ゴシック","游ゴシック体","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	font-size: 1rem;
    line-height: 1.4;
	color: #000;
}

a {
	color: #000;
	text-decoration: none;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;    
}

a:hover{
	opacity: 0.7;
}

img {
	display: block;
	max-width: 100%;
}

iframe{
	max-width: 100%;
}

figure{
	display: block;
	margin: 0;
}


@media screen and (min-width: 768px){
	.zoomable{
		display: block;
		overflow: hidden;
	}
		.zoomable img{
			transition: 0.3s all ease-out;
		}
		.zoomable:hover{
			opacity: 1;
		}
			.zoomable:hover img{
				transform: scale(1.1);
			}
}

h1,
h2,
h3,
p,
ul {
	margin: 0;
	padding: 0;
}

/* レスポンス処理 start */
.u-inner {
	width: 1300px;
	margin: auto;
}
@media screen and (max-width: 1300px) {
	.u-inner {
		width: 94vw;
		margin: 0 auto;
	}
}

.u-inner2 {
	width: 900px;
	margin: auto;
}
@media screen and (max-width: 1300px) {
	.u-inner2 {
		width: 94vw;
		margin: 0 auto;
	}
}


.sp_show {
	display: none !important;
}
.sp_none {
	display: block !important;
}
.pc_flex {
	display: flex !important;
}
.pc_none {
	display: none !important;
}
@media screen and (max-width: 768px) {
	.sp_show {
		display: block !important;
	}
	.sp_none {
		display: none !important;
	}
	.pc_flex {
		display: none !important;
	}
	.pc_none {
		display: flex !important;
	}
}
/* レスポンス処理 end */

/* ヘッダー部分 start */
#topbar{
	position: relative;
	margin: 0 auto;
}
	.header-fix #topbar {
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 100;
		animation: slide_down_menu 0.5s ease; animation: slide_down_menu 0.5s ease;
		-webkit-animation: slide_down_menu 0.5s ease; animation: slide_down_menu 0.5s ease;
		/* box-shadow: 0 2px 15px 3px rgba(0,0,0,0.1);
		-webkit-box-shadow: 0 2px 15px 3px rgba(0,0,0,0.1);
		-moz-box-shadow: 0 2px 15px 3px rgba(0,0,0,0.1); */
	}
	@-webkit-keyframes slide_down_menu {
		0% { top:-60px; }
		100% { top:0px; }
	}
	@keyframes slide_down_menu {
		0% { top:-60px; }
		100% { top:0px; }
	}
	
.sp-menu {
	display: none;
}
@media screen and (max-width: 768px) {
	.sp-menu {
		display: block;
		position: absolute;
		right: 3vw;
		top: 25px;
	}
}
.sp-menu-btn{
	display: block;
	position: relative;
	z-index: 1221;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
	width: fit-content;
}
	.sp-menu-btn.active{
		position: fixed;
		right: 25px;
	}
	.sp-menu-btn span{
		display: block;
		width: 20px;
		height: 2px;
		margin-bottom: 4px;
		position: relative;
		background: #000;
		border-radius: 3px;
		z-index: 1;
		transform-origin: 4px 0px;
	}
	.sp-menu-btn span:first-child{
		transform-origin: 0% 0%;
	}
	.sp-menu-btn span:nth-last-child(2){
		transform-origin: 0% 100%;
	}
	.sp-menu-btn span:last-child{
		margin-bottom: 0;
	}
	.sp-menu-btn.active span{
		opacity: 1;
		transform: rotate(45deg) translate(0, 0);
		background: #fff;
	}
	.sp-menu-btn.active span:nth-child(2){
		opacity: 0;
		transform: rotate(0deg) scale(0.2, 0.2);
	}
	.sp-menu-btn.active span:nth-child(3){
		transform: rotate(-45deg) translate(-1px, -2px);
	}
	.sp-menu .sp-menu-btn:hover {
		opacity: 0.7;
	}

.sp-menu-content {
	visibility: hidden;
	transform: translateY(-100%);
	border-radius: 0;
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	height: auto;
	z-index: 1200;
	width: fit-content;
	overflow: hidden;
	background-color: #03497A;
	transition: visibility .3s ease-in-out, transform .3s ease-in-out;
	padding: 70px 80px;
}
	.sp-menu-content.show {
		visibility: visible;
		transform: translateY(0);
	}


.sp-menu-header {
	display: flex;
	align-items: center;
}

.sp-menu-close {
	margin-right: 20px;
	cursor: pointer;
}

.sp-menu-list {
	width: fit-content;
	display: flex;
	flex-direction: row;	
}

.sp-menu-list .column:nth-child(2n+1){
	margin-right: 60px;
}

.sp-menu-item {
	padding-bottom: 20px;
	padding-top: 24px;
	width: fit-content;
}
	.sp-menu-item > a{
		font-size: 20px;
		font-weight: bold;
		color: #fff;
		color: #fff;
		display:block;
		width:fit-content;
	}
	.sp-menu-list .sub_menu{
		margin-bottom: 20px;
	}
		.sp-menu-list .sub_menu .item{
			margin-bottom: 25px;
		}
			.sp-menu-list .sub_menu .item:last-child{
				margin-bottom: 0;
			}
			.sp-menu-list .sub_menu .item a{
				font-size: 15px;
				font-weight: 500;
				color: #fff;
			}
	@media screen and (max-width: 768px) {
		.sp-menu-content {
			padding: 68px 27px;
		}
		.sp-menu-list .column:nth-child(2n+1){
			margin-right: 20px;
		}
		.sp-menu-item {
			padding-bottom: 12px;
			padding-top: 12px;
		}
			.sp-menu-item > a{
				font-size: 18px;
			}
		.sp-menu-list .sub_menu{
			margin-bottom: 12px;
		}
		.sp-menu-list .sub_menu .item{
			margin-bottom: 16px;
		}
		.sp-menu-list .sub_menu .item a{
			font-size: 15px;
		}
	}	
			
body.sp-menu-content-active {
	overflow: hidden;
}

.screen-darken {
	height: 100%;
	width: 0%;
	z-index: 30;
	position: fixed;
	top: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(34, 34, 34, 0.6);
	transition: opacity .2s linear, visibility 0.2s, width 2s ease-in;
}
	.screen-darken.active {
		z-index: 10;
		transition: opacity .3s ease, width 0s;
		opacity: 1;
		width: 100%;
		visibility: visible;
	}


/* ヘッダー部分 end */

.breadcrumb{
	width: 100%;
	height: 48px;
	display: flex;
	align-items: center;
	padding: 0 57px;
}
	@media screen and (max-width: 1300px) {
		.breadcrumb{
			padding: 0 30px;
		}
	}
	.breadcrumb ul{
		display: flex;
		flex-direction: row;
		align-items: center;
	}
		.breadcrumb ul li{
			list-style: none;
			font-size: 11px;
			padding-right: 20px;
			position: relative;
		}
		.breadcrumb ul li::after{
			content: '';
			background: url('../img/breadcrumb-arrow.png');
			width: 4px;
			height: 6px;
			position: absolute;
			right: 6px;
			top: 4px;
		}
		.breadcrumb ul li:last-child{
			margin-right: 0;
		}
			.breadcrumb ul li:last-child::after{
				display: none;
			}
			.breadcrumb ul li a{
				font-size: 11px;
			}
			.breadcrumb ul li a:hover{
				text-decoration: underline;
			}


/* Form control Start */
.form-label,
.form-switch,
.form-slider {
    color: #000;
    font-weight: 500;
}
.form-label {
    font-size: 16px;
    line-height: normal;
}
.form-input,
.form-select,
.form-checkbox input,
.form-radio input {
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #F9F9F9;
    border-width: 1px;
    border-style: solid;
    border-color: #D3D3D3;
	border-radius: 4px;
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.form-input:hover,
.form-select:hover,
.form-checkbox input:hover,
.form-radio input:hover {
    border-color: #a5a5a5;
}
.form-input:active,
.form-input:focus,
.form-select:active,
.form-select:focus,
.form-checkbox input:active,
.form-checkbox input:focus,
.form-radio input:active,
.form-radio input:focus {
    outline: none;
    border-color: #a5a5a5;
}
.form-input[disabled],
.form-select[disabled],
.form-checkbox input[disabled],
.form-radio input[disabled] {
    cursor: not-allowed;
    background-color: #f3f5f8;
    border-color: #f3f5f8;
}
.form-input.form-error,
.form-select.form-error,
.form-checkbox input.form-error,
.form-radio input.form-error {
    border-color: #ff6157;
}
.form-input.form-warning,
.form-select.form-warning,
.form-checkbox input.form-warning,
.form-radio input.form-warning {
    border-color: #ffb471;
}
.form-input.form-success,
.form-select.form-success,
.form-checkbox input.form-success,
.form-radio input.form-success {
    border-color: #2bbf96;
}
.form-input,
.form-select {
    display: block;
    font-size: 16px;
	padding: 11px 7px;
    line-height: 1.4;
    box-shadow: none;
    max-width: 100%;
}
.form-input::-webkit-input-placeholder {
    color: #95a4b4;
}
.form-input::-moz-placeholder {
    color: #95a4b4;
}
.form-input:-ms-input-placeholder {
    color: #95a4b4;
}
.form-input::-ms-input-placeholder {
    color: #95a4b4;
}
.form-input::placeholder {
    color: #95a4b4;
}
.form-input::-ms-input-placeholder {
    color: #95a4b4;
}
textarea.form-input {
    height: auto;
    resize: vertical;
}
.form-select {
    padding-right: 46px;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8%2011.4L2.6%206%204%204.6l4%204%204-4L13.4%206%208%2011.4z%22%20fill%3D%22%23627183%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
}
.form-select-sm {
    padding-right: 38px;
    background-position: right 11px center;
}
.form-select-sm,
.form-input-sm {
    padding: 5px 11px;
    height: 36px;
}
.has-icon-left,
.has-icon-right {
    position: relative;
}
.has-icon-left svg,
.has-icon-right svg {
    pointer-events: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.has-icon-left .form-input {
    padding-left: 46px;
}
.has-icon-left .form-input + svg {
    left: 15px;
}
.has-icon-left .form-input-sm {
    padding-left: 38px;
}
.has-icon-left .form-input-sm + svg {
    left: 11px;
}
.has-icon-right .form-input {
    padding-right: 46px;
}
.has-icon-right .form-input + svg {
    right: 15px;
}
.has-icon-right .form-input-sm {
    padding-right: 38px;
}
.has-icon-right .form-input-sm + svg {
    right: 11px;
}
.form-checkbox,
.form-radio,
.form-switch {
    cursor: pointer;
}
.form-checkbox,
.form-radio,
.form-switch,
.form-slider {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.1px;
}
.form-checkbox,
.form-radio {
    position: relative;
    padding-left: 32px;
}
.form-checkbox input,
.form-radio input {
    position: absolute;
    left: 0;
    top: 2px;
    width: 19px;
    height: 19px;
    cursor: pointer;
	margin-top: 0;
}
.form-checkbox input:checked,
.form-radio input:checked {
    background-color: #000 !important;
    border-color: #000 !important;
    background-position: 50%;
}
.form-checkbox input {
    border-radius: 2px;
}
.form-checkbox input:checked {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGQ9Ik0xMS40IDVMMTAgMy42bC00IDQtMi0yTDIuNiA3IDYgMTAuNHoiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==);
}
.form-radio input {
    border-radius: 50%;
}
.form-radio input:checked {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBmaWxsPSIjRkZGIiBjeD0iNyIgY3k9IjciIHI9IjMiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==);
}


.form-switch {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.form-switch input {
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}
.form-switch .form-switch-icon {
    display: block;
    position: relative;
    min-width: 60px;
    width: 60px;
    height: 32px;
    border-radius: 16px;
    background: #95a4b4;
}
.form-switch .form-switch-icon::before {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    width: 28px;
    height: 28px;
    border-radius: 14px;
    background: #fff;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
.form-switch input:checked + .form-switch-icon {
    background: #000;
}
.form-switch input:checked + .form-switch-icon::before {
    left: 30px;
}
.form-switch > span:not(.form-switch-icon) {
    -webkit-box-ordinal-group: 0;
    order: -1;
    margin-right: 12px;
}
.form-switch > span:not(.form-switch-icon):last-child {
    -webkit-box-ordinal-group: initial;
    order: initial;
    margin-left: 12px;
    margin-right: 0;
}

.form-radio2{
	display: inline-block;
	margin-right: 30px;
}
	.form-radio2:last-child{
		margin-right: 0;
	}

	.form-radio2 input[type="radio"] {
		display: none;
	}
	.form-radio2 label{
		display: inline-block;
		position: relative;
		padding-left: 27px;
		cursor: pointer;
		font-size: 16px;
		font-weight: 500;
		user-select: none;
	}
		.form-radio2 label::before {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			width: 20px;
			height: 20px;
			border: 1px solid #D3D3D3;
			border-radius: 50%;
			background-color: white;
			transition: background-color 0.3s ease, border-color 0.3s ease;
		}
			.form-radio2 input[type="radio"]:checked + label::before {
				background-color: #fff;
				border-color: #D3D3D3;
			}

		.form-radio2 label::after {
			content: "";
			position: absolute;
			left: 5px;
			top: 5px;
			width: 9px;
			height: 9px;
			border-radius: 50%;
			background-color: #000;
			transition: background-color 0.3s ease;
			opacity: 0;
		}
		.form-radio2 input[type="radio"]:checked + label::after {
			opacity: 1;
			background-color: #000;
		}
/* Form control End */		
#totop {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 15;
    line-height: 0;
    margin: 0;
}

.fadeInAnim {
	opacity: 0;
}
	.fadeInAnim.visible {
		animation: fadeIn 1s ease-out 0.5s forwards;
	}
	.fadeInAnim.second.visible {
		animation: fadeIn 1s ease-out 1s forwards;
	}
	.fadeInAnim.third.visible {
		animation: fadeIn 1s ease-out 1.5s forwards;
	}
	@keyframes fadeIn {
		0% {
		opacity: 0; 
		}
		100% {
		opacity: 1; 
		} 
	}
