@charset "utf-8";
/* CSS Document */

html {
	font-size: 100%;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.5;
	color: #555;
	/*font-weight: 500;*/
	font-style: normal;
}

/* ==============================
header
================================= */
header.second-header {/* セカンドページ */
	position: fixed;
	background-color: #fff;
	z-index: 1;
	width: 100%;
}

.fb__header--logo {
	margin: 20px 0;
	padding: 0 30px;
}

.fb__header--logo a {
	display: inline-flex;
	padding: 10px;	
}

.fb__header--logo a:hover {
	opacity: 0.7;
}

.item__header--logo {
	width: 70px;
	padding-top: 8px;
/*
	width: 80px;
*/
}

.item__header--logo img {
	width: 100%;
	height: auto;
}

.item__header--h1 {
	padding-left: 5px;
	line-height: 1.2;
	letter-spacing: 0.05rem;
}

.item__header--h1 h1 {
	font-size: 1.625rem;
/*
	font-size: 1.875rem;
*/
}

.item__header--h1 p {
	margin-left: 5px;
	font-size: 0.75rem;
}

/* ==============================
menu
================================= */
#g-nav {
	position: fixed;
	z-index: -1;
	opacity: 0;
	top: 0;
    width: 100%;
	height: 100vh;
	background:#999;
	transition: all 0.3s;
}

#g-nav.panelactive {
	opacity: 1;
	z-index: 999;
}

#g-nav.panelactive #g-nav-list {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#g-nav ul {
	display: none;
	position: absolute;
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
	display: block;
}

#g-nav li {
	list-style: none;
	text-align: center;
}

#g-nav li a {
	color: #333;
	text-decoration: none;
	padding: 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

.openbtn {
	position: fixed;
	z-index: 9999;
	top: 30px;
	right: 30px;
	cursor: pointer;
	width: 50px;
	height:50px;
}

.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background-color: #666;
	width: 45%;
}

.openbtn span:nth-of-type(1) {
	top: 15px;
}

.openbtn span:nth-of-type(2) {
	top: 23px;
}

.openbtn span:nth-of-type(3) {
	top: 31px;
}

.openbtn span:nth-of-type(3)::after {
	content: "Menu";
	position: absolute;
	top:5px;
	left:-2px;
	font-size: 0.6rem;
	text-transform: uppercase;
}

.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
	content: "Close";
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}

/* ==============================
footer
================================= */

footer {
	width: 100%;
	margin: 20px 0 0;
	padding: 50px 0 30px;
/*	padding: 100px 0;*/
	text-align: center;
	background-color: #E3F1FF;
}

.fb__footer--logo {
	display: flex;
	justify-content: center;
}

.item__footer--logo {
	width: 70px;
	padding-top: 8px;
}

.item__footer--logo img {
	width: 100%;
	height: auto;
}

.item__footer--h1 {
	padding-left: 5px;
	line-height: 1.2;
	letter-spacing: 0.05rem;
}

.item__footer--h1 p.logo {
	font-size: 1.625rem;
/*	font-size: 1.875rem;*/
	line-height: 1.2;
}

.item__footer--h1 p {
	margin-left: 5px;
	text-align: left;
	font-size: 0.75rem;
}

.content__footer {
	margin: 20px 0;
	color: #888;
	font-weight: 400;
}

.content__footer p {
	margin: 20px 0;
}
.content__footer p a {
	border-bottom: 1px solid #737373;
    transition: background-color 0.4s;
}
.content__footer p a:hover {
	opacity: 0.7;
}


/* ==============================
共通
================================= */
.wrapper {
	width: 100%;
	padding: 0 40px;
}

.wrapper__gray {
	width: 100%;
	background-color: #f6f6f6;
}

.wrapper__white {
	width: 100%;
}

.container {
    max-width: 1280px;
/*	width: 100%;*/
	margin: 0 auto;
	padding: 40px;
}

/* セカンドページ */
.title-area__second {
    max-width: 1280px;
	margin: 100px auto 0px;
	padding: 0 40px;
}

.title-area__second h2 {
	position: relative;
	text-align: center;
}

.title-area__second h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	display: inline-block;
	width: 60px;
	height: 2px;
	background-color: #707070;
	transform: translateX(-50%);
}

.title-area__second h2 + p {
	margin: 40px 0 50px;
	text-align: center;
	font-size: 2.25rem;
	font-weight: 700;
	color: #707070;
}

