@charset "UTF-8";

/* normalize, 変数(for Sass) */

/*===========
 Basic color
===========*/

/*===========
 main color for this site.
===========*/

/*===========
 etc color for this site.
===========*/

/*===========
 un use
===========*/

@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300i,400&display=swap");

@keyframes topanimation {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: scale(1) !important;
  }
}

/*===========
 標準見出し
===========*/

.section-heading {
  text-align: center;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 85px;
}

.section-heading .roboto {
  font-weight: normal;
  background-color: #DD8D8D;
  font-size: 30px;
  line-height: .7;
  padding: 2px 2px 2px 4px;
  display: inline-block;
  letter-spacing: .1em;
}

.section-heading span:last-of-type {
  background-color: #000000;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: .8;
  padding: 1px 0;
  letter-spacing: 0;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  letter-spacing: 0.05em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

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

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

::selection {
  background: #DD8D8D;
  color: #ffffff;
}

::-moz-selection {
  background: #DD8D8D;
  color: #ffffff;
}

@font-face {
  font-family: "CONDENSEicon";
  src: url(../fonts/CONDENSEicon.eot) format("eot"), url(../fonts/CONDENSEicon.woff) format("woff"), url(../fonts/CONDENSEicon.ttf) format("truetype"), url(../fonts/CONDENSEicon.otf) format("opentype");
}

/* mixin(for Sass) */

/* IEハック用mixin */

/* ベースの要素スタイル */

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: border-box;
}

body {
  background: #FFFFFF;
  /* Fallback for when there is no custom background color defined. */
}

blockquote,
q {
  quotes: "" "";
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

img {
  display: inline-block;
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  width: 100%;
  vertical-align: middle;
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

/*===================================
module flexbox
====================================*/

.flex-col-sp {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex-col-sp_2 > li {
  width: calc(50% - 5px);
}

.flex-col-sp_2_nmargin > li {
  width: 50%;
}

a {
  color: #000000;
  text-decoration: underline;
  transition: .5s;
}

a:visited {
  color: #000000;
}

a:hover,
a:focus,
a:active {
  color: #000000;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

a:hover {
  opacity: 0.7;
}

.link-arrow {
  position: relative;
}

.link-arrow::after {
  margin-left: 5px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  display: inline-block;
  font-weight: bold;
}

.link-arrow__left::before {
  content: "▶";
  display: inline-block;
  margin-right: 5px;
  font-size: 12px;
  color: #86c644;
}

.link--green {
  color: #86c644;
}

.link--green:visited {
  color: #86c644;
}

.link--gold {
  color: #836900 !important;
  font-weight: bold;
}

/* ========================
hoverで横線が出てくるやつ
==========================*/

.c-viewlinks {
  margin: 30px 0 0 0;
  text-align: center;
}

.viewlinks {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
  font-size: 14px;
}

.viewlinks::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: linear-gradient(-90deg, #9ed9ed, #d592ff, #ff9993);
  position: absolute;
  left: -100%;
  bottom: 0;
  transition: all 0.2s ease;
}

.viewlinks::after {
  margin-left: 10px;
}

.viewlinks:hover::before {
  left: 0;
}

.js-hover:hover {
  opacity: 1;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol > li {
  counter-increment: number;
  position: relative;
}

ol > li:before {
  content: counter(number) ".";
  display: block;
  margin-left: -1em;
  position: absolute;
  top: 0;
  left: 0;
}

dl {
  margin: 0;
}

dl dd {
  margin: 0;
}

ol.numlist {
  padding-left: 1.5em;
}

table {
  margin: 0 0 1em;
  table-layout: fixed;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

th {
  font-weight: normal;
}

.table {
  margin-top: 20px;
  border: 1px solid #E2E2E2;
  text-align: center;
}

.table dl dt {
  background-color: #f5f5f4;
  padding: 10px;
}

.table dl dd {
  padding: 10px;
}

.table--default {
  margin: 0;
}

.table--default dl {
  line-height: 1.8;
}

.table .table-list > li {
  margin-top: 10px;
}

.table .table-list > li:first-child {
  margin-top: 0;
}

.table .table-note {
  display: block;
  position: relative;
  font-size: 10px;
}

.table .table-note::before {
  content: "※";
  display: inline-block;
}

.table-ordered > li {
  width: 100%;
  display: table;
  margin-bottom: 15px;
  border: 1px solid #f5f5f4;
  border-collapse: collapse;
}

.table-ordered > li::before {
  display: none;
}

.table-ordered > li .table-ordered__num {
  display: table-cell;
  width: 35px;
  background-color: #f0f3f8;
  border: 1px solid #f5f5f4;
  color: #3E9BC7;
  font-family: "Times New Roman";
  font-style: italic;
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
}

.table-ordered > li .table-ordered__txt {
  display: table-cell;
  vertical-align: middle;
  padding: 20px 10px;
  border: 1px solid #f5f5f4;
}

.table-ordered > li .table-ordered__txt .table-ordered__title {
  font-size: 14px;
}

.table-ordered > li .table-ordered__txt .table-ordered__txt--last {
  font-weight: bold;
  font-size: 19px;
}

body,
button,
input,
select,
textarea {
  color: #000000;
  font-family: "Noto Sans CJK JP", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "HiraKakuProN-W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 0;
}

p {
  margin: 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

/* ライブラリ */

/* Slider */

.slick-loading .slick-list {
  background: #fff url("./../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */

@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */

.slick-dots {
  position: absolute;
  bottom: 0;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  right: 40px;
  bottom: 14px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 5px;
  width: 5px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 5px;
  width: 5px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  border-radius: 50%;
  line-height: 5px;
  text-align: center;
  color: white;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  background-color: white;
  color: white;
  opacity: 1;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  max-height: 100vh;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */

@font-face {
  font-family: 'lightcase';
  src: url(./fonts/lightcase.eot?55356177);
  src: url(./fonts/lightcase.eot?55356177#iefix) format("embedded-opentype"), url(./fonts/lightcase.woff?55356177) format("woff"), url(./fonts/lightcase.ttf?55356177) format("truetype"), url(./fonts/lightcase.svg?55356177#lightcase) format("svg");
  font-weight: normal;
  font-style: normal;
}

[class*='lightcase-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */

.lightcase-icon-play:before {
  content: '\e800';
}

.lightcase-icon-pause:before {
  content: '\e801';
}

.lightcase-icon-close:before {
  content: '\e802';
}

.lightcase-icon-prev:before {
  content: '\e803';
}

.lightcase-icon-next:before {
  content: '\e804';
}

.lightcase-icon-spin:before {
  content: '\e805';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */

/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */

/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */

/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */

@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-moz-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-o-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-ms-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: none;
}

html[data-lc-type=inline] #lightcase-content,
html[data-lc-type=ajax] #lightcase-content,
html[data-lc-type=error] #lightcase-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important;
}

#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}

.lightcase-open body {
  overflow: hidden;
}

.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%;
}

#lightcase-info {
  position: absolute;
  padding-top: 15px;
}

#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}

#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa;
}

#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}

#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}

#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  -moz-animation: lightcase-spin 0.5s infinite linear;
  -o-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear;
}

#lightcase-loading,
#lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}

a[class*='lightcase-icon-'],
a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

a[class*='lightcase-icon-'] > span {
  display: inline-block;
  text-indent: -9999px;
}

a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white;
}

.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none;
}

a[class*='lightcase-icon-'].lightcase-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
}

a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px;
}

a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px;
}

a[class*='lightcase-icon-'].lightcase-icon-pause,
a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em;
}

#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
}

/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.5.0 (11/03/2018)
 */

/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */

@font-face {
  font-family: 'lightcase';
  src: url(./fonts/lightcase.eot?55356177);
  src: url(./fonts/lightcase.eot?55356177#iefix) format("embedded-opentype"), url(./fonts/lightcase.woff?55356177) format("woff"), url(./fonts/lightcase.ttf?55356177) format("truetype"), url(./fonts/lightcase.svg?55356177#lightcase) format("svg");
  font-weight: normal;
  font-style: normal;
}

[class*='lightcase-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */

.lightcase-icon-play:before {
  content: '\e800';
}

.lightcase-icon-pause:before {
  content: '\e801';
}

.lightcase-icon-close:before {
  content: '\e802';
}

.lightcase-icon-prev:before {
  content: '\e803';
}

.lightcase-icon-next:before {
  content: '\e804';
}

.lightcase-icon-spin:before {
  content: '\e805';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */

/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */

/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */

/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */

@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-moz-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-o-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-ms-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: none;
}

html[data-lc-type=inline] #lightcase-content,
html[data-lc-type=ajax] #lightcase-content,
html[data-lc-type=error] #lightcase-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important;
}

#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}

.lightcase-open body {
  overflow: hidden;
}

.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%;
}

#lightcase-info {
  position: absolute;
  padding-top: 15px;
}

#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}

#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa;
}

#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}

#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}

#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  -moz-animation: lightcase-spin 0.5s infinite linear;
  -o-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear;
}

#lightcase-loading,
#lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}

a[class*='lightcase-icon-'],
a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

