@charset "UTF-8";
/*------------------------------------------------------------
  基本セット
------------------------------------------------------------*/
/*------------------------------------------------------------
  functions
------------------------------------------------------------*/
/*------------------------------------------------------------
  reset.cssをカスタマイズしたもの
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/earlyaccess/notosansjp.css");
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
@import url("https://fonts.googleapis.com/css?family=Oswald");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

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

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

input,
button,
select,
optgroup,
option,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

button, input, select {
  overflow: visible;
}

button, select {
  text-transform: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  background-color: transparent;
}

a:active,
a:hover {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/*------------------------------------------------------------
  このサイト用のセッティング
------------------------------------------------------------*/
/*------------------------------------------------------------
  vars
------------------------------------------------------------*/
/*------------------------------------------------------------
  フォームパーツのリセット
------------------------------------------------------------*/
/*
  input（ラジオボタン、チェックボックス以外）、textareaの設定
*/
input:not([type="radio"]):not([type="checkbox"]), textarea, select {
  margin: 0;
  padding: 5px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block;
  outline: none;
  box-sizing: border-box;
  cursor: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}

input::-placeholder, textarea::-placeholder {
  color: #999;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/*
  ラジオボタンの設定
*/
input[type="radio"] {
  position: absolute;
  visibility: hidden;
}

input[type="radio"] + span {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 20px;
  cursor: pointer;
}

input[type="radio"] + span::before,
input[type="radio"] + span::after {
  position: absolute;
  content: '';
  top: 50%;
  border-radius: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

input[type="radio"] + span::before {
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -6px;
  background: #f3f3f3;
  border: 1px solid #ccc;
}

input[type="radio"] + span:hover::before {
  background: #fff;
}

input[type="radio"] + span::after {
  opacity: 0;
  left: 3px;
  width: 8px;
  height: 8px;
  margin-top: -3px;
  background: red;
  -webkit-transform: scale(2);
  transform: scale(2);
}

input[type="radio"]:checked + span::before {
  background: #fff;
  border: 1px solid red;
}

input[type="radio"]:checked + span::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*
  チェックボックスの設定
*/
input[type="checkbox"] + span {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 22px;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}

input[type="checkbox"] + span::before,
input[type="checkbox"] + span::after {
  position: absolute;
  content: '';
  -webkit-transition: all .2s;
  transition: all .2s;
}

input[type="checkbox"] + span::before {
  top: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  background: #FFF;
  border: 1px solid #CCC;
  border-radius: 4px;
}

input[type="checkbox"] + span::after {
  opacity: 0;
  top: 50%;
  left: 2px;
  width: 11px;
  height: 6px;
  margin-top: -5px;
  border-left: 2px solid #CCC;
  border-bottom: 2px solid #CCC;
  -webkit-transform: rotate(-45deg) scale(0.5);
  transform: rotate(-45deg) scale(0.5);
}

input[type="checkbox"] + span:hover::before {
  background: #f4f4f4;
}

input[type="checkbox"]:checked + span::before {
  background: #fff;
  border: 1px solid #CCC;
}

input[type="checkbox"]:checked + span::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}

/*
  セレクトボックスの設定
*/
.selectLabel {
  display: block;
  position: relative;
}

.selectLabel:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 10px;
  margin-top: -5px;
  background: url(/assets/images/common/icon_select.svg) no-repeat center;
  background-size: auto 10px;
  content: "";
  pointer-events: none;
}

@media screen and (min-width: 1025px) {
  .selectLabel:after {
    width: 12px;
    height: 20px;
    margin-top: -10px;
    background-size: auto 20px;
  }
}

.selectLabel select {
  padding: 5px;
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  position: relative;
  color: #3D3937;
  cursor: pointer;
}

.selectLabel select::-ms-expand {
  display: none;
}

/*
  ボタンの設定
*/
button {
  -webkit-width: max-content;
  -moz-width: max-content;
  width: max-content;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.inputFileLabel {
  -webkit-width: max-content;
  -moz-width: max-content;
  width: max-content;
  background: linear-gradient(to bottom, #F6F6F6, #DEDEDE);
  border: 1px solid #A1A1A1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.inputFileLabel :hover {
  cursor: pointer;
}

.inputFileLabel input {
  display: none;
}

/*------------------------------------------------------------
  setting
------------------------------------------------------------*/
body {
  color: #3D3937;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.75;
}

@media screen and (min-width: 1025px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #3D3937;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp {
    display: none !important;
  }
}

/*------------------------------------------------------------
  プラグイン用のcss
------------------------------------------------------------*/
/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/**
 * Swiper 4.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 14, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: 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 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

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

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

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

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

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.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-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.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-slide-shadow-bottom {
  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: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), 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: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), 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: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), 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: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

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

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

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

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

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

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

/* Bullets */
.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: #007aff;
}

.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: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -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: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

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

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

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  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-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

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

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

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

/* Scrollbar */
.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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

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

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

/* Preloader */
.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 steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-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);
  }
}

/* a11y */
.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;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-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-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  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-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/*
  カスタマイズ
*/
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: #666;
}

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

/* http://prismjs.com/download.html?themes=prism-twilight&languages=markup+css+clike+javascript&plugins=line-numbers+toolbar+copy-to-clipboard */
/**
 * prism.js Twilight theme
 * Based (more or less) on the Twilight theme originally of Textmate fame.
 * @author Remy Bach
 */
code[class*="language-"],
pre[class*="language-"] {
  color: white;
  background: none;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  text-align: left;
  text-shadow: 0 -.1em .2em black;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  border: none;
}

pre[class*="language-"],
:not(pre) > code[class*="language-"] {
  background: #141414;
  /* #141414 */
}

/* Code blocks */
pre[class*="language-"] {
  /*   border-radius: .5em;
  border: .3em solid hsl(0, 0%, 33%); */
  box-shadow: 1px 1px .5em black inset;
  margin: .5em 0;
  overflow: auto;
  /*   padding: 1em; */
}

pre[class*="language-"]::-moz-selection {
  /* Firefox */
  background: #27292a;
  /* #282A2B */
}

pre[class*="language-"]::selection {
  /* Safari */
  background: #27292a;
  /* #282A2B */
}

/* Text Selection colour */
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
  text-shadow: none;
  background: rgba(237, 237, 237, 0.15);
  /* #EDEDED */
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
  text-shadow: none;
  background: rgba(237, 237, 237, 0.15);
  /* #EDEDED */
}

/* Inline code */
:not(pre) > code[class*="language-"] {
  border-radius: .3em;
  border: 0.13em solid #545454;
  /* #545454 */
  box-shadow: 1px 1px .3em -.1em black inset;
  padding: .15em .2em .05em;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #787878;
  /* #777777 */
}

.token.punctuation {
  opacity: .7;
}

.namespace {
  opacity: .7;
}

.token.tag,
.token.boolean,
.token.number,
.token.deleted {
  color: #cf694a;
  /* #CF6A4C */
}

.token.keyword,
.token.property,
.token.selector,
.token.constant,
.token.symbol,
.token.builtin {
  color: #f9ee9a;
  /* #F9EE98 */
}

.token.attr-name,
.token.attr-value,
.token.string,
.token.char,
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable,
.token.inserted {
  color: #919e6b;
  /* #8F9D6A */
}

.token.atrule {
  color: #7386a5;
  /* #7587A6 */
}

.token.regex,
.token.important {
  color: #e9c163;
  /* #E9C062 */
}

.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

pre[data-line] {
  padding: 1em 0 1em 3em;
  position: relative;
}

/* Markup */
.language-markup .token.tag,
.language-markup .token.attr-name,
.language-markup .token.punctuation {
  color: #ad895c;
  /* #AC885B */
}

/* Make the tokens sit above the line highlight so the colours don't look faded. */
.token {
  position: relative;
  z-index: 1;
}

.line-highlight {
  background: rgba(84, 84, 84, 0.25);
  /* #545454 */
  background: linear-gradient(to right, rgba(84, 84, 84, 0.1) 70%, rgba(84, 84, 84, 0));
  /* #545454 */
  border-bottom: 1px dashed #545454;
  /* #545454 */
  border-top: 1px dashed #545454;
  /* #545454 */
  left: 0;
  line-height: inherit;
  margin-top: 0.75em;
  /* Same as .prism’s padding-top */
  padding: inherit 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  white-space: pre;
  z-index: 0;
}

.line-highlight:before,
.line-highlight[data-end]:after {
  background-color: #8794a6;
  /* #8794A6 */
  border-radius: 999px;
  box-shadow: 0 1px white;
  color: #f5f2f0;
  /* #F5F2F0 */
  content: attr(data-start);
  font: bold 65%/1.5 sans-serif;
  left: .6em;
  min-width: 1em;
  padding: 0 .5em;
  position: absolute;
  text-align: center;
  text-shadow: none;
  top: .4em;
  vertical-align: .3em;
}

