@charset "utf-8";
/*@import url('https://fonts.googleapis.com/css?family=Cinzel:400,700,900');*/
/* ========================================================================== */
/* § 初期化 */
/* ========================================================================== */
/* sanitize.css の読み込み */
/*! sanitize.css v4.1.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Elements of HTML (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
	background-repeat: no-repeat; /* 1 */
	box-sizing: inherit; /* 2 */
}
/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
	text-decoration: inherit; /* 1 */
	vertical-align: inherit; /* 2 */
}
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Add a flattened line height in all browsers (opinionated).
 * 4. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
	box-sizing: border-box; /* 1 */
	cursor: default; /* 2 */
	font-family: sans-serif; /* 3 */
	line-height: 1.5; /* 3 */
	-ms-text-size-adjust: 100%; /* 4 */
	-webkit-text-size-adjust: 100%; /* 4 */
}
/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
	display: block;
}
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
	margin: 0;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: .67em 0;
}
/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
	display: block;
}
/**
 * Add the correct margin in IE 8.
 */
figure {
	margin: 1em 40px;
}
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}
/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
	list-style: none;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}
/* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
	background-color: transparent; /* 1 */
	-webkit-text-decoration-skip: objects; /* 2 */
}
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
}
/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
	font-weight: inherit;
	font-weight: bolder;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}
/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
	font-style: italic;
}
/**
 * Add the correct background and color in IE 9-.
 */
mark {
	background-color: #ffff00;
	color: #000000;
}
/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -.25em;
}
sup {
	top: -.5em;
}
/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
	background-color: #b3d4fc; /* 1 */
	color: #000000; /* 1 */
	text-shadow: none;
}
::selection {
	background-color: #b3d4fc; /* 1 */
	color: #000000; /* 1 */
	text-shadow: none;
}
/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
	display: inline-block;
}
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
	display: none;
	height: 0;
}
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
	border-style: none;
}
/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
	fill: currentColor;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
	overflow: hidden;
}
/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
table {
	border-collapse: collapse;
}
/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	margin: 0;
}
/**
 * Remove the default styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
	background-color: transparent;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
	overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
	text-transform: none;
}
/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
	-webkit-appearance: button; /* 2 */
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}
/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	display: inline-block; /* 1 */
	vertical-align: baseline; /* 2 */
}
/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
	overflow: auto; /* 1 */
	resize: vertical; /* 2 */
}
/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}
/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details, /* 1 */
menu {
	display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}
/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
	display: inline-block;
}
/**
 * Add the correct display in IE.
 */
template {
	display: none;
}
/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
	-ms-touch-action: manipulation; /* 1 */
	touch-action: manipulation;
}
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
	display: none;
}
/* ARIA in HTML (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
	cursor: progress;
}
/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
	cursor: pointer;
}
/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden] {
	clip: rect(0, 0, 0, 0);
	display: inherit;
	position: absolute;
}
[aria-hidden="false"][hidden]:focus {
	clip: auto;
}
/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
	cursor: default;
}
/* csshake.css の読み込み */
/*@import "./csshake.css";*/
/*
* § Noto Sans JP (japanese) http://www.google.com/fonts/earlyaccess
* http://fonts.googleapis.com/earlyaccess/notosansjp.css
 */
@font-face {
   font-family: 'Noto Sans JP';
   font-style: normal;
   font-weight: 400;
   src: url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
        url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
        url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
 }
/*
 * Sawarabi Mincho (Japanese) https://fonts.google.com/earlyaccess
 * https://fonts.googleapis.com/earlyaccess/sawarabimincho.css
 */
