@charset "utf-8";
/* ===========================================================

	Title: global.css
	Created: 2019-11-15

=========================================================== */
/*

	body
	header
	global-navigation
	contents-style
	aside
	topicpath
	btPageTop
	footer


=========================================================== */
/* ===========================================================

	body

=========================================================== */
html {
	font-size: 62.5%
}
body {
	font-family: "YakuHanJP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*font-family: "游明朝","YuMincho", serif;*/
	font-weight: 500;
	color: #111;
	text-align: center;
	font-size: 14px;
	font-size: 1.4rem;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-feature-settings : "palt" 1;
}
html * {
	max-height: 999999px;
} /* Chrome font size adjust  */

/* ===========================================================

	header

=========================================================== */
header {
	position: fixed;
	top: 0;
	height: 80px;
	width: 100%;
	background-color: #fff;
	z-index: 100;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 1200px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
	}
}

/* logo
----------------------------------------------------------- */
header h1 {
	margin: 0 0 0 20px;
}
header a:link, header a:visited {
	text-decoration: none !important;
}
header h1 a {
	display: block;
	background: url("../img/global/logo--ja.png") 0 50% no-repeat;
	background-size: 220px auto;
	width: 220px;
	height: 64px;
	/*　Scott Kellum Method */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	margin-top: 6px;
}
header h1 a:hover {
	opacity: 1;
}
@media screen and (max-width: 767px) {
	header h1 a {
		background-size: 200px auto;
		width: 200px;
		height: 58px;
		margin-top: 9px;
	}
}
@media screen and (min-width: 1200px) {
	/* nav
	----------------------------------------------------------- */
	header nav {
		position: relative;
		height: 80px;
		width: 100%;
	}

	/* global-navigation
	----------------------------------------------------------- */
	.global-navigation {
		position: absolute;
		display: flex;
		right: 0;
		top: 0;
		margin: 0;
	}
	.global-navigation li {
		position: relative;
        border-left: solid 1px #ddd;
	}
	.global-navigation li a {
        position: relative;
		line-height: 80px;
		font-size: 1.4rem;
		letter-spacing: 0.01em;
        display: block;
        width: 190px;
		color: #111;
	}
	.global-navigation li a:before {
		position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translate(-50%,0);
		content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3px 4px 0 4px;
        border-color: #c7000d transparent transparent transparent;
	}
	.global-navigation li a:hover {
		text-decoration: none;
		color: #c7000d;
	}
	.global-navigation li.current a {
		color: #c7000d;
	}
	
}
@media screen and (max-width: 1200px) {
	/* nav
	----------------------------------------------------------- */
	header nav {
		position: fixed;
		top: 80px;
		left: 0;
		background-color: #333;
		width: 100%;
		height: calc(100% - 80px);
		display: block;
	}
	.first-time header nav,
	.first-time .global-navigation,
	.first-time .global-sub-navigation {
		display: none;
	}
	.open header nav,
	.open .global-navigation,
	.open .global-sub-navigation {
		z-index: 98;
		visibility: visible;
		animation: nav--open 0.5s cubic-bezier(1, 0, 0, 1);
		animation-fill-mode: forwards;
	}
	 @keyframes nav--open {
		 0% {
			 opacity: 0;
		}
		 100% {
			 opacity: 1;
		}
	}
	.close header nav,
	.close .global-navigation,
	.close .global-sub-navigation {
		z-index: 98;
		visibility: hidden;
		animation: nav--close 0.5s cubic-bezier(1, 0, 0, 1);
		animation-fill-mode: forwards;
	}
	 @keyframes nav--close {
		 0% {
			 opacity: 1;
		}
		 100% {
			 opacity: 0;
		}
	}
	
	/* global-navigation
	----------------------------------------------------------- */
	.global-navigation {
		display: flex;
		flex-direction: column;
		margin: 0;
	}
	.global-navigation li {
		border-bottom: solid 1px rgba(255,255,255,0.50);
	}
	.global-navigation li#link-top {
		display: none;
	}
	.global-navigation li a {
		display: block;
		font-size: 1.6rem;
		letter-spacing: 0.01em;
		padding: 0.8em 1em;
		color: #fff;
	}
	.global-navigation li.current a {
		background-color: #c7000d;
	}
}

