@charset "UTF-8";
/*#########################################################

【コーディングガイドライン補足】

▼サポートブラウザ
確認ブラウザ：
▼スマートフォン
確認デバイス：
▼解像度
基準モニター解像度（PC）：
基準モニター解像度（SP）：
ブレイクポイント：

▼コーディングガイドライン
・コーディングはPUG、CSSはSASS
・CSS設計手法はRSCSS
・リンクURL：ルート相対。index.htmlは記入しない
・外部サイトへのリンクは基本的に新規ウインドウ（_blank）での展開
・IDはJSのみで使い、スタイルはクラスで指定する
・フォントはremの62.50%（10px）
・余白はmargin-bottomで設定（余白でmargin-topを使わない）
・articleの中にsectionを入れる、その逆はNG
・縦や横の並びはULを使う

▼ベースSCSS
・base/_base.scss
　→他のプロジェクトでも使う汎用的な設定
　他プロジェクトでも絶対に使うというレベルでなくても良い。
・base/_generic.scss
　→変数やmixinなどの設定
・base/_global.scss
　→汎用的に使うクラス（主にElements）
・base/_ress.scss
　→リセットCSS

#########################################################*/
/*#########################################################

読み込み

#########################################################*/
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
# General elements
# ================================================================= */
hr {
  overflow: visible; /* Show the overflow in Edge and IE */
  height: 0; /* Add the correct box sizing in Firefox */
  color: inherit; /* Correct border color in Firefox. */
}

details,
main {
  display: block; /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none; /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit; /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0; /* Remove text indentation in Chrome, Edge, and Safari */
}

/* # =================================================================
# Forms
# ================================================================= */
input {
  border-radius: 0;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto; /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
  color: inherit;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

/* # =================================================================
# Specify media element style
# ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
# Accessibility
# ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/*#########################################################

基本設定

#########################################################*/
/* ========================================================
単位用設定
=========================================================*/
/* ========================================================
色用設定
=========================================================*/
/* ========================================================
フォント用設定
=========================================================*/
@font-face {
  font-family: "Playfair Display";
  src: url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");
  font-display: swap;
}
/* ========================================================
プロジェクト用変数
=========================================================*/
/* ========================================================
メディアクエリ用Mixinの変数設定
=========================================================*/
/*
▼iOSデバイス
iPhone5: 320 × 568
iPhone 6-8: 375 × 667（1334x750）
iPhone 6-8 plus: 414 × 736（1920x1080）
iPhone X,XS,11Pro: 375 × 812（1125x2436）
iPhone XR,11: 414 × 896（828x1792）

iPad/iPad Mini: 768 × 1024
iPad Pro: 1024 × 1366
https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions

▼ブートストラップ
xs： ～767px
sm： 768～991px
md： 992～1119px
lg： 1120px～
*/
/* ========================================================
メディアクエリ用Mixin
=========================================================*/
/*
ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
ステップ2.該当する設定を有効化、その他をコメントアウトする。
ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
→実際の設定は_base.scssではなく、インポート元で行う。
*/
/*
// ステップ2：モバイルファースト用（デスクトップファーストの場合はコメントアウト）
$breakpoints: (
	// タブレット
	'md': 'screen and (min-width: ' + ($screen-sm-max + 1) + ') and (max-width: ' + ($screen-md-max) + ')',
	// デスクトップ
	'lg': 'screen and (min-width: ' + ($screen-sm-max + 1) + ')',
) !default;
*/
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
	// デフォルト
	background: yellow;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// デスクトップ
	@include mq(lg){
		background: red;
	}
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
	// デフォルト
	background: red;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// スマートフォン
	@include mq(sm){
		background: yellow;
	}
}
//------------------------------
*/
.entry-container > .inner, .postlist-container > .inner {
  margin: 0 auto;
  max-width: 1500px;
  padding: 0 40px;
}
@media screen and (max-width: 1023px) {
  .entry-container > .inner, .postlist-container > .inner {
    padding: 0;
    width: 95%;
  }
}

/*#########################################################

要素関連（リセットCSSの種類によっては不要）

#########################################################*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  font-size: 1.6rem;
  font-family: "Playfair Display", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Helvetica Neue", Helvetica, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  color: #1b1b1b;
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  body {
    line-height: 1.5;
  }
}

p {
  margin-bottom: 1rem;
}

a {
  color: #000;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
a:visited {
  color: #000;
}
a:focus {
  color: #ee0979;
}
a:hover {
  color: #ee0979;
}
a:active {
  color: #00a0e9;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.6rem;
}

textarea {
  border: 1px solid #f0f1f6;
}

input {
  border: 1px solid #f0f1f6;
}

table {
  border-collapse: collapse;
}

/* ========================================================
スクロールバー
=========================================================*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border: none;
}

::-webkit-scrollbar-thumb {
  background: #ff4e50;
  background: #000;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*#########################################################

アニメーション

#########################################################*/
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*#########################################################

余白（なるべく使わない）

#########################################################*/
/* ========================================================
下余白
=========================================================*/
/*
.mb1{
	margin-bottom: $mg*1;
}
.mb2{
	margin-bottom: $mg*2;
}
.mb3{
	margin-bottom: $mg*3;
}
.mb4{
	margin-bottom: $mg*4;
}
.mb5{
	margin-bottom: $mg*5;
}
*/
/* ========================================================
右余白
=========================================================*/
/*
.mr1{
	margin-right: $mg*1;
}
.mr2{
	margin-right: $mg*2;
}
.mr3{
	margin-right: $mg*3;
}
.mr4{
	margin-right: $mg*4;
}
.mr5{
	margin-right: $mg*5;
}
*/
/*#########################################################

共通アイコン・共通設定

#########################################################*/
/* ========================================================
PC版・SP版専用設定(モバイルファースト用)
=========================================================*/
/*
.pc{
	display: none !important;
	@include mq(lg){
		display: inherit !important;
	}
}
.sp{
	display: inherit !important;
	@include mq(lg){
		display: none !important;
	}
}
*/
/* ========================================================
PC版・SP版専用設定(PCファースト用)
=========================================================*/
@media screen and (max-width: 1023px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .sp {
    display: inherit !important;
  }
}

/* ========================================================
矢印
=========================================================*/
.arrow.-openleft::before, .arrow.-openright::before, .arrow.-opendown::before, .arrow.-openup::before {
  width: 9px;
  height: 9px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.arrow.-left::after, .arrow.-right::after, .arrow.-up::after, .arrow.-down::after {
  width: 9px;
  height: 9px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  text-indent: -10000px;
  width: 9px;
  height: 9px;
}
.arrow::after, .arrow::before {
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  content: "";
  margin: auto;
  vertical-align: middle;
}
.arrow.-opendown::before, .arrow.-openup::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.arrow.-opendown::before {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.arrow.-openleft::before, .arrow.-openright::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.arrow.-openleft::before {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.arrow.-up, .arrow.-down {
  width: 9px;
}
.arrow.-up::before, .arrow.-down::before {
  right: 0;
  width: 1px;
  height: 9px;
  background: #000;
}
.arrow.-up::after, .arrow.-down::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.arrow.-down::after {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.arrow.-left::before, .arrow.-right::before {
  width: 9px;
  height: 1px;
  background: #000;
}
.arrow.-left::after, .arrow.-right::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.arrow.-left::after {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/* ========================================================
チェックマーク
=========================================================*/
.entry-container > .inner > .entry .checkmark {
  position: relative;
  padding-left: 2.5rem;
}
.entry-container > .inner > .entry .checkmark::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 5px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: 1;
}
.entry-container > .inner > .entry .checkmark::after {
  content: " ";
  border-radius: 50px;
  background: #25af01;
  display: block;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 0;
}

/*#########################################################
プラグイン
#########################################################*/
/* ========================================================
SyntaxHighlighter2.0
=========================================================*/
.syntaxhighlighter .line {
  white-space: normal !important;
}

.syntaxhighlighter {
  overflow-x: scroll;
}

/* ========================================================
google-code-prettify
=========================================================*/
.prettyprint {
  margin: 0 !important;
  background: #1b2426 !important;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace !important;
  border: 0 !important;
}

pre.prettyprint {
  border-radius: 0 !important;
}

.prettyprint code {
  overflow-x: auto;
  display: block;
  line-height: 25px !important; /*padding:25px 30px!important*/
}

.prettyprint code {
  /*background:#2f3640!important;*/
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace !important;
}

.prettyprint .pln {
  color: #e6e9ed !important;
}

.prettyprint ol.linenums {
  margin: 0 !important;
  padding-left: 2rem;
  color: #656d78 !important;
}

.prettyprint li {
  margin: 0 !important;
  padding-left: 1rem !important;
  background-color: #1b2426 !important;
  list-style: decimal outside !important;
}

@media screen {
  .prettyprint .str {
    color: #ffce54 !important;
  }
  .prettyprint .kwd {
    color: #4fc1e9 !important;
  }
  .prettyprint .com {
    color: #b8e994 !important;
  }
  .prettyprint .typ {
    color: #4fc1e9 !important;
  }
  .prettyprint .lit {
    color: #ac92ec !important;
  }
  .prettyprint .pun {
    color: #e6e9ed !important;
  }
  .prettyprint .opn {
    color: #e6e9ed !important;
  }
  .prettyprint .clo {
    color: #e6e9ed !important;
  }
  .prettyprint .tag {
    color: #ed5565 !important;
  }
  .prettyprint .atn {
    color: #a0d468 !important;
  }
  .prettyprint .atv {
    color: #ffce54 !important;
  }
  .prettyprint .dec {
    color: #ac92ec !important;
  }
  .prettyprint .var {
    color: #e6e9ed !important;
  }
  .prettyprint .fun {
    color: #e6e9ed !important;
  }
}
.prettyprint {
  padding: 2rem 1rem 1rem 2.5rem !important;
  width: 100% !important;
  color: #fff;
  /* 行番号 */
}
.prettyprint ol.linenums,
.prettyprint ol.linenums > li {
  line-height: 1.4 !important;
}
.prettyprint ol.linenums > li {
  border-left: 3px solid #435a5f;
}
.prettyprint .com {
  font-style: normal;
}

/* ========================================================
Table of Contents Plus
=========================================================*/
#toc_container li a {
  display: block;
  padding: 0.5em 0;
  border-top: 1px dotted #ddd;
}

.toc_list li {
  line-height: 2;
}

/*#########################################################

プロジェクト専用

#########################################################*/
/* ========================================================
NEWタグ
=========================================================*/
.new {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -10px;
  left: 10px;
  text-align: center;
}
.new:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background: #73043b;
  left: 0;
  top: 0;
  -webkit-transform: skewX(22deg);
      -ms-transform: skewX(22deg);
          transform: skewX(22deg);
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  z-index: 1;
}
.new:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #ee0979;
  z-index: 2;
}
.new span {
  position: relative;
  line-height: 40px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #fff;
  z-index: 3;
}

/* ========================================================
NO
=========================================================*/
.no {
  display: inline-block;
  margin-bottom: 30px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.032em;
  line-height: 1;
  text-align: center;
}
.no::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 1px;
  margin: auto;
  position: relative;
  width: 2.3077em;
}
.no span {
  font-size: 5rem;
  line-height: 1.2;
}

