@charset "utf-8";

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
https://vivo-log.com/work/css/original-reset-css
*/

html {
	font-size: 62.5%; /*フォントの基準サイズを10pxにする*/
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif; /*全体の書体を指定する*/
	font-size: 1.5rem; /*全体のフォントサイズは15pxとする*/
	-webkit-text-size-adjust: 100%; /*スマホでPC表示した際に勝手に文字が大きくなるのを防ぐ*/
}

body * {
	box-sizing: border-box; /*paddingやborderの大きさもwidthとheightに含める*/
	background-repeat: no-repeat; /*背景は基本的にリピートしない*/
}

img {
	max-width: 100%; /*親要素の幅からはみ出させない*/
	height: auto; /*一括指定(以降imgの大きさはwidthのみ指定すればよい)*/
	vertical-align: top;
}

a {
	display: block; /*デフォルトのdisplay:inline;で表示することが少ないため(ボタンなど)*/
	text-decoration: none; /*装飾は一切つけない*/
	color: inherit; /*親要素に指定した色を受け継ぐ*/
}

a:hover {
	opacity: .8; /*マウスオーバー時の透明度を指定*/
}

.clearfix:after { /*回り込み解除*/
	display: block;
	content: "";
	clear: both;
}

/* header ---------------------------------------- */

/* footer ---------------------------------------- */

/* content ---------------------------------------- */

/* sidebar ---------------------------------------- */

/* ------------------------------------------------ */

.sp {
	display: none; /*スマホ用の要素は非表示にする*/
}

.pc {
	display: block; /*pc用の要素は表示する*/
}

/* common */
body {
	font-family: "メイリオ", Meiryo, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, -apple-system, BlinkMacSystemFont, sans-serif; /*全体の書体を指定する*/
	background-color: #fff;
	color:#231815;
}

body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

#wrapper {
	width: 100%; /*全ての要素を包括する<div id"wrap">の幅を画面幅に設定する*/
}

a {
	transition: 0.2s;
}

p a {
	color: #1eb0e1;
}

input,textarea {
	font-family: "メイリオ", Meiryo, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, -apple-system, BlinkMacSystemFont, sans-serif; /*全体の書体を指定する*/
	font-size: 1.4rem;
}

/* header ---------------------------------------- */
/* ヘッダー */
header {
	position: fixed;
	top: 0;
	width: 100%;
	min-width: 1200px;
	height: 160px;
	padding: 0;
	background-color: rgba(255, 255, 255, .9);
	z-index: 100;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	-webkit-transition: all;
	transition: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: center top;
	-ms-transform-origin: center top;
	transform-origin: center top;
}

header.close {
	opacity: 0;
	-webkit-transform: perspective(300px) rotateY(-90deg);
	transform: perspective(300px) rotateX(-90deg);
}

.relatedSites {
	width: 1200px;
	height: 44px;
	margin: 0 auto;
	padding: 22px 98px 4px 26px;
	text-align: right;
}

.relatedSites ul {
	display: inline-flex;
	flex-flow: row nowrap;
}

.relatedSites .separator {
	height: 18px;
	padding: 0 8px;
	font-size:18px;
	line-height: 18px;
}

.header-inner {
	position:relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-end;
	width:1200px;
	margin:0 auto;
	padding: 0 98px 0 26px;
}

.header-inner::before {
	content: "";
	position: absolute;
	right: 98px;
	top: 26px;
	display: block;
	width: 365px;
	height:22px;
	background: url(../images/head_txt_cc.svg) 50% 50% no-repeat;
	background-size: contain;
}


/* サイトタイトル */
.site-title {
}

/* ヘッダーナビ */
#headNav {
	position: relative;
}

#menu-header-nav{
	display: flex;
	flex-flow: row nowrap;
	width: 100%;
	margin: 0;
	padding: 0 0 5px;
}

#menu-header-nav > li{
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	height: calc(1em + 4px);
	border-right: 3px solid #c3d34e;
	padding: 2px 0;
}

#menu-header-nav > li:last-of-type {
	border-right: 0;
}

#menu-header-nav li a {
	display: block;
	margin: 0;
	padding: 0 1em;
	line-height: 1em;
	text-decoration: none;
	color: #231f20;
	white-space: nowrap;
}

#menu-header-nav li a:nth-of-type(2) {
	padding: 0;
}