/*@font-face {
  font-family: 'Sawarabi Mincho';
  font-style: normal;
  font-weight: 400;
  src: url(//fonts.gstatic.com/ea/sawarabimincho/v1/SawarabiMincho-Regular.eot);
  src: url(//fonts.gstatic.com/ea/sawarabimincho/v1/SawarabiMincho-Regular.eot?#iefix) format('embedded-opentype'),
       url(//fonts.gstatic.com/ea/sawarabimincho/v1/SawarabiMincho-Regular.woff2) format('woff2'),
       url(//fonts.gstatic.com/ea/sawarabimincho/v1/SawarabiMincho-Regular.woff) format('woff'),
       url(//fonts.gstatic.com/ea/sawarabimincho/v1/SawarabiMincho-Regular.ttf) format('truetype');
}*/
/*!
* @license Copyright novita[Ryuta Uchida].
* @author novita[Ryuta Uchida].
* http://www.novita.jp/
*/
/* ========================================================================== */
/* $ コーディング規約 */
/* ========================================================================== */
/*
# 変数は$から始めること。ブレークポイントは_、他は-区切りとする
$f-xxx フォント
$c-xxx カラー
$bp_xxx ブレークポイント

# 相対単位
% または rem で統一すること

# z-indexを定義した箇所の定義した箇所の頭に alt+ 2 で入力されるTMマークを付けたコメントを記述する。
ex. ™ 説明 z-index: 99999;

# 忘れがちなユーティリティクラスには alt + 1 で入力される逆エクスペリメントマークをつけたコメントを記述する。
*/
/* ========================================================================== */
/* § 変数の定義 */
/* ========================================================================== */
/*フォント*/
/* ブレークポイント */
/* コンテンツ各所の幅・高さ */
/* lost grid設定 */
/* アニメーション関係 */
/* ========================================================================== */
/* § カラーの定義 */
/* ========================================================================== */
/*メインキーカラー*/
/*サブキーカラー*/
/* 通常テキスト */
/* 強調（マーカー） */
/* リンク */
/* 背景色 */
/* ========================================================================== */
/* § 初期化の上書き・基本定義 */
/* ========================================================================== */
html,
body {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP","游ゴシック","Yu Gothic","游ゴシック体","YuGothic","Hiragino Sans","ヒラギノ角ゴシック","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-weight: 400;
  -webkit-font-feature-settings : "palt";
          font-feature-settings : "palt";
  color: #231815;
  background-color: #FFF;
  line-height: 1.5;
  font-size: 12px
}
@media screen and (min-width: 768px){
	html,
body{
		font-size: 16px;
	}
}
h1 {
  font-size: 2rem;
  margin: .67rem 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1rem;
}
button,
input,
select,
textarea {
  font-size: 1rem;
}
a {
  text-decoration: none;
  display: inline;
  outline: none
}
a,a:visited{
  color: #0C6EB4;
}
a:hover,
  a:focus,a:active{
	color: #82007C;
}
/* ホーバーエフェクト */
/*
¡ マウスオーバーで若干透明に a.btn_hover
*/
a.btn_hover {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  opacity: 1
}
a.btn_hover:hover,
  a.btn_hover:focus{
	opacity: 0.8;
}
a.btn_hover:active{
	opacity: 1;
}
/*
¡ マウスオーバーで不透明に a.btn_alpha
*/
a.btn_alpha {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  opacity: 0.8
}
a.btn_alpha:hover,
  a.btn_alpha:focus,a.btn_alpha:active{
	opacity: 1;
}
/* 基本テキスト */
/*
¡ サイズの小さいテキスト .small
*/
.small {
  font-size: 0.75rem
}
@media screen and (min-width: 768px){
	.small{
		font-size: 0.625rem;
	}
}
/*
¡ リストのインデント .listIndent
*/
ol.listIndent,
ul.listIndent {
  margin-left: 1.5em;
}
/* 太字のウエイト */
h1,h2,h3,h4,h5,h6,b,strong,th {
  font-weight: 400;
}
/* ========================================================================== */
/* § デバッグ用 */
/* ========================================================================== */
/*
™ デバッグ用スクリーン表示 z-index: 99999;
*/
body.debug:before {
  position: fixed;
  right: 10px;
  bottom: 0;
  z-index: 99999;
  font-size: 40px;
  color: rgba(0,0,0,0.3);
  background: none;
  pointer-events: none;
  content: "スマホ"
}
@media screen and (min-width: 376px){
	body.debug:before{
		content: "タブレット";
	}
}
@media screen and (min-width: 768px){
	body.debug:before{
		content: "タブレット(横)";
	}
}
@media screen and (min-width: 960px){
	body.debug:before{
		content: "PC";
	}
}
@media screen and (min-width: 1600px){
	body.debug:before{
		content: "HD";
	}
}
/* ========================================================================== */
/* § デバイス幅に応じた表示非表示 */
/* ========================================================================== */
/*
¡ スマホで表示 .forSP
¡ PCで表示 .forPC
*/
.forSP {
  display: block !important
}
@media screen and (min-width: 768px){
	.forSP{
		display: none !important;
	}
}
.forPC {
  display: none !important
}
@media screen and (min-width: 768px){
	.forPC{
		display: block !important;
	}
}
br.forSP {
  display: inline !important
}
@media screen and (min-width: 768px){
	br.forSP{
		display: none !important;
	}
}
br.forPC {
  display: none !important
}
@media screen and (min-width: 768px){
	br.forPC{
		display: inline !important;
	}
}
img.forSP {
  display: inline !important
}
@media screen and (min-width: 768px){
	img.forSP{
		display: none !important;
	}
}
img.forPC {
  display: none !important
}
@media screen and (min-width: 768px){
	img.forPC{
		display: inline !important;
	}
}
span.forSP {
  display: inline !important
}
@media screen and (min-width: 768px){
	span.forSP{
		display: none !important;
	}
}
span.forPC {
  display: none !important
}
@media screen and (min-width: 768px){
	span.forPC{
		display: inline !important;
	}
}