/* ========================================================
コピーライト
=========================================================*/
.copyright {
  padding: 20px 0;
  text-align: center;
  color: #000;
  background: #f2f2f2;
}

/* ========================================================
画像の遅延読み込み用
=========================================================*/
.lazyloaded {
  opacity: 1;
}

/* ========================================================
外部スタイル
=========================================================*/
@font-face {
  font-family: "_smartfont";
  src: url("../font/fontello/font/_smartfont.eot?19491356");
  src: url("../font/fontello/font/_smartfont.eot?19491356#iefix") format("embedded-opentype"), url("../font/fontello/font/_smartfont.woff2?19491356") format("woff2"), url("../font/fontello/font/_smartfont.woff?19491356") format("woff"), url("../font/fontello/font/_smartfont.ttf?19491356") format("truetype"), url("../font/fontello/font/_smartfont.svg?19491356#_smartfont") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
 @media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
  font-family: '_smartfont';
  src: url('../font/_smartfont.svg?19491356#_smartfont') format('svg');
}
 }
 */
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "_smartfont";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-search:before {
  content: "\e800";
} /* '' */
.icon-up-open:before {
  content: "\e801";
} /* '' */
.icon-right-open:before {
  content: "\e802";
} /* '' */
.icon-left-open:before {
  content: "\e803";
} /* '' */
.icon-popup:before {
  content: "\e804";
} /* '' */
.icon-bold:before {
  content: "\e805";
} /* '' */
.icon-home:before {
  content: "\e806";
} /* '' */
.icon-twitter:before {
  content: "\f099";
} /* '' */
.icon-facebook:before {
  content: "\f09a";
} /* '' */
.icon-comment-empty:before {
  content: "\f0e5";
} /* '' */
.icon-folder-open-empty:before {
  content: "\f115";
} /* '' */
.icon-paper-plane-empty:before {
  content: "\f1d9";
} /* '' */
.icon-get-pocket:before {
  content: "\f265";
} /* '' */
/* ========================================================
JSライブラリ用
=========================================================*/
/**
 * Swiper 5.3.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 29, 2020
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ========================================================
よく使うComponents
=========================================================*/
/* ========================================================
ボタン
=========================================================*/
.default-button {
  margin: auto auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 16rem;
  height: 4rem;
  color: #fff;
  background-color: #222;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.default-button:hover {
  background: #ff4e50;
}
/* ========================================================
category.pug 縦の一覧
=========================================================*/
ul.default-list {
  list-style: none;
}
ul.default-list li a {
  padding: 10px;
  font-size: 2rem;
  color: #1b1b1b;
}
ul.default-list li a .fa {
  margin-right: 20px;
}
ul.default-list li a:hover {
  color: #fff;
}

/* ========================================================
一覧用タイトル（下ボーダー）
=========================================================*/
.default-title {
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-size: 1.8rem;
  color: #626262;
  letter-spacing: 2px;
  max-width: 270px;
  border-bottom: 1px solid #f0f1f6;
}

/* ========================================================
Components
=========================================================*/
/* ========================================================
メインコンテンツ、左カラムを含むラッパー
=========================================================*/
.main-container {
  margin-top: 150px;
}
@media screen and (max-width: 1023px) {
  .main-container {
    margin-top: 80px;
  }
}

.is-small .main-container {
  margin-top: 80px;
}