.line-highlight[data-end]:after {
  bottom: .4em;
  content: attr(data-end);
  top: auto;
}

pre.line-numbers {
  position: relative;
  padding-left: 3.8em;
  counter-reset: linenumber;
}

pre.line-numbers > code {
  position: relative;
}

.line-numbers .line-numbers-rows {
  position: absolute;
  pointer-events: none;
  top: 0;
  font-size: 100%;
  left: -3.8em;
  width: 3em;
  /* works for line-numbers below 1000 lines */
  letter-spacing: -1px;
  border-right: 1px solid #999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.line-numbers-rows > span {
  pointer-events: none;
  display: block;
  counter-increment: linenumber;
}

.line-numbers-rows > span:before {
  content: counter(linenumber);
  color: #999;
  display: block;
  padding-right: 0.8em;
  text-align: right;
}

pre.code-toolbar {
  position: relative;
}

pre.code-toolbar > .toolbar {
  position: absolute;
  top: .3em;
  right: .2em;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

pre.code-toolbar:hover > .toolbar {
  opacity: 1;
}

pre.code-toolbar > .toolbar .toolbar-item {
  display: inline-block;
}

pre.code-toolbar > .toolbar a {
  cursor: pointer;
}

pre.code-toolbar > .toolbar button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none;
  /* for button */
  -moz-user-select: none;
  -ms-user-select: none;
}

pre.code-toolbar > .toolbar a,
pre.code-toolbar > .toolbar button,
pre.code-toolbar > .toolbar span {
  color: #bbb;
  font-size: .8em;
  padding: 0 .5em;
  background: #f5f2f0;
  background: rgba(224, 224, 224, 0.2);
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  border-radius: .5em;
}

pre.code-toolbar > .toolbar a:hover,
pre.code-toolbar > .toolbar a:focus,
pre.code-toolbar > .toolbar button:hover,
pre.code-toolbar > .toolbar button:focus,
pre.code-toolbar > .toolbar span:hover,
pre.code-toolbar > .toolbar span:focus {
  color: inherit;
  text-decoration: none;
}

/**
 * Monokai theme for Prism.JS
 *
 * @author Martijn Swaagman
 * @license MIT 2015
 */
code[class*="language-"],
pre[class*="language-"] {
  color: #f8f8f2;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  font-size: 12px;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

pre[class*="language-"] {
  padding: 2.6rem 4.5rem 0;
  /*   margin: .5em 0; */
  overflow: auto;
  /*   border-radius: 0.3em; */
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: #272822;
}

:not(pre) > code[class*="language-"] {
  padding: .1em;
  border-radius: .3em;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #778090;
}

.token.punctuation {
  color: #F8F8F2;
}

.namespace {
  opacity: .7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
  color: #F92672;
}

.token.boolean,
.token.number {
  color: #AE81FF;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #A6E22E;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
  color: #F8F8F2;
}

.token.atrule,
.token.attr-value,
.token.function {
  color: #E6DB74;
}

.token.keyword {
  color: #F92672;
}

.token.regex,
.token.important {
  color: #FD971F;
}

.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

/*bar*/
.line-numbers::-webkit-scrollbar {
  width: 6px;
  background: #272822;
}

.line-numbers::-webkit-scrollbar:horizontal {
  height: 6px;
}

.line-numbers::-webkit-scrollbar-button {
  width: 10px;
  height: 10px;
  background: #272822;
}

.line-numbers::-webkit-scrollbar-thumb {
  background: #999;
}

.line-numbers::-webkit-scrollbar-corner {
  background: #272822;
}

/*------------------------------------------------------------
  レイアウト
------------------------------------------------------------*/
/*------------------------------------------------------------
  layout
------------------------------------------------------------*/
.l-section {
  padding: 25px 0;
}

@media screen and (min-width: 1025px) {
  .l-section {
    padding: 70px 0 100px;
  }
}

.l-center {
  padding: 0 25px;
}

@media screen and (min-width: 1025px) {
  .l-center {
    position: relative;
    max-width: 1220px !important;
    margin: 0 auto;
  }
}

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.l-flexCen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: fixed;
  z-index: 200;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.l-header .logo {
  position: absolute;
  top: 15px;
  left: 50%;
  margin-left: -50px;
}

.l-header .logo a {
  display: block;
  width: 100px;
  line-height: 1;
}

.l-header .logo a img {
  width: 100%;
  height: auto;
}

.l-header .btns {
  height: 100%;
}

.l-header .btns li {
  height: 100%;
}

.l-header .btns li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 60px;
  height: 100%;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.l-header .btns li a:hover {
  opacity: 0.7 !important;
}

.l-header .btns .sample {
  background: #3D3937;
}

.l-header .btns .trial {
  background: #E20A16;
}

@media screen and (min-width: 1025px) {
  .l-header {
    height: 80px;
    box-shadow: 0px 0px 10px 9px rgba(0, 0, 0, 0.1);
  }
  .l-header .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: static;
    top: none;
    left: none;
    margin-right: auto;
    margin-left: 30px;
    order: 1;
  }
  .l-header .nav {
    order: 2;
  }
  .l-header .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    order: 3;
  }
  .l-header .btns li a {
    width: 110px;
    font-size: 1.4rem;
  }
  .l-header .btns .icon {
    display: block;
    margin: 0 auto 5px;
  }
  .l-header .btns .sample .icon {
    margin-top: 5px;
    margin-bottom: 9px;
  }
  .l-header .menuBtn {
    display: none;
  }
}

.l-menuBtn {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 300;
}

.l-menuBtn:hover {
  cursor: pointer;
}

.l-menuBtn span {
  margin-left: -10px;
  width: 20px;
  height: 2px;
  display: block;
  background: #3D3937;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: 0.3s opacity;
}

.l-menuBtn span.top {
  animation: menuBtn-top .3s;
  animation-fill-mode: forwards;
}

.l-menuBtn span.middle {
  transition: .3s opacity;
  transform: translateY(-1px);
  opacity: 1;
}

.l-menuBtn span.bottom {
  animation: menuBtn-bottom .3s;
  animation-fill-mode: forwards;
}

.l-menuBtn.is-open {
  position: fixed;
  top: 0;
  left: 0;
}

.l-menuBtn.is-open span.top {
  animation: menuBtn-top-close .3s;
  animation-fill-mode: forwards;
}

.l-menuBtn.is-open span.middle {
  opacity: 0;
  transition: .3s opacity;
}

.l-menuBtn.is-open span.bottom {
  animation: menuBtn-bottom-close .3s;
  animation-fill-mode: forwards;
}

@media screen and (min-width: 1025px) {
  .l-menuBtn {
    display: none;
  }
}

@keyframes menuBtn-top {
  0% {
    transform: translateY(-1px) rotate(-45deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-7px) rotate(0deg);
  }
}

@keyframes menuBtn-bottom {
  0% {
    transform: translateY(-1px) rotate(45deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(5px) rotate(0deg);
  }
}

@keyframes menuBtn-top-close {
  0% {
    transform: translateY(-10px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-1px) rotate(-45deg);
  }
}

@keyframes menuBtn-bottom-close {
  0% {
    transform: translateY(8px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-1px) rotate(45deg);
  }
}

.l-gnav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

.l-gnav .flexCen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.l-gnav .inner {
  padding: 50px 0 100px;
}

.l-gnav .list li {
  border-bottom: 1px solid #CCC;
}

.l-gnav .list li:first-child {
  border-top: 1px solid #CCC;
}

.l-gnav .list li a {
  display: block;
  padding: 7px 0;
  color: #3D3937;
  font-size: 1.9rem;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.l-gnav .navBtns {
  margin-top: 25px;
  padding: 0 25px;
}

.l-gnav .navBtns li {
  margin-bottom: 10px;
}

@media screen and (min-width: 1025px) {
  .l-gnav {
    display: block !important;
    position: relative;
    width: auto;
    height: 100%;
  }
  .l-gnav .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: auto;
    height: 100%;
    padding: 0;
  }
  .l-gnav .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0;
    width: 100%;
  }
  .l-gnav .list li {
    margin-right: 5px;
    border: none !important;
  }
  .l-gnav .list li a {
    position: relative;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 500;
  }
  .l-gnav .list li a:hover {
    color: #E20A16;
  }
}

@media screen and (min-width: 1120px) {
  .l-gnav .list li {
    margin-right: 25px;
  }
}

.l-main {
  position: relative;
  overflow: hidden;
}

/* IE11 */
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .l-main {
    padding-top: 80px;
  }
}

.l-mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 440px;
  background: url(/assets/images/index/mv.jpg) no-repeat center bottom;
  background-size: cover;
}

