@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; /*全体のフォントサイズは16pxとする*/
	-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のみ指定すればよい)*/
}

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:#000;
}

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

#wrapper {
	width: 100%; /*全ての要素を包括する<div id"wrap">の幅を画面幅に設定する*/
	overflow-x: hidden; /*横にはみ出した部分は表示させない（スクロールさせない）*/
}

a {
	transition: 0.2s;
}

p a {
	color: #1eb0e1;
}

/* header ---------------------------------------- */
/* ヘッダー */
header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 92px;
	padding: 0;
	background-color: rgba(255,255,255,1.0);
	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);
}

.header-inner {
	position:relative;
	max-width:640px;
	margin:0 auto;
	padding:20px 0 9px;
}

/* サイトタイトル */
.site-title {
	margin: 0 0 20px;
}

.site-title h1 {
}

.site-title h1 a {
	display:block;
	font-size: 2.6rem;
	color: #000000;
}

/* ヘッダーナビ */
#headNav {
	width: 100%;
}

#menu-header-nav{
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
}

#menu-header-nav > li{
	background-color: #e5d8c6;
	transform: skewX(-25deg);
}

#menu-header-nav > li + li {
	margin-left: 5px;
}

#menu-header-nav li a {
	display: block;
	width: 100%;
	padding: 2px 18px 2px 6px;
	text-decoration: none;
	font-size: 1.5rem;
	transform: skewX(25deg);
	color: #000000;
}

#menu-header-nav li a:hover{
}

#navBtn {
	display: none;
	position: absolute;
	top: 4px;
	left: 20px;
	margin: 0;
	padding: 0;
	border: 0;
	background-color: #fff;
	cursor: pointer;
}

#navBtn:hover {
}

#navBtn:focus {
	outline: none;
}

#navBtn i {
	font-size: 38px;
	color: #8e8e8e;
	transform: scale(1.2, 0.8);
}

#navClose {
	display: none;
	position: absolute;
	top: 3px;
	left: 21px;
	margin: 0;
	padding: 0;
	border: 0;
	background-color: #fff;
	cursor: pointer;
	z-index: 1;
}

#navClose i {
	font-size: 38px;
	color: #8e8e8e;
}

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

.footInr {
	width:100%;
}

.footInr ul {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	margin: 0 0 36px;
}

.footInr ul li + li {
	margin-left: 1em;
}

.footInr .copy {
	margin-left: auto;
	text-align:center;
	font-size:10px;
	color: #606060;
}

/* content ---------------------------------------- */
.container {
}

.contents {
}

.contents main {
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
}

section {
	padding: 40px 20px;
	text-align: center;
}

section .sectionInr {
	width: 640px;
	max-width: 100%;
	margin: 0 auto;
}

section h2 {
	display: inline-flex;
	flex-flow: row nowrap;
	margin: 0 0 24px;
	align-items: center;
	font-size: 2.4rem;
	font-weight: bold;
}

section h2::before {
	content: "";
	width: 67px;
	height: 27px;
	margin-right: .25em;
	background: url(../images/st_bg_blue.svg) center center no-repeat;
	background-size: contain;
}
section h2::after {
	content: "";
	width: 67px;
	height: 27px;
	margin-left: .25em;
	background: url(../images/st_bg_pink.svg) center center no-repeat;
	background-size: contain;
}

section p.sectionLead {
	margin: 0 0 24px;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
	color: #168ca2;
}

section h3 {
	margin: 0 0 10px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
	color: #168ca2;
}

section p {
	text-align: left;
	line-height: 1.8;
}

/* font ------------------------------------------- */
.ftMin {
	font-family: "A1 Mincho", "Sawarabi Mincho", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
	transform: rotate(0.05deg);
}

/* 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%;
}

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

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

header {
	height: 47px;
}

.header-inner {
	height: 47px;
	padding: 0 20px;
}

.site-title {
	margin: 0 0 0 50px;
}

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

.site-title h1 a {
	font-size: 2.0rem;
}

#headNav {
	height: auto;
	padding: 0;
}

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

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

#header-nav {
	display: block;
	position: fixed;
	top: 47px;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, .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{
	width: 100%;
	background-color: #ffffff;
	transform: none;
}

#menu-header-nav > li + li {
	margin-left: 0;
}

#menu-header-nav > li:first-of-type {
	border-top: 1px solid #000000;
}

#menu-header-nav li a {
	display: block;
	width: 100%;
	padding: 14px 20px;
	border-bottom: 1px solid #000000;
	text-decoration: none;
	font-size: 1.5rem;
	line-height: 1;
	transform: none;
	color: #000000;
}

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

/* content ---------------------------------------- */
.container {
}

.contents {
}

section {
}

section .sectionInr {
}

}

@media (max-width: 420px) {
.footInr ul li {
	font-size: 1.3rem;
}

.footInr ul li + li {
	margin-left: .5em;
}

}