a[class*='lightcase-icon-'] > span {
  display: inline-block;
  text-indent: -9999px;
}

a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white;
}

.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none;
}

a[class*='lightcase-icon-'].lightcase-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
}

a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px;
}

a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px;
}

a[class*='lightcase-icon-'].lightcase-icon-pause,
a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em;
}

#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
}

/* コンポーネント */

/* 共通レイアウト(header, footer, etc.) */

/*=========================
common footer
==========================*/

.l-footer {
  margin-top: 30px;
  padding: 20px 0 25px;
  background-color: #DD8D8D;
  position: relative;
}

.l-footer .l-footer-inner {
  position: relative;
}

.l-footer .l-footer-inner .flex-col-box {
  overflow: hidden;
}

.l-footer .l-footer-inner .flex-col-box h1 {
  width: 148px;
  float: left;
  margin-left: 17px;
}

.l-footer .l-footer-inner .flex-col-box .l-footer-address {
  color: #FFF;
  float: left;
  margin: 25px 0 0 15px;
  letter-spacing: .015em;
}

.l-footer .l-footer-inner .flex-col-box .l-footer-address h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.l-footer .l-footer-inner .flex-col-box .l-footer-address a {
  color: #fff;
  text-decoration: none;
}

.l-footer .l-footer-inner .flex-col-box .l-footer-address a .u-pc-hide {
  display: none !important;
}

.l-footer .l-footer-inner .flex-col-box nav {
  padding: 0;
  margin-right: 15px;
}

.l-footer .l-footer-inner .flex-col-box nav li {
  display: inline-block;
  margin-right: 27px;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  font-weight: 300;
  letter-spacing: .015em;
}

.l-footer .l-footer-inner .flex-col-box nav li:first-of-type span {
  text-indent: 4px;
  display: inline-block;
}

.l-footer .l-footer-inner .flex-col-box nav li span {
  font-size: 20px;
  letter-spacing: .15em;
  font-weight: 500;
}

.l-footer .l-footer-inner .flex-col-box nav li a {
  color: #FFF;
  text-decoration: none;
}

.l-footer .l-footer-inner .flex-col-box nav li:hover {
  opacity: .75;
}

.l-footer .l-footer-inner .flex-col-box nav li:last-of-type {
  margin-right: 0;
}

.l-footer .l-footer-inner .flex-col-box nav.u-sp-hide {
  display: block !important;
  float: right;
  margin-right: 42px;
}

.l-footer .l-footer-inner .flex-col-box nav.u-sp-hide ul {
  margin: 35px 0 25px;
}

.l-footer .l-footer-inner .flex-col-box .l-footer-link {
  overflow: hidden;
  display: block !important;
  width: 100%;
}

.l-footer .l-footer-inner .flex-col-box .l-footer-link li {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  position: relative;
  margin-right: 13px;
}

.l-footer .l-footer-inner .flex-col-box .l-footer-link li a {
  color: #fff;
  padding-left: 15px;
  text-decoration: none;
}

.l-footer .l-footer-inner .flex-col-box .l-footer-link li a:before {
  content: '';
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  position: absolute;
  top: 50%;
  left: 2px;
  margin-top: -4px;
  transform: rotate(45deg);
}

.Win .l-footer .l-footer-inner .flex-col-box .l-footer-link li a:before {
  margin-top: -5px;
}

_:-ms-fullscreen,
:root .Win .l-footer .l-footer-inner .flex-col-box .l-footer-link li a:before {
  margin-top: -6px;
}

.l-footer .l-footer-inner .flex-col-box .l-footer-link li:last-of-type {
  margin-right: 40px;
  float: right;
}

.l-footer .copyright {
  display: none;
}

.l-pagetop {
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  bottom: 160px;
  right: 40px;
  display: block;
  line-height: 1.2;
  text-align: center;
  width: 65px;
  height: 65px;
  background-color: #000;
  border-radius: 50%;
  vertical-align: middle;
  z-index: 999;
}

.l-pagetop a {
  display: block;
  padding-top: 23px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
}

.l-pagetop a:before {
  content: '';
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.l-footer.l-footer-tenshoku {
  background-color: #000000;
  padding: 65px 0 55px;
}

.l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box h1 {
  margin-left: 66px;
  width: 188px;
}

.l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box .l-footer-link {
  margin: 20px 0 30px;
  display: block !important;
}

.l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box .l-footer-link li {
  font-size: 16px;
  padding-left: 5px;
  margin-right: 50px;
  letter-spacing: 0;
}

.l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box .l-footer-link li a:before {
  width: 10px;
  height: 10px;
  margin-top: -6px;
}

_:-ms-fullscreen,
:root .Win .l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box .l-footer-link li a:before {
  margin-top: -9px;
}

.l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box .l-footer-link li:last-of-type {
  float: none;
}

.l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box .copyright {
  text-align: right;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  margin-right: 50px;
}

.single-event .l-footer.l-footer-tenshoku {
  margin-top: 0;
}

.l-pagetop.tenshoku {
  background-color: #DD8D8D;
  bottom: 160px;
}

_::-webkit-full-page-media,
_:future,
:root .l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box .l-footer-link li a:before {
  margin-top: -6px;
}

.wpcf7-form {
  padding: 175px 0 85px;
  margin-top: -175px;
  width: 100%;
}

.wpcf7-form table {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}

.wpcf7-form table tr th {
  width: 240px;
  padding-left: 70px;
  padding-bottom: 13px;
  font-size: 16px;
  font-weight: 600;
  vertical-align: top;
  position: relative;
  text-align: left;
}

.wpcf7-form table tr td {
  width: 533px;
  padding-bottom: 13px;
}

.wpcf7-form table tr span.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-form table tr.require th:before {
  position: absolute;
  left: 15px;
  content: "必須";
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background-color: #DD8D8D;
  padding: 2px 7px;
  border-radius: 15px;
}

_:-ms-fullscreen,
:root .wpcf7-form table tr.require th:before {
  padding: 2px 7px 0 7px;
  top: -3px;
}

.wpcf7-form table tr.l-form-select td span.wpcf7-form-control-wrap {
  width: 153px;
}

.wpcf7-form table tr.form-year td span.wpcf7-form-control-wrap {
  width: 66px;
  overflow: visible;
}

.wpcf7-form table tr.form-year td:after {
  content: "歳";
  display: inline-block;
  padding-left: 8px;
  vertical-align: middle;
}

.wpcf7-form table tr.l-form-check td span.first label {
  margin-right: 2.82em;
}

.wpcf7-form table tr.l-form-check td span.wpcf7-list-item {
  margin-bottom: 8px;
}

.wpcf7-form table tr.form-text th .u-pc-hide {
  display: none !important;
}

.wpcf7-form table tr.privacy-policy td {
  width: 100%;
  background-color: #F5F5F5;
  font-size: 12px;
  padding: 18px;
  height: 235px;
  text-align: left;
  display: block;
  overflow: auto;
  font-weight: 300;
}

.wpcf7-form table tr.privacy-policy td p {
  margin-bottom: 10px;
}

.wpcf7-form ul.l-submit-btn {
  text-align: center;
}

.wpcf7-form ul.l-submit-btn li {
  display: inline-block;
}

.wpcf7-form ul.l-submit-btn li.c-confirm-btn {
  width: 68%;
}

.wpcf7-form ::-webkit-scrollbar {
  width: 13px;
}

.wpcf7-form ::-webkit-scrollbar-track {
  border-radius: 30px;
  background: #F5F5F5;
}

.wpcf7-form ::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: #D6E5EB;
}

.wpcf7-form div.wpcf7-response-output {
  text-align: center;
}

.wpcf7-form div.wpcf7-validation-errors,
.wpcf7-form div.wpcf7-acceptance-missing {
  border-color: #DD8D8D;
}

.wpcf7-form.custom-wpcf7c-confirmed {
  width: 592px;
  padding-bottom: 93px;
}