.l-mv p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.l-mv .catch {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 2.2rem;
  line-height: 1.2;
}

@media screen and (min-width: 1025px) {
  .l-mv {
    height: 100vh;
    background: url(/assets/images/index/mv_pc.jpg) no-repeat center bottom;
    background-size: cover;
  }
  .l-mv p {
    font-size: 1.6rem;
  }
  .l-mv .catch {
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 5.0rem;
  }
}

.l-underKv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 125px;
  margin-top: 50px;
}

.l-underKv.reason {
  background: url(/assets/images/reason/reason_bg.jpg) no-repeat center;
  background-size: cover;
}

.l-underKv.case {
  background: url(/assets/images/case/case_bg.jpg) no-repeat center;
  background-size: cover;
}

.l-underKv.usage {
  background: url(/assets/images/usage/usage_bg.jpg) no-repeat center;
  background-size: cover;
}

.l-underKv.faq {
  background: url(/assets/images/faq/faq_bg.jpg) no-repeat center;
  background-size: cover;
}

.l-underKv.tech {
  background: url(/assets/images/tech/tech_bg.jpg) no-repeat center;
  background-size: cover;
}

.l-underKv.price {
  background: url(/assets/images/price/price_bg.jpg) no-repeat center;
  background-size: cover;
}

.l-underKv.agreement {
  background: url(/assets/images/agreement/agreement_bg.jpg) no-repeat center;
  background-size: cover;
}

.l-underKv.contact {
  background: url(/assets/images/contact/contact_bg.jpg) no-repeat center;
  background-size: cover;
}

.l-underKv.news {
  background: url(/assets/images/news/news_bg.jpg) no-repeat center;
  background-size: cover;
}

.l-underKv .ttl {
  color: #fff;
  font-size: 1.9rem;
  font-weight: normal;
  text-align: center;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.l-underKv .ttl span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.75;
}

@media screen and (min-width: 1025px) {
  .l-underKv {
    height: 250px;
    margin-top: 80px;
  }
  .l-underKv .ttl {
    font-size: 3.8rem;
  }
  .l-underKv .ttl span {
    font-size: 1.6rem;
  }
}

.l-pagePath {
  position: absolute;
  top: 100px;
  left: 30px;
  width: 1170px;
}

.l-pagePath li {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.l-pagePath a {
  color: #fff;
}

.l-pagePath a:hover {
  text-decoration: underline !important;
}

.l-pagePath .arrow {
  display: inline-block;
  margin: 0 15px;
}

/* IE11 */
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .l-pagePath {
    top: 180px;
  }
}

.l-sideBn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: -1;
  width: 80px;
  min-height: 420px;
  margin-top: -210px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 5px 4px rgba(0, 0, 0, 0.05);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transition: all 0.3s ease;
}

.l-sideBn p {
  font-weight: bold;
}

.l-sideBn img {
  display: inline-block;
  width: 41px;
  height: auto;
  margin-bottom: 15px;
  vertical-align: baseline;
}

.l-sideBn.is-show {
  opacity: 1;
  z-index: 200;
}

.l-sideBn.is-show:hover {
  opacity: 0.7 !important;
}

.l-price a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background: #3D3937;
  border-top: 2px solid #3D3937;
  border-bottom: 2px solid #3D3937;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.l-price a span {
  position: relative;
}

.l-price a span:after {
  position: absolute;
  top: 50%;
  right: -30%;
  width: 7px;
  height: 12px;
  margin-top: -6px;
  background: url(/assets/images/common/icon_arrow_right_white.svg) no-repeat center;
  background-size: 7px auto;
  content: '';
  transition: all 0.3s ease;
}

.l-price a:hover {
  background: #fff;
  color: #3D3937;
}

.l-price a:hover span:after {
  background: url(/assets/images/common/icon_arrow_right_black.svg) no-repeat center;
  background-size: 7px auto;
}

@media screen and (min-width: 1025px) {
  .l-price a {
    height: 100px;
    font-size: 2.2rem;
  }
  .l-price a span:after {
    right: -1.5em;
    width: 8px;
    background-size: 8px auto;
  }
  .l-price a:hover span:after {
    width: 8px;
    background-size: 8px auto;
  }
}

.l-contact .way > li {
  text-align: center;
}

.l-contact .way > li:first-child {
  margin-bottom: 30px;
}

.l-contact .ttl {
  margin-bottom: 10px;
  font-weight: bold;
}

.l-contact .btns li {
  margin-bottom: 10px;
}

.l-contact .desc a:hover {
  text-decoration: underline !important;
}

.l-contact .red {
  color: #E20A16;
}

.l-contact .tel {
  display: inline-block;
  margin-bottom: 10px;
  color: #E20A16;
  font-size: 3.5rem;
  font-weight: bold;
  font-family: 'Oswald';
  line-height: 1;
}