@media screen and (min-width: 768px){
	.hidePC{
		display: none !important;
	}
}
@media screen and (max-width: 767px){
	.hideSP{
		display: none !important;
	}
}

/* ========================================================================== */
/* § マージン・パディング調整 */
/* ========================================================================== */
/*
¡ 上部マージン調整用 .mt0~10
¡ 下部マージン調整用 .mb0~10
¡ 右部マージン調整用 .mr0~10
¡ 左部マージン調整用 .ml0~10
¡ 上部パディング調整用 .pt0~10
¡ 下部パディング調整用 .pb0~10
¡ 右部パディング調整用 .pr0~10
¡ 左部パディング調整用 .pl0~10
*/
.mt0{
	margin-top: 0px !important;
}
.mb0{
	margin-bottom: 0px !important;
}
.ml0{
	margin-left: 0px !important;
}
.mr0{
	margin-right: 0px !important;
}
.pt0{
	padding-top: 0px !important;
}
.pb0{
	padding-bottom: 0px !important;
}
.pl0{
	padding-left: 0px !important;
}
.pr0{
	padding-right: 0px !important;
}
.mt1{
	margin-top: 10px !important;
}
.mb1{
	margin-bottom: 10px !important;
}
.ml1{
	margin-left: 10px !important;
}
.mr1{
	margin-right: 10px !important;
}
.pt1{
	padding-top: 10px !important;
}
.pb1{
	padding-bottom: 10px !important;
}
.pl1{
	padding-left: 10px !important;
}
.pr1{
	padding-right: 10px !important;
}
.mt2{
	margin-top: 20px !important;
}
.mb2{
	margin-bottom: 20px !important;
}
.ml2{
	margin-left: 20px !important;
}
.mr2{
	margin-right: 20px !important;
}
.pt2{
	padding-top: 20px !important;
}
.pb2{
	padding-bottom: 20px !important;
}
.pl2{
	padding-left: 20px !important;
}
.pr2{
	padding-right: 20px !important;
}
.mt3{
	margin-top: 30px !important;
}
.mb3{
	margin-bottom: 30px !important;
}
.ml3{
	margin-left: 30px !important;
}
.mr3{
	margin-right: 30px !important;
}
.pt3{
	padding-top: 30px !important;
}
.pb3{
	padding-bottom: 30px !important;
}
.pl3{
	padding-left: 30px !important;
}
.pr3{
	padding-right: 30px !important;
}
.mt4{
	margin-top: 40px !important;
}
.mb4{
	margin-bottom: 40px !important;
}
.ml4{
	margin-left: 40px !important;
}
.mr4{
	margin-right: 40px !important;
}
.pt4{
	padding-top: 40px !important;
}
.pb4{
	padding-bottom: 40px !important;
}
.pl4{
	padding-left: 40px !important;
}
.pr4{
	padding-right: 40px !important;
}
.mt5{
	margin-top: 50px !important;
}
.mb5{
	margin-bottom: 50px !important;
}
.ml5{
	margin-left: 50px !important;
}
.mr5{
	margin-right: 50px !important;
}
.pt5{
	padding-top: 50px !important;
}
.pb5{
	padding-bottom: 50px !important;
}
.pl5{
	padding-left: 50px !important;
}
.pr5{
	padding-right: 50px !important;
}
.mt6{
	margin-top: 60px !important;
}
.mb6{
	margin-bottom: 60px !important;
}
.ml6{
	margin-left: 60px !important;
}
.mr6{
	margin-right: 60px !important;
}
.pt6{
	padding-top: 60px !important;
}
.pb6{
	padding-bottom: 60px !important;
}
.pl6{
	padding-left: 60px !important;
}
.pr6{
	padding-right: 60px !important;
}
.mt7{
	margin-top: 70px !important;
}
.mb7{
	margin-bottom: 70px !important;
}
.ml7{
	margin-left: 70px !important;
}
.mr7{
	margin-right: 70px !important;
}
.pt7{
	padding-top: 70px !important;
}
.pb7{
	padding-bottom: 70px !important;
}
.pl7{
	padding-left: 70px !important;
}
.pr7{
	padding-right: 70px !important;
}
.mt8{
	margin-top: 80px !important;
}
.mb8{
	margin-bottom: 80px !important;
}
.ml8{
	margin-left: 80px !important;
}
.mr8{
	margin-right: 80px !important;
}
.pt8{
	padding-top: 80px !important;
}
.pb8{
	padding-bottom: 80px !important;
}
.pl8{
	padding-left: 80px !important;
}
.pr8{
	padding-right: 80px !important;
}
.mt9{
	margin-top: 90px !important;
}
.mb9{
	margin-bottom: 90px !important;
}
.ml9{
	margin-left: 90px !important;
}
.mr9{
	margin-right: 90px !important;
}
.pt9{
	padding-top: 90px !important;
}
.pb9{
	padding-bottom: 90px !important;
}
.pl9{
	padding-left: 90px !important;
}
.pr9{
	padding-right: 90px !important;
}
.mt10{
	margin-top: 100px !important;
}
.mb10{
	margin-bottom: 100px !important;
}
.ml10{
	margin-left: 100px !important;
}
.mr10{
	margin-right: 100px !important;
}
.pt10{
	padding-top: 100px !important;
}
.pb10{
	padding-bottom: 100px !important;
}
.pl10{
	padding-left: 100px !important;
}
.pr10{
	padding-right: 100px !important;
}
/* ========================================================================== */
/* § 文字揃え調整 */
/* ========================================================================== */
/*
¡ 文字揃え 左 .ta-left
¡ 文字揃え 右 .ta-right
¡ 文字揃え 中央 .ta-center
*/
.ta_left{
	text-align: left !important;
}
.ta_right{
	text-align: right !important;
}
.ta_center{
	text-align: center !important;
}
/* ========================================================================== */
/* § フロートのクリア */
/* ========================================================================== */
/*
¡ フロートのクリア .clear
*/
.clear:before,.clear:after{
	content: '';
	display: table;
}
.clear:after{
	clear: both;
}
/* ========================================================================== */
/* § 画像のレスポンシブ伸縮 */
/* ========================================================================== */
/*
¡ 画像のレスポンシブ伸縮（imgまたは祖先に適用） .ri .responsive-img
*/
.responsive-img,
.ri {
  img {
    width: 100%;
    height: auto;
  }
}
img.responsive-img,
img.ri {
  width: 100%;
  height: auto;
}
.responsive-img-maxWidth,
.ri-mw {
  img {
    max-width: 100%;
    height: auto;
  }
}
img.responsive-img-maxWidth,
img.ri-mw {
  max-width: 100%;
  height: auto;
}
/* ========================================================================== */
/* § SVGに対するスタイリング */
/* ========================================================================== */
/* インラインSVGのバウンディングボックス設定用枠 */
svg .origin {
  fill: none;
}
/* ========================================================================== */
/* $ ヘッダー HEADER */
/* ========================================================================== */
/* ™ ヘッダー z-index: 200; */
header {
  z-index: 200;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 5%;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center
}
header > a{
	position: relative;
	display: block;
	text-align: center;
	width: 100%;
}
header > a img{
	width: auto;
	height: 25px;
}
@media screen and (min-width: 768px){
	header > a img{
		height: 30px;
	}
}
@media print{
	header > a img{
		height: 30px;
	}
}
@media screen and (min-width: 768px){
	header > a{
		width: auto;
	}
}
@media print{
	header > a{
		width: auto;
	}
}
header > ul{
	padding: 0;
	margin: 0;
	list-style: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
}
header > ul li{
	padding: 0 1rem;
	margin: 0.25em 0;
	font-size: 0.85rem;
	line-height: 1;
	text-align: right;
	padding-right: 0;
}
@media screen and (min-width: 768px){
	header > ul{
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
	}
}
@media print{
	header > ul{
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
	}
}
@media screen and (min-width: 768px){
	header > ul{
		width: auto;
	}
}
@media print{
	header > ul{
		width: auto;
	}
}
header > ul li:not(:first-child){
	border-left: none;
}
@media screen and (min-width: 376px){
	header > ul li:not(:first-child){
		border-left: 1px solid #ccc;
	}
}
@media print{
	header > ul li:not(:first-child){
		border-left: 1px solid #ccc;
	}
}
@media screen and (min-width: 376px){
	header > ul li{
		padding-right: 1rem;
	}
}
/* ========================================================================== */
/* § COPY RIGHT */
/* ========================================================================== */
#copyright {
  background: #fff;
  padding-right: 60px;
  text-align: right;
  color: #616161;
  font-size: 0.75rem;
  height: 4em;
  margin-top:1.5em;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 376px){
	#copyright{
		padding-right: 130px;
	}
}
/* ========================================================================== */
/* § 中間ページ */
/* ========================================================================== */
#container {
  position: relative;
  padding: calc(60px + 2.5rem) 15% 80vw
}
#container #container-bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 768px){
	#container{
		padding: calc(60px + 4rem) 5% 30vw;
	}
}
#container #container-bg div{
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 30% 90%;
}
#container #container-bg .slick-dots{
	bottom: 20px;
}
#container #container-bg .slick-dots li button:before{
	color: white;
	opacity: 0.5;
}
#container #container-bg .slick-dots li.slick-active button:before{
	color: #F6D242;
	opacity: 1;
}
#texts {
  position: relative;
  text-align: center;
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.25em;
  font-weight: normal;
  font-size: 1.75rem
}
#texts span{
	padding: 0 2rem 0.5rem;
	border-bottom: 2px solid #fff;
	box-shadow: 0px 4px 2px -2px rgba(0,0,0,0.3);
}
#buttons {
  margin: 4rem auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  // -webkit-box-pack: justify;
  // -webkit-justify-content: space-between;
  //     -ms-flex-pack: justify;
  //         justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1200px
  /* max-width: 800px; */
}
/* 順番 */
#buttons div.-left {order: 1;}
#buttons div.-center {order: 3;}
#buttons div.-right {order: 2;}
@media screen and (min-width: 768px){
  #buttons div.-left {order: 1;}
  #buttons div.-center {order: 2;}
  #buttons div.-right {order: 3;}
}