.wpcf7-form.custom-wpcf7c-confirmed table {
  margin-bottom: 80px;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr {
  border-bottom: 1px solid #E2E2E2;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr th {
  padding-left: 0;
  width: 240px;
  font-size: 14px;
  padding: 20px 0 20px;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr th:before {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr td {
  width: 352px;
  padding: 20px 0 20px;
  vertical-align: top;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr td input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr td .wpcf7c-conf {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 0;
  font-size: 14px !important;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr:first-of-type {
  border-top: 1px solid #E2E2E2;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-radio input[type="hidden"] {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-radio .wpcf7-list-item-label {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-radio input[type="hidden"] + .wpcf7-list-item-label {
  display: inline-block;
  font-size: 14px;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.form-year td span {
  width: 1.7em;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.form-year td:after {
  vertical-align: top;
  font-size: 14px;
  padding: 2px 0 0;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-select span.wpcf7-form-control-wrap {
  background: none;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-select span.wpcf7-form-control-wrap select.wpcf7c-conf {
  font-size: 14px;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-select span.wpcf7-form-control-wrap:before,
.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-select span.wpcf7-form-control-wrap:after {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-check input[type="hidden"] {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-check .wpcf7-list-item.first label {
  margin-right: 0;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-check .wpcf7-list-item-label {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-check input[type="hidden"] + .wpcf7-list-item-label {
  display: inline-block;
  padding-left: 0;
  font-size: 14px;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-check input[type="hidden"] + .wpcf7-list-item-labelbefore {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.l-form-check input[type="hidden"] + .wpcf7-list-item-label:before {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed table tr.privacy-policy {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed ul.l-submit-btn {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.wpcf7-form.custom-wpcf7c-confirmed ul.l-submit-btn li.c-confirm-back {
  width: 48.8%;
}

.wpcf7-form.custom-wpcf7c-confirmed ul.l-submit-btn li.c-confirm-submit {
  width: 48.8%;
}

.wpcf7-form.custom-wpcf7c-confirmed.sent .formTable {
  display: none;
}

.wpcf7-form.custom-wpcf7c-confirmed.sent .wpcf7c-elm-step3 {
  text-align: center;
  margin-top: 90px;
}

.wpcf7-form.custom-wpcf7c-confirmed.sent .wpcf7c-elm-step3 a {
  background-color: #DD8D8D;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  padding: 12px 0;
  width: 89%;
  border-radius: 30px;
  margin: 130px auto 70px;
  display: inline-block;
  text-decoration: none;
  line-height: 2;
}

.wpcf7-form.custom-wpcf7c-confirmed.sent .wpcf7-response-output {
  display: none !important;
}

/*=========================
header
==========================*/

.l-header .l-header-inner {
  position: relative;
  overflow: hidden;
}

.l-header .l-header-inner h1 {
  font-size: 0;
  left: 36px;
  z-index: 999;
  top: 36px;
  position: fixed;
}

.l-header .l-header-inner nav.u-sp-hide {
  position: fixed;
  left: 36px;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
}

.l-header .l-header-inner nav.u-sp-hide li {
  font-size: 10px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 28px;
}

.l-header .l-header-inner nav.u-sp-hide li a {
  text-decoration: none;
  color: #707070;
  opacity: 1;
}

.l-header .l-header-inner nav.u-sp-hide li a span.roboto {
  font-size: 20px;
  letter-spacing: .12em;
  font-weight: 500;
  color: #000000;
  transition: .5s;
}

.l-header .l-header-inner nav.u-sp-hide li a:hover {
  color: #DD8D8D;
}

.l-header .l-header-inner nav.u-sp-hide li a:hover span.roboto {
  color: #DD8D8D;
}

.l-header .l-header-inner nav.toggle {
  display: block;
  position: fixed;
  right: 4.3%;
  top: 18px;
  transform: translateY(0);
}

.l-header .l-header-inner .trigger,
.l-header .l-header-inner .trigger span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.l-header .l-header-inner .trigger {
  position: relative;
  width: 30px;
  height: 20px;
}

.l-header .l-header-inner .trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
}

.l-header .l-header-inner .trigger span:nth-of-type(1) {
  top: 0;
}

.l-header .l-header-inner .trigger span:nth-of-type(2) {
  top: 9px;
}

.l-header .l-header-inner .trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #000000;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.l-header .l-header-inner .trigger span:nth-of-type(3) {
  bottom: 0;
}

.l-header .l-header-inner.active nav.toggle {
  z-index: 9999;
  right: 4.3%;
  top: 19px;
  padding: 0;
}

.l-header .l-header-inner.active .trigger span:nth-of-type(1) {
  -webkit-transform: translateY(8px) scale(0);
  transform: translateY(8px) scale(0);
}

.l-header .l-header-inner.active .trigger span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.l-header .l-header-inner.active .trigger span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.l-header .l-header-inner.active .trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) scale(0);
  transform: translateY(-8px) scale(0);
}

.l-header .l-header-inner.active .trigger span:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}

.l-header .l-header-inner.active .trigger span:nth-of-type(2) {
  transform: rotate(-45deg);
}

.l-header .l-header-inner.active .trigger span:nth-of-type(2):after {
  transform: rotate(90deg);
}

.l-header .l-header-inner.active .trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) scale(0);
  transform: translateY(-8px) scale(0);
}

.l-header .toggleWrap {
  position: fixed;
  min-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(221, 141, 141, 0.9);
  transition-duration: .2s;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  padding: 0;
}

.l-header .toggleWrap h1 {
  width: 53.3%;
  padding: 10.5vh 0 0 16%;
  box-sizing: content-box;
}

.l-header .toggleWrap ul.toggle-item {
  position: absolute;
  top: 50%;
  left: 16%;
  transform: translateY(-50%);
  width: 84%;
}

.l-header .toggleWrap ul.toggle-item li.toggle-item-list {
  font-size: 10px;
  line-height: 1.7;
  margin-bottom: 2.8vh;
  font-weight: 300;
  letter-spacing: 0;
}

.l-header .toggleWrap ul.toggle-item li.toggle-item-list span.roboto {
  font-size: 24px;
  letter-spacing: .1em;
  font-weight: 500;
  margin-right: 5px;
}

.l-header .toggleWrap ul.toggle-item li.toggle-item-list a {
  text-decoration: none;
  color: #ffffff;
}

.l-header .toggleWrap ul.toggle-item li.toggle-item-list:hover {
  opacity: .75;
}

.l-header .toggleWrap ul.l-header-link {
  position: absolute;
}

.l-header .toggleWrap ul.l-header-link li {
  position: relative;
  font-size: 12px;
  margin-top: 17px;
}

.l-header .toggleWrap ul.l-header-link li a {
  color: #ffffff;
  padding-left: 13px;
  text-decoration: none;
}

.l-header .toggleWrap ul.l-header-link li a:before {
  content: '';
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -3px;
  transform: rotate(45deg);
}

.l-header .toggleWrap.animation {
  z-index: 999;
  opacity: .95;
  visibility: visible;
}

.l-header.l-header-tenshoku {
  width: 100%;
  padding: 32px 32px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.l-header.l-header-tenshoku .l-header-inner {
  overflow: hidden;
}

.l-header.l-header-tenshoku .l-header-inner nav.toggle {
  position: relative;
  cursor: pointer;
}

.l-header.l-header-tenshoku .l-header-inner nav.toggle p {
  font-size: 12px;
  letter-spacing: .015em;
  margin-bottom: 5px;
}

.l-header.l-header-tenshoku .l-header-inner nav.toggle.u-pc-hide {
  position: relative;
  right: 0;
  top: 0;
  float: right;
}

.l-header.l-header-tenshoku .l-header-inner nav.toggle.u-pc-hide span {
  background-color: #000000;
}

.l-header.l-header-tenshoku .l-header-inner nav.toggle.u-pc-hide span:nth-of-type(2)::after {
  background-color: #000000;
}

.l-header.l-header-tenshoku .l-header-inner h1 {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  margin-left: 20px;
  padding-top: 3px;
}

.l-header.l-header-tenshoku .toggleWrap {
  background-color: rgba(255, 255, 255, 0.9);
}

.l-header.l-header-tenshoku .toggleWrap h1 {
  width: 163px;
  padding: 0;
}

.l-header.l-header-tenshoku .toggleWrap h1 img {
  width: 100%;
}

.l-header.l-header-tenshoku .toggleWrap ul.l-header-link {
  position: relative;
  margin-top: 60px;
}

.l-header.l-header-tenshoku .toggleWrap ul.l-header-link li {
  position: relative;
  font-size: 17px;
  margin-top: 35px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.l-header.l-header-tenshoku .toggleWrap ul.l-header-link li a {
  color: #DD8D8D;
  padding-left: 20px;
  text-decoration: none;
}

.l-header.l-header-tenshoku .toggleWrap ul.l-header-link li a:before {
  content: '';
  width: 11px;
  height: 11px;
  border: 0;
  border-top: solid 1px #DD8D8D;
  border-right: solid 1px #DD8D8D;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
  transform: rotate(45deg);
}

.l-header.active .l-header-inner h1 img.c-logo-mono {
  display: none;
  animation-duration: .5s;
  animation-name: fade-out;
}

.l-header.active .l-header-inner h1 img.c-logo-color {
  z-index: 0;
  position: relative;
  visibility: visible;
  animation-duration: .5s;
  animation-name: fade-in;
}

.l-header.active .l-header-inner .trigger span {
  animation-duration: .5s;
  background-color: #000000;
  animation-name: changeColor;
}

.l-header.active .l-header-inner .trigger span:nth-of-type(2)::after {
  animation-duration: .5s;
  background-color: #000000;
}

@keyframes fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }

  50% {
    visibility: visible;
    opacity: .5;
  }

  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    visibility: visible;
    opacity: 1;
  }

  50% {
    visibility: visible;
    opacity: .5;
  }

  100% {
    visibility: hidden;
    opacity: 0;
    position: absolute;
  }
}

_::-webkit-full-page-media,
_:future,
:root .l-header.l-header-tenshoku .toggleWrap ul.l-header-link li a:before {
  margin-top: -5px;
}

.animation {
  transition-property: opacity, visibility;
  transition-timing-function: ease-in;
}

.hide {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.l-wrapper {
  opacity: 0;
  transition: 1s ease-out;
}

.ready .l-wrapper {
  opacity: 1;
}

.l-loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #FFF;
  top: 0;
}

.l-loading .spinner {
  width: 62px;
  height: 63.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ready .l-loading {
  display: none;
}

.page .mainvisual {
  overflow: hidden;
  width: 100vw;
  position: relative;
  z-index: -1;
}

.page .mainvisual .l-carousel {
  width: calc(100vw - 90px);
  height: 100vh;
  float: right;
  position: relative;
}

.page .mainvisual .l-carousel .l-scroll {
  width: 90px;
  position: absolute;
  bottom: 0;
  left: -90px;
  z-index: 99;
}

.page .mainvisual .l-carousel .l-scroll .l-scroll-inner {
  position: relative;
  height: 110px;
}

.page .mainvisual .l-carousel .l-scroll .l-scroll-inner .roboto {
  font-size: 12px;
  transform: rotate(90deg);
  position: absolute;
  bottom: 50px;
  right: -12px;
  width: 100px;
  font-weight: 300;
  font-style: italic;
}

.page .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg {
  position: absolute;
  bottom: 0;
  right: 53px;
  overflow: hidden;
  width: 1px;
  height: 110px;
  background: #707070;
}

.page .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg .bg-line {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(-110px);
  animation: scrolldown 1.4s cubic-bezier(0.25, 0.25, 0.75, 0.75) forwards infinite;
  background: #cacaca;
  background-size: 100% 200%;
}

@keyframes scrolldown {
  0% {
    transform: translateY(-110px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(110px);
  }
}

.page .mainvisual .l-carousel .mainvisual-wrapper {
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
  position: relative;
}

.page .mainvisual .l-carousel .mainvisual-wrapper .mainvisual-upper,
.page .mainvisual .l-carousel .mainvisual-wrapper .mainvisual-lower {
  width: calc(100vw - 90px);
  height: 50vh;
}

.page .l-section_1 {
  margin-top: calc(-50vh - 12px);
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
  width: 1014px;
  padding-left: 90px;
  box-sizing: content-box;
}

_:-ms-fullscreen,
:root .page .section-heading span:last-of-type {
  padding: 6px 0 0;
}

.page h3.section-subheading {
  font-size: 14px;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 11px;
  color: #DD8D8D;
  font-weight: normal;
}

.page h3.section-subheading .roboto {
  font-size: 30px;
  letter-spacing: .1em;
}

.page h3.section-subheading span:nth-of-type(2) {
  color: #ffffff;
  background-color: #000000;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: .8;
  padding: 1px 0;
  letter-spacing: 0;
}

_:-ms-fullscreen,
:root .page h3.section-subheading span:nth-of-type(2) {
  padding: 6px 0 0;
}

.l-info {
  background-color: #F8F8F8;
  padding-left: 90px;
}

.l-info dl.l-info-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 708px;
}

.l-info dl.l-info-list dt {
  font-size: 16px;
  width: 80px;
  letter-spacing: .01em;
}

.l-info dl.l-info-list dd {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow: hidden;
  margin-bottom: 10px;
}

.Win .l-info dl.l-info-list dd {
  font-weight: 500;
}

.l-event {
  width: 1014px;
  margin: 0 auto 60px;
  box-sizing: content-box;
}

.l-event .flex-col-box {
  width: 325px;
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
}

.l-event .flex-col-box .l-event-inner {
  width: 301px;
  float: left;
}

.l-event .flex-col-box .l-event-inner .c-event-pic {
  position: relative;
  background-color: #ffffff;
}

.l-event .flex-col-box .l-event-inner .c-event-pic .c-event-place {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  padding: 10px 15px;
  line-height: 1;
  color: #fff;
  background-color: #DD8D8D;
}

.l-event .flex-col-box .l-event-inner h3.c-event-title {
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0;
}

.l-event .flex-col-box .l-event-inner h3.c-event-title a {
  text-decoration: none;
}

.l-event .flex-col-box .l-event-inner .c-event-date {
  line-height: 1;
  position: relative;
  padding-left: 50px;
}

.l-event .flex-col-box .l-event-inner .c-event-date:before {
  content: '開催日';
  font-size: 10px;
  color: #fff;
  background-color: #717171;
  border-radius: 7px;
  padding: 3px 4px 2px 6px;
  position: absolute;
  top: 0;
  left: 0;
}

_:-ms-fullscreen,
:root .Win .l-event .flex-col-box .l-event-inner .c-event-date:before {
  padding: 3px 4px 4px 6px;
  top: -2px;
}

.l-event .flex-col-box a.c-link {
  padding-top: 190px;
  position: relative;
  float: right;
}

.l-event .flex-col-box a.c-link:before {
  content: '';
  width: 1px;
  height: 182px;
  background-color: #707070;
  display: block;
  position: absolute;
  top: 0;
  left: 40%;
}

.wp-pagenavi {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  text-align: center;
  margin-bottom: 70px;
}

.wp-pagenavi .page-numbers {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: #DD8D8D;
  border-radius: 15px;
  text-decoration: none;
  color: #ffffff;
  padding-top: 2px;
  margin: 0 8px;
  letter-spacing: 0;
}

.wp-pagenavi .page-numbers.current {
  background-color: #000000;
}

/* ページごとのスタイル */

/* ====================
home
=======================*/

.home {
  overflow: auto;
}

.home .mainvisual {
  overflow: hidden;
  width: 100vw;
  position: relative;
}

.home .mainvisual .mv-lead {
  font-size: 75px;
  line-height: 1.06;
  position: absolute;
  left: 2.3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

.home .mainvisual .mv-lead span {
  text-indent: 1.6em;
  display: inline-block;
}

.home .mainvisual .mv-copyright {
  position: absolute;
  font-size: 0;
  width: 10px;
  right: 37px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

.home .mainvisual .mv-copyright img {
  width: auto;
}

.home .mainvisual .l-carousel {
  width: calc(100vw - 90px);
  height: 100vh;
  float: right;
  position: relative;
}

.home .mainvisual .l-carousel .l-scroll {
  width: 90px;
  position: absolute;
  bottom: 0;
  left: -90px;
}

.home .mainvisual .l-carousel .l-scroll .l-scroll-inner {
  position: relative;
  height: 110px;
}

.home .mainvisual .l-carousel .l-scroll .l-scroll-inner .roboto {
  font-size: 12px;
  transform: rotate(90deg);
  position: absolute;
  bottom: 50px;
  right: -12px;
  width: 100px;
  font-weight: 300;
  font-style: italic;
}

.home .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg {
  position: absolute;
  bottom: 0;
  right: 53px;
  overflow: hidden;
  width: 1px;
  height: 110px;
  background: #707070;
}

.home .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg .bg-line {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(-110px);
  animation: scrolldown 1.4s cubic-bezier(0.25, 0.25, 0.75, 0.75) forwards infinite;
  background: #cacaca;
  background-size: 100% 200%;
}

@keyframes scrolldown {
  0% {
    transform: translateY(-110px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(110px);
  }
}

.home .mainvisual .l-carousel .slide-container {
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
  position: relative;
}

.home .mainvisual .l-carousel .slide-container h2.mainvisual-logo {
  width: 595px;
  position: absolute;
  z-index: 99;
  top: 34%;
  right: 6%;
}

.home .mainvisual .l-carousel .slide-container .slidesWrap {
  position: relative;
  transition: opacity .5s linear;
  height: 50vh;
  overflow: hidden;
}

.home .mainvisual .l-carousel .slide-container .slidesWrap .list {
  height: 50vh;
  position: relative;
}

.home .mainvisual .l-carousel .slide-container .slidesWrap .list .slide {
  width: calc(100vw - 90px);
  height: 50vh;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.home .mainvisual .l-carousel .slide-container .slidesWrap .list .slide a {
  width: 100%;
  height: 50vh;
  display: block !important;
  color: transparent;
  z-index: 0;
  overflow: hidden;
}

.home .mainvisual .l-carousel .slide-container .slidesWrap .list .slide a:hover {
  opacity: 1;
}

.home .mainvisual .l-carousel .slide-container .slidesWrap .list .slide:hover {
  opacity: 1;
}

.home .mainvisual .mv-wrapper-upper .slide1 a {
  background: url(../images/top/img_top_kv01@2x.jpg) no-repeat center center;
  background-size: cover;
}

.home .mainvisual .mv-wrapper-upper .slide2 a {
  background: url(../images/top/img_top_kv_07@2x.jpg) no-repeat center center;
  background-size: cover;
}

.home .mainvisual .mv-wrapper-upper .slide3 a {
  background: url(../images/top/img_top_kv05@2x.jpg) no-repeat center center;
  background-size: cover;
}

.home .mainvisual .mv-wrapper-lower .slide1 a {
  background: url(../images/top/img_top_kv02@2x.jpg) no-repeat center center;
  background-size: cover;
}

.home .mainvisual .mv-wrapper-lower .slide2 a {
  background: url(../images/top/img_top_kv_09@2x.jpg) no-repeat top center;
  background-size: cover;
}

.home .mainvisual .mv-wrapper-lower .slide3 a {
  background: url(../images/top/img_top_kv06@2x.jpg) no-repeat center center;
  background-size: cover;
}

.home .mainvisual img {
  width: 100%;
}

.home h2.section-heading {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
}

.home h2.section-heading .roboto {
  font-size: 20px;
  padding-right: 10px;
  letter-spacing: .12em;
}

.home h2.section-heading a.roboto {
  font-size: 14px;
  position: absolute;
  top: 25%;
  right: 0;
  line-height: 1;
  text-decoration: none;
}

.home h2.section-heading a.roboto:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  top: 50%;
  right: 3px;
  margin-top: -2px;
  transform: rotate(45deg);
}

.home .l-info {
  overflow: hidden;
}

.home .l-info .flex-col {
  min-width: 1014px;
  box-sizing: content-box;
}

.home .l-info .flex-col .flex-col-box:first-of-type {
  padding-top: 34px;
  width: calc(100% - 470px);
}

.home .l-info .flex-col .flex-col-box:first-of-type .section-heading:after {
  content: '';
  width: calc(100% - 245px);
  height: 1px;
  background-color: #707070;
  display: block;
  position: absolute;
  top: 60%;
  left: 190px;
}

.home .l-info .flex-col .flex-col-box:first-of-type .section-heading a.roboto {
  top: 10%;
}

.home .l-info .flex-col .flex-col-box:first-of-type dl.l-info-list {
  justify-content: left;
  width: 100%;
}

.home .l-info .flex-col .flex-col-box:first-of-type dl.l-info-list dt {
  width: 80px;
}

.home .l-info .flex-col .flex-col-box:first-of-type dl.l-info-list dd {
  width: calc(100% - 80px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300;
}

.home .l-info .flex-col .flex-col-box:last-of-type {
  width: 420px;
}

.home .l-event {
  padding: 25px 0 0 90px;
}

.home .l-event h2.section-heading {
  color: #DD8D8D;
}

.home .l-event h2.section-heading .roboto {
  color: #DD8D8D;
}

.home .l-event h2.section-heading a {
  color: #DD8D8D;
}

.home .l-event h2.section-heading a:after {
  border-color: #DD8D8D;
}

.home h2.section-heading {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #818181;
  position: relative;
}

.home h2.section-heading .roboto {
  font-size: 20px;
  font-weight: normal;
  color: #000000;
  background-color: transparent;
}

.home h3.section-subheading {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  margin-bottom: 25px;
}

.home h3.section-subheading span {
  background-color: #ffffff;
  padding-right: .75em;
}

.home h3.section-subheading:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #707070;
  display: block;
  position: absolute;
  top: 50%;
  z-index: -1;
}

_:-ms-fullscreen,
:root .home h3.section-subheading:after {
  /* IE11以上 */
  top: 35%;
}

.home section.l-section {
  width: 1280px;
  margin: 0 auto;
}

.home ::-webkit-scrollbar {
  width: 13px;
}

.home ::-webkit-scrollbar-track {
  border-radius: 30px;
  background: #ffffff;
}

.home ::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: #D6E5EB;
}

/* ユーティリティ(color, size, spacing, etc.) */

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

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

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

.u-ta-j {
  text-align: justify !important;
  -ms-text-justify: inter-ideograph !important;
  text-justify: inter-ideograph !important;
}

.u-bc-lightgray {
  background-color: #f5f5f4 !important;
}

.u-bc-blue {
  background-color: #2e80ff !important;
}

.u-bc-white {
  background-color: #ffffff;
}

.u-bc--salmon {
  background-color: #feb38a;
}

.u-bc--skyblue {
  background-color: #a9dee4;
}

.u-bdr-t {
  border-top: 1px solid !important;
}

.u-bdr-b {
  border-bottom: 1px solid !important;
}

.u-bdr-l {
  border-left: 1px solid !important;
}

.u-bdr-r {
  border-right: 1px solid !important;
}

.u-bdr-n {
  border: none !important;
}

.u-c-black {
  color: #000 !important;
}

.u-c-white {
  color: white !important;
}

.u-c-red {
  color: #b01717 !important;
}

.u-c-green {
  color: #86c644 !important;
}

.u-c-blue {
  color: #3E9BC7;
}

.u-cs-a {
  cursor: auto;
}

.u-cs-p {
  cursor: pointer;
}

.u-sp-hide {
  display: none !important;
}

.u-sp-hide-b {
  display: none !important;
}

.u-d-i {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-b {
  display: block !important;
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 300;
  src: url(./fonts/NotoSansCJKjp-Light.woff2) format("woff2"), url(./fonts/NotoSansCJKjp-Light.woff) format("woff");
  src: url(./fonts/NotoSansCJKjp-Light.eot) format("embedded-opentype"), url(./fonts/NotoSansCJKjp-Light.otf) format("opentype");
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 500;
  src: url(./fonts/NotoSansCJKjp-Regular.woff2) format("woff2"), url(./fonts/NotoSansCJKjp-Regular.woff) format("woff");
  src: url(./fonts/NotoSansCJKjp-Regular.eot) format("embedded-opentype"), url(./fonts/NotoSansCJKjp-Regular.otf) format("opentype");
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 600;
  src: url(./fonts/NotoSansCJKjp-Medium.woff2) format("woff2"), url(./fonts/NotoSansCJKjp-Medium.woff) format("woff");
  src: url(./fonts/NotoSansCJKjp-Medium.eot) format("embedded-opentype"), url(./fonts/NotoSansCJKjp-Medium.otf) format("opentype");
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 700;
  src: url(./fonts/NotoSansCJKjp-Bold.woff2) format("woff2"), url(./fonts/NotoSansCJKjp-Bold.woff) format("woff");
  src: url(./fonts/NotoSansCJKjp-Bold.eot) format("embedded-opentype"), url(./fonts/NotoSansCJKjp-Bold.otf) format("opentype");
}

.roboto {
  font-family: 'Roboto Condensed', sans-serif;
}

.u-fs-8 {
  font-size: 8px !important;
}

.u-fs-9 {
  font-size: 9px !important;
}

.u-fs-10 {
  font-size: 10px !important;
}

.u-fs-11 {
  font-size: 11px !important;
}

.u-fs-12 {
  font-size: 12px !important;
}

.u-fs-13 {
  font-size: 13px !important;
}

.u-fs-14 {
  font-size: 14px !important;
}

.u-fs-15 {
  font-size: 15px !important;
}

.u-fs-16 {
  font-size: 16px !important;
}

.u-fs-17 {
  font-size: 17px !important;
}

.u-fs-18 {
  font-size: 18px !important;
}

.u-fs-19 {
  font-size: 19px !important;
}

.u-fs-20 {
  font-size: 20px !important;
}

.u-fs-21 {
  font-size: 21px !important;
}

.u-fs-22 {
  font-size: 22px !important;
}

.u-fs-23 {
  font-size: 23px !important;
}

.u-fs-24 {
  font-size: 24px !important;
}

.u-fs-25 {
  font-size: 25px !important;
}

.u-fs-26 {
  font-size: 26px !important;
}

.u-fs-27 {
  font-size: 27px !important;
}

.u-fs-28 {
  font-size: 28px !important;
}

.u-fs-29 {
  font-size: 29px !important;
}

.u-fs-30 {
  font-size: 30px !important;
}

.u-fs-31 {
  font-size: 31px !important;
}

.u-fs-32 {
  font-size: 32px !important;
}

.u-fs-33 {
  font-size: 33px !important;
}

.u-fs-34 {
  font-size: 34px !important;
}

.u-fs-35 {
  font-size: 35px !important;
}

.u-fs-36 {
  font-size: 36px !important;
}

.u-fs-37 {
  font-size: 37px !important;
}

.u-fs-38 {
  font-size: 38px !important;
}

.u-fs-39 {
  font-size: 39px !important;
}

.u-fs-40 {
  font-size: 40px !important;
}

.f-s-small {
  font-size: 12px;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

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

.u-mt-15 {
  margin-top: 15px !important;
}

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

.u-mt-25 {
  margin-top: 25px !important;
}

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

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

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

.u-mb-5 {
  margin-bottom: 5px !important;
}

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

.u-mb-15 {
  margin-bottom: 15px !important;
}

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

.u-mb-25 {
  margin-bottom: 25px !important;
}

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

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

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

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

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

.u-pt-5 {
  padding-top: 5px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pt-55 {
  padding-top: 55px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pt-65 {
  padding-top: 65px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pt-75 {
  padding-top: 75px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pt-85 {
  padding-top: 85px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pt-95 {
  padding-top: 95px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

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

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pb-55 {
  padding-bottom: 55px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-fs-o {
  font-style: oblique !important;
}

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

.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

@media screen and (min-width: 641px) {
  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: transparent;
    -webkit-backface-visibility: hidden;
  }

  html[data-lc-type=image] #lightcase-content,
  html[data-lc-type=video] #lightcase-content {
    background-color: #333;
  }

  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  #lightcase-content h1,
  #lightcase-content h2,
  #lightcase-content h3,
  #lightcase-content h4,
  #lightcase-content h5,
  #lightcase-content h6,
  #lightcase-content p {
    color: #333;
  }

  #lightcase-case p.lightcase-error {
    padding: 0;
  }

  a[class*='lightcase-icon-'].lightcase-icon-pause,
  a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0;
  }

  a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }

  a[class*='lightcase-icon-']:hover,
  #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
    opacity: 1;
  }

  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: transparent;
    -webkit-backface-visibility: hidden;
  }

  html[data-lc-type=image] #lightcase-content,
  html[data-lc-type=video] #lightcase-content {
    background-color: #333;
  }

  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  #lightcase-content h1,
  #lightcase-content h2,
  #lightcase-content h3,
  #lightcase-content h4,
  #lightcase-content h5,
  #lightcase-content h6,
  #lightcase-content p {
    color: #333;
  }

  #lightcase-case p.lightcase-error {
    padding: 0;
  }

  a[class*='lightcase-icon-'].lightcase-icon-pause,
  a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0;
  }

  a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }

  a[class*='lightcase-icon-']:hover,
  #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
    opacity: 1;
  }
}

@media screen and (min-width: 811px) {
  img {
    width: auto;
  }

  .l-footer .l-footer-inner .flex-col-box {
    width: 530px;
  }

  .l-footer .l-footer-inner .flex-col-box:last-of-type {
    width: 633px;
  }

  .l-footer.l-footer-tenshoku .l-footer-inner {
    margin: 0 auto;
  }

  .l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box {
    width: 480px;
  }

  .l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box .l-footer-link {
    text-align: right;
    margin: 20px 0 10px;
  }

  .l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box:last-of-type {
    width: 800px;
  }

  .wpcf7-form {
    width: 773px;
    padding-top: 250px;
    margin: -250px auto 0;
    padding-bottom: 65px;
  }

  .wpcf7-form table tr.l-form-check td span.wpcf7-list-item .wpcf7-list-item-label {
    margin-right: 36px;
  }

  .wpcf7-form table tr.l-form-check td span.wpcf7-list-item:nth-of-type(3) .wpcf7-list-item-label {
    margin-right: 0;
  }

  .wpcf7-form table tr.l-form-check td span.wpcf7-list-item:nth-of-type(6) .wpcf7-list-item-label {
    margin-right: 0;
  }

  .wpcf7-form table tr.l-form-check td span.wpcf7-list-item:nth-of-type(9) .wpcf7-list-item-label {
    margin-right: 0;
  }

  .l-header .l-header-inner nav.toggle {
    display: none;
  }

  .l-header.l-header-tenshoku .l-header-inner nav.toggle {
    position: relative;
    right: 0;
    top: 0;
    display: block;
    float: left;
    left: 0;
  }

  .l-header.l-header-tenshoku .toggleWrap {
    width: 278px;
  }

  .l-header.l-header-tenshoku .toggleWrap .toggleInner {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translate(0, -50%);
  }

  .page .mainvisual {
    width: 100%;
  }

  .l-event .flex-col:after {
    content: "";
    display: block;
    width: 325px;
  }

  .home .mainvisual {
    width: 100%;
  }

  .u-pc-hide {
    display: none !important;
  }

  .u-sp-hide {
    display: inline !important;
  }
}

@media screen and (min-width: 812px) {
  .flex-col {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .flex-col_2 > .flex-col-box {
    width: 50%;
  }

  .flex-col_2 > li {
    width: 50%;
  }

  .flex-col_3 > li {
    width: 33.3333%;
  }

  .flex-col_4 > li {
    width: 25%;
  }

  .flex-col_5 > li {
    width: 20%;
  }

  .flex-col-sp_2 > li {
    width: 100%;
  }

  .flex-col-sp_2_nmargin > li {
    width: 100%;
  }

  .flex-col_pc {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .link-arrow::after {
    margin-left: 10px;
  }

  .link-arrow__left::before {
    margin-top: -3px;
    margin-right: 10px;
    font-size: 16px;
  }

  .viewlinks {
    font-size: 16px;
  }

  .table {
    display: table;
    margin-top: 30px;
    text-align: left;
    border-collapse: collapse;
  }

  .table dl {
    display: table-row;
  }

  .table dl dt {
    display: table-cell;
    padding: 10px 25px;
    border: 1px solid #E2E2E2;
  }

  .table dl dd {
    display: table-cell;
    padding: 10px 25px;
    border: 1px solid #E2E2E2;
  }

  .table--min {
    width: 500px;
  }

  .table--min dl dt {
    width: 170px;
  }

  .table--default {
    margin: 0;
  }

  .table--default dt {
    width: 180px;
    vertical-align: middle;
  }

  .table .table-note {
    padding-left: 1.5em;
    font-size: 13px;
  }

  .table .table-note::before {
    position: absolute;
    top: 0px;
    left: 0;
  }

  .table-ordered {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .table-ordered > li {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    min-height: 140px;
  }

  .table-ordered > li .table-ordered__num {
    width: 50px;
    font-size: 23px;
  }

  .table-ordered > li .table-ordered__txt {
    padding: 30px 20px;
  }

  .table-ordered > li .table-ordered__txt .table-ordered__title {
    font-size: 18px;
  }

  .table-ordered > li .table-ordered__txt .table-ordered__txt--last {
    font-size: 23px;
  }

  body,
  button,
  input,
  select,
  textarea {
    font-size: 14px;
  }

  .u-sp-hide-b {
    display: block !important;
  }

  .f-s-small {
    font-size: 16px;
  }

  .l-blog .flex-col:after {
    content: "";
    display: block;
    width: 325px;
  }

}

@media screen and (max-width: 812px) {
  .slick-dots {
    left: 50%;
    right: 0;
    bottom: 16px;
    transform: translateX(-50%);
  }

  .l-footer {
    padding: 20px 0 0;
  }

  .l-footer .l-footer-inner {
    width: 100%;
    padding: 0 7.2%;
  }

  .l-footer .l-footer-inner .flex-col-box h1 {
    width: 44.6%;
    float: none;
    margin: 0 auto;
  }

  .l-footer .l-footer-inner .flex-col-box .l-footer-address {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0;
    float: none;
    margin: 23px 0;
  }

  .l-footer .l-footer-inner .flex-col-box .l-footer-address h2 {
    font-size: 14px;
  }

  .l-footer .l-footer-inner .flex-col-box nav {
    width: 100%;
    border-bottom: 1px solid #ffffff;
    padding: 20px 0  15px;
  }

  .l-footer .l-footer-inner .flex-col-box nav ul {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
  }

  .l-footer .l-footer-inner .flex-col-box nav li {
    padding-left: 6.7%;
    margin-right: 0;
    width: 50%;
    text-align: left;
    margin-bottom: 10px;
  }

  .l-footer .l-footer-inner .flex-col-box nav li:first-of-type span {
    text-indent: 0;
  }

  .l-footer .l-footer-inner .flex-col-box nav li:nth-of-type(even) {
    padding-left: 3.9%;
  }

  .l-footer .l-footer-inner .flex-col-box nav li:nth-of-type(9),
  .l-footer .l-footer-inner .flex-col-box nav li:nth-of-type(10) {
    font-size: 12px;
    letter-spacing: 0;
    position: relative;
    text-indent: -.1em;
    margin-top: 8px;
  }

  .l-footer .l-footer-inner .flex-col-box nav li:nth-of-type(9):before,
  .l-footer .l-footer-inner .flex-col-box nav li:nth-of-type(10):before {
    content: '';
    width: 7px;
    height: 7px;
    border: 0;
    border-top: solid 1px #FFF;
    border-right: solid 1px #FFF;
    display: inline-block;
    transform: rotate(45deg);
  }

  .l-footer .l-footer-inner .flex-col-box nav li:nth-of-type(9) a,
  .l-footer .l-footer-inner .flex-col-box nav li:nth-of-type(10) a {
    margin-left: 5px;
  }

  .l-footer .l-footer-inner .flex-col-box nav.u-sp-hide {
    display: none !important;
  }

  .l-footer .l-footer-inner .flex-col-box .l-footer-link {
    display: none !important;
  }

  .l-footer .copyright {
    width: 100%;
    display: block;
    font-size: 10px;
    padding: 8px 0;
    text-align: center;
    background-color: #000000;
    color: #ffffff;
  }

  .l-pagetop {
    position: absolute;
    right: 4%;
    top: -30px;
  }

  .l-footer.l-footer-tenshoku {
    padding: 40px 0 0;
  }

  .l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box h1 {
    margin: 0;
    width: 53.1%;
  }

  .l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box .l-footer-link li {
    display: block;
    margin-bottom: 11px;
  }

  .l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box .l-footer-link li a:before {
    left: -3px;
  }

  .l-footer.l-footer-tenshoku .l-footer-inner .flex-col-box .copyright {
    display: none;
  }

  .l-footer.l-footer-tenshoku .copyright {
    background-color: #DD8D8D;
  }

  .wpcf7-form table tr th {
    width: 100%;
    display: block;
  }

  .wpcf7-form table tr td {
    width: 100%;
    display: block;
    padding-bottom: 15px;
  }

  .wpcf7-form table tr.form-year td:after {
    vertical-align: baseline;
  }

  .wpcf7-form table tr.l-form-check td span.first label {
    margin-right: 0;
  }

  .wpcf7-form table tr.privacy-policy th {
    padding-left: 0 !important;
  }

  .wpcf7-form ul.l-submit-btn li.c-confirm-btn {
    width: 100%;
  }

  .wpcf7-form.custom-wpcf7c-confirmed {
    width: 100%;
    padding-bottom: 73px;
  }

  .wpcf7-form.custom-wpcf7c-confirmed table tr th {
    width: 30%;
    display: table-cell;
  }

  .wpcf7-form.custom-wpcf7c-confirmed table tr td {
    width: 60%;
    display: table-cell;
  }

  .wpcf7-form.custom-wpcf7c-confirmed ul.l-submit-btn li.c-confirm-back {
    width: 100%;
    margin-bottom: 15px;
  }

  .wpcf7-form.custom-wpcf7c-confirmed ul.l-submit-btn li.c-confirm-submit {
    width: 100%;
  }

  .wpcf7-form.custom-wpcf7c-confirmed.sent .wpcf7c-elm-step3 {
    letter-spacing: 0;
  }

  .wpcf7-form.custom-wpcf7c-confirmed.sent .wpcf7c-elm-step3 a {
    width: 100%;
  }

  .l-header {
    position: relative;
    position: fixed;
    z-index: 999;
    padding: 19px 5.5% 19px 4.3%;
    width: 100%;
  }

  .l-header .l-header-inner {
    width: 100%;
  }

  .l-header .l-header-inner h1 {
    width: 36.4%;
    position: relative;
    padding: 0;
    left: 0;
    top: 0;
  }

  .l-header .l-header-inner h1 img.c-logo-mono {
    animation-duration: .5s;
    animation-name: fade-in;
  }

  .l-header .l-header-inner h1 img.c-logo-color {
    visibility: hidden;
    position: absolute;
    z-index: -99;
  }

  .l-header .l-header-inner nav.u-sp-hide {
    display: none;
  }

  .l-header .l-header-inner .trigger {
    width: 27px;
    height: 20px;
  }

  .l-header .l-header-inner .trigger span {
    background-color: #ffffff;
  }

  .l-header .l-header-inner .trigger span:nth-of-type(2)::after {
    background-color: #ffffff;
  }

  .l-header .toggleWrap ul.l-header-link {
    bottom: 65px;
    left: 16%;
  }

  .l-header.l-header-tenshoku {
    padding: 19px 5.5% 19px 4.3%;
  }

  .l-header.l-header-tenshoku .l-header-inner h1 {
    width: 30.29%;
    margin: 0;
    padding: 0;
    float: left;
  }

  .l-header.l-header-tenshoku .toggleWrap h1 {
    width: 39.37%;
    position: relative;
    top: 0;
    right: 0;
    margin: 0;
    transform: translateY(0);
    padding: 10vh 0 19.5vh 14.7%;
  }

  .l-header.l-header-tenshoku .toggleWrap ul.l-header-link {
    padding-left: 14.7%;
    top: 0;
    left: 0;
    margin: 0;
    transform: translateY(0);
  }

  .l-header.l-header-tenshoku .toggleWrap ul.l-header-link li {
    font-size: 19px;
    margin: 0 0 45px 0;
  }

  .l-header.l-header-tenshoku .toggleWrap ul.l-header-link li a {
    padding-left: 24px;
  }

  .l-header.l-header-tenshoku .toggleWrap ul.l-header-link li a:before {
    margin-top: -5px;
  }

  .page .mainvisual .l-carousel {
    width: 100vw;
  }

  .page .mainvisual .l-carousel .l-scroll {
    left: 12.5%;
    z-index: 9;
    width: 7.8%;
  }

  .page .mainvisual .l-carousel .l-scroll .l-scroll-inner .roboto {
    color: #ffffff;
  }

  .page .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg {
    background-color: rgba(255, 255, 255, 0.36);
  }

  .page .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg .bg-line {
    background-color: #ffffff;
  }

  .page .mainvisual .l-carousel .mainvisual-wrapper .mainvisual-upper,
  .page .mainvisual .l-carousel .mainvisual-wrapper .mainvisual-lower {
    width: 100vw;
  }

  .page .section-heading {
    margin-bottom: 55px;
  }

  .page .section-heading .roboto {
    padding: 3px 2px 2px 4px;
  }

  .page h3.section-subheading {
    text-align: center;
    margin-bottom: 16px;
  }

  .l-info {
    padding: 0 7.2%;
  }

  .l-info dl.l-info-list {
    width: 100%;
  }

  .l-event {
    width: 100%;
    padding: 0 7.2%;
    margin-bottom: 35px;
    box-sizing: border-box;
  }

  .l-event .flex-col-box {
    width: 100%;
    height: 100%;
  }

  .l-event .flex-col-box .l-event-inner {
    width: 93.5%;
  }

  .l-event .flex-col-box .l-event-inner .c-event-date {
    line-height: 1.2;
  }

  .l-event .flex-col-box .l-event-inner .c-event-date:before {
    border-radius: 10px;
    padding: 2px 4px 2px 6px;
  }

  .l-event .flex-col-box a.c-link {
    padding-top: 58%;
    width: 5%;
  }

  .l-event .flex-col-box a.c-link:before {
    height: 72%;
  }

  .home .mainvisual .mv-lead {
    font-size: 2.15em;
    top: 21%;
    left: 6%;
  }

  .home .mainvisual .mv-copyright {
    display: none;
  }

  .home .mainvisual .l-carousel {
    width: 100vw;
  }

  .home .mainvisual .l-carousel .l-scroll {
    left: 96.1%;
    z-index: 9;
    width: 7.8%;
  }

  .home .mainvisual .l-carousel .l-scroll .l-scroll-inner .roboto {
    color: #ffffff;
  }

  .home .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg {
    background-color: rgba(255, 255, 255, 0.36);
  }

  .home .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg .bg-line {
    background-color: #ffffff;
  }

  .home .mainvisual .l-carousel .slide-container h2.mainvisual-logo {
    width: 88.65%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 20px;
  }

  .home .mainvisual .l-carousel .slide-container .slidesWrap {
    height: 50%;
  }

  .home .mainvisual .l-carousel .slide-container .slidesWrap .list {
    height: 100%;
  }

  .home .mainvisual .l-carousel .slide-container .slidesWrap .list .slide {
    width: 100%;
    height: 100%;
  }

  .home .mainvisual .l-carousel .slide-container .slidesWrap .list .slide a {
    height: 100%;
  }

  .home .mainvisual .l-carousel .slide-container .slidesWrap .list .slide a.u-sp-hide {
    display: none !important;
  }

  .home .mainvisual .mv-wrapper-upper .slide1 a {
    background: url(../images/top/img_top_kv_sp01@2x.jpg) no-repeat center center;
    background-size: cover;
  }

  .home .mainvisual .mv-wrapper-upper .slide2 a {
    background: url(../images/top/img_top_kv_sp07@2x.jpg) no-repeat center center;
    background-size: cover;
  }

  .home .mainvisual .mv-wrapper-upper .slide3 a {
    background: url(../images/top/img_top_kv_sp05@2x.jpg) no-repeat center center;
    background-size: cover;
  }

  .home .mainvisual .mv-wrapper-lower .slide1 a {
    background: url(../images/top/img_top_kv_sp02@2x.jpg) no-repeat center center;
    background-size: cover;
  }

  .home .mainvisual .mv-wrapper-lower .slide2 a {
    background: url(../images/top/img_top_kv_sp09@2x.jpg) no-repeat top center;
    background-size: cover;
  }

  .home .mainvisual .mv-wrapper-lower .slide3 a {
    background: url(../images/top/img_top_kv_sp06@2x.jpg) no-repeat center center;
    background-size: cover;
  }

  .home h2.section-heading {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .home h2.section-heading .roboto {
    padding-right: 7px;
  }

  .home h2.section-heading a.roboto {
    padding-right: 10px;
  }

  .home .l-info .flex-col {
    width: 100%;
    min-width: 100%;
    padding-left: 0;
  }

  .home .l-info .flex-col .flex-col-box:first-of-type {
    width: 100%;
    padding: 25px 0 24px;
  }

  .home .l-info .flex-col .flex-col-box:first-of-type .section-heading:after {
    width: calc(84% - 16em);
  }

  .home .l-info .flex-col .flex-col-box:first-of-type dl.l-info-list dd {
    white-space: normal;
    text-overflow: clip;
  }

  .home .l-info .flex-col .flex-col-box:last-of-type {
    display: none;
  }

  .home .l-event {
    padding: 25px 7.2% 0;
    box-sizing: border-box;
  }

  .home .l-event h2.section-heading {
    margin-bottom: 20px;
  }

  .home h3.section-subheading {
    margin-bottom: 13px;
  }

  .home h3.section-subheading:after {
    width: 92.7%;
  }

  .home section.l-section {
    width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 812px) and (max-width: 320px) {
  .l-footer .l-footer-inner .flex-col-box nav li {
    padding-left: 0;
  }

  .l-footer .l-footer-inner .flex-col-box nav li span {
    letter-spacing: .08em;
  }

  .l-footer .l-footer-inner .flex-col-box nav li:nth-of-type(even) {
    padding-left: 0;
  }

  .home .mainvisual .mv-lead {
    font-size: 1.75em;
    text-align: center;
    left: 0;
    width: 100%;
  }

  .home .mainvisual .mv-lead span {
    text-indent: 0;
  }
}

@media screen and (max-width: 812px) and (max-width: 375px) {
  .l-header .toggleWrap ul.l-header-link {
    bottom: 3.5vh;
  }
}

@media screen and (max-width: 812px) and (max-width: 360px) {
  .l-header.l-header-tenshoku .toggleWrap h1 {
    padding-top: 5.5vh;
  }
}

@media screen and (max-width: 640px) {
  html[data-lc-type=inline] #lightcase-case,
  html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }

  html[data-lc-type=inline] #lightcase-content,
  html[data-lc-type=ajax] #lightcase-content,
  html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px;
  }

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe),
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe),
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }

  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }

  #lightcase-content h1,
  #lightcase-content h2,
  #lightcase-content h3,
  #lightcase-content h4,
  #lightcase-content h5,
  #lightcase-content h6,
  #lightcase-content p {
    color: #aaa;
  }

  #lightcase-case p.lightcase-error {
    padding: 30px 0;
  }

  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.9);
  }

  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px;
  }

  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static;
  }

  a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px;
  }

  #lightcase-overlay {
    opacity: 1 !important;
  }

  html[data-lc-type=inline] #lightcase-case,
  html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }

  html[data-lc-type=inline] #lightcase-content,
  html[data-lc-type=ajax] #lightcase-content,
  html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px;
  }

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe),
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe),
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }

  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }

  #lightcase-content h1,
  #lightcase-content h2,
  #lightcase-content h3,
  #lightcase-content h4,
  #lightcase-content h5,
  #lightcase-content h6,
  #lightcase-content p {
    color: #aaa;
  }

  #lightcase-case p.lightcase-error {
    padding: 30px 0;
  }

  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.9);
  }

  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px;
  }

  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static;
  }

  a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px;
  }

  #lightcase-overlay {
    opacity: 1 !important;
  }
}