@media screen and (min-width: 1025px) {
  .l-contact .way {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .l-contact .way > li {
    display: block;
    padding: 10px 5px;
    background: #fff;
    border: 1px solid rgba(204, 204, 204, 0.5);
    border-radius: 5px;
    box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
    text-align: center;
    width: 49%;
    margin-bottom: 0 !important;
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
}

@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .l-contact .way > li {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

@media screen and (min-width: 1025px) {
  .l-contact .ttl {
    font-size: 1.8rem;
  }
  .l-contact .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .l-contact .btns li {
    width: 50%;
  }
  .l-contact .btns li a {
    min-width: unset;
    width: 95%;
  }
  .l-contact .desc {
    font-size: 1.4rem;
  }
  .l-contact .tel {
    font-size: 5.0rem;
  }
}

.l-footer {
  border-top: 1px solid #CCC;
}

.l-footer .contact {
  padding: 25px;
  width: 100%;
  text-align: center;
}

.l-footer p {
  margin-bottom: 20px;
}

.l-footer .logo {
  display: block;
  margin-bottom: 3px;
}

.l-footer .sub {
  font-size: 0.8rem;
}

@media screen and (min-width: 1025px) {
  .l-footer .inner {
    max-width: 1220px !important;
    margin: 0 auto;
    padding: 0 25px;
  }
  .l-footer .contact {
    padding: 70px 0 0;
    width: auto;
    text-align: left;
  }
  .l-footer p {
    margin-bottom: 30px;
  }
  .l-footer .logo {
    display: block;
    margin-bottom: 5px;
  }
  .l-footer .logo img {
    width: 130px;
    height: auto;
  }
  .l-footer .sub {
    margin-left: 5px;
  }
  .l-footer .btn {
    margin-left: 0;
  }
}

.l-footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.l-footer nav li {
  width: 50%;
  border-bottom: 1px solid #CCC;
}

.l-footer nav li:nth-child(1), .l-footer nav li:nth-child(2) {
  border-top: 1px solid #CCC;
}

.l-footer nav li:nth-child(2n-1) {
  border-right: 1px solid #CCC;
}

.l-footer nav a {
  display: block;
  position: relative;
  padding: 12px 25px;
}

.l-footer nav a:after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 12px;
  margin-top: -6px;
  background: url(/assets/images/common/icon_arrow_right.svg) no-repeat center;
  background-size: 7px auto;
  content: '';
}

.l-footer .provision {
  padding-top: 80px;
  width: 65%;
}

.l-footer .provision .ttl {
  margin-bottom: 36px;
  padding-bottom: 10px;
  border-bottom: 1px solid #CCC;
  font-size: 1.4rem;
  font-weight: bold;
}

.l-footer .provision .table {
  margin-top: 20px;
}

.l-footer .provision dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.l-footer .provision dt, .l-footer .provision dd {
  font-size: 1.4rem;
}

.l-footer .provision dt {
  width: 24%;
}

.l-footer .provision dd {
  width: 76%;
}

.l-footer .provision .company {
  width: 74%;
}

.l-footer .provision .pmark {
  width: 26%;
  padding-top: 10px;
  text-align: center;
}

.l-footer .provision .pmark p {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.l-footer small {
  display: block;
  margin: 0 auto;
  padding: 20px 0 50px;
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .l-footer small {
    margin-top: 80px;
    padding: 70px 0 100px;
    border-top: 1px solid #CCC;
  }
}

/*------------------------------------------------------------
  コンポーネント
------------------------------------------------------------*/
/*------------------------------------------------------------
  compornent
------------------------------------------------------------*/
/*
  見出し
*/
.c-ttl01 {
  margin-bottom: 25px;
  font-size: 1.9rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 1025px) {
  .c-ttl01 {
    margin-bottom: 30px;
    font-size: 3.8rem;
  }
}

.c-ttl02, .c-ttl02--bor {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 1025px) {
  .c-ttl02, .c-ttl02--bor {
    margin-bottom: 30px;
    font-size: 3.0rem;
  }
}

@media screen and (min-width: 1025px) {
  .c-ttl02--bor {
    position: relative;
    margin-top: -30px;
    margin-bottom: 45px;
    font-size: 2.4rem;
  }
  .c-ttl02--bor:before {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 1px;
    margin-top: 1px;
    background: #CCC;
    content: '';
  }
  .c-ttl02--bor span {
    display: inline-block;
    padding: 0 20px;
    background: #fff;
  }
}

.c-beforeTtlText {
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .c-beforeTtlText {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}

.c-lead {
  margin-bottom: 25px;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .c-lead {
    margin-bottom: 50px;
  }
}

/*
  ボタン
*/
.c-btn01, .c-btn01--bor, .c-btn01--bor--down, .c-btn01--bor--left, .c-btn01--red, .c-btn01--large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 325px;
  height: 32px;
  margin: 0 auto;
  border-radius: 100px;
}

.c-btn01:after, .c-btn01--bor:after, .c-btn01--bor--down:after, .c-btn01--bor--left:after, .c-btn01--red:after, .c-btn01--large:after {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 7px;
  height: 12px;
  margin-top: -6px;
  content: '';
  transition: all 0.3s ease;
}

.c-btn01--bor, .c-btn01--bor--down, .c-btn01--bor--left {
  border: 1px solid #E20A16;
  color: #E20A16;
}

.c-btn01--bor:after, .c-btn01--bor--down:after, .c-btn01--bor--left:after {
  background: url(/assets/images/common/icon_arrow_right.svg) no-repeat center;
  background-size: 7px auto;
}

.c-btn01--bor:hover, .c-btn01--bor--down:hover, .c-btn01--bor--left:hover {
  background: #E20A16;
  color: #fff;
}

.c-btn01--bor:hover:after, .c-btn01--bor--down:hover:after, .c-btn01--bor--left:hover:after {
  background: url(/assets/images/common/icon_arrow_right_white.svg) no-repeat center;
  background-size: 7px auto;
}

@media screen and (min-width: 1025px) {
  .c-btn01--bor, .c-btn01--bor--down, .c-btn01--bor--left {
    border-width: 2px;
  }
}

.c-btn01--bor--down:after {
  transform: rotate(90deg);
}

.c-btn01--bor--down:hover:after {
  transform: rotate(90deg);
}

.c-btn01--bor--left:after {
  right: none;
  left: 5%;
  transform: rotate(180deg);
}

.c-btn01--bor--left:hover:after {
  transform: rotate(180deg);
}

.c-btn01--red {
  background: #E20A16;
  border: 1px solid #E20A16;
  color: #fff;
}

.c-btn01--red:after {
  background: url(/assets/images/common/icon_arrow_right_white.svg) no-repeat center;
  background-size: 7px auto;
}

.c-btn01--red:hover {
  background: none;
  color: #E20A16;
}

.c-btn01--red:hover:after {
  background: url(/assets/images/common/icon_arrow_right.svg) no-repeat center;
  background-size: 7px auto;
}

@media screen and (min-width: 1025px) {
  .c-btn01, .c-btn01--bor, .c-btn01--bor--down, .c-btn01--bor--left, .c-btn01--red, .c-btn01--large {
    min-width: 250px;
    width: max-content;
    max-width: 325px;
    height: 40px;
    border-width: 2px;
  }
  .c-btn01:after, .c-btn01--bor:after, .c-btn01--bor--down:after, .c-btn01--bor--left:after, .c-btn01--red:after, .c-btn01--large:after {
    width: 8px;
    background-size: 8px auto;
  }
  .c-btn01:hover:after, .c-btn01--bor:hover:after, .c-btn01--bor--down:hover:after, .c-btn01--bor--left:hover:after, .c-btn01--red:hover:after, .c-btn01--large:hover:after {
    width: 8px;
    background-size: 8px auto;
  }
  .c-btn01--pad {
    padding: 0 55px;
  }
}

.c-btn01--large {
  font-weight: bold;
}

@media screen and (min-width: 1025px) {
  .c-btn01--large {
    width: 660px;
    max-width: none;
    height: 70px;
    font-size: 2.0rem;
  }
}

@media screen and (min-width: 1025px) {
  .c-link {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #E20A16;
    font-weight: 500;
  }
  .c-link:after {
    position: absolute;
    top: 50%;
    right: -2em;
    width: 8px;
    height: 12px;
    margin-top: -5px;
    background: url(/assets/images/common/icon_arrow_right.svg) no-repeat center;
    background-size: 8px auto;
    content: '';
    transition: all 0.3s ease;
  }
  .c-link:hover {
    opacity: 0.7 !important;
  }
}

.c-external {
  position: relative;
  font-weight: 500;
}

.c-external:after {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 14px;
  height: 13px;
  margin-top: -7px;
  background: url(/assets/images/common/icon_external.svg) no-repeat center;
  content: '';
}

.c-external:hover {
  text-decoration: underline !important;
}

/*
  リスト
*/
.c-noteList li {
  padding-left: 1.0em;
  font-size: 1.0rem;
  text-indent: -1.0em;
}

@media screen and (min-width: 1025px) {
  .c-noteList li {
    font-size: 1.4rem;
  }
}

.c-point {
  margin: 15px 0;
  padding: 10px;
  background: #FCE6E7;
  border: 1px solid #F7BABD;
}

.c-point dt {
  color: #E20A16;
  font-weight: bold;
}

.c-point img {
  display: inline-block;
  width: 15px;
  height: auto;
  margin-right: 5px;
  vertical-align: text-bottom;
}

@media screen and (min-width: 1025px) {
  .c-point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin: 30px 0;
    padding: 20px;
  }
  .c-point dt {
    width: 145px;
  }
  .c-point img {
    width: 31px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
  }
  .c-point dd {
    width: calc(100% - 145px);
    padding-top: 3px;
  }
}

.c-grayBox {
  margin: 15px 0;
  padding: 20px;
  background: #F6F6F6;
}

@media screen and (min-width: 1025px) {
  .c-grayBox {
    margin: 30px 0;
    padding: 40px;
  }
}

/*------------------------------------------------------------
  プロジェクト
------------------------------------------------------------*/
/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.p-news .info {
  padding: 7px 0;
  font-size: 1.0rem;
}

.p-news .new {
  display: inline-block;
  margin: 0 10px;
  padding: 0 10px;
  background: #E20A16;
  border-radius: 50px;
  color: #fff;
  font-size: 0.7rem;
}

.p-news .ttl {
  display: inline-block;
  color: #E20A16;
}

.p-news .ttl:hover {
  text-decoration: underline !important;
}

@media screen and (min-width: 1025px) {
  .p-news .info {
    padding: 16px 0;
    font-size: 1.6rem;
  }
  .p-news .new {
    font-size: 1.4rem;
  }
  .p-news .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .p-news li a {
    line-height: 1;
  }
  .p-news li a:hover {
    opacity: 0.7 !important;
  }
  .p-news li:first-child img {
    display: inline-block;
    margin-right: 5px;
    vertical-align: baseline;
  }
  .p-news li:last-child a {
    display: inline-block;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px dotted #3D3937;
    line-height: 1;
  }
  .p-news li:last-child img {
    vertical-align: baseline;
  }
}

.p-feature {
  background: #F6F6F6;
}

.p-feature .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.p-feature li {
  width: 24%;
  height: 77px;
  margin-bottom: 7px;
  display: block;
  padding: 10px 5px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  text-align: center;
  font-size: 1.0rem;
  line-height: 1.25;
}

@media screen and (min-width: 1025px) {
  .p-feature li {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

.p-feature img {
  display: inline-block;
  width: auto;
  height: 30px;
  margin-bottom: 5px;
}

.p-feature .ttl {
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media screen and (min-width: 1025px) {
  .p-feature li {
    width: 23%;
    height: auto;
    margin-bottom: 35px;
  }
  .p-feature img {
    height: auto;
  }
  .p-feature p {
    font-size: 1.4rem;
    line-height: 1.75;
  }
  .p-feature .ttl {
    font-size: 2.0rem;
    margin: 20px 0;
  }
}

.p-latest ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 25px;
}

.p-latest li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  width: 24%;
  padding: 6px 0;
  background: #F6F6F6;
  border-radius: 5px;
}

.p-latest li img {
  position: absolute;
  top: -5px;
  right: 5px;
  width: 13px;
  height: auto;
}

@media screen and (min-width: 1025px) {
  .p-latest {
    padding-bottom: 0 !important;
  }
  .p-latest .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .p-latest .img {
    margin-left: -9%;
    width: 56%;
  }
  .p-latest .img img {
    width: 100%;
    height: auto;
  }
  .p-latest .text {
    width: 46%;
  }
  .p-latest .ttl {
    text-align: left;
  }
  .p-latest p {
    text-align: left;
  }
  .p-latest ul {
    margin-bottom: 50px;
  }
  .p-latest li {
    padding: 11px 0;
    border-radius: 10px;
  }
  .p-latest li img {
    top: -13px;
    right: 10px;
    width: 26px;
  }
  .p-latest a {
    margin: 0;
  }
}

@media screen and (min-width: 1300px) {
  .p-latest .img {
    margin-left: -13%;
    width: 60%;
  }
  .p-latest .text {
    padding-top: 30px;
  }
}

@media screen and (min-width: 1500px) {
  .p-latest .text {
    padding-top: 50px;
  }
}

@media screen and (min-width: 1600px) {
  .p-latest .img {
    margin-left: -290px;
    width: 72%;
  }
}

.p-usage {
  background: #F6F6F6;
}

.p-usage .swiper-container {
  width: calc(50% + 25px);
  padding-bottom: 40px;
  overflow: visible;
}

.p-usage .swiper-slide a {
  display: block;
  padding: 10px 5px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  text-align: center;
  position: relative;
  padding: 0;
}

@media screen and (min-width: 1025px) {
  .p-usage .swiper-slide a {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

.p-usage .swiper-slide img {
  width: 100%;
  height: auto;
}

.p-usage .swiper-slide .text {
  padding: 10px 15px 30px 15px;
  text-align: left;
}

.p-usage .swiper-slide .ttl {
  margin-bottom: 10px;
  line-height: 1.5;
}

.p-usage .swiper-slide .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.p-usage .swiper-slide .tag li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #F6F6F6;
  margin: 0 5px 5px 0;
  padding: 2px 5px;
  font-size: 0.9rem;
}

.p-usage .swiper-slide .link {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0 -15px;
  padding: 5px 15px;
  background: #E20A16;
  border-radius: 0 0 5px 5px;
  color: #fff;
}

.p-usage .swiper-slide .link:after {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 7px;
  height: 12px;
  margin-top: -6px;
  background: url(/assets/images/common/icon_arrow_right_white.svg) no-repeat center;
  background-size: 7px auto;
  content: '';
  transition: all 0.3s ease;
}

@media screen and (min-width: 1025px) {
  .p-usage .swiper-container {
    width: 100%;
    padding-bottom: 50px;
    overflow: hidden;
  }
  .p-usage .swiper-slide a {
    padding: 0;
  }
  .p-usage .swiper-slide .text {
    padding: 25px;
  }
  .p-usage .swiper-slide .ttl {
    margin-bottom: 15px;
    font-size: 2.0rem;
  }
  .p-usage .swiper-slide .tag {
    margin-top: 15px;
  }
  .p-usage .swiper-slide .tag li {
    padding: 1px 10px;
    font-size: 1.4rem;
  }
  .p-usage .swiper-slide .link {
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #E20A16;
    font-weight: 500;
  }
  .p-usage .swiper-slide .link:after {
    position: absolute;
    top: 50%;
    right: -20%;
    width: 8px;
    margin-top: -5px;
    background: url(/assets/images/common/icon_arrow_right.svg) no-repeat center;
    background-size: 8px auto;
    content: '';
    transition: all 0.3s ease;
  }
}

.p-usage .recommend {
  margin-top: 20px;
  padding-top: 100px;
  background: url(/assets/images/index/usage_bg.jpg) no-repeat center top;
  background-size: 100% auto;
}

.p-usage .recommend .inner {
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 5px;
}

.p-usage .recommend li {
  position: relative;
  padding-left: 1em;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
}

.p-usage .recommend li:before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 2px;
  background: #E20A16;
  content: '';
}

@media screen and (min-width: 1025px) {
  .p-usage .recommend {
    max-width: 1220px !important;
    margin: 60px auto 0;
    padding-top: 280px;
  }
  .p-usage .recommend .inner {
    padding: 30px;
    border-radius: 10px;
  }
  .p-usage .recommend ul {
    width: 50%;
  }
  .p-usage .recommend li {
    font-size: 1.6rem;
    padding-left: 1.5em;
  }
  .p-usage .recommend li:before {
    top: 16px;
    width: 10px;
    height: 3px;
  }
}

.p-case .swiper-container {
  padding-bottom: 40px;
}

.p-case .swiper-slide {
  display: block;
  padding: 10px 5px;
  background: #fff;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  text-align: center;
  padding: 0;
}

@media screen and (min-width: 1025px) {
  .p-case .swiper-slide {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

.p-case .img {
  margin: -1px -1px 0 -1px;
}

.p-case .img img {
  width: 100%;
  height: auto;
}

.p-case .text {
  padding: 10px 0;
}

.p-case .logo {
  width: 88px;
  height: auto;
}

@media screen and (min-width: 1025px) {
  .p-case .swiper-container {
    padding-bottom: 50px;
  }
  .p-case .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .p-case .img {
    width: 68.5%;
    margin-bottom: -1px;
  }
  .p-case .text {
    width: 31.5%;
    padding: 30px 30px;
  }
  .p-case .logo {
    margin-bottom: 15px;
    width: 175px;
    height: auto;
  }
  .p-case .catch {
    margin-bottom: 15px;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.5;
  }
  .p-case .sub {
    margin-bottom: 25px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1200px) {
  .p-case .text {
    padding: 70px 30px;
  }
  .p-case .logo {
    margin-bottom: 30px;
  }
  .p-case .catch {
    margin-bottom: 30px;
  }
  .p-case .sub {
    margin-bottom: 40px;
  }
}

.p-demo {
  background: #F6F6F6;
}

.p-demo .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 25px;
}

.p-demo .tabs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 50%;
  padding: 6px 0;
  border: 1px solid #EDEDED;
  font-weight: 500;
}

.p-demo .tabs li:hover {
  cursor: pointer;
}

.p-demo .tabs li:first-child {
  border-radius: 5px 0 0 5px;
}

.p-demo .tabs li:last-child {
  border-left: none;
  border-radius: 0 5px 5px 0;
}

.p-demo .tabs .is-active {
  background: #fff;
}

.p-demo .contents li {
  display: none;
}

.p-demo .contents .is-active {
  display: block;
}

.p-demo .table {
  display: table;
  table-layout: fixed;
}

.p-demo dl {
  display: table-row;
}

.p-demo dt, .p-demo dd {
  display: table-cell;
  padding-bottom: 20px;
}

.p-demo dt {
  width: 23%;
}

.p-demo dt span {
  color: #E20A16;
}

.p-demo input {
  display: inline-block !important;
  height: 30px;
  border: none !important;
}

.p-demo select {
  border: none !important;
}

.p-demo .widS {
  width: 25%;
}

.p-demo .widM {
  width: 90px;
}

.p-demo .widL {
  width: 96%;
}

.p-demo .hyphen {
  display: inline-block;
  margin: 0 4%;
}

.p-demo .search {
  display: inline-block;
  background: #E20A16;
  border-radius: 50px;
  width: 70px;
  height: 30px;
  margin-left: 5%;
  color: #fff;
  font-size: 1.1rem;
}

.p-demo .reset {
  display: block;
  margin: 0 auto;
  color: #E20A16;
}

@media screen and (min-width: 1025px) {
  .p-demo .tabs {
    margin-bottom: 50px;
  }
  .p-demo .tabs li {
    padding: 13px 0;
    font-size: 2.4rem;
  }
  .p-demo .tabs li:first-child {
    border-radius: 10px 0 0 10px;
  }
  .p-demo .tabs li:last-child {
    border-radius: 0 10px 10px 0;
  }
  .p-demo .contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 884px;
    height: 584px;
    margin: 0 auto;
    padding-top: 50px;
    background: url(/assets/images/index/demo_bg.png) no-repeat center;
  }
  .p-demo .contents.roman {
    background: url(/assets/images/index/demo_bg_roman.png) no-repeat center;
  }
  .p-demo dt {
    width: 160px;
  }
  .p-demo dt span {
    display: inline-block;
    margin-left: 20px;
    color: #E20A16;
  }
  .p-demo input, .p-demo select {
    height: 40px !important;
    border: 1px solid #ccc !important;
  }
  .p-demo .widS {
    width: 110px;
  }
  .p-demo .widM {
    width: 150px;
  }
  .p-demo .widL {
    width: 300px;
  }
  .p-demo .hyphen {
    margin: 0 15px;
  }
  .p-demo .search {
    width: 110px;
    height: 40px;
    margin-left: 30px;
    font-size: 1.6rem;
  }
}

.p-faq .accordion {
  margin-bottom: 40px;
}

.p-faq dt, .p-faq dd {
  padding: 20px 0;
}

.p-faq dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  position: relative;
  border-bottom: 1px solid #F6F6F6;
}

.p-faq dt:first-child {
  border-top: 1px solid #F6F6F6;
}

.p-faq dt:after {
  position: absolute;
  top: 50%;
  right: 3%;
  width: 14px;
  height: 22px;
  margin-top: -9px;
  background: url(/assets/images/common/icon_arrow_right.svg) no-repeat center;
  background-size: 14px auto;
  content: '';
  transform: rotate(90deg);
}

.p-faq dt:hover {
  cursor: pointer;
}

.p-faq dt span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 175px;
  height: 30px;
  margin-right: 20px;
  border: 1px solid #CCC;
  border-radius: 10px;
  font-size: 1.4rem;
}

.p-faq dt.is-open:after {
  transform: rotate(270deg);
}

.p-faq dd {
  display: none;
  border-bottom: 1px solid #F6F6F6;
}

.p-format ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 25px;
}