#buttons div.section{
  width: 100%;
  margin: 0 1rem;
}

#buttons div.column{
	display: block;
	background: #fff;
	padding: 0.75rem;
	margin-bottom: 1rem;
	box-shadow: 0px 0px 51px 0px rgba(0, 0, 0, 0.08), 0px 6px 18px 0px rgba(0, 0, 0, 0.05);
	-webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	/* width: {
      $bp_sp: 100%;
      $bp_tabl: 24%;
      print: 24%;
    } */
	width: 100%;
	/* width: {
      $bp_sp: 100%;
      $bp_tabl: 48%;
      print: 48%;
    } */
}
#buttons div.column:hover{
	box-shadow: 0px 0px 114px 0px rgba(0, 0, 0, 0.08), 0px 30px 25px 0px rgba(0, 0, 0, 0.05);
}
#buttons div.column .inner{
	position: relative;
	border-radius: 0.375rem;
}
#buttons div.column .inner img{
	width: 100%;
	height: auto;
}
#buttons div.column ul.lists{
	list-style-type: none;
	margin: 0;
	padding: 0;
	/* display: none; */
}
#buttons div.column ul.lists li{
	margin: 2px 0;
}
#buttons div.column ul.lists li a{
	display: block;
	text-align: center;
	font-size: 1.2em;
	background: rgba(0,0,0,0.2);
	color: #fff;
	padding: 0.2em 1em;
}
#buttons div.column ul.lists li a:hover{
	background: rgba(0,0,0,0.1);
}
#buttons div.column .triger{
	cursor: pointer;
	text-align: center;
	line-height: 1;
	color: #fff;
	padding: 1rem 0;
	opacity: 0.8;
	/* &:after {
        content: '＋］';
        display: inline;
      }
      &.on:after {
        content: 'ー］';
      } */
}
@media screen and (min-width: 768px){
	#buttons div.section{
		width: 32%;
		/* width: 24%; */
	}
}
@media print{
	#buttons div.column{
		width: 32%;
		/* width: 24%; */
	}
}
#buttons div.column .triger:hover{
	opacity: 1;
}
/* ========================================================================== */
/* § 会社概要、プライバシーポリシー ページ */
/* ========================================================================== */
#container-alt {
  background: #F3F3F3;
  padding: calc(60px + 2.5rem) 5% 2.5rem
}
@media screen and (min-width: 768px){
	#container-alt{
		padding: calc(60px + 4rem) 15% 4rem;
	}
}
h1#common-heading {
  text-align: center;
  color: #231815;
  /* text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); */
  letter-spacing: 0.25em;
  font-weight: normal;
  font-size: 1.75rem
}
h1#common-heading span{
	padding: 0 2rem 0.5rem;
	border-bottom: 2px solid #231815;
	/* box-shadow: 0px 4px 2px -2px rgba(0,0,0,0.3); */
}
h1#common-heading.nospaceing{
	letter-spacing: 0;
}
#profile-table {
  margin-top: 3rem
}
#profile-table table{
	margin: 0;
	padding: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	border-left: 1px solid #DADADA;
	border-top: 1px solid #DADADA;
	border-right: 1px solid #DADADA;
	width: 100%;
}
#profile-table table th{
	background: #edf3f8;
	text-align: center;
	border-bottom: 1px solid #DADADA;
	white-space: nowrap;
	padding: 5px 0;
	margin: 0;
	width: 24%;
}
#profile-table table td{
	background: #FFF;
	border-bottom: 1px solid #DADADA;
	border-left: 1px solid #DADADA;
	padding: 5px 10px;
	margin: 0;
	width: 76%;
}
#profile-note {
  text-align: right;
  font-size: 0.9rem;
}
#pp {
  margin-top: 3rem
}
#pp p{
	font-size: 0.9rem;
}
#pp h2{
	display: block;
	position: relative;
	margin: 3rem 0 1rem;
	padding: 0.5em 1em;
	font-size: 1.25rem;
	line-height: 1;
	border: 1px solid #DADADA;
	background: -webkit-linear-gradient(top, #ffffff, #F4F4F4);
	background: linear-gradient(to bottom, #ffffff, #F4F4F4);
}
#pp h2:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0.2em;
	height: 100%;
	background: -webkit-linear-gradient(top, #3F94CA, #0070B7);
	background: linear-gradient(to bottom, #3F94CA, #0070B7);
}
#pp h5{
	margin: 4rem 0 0.75rem;
	font-size: 1rem;
}
#pp h5 span{
	padding-bottom: 0.25rem;
	border-bottom: 1px solid #231815;
}
#pp h5 + p{
	margin: 0;
}

.pp-sublist {
  list-style: none;
  padding-left: 0;
}
.pp-sublist h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}
.pp-sublist p {
  margin: 0.5em 0 1.5em;
  padding-left: 1.5em;
}
.pp-sublist ul {
  margin: 0.5em 0 1.5em;
  padding-left: 3em;
}