#menu-header-nav li span {
	display: inlie-block;
	margin: 0;
	padding: 0 1em;
	line-height: 1em;
	text-decoration: none;
	color: #231f20;
}

#menu-header-nav > li:last-of-type img {
	width: 209px;
	height: 19px;
	margin-left: 22px;
}

#navBtn {
	display: none;
	padding: 11px;
	cursor: pointer;
	border: none;
	background-color: transparent;
	margin: 0 -11px 0 auto;
}

#navBtn:hover {
	background-color: #f5f5f5;
}

#navBtn:focus {
	outline: none;
}

#navBtn i {
	font-size: 38px;
	color: #4d080d;
}

#navClose {
	display: none;
	position: absolute;
	top: -30px;
	right: -9px;
	padding: 11px;
	border: none;
	background-color: transparent;
	cursor: pointer;
}

#navClose i {
	font-size: 38px;
	color: #4d080d;
}

/* footer ---------------------------------------- */
footer {
	width: 100%;
	margin: 0 auto;
	padding:18px 0 20px;
}

footer .copy {
	text-align: center;
	font-size:1.2rem;
	color: #666666;
}

/* content ---------------------------------------- */
.container {
	width: 1200px;
	margin: 0 auto;
	padding-top: 160px;
}

.contents {
	width: 1000px;
	margin: 0 auto;
	background-color: #fff;
}

.contents main {
}

section {
	padding-bottom: 56px;
	border-top: 3px solid #c3d34e;
	text-align: center;
}

section > h2 {
	display: inline-block;
	margin: 0 0 32px;
	padding: 13px 14px 0;
	border-top: 2px solid #c3d34e;
	line-height: 1;
}

.sectionInr {
	text-align: left;
}

.sectionInr h3 {
	margin: 0 0 22px;
	text-align: center;
	font-size: 2.9rem;
	line-height: 1.5;
	color: #4d080d;
}

.sectionInr h3 br {
	display: none;
}

/* Scroll Controller ------------------------------------------- */
.scrControl {
	position:fixed;
	left: 20px;
	bottom:20px;
	width: 40px;
}

.scrControl li + li {
	margin-top: 10px;
}

.scrControl li + li:hover {
	opacity:.8;
	cursor: pointer;
}

#section-scroller-button.rotate {
	display: none;
}

@media (max-width: 640px) {

html {
	font-size: 54.69%;
}

header {
	min-width: auto;
	height: 70px;
}

.relatedSites {
	display: none;
}

.header-inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: 100%;
	height: 70px;
	padding: 0 20px;
}

.header-inner::before {
	content: none;
}

.site-title h1 {
	display: flex;
	align-items: center;
}

.site-title h1 a {
	width: 148px;
	height:60px;
}

.site-title h1 img {
	width: 148px;
	height:60px;
}

#headNav {
	width: 100%;
	height: auto;
	padding: 0;
}

/* ヘッダーナビ */
#navBtn {
	display:block;
}

#header-nav {
	display: block;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 1;
	background-color: rgba(35,24,21, .9);
	opacity: 0.5;
	transition: 0.2s;
}

#headNav.open #header-nav {
	height: 100%;
	opacity: 1;
}

#menu-header-nav {
	display: block;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#menu-header-nav li {
	display:block;
	margin: 0;
	padding: 0;
	height:auto;
	border-right: 0 solid #646566;
}

#menu-header-nav li a {
	color:#ffffff;
	padding: 14px 0;
	border-bottom: 1px solid #e8e8e9;
	text-align: center;
	line-height: 1;
}

#menu-header-nav li a:nth-of-type(2) {
	padding: 14px 0;
}

#menu-header-nav li:last-of-type span {
	display: block;
	color:#ffffff;
	padding: 14px 0;
	text-align: center;
}

#menu-header-nav li:last-of-type img {
	margin: 0;
}

#headNav.open #navBtn {
	display: none;
}

#headNav.open #navClose {
	display:block;
}

/* content ---------------------------------------- */
.container {
	width: 100%;
	padding-top: 70px;
}

.contents {
	width: 100%;
}

.contents main {
}

.sectionInr {
	padding: 0 20px;
}

.sectionInr h3 {
	font-size: 4.53125vw;
}

.sectionInr h3 br {
	display:block;
}

@media (max-width: 420px) {
}