@media screen and (max-width: 375px) {
  .l-footer .l-footer-inner .flex-col-box .l-footer-address a .u-pc-hide {
    display: inline !important;
  }

  .l-header .toggleWrap h1 {
    padding-top: 4vh;
  }
}

@media screen and (max-width: 360px) {
  .l-header .toggleWrap ul.l-header-link li {
    margin-top: 10px;
  }
}

@media screen and (max-width: 320px) {
  .l-header .toggleWrap h1 {
    padding-top: 2.5vh;
  }
}

@media screen and (max-width: 640px) and (min-width: 641px) {
  html[data-lc-type=image] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75;
  }

  html[data-lc-type=image] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75;
  }
}
/* BLOG一覧 */
.blog .mainvisual {
  overflow: hidden;
  width: 100vw;
  position: relative;
  z-index: -1;
}

.blog .mainvisual .l-carousel {
  width: calc(100vw - 90px);
  height: 100vh;
  float: right;
  position: relative;
}

.blog .mainvisual .l-carousel .l-scroll {
  width: 90px;
  position: absolute;
  bottom: 0;
  left: -90px;
  z-index: 99;
}

.blog .mainvisual .l-carousel .l-scroll .l-scroll-inner {
  position: relative;
  height: 110px;
}

.blog .mainvisual .l-carousel .l-scroll .l-scroll-inner .roboto {
  font-size: 12px;
  transform: rotate(90deg);
  position: absolute;
  bottom: 50px;
  right: -12px;
  width: 100px;
  font-weight: 300;
  font-style: italic;
}