.container__second {
    max-width: 1280px;
	margin: 100px auto 150px;
	padding: 0 40px;
}



/* パンくず */
.ol__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 10px;
	font-size: 0.875rem;
	color: #909090;
	list-style: none;
}

.ol__breadcrumb li:not(:last-of-type)::after {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	margin: 0 0.6rem;
	color: #777;
	font-weight: 600;
}

.ol__breadcrumb li a:hover {
	text-decoration: underline;
}

/*
.block__bread ul {
	font-family: 'Noto Serif JP', sans-serif;
	font-size: 12px;
	color: #808080;
	padding: 5px 40px;	
	margin: 0;
	letter-spacing: 0.2em;
	display: flex;
	justify-content: flex-start;
}
.block__bread ul li {
	list-style-type: disc;
	list-style-position: inside;
	margin: 0 1em;
}
.block__bread ul li a {
	border-bottom: 1px solid #444;
    transition: background-color 0.4s;
	display: inline-block;
}
.block__bread ul li a:hover {
	opacity: 0.7;
}
*/

.mgb50 {
	margin-bottom: 50px;
}

/*
h2 {
	font-family: 'Noto Serif JP', sans-serif;
	color: #909090;
    position: relative;
    padding: 2rem 1.5rem;
    text-align: center;
	line-height: 1.25;
}

p.subtitle-english {
	font-family: 'Noto Serif JP', sans-serif;
	color: #909090;
    text-align: center;
	font-size: 1rem;
	line-height: 1.8;
}
h2 span {
  font-size: 40px;
  display: block;
}
h2:before {
  position: absolute;
  top: 10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 2px;
  content: '';
  border-radius: 3px;
  background: #909090;
}
*/

img {
	width: 100%;
	height: auto;
}

/*
img {
	max-width: 100%;
	height: auto;
}
*/

i {
	padding-left: 5px;
}

p {
	line-height: 1.8;
}

.font-30 {
	font-size: 30px;
}
.font-red {
	color: #FF0004;
}

.mgt-50 {
	margin-top: 50px;
}

.mgt-30 {
	margin-top: 30px;
}

.mgr-16 {
	margin-right: 1.0rem;
}

.txt__center {
	text-align: center;
}

/* button　*/

.btn-area {
	text-align: center;
}

.btn-contents {
    background: #666666;
    display: inline-block;
    padding: 0.5em 2.0em;
    text-decoration: none;
    color: #FFFaf0;
    transition: .4s;
/*	margin: 40px auto;*/
	box-shadow: 0 0 5px #B7B7B7;
	text-align: center;
	border-radius: 3px;
}

.btn-contents:hover {
    background: #000;
    color: #fffaf0;
}

/* 改行　*/
.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

@media (max-width: 1024px) {

.title-area__second {
    width: 100%;
	margin: 80px auto 0;
	padding: 0 32px;
}

.title-area__second h2 + p {
	margin: 32px 0 40px;
	font-size: 1.813rem;
}

.container__second {
    width: 100%;
	margin: 80px auto 120px;
	padding: 0 32px;
}


}


@media (max-width: 768px) {

.fb__header--logo {
	margin: 10px 0;
	padding: 0 20px;
}

.item__header--logo {
	width: 56px;
}

.item__header--h1 h1 {
	font-size: 1.313rem;
}

.openbtn {
	top: 15px;
	right: 20px;
}

footer {
/*	padding: 80px 0 40px; */
}

.item__footer--logo {
	width: 56px;
}

.item__footer--h1 p.logo {
	font-size: 1.313rem;
}

.wrapper {
	width: 100%;
	padding: 0 10px;
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 40px 10px;
}

.title-area__second {
	margin: 60px auto 0;
	padding: 0 24px;
}

.title-area__second h2 + p {
	margin: 24px 0 30px;
	font-size: 1.375rem;
}

.container__second {
	margin: 60px auto 90px;
	padding: 0 24px;
}

/*
h2 span {
  font-size: 32px;
  display: block;
}
*/

.font-30 {
	font-size: 25px;
}

.pc-only {
    display: none;
}


}

@media (max-width: 640px) {

.fb__header--logo {
	padding: 0 10px;
}

.openbtn {
	right: 10px;
}

.title-area__second {
	margin: 50px auto 0;
	padding: 0 20px;
}

.title-area__second h2 + p {
	margin: 20px 0 25px;
}

.container__second {
	margin: 50px auto 75px;
	padding: 0 20px;
}

.sp-only {
    display: block;
}


}