/* -----------------------------------------------------------
	hamburger
----------------------------------------------------------- */
.hamburger {
	display: none;
}
@media screen and (max-width: 1200px) {
	.hamburger {
		position: fixed;
		top: 43px;
		right: 10px;
		z-index: 99;
		padding: 15px 15px;
		margin-top: -30px;
		display: inline-block;
		cursor: pointer;
		transition-property: opacity, filter;
		transition-duration: 0.15s;
		transition-timing-function: linear;
		font: inherit;
		color: inherit;
		text-transform: none;
		background-color: transparent;
		border: 0;
		overflow: visible;
	}
	.hamburger:hover {
		opacity: 0.8;
	}
	.hamburger:focus {
		outline: none;
	}
	.hamburger-box {
		width: 30px;
		height: 24px;
		display: inline-block;
		position: relative;
	}
	.hamburger-inner {
		display: block;
		top: 50%;
		margin-top: -2px;
	}
	.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
		width: 30px;
		height: 3px;
		background-color: #c7000d;
		position: absolute;
		transition-property: transform;
		transition-duration: 0.15s;
		transition-timing-function: ease;
	}
	.hamburger-inner::before, .hamburger-inner::after {
		content: "";
		display: block;
	}
	.hamburger-inner::before {
		top: -10px;
	}
	.hamburger-inner::after {
		bottom: -10px;
	}
	/*
	   * Collapse
	   */
	.hamburger--collapse .hamburger-inner {
		top: auto;
		bottom: 0;
		transition-duration: 0.15s;
		transition-delay: 0.15s;
		transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	.hamburger--collapse .hamburger-inner::after {
		top: -20px;
		transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
	}
	.hamburger--collapse .hamburger-inner::before {
		transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	.hamburger--collapse.is-active .hamburger-inner {
		background-color: #c7000d;
		transform: translate3d(0, -10px, 0) rotate(-45deg);
		transition-delay: 0.32s;
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	.hamburger--collapse.is-active .hamburger-inner::after {
		background-color: #c7000d;
		top: 0;
		opacity: 0;
		transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
	}
	.hamburger--collapse.is-active .hamburger-inner::before {
		background-color: #c7000d;
		top: 0;
		transform: rotate(-90deg);
		transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
}

/* ===========================================================

	topic path

=========================================================== */
.topic-path {
    margin-top: 80px;
    background-color: #e8e4dd;
    border-bottom: solid 1px #d6d2c9;
}
.topic-path ol {
	margin: 0 auto;
	padding: 0 40px;
	font-size: 1.3rem;
	list-style: none;
	text-align: left;
	line-height: 50px;
	height: 50px;
}
.topic-path ol li {
	display: inline-block;
}
.topic-path ol li:before {
	content: "/";
	padding: 0 15px;
	color: #666 !important;
}
.topic-path ol li:first-child:before {
	display: none;
}
.topic-path ol a:link, .topic-path ol a:visited {
	text-decoration: underline;
	color: #333;
}
.topic-path ol a:hover {
	text-decoration: none;
	color: #c7000d;
}
@media screen and (max-width: 1200px) {
	.topic-path ol {
		padding: 0 20px;
	}
}

/* ===========================================================

	title

=========================================================== */
.title {
    background-color: #e8e4dd;
    padding: 80px 0 10px;
}
.title h1 {
    margin: 0;
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 767px) {
    .title {
        background-color: #e8e4dd;
        padding: 60px 0 30px;
    }
    .title h1 {
        font-size: 3.2rem;
    }
}

/* ===========================================================

	main

=========================================================== */
main {
}
main:after {
	content: "";
	display: block;
	clear: both;
}

/* ===========================================================

	contents-style

=========================================================== */
.contents-style {
	margin: 0 auto;
	text-align: left;
	padding-top: 15vw;
	padding-left: calc(50% - 440px);
	padding-right: calc(50% - 440px);
	padding-bottom: 100px;
    background: url("../img/global/bg-curve_brown--top.png") left top no-repeat;
    background-size: 100% auto;
}
@media screen and (max-width: 1200px) {
	.contents-style {
        padding: 180px 60px 100px;
	}
}
@media screen and (max-width: 767px) {
	.contents-style {
        padding: 140px 40px 100px;
	}
}

/* ===========================================================

	bt-pagetop

=========================================================== */
body .bt-pagetop {
	clear: both;
	width: 50px;
	height: 50px;
	margin: 0;
	display: none;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100;
}
.bt-pagetop a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	background-color: #c7000d;
	transition: .2s ease-in-out;
	/*　Scott Kellum Method */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.bt-pagetop a:before {
	content: " ";
	position: absolute;
	top: 22px;
	left: 50%;
	margin: 0 0 0 -10px;
	width: 20px;
	height: 20px;
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.bt-pagetop a:hover {
	opacity: 0.5;
}

/* ===========================================================

	footer

=========================================================== */
footer {
	text-align: left;
	padding: 100px 0 260px;
    background: url("../img/global/bg-curve_brown--bottom.png") right bottom no-repeat;
    border-top: solid 2px #c7000d;
    background-size: 100% auto;
}
@media screen and (max-width: 1200px) {
	footer {
	    padding: 50px 0 160px;
	}
}
/* global-footer__banner
----------------------------------------------------------- */
.global-footer__banner {
	display: flex;
	justify-content: center;
    width: 1604px;
	margin: 0 auto;
	padding: 50px 0;
}

.global-footer__banner:nth-of-type(1) {
	padding: 50px 0 0;
}

.global-footer__banner + .global-footer__banner {
	padding: 0 0 50px;
}

.global-footer__banner li {
    margin: 0 10px;
}
@media screen and (max-width: 1200px) {
    .global-footer__banner {
			display: flex;
			margin: 0 auto;
			width: auto;
			padding: 50px 0;
			flex-wrap: wrap;
			justify-content: center;
    }
    .global-footer__banner li {
        margin: 0 0 10px;
    }
}

.global-footer__banner dl {
	display: flex;
	text-align: left;
	flex-wrap: wrap;
	justify-content: space-evenly;
	row-gap: 8px;
}

.global-footer__banner dt {
	line-height: 30px;
	width: 100%;
	font-size: 1.4rem;
}

.global-footer__banner dd {
	margin-right: 10px;
}
.global-footer__banner dd:last-child {
	margin-right: 0;
}

@media screen and (max-width: 767px) {
	.global-footer__banner dl {
		display: block;
	}
}

/* global-footer__navigation
----------------------------------------------------------- */
.global-footer__navigation ul {
	display: flex;
    justify-content: center;
	margin: 0 0 10px;;
}
.global-footer__navigation li {
    border-right: solid 1px #ddd;
}
.global-footer__navigation li:last-child {
    border-right: none;
}
.global-footer__navigation li a {
	position: relative;
	display: inline-block;
	padding: 0 20px;
	font-size: 1.4rem;
	color: #111;
	text-decoration: none !important;
}
.global-footer__navigation li a:hover,
.global-footer__navigation li a.current {
	color: #c7000d;
}
@media screen and (max-width: 1200px) {
	.global-footer__navigation ul {
		display: block;
		margin: 0 0 1em;
		padding: 0;
		text-align: left;
		border-top: solid 1px #ddd;
	}
	.global-footer__navigation li {
		margin: 0 !important;
		padding: 0 10px;
		border-bottom: solid 1px #ddd;
	}
	.global-footer__navigation ul li::before {
		display: none;
	}
	.global-footer__navigation ul li a, .global-footer__navigation li:first-child a {
		position: relative;
		display: block;
		margin: 0;
		padding: 1.3em 25px 1.3em 20px !important;
		border: none;
		height: auto;
		line-height: 1.4 !important;
		text-decoration: none;
	}
	.global-footer__navigation ul li a:before {
		position: absolute;
		content: " ";
		vertical-align: middle;
		top: 50%;
		right: 20px;
		width: 10px;
		height: 10px;
		margin: -8px 0 0;
		border-top: 1px solid #0f274e;
		border-right: 1px solid #0f274e;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

/* global-footer__copyright
----------------------------------------------------------- */
.global-footer__copyright {
		text-align: center;
}
.global-footer__copyright small {
	font-style: normal;
	font-size: 1.2rem;
}
@media screen and (max-width: 1200px) {
	.global-footer__copyright {
		padding: 20px;
		text-align: center;
	}
}