.blog .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg {
  position: absolute;
  bottom: 0;
  right: 53px;
  overflow: hidden;
  width: 1px;
  height: 110px;
  background: #707070;
}

.blog .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg .bg-line {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(-110px);
  animation: scrolldown 1.4s cubic-bezier(0.25, 0.25, 0.75, 0.75) forwards infinite;
  background: #cacaca;
  background-size: 100% 200%;
}

.blog .mainvisual .l-carousel .mainvisual-wrapper {
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
  position: relative;
}

.blog .mainvisual .l-carousel .mainvisual-wrapper .mainvisual-upper,
.blog .mainvisual .l-carousel .mainvisual-wrapper .mainvisual-lower {
  width: calc(100vw - 90px);
  height: 50vh;
}

.blog .mainvisual .l-carousel .mainvisual-wrapper .mainvisual-upper {
  background: url(../images/blog/img_blog_kv01@2x.jpg) no-repeat center center;
  background-size: cover;
}

.blog .l-blog {
  margin-top: calc(-50vh - 12px);
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
  width: 1014px;
  padding-left: 90px;
  box-sizing: content-box;
  margin-bottom: 285px;
}

.blog .l-blog h3.c-blog-catch {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #DD8D8D;
}

.blog .l-blog p {
  line-height: 1.8;
}