.p-format li {
  width: 32%;
  text-align: center;
}

.p-format .shadowBox {
  display: block;
  padding: 10px 5px;
  background: #fff;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 115px;
  margin-bottom: 10px;
}

@media screen and (min-width: 1025px) {
  .p-format .shadowBox {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

.p-format img {
  width: auto;
  height: 67px;
}

@media screen and (min-width: 1025px) {
  .p-format {
    background: #F6F6F6;
  }
  .p-format ul {
    margin-bottom: 50px;
  }
  .p-format .shadowBox {
    height: 230px;
    margin-bottom: 30px;
    border: none !important;
  }
  .p-format img {
    width: auto;
    height: 135px;
  }
  .p-format .ttl {
    margin-bottom: 10px;
    font-size: 2.0rem;
  }
  .p-format .text {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

/*------------------------------------------------------------
  reason
------------------------------------------------------------*/
.p-adopt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.p-adopt li {
  width: 32%;
  margin-bottom: 20px;
}

.p-adopt .shadowBox {
  display: block;
  padding: 10px 5px;
  background: #fff;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 5px;
  padding-top: 23px;
  padding-bottom: 23px;
}

@media screen and (min-width: 1025px) {
  .p-adopt .shadowBox {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

.p-adopt .shadowBox img {
  width: auto;
  max-width: 75px;
  height: 56px;
}

.p-adopt .ttl {
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1025px) {
  .p-adopt li {
    width: 11%;
  }
  .p-adopt .shadowBox {
    margin-bottom: 20px;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
    box-shadow: none;
  }
  .p-adopt .shadowBox img {
    width: auto;
    max-width: 80px;
    height: 60px;
  }
  .p-adopt .ttl {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}

.p-feature02 {
  background: #F6F6F6;
}

.p-feature02 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.p-feature02 li {
  width: 49%;
  margin-bottom: 20px;
}

.p-feature02 .spShadowBox {
  display: block;
  padding: 10px 5px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 70px;
  margin-bottom: 6px;
}

@media screen and (min-width: 1025px) {
  .p-feature02 .spShadowBox {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

.p-feature02 img {
  display: inline-block;
  width: auto;
  height: 30px;
}

.p-feature02 .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 22px;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.p-feature02 .desc {
  font-size: 1.1rem;
  line-height: 2;
}

@media screen and (min-width: 1025px) {
  .p-feature02 li {
    display: block;
    padding: 10px 5px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
    text-align: center;
    width: 23%;
    height: auto;
    margin-bottom: 35px;
    line-height: 1.25;
  }
}

@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .p-feature02 li {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

@media screen and (min-width: 1025px) {
  .p-feature02 .spShadowBox {
    height: auto;
    margin-bottom: 0;
    padding: 0;
    box-shadow: none;
  }
  .p-feature02 img {
    height: auto;
  }
  .p-feature02 p {
    font-size: 1.4rem;
    line-height: 1.75;
  }
  .p-feature02 .ttl {
    font-size: 2.0rem;
    margin: 20px 0;
  }
  .p-feature02 .desc {
    letter-spacing: 0.05em;
    font-size: 1.4rem;
    line-height: 1.75;
  }
}

/*------------------------------------------------------------
  case
------------------------------------------------------------*/
.p-caseList li {
  margin-bottom: 25px;
}

.p-caseList a {
  display: block;
  padding: 10px 5px;
  background: #fff;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  text-align: center;
  position: relative;
  padding: 0;
}

@media screen and (min-width: 1025px) {
  .p-caseList a {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

.p-caseList a:hover {
  opacity: 0.7 !important;
}

.p-caseList img {
  display: block;
  width: calc(100% + 2px);
  height: auto;
  margin: -1px -1px 0 -1px;
}

.p-caseList .text {
  padding: 12px 15px 45px 15px;
  text-align: left;
}

.p-caseList .ttl {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.5;
}

.p-caseList .name {
  font-size: 1.1rem;
  line-height: 1.5;
}

.p-caseList .link {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0 -15px;
  padding: 5px 15px;
  background: #E20A16;
  border-radius: 0 0 5px 5px;
  color: #fff;
}

.p-caseList .link:after {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 7px;
  height: 12px;
  margin-top: -6px;
  background: url(/assets/images/common/icon_arrow_right_white.svg) no-repeat center;
  background-size: 7px auto;
  content: '';
  transition: all 0.3s ease;
}

@media screen and (min-width: 1025px) {
  .p-caseList ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .p-caseList li {
    width: 48.718%;
  }
  .p-caseList a {
    padding: 0;
  }
  .p-caseList .text {
    padding: 25px 25px 35px;
  }
  .p-caseList .ttl {
    margin-bottom: 15px;
    font-size: 2.0rem;
  }
  .p-caseList .name {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  .p-caseList .link {
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #E20A16;
    font-weight: 500;
  }
  .p-caseList .link:after {
    position: absolute;
    top: 50%;
    right: -20%;
    width: 8px;
    margin-top: -5px;
    background: url(/assets/images/common/icon_arrow_right.svg) no-repeat center;
    background-size: 8px auto;
    content: '';
    transition: all 0.3s ease;
  }
}

.p-caseAbout .mv img {
  width: 100%;
  height: auto;
}

.p-caseAbout .about {
  text-align: center;
}

.p-caseAbout .about > dt {
  padding: 20px 0;
}

.p-caseAbout .about > dt img {
  width: 127px;
  height: auto;
}

.p-caseAbout .about > dd {
  line-height: 1.5;
}

.p-caseAbout .about > dd dt {
  padding: 6px 0;
  background: #F6F6F6;
  letter-spacing: 0.05em;
}

.p-caseAbout .about > dd dd {
  padding: 12px 0;
}

@media screen and (min-width: 1025px) {
  .p-caseAbout .mv {
    position: relative;
  }
  .p-caseAbout .text {
    position: absolute;
    top: 29%;
    right: 5%;
  }
  .p-caseAbout .ttl {
    font-size: 3.3rem;
    text-align: left;
  }
  .p-caseAbout .name {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .p-caseAbout .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    border-bottom: 1px solid #CCC;
  }
  .p-caseAbout .about > dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 21%;
    padding: 0;
    border-right: 1px solid #CCC;
  }
  .p-caseAbout .about > dt img {
    width: 175px;
    height: auto;
  }
  .p-caseAbout .about > dd {
    display: table;
    padding: 34px 60px;
  }
  .p-caseAbout .about > dd dl {
    display: table-row;
  }
  .p-caseAbout .about > dd dl dt, .p-caseAbout .about > dd dl dd {
    display: table-cell;
    padding: 11px 0;
    font-size: 1.4rem;
    text-align: left;
  }
  .p-caseAbout .about > dd dl dt {
    position: relative;
    width: 110px;
    background: none;
    font-weight: bold;
  }
  .p-caseAbout .about > dd dl dt:after {
    position: absolute;
    top: 14px;
    right: 0;
    width: 1px;
    height: 16px;
    background: #3D3937;
    content: '';
  }
  .p-caseAbout .about > dd dl dd {
    padding: 0 0 0 40px;
    width: 480px;
  }
}

@media screen and (min-width: 1200px) {
  .p-caseAbout .ttl {
    font-size: 3.8rem;
  }
}

.p-caseDetail .photo {
  margin-top: 25px;
  text-align: center;
}

.p-caseDetail .photo img {
  width: 100%;
  height: auto;
}

.p-caseDetail .photo figcaption {
  display: block;
  margin-top: 15px;
  color: #666;
  font-size: 0.7rem;
  font-weight: 300;
  font-style: italic;
}

.p-caseDetail .list {
  margin: 25px 0;
  padding: 25px;
  background: #F6F6F6;
}

.p-caseDetail .list li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-caseDetail .photo02 figure {
  margin-top: 25px;
}

.p-caseDetail .photo02 img {
  width: 100%;
  height: auto;
}

.p-caseDetail .photo02 figcaption {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .p-caseDetail .ttl {
    text-align: left;
  }
  .p-caseDetail .photo img {
    width: auto;
    max-width: 100%;
  }
  .p-caseDetail .photo figcaption {
    margin-top: 30px;
    font-size: 1.4rem;
  }
  .p-caseDetail .list {
    padding: 35px 40px;
  }
  .p-caseDetail .photo02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .p-caseDetail .photo02 figure {
    width: 42.7%;
    margin-top: 50px;
  }
  .p-caseDetail .photo02 figure:first-child {
    margin-right: 30px;
  }
  .p-caseDetail .photo02 figcaption {
    margin-top: 15px;
    font-size: 1.4rem;
  }
}

.p-caseOther {
  background: #F6F6F6;
}

.p-caseOther .swiper-container {
  padding-bottom: 40px;
}

.p-caseOther .swiper-slide {
  display: block;
  padding: 10px 5px;
  background: #fff;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  text-align: center;
  padding: 0;
}

@media screen and (min-width: 1025px) {
  .p-caseOther .swiper-slide {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

.p-caseOther .img {
  margin: -1px -1px 0 -1px;
}

.p-caseOther .img img {
  width: 100%;
  height: auto;
}

.p-caseOther .text {
  padding: 10px 0;
}

.p-caseOther .logo {
  width: 88px;
  height: auto;
}

@media screen and (min-width: 1025px) {
  .p-caseOther .swiper-container {
    width: 100%;
    padding-bottom: 50px;
    overflow: hidden;
  }
  .p-caseOther .swiper-slide {
    padding: 0;
    text-align: left;
  }
  .p-caseOther .swiper-slide a {
    padding: 0;
  }
  .p-caseOther .swiper-slide .text {
    padding: 25px 25px 35px;
  }
  .p-caseOther .swiper-slide .ttl {
    margin-bottom: 15px;
    font-size: 2.0rem;
    line-height: 1.5;
  }
  .p-caseOther .swiper-slide .name {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  .p-caseOther .swiper-slide .link {
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #E20A16;
    font-weight: 500;
  }
  .p-caseOther .swiper-slide .link:after {
    position: absolute;
    top: 50%;
    right: -20%;
    width: 8px;
    height: 12px;
    margin-top: -5px;
    background: url(/assets/images/common/icon_arrow_right.svg) no-repeat center;
    background-size: 8px auto;
    content: '';
    transition: all 0.3s ease;
  }
}

/*------------------------------------------------------------
  usage
------------------------------------------------------------*/
.p-usageList li {
  margin-bottom: 25px;
}

.p-usageList a {
  display: block;
  padding: 10px 5px;
  background: #fff;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  text-align: center;
  position: relative;
  padding: 0;
}

@media screen and (min-width: 1025px) {
  .p-usageList a {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

.p-usageList a:hover {
  opacity: 0.7 !important;
}

.p-usageList img {
  display: block;
  width: calc(100% + 2px);
  height: auto;
  margin: -1px -1px 0 -1px;
}

.p-usageList .text {
  padding: 12px 15px 30px 15px;
  text-align: left;
}

.p-usageList .ttl {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.5;
}

.p-usageList .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.p-usageList .tag li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #F6F6F6;
  margin: 0 5px 5px 0;
  padding: 2px 5px;
  font-size: 0.9rem;
}

.p-usageList .link {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0 -15px;
  padding: 5px 15px;
  background: #E20A16;
  border-radius: 0 0 5px 5px;
  color: #fff;
}

.p-usageList .link:after {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 7px;
  height: 12px;
  margin-top: -6px;
  background: url(/assets/images/common/icon_arrow_right_white.svg) no-repeat center;
  background-size: 7px auto;
  content: '';
  transition: all 0.3s ease;
}

@media screen and (min-width: 1025px) {
  .p-usageList .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .p-usageList .list > li {
    width: 48.718%;
  }
  .p-usageList a {
    padding: 0;
  }
  .p-usageList .text {
    padding: 25px 25px 35px;
  }
  .p-usageList .ttl {
    margin-bottom: 15px;
    font-size: 2.0rem;
  }
  .p-usageList .tag {
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .p-usageList .tag li {
    padding: 1px 10px;
    font-size: 1.4rem;
  }
  .p-usageList .link {
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #E20A16;
    font-weight: 500;
  }
  .p-usageList .link:after {
    position: absolute;
    top: 50%;
    right: -20%;
    width: 8px;
    margin-top: -5px;
    background: url(/assets/images/common/icon_arrow_right.svg) no-repeat center;
    background-size: 8px auto;
    content: '';
    transition: all 0.3s ease;
  }
}

.p-usageDetail .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 25px;
}

.p-usageDetail .tags li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #F6F6F6;
  margin: 0 3px;
  padding: 1px 5px;
  font-size: 1.1rem;
}

.p-usageDetail img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.p-usageDetail .text {
  margin-bottom: 37px;
}

.p-usageDetail .text p {
  margin-bottom: 2em;
}

@media screen and (min-width: 1025px) {
  .p-usageDetail .tags {
    margin-bottom: 50px;
  }
  .p-usageDetail .tags li {
    padding: 1px 10px;
    font-size: 1.4rem;
  }
  .p-usageDetail img {
    width: auto;
    margin: 0 auto 50px;
  }
  .p-usageDetail .text {
    margin-bottom: 75px;
  }
}

.p-usageOther {
  background: #F6F6F6;
}

.p-usageOther .swiper-container {
  padding-bottom: 40px;
}

.p-usageOther .swiper-slide a {
  display: block;
  padding: 10px 5px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  text-align: center;
  position: relative;
  padding: 0;
}

@media screen and (min-width: 1025px) {
  .p-usageOther .swiper-slide a {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

.p-usageOther .swiper-slide img {
  width: 100%;
  height: auto;
}

.p-usageOther .swiper-slide .text {
  padding: 10px 15px 30px 15px;
  text-align: left;
}

.p-usageOther .swiper-slide .ttl {
  margin-bottom: 10px;
  line-height: 1.5;
}

.p-usageOther .swiper-slide .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.p-usageOther .swiper-slide .tag li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #F6F6F6;
  margin: 0 5px 5px 0;
  padding: 2px 5px;
  font-size: 0.9rem;
}

.p-usageOther .swiper-slide .link {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0 -15px;
  padding: 5px 15px;
  background: #E20A16;
  border-radius: 0 0 5px 5px;
  color: #fff;
}

.p-usageOther .swiper-slide .link:after {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 7px;
  height: 12px;
  margin-top: -6px;
  background: url(/assets/images/common/icon_arrow_right_white.svg) no-repeat center;
  background-size: 7px auto;
  content: '';
  transition: all 0.3s ease;
}

@media screen and (min-width: 1025px) {
  .p-usageOther .swiper-container {
    width: 100%;
    padding-bottom: 50px;
    overflow: hidden;
  }
  .p-usageOther .swiper-slide a {
    padding: 0;
  }
  .p-usageOther .swiper-slide .text {
    padding: 25px;
  }
  .p-usageOther .swiper-slide .ttl {
    margin-bottom: 15px;
    font-size: 2.0rem;
  }
  .p-usageOther .swiper-slide .tag {
    margin-top: 15px;
  }
  .p-usageOther .swiper-slide .tag li {
    padding: 1px 10px;
    font-size: 1.4rem;
  }
  .p-usageOther .swiper-slide .link {
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #E20A16;
    font-weight: 500;
  }
  .p-usageOther .swiper-slide .link:after {
    position: absolute;
    top: 50%;
    right: -20%;
    width: 8px;
    margin-top: -5px;
    background: url(/assets/images/common/icon_arrow_right.svg) no-repeat center;
    background-size: 8px auto;
    content: '';
    transition: all 0.3s ease;
  }
}

/*------------------------------------------------------------
  faq
------------------------------------------------------------*/
.p-faqList {
  background: #F6F6F6;
}

.p-faqList .list li {
  display: block;
  padding: 10px 5px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  text-align: center;
  margin-bottom: 15px;
  padding: 15px;
  text-align: left;
}

@media screen and (min-width: 1025px) {
  .p-faqList .list li {
    padding: 45px 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px rgba(204, 204, 204, 0.5);
  }
}

.p-faqList .list li:last-child {
  margin-bottom: 0;
}

.p-faqList dt {
  margin-bottom: 10px;
  padding-left: 1.2em;
  text-indent: -0.6em;
  font-weight: bold;
  line-height: 1.5;
}

.p-faqList dt span {
  display: inline-block;
  margin-right: 0.5em;
  color: #E20A16;
}

.p-faqList dd {
  padding-left: 1.3em;
  line-height: 1.5;
}

@media screen and (min-width: 1025px) {
  .p-faqList .list li {
    margin-bottom: 25px;
    padding: 30px;
  }
  .p-faqList dt {
    line-height: 1.75;
  }
  .p-faqList dt span {
    margin-right: 1.2em;
  }
  .p-faqList dd {
    padding-left: 2em;
    line-height: 1.75;
  }
  .p-faqList .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

/*------------------------------------------------------------
  tech
------------------------------------------------------------*/
.p-method pre {
  margin: 20px 0;
  font-weight: bold;
}

@media screen and (min-width: 1025px) {
  .p-method pre {
    margin: 40px 0;
  }
  .p-method pre * {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------------
  price
------------------------------------------------------------*/
.p-plan {
  background: #F6F6F6;
}

.p-plan .whiteBox {
  margin-bottom: 25px;
  padding: 20px 25px 25px;
  background: #fff;
  text-align: center;
}

.p-plan .whiteBox a {
  margin-top: 20px;
}

.p-plan .ttl {
  font-size: 1.4rem;
}

.p-plan .ttl span {
  font-weight: bold;
}

.p-plan .price {
  margin-bottom: 10px;
}

.p-plan .price span {
  color: #E20A16;
  font-family: 'Oswald';
  font-size: 2.0rem;
  font-weight: bold;
}

.p-plan .scroll {
  overflow-x: scroll;
}

.p-plan .scroll::-webkit-scrollbar {
  height: 5px;
}

.p-plan .scroll::-webkit-scrollbar-track {
  background: #F1F1F1;
}

.p-plan .scroll::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}

.p-plan table {
  background: #fff;
  width: 100%;
  table-layout: fixed;
}

.p-plan th, .p-plan td {
  padding: 6px 10px;
  width: 195px;
  border: 1px solid #F6F6F6;
  font-size: 1.0rem;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
}

.p-plan .question {
  display: inline-block;
  width: auto;
  height: 8px;
  margin-left: 5px;
  vertical-align: initial;
}

.p-plan .check {
  width: 10px;
  height: auto;
}

@media screen and (min-width: 1025px) {
  .p-plan .scroll {
    margin-bottom: 50px;
    overflow: initial;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(204, 204, 204, 0.5);
    text-align: center;
  }
}

@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .p-plan .scroll {
    box-shadow: 0px 0px 30px 0px rgba(204, 204, 204, 0.5);
  }
}

@media screen and (min-width: 1025px) {
  .p-plan th, .p-plan td {
    width: 33.3%;
    padding: 15px 18px;
    font-size: 1.6rem;
  }
  .p-plan .plan td {
    vertical-align: top;
  }
  .p-plan .whiteBox {
    margin-bottom: 15px;
    padding: 20px 0 0 0;
  }
  .p-plan .ttl {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  .p-plan .price {
    font-size: 1.4rem;
  }
  .p-plan .price span {
    font-size: 3.6rem;
  }
  .p-plan .text {
    font-size: 1.4rem;
  }
  .p-plan .small {
    font-size: 1.2rem;
  }
  .p-plan .question {
    height: 16px;
    vertical-align: -2px;
  }
  .p-plan .check {
    width: 21px;
  }
  .p-plan .option th, .p-plan .option td {
    padding-left: 40px;
    background: #F6F6F6;
    text-align: left;
  }
}

.p-trial .scroll {
  margin-bottom: 15px;
  padding-bottom: 10px;
  overflow-x: scroll;
}

.p-trial .scroll img {
  display: block;
  width: 180%;
  height: auto;
}

.p-trial .scroll::-webkit-scrollbar {
  height: 5px;
}

.p-trial .scroll::-webkit-scrollbar-track {
  background: #F1F1F1;
}

.p-trial .scroll::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}

.p-trial .list li {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .p-trial .scroll {
    margin-bottom: 60px;
    padding-bottom: 0;
    overflow: initial;
  }
  .p-trial .scroll img {
    width: 100%;
  }
}

@media screen and (min-width: 1025px) {
  .p-trial .list li {
    font-size: 1.4rem;
  }
}

.p-flow dt, .p-flow dd {
  text-align: center;
}

.p-flow dt {
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E20A16;
}

.p-flow dt img {
  display: block;
  width: auto;
  height: 36px;
  margin: 0 auto 7px;
}

.p-flow dt span {
  color: #E20A16;
  font-weight: bold;
}

.p-flow dd {
  margin-bottom: 40px;
  line-height: 1.5;
}

.p-flow .ttl {
  margin-bottom: 13px;
  font-size: 1.5rem;
}

@media screen and (min-width: 1025px) {
  .p-flow ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .p-flow li {
    width: 32%;
  }
  .p-flow li:first-child dt:after {
    content: none;
  }
  .p-flow dt {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom-width: 2px;
  }
  .p-flow dt:after {
    position: absolute;
    bottom: -12px;
    left: -9px;
    width: 14px;
    height: 22px;
    margin-top: -6px;
    background: url(/assets/images/common/icon_arrow_right.svg) no-repeat center;
    background-size: 14px auto;
    content: '';
    transition: all 0.3s ease;
  }
  .p-flow dt img {
    height: 70px;
    margin: 0 auto 20px;
  }
  .p-flow dt span {
    font-size: 1.6rem;
  }
  .p-flow dd {
    padding: 0 8%;
  }
  .p-flow .ttl {
    margin-bottom: 15px;
    font-size: 2.0rem;
  }
  .p-flow .small {
    margin-top: 15px;
    font-size: 1.2rem;
  }
}

/*------------------------------------------------------------
  news
------------------------------------------------------------*/
.p-newsList li {
  border-bottom: 1px solid #CCC;
}

.p-newsList li:first-child {
  border-top: 1px solid #CCC;
}

.p-newsList a {
  display: block;
  padding: 15px 0;
  line-height: 1.5;
}

.p-newsList a:hover {
  opacity: 0.7 !important;
}

.p-newsList .date {
  display: inline-block;
  min-width: 60px;
}

.p-newsList .category {
  display: inline-block;
  min-width: 136px;
  margin-left: 15px;
  padding: 1px 20px;
  background: #F6F6F6;
  border-radius: 50px;
  text-align: center;
}

.p-newsList .ttl {
  display: block;
  margin-top: 5px;
}

@media screen and (min-width: 1025px) {
  .p-newsList a {
    padding: 20px 0;
  }
  .p-newsList .date {
    min-width: 80px;
  }
  .p-newsList .category {
    min-width: 150px;
    margin-right: 30px;
    padding: 2px 19px;
    font-size: 1.4rem;
    font-weight: 500;
  }
  .p-newsList .ttl {
    display: inline-block;
    width: calc(100% - 290px);
    margin-top: 0;
    vertical-align: top;
  }
}

/*------------------------------------------------------------
  ユーティリティ
------------------------------------------------------------*/
/*------------------------------------------------------------
  utility
------------------------------------------------------------*/
.u-mt0 {
  margin-top: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-fs0 {
  font-size: 0;
}

.u-flL {
  float: left !important;
}

img.u-flL {
  margin: 0 25px 25px 0;
  display: block;
}

.u-flR {
  float: right !important;
}

img.u-flR {
  margin: 0 0 25px 25px;
  display: block;
}

.u-taC {
  text-align: center !important;
}

.u-taR {
  text-align: right !important;
}

.u-taL {
  text-align: left !important;
}

.u-mtS {
  margin-top: 10px !important;
}

.u-mtM {
  margin-top: 20px !important;
}

.u-mtL {
  margin-top: 30px !important;
}

.u-mbS {
  margin-bottom: 10px !important;
}

.u-mbM {
  margin-bottom: 20px !important;
}

.u-mbL {
  margin-bottom: 30px !important;
}

/* sp */
@media screen and (max-width: 767px) {
  img.u-flL {
    margin: 0 12px 12px 0;
  }
  img.u-flR {
    margin: 0 0 12px 12px;
  }
  .u-mtS {
    margin-top: 5px !important;
  }
  .u-mtM {
    margin-top: 10px !important;
  }
  .u-mtL {
    margin-top: 15px !important;
  }
  .u-mbS {
    margin-bottom: 5px !important;
  }
  .u-mbM {
    margin-bottom: 10px !important;
  }
  .u-mbL {
    margin-bottom: 15px !important;
  }
}

.u-cf {
  *zoom: 1;
}

.u-cf:after {
  display: block;
  clear: both;
  content: "";
}

.u-peN {
  pointer-events: none;
}

.u-track_tags {
  display: none;
}

.u-textLink {
  color: #E20A16;
}

.u-textLink:hover {
  text-decoration: underline !important;
}

.u-mbXL {
  margin-bottom: 50px !important;
}

@media screen and (max-width: 767px) {
  .u-mbXL {
    margin-bottom: 25px !important;
  }
}

/*# sourceMappingURL=style.css.map */