/* ========================================================
専用変数
=========================================================*/
/* ========================================================
専用アニメーション
=========================================================*/
@-webkit-keyframes slidebox {
  0% {
    -webkit-transform: translate(60px, 0);
            transform: translate(60px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes slidebox {
  0% {
    -webkit-transform: translate(60px, 0);
            transform: translate(60px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes logo {
  0% {
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  95% {
    stroke-opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #434343;
    stroke-opacity: 0;
  }
}
@keyframes logo {
  0% {
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  95% {
    stroke-opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #434343;
    stroke-opacity: 0;
  }
}
/*#########################################################

ヘッダ

#########################################################*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 40px 0;
  width: 100%;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  opacity: 0.8;
  z-index: 100;
  -webkit-transition: height, background-color 0.3s;
  transition: height, background-color 0.3s;
}
@media screen and (max-width: 1200px) {
  .site-header {
    padding: 40px 0;
    height: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .site-header {
    padding: 0;
  }
}
.site-header > .sitelogo {
  line-height: 1;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  text-align: left;
  width: 220px;
  font-size: 4rem;
}
@media screen and (max-width: 1023px) {
  .site-header > .sitelogo {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
}
.site-header > .sitelogo > a {
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  height: 40px;
}
@media screen and (max-width: 1023px) {
  .site-header > .sitelogo > a {
    height: 30px;
  }
}
.site-header > .sitelogo > a > .logosvg {
  margin: 0 40px;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .site-header > .sitelogo > a > .logosvg {
    margin: 0 20px;
  }
}

/* ========================================================
ヘッダのミニサイズ
=========================================================*/
.is-small .site-header {
  padding: 0;
  height: 60px;
}
.is-small .site-header > .sitelogo {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: auto;
}
.is-small .site-header > .sitelogo a {
  height: 30px;
}
.is-small .site-header > .site-nav {
  display: none;
}

/* ========================================================
ロゴのCSSアニメーション用
=========================================================*/
.logosvg .logopath {
  stroke: #aedadd;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  stroke-width: 0.5;
  -webkit-animation: logo 3s ease-in 0s;
          animation: logo 3s ease-in 0s;
}

/* ========================================================
ナビゲーション
=========================================================*/
.site-nav {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.site-nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
@media screen and (max-width: 1200px) {
  .site-nav > ul {
    display: none;
  }
}
.site-nav > ul li:nth-child(1) {
  -webkit-animation: slidebox 0.4s ease-out 0.1s 1 forwards;
          animation: slidebox 0.4s ease-out 0.1s 1 forwards;
}
.site-nav > ul li:nth-child(2) {
  -webkit-animation: slidebox 0.4s ease-out 0.2s 1 forwards;
          animation: slidebox 0.4s ease-out 0.2s 1 forwards;
}
.site-nav > ul li:nth-child(3) {
  -webkit-animation: slidebox 0.4s ease-out 0.3s 1 forwards;
          animation: slidebox 0.4s ease-out 0.3s 1 forwards;
}
.site-nav > ul li:nth-child(4) {
  -webkit-animation: slidebox 0.4s ease-out 0.4s 1 forwards;
          animation: slidebox 0.4s ease-out 0.4s 1 forwards;
}
.site-nav > ul li:nth-child(5) {
  -webkit-animation: slidebox 0.4s ease-out 0.5s 1 forwards;
          animation: slidebox 0.4s ease-out 0.5s 1 forwards;
}
.site-nav > ul li:nth-child(6) {
  -webkit-animation: slidebox 0.4s ease-out 0.6s 1 forwards;
          animation: slidebox 0.4s ease-out 0.6s 1 forwards;
}
.site-nav > ul li:nth-child(7) {
  -webkit-animation: slidebox 0.4s ease-out 0.7s 1 forwards;
          animation: slidebox 0.4s ease-out 0.7s 1 forwards;
}
.site-nav > ul li:nth-child(8) {
  -webkit-animation: slidebox 0.4s ease-out 0.8s 1 forwards;
          animation: slidebox 0.4s ease-out 0.8s 1 forwards;
}
.site-nav > ul > li {
  line-height: 2;
  opacity: 0;
}
.site-nav > ul > li > a {
  position: relative;
  display: inline-block;
  padding: 0 20px 0 0;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav > ul > li > a:hover {
  opacity: 1;
}
.site-nav > ul > li > a:hover span.hash {
  color: limegreen;
}
.site-nav > ul > li > a:hover span.title::after {
  opacity: 1;
  width: 100%;
}
.site-nav > ul > li > a:hover span.title:hover {
  color: #ee0979;
}
.site-nav > ul > li > a span.hash {
  color: #ee0979;
}
.site-nav > ul > li > a span.title {
  -webkit-transition: color 0.6s;
  transition: color 0.6s;
}
.site-nav > ul > li > a span.title::after {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #ee0979;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
  z-index: 1;
}

/* ========================================================
検索フォーム
=========================================================*/
.search-form {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 200px;
}
@media screen and (max-width: 1023px) {
  .search-form {
    display: none;
  }
}
.search-form .field {
  border: none;
  border-bottom: 1px solid #f0f1f6;
  padding-left: 20px;
  font-size: 1.4rem;
  height: 40px;
  width: 150px;
  outline: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.search-form .field:focus {
  border-bottom: 1px solid #ee0979;
}
.search-form .field::-webkit-input-placeholder {
  color: #b5b5b5;
}
.search-form .field::-moz-placeholder {
  color: #b5b5b5;
}
.search-form .field:-ms-input-placeholder {
  color: #b5b5b5;
}
.search-form .field::-ms-input-placeholder {
  color: #b5b5b5;
}
.search-form .field::placeholder {
  color: #b5b5b5;
}
.search-form .submit-button {
  outline: none;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.search-form .submit-button:hover {
  color: #ee0979;
}

/*#########################################################

サイトのフッタ

#########################################################*/
.site-footer {
  border-top: 20px solid #f0f1f6;
  padding-top: 80px;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
  /* ========================================================
  rhythmfactory.jpへの誘導バナー
  =========================================================*/
}
@media screen and (max-width: 1023px) {
  .site-footer {
    padding-top: 40px;
  }
}
.site-footer > .inner {
  margin: auto auto 80px;
  max-width: 1500px;
}
@media screen and (max-width: 1023px) {
  .site-footer > .inner {
    margin-bottom: 40px;
  }
}
.site-footer > .inner > ul.horizontal-container {
  margin: 0 40px;
}
.site-footer > .inner > ul.horizontal-container > li {
  white-space: nowrap;
  min-width: 300px;
  /* ========================================================
  リンクリスト
  =========================================================*/
}
.site-footer > .inner > ul.horizontal-container > li:first-child {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 40%;
}
@media screen and (max-width: 1023px) {
  .site-footer > .inner > ul.horizontal-container > li:first-child {
    width: initial;
  }
}
@media screen and (max-width: 1023px) {
  .site-footer > .inner > ul.horizontal-container > li h1 {
    margin-bottom: 30px;
  }
}
.site-footer > .inner > ul.horizontal-container > li h1 a {
  text-decoration: none;
  display: block;
  width: 120px;
}
.site-footer > .inner > ul.horizontal-container > li ul.link-list {
  list-style: none;
}
.site-footer > .inner > ul.horizontal-container > li ul.link-list li {
  margin-bottom: 10px;
}
.site-footer > .inner > ul.horizontal-container > li ul.link-list li a {
  text-decoration: none;
}
.site-footer > .inner > ul.horizontal-container > li ul.link-list li a:hover {
  border-bottom: 1px solid #ff4e50;
}
.site-footer .gorhythmfactory-container {
  padding: 100px 0;
  background: #f2f2f2;
  text-align: center;
}
.site-footer .gorhythmfactory-container > a {
  position: relative;
  display: block;
  margin: auto;
  max-width: 1500px;
}
.site-footer .gorhythmfactory-container > a img {
  width: 300px;
}
.site-footer .gorhythmfactory-container > a > .-right {
  position: absolute;
  top: 20px;
  right: 150px;
}
@media screen and (max-width: 1023px) {
  .site-footer .gorhythmfactory-container > a > .-right {
    display: none;
  }
}
.site-footer .gorhythmfactory-container > a > .-right::before {
  width: 70px;
  height: 5px;
  left: 30px;
}
.site-footer .gorhythmfactory-container > a > .-right::after {
  left: 30px;
  width: 60px;
  height: 60px;
  border-top: 5px solid #000;
  border-right: 5px solid #000;
}

@-webkit-keyframes burger-hover {
  0% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  50% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 1;
  }
  51% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
  53% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes burger-hover {
  0% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  50% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 1;
  }
  51% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
  53% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
/* ========================================================
ハンバーガーボタン
=========================================================*/
.menu-button {
  display: block;
  margin-right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 150;
  overflow: hidden;
  /* 3本線アイコン用プレースホルダ */
  /* 3本線アイコン */
  /* 3本線アイコンを×アイコンに変化させる */
}
@media screen and (max-width: 1023px) {
  .menu-button {
    margin-right: 10px;
  }
}
.menu-button:hover {
  background: none;
}
.menu-button:hover .hamburgerbutton {
  background: -webkit-gradient(linear, left top, right top, from(#ff6a00), to(#ee0979));
  background: linear-gradient(to right, #ff6a00, #ee0979);
  width: 50px;
  -webkit-animation: burger-hover 0.4s forwards;
          animation: burger-hover 0.4s forwards;
  /* 上下のライン */
}
.menu-button:hover .hamburgerbutton:after, .menu-button:hover .hamburgerbutton:before {
  background: -webkit-gradient(linear, left top, right top, from(#ff6a00), to(#ee0979));
  background: linear-gradient(to right, #ff6a00, #ee0979);
}
.menu-button .hamburgerbutton:after, .menu-button .hamburgerbutton:before, .menu-button .hamburgerbutton {
  display: block;
  top: 49%;
  left: 50%;
  width: 24px;
  height: 3px;
  background: #4a4a48;
  z-index: 2100;
}
.menu-button .hamburgerbutton {
  position: relative;
  margin-left: -12px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  /* 上下のライン */
}
.menu-button .hamburgerbutton:after, .menu-button .hamburgerbutton:before {
  position: absolute;
  content: "";
  left: 0;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.menu-button .hamburgerbutton:before {
  margin-top: -8px;
}
.menu-button .hamburgerbutton:after {
  margin-top: 5px;
}
.menu-button.active span {
  background: transparent !important;
}
.menu-button.active span:after, .menu-button.active span:before {
  margin-top: 0 !important;
}
.menu-button.active span:before {
  -webkit-transform: translateY(0px) rotateZ(-135deg) !important;
      -ms-transform: translateY(0px) rotate(-135deg) !important;
          transform: translateY(0px) rotateZ(-135deg) !important;
}
.menu-button.active span:after {
  -webkit-transform: translateY(0px) rotateZ(135deg) !important;
      -ms-transform: translateY(0px) rotate(135deg) !important;
          transform: translateY(0px) rotateZ(135deg) !important;
}

/* ========================================================
SNSボタン
=========================================================*/
.socialicon-contaier {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  right: 0;
  top: 170px;
  width: 80px;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .socialicon-contaier {
    width: 30px;
    top: initial;
    bottom: 80px;
  }
}
.socialicon-contaier > a {
  display: inline-block;
  height: 3rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
}
.socialicon-contaier > a:hover i:first-child {
  margin-top: 0;
  color: #ee0979;
}
.socialicon-contaier > a i {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  margin-top: 0;
  height: 100%;
  line-height: 3.4rem;
  width: 100%;
  text-align: center;
  font-size: 100%;
  color: #000;
}
.socialicon-contaier > a i:first-child {
  margin-top: -30px;
}

/* ========================================================
ソーシャルボタン
=========================================================*/
.socialiconsingle-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 0;
}
.socialiconsingle-container > a {
  display: block;
  width: 23%;
  height: 50px;
  border-radius: 2px;
  background: #000;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
}
.socialiconsingle-container > a:hover {
  background: #ccc;
}
.socialiconsingle-container > a:hover i:first-child {
  margin-top: 11px;
}
.socialiconsingle-container > a i {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  margin-top: 11px;
  height: 100%;
  width: 100%;
  text-align: center;
  font-size: 100%;
  color: #fff;
}
.socialiconsingle-container > a i:first-child {
  margin-top: -50px;
}
.socialiconsingle-container .btn_facebook:hover {
  background: #3b5997 !important;
}
.socialiconsingle-container .btn_twitter:hover {
  background: #00acee !important;
}
.socialiconsingle-container .btn_pocket:hover {
  background: #dd4b39 !important;
}
.socialiconsingle-container .btn_hatebo:hover {
  background: #00A5DE !important;
}
.socialiconsingle-container .btn_linkedin:hover {
  background: #0e76a8 !important;
}
.socialiconsingle-container .btn_instagram:hover {
  background: #3f729b !important;
}
.socialiconsingle-container .btn_tumblr:hover {
  background: #36465d !important;
}

/*#########################################################

モーダル

#########################################################*/
/* ========================================================
メニューオープン後の下敷き
=========================================================*/
.menumodal-container {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  top: 0;
  pointer-events: none;
}
.menumodal-container .modalanime {
  position: absolute;
  width: 800px;
  height: 800px;
  background-color: #252f39;
  border-radius: 50%;
  pointer-events: none;
  -webkit-transform: scale(0, 0);
      -ms-transform: scale(0, 0);
          transform: scale(0, 0);
  top: -400px;
  right: -400px;
}

.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 110;
  opacity: 0;
  color: #fff;
  pointer-events: none;
  background-color: #252f39;
  overflow: hidden;
}
.menu-container.active {
  pointer-events: initial;
}
.menu-container .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.menu-container .inner .category-title {
  margin-bottom: 20px;
  font-size: 3rem;
  letter-spacing: 0.5rem;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .menu-container .inner .category-title {
    font-size: 1.5rem;
  }
}
.menu-container .inner .category-title .text-container {
  position: relative;
  display: inline-block;
}
.menu-container .inner .category-title .text-container .textunderline {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  bottom: -15px;
}
.menu-container .inner .category-title .text-container .charanimation {
  display: inline-block;
  line-height: 1rem;
}
.menu-container .inner .category-menu {
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  list-style: none none;
  margin: 0.5rem auto;
  width: 980px;
}
@media screen and (max-width: 1023px) {
  .menu-container .inner .category-menu {
    width: 95%;
  }
}
.menu-container .inner .category-menu li {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .menu-container .inner .category-menu li {
    margin-bottom: 0rem;
  }
}
.menu-container .inner .category-menu li a.menuitem-button {
  margin: 2px;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 2rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 3px;
  border: none;
  font-size: 2rem;
  line-height: 2rem;
  background-color: #000;
}
@media screen and (max-width: 1023px) {
  .menu-container .inner .category-menu li a.menuitem-button {
    line-height: 1.5rem;
    font-size: 1.6rem;
  }
}
.menu-container .inner .category-menu li a.menuitem-button:hover {
  color: #fff;
  background: #ee0979; /* fallback for old browsers */
  background: -webkit-gradient(linear, left top, right top, from(#ff6a00), to(#ee0979));
  background: linear-gradient(to right, #ff6a00, #ee0979); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* ========================================================
最新の投稿一覧
=========================================================*/
.postlist-container {
  margin-bottom: 100px;
  background: #dad5c9;
  padding: 40px 0;
}
@media screen and (max-width: 1023px) {
  .postlist-container {
    padding: 40px 0;
  }
}
.postlist-container > .inner {
  margin: auto;
  padding: 100px 0 50px;
}
.postlist-container > .inner > .title {
  margin-bottom: 30px;
  text-align: center;
}
.postlist-container > .inner .post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .postlist-container > .inner .post-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.postlist-container > .inner .post-list > li {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .postlist-container > .inner .post-list > li {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.postlist-container > .inner .post-list > li:last-child {
  margin-right: 0;
}
.postlist-container > .inner .post-list > li .post-img a {
  position: relative;
}
.postlist-container > .inner .post-list > li .post-img a:hover {
  opacity: 1;
}
.postlist-container > .inner .post-list > li .post-img a:hover:after {
  opacity: 1;
}
.postlist-container > .inner .post-list > li .post-img a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transition: ease opacity 350ms;
  transition: ease opacity 350ms;
}
.postlist-container > .inner .post-list > li .post-img a img {
  width: 100%;
  -webkit-animation: fade 5s forwards;
          animation: fade 5s forwards;
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .postlist-container > .inner .post-list > li .post-img a img {
    margin-bottom: 10px;
  }
}
.postlist-container > .inner .post-list > li > a {
  display: inline-block;
  margin-right: 10px;
  text-decoration: none;
  border-bottom: 1px solid #cdb897;
  text-decoration: none;
}
.postlist-container > .inner .post-list > li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .postlist-container > .inner .post-list > li ul {
    margin: auto;
    width: 90%;
  }
}
.postlist-container > .inner .post-list > li ul a {
  margin-right: 10px;
  text-decoration: none;
  border-bottom: 1px solid #cdb897;
}
@media screen and (max-width: 767px) {
  .postlist-container > .inner .post-list > li .title {
    margin: auto;
    width: 90%;
  }
}

/* ========================================================
写真とタイトルリンク
=========================================================*/
.post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .post-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.post-list > li {
  margin-right: 20px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .post-list > li {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.post-list > li:last-child {
  margin-right: 0;
}
.post-list > li .post-img a {
  position: relative;
}
.post-list > li .post-img a:hover {
  opacity: 1;
}
.post-list > li .post-img a:hover:after {
  opacity: 1;
}
.post-list > li .post-img a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transition: ease opacity 350ms;
  transition: ease opacity 350ms;
}
.post-list > li .post-img a img {
  width: 100%;
  -webkit-animation: fade 5s forwards;
          animation: fade 5s forwards;
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
  opacity: 0;
}
@media screen and (max-width: 1023px) {
  .post-list > li .post-img a img {
    margin-bottom: 10px;
  }
}
.post-list > li > a {
  display: inline-block;
  margin-right: 10px;
  text-decoration: none;
  border-bottom: 1px solid #cdb897;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  .post-list > li .title {
    margin: auto;
    width: 90%;
  }
}
.post-list > li .title a {
  text-decoration: none;
}

/* ========================================================
top:記事一覧
=========================================================*/
.articlelist-container {
  padding-bottom: 100px;
  content-visibility: auto;
  contain-intrinsic-size: 905px;
}
.articlelist-container > .inner {
  margin: 0 auto;
  max-width: 1500px;
  text-align: center;
}
.articlelist-container > .inner .title {
  margin: auto auto 50px;
  padding: 80px 40px 50px;
  text-align: center;
  display: block;
  background: url(/wp-content/themes/smart-two/common/img/common/h_line.svg) no-repeat center bottom;
  background-size: 500px;
}
.articlelist-container > .inner .subtitle {
  margin-bottom: 40px;
  font-weight: bold;
}

/* ========================================================
スライダ
=========================================================*/
.swiper-card {
  height: calc(100vh - 150px);
}
@media screen and (max-width: 1023px) {
  .swiper-card {
    height: calc(100vh - 60px);
  }
}
.swiper-card > .swiper-wrapper {
  margin: 0 auto;
}
.swiper-card > .swiper-wrapper .swiper-slide {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-out;
  transition: opacity 1.5s ease-out;
}
.swiper-card > .swiper-wrapper .swiper-slide.active {
  opacity: 1;
}
.swiper-card > .swiper-wrapper .swiper-slide .swper-content {
  position: relative;
  margin: auto;
  width: 90%;
  height: 100%;
  z-index: 2;
}
.swiper-card > .swiper-wrapper .swiper-lazy {
  position: absolute;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .swiper-card > .swiper-wrapper .swiper-lazy {
    width: 100%;
  }
}

/* ========================================================
スライダー1枚目のアニメーション
=========================================================*/
.swiper-slide {
  /* ========================================================
  スタイル
  =========================================================*/
  /* ========================================================
  アニメーション
  =========================================================*/
}
.swiper-slide.-mv01, .swiper-slide.-mv02 {
  margin-top: calc(50vh - 185px - 150px);
  width: 100% !important;
  height: 370px;
}
.swiper-slide.-mv01 .title, .swiper-slide.-mv02 .title {
  font-size: calc(1em + 10vw);
  line-height: 0.7;
}
@media screen and (max-width: 1023px) {
  .swiper-slide.-mv01 .title, .swiper-slide.-mv02 .title {
    margin: 20px 0 30px;
    font-size: 6rem;
  }
}
.swiper-slide.-mv01 .title span:nth-child(2), .swiper-slide.-mv02 .title span:nth-child(2) {
  margin-left: 70px;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .swiper-slide.-mv01 .title span:nth-child(2), .swiper-slide.-mv02 .title span:nth-child(2) {
    color: #000;
  }
}
.swiper-slide.-mv01 .title span:nth-child(3), .swiper-slide.-mv02 .title span:nth-child(3) {
  margin-left: 180px;
}
.swiper-slide.-mv01 .subtitle, .swiper-slide.-mv02 .subtitle {
  margin-bottom: 20px;
  padding: 0 40px;
  display: inline-block;
  color: #fff;
  background: #000;
}
@media screen and (max-width: 1023px) {
  .swiper-slide.-mv01 .subtitle, .swiper-slide.-mv02 .subtitle {
    padding: 10px 20px;
    line-height: 1.2;
  }
}
.swiper-slide.-mv01 .split, .swiper-slide.-mv02 .split {
  margin-bottom: 30px;
  height: 180px;
}
@media screen and (max-width: 1023px) {
  .swiper-slide.-mv01 .split, .swiper-slide.-mv02 .split {
    height: 140px;
  }
}
.swiper-slide.-mv01 p span, .swiper-slide.-mv02 p span {
  background: #fff;
  color: #000;
  font-size: 2rem;
}
.swiper-slide.-mv02 {
  color: #fff;
}
.swiper-slide.-mv01.-animation, .swiper-slide.-mv01.-animation2, .swiper-slide.-mv02.-animation, .swiper-slide.-mv02.-animation2 {
  opacity: 0;
}
.swiper-slide.-mv01.active .-animation,
.swiper-slide.-mv01.active .-animation2, .swiper-slide.-mv02.active .-animation,
.swiper-slide.-mv02.active .-animation2 {
  opacity: 1;
}
.swiper-slide.-mv01.active .-animation span,
.swiper-slide.-mv01.active .-animation2 span, .swiper-slide.-mv02.active .-animation span,
.swiper-slide.-mv02.active .-animation2 span {
  width: 100%;
  float: left;
  color: #000;
  opacity: 0;
  -webkit-animation-name: titleAnimation;
          animation-name: titleAnimation;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.swiper-slide.-mv01.active .-animation span, .swiper-slide.-mv02.active .-animation span {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.swiper-slide.-mv01.active .-animation span:first-child, .swiper-slide.-mv02.active .-animation span:first-child {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.swiper-slide.-mv01.active .-animation span:last-child, .swiper-slide.-mv02.active .-animation span:last-child {
  color: #000;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

/* ========================================================
タイトルアニメーション
=========================================================*/
@-webkit-keyframes titleAnimation {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  100% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
  }
}
@keyframes titleAnimation {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  100% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
  }
}
.swiper-pagination-bullet-active {
  background: #fff;
}

/* ========================================================
スライダー用
=========================================================*/
.-swiper2, .-swiper3, .-swiper4 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.-swiper2 .swiper-wrapper, .-swiper3 .swiper-wrapper, .-swiper4 .swiper-wrapper {
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .-swiper2 .swiper-wrapper, .-swiper3 .swiper-wrapper, .-swiper4 .swiper-wrapper {
    margin-bottom: 0;
  }
}
.-swiper2 .swiper-wrapper .swiper-slide, .-swiper3 .swiper-wrapper .swiper-slide, .-swiper4 .swiper-wrapper .swiper-slide {
  width: 300px;
}
@media screen and (max-width: 1023px) {
  .-swiper2 .swiper-wrapper .swiper-slide, .-swiper3 .swiper-wrapper .swiper-slide, .-swiper4 .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
.-swiper2 .swiper-wrapper .swiper-slide a.post-item, .-swiper3 .swiper-wrapper .swiper-slide a.post-item, .-swiper4 .swiper-wrapper .swiper-slide a.post-item {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 40px;
  border-top: 1px solid #f0f1f6;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  .-swiper2 .swiper-wrapper .swiper-slide a.post-item, .-swiper3 .swiper-wrapper .swiper-slide a.post-item, .-swiper4 .swiper-wrapper .swiper-slide a.post-item {
    width: auto;
    padding: 40px 10px;
  }
}
.-swiper2 .swiper-wrapper .swiper-slide a.post-item .fix, .-swiper3 .swiper-wrapper .swiper-slide a.post-item .fix, .-swiper4 .swiper-wrapper .swiper-slide a.post-item .fix {
  margin-bottom: 2rem;
}
.-swiper2 .swiper-wrapper .swiper-slide a.post-item .fix h4, .-swiper3 .swiper-wrapper .swiper-slide a.post-item .fix h4, .-swiper4 .swiper-wrapper .swiper-slide a.post-item .fix h4 {
  margin-bottom: 20px;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .-swiper2 .swiper-wrapper .swiper-slide a.post-item .fix h4, .-swiper3 .swiper-wrapper .swiper-slide a.post-item .fix h4, .-swiper4 .swiper-wrapper .swiper-slide a.post-item .fix h4 {
    font-size: 2rem;
  }
}
.-swiper2 .swiper-wrapper .swiper-slide a.post-item .fix h4 span, .-swiper3 .swiper-wrapper .swiper-slide a.post-item .fix h4 span, .-swiper4 .swiper-wrapper .swiper-slide a.post-item .fix h4 span {
  font-weight: normal;
}
.-swiper2 .swiper-wrapper .swiper-slide a.post-item .fix p, .-swiper3 .swiper-wrapper .swiper-slide a.post-item .fix p, .-swiper4 .swiper-wrapper .swiper-slide a.post-item .fix p {
  margin-bottom: 20px;
}
.-swiper2 .swiper-button-prev2, .-swiper2 .swiper-button-prev3,
.-swiper2 .swiper-button-next2, .-swiper2 .swiper-button-next3, .-swiper3 .swiper-button-prev2, .-swiper3 .swiper-button-prev3,
.-swiper3 .swiper-button-next2, .-swiper3 .swiper-button-next3, .-swiper4 .swiper-button-prev2, .-swiper4 .swiper-button-prev3,
.-swiper4 .swiper-button-next2, .-swiper4 .swiper-button-next3 {
  position: absolute;
  margin-top: -45px;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  height: 90px;
  width: 30px;
  color: #fff;
  -webkit-transition: opacity, width 0.3s ease-out;
  transition: opacity, width 0.3s ease-out;
  font-size: 1.4rem;
  background: #ee0979;
  opacity: 0.6;
}
.-swiper2 .swiper-button-prev2:after, .-swiper2 .swiper-button-prev3:after,
.-swiper2 .swiper-button-next2:after, .-swiper2 .swiper-button-next3:after, .-swiper3 .swiper-button-prev2:after, .-swiper3 .swiper-button-prev3:after,
.-swiper3 .swiper-button-next2:after, .-swiper3 .swiper-button-next3:after, .-swiper4 .swiper-button-prev2:after, .-swiper4 .swiper-button-prev3:after,
.-swiper4 .swiper-button-next2:after, .-swiper4 .swiper-button-next3:after {
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.-swiper2 .swiper-button-prev2:hover, .-swiper2 .swiper-button-prev3:hover,
.-swiper2 .swiper-button-next2:hover, .-swiper2 .swiper-button-next3:hover, .-swiper3 .swiper-button-prev2:hover, .-swiper3 .swiper-button-prev3:hover,
.-swiper3 .swiper-button-next2:hover, .-swiper3 .swiper-button-next3:hover, .-swiper4 .swiper-button-prev2:hover, .-swiper4 .swiper-button-prev3:hover,
.-swiper4 .swiper-button-next2:hover, .-swiper4 .swiper-button-next3:hover {
  opacity: 1;
  width: 50px;
}
.-swiper2 .swiper-button-prev2, .-swiper2 .swiper-button-prev3, .-swiper3 .swiper-button-prev2, .-swiper3 .swiper-button-prev3, .-swiper4 .swiper-button-prev2, .-swiper4 .swiper-button-prev3 {
  left: 0px;
}
.-swiper2 .swiper-button-prev2:after, .-swiper2 .swiper-button-prev3:after, .-swiper3 .swiper-button-prev2:after, .-swiper3 .swiper-button-prev3:after, .-swiper4 .swiper-button-prev2:after, .-swiper4 .swiper-button-prev3:after {
  content: "previous";
}
.-swiper2 .swiper-button-next2, .-swiper2 .swiper-button-next3, .-swiper3 .swiper-button-next2, .-swiper3 .swiper-button-next3, .-swiper4 .swiper-button-next2, .-swiper4 .swiper-button-next3 {
  right: 0px;
}
.-swiper2 .swiper-button-next2:after, .-swiper2 .swiper-button-next3:after, .-swiper3 .swiper-button-next2:after, .-swiper3 .swiper-button-next3:after, .-swiper4 .swiper-button-next2:after, .-swiper4 .swiper-button-next3:after {
  content: "next";
}
.-swiper2 .swiper-pagination2, .-swiper2 .swiper-pagination3, .-swiper2 .swiper-pagination4, .-swiper3 .swiper-pagination2, .-swiper3 .swiper-pagination3, .-swiper3 .swiper-pagination4, .-swiper4 .swiper-pagination2, .-swiper4 .swiper-pagination3, .-swiper4 .swiper-pagination4 {
  text-align: center;
}
.-swiper2 .swiper-pagination2 .swiper-pagination-bullet-active, .-swiper2 .swiper-pagination3 .swiper-pagination-bullet-active, .-swiper2 .swiper-pagination4 .swiper-pagination-bullet-active, .-swiper3 .swiper-pagination2 .swiper-pagination-bullet-active, .-swiper3 .swiper-pagination3 .swiper-pagination-bullet-active, .-swiper3 .swiper-pagination4 .swiper-pagination-bullet-active, .-swiper4 .swiper-pagination2 .swiper-pagination-bullet-active, .-swiper4 .swiper-pagination3 .swiper-pagination-bullet-active, .-swiper4 .swiper-pagination4 .swiper-pagination-bullet-active {
  background: #000;
}

/* ========================================================
Best Music
=========================================================*/
.-swiper4 .swiper-wrapper .swiper-slide {
  width: 350px;
  text-align: center;
}
.-swiper4 .swiper-wrapper .swiper-slide .openmodalmusic.js-openmodalmusic {
  display: block;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .-swiper4 .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
.-swiper4 .swiper-wrapper .swiper-slide .sp iframe.youtube-player {
  width: 100%;
}
.-swiper4 .swiper-pagination4 {
  margin-bottom: 40px;
}
.-swiper4 .swiper-pagination4 .swiper-pagination-bullet {
  background: #fff;
}
.-swiper4 .swiper-pagination4 .swiper-pagination-bullet-active {
  background: #fff;
}

/* ========================================================
Best Music:記事一覧
=========================================================*/
.musiclist-container {
  padding-bottom: 50px;
  background: #000;
  color: #fff;
  content-visibility: auto;
  contain-intrinsic-size: 620px;
}
@media screen and (max-width: 1023px) {
  .musiclist-container {
    padding-bottom: 20px;
  }
}
.musiclist-container a {
  color: #cfb896;
}
.musiclist-container > .inner {
  max-width: 1500px;
  margin: 0 auto;
}
.musiclist-container > .inner > .title {
  background: none;
  margin: auto;
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .musiclist-container > .inner > .title {
    padding: 20px 0;
  }
}
.musiclist-container .default-button {
  text-decoration: none;
}
.musiclist-container .default-button:hover {
  color: #fff;
}

/* ========================================================
広告領域
=========================================================*/
.ad-container {
  margin: 4rem auto;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: 310px;
}
@media screen and (max-width: 767px) {
  .ad-container {
    margin: 2rem auto;
    width: 100%;
  }
}
.ad-container.-gray {
  background: #f6f6f6;
}
.ad-container.-fullwidth {
  width: 100%;
  text-align: center;
}
.ad-container.-sidebar {
  margin: 0 auto 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ad-container iframe {
    width: 100%;
  }
}

/*#########################################################

モーダル

#########################################################*/
.modal-container {
  position: fixed;
  display: none;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 200px 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
@media screen and (max-width: 1023px) {
  .modal-container {
    z-index: 2500;
    padding: 10px 0;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.modal-container > .outer-container {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 750px;
  margin: auto;
  background: #000;
  border-radius: 8px;
}
@media (max-width: 1073px) {
  .modal-container > .outer-container {
    width: 90%;
  }
}
.modal-container > .outer-container .close-button {
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 1000;
}
.modal-container > .outer-container > .--js-youtube-modal .wp-block-embed__wrapper {
  padding: 50px 10px;
  text-align: center;
}

.--js-show-modal {
  display: block;
}

/* ========================================================
閉じるボタン(a,button要素)
=========================================================*/
.close-button {
  display: inline-block;
  width: 64px;
  height: 64px;
  text-indent: -9999px;
  border: 0;
  background-color: #000;
  border-radius: 32px;
  margin: 0;
  padding: 0;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  cursor: pointer;
}
.close-button::before, .close-button::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 14px;
  left: 30px;
  width: 4px;
  height: 36px;
  border: 0;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
.close-button::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.close-button::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ========================================================
ページトップに戻るボタン
=========================================================*/
.backtotop-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transition: bottom 0.2s ease-out;
  transition: bottom 0.2s ease-out;
  opacity: 0;
}
@media screen and (max-width: 1023px) {
  .backtotop-button {
    bottom: 10px;
    right: 5px;
  }
}
.backtotop-button.fadein {
  opacity: 1;
}
.backtotop-button:hover {
  opacity: 1;
  bottom: 34px;
}
@media screen and (max-width: 1023px) {
  .backtotop-button:hover {
    bottom: 10px;
  }
}
.backtotop-button:hover::after {
  background: #ee0979;
  -webkit-box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1023px) {
  .backtotop-button:hover::after {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.backtotop-button::before {
  border-color: #fff;
}
.backtotop-button::after {
  content: "";
  display: block;
  color: #fff;
  text-align: center;
  width: 60px;
  height: 60px;
  padding: 4px;
  background-color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.8) rotate(45deg);
      -ms-transform: scale(0.8) rotate(45deg);
          transform: scale(0.8) rotate(45deg);
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
}
@media screen and (max-width: 1023px) {
  .backtotop-button::after {
    width: 40px;
    height: 40px;
  }
}
.backtotop-button .arrow {
  top: 40px;
  left: 20px;
}
@media screen and (max-width: 1023px) {
  .backtotop-button .arrow {
    top: 30px;
    left: 15px;
  }
}
.backtotop-button .arrow::before {
  width: 20px;
  height: 20px;
  z-index: 1;
  border-color: #fff;
}
@media screen and (max-width: 1023px) {
  .backtotop-button .arrow::before {
    width: 10px;
    height: 10px;
  }
}

/* ========================================================
トピックパス
=========================================================*/
.breadcrumb-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 50px;
  padding: 0 40px;
  width: 100%;
  -webkit-box-flex: 2;
      -ms-flex: 2 0 auto;
          flex: 2 0 auto;
}
@media screen and (max-width: 1023px) {
  .breadcrumb-container {
    margin: 90px auto 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
  }
}
.breadcrumb-container a {
  margin-right: 10px;
  font-size: 1.4rem;
  text-decoration: none;
}
.breadcrumb-container a:before {
  content: "/";
  margin-right: 5px;
}
.breadcrumb-container a:first-child:before {
  content: "";
  margin-right: 0;
}
.breadcrumb-container a:hover {
  color: #ee0979;
}

/* ========================================================
お問い合わせ
=========================================================*/
.companypr-container {
  margin: 0 auto 100px;
  width: 80%;
  background: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.02) 0px 0px 10px 3px;
          box-shadow: rgba(0, 0, 0, 0.02) 0px 0px 10px 3px;
  content-visibility: auto;
  contain-intrinsic-size: 290px;
  /* ========================================================
  スライドアニメーションのバナー領域
  =========================================================*/
}
.companypr-container h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}
.companypr-container > .banner-container {
  border: none;
  background-color: #fff;
  color: #333;
}
.companypr-container > .banner-container.active {
  background-color: #fb7777;
  border-color: #333;
  color: #fff;
}
.companypr-container > .banner-container::before, .companypr-container > .banner-container::after {
  background-color: #fff;
}
.companypr-container > a {
  display: block;
  margin: 2rem auto;
  padding: 5rem 2rem;
  text-align: center;
  width: 100%;
  line-height: 2;
  text-decoration: none;
}
.companypr-container .-link-contact {
  margin: 2rem auto 0 auto;
  width: 200px;
  height: 60px;
  line-height: 60px;
  border: 1px solid #f0f1f6;
  z-index: 1000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: initial;
}
.companypr-container .-link-contact:hover .-openright:before {
  border-color: #fff;
}

/* ========================================================
アニメーション用クラス（グローバル）
=========================================================*/
.-slidebutton {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  position: relative;
  z-index: 2;
  border: 0.1rem solid #efefef;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.-slidebutton::before, .-slidebutton::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  top: 0;
  width: 50%;
  height: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.-slidebutton::before {
  right: 0;
}
.-slidebutton::after {
  left: 0;
}
.-slidebutton.active {
  background-color: #fff;
  border-color: #333;
  color: #333;
  text-decoration: none;
}
.-slidebutton.active::before, .-slidebutton.active::after {
  width: 0;
  background-color: #333;
}

/* ========================================================
category.pug:ラインアニメーション
=========================================================*/
a.lineanime-button, a.lineanime-button:visited {
  position: relative;
  display: inline-block;
  padding: 0 0 10px 0;
  color: #000;
  text-decoration: none;
  text-align: left;
}
a.lineanime-button:hover, a.lineanime-button:visited:hover {
  color: #ee0979;
}
a.lineanime-button:hover span::after, a.lineanime-button:visited:hover span::after {
  width: 100%;
}
a.lineanime-button::after, a.lineanime-button:visited::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1b1b1b;
}
a.lineanime-button span, a.lineanime-button:visited span {
  -webkit-transition: color 0.6s;
  transition: color 0.6s;
}
a.lineanime-button span::after, a.lineanime-button:visited span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #ee0979;
  -webkit-transition: width 0.4s ease-out;
  transition: width 0.4s ease-out;
  z-index: 1;
}

/* ========================================================
category/category_parentで使われるヒーローエリアのタイトル
=========================================================*/
.trbmeta-container {
  position: absolute;
  top: 30px;
  right: 15%;
  max-width: 650px;
  color: #dcdcdc;
  /* ========================================================
  title/read/button メタ情報
  =========================================================*/
}
@media screen and (max-width: 1023px) {
  .trbmeta-container {
    position: relative;
    top: 0;
    right: auto;
  }
}
.trbmeta-container > .title {
  margin-bottom: 100px;
  font-size: 13rem;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .trbmeta-container > .title {
    margin-bottom: 40px;
    font-size: 6rem;
    line-height: 1;
  }
}
.trbmeta-container .outer {
  margin-bottom: 20px;
  width: 100%;
}
.trbmeta-container .outer p {
  display: inline;
  margin-bottom: 30px;
  background: #1b1b1b;
}
.trbmeta-container .default-button {
  margin: 30px 0;
}
.trbmeta-container .-right:before {
  border-color: #fff;
}
.trbmeta-container .-right:after {
  border-color: #fff;
}
.trbmeta-container.-swiper {
  position: relative;
  right: initial;
  top: initial;
  margin: 50px 0;
}
.trbmeta-container.-swiper h2 {
  margin-bottom: 50px;
  font-size: 10rem;
  line-height: 1;
  color: #fff;
  opacity: 0.2;
  font-weight: bold;
}
.trbmeta-container.-swiper p {
  background-color: #a70655;
}
.trbmeta-container.-swiper a.lineanime-button {
  margin-top: 20px;
  color: #fff;
}
.trbmeta-container.-swiper a.lineanime-button::after {
  background-color: #fff;
}

/* ========================================================
横並びレイアウト
=========================================================*/
ul.horizontal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  ul.horizontal-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: auto;
  }
}

/* ========================================================
横並び一覧
=========================================================*/
.horizontal-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
.horizontal-list > li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 50px;
}
.horizontal-list > li:last-child {
  margin-right: 0;
}
.horizontal-list > li > a {
  display: block;
  text-decoration: none;
}

.amazon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 60px 0;
}
.amazon-container .btn-kindle {
  display: block;
  background: #E82561;
  color: #fff;
  padding: 20px 80px;
  text-decoration: none;
  margin: 0 0 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .amazon-container .btn-kindle {
    padding: 20px;
  }
}
.amazon-container .btn-kindle:hover {
  background: #16C47F;
}
.amazon-container .text-subtitle {
  font-weight: bold;
}
.amazon-container .text-sup {
  color: #999999;
  font-size: 1.4rem;
}

.-serif {
  font-family: "Playfair Display", "游明朝", YuMincho, -serif;
}

/*#########################################################

読み込み

#########################################################*/
/* ========================================================
変数の上書き
=========================================================*/
.label-list a, .comment-container .comment-body .reply a.comment-reply-link {
  display: inline-block;
  border-radius: 2px;
  padding: 8px 10px;
  white-space: nowrap;
  border: 1px solid #959595;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}

.comment-container .comment-body .reply a.comment-reply-link:hover {
  border: 1px solid #f0f1f6;
  color: #fff;
  background: #252f39;
}

/* ========================================================
記事ヘッダ
=========================================================*/
.entry-header {
  text-align: center;
  z-index: 1;
  /* ========================================================
  アニメーションタイトル
  =========================================================*/
}
@media screen and (max-width: 1023px) {
  .entry-header {
    height: auto;
    padding: 0 20px;
  }
}
.entry-header > .categorytitle {
  margin: 0 auto 50px;
  max-width: 1500px;
  font-size: 10rem;
  font-weight: bold;
  letter-spacing: 0.064em;
  line-height: 1;
  color: #fff;
  opacity: 0.6;
}
@media screen and (max-width: 1023px) {
  .entry-header > .categorytitle {
    font-size: 6rem;
    color: #252f39;
  }
}
.entry-header > .entrytitle {
  margin-bottom: 50px;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  font-size: 4rem;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .entry-header > .entrytitle {
    padding-bottom: 2rem;
  }
}
.entry-header > .entrytitle .--js-entrytitle .--js-charanime {
  display: inline-block;
  line-height: 1em;
}

.entrymeta-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 80px;
  width: 100%;
  -webkit-box-flex: 3;
      -ms-flex: 3 0 auto;
          flex: 3 0 auto;
}
@media screen and (max-width: 1023px) {
  .entrymeta-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
}
.entrymeta-container .entrydate {
  margin-bottom: 30px;
}
.entrymeta-container .relatedlink-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .entrymeta-container .relatedlink-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.entrymeta-container .relatedlink-list .pocategory,
.entrymeta-container .relatedlink-list .potag {
  margin-right: 10px;
}
.entrymeta-container .relatedlink-list a {
  display: block;
  margin: 0 10px 10px;
  padding: 0 10px;
  background: #ee0979;
  color: #fff;
  text-decoration: none;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .entrymeta-container .relatedlink-list a {
    margin-bottom: 10px;
  }
}
.entrymeta-container .relatedlink-list a:hover {
  background: #a8df65;
}

/*#########################################################

記事ページ

#########################################################*/
/* ========================================================
entry-container
=========================================================*/
.entry-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1500px;
  margin: auto;
  -webkit-box-shadow: 5px -15px 30px -30px rgba(0, 0, 0, 0.4);
          box-shadow: 5px -15px 30px -30px rgba(0, 0, 0, 0.4);
  background: #fff;
  font-size: 1.8rem;
  /* ========================================================
  右カラム
  =========================================================*/
}
@media screen and (max-width: 1023px) {
  .entry-container {
    padding: 40px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.entry-container::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, right top, left top, from(#8f82bc), to(#ee0979));
  background: linear-gradient(to left, #8f82bc, #ee0979);
}
.entry-container > .inner {
  width: calc(100% - 80px - 300px);
  -webkit-box-flex: 2;
      -ms-flex: 2 1 auto;
          flex: 2 1 auto;
  margin-right: 80px;
  padding: 0;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Helvetica Neue", Helvetica, Arial, "メイリオ", Meiryo, sans-serif;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .entry-container > .inner {
    margin-right: 0;
    width: 100%;
  }
}
.entry-container > .inner > .prevnext-container {
  margin-bottom: 40px;
  width: 100%;
}
.entry-container > .inner > .entry {
  margin-bottom: 100px;
}
.entry-container > .inner > .entry a[href^="http://"]:before, .entry-container > .inner > .entry a[href^="https://"]:before {
  font-family: "_smartfont";
  content: "\e804";
  margin-right: 3px;
}
.entry-container > .inner > .socialiconsingle-container {
  margin-bottom: 100px;
  width: 100%;
}
.entry-container > .inner > .comment-container {
  margin-bottom: 100px;
}
.entry-container .sidebar-container {
  width: 300px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media screen and (max-width: 1023px) {
  .entry-container .sidebar-container {
    margin: 2rem auto;
    width: 95%;
  }
}

/*#########################################################

記事内の装飾

#########################################################*/
.entry-container > .inner > .entry {
  /* table */
  /* func-format					##################################### */
  /* func-header */
  /* func-format */
  /* func-compat */
  /* func-detail */
}
.entry-container > .inner > .entry iframe {
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  .entry-container > .inner > .entry iframe {
    width: 100%;
  }
}
.entry-container > .inner > .entry ol,
.entry-container > .inner > .entry ul {
  list-style: none;
  margin: 3rem 1rem 3rem 1rem;
  line-height: 1.8;
}
.entry-container > .inner > .entry ol li,
.entry-container > .inner > .entry ul li {
  position: relative;
  margin-bottom: 2rem;
  padding: 0;
  margin: 7px 0;
}
.entry-container > .inner > .entry ol li::marker,
.entry-container > .inner > .entry ul li::marker {
  color: #ee0979;
  font-weight: bold;
}
.entry-container > .inner > .entry ul li {
  padding-left: 20px;
}
.entry-container > .inner > .entry ul li::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ee0979;
}
.entry-container > .inner > .entry ol {
  list-style: decimal inside;
}
.entry-container > .inner > .entry p {
  margin: 2rem 0;
}
.entry-container > .inner > .entry pre {
  line-height: 1.5;
  white-space: pre-wrap;
  font-family: "Playfair Display", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Helvetica Neue", Helvetica, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
}
.entry-container > .inner > .entry dl {
  line-height: 1.8;
  padding: 3rem;
  border-radius: 3px;
  border: 1px solid #fff;
  margin-bottom: 4rem;
}
.entry-container > .inner > .entry dl dt {
  font-weight: bold;
}
.entry-container > .inner > .entry dl dd {
  margin-bottom: 1rem;
  border-bottom: 1px dotted #fff;
  padding-bottom: 0.5rem;
}
.entry-container > .inner > .entry dl dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.entry-container > .inner > .entry h2,
.entry-container > .inner > .entry h3,
.entry-container > .inner > .entry h4,
.entry-container > .inner > .entry h5,
.entry-container > .inner > .entry h6 {
  font-weight: bold;
  line-height: 1.8;
}
.entry-container > .inner > .entry h2 {
  margin: 80px 0 20px 0;
  padding-bottom: 2px;
  border-bottom: 2px solid #252f39;
}
.entry-container > .inner > .entry h3 {
  margin: 70px 0 20px 0;
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
}
.entry-container > .inner > .entry h4 {
  margin: 60px 0 20px 0;
}
.entry-container > .inner > .entry h5,
.entry-container > .inner > .entry h6 {
  margin: 50px 0 20px 0;
}
.entry-container > .inner > .entry h1 + h2,
.entry-container > .inner > .entry h2 + h3,
.entry-container > .inner > .entry h3 + h4,
.entry-container > .inner > .entry h4 + h5,
.entry-container > .inner > .entry h5 + h6 {
  margin-top: 2rem;
}
.entry-container > .inner > .entry dl + h5,
.entry-container > .inner > .entry dl + h6,
.entry-container > .inner > .entry ul + h5,
.entry-container > .inner > .entry ul + h6,
.entry-container > .inner > .entry ol + h5,
.entry-container > .inner > .entry ol + h6 {
  margin-bottom: 0.5rem;
}
.entry-container > .inner > .entry img {
  max-width: 100%;
  height: auto;
}
.entry-container > .inner > .entry table {
  margin: 0 auto 2rem;
  width: 100%;
}
.entry-container > .inner > .entry table td,
.entry-container > .inner > .entry table th {
  padding: 0.5rem 1rem;
  border: 1px solid #b0c7d2;
  line-height: 1.8;
}
.entry-container > .inner > .entry table td.-nowrap,
.entry-container > .inner > .entry table th.-nowrap {
  white-space: nowrap;
}
.entry-container > .inner > .entry table th {
  background: #b0c7d2;
  text-align: center;
  color: #fff;
  font-weight: normal;
}
.entry-container > .inner > .entry table td.td_strong {
  font-weight: bold;
}
.entry-container > .inner > .entry table th {
  text-align: left;
}
.entry-container > .inner > .entry table .box-config div,
.entry-container > .inner > .entry table .box-config p,
.entry-container > .inner > .entry table .box-config table {
  width: 100%;
}
.entry-container > .inner > .entry table.table-format02 td,
.entry-container > .inner > .entry table.table-format02 th {
  border: none;
  background-color: inherit;
  font-weight: normal;
  text-align: left;
}
.entry-container > .inner > .entry table.table-format02 tr {
  background: #fff;
}
.entry-container > .inner > .entry table.table-format02 tr:nth-child(2n+1) {
  background: #f5f5f5;
}
.entry-container > .inner > .entry .tableformat01 {
  margin-bottom: 50px;
}
.entry-container > .inner > .entry .h-syntax,
.entry-container > .inner > .entry .h-output,
.entry-container > .inner > .entry .h-example {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}
.entry-container > .inner > .entry .h-syntax + pre, .entry-container > .inner > .entry .h-syntax + p, .entry-container > .inner > .entry .h-syntax + figure,
.entry-container > .inner > .entry .h-output + pre,
.entry-container > .inner > .entry .h-output + p,
.entry-container > .inner > .entry .h-output + figure,
.entry-container > .inner > .entry .h-example + pre,
.entry-container > .inner > .entry .h-example + p,
.entry-container > .inner > .entry .h-example + figure {
  margin-top: 0 !important;
}
.entry-container > .inner > .entry .h-output {
  margin-top: 1rem;
}
.entry-container > .inner > .entry .h-codepen span {
  background: #ef767f;
  color: #fff;
  margin-right: 0.5rem;
  padding: 0 0.5rem;
  border-radius: 3px;
  font-weight: normal;
}
.entry-container > .inner > .entry .h-code,
.entry-container > .inner > .entry h5.h-html,
.entry-container > .inner > .entry h5.h-javascript,
.entry-container > .inner > .entry h5.h-css,
.entry-container > .inner > .entry h5.h-scss,
.entry-container > .inner > .entry h5.h-pug {
  margin: 0;
  color: cyan;
  padding: 0 1rem;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 4;
  background: -webkit-gradient(linear, left top, right top, from(#29323c), to(#485563));
  background: linear-gradient(to right, #29323c, #485563);
}
.entry-container > .inner > .entry .h-code + pre, .entry-container > .inner > .entry .h-code + p, .entry-container > .inner > .entry .h-code + figure,
.entry-container > .inner > .entry h5.h-html + pre,
.entry-container > .inner > .entry h5.h-html + p,
.entry-container > .inner > .entry h5.h-html + figure,
.entry-container > .inner > .entry h5.h-javascript + pre,
.entry-container > .inner > .entry h5.h-javascript + p,
.entry-container > .inner > .entry h5.h-javascript + figure,
.entry-container > .inner > .entry h5.h-css + pre,
.entry-container > .inner > .entry h5.h-css + p,
.entry-container > .inner > .entry h5.h-css + figure,
.entry-container > .inner > .entry h5.h-scss + pre,
.entry-container > .inner > .entry h5.h-scss + p,
.entry-container > .inner > .entry h5.h-scss + figure,
.entry-container > .inner > .entry h5.h-pug + pre,
.entry-container > .inner > .entry h5.h-pug + p,
.entry-container > .inner > .entry h5.h-pug + figure {
  margin-top: 0 !important;
}
.entry-container > .inner > .entry .prettyprint {
  padding-top: 10px !important;
  margin: 50px 0 !important;
}
@media screen and (max-width: 767px) {
  .entry-container > .inner > .entry .prettyprint {
    margin: 30px 0 !important;
  }
}
.entry-container > .inner > .entry .prettyprint li::before {
  content: none;
}
.entry-container > .inner > .entry .box-syntax {
  margin: 0 0 5rem;
  padding: 1rem;
  width: 100%;
  border: 1px solid #f0f1f6;
  border-radius: 5px;
  line-height: 1.8;
}
.entry-container > .inner > .entry .box-example {
  margin-bottom: 4rem;
  padding: 1rem;
  border: 1px solid #f0f1f6;
}
.entry-container > .inner > .entry .box-movie {
  padding: 1rem;
  background: #000;
  color: #fff;
  text-align: center;
}
.entry-container > .inner > .entry .box-photo {
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
  overflow: hidden;
}
.entry-container > .inner > .entry .box-comment {
  margin: 5rem 0;
  padding: 3rem;
  border: 1px solid #f0f1f6;
  border-radius: 5px;
  color: #111;
  line-height: 1.8;
}
.entry-container > .inner > .entry .box-comment h1,
.entry-container > .inner > .entry .box-comment h2,
.entry-container > .inner > .entry .box-comment h3,
.entry-container > .inner > .entry .box-comment h4,
.entry-container > .inner > .entry .box-comment h5 {
  margin: 0 !important;
  font-size: 2rem;
  border: none;
}
.entry-container > .inner > .entry .box-browser {
  margin: 5rem 0;
  padding: 1rem;
  border: 1px solid #ddd;
  letter-spacing: 0.1em;
}
.entry-container > .inner > .entry .box-config,
.entry-container > .inner > .entry .box-program,
.entry-container > .inner > .entry .box-shell {
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.entry-container > .inner > .entry .box-shell {
  margin-bottom: 1rem;
  padding: 1rem;
  width: 100%;
  background: #252f39;
  color: #fff;
  overflow: hidden;
}
.entry-container > .inner > .entry .box-shell span {
  padding-left: 17px;
  background: url("common/i/wrap/icon.gif") -24px -504px no-repeat;
}
.entry-container > .inner > .entry .box-program {
  display: block;
  margin-bottom: 1rem;
  padding: 1rem;
  width: 100%;
  background: url("common/i/wrap/bg_program.gif") repeat-y #fff;
}
.entry-container > .inner > .entry .box-config {
  margin-bottom: 1rem;
  padding: 1rem;
  width: 100%;
  background: #f3f3f3;
  border-left: 5px solid #999;
  line-height: 1.8;
}
.entry-container > .inner > .entry .box-config-table {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f3f3f3;
  border-left: 5px solid #999;
}
.entry-container > .inner > .entry .img {
  text-align: center;
}
.entry-container > .inner > .entry .img img {
  max-width: 90%;
}
.entry-container > .inner > .entry .img a.box-source {
  font-size: 0.8rem;
  color: #959595;
}
.entry-container > .inner > .entry .fig-style,
.entry-container > .inner > .entry .wp-block-image {
  margin: 80px auto;
}
.entry-container > .inner > .entry div.func-header {
  margin-top: 20px;
}
.entry-container > .inner > .entry div#content div.func-header h2 {
  margin-top: 10px;
}
.entry-container > .inner > .entry div.func-tree {
  margin-left: 20px;
}
.entry-container > .inner > .entry .func-format {
  margin: 20px auto;
  width: 90%;
  padding: 10px 15px;
  background: #f3f3f3;
  border-left: 5px solid #999;
}
.entry-container > .inner > .entry .func-format-none {
  margin: 20px 0 10px 20px;
  height: 0;
}
.entry-container > .inner > .entry .func-compat {
  margin-left: 20px;
  padding-bottom: 10px;
}
.entry-container > .inner > .entry .func-compat span {
  display: block;
  float: left;
  width: 15px;
  height: 15px;
}
.entry-container > .inner > .entry .func-detail {
  clear: both;
}
.entry-container > .inner > .entry .func-detail hr {
  margin-top: 20px;
  margin-left: 20px;
  height: 3px;
  background-color: #fff;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #f3f3f3;
  color: #fff;
}
.entry-container > .inner > .entry .ul-reservedwords {
  list-style: none;
}
.entry-container > .inner > .entry .ul-reservedwords li {
  width: 30%;
}
.entry-container > .inner > .entry .underline {
  background-image: -webkit-gradient(linear, left top, right top, from(#24fe41), to(#fdfc47));
  background-image: linear-gradient(to right, #24fe41, #fdfc47);
  background-repeat: no-repeat;
  background-size: 100% 10%;
  background-position: bottom;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.entry-container > .inner > .entry .lineart {
  line-height: 1;
}

/* ========================================================
右カラム
=========================================================*/
/* サブカラム */
.sidebar-container > .widget-container {
  margin-bottom: 5rem;
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  .sidebar-container > .widget-container {
    margin-bottom: 0;
  }
}
.sidebar-container > .widget-container ul {
  margin-bottom: 2rem;
}
.sidebar-container > .widget-container > .title {
  margin: 0 0 3rem;
  font-size: 2rem;
  line-height: 1.2;
}
.sidebar-container > .widget-container > .title span {
  font-size: 1.4rem;
  color: #252f39;
}
.sidebar-container > .widget-container.-category ul:first-child {
  margin-bottom: 4rem;
}
.sidebar-container > .widget-container.-category ul, .sidebar-container > .widget-container.-archives ul {
  list-style: none;
  border: 1px solid #fff;
}
.sidebar-container > .widget-container.-category ul li, .sidebar-container > .widget-container.-archives ul li {
  border-bottom: 1px solid #fff;
}
.sidebar-container > .widget-container.-category ul li:last-child, .sidebar-container > .widget-container.-archives ul li:last-child {
  border: none;
}
.sidebar-container > .widget-container.-category ul li a, .sidebar-container > .widget-container.-archives ul li a {
  display: block;
  padding: 1.5rem 0 1.5rem 1rem;
  text-decoration: none;
  opacity: 1;
}
.sidebar-container > .widget-container.-category ul li a:hover, .sidebar-container > .widget-container.-archives ul li a:hover {
  background: -webkit-gradient(linear, left top, right top, from(#ff6a00), to(#ee0979));
  background: linear-gradient(to right, #ff6a00, #ee0979);
  color: #fff;
}

/* ========================================================
記事エントリのページナビゲーション
=========================================================*/
.prevnext-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .prevnext-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.prevnext-container .previous-button a,
.prevnext-container .next-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  line-height: 2;
}
.prevnext-container .previous-button a:hover i,
.prevnext-container .next-button a:hover i {
  background-color: #ee0979;
  border: 1px solid #ee0979;
  color: #fff;
}
.prevnext-container .previous-button a span,
.prevnext-container .next-button a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prevnext-container .previous-button a i,
.prevnext-container .next-button a i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3px;
  width: 3rem;
  height: 3rem;
  border: 1px solid #959595;
  border-radius: 2px;
  font-size: 0.8rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.prevnext-container .previous-button a i {
  margin-right: 10px;
}
.prevnext-container .next-button a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.prevnext-container .next-button a i {
  margin-left: 10px;
}

/* ========================================================
コメント
=========================================================*/
.comment-container {
  margin-top: 4rem;
}
@media screen and (max-width: 1023px) {
  .comment-container input {
    width: 100%;
  }
}
.comment-container .title {
  margin-bottom: 20px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  line-height: 3;
}
.comment-container ol.comment-list {
  list-style: none;
  line-height: 1.8;
}
.comment-container ol.comment-list li {
  margin-bottom: 20px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
.comment-container .comment-body {
  margin: 50px auto;
}
.comment-container .comment-body .comment-meta .comment-author {
  color: #959595;
}
.comment-container .comment-body .comment-meta .comment-author .says {
  display: none;
}
.comment-container .comment-body .comment-meta .comment-author .avatar {
  margin-right: 1rem;
  border-radius: 50%;
  float: left;
  vertical-align: middle;
}
.comment-container .comment-body .comment-meta .comment-metadata {
  font-size: 1.4rem;
}
.comment-container .comment-body .comment-meta .comment-metadata a {
  color: #959595;
}
.comment-container .comment-body .comment-meta .comment-metadata .edit-link {
  margin-left: 1rem;
}
.comment-container .comment-body .comment-content {
  margin: 30px 0;
}
.comment-container .comment-body .reply {
  margin-bottom: 50px;
}
.comment-container .comment-body .reply a.comment-reply-link {
  width: 100%;
}
.comment-container .comment-respond .comment-reply-title {
  font-size: 1.6rem;
}
.comment-container .comment-respond textarea {
  width: 100%;
}
.comment-container .comment-respond .submit {
  width: 100%;
  line-height: 5;
}
.comment-container .comment-respond .submit:hover {
  background: #000;
  color: #fff;
}

/* ========================================================
コメントを残す
=========================================================*/
.commentrespond-container .title {
  display: none;
}
.commentrespond-container .comment-textarea textarea {
  width: 100%;
}
.commentrespond-container .submit {
  width: 100%;
  height: 8rem;
  background-color: #252f39;
  border: 1px solid #252f39;
  color: #fff;
  -webkit-transition: border-color, background-color 0.3s ease-out;
  transition: border-color, background-color 0.3s ease-out;
}
.commentrespond-container .submit:hover {
  border-color: #ee0979;
  background: #ee0979;
}
.commentrespond-container label {
  display: inline-block;
}

/* ========================================================
タグクラウド
=========================================================*/
.label-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.label-list a {
  margin: 0 5px 5px 0;
  border-color: #fff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.label-list a:hover {
  color: #fff;
  background-color: #ee0979;
  border-color: #ee0979;
}

/*#########################################################

共通設定の変更

#########################################################*/
body {
  background: #fbf2f2;
}
@media screen and (max-width: 1023px) {
  body {
    background-image: url(/wp-content/themes/smart-two/common/img/single/bg_sp.jpg);
    background-size: cover;
  }
}

/* ========================================================
ヘッダ
=========================================================*/
.site-header {
  background: none;
}
.site-header.is-small {
  background: #000;
  opacity: 0.85;
}
.site-header.is-small .sitelogo a .logosvg .logopath {
  fill: #fff !important;
}
@media screen and (max-width: 1023px) {
  .site-header {
    background: #000;
    opacity: 0.85;
  }
  .site-header .sitelogo a .logosvg .logopath {
    fill: #fff !important;
  }
}

.entry-header > .categorytitle {
  opacity: 1;
}

.sidebar-container > .widget-container {
  background-color: initial;
}

.sidebar-container > .widget-container.-category ul, .sidebar-container > .widget-container.-archives ul {
  border: none;
}

.entry-container::before {
  background: none;
}

.main-container {
  padding: 0 20px;
}
@media screen and (max-width: 1023px) {
  .main-container {
    padding: 0;
  }
}
.main-container .entry-header {
  margin: auto;
  width: 100%;
  max-width: 1000px;
}
.main-container .entry-container {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: initial;
}
.main-container .entry-container > .inner > .entry {
  font-size: 2rem;
}
@media screen and (max-width: 1023px) {
  .main-container .entry-container > .inner > .entry {
    font-size: 1.8rem;
  }
}
.main-container .entry-container > .inner > .entry h3 {
  border-bottom: 1px solid #ddd;
}
.main-container .entrymeta-container {
  margin-bottom: 0;
}

.sidebar-container > .widget-container.-category ul li, .sidebar-container > .widget-container.-archives ul li {
  border-bottom: none;
}

/* ========================================================
Table of Contents Plus
=========================================================*/
#toc_container {
  margin: auto auto 50px;
  background: #fff;
  border: 1px solid #efefef;
  width: 99%;
}
#toc_container li::before {
  content: none;
}

#toc_container li a {
  display: block;
  padding: 0.5em 0;
  border-top: 1px dotted #ddd;
}

.toc_list li {
  line-height: 2;
}
/*# sourceMappingURL=single_science.css.map */