.l-blog {
  width: 1014px;
  margin: 0 auto 60px;
  box-sizing: content-box;
}

.l-blog .flex-col-box {
  width: 325px;
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
}

.l-blog .flex-col-box .l-blog-inner {
  width: 301px;
  float: left;
}

.l-blog .flex-col-box .l-blog-inner .c-blog-pic {
  position: relative;
  background-color: #ffffff;
}

.l-blog .flex-col-box .l-blog-inner .c-blog-pic .c-blog-place {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  padding: 10px 15px;
  line-height: 1;
  color: #fff;
  background-color: #DD8D8D;
}

.l-blog .flex-col-box .l-blog-inner h3.c-blog-title {
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.l-blog .flex-col-box .l-blog-inner h3.c-blog-title a {
  text-decoration: none;
}

.l-blog .flex-col-box .l-blog-inner .c-blog-date {
  line-height: 1;
  overflow: visible;
  font-size: 17px;
  vertical-align: middle;
}

.l-blog .flex-col-box .l-blog-inner .c-blog-date .c-blog-category {
  font-size: 12px;
  color: #fff;
  background-color: #AAAAAA;
  border-radius: 9px;
  padding: 4px 6px 3px 9px;
  display: inline-block;
}

_:-ms-fullscreen,
:root .Win .l-blog .flex-col-box .l-blog-inner .c-blog-date:before {
  padding: 3px 4px 4px 6px;
  top: -2px;
}

.l-blog .flex-col-box a.c-link {
  padding-top: 190px;
  position: relative;
  float: right;
}

.l-blog .flex-col-box a.c-link:before {
  content: '';
  width: 1px;
  height: 182px;
  background-color: #707070;
  display: block;
  position: absolute;
  top: 0;
  left: 40%;
}
.l-blog .l-category {
    margin: 80px auto;
    width: 80%;
    text-align: center;
}
.l-blog .l-category .l-category-inner {
  font-size: 13px;
  background-color: #AAAAAA;
  border-radius: 13px;
  padding: 4px 8px 3px 9px;
  display: inline-block;
  margin: 3px;
}
.l-blog .l-category .l-category-inner .l-category-link {
  color: #fff;
  text-decoration: none;
}


@media screen and (max-width: 812px) {
  .blog .mainvisual .l-carousel {
    width: 100vw;
  }

  .blog .mainvisual .l-carousel .l-scroll {
    left: 12.5%;
    z-index: 9;
    width: 7.8%;
  }

  .blog .mainvisual .l-carousel .l-scroll .l-scroll-inner .roboto {
    color: #ffffff;
  }

  .blog .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg {
    background-color: rgba(255, 255, 255, 0.36);
  }

  .blog .mainvisual .l-carousel .l-scroll .l-scroll-inner .scroll-down__bg .bg-line {
    background-color: #ffffff;
  }

  .blog .mainvisual .l-carousel .mainvisual-wrapper .mainvisual-upper,
  .blog .mainvisual .l-carousel .mainvisual-wrapper .mainvisual-lower {
    width: 100vw;
  }
  .blog .mainvisual .l-carousel .mainvisual-wrapper .mainvisual-upper {
    background: url(../images/blog/img_rblog_kv_sp01@2x.jpg) no-repeat center center;
    background-size: cover;
  }
  .blog .l-blog {
    width: 100%;
    padding: 0 7.2%;
    box-sizing: border-box;
    margin-bottom: 80px;
    text-align: left;
  }

  .blog .l-blog .section-heading {
    margin-bottom: 40px;
  }

  .blog .l-blog h3.c-blog-catch {
    margin-bottom: 40px;
    text-align: center;
  }
  .l-blog {
    width: 100%;
    padding: 0 7.2%;
    margin-bottom: 35px;
    box-sizing: border-box;
  }

  .l-blog .flex-col-box {
    width: 100%;
    height: 100%;
  }

  .l-blog .flex-col-box .l-blog-inner {
    width: 93.5%;
  }

  .l-blog .flex-col-box .l-blog-inner .c-blog-date {
    line-height: 1.2;
    font-size: 16px
  }

  .l-blog .flex-col-box .l-blog-inner .c-blog-date:before {
    border-radius: 10px;
    padding: 2px 4px 2px 6px;
  }

  .l-blog .flex-col-box a.c-link {
    padding-top: 58%;
    width: 5%;
  }

  .l-blog .flex-col-box a.c-link:before {
    height: 72%;
  }
  .l-blog .flex-col-box .l-blog-inner .c-blog-date .c-blog-category { 

  }
}