@charset "UTF-8";

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

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

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

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

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

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

  10% {
    opacity: 1;
  }

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

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

  10% {
    opacity: 1;
  }

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

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

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

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: none;
  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;
}

@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) */

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

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: #fcfafa;
  /* 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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

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

a {
  color: #444;
  text-decoration: underline;
}

a:visited {
  color: inherit;
}

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

a:focus {
  outline: none;
}

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

.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: #68c3c5;
}

.link--green {
  color: #68c3c5;
}

.link--green:visited {
  color: #68c3c5;
}

.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 {
  padding-left: 1.2em;
}

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 #6e6e6e;
  text-align: center;
}

.table dl dt {
  background-color: #f6f7fa;
  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 #f6f7fa;
  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 #f6f7fa;
  color: #7186b9;
  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 #f6f7fa;
}

.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;
}

input[type=text] {
  border-radius: 0;
  -webkit-appearance: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  background: transparent;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  outline: none;
}

.form-submit {
  position: relative;
  width: 100%;
  line-height: 34px;
  padding: 15px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.submit-btn {
  position: relative;
}

.submit-btn:after {
  content: "";
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  position: absolute;
  right: 10px;
  font-size: 14px;
  color: #fff;
}

.section-confirmation input[type="submit"],
.section-confirmation input[type="button"] {
  width: 100%;
  padding: 15px 0;
  font-weight: bold;
  font-size: 14px;
}

.section-confirmation input[type="submit"]:hover,
.section-confirmation input[type="button"]:hover {
  opacity: 0.7;
}

.section-confirmation .input-submit {
  position: relative;
  margin-bottom: 10px;
}

.section-confirmation .input-button {
  position: relative;
}

.reset-btn {
  width: 100%;
  display: block;
  padding: 15px 0;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  border: none;
  border-color: #000;
  border-radius: 3px;
  background: #000;
  color: #fff;
}

.reset-btn:hover {
  color: #ffffff;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #000;
  padding: 5px 5px;
}

textarea {
  width: 100%;
  height: 239px;
  resize: vertical;
}

input[type="text"] {
  display: block;
  width: 100%;
}

input.input-year {
  width: 30%;
  display: inline-block;
  margin-right: 10px;
}

input.input-month {
  width: 15%;
  display: inline-block;
  margin: 0 10px;
}

input.input-day {
  width: 15%;
  display: inline-block;
  margin: 0 10px;
}

.radio-input {
  opacity: 0;
  display: none;
}

.radio-input + label {
  padding-left: 20px;
  position: relative;
  margin-right: 10px;
}

.radio-input + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #836900;
  border-radius: 50%;
}

.radio-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 9px;
  height: 9px;
  background: #836900;
  border-radius: 50%;
}

::-webkit-input-placeholder {
  color: #f6f7fa;
}

:-ms-input-placeholder {
  color: #f6f7fa;
}

::placeholder {
  color: #f6f7fa;
}

body,
button,
input,
select,
textarea {
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.8;
}

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

a {
  text-decoration: none;
}

/* ライブラリ */

/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

/* overlay at start */

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

/* overlay animate in */

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.3s ease-out;
}

/* content animate it */

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/**
 * Theme Name: Modern Slide In
 * Version: 2.0.0
 * Theme URL: http://sequencejs.com/themes/modern-slide-in/
 *
 * A minimalist theme for showcasing products
 *
 * This theme is powered by Sequence.js - The
 * responsive CSS animation framework for creating unique sliders,
 * presentations, banners, and other step-based applications.
 *
 * Author: Ian Lunn
 * Author URL: http://ianlunn.co.uk/
 *
 * Theme License: http://sequencejs.com/licenses/#free-theme
 * Sequence.js Licenses: http://sequencejs.com/licenses/
 *
 * Copyright © 2015 Ian Lunn Design Limited unless otherwise stated.
 */

body,
html,
.seq {
  /* Uncomment to make the theme full-screen 
   width: 100% !important; 
   max-width: 100% !important; 
   height: 100% !important; 
   max-height: 100% !important; */
}

.seq {
  position: relative;
  background: url("../images/index/bg.png") no-repeat;
  background-position: 0% 100%;
  background-size: cover;
  /* Dimensions */
  height: 420px;
  width: 100%;
  /*max-width: $sequenceWidth;*/
  /* Hide anything that goes beyond the boundaries of the Sequence container */
  /*overflow: hidden;*/
  /* Center the Sequence container on the page */
  margin: 0 auto;
  padding: 0;
  /*.seq-title {
    bottom: 5%;
    margin: 0 2.5%;
    width: 95%;
  }*/
  /*.seq-title {

    br {
      display: none;
    }

    h2,
    h3 {
      display: block;
      width: 98%;
      vertical-align: middle;
      text-align: center;
      margin: 0;
      opacity: 0;
      font-size: 16px;
      @include prefixed(transition-duration, ".3s");
      @include prefixed(transition-properties, "opacity");
    }

    h2 {
      padding: .2em 1%;
      color: white;
      background: black;
      float: left;
    }

    h3 {
      display: none;
      clear: left;
    }
  }*/
}

.seq .seq-preloader {
  background: #fcfafa;
}

.seq .seq-screen,
.seq .seq-canvas,
.seq .seq-canvas > * {
  /* Reset the canvas and steps for more browser consistency */
  padding: 20px 0 0 0;
  height: 100%;
  width: 100%;
  list-style: none;
}

.seq .mv-txt {
  position: absolute;
  bottom: 2%;
  right: 2%;
  z-index: 5;
}

.seq .mv-txt .seq-h2 {
  text-align: right;
  color: #fcfafa;
  font-size: 6vw;
  text-shadow: 1px 1px 0 #444, -1px -1px 0 #444, -1px 1px 0 #444, 1px -1px 0 #444, 0 1px 0 #444, -1px 0 #444, -1px 0 0 #444, 1px 0 0 #444;
}

.seq .mv-txt .catchcopy {
  font-size: 16px;
  text-align: right;
}

.seq .seq-canvas > * {
  position: absolute;
}

.seq.seq-fallback {
  /* Fallback styles */
}

.seq.seq-fallback .seq-canvas {
  max-width: 100%;
}

.seq.seq-fallback .seq-pagination li {
  position: relative;
}

.seq.seq-fallback .seq-pagination li img {
  border: none;
}

.seq.seq-fallback .seq-pagination li a {
  display: block;
  width: 100%;
  height: 100%;
}

.seq.seq-fallback .seq-next:focus,
.seq.seq-fallback .seq-next:hover,
.seq.seq-fallback .seq-prev:focus,
.seq.seq-fallback .seq-prev:hover,
.seq.seq-fallback .seq-pagination li:focus,
.seq.seq-fallback .seq-pagination li:hover {
  top: -4px;
}

.seq .seq-canvas {
  max-width: 1280px;
  overflow: hidden;
  position: relative;
  display: block;
  margin: 0 auto;
}

.seq .seq-nav,
.seq .seq-pagination {
  /* Hide navigation when JS is disabled */
  display: none;
}

.seq.seq-active .seq-nav {
  /* Show navigation and pagination if JS is enabled */
  display: block;
}

.seq .seq-nav {
  /* Styles for next/previous buttons and pagination */
  position: absolute;
  z-index: 9;
  top: 50%;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  pointer-events: none;
  border: none;
}

.seq .seq-next,
.seq .seq-prev {
  position: absolute;
  top: 50%;
  margin-top: -33px;
  width: 60px;
  height: 60px;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  transition-duration: .2s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* Image replacement */
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}

.seq .seq-next {
  right: 0;
  background: url("../images/index/bt_next.png") no-repeat;
  background-size: contain;
}

.seq .seq-next:focus,
.seq .seq-next:hover {
  -webkit-transform: translate3d(4px, 0, 0);
  transform: translate3d(4px, 0, 0);
}

.seq .seq-prev {
  left: 0;
  background: url("../images/index/bt_prev.png") no-repeat;
  background-size: contain;
}

.seq .seq-prev:focus,
.seq .seq-prev:hover {
  -webkit-transform: translate3d(-4px, 0, 0);
  transform: translate3d(-4px, 0, 0);
}

.seq .seq-model,
.seq .seq-title {
  position: absolute;
}

.seq .seq-model {
  bottom: 15%;
  height: 81%;
  width: 100%;
  /* Don't allow the image to exceed its original height */
  max-height: 568px;
}

.seq .seq-model img {
  /* Don't allow the image to exceed its original height */
  max-height: 568px;
  display: block;
  height: 100%;
  width: auto;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: translate3d(60px, 0, 0);
  transform: translate3d(60px, 0, 0);
  transition-duration: .3s;
  -webkit-transition-properties: transform, opacity;
  transition-properties: transform, opacity;
  transition-timing-function: ease-out !important;
}

.seq .seq-in {
  /* Animate in positions for content */
  /*.seq-title {
      h2,
      h3 {
        opacity: 1;
        @include prefixed(transform, "translate3d(0, 0, 0)");
      }
    }*/
}

.seq .seq-in .seq-model img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.seq .seq-out {
  /* Animate out positions for content */
  /*.seq-title {
      h2,
      h3 {
        opacity: 0;
        @include prefixed(transform, "translate3d(0, 0, 0)");
      }
    }*/
}

.seq .seq-out .seq-model img {
  -webkit-transform: translate3d(-60px, 0, 0);
  transform: translate3d(-60px, 0, 0);
  opacity: 0;
}

/* コンポーネント */

/* ====================
 breadcrumb
=======================*/

.breadcrumb {
  padding: 6px 0;
  background-color: #fcfafa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 3px 3px 5px rgba(163, 177, 198, 0.6), -3px -3px 5px rgba(255, 255, 255, 0.5), inset 2px 2px 4px rgba(136, 165, 191, 0.48), inset -2px -2px 4px #FFFFFF;
}

.breadcrumb .breadcrumb-list > li {
  display: inline-block;
  color: #68c3c5;
  -webkit-text-decoration-style: none;
  text-decoration-style: none;
  font-size: 13px;
}

.breadcrumb .breadcrumb-list > li a {
  color: #444;
  text-decoration: none;
}

.breadcrumb .breadcrumb-list > li a::after {
  content: ">";
  padding: 0 5px 0 10px;
}

.c-btn.c-btn--center {
  text-align: center;
}

.btn {
  position: relative;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  padding: 1em;
  border: none;
  border-radius: .5rem;
  letter-spacing: .2rem;
  transition: .2s ease-in-out;
  box-shadow: -6px -6px 14px rgba(255, 255, 255, 0.7), -6px -6px 10px rgba(255, 255, 255, 0.5), 6px 6px 8px rgba(255, 255, 255, 0.075), 6px 6px 10px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  box-shadow: -2px -2px 6px rgba(255, 255, 255, 0.6), -2px -2px 4px rgba(255, 255, 255, 0.4), 2px 2px 2px rgba(255, 255, 255, 0.05), 2px 2px 4px rgba(0, 0, 0, 0.1);
  color: #C46A68;
}

.btn:active {
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.7), inset -2px -2px 4px rgba(255, 255, 255, 0.5), inset 2px 2px 2px rgba(255, 255, 255, 0.075), inset 2px 2px 4px rgba(0, 0, 0, 0.15);
  color: #C46A68;
}

.btn::after {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f054";
  font-family: "Font Awesome 5 Free";
}

.btn.btn-c--blue {
  color: #4562c4;
}

.btn.btn-c--green {
  color: #68c3c5;
}

.btn.btn-c--offwhite {
  background-color: #fcfafa;
}

.btn.btn-size--normal {
  width: 265px;
}

.btn.btn-s--wide {
  width: 100%;
  max-width: 300px;
  padding: 12px;
}

.btn.btn-size--normal {
  width: 265px;
}

.btn.btn-size--auto {
  width: 100%;
}

.btn.btn-icon--back::after {
  right: inherit;
  left: 15px;
  content: "\f053";
}

.btn.btn-icon--link::after {
  content: "\f35d";
}

.btn-nm01 {
  border-radius: 170px;
  background: linear-gradient(145deg, #e3e1e1, #ffffff);
  box-shadow: 7px 7px 14px #cccbcb, -7px -7px 14px #ffffff;
}

.sec-content.sec-common-contact {
  background-image: url(../images/common/bg_common_contact.jpg);
  background-position: center;
  background-size: cover;
  padding: 50px 0;
  position: relative;
}

.sec-content.sec-common-contact::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../images/common/mask_contact.png);
}

.sec-content .common-contact__list {
  position: relative;
}

.sec-content .common-contact__list > li {
  margin-bottom: 18px;
  text-align: center;
}

.sec-content .common-contact__list > li:last-child {
  margin-bottom: 0;
}

/*=========================
 figure & figcaption
==========================*/

.c-figure {
  margin: 0;
  padding: 10px;
  background-color: #f6f7fa;
}

.c-figure figcaption {
  margin-top: 10px;
  font-size: 14px;
}

.c-flow {
  width: 100%;
  display: table;
  position: relative;
  margin-top: -10px;
}

.c-flow:before {
  width: 1px;
  height: 100%;
  content: "";
  display: block;
  background: linear-gradient(to bottom, #ffffff, transparent);
  position: absolute;
  top: 20px;
  left: 63px;
}

.c-flow dl {
  display: table-row;
}

.c-flow dt {
  display: table-cell;
  position: relative;
  width: 60px;
  padding-top: 10px;
  font-weight: bold;
}

.c-flow dd {
  display: table-cell;
  padding-left: 15px;
  position: relative;
}

.c-flow dd:after {
  content: "";
  position: absolute;
  top: 16px;
  left: 0px;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
}

/* ==========================
  section title
=========================== */

.sec-title {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), -2px -2px 4px #f6f7fa;
}

.sec-title span {
  font-size: 14px;
  padding-left: 1em;
}

/* ==========================
  sub title
=========================== */

.sub-title {
  position: relative;
  margin-bottom: 20px;
}

.sub-title:before,
.sub-title:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -.3em;
  left: 5em;
  height: 2px;
  background: #C46A68;
}

.sub-title:before {
  width: 4em;
}

.sub-title:after {
  width: 15px;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: translate(59px, 0px) rotate(25deg);
  transform: translate(59px, 0px) rotate(25deg);
}

.sub-title--blue:before,
.sub-title--blue:after {
  background: #4562c4;
}

.sub-title--green:before,
.sub-title--green:after {
  background: #68c3c5;
}

/* ====================
 lower pages title
=======================*/

.block-page__title {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 320px;
}

.block-page__title .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(202, 202, 202, 0.5);
  padding: 10px 1em;
  width: 300px;
}

.block-page__title .page-title__inner {
  position: relative;
  color: #ffffff;
  font-size: 18px;
}

.block-page__title .page-title__inner:after {
  content: "\f002";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  border-left: 1px solid #ffffff;
  padding-left: 1em;
  line-height: 18px;
}

.lower-title {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 7px;
  font-size: 20px;
}

.lower-title::before,
.lower-title::after {
  display: block;
  content: "";
  width: 35px;
  height: 3px;
  position: absolute;
  bottom: 0;
}

.lower-title::before {
  background-color: #4562c4;
  left: 0;
}

.lower-title::after {
  background-color: #C46A68;
  left: 35px;
}

.lower-subtitle {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 18px;
  color: #0a3042;
}

.lower-subtitle::before,
.lower-subtitle::after {
  position: absolute;
  bottom: 0;
  display: block;
  content: "";
  width: 50%;
  height: 2px;
}

.lower-subtitle::before {
  background-color: #4562c4;
  left: 0;
}

.lower-subtitle::after {
  background-color: #C46A68;
  left: 50%;
}

.lower-subtitle--dark {
  color: #444;
}

.lower-subtitle--dark::before,
.lower-subtitle--dark::after {
  height: 1px;
}

.lower-subtitle--dark::before {
  background-color: #358093;
}

.p-info {
  margin: 10px 0;
  background-image: url(../images/common/bg_common_info_sp.jpg);
  background-size: cover;
  text-align: center;
}

.p-info dl {
  border-top: 1px dotted #ded4be;
  padding: 10px 0;
  line-height: 1.6;
}

.p-info dl:first-child {
  border-top: none;
}

.p-info dl dt {
  color: #ded4be;
  font-size: 12px;
}

.p-info dl dd {
  color: #ffffff;
  font-size: 14px;
}

/*=========================
 lower page project
==========================*/

.p-lower-page p {
  margin-bottom: 15px;
}

.p-lower-page--with-pic:after {
  content: "";
  clear: both;
  display: block;
}

.p-lower-sec {
  position: relative;
  margin-bottom: 20px;
}

.p-lower-sec:last-child {
  margin-bottom: 0;
}

.p-text-with--pic.p-text-with--pic--reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-text-with--pic .block-pic {
  margin: 0;
}

/* ====================
 index page & news list page
 common settings
=======================*/

.newslist > li {
  margin-top: 15px;
}

.newslist > li .newslist-meta {
  display: block;
  margin-bottom: 5px;
}

.newslist a {
  text-decoration: none;
}

.newslist a:hover .newslist-text {
  text-decoration: underline;
}

.news-icon {
  width: 75px;
  display: inline-block;
  margin-right: 5px;
  padding: 2px 5px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
}

.news-icon--junior {
  background-color: #68c3c5;
}

.news-icon--high {
  background-color: #4562c4;
}

.news-icon--graduated {
  background-color: #C46A68;
}

.news-icon--info {
  background-color: #6e6e6e;
}

.newslist-date {
  font-size: 16px;
}

/*=========================
page anchor
==========================*/

.js-anchor {
  position: absolute;
  top: -71px;
}

/*=========================
 pagination
==========================*/

.c-pagination {
  margin-top: 30px;
  text-align: center;
}

.c-pagination .pagination {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  border-radius: .55rem;
}

.c-pagination .page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: .55rem;
  border-bottom-left-radius: .55rem;
}

.c-pagination .page-item:last-child .page-link {
  border-top-right-radius: .55rem;
  border-bottom-right-radius: .55rem;
}

.c-pagination .page-item .page-link,
.c-pagination .page-item span {
  margin: 0 4px;
  font-size: .875rem;
  font-weight: 600;
}

.c-pagination .page-link {
  border: 0;
  background-color: #fcfafa;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.1), -4px -4px 6px white;
  border-radius: 10px;
  position: relative;
  display: block;
  padding: .5rem .75rem;
  line-height: 1.25;
  transition: all .2s ease;
}

.c-pagination .page-item.active .page-link {
  box-shadow: inset 2px 2px 5px #b8b9be, inset -3px -3px 7px #fff;
}

.pagetop {
  display: none;
  width: 55px;
  height: 55px;
  padding: 15px;
  position: fixed;
  font-weight: bold;
  bottom: 10px;
  right: 10px;
  text-align: center;
  color: #444;
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  z-index: 10;
}

.pagetop:hover,
.pagetop:focus,
.pagetop:active {
  color: #C46A68;
}

.c-table .c-table__row {
  margin-top: 40px;
  letter-spacing: 0;
}

.c-table .c-table__row:first-child {
  margin-top: 0;
}

.c-table .c-table__row dt {
  margin-bottom: 15px;
  font-weight: bold;
}

.c-table .c-table__row dd {
  position: relative;
  padding-top: 15px;
}

.c-table .c-table__row dd::before {
  display: block;
  content: "";
  width: 33px;
  height: 1px;
  background-color: #f7cca9;
  position: absolute;
}

.c-table.c-table--default .c-table__row {
  text-align: left;
}

.c-table.c-table--default dt {
  padding-left: 15px;
}

.c-table.c-table--default dt span.form-required {
  position: relative;
  top: -2px;
  display: inline-block;
  margin-left: 4px;
  padding: 0px 4px;
  border: 1px solid #f7cca9;
  color: #f7cca9;
  font-size: 12px;
}

.c-table.c-table--default dt span.form-required.u-sp-hide {
  display: none;
}

.c-table.c-table--default dd {
  padding-top: 20px;
}

.c-table.c-table--default dd::before {
  top: 0;
  left: 15px;
}

.c-table.c-table--center .c-table__row {
  text-align: center;
}

.c-table.c-table--center dd::before {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.work-list {
  margin-bottom: 50px;
}

.work-list .card {
  margin-top: 48px;
  padding: 40px 30px;
  background: #fcfafa;
  border-radius: 40px;
  box-shadow: -5px -5px 15px 0px #FFFFFF, inset 3px 3px 5px 0px #C4C4C4, inset -3px -3px 5px 0px #FFFFFF, 3px 3px 15px 0px #C4C4C4;
}

.work-list .card__img {
  width: 100%;
  position: relative;
  text-align: center;
}

.work-list .card__content {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.work-list .card__title {
  color: #68c3c5;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
}

.work-list .card a {
  font-weight: 700;
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 40px;
  color: #68c3c5;
  font-size: 16px;
  text-decoration: none;
  box-shadow: -7px -7px 17px rgba(255, 255, 255, 0.6), 7px 7px 17px rgba(70, 70, 70, 0.15);
}

.work-list .card a:active {
  box-shadow: inset -7px -7px 17px rgba(255, 255, 255, 0.6), inset 7px 7px 17px rgba(70, 70, 70, 0.15);
}

.work-list .card a:hover span {
  display: block;
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
}

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

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

.l-footer {
  position: relative;
}

.l-footer:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 100% 0 0;
  background: linear-gradient(45deg, #ffffff, #e3e1e1);
  box-shadow: 9px -9px 18px #cccbcb, -9px 9px 18px #ffffff;
  width: 30%;
  height: 30%;
}

.l-footer .footer-nav {
  padding: 50px 0;
  background-color: #fcfafa;
  line-height: 1.4;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 9px 9px 16px rgba(163, 177, 198, 0.6), -9px -9px 16px rgba(255, 255, 255, 0.5), inset 3px 3px 7px rgba(136, 165, 191, 0.48), inset -3px -3px 7px #FFFFFF;
}

.l-footer .footer-nav:before {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  border-radius: 100% 0 0 100% / 50%;
  background: linear-gradient(225deg, #ffffff, #e3e1e1);
  box-shadow: -9px 9px 18px #cccbcb, 9px -9px 18px #ffffff;
  width: 60px;
  height: 120px;
}

.l-footer .l-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-footer .l-container > li {
  width: calc(50% - 5px);
  color: #ffffff;
  line-height: 320%;
  text-align: center;
  z-index: 10;
}

.l-footer .l-container a {
  font-size: 13px;
  color: #444;
  font-weight: bold;
  padding: 10px 1em;
  border-radius: 10px;
}

.l-footer .l-container a:hover,
.l-footer .l-container a:active {
  box-shadow: inset -2px -2px 5px white, inset 3px 3px 5px rgba(0, 0, 0, 0.2);
  color: #C46A68;
}

.l-footer .footer-copy {
  background-color: #fcfafa;
  z-index: 10;
}

.l-footer .footer-copy p {
  text-align: right;
  padding: 20px;
}

.l-footer .footer-copy small {
  font-size: 10px;
  color: #444;
  font-weight: bold;
}

/*=========================
global-navigation button style
==========================*/

.gnav-btn {
  width: 30px;
  height: 20px;
  text-align: center;
  vertical-align: middle;
  position: absolute;
  top: 20px;
  right: 15px;
  cursor: pointer;
  z-index: 50;
}

.gnav-btn__container {
  position: relative;
  width: 30px;
  height: 20px;
  position: relative;
  display: inline-block;
}

.gnav-btn__container span {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background-color: #0a3042;
  transition: all .4s;
  border-radius: 10px;
}

.gnav-btn__container span:first-child {
  top: 0;
}

.gnav-btn__container span:nth-child(2) {
  top: 9px;
}

.gnav-btn__container span:nth-child(3) {
  bottom: 0;
}

.close .gnav-btn__container span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

.close .gnav-btn__container span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

.close .gnav-btn__container span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

/* ハンバーガーアニメーション */

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

/*=========================
global-navigation active
==========================*/

/*.index {
  .gnav-index {
    @include min-screen($break_point_min) {
      color: $gold;
    }
  }
}*/

.about .menu-list .gnav-about a::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.price .menu-list .gnav-price a::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.course .menu-list .gnav-course a::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.teacher .menu-list .gnav-teacher a::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.question .menu-list .gnav-question a::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.honor-student .menu-list .gnav-honor a::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/*=========================
global-navigation
==========================*/

.gnav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-top: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 0;
  z-index: 20;
}

.menu-list {
  height: 100%;
  padding: 0 20px 60px;
  font-size: 15px;
  overflow-y: scroll;
}

.menu-list > li {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #0a3042;
}

.menu-list > li:focus {
  outline: none;
}

.menu-list > li > a {
  display: inline-block;
  text-decoration: none;
  color: #444;
  font-weight: bold;
  position: relative;
}

.menu-list > li > a:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.menu-list > li > a:focus {
  outline: none;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.menu-list > li > a:hover,
.menu-list > li > a:focus {
  color: #C46A68;
  transition: ease 0.2s;
}

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

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

.index .l-header {
  background-color: transparent;
  box-shadow: none;
}

.index .l-header.l-header--fixed {
  box-shadow: 10px 10px 12px 0 rgba(0, 0, 0, 0.07);
  background-color: #fcfafa;
}

.l-header {
  z-index: 10;
  position: fixed;
  width: 100%;
  padding: 10px 0;
  top: 0;
  left: 0;
  z-index: 20;
  transition: ease 0.3s;
  height: 60px;
  background-color: transparent;
  background-color: #fcfafa;
  box-shadow: 10px 10px 12px 0 rgba(0, 0, 0, 0.07);
  border-radius: 0 0 10px 10px;
}

.l-header.l-header--fixed {
  margin-top: 0;
  box-shadow: 10px 10px 12px 0 rgba(0, 0, 0, 0.07);
  border-radius: 0 0 10px 10px;
}

.l-header .l-container:after {
  display: none;
}

.l-header--fixed {
  background-color: #fcfafa;
}

.menu-open .l-header--fixed {
  background-color: #fcfafa;
}

/*=============
header__main
==============*/

.header-logo {
  font-size: 1rem;
  color: #444;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), -2px -2px 4px white;
  position: relative;
  z-index: 21;
}

.header-logo a {
  display: block;
}

.header-logo span {
  display: block;
  font-size: .5em;
  text-shadow: none;
}

.l-wrapper {
  overflow: hidden;
  margin: 0 auto;
}

.main-block {
  padding-top: 60.3px;
}

.index .main-block {
  padding: 0;
}

.sec-content {
  padding: 50px 0;
}

.sec-content:nth-child(even) {
  background-color: #f6f7fa;
}

.sec-content.sec-content__relation {
  background-color: #f2fbff;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
}

.l-container:after {
  content: "";
  clear: both;
  display: block;
}

.l-container p {
  margin-bottom: 1em;
}

.back-color {
  width: 100%;
  position: relative;
}

.back-color:after {
  content: "";
  background: #68c3c5;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 50%;
  z-index: -100;
}

.title-img {
  width: 40%;
  margin: auto;
  padding-bottom: 20px;
}

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

/*=========================
 about page
==========================*/

.about .block-page__title {
  background-image: url(../images/about/about@2x.jpg);
}

.about .radius-pic {
  border-radius: 63% 37% 30% 70%/50% 45% 55% 50%;
  position: relative;
  box-shadow: 6px 6px 12px #b8b9be, -6px -6px 12px #fff;
  border-color: #d1d9e6 !important;
  background-color: #e6e7ee !important;
  border: 0.0625rem solid rgba(243, 247, 250, 0.05);
}

.about .radius-pic img {
  border-radius: 63% 37% 30% 70%/50% 45% 55% 50%;
}

.about .align-items-center {
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.about .justify-content-around {
  -webkit-justify-content: space-around !important;
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.about .row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.about .mb-5 {
  margin-bottom: 3rem !important;
}

.about .organic-radius {
  border-radius: 63% 37% 30% 70%/50% 45% 55% 50%;
}

.about .card {
  position: relative;
}

.about .shadow-soft {
  box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.1), -4px -4px 6px white;
}

.about .p-3 {
  padding: 1rem !important;
}

.about .border-light {
  border-color: #e7ebf1 !important;
}

.about .bg-primary {
  background-color: #fcfafa !important;
}

.about .card {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  background-clip: border-box;
  border: 0.0625rem solid rgba(243, 247, 250, 0.05);
}

.about .img-fluid {
  max-width: 100%;
  height: auto;
}

.about .philosophy__lists {
  margin-top: 40px;
}

.about .philosophy__subTitle:before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background: url(../images/about/01.svg) no-repeat;
  background-size: contain;
  margin-right: 1em;
}

.about .philosophy__subTitle--02:before {
  background: url(../images/about/02.svg) no-repeat;
}

.about .philosophy__subTitle--03:before {
  background: url(../images/about/03.svg) no-repeat;
}

.about .philosophy__subTitle--04:before {
  background: url(../images/about/04.svg) no-repeat;
}

.about .philosophy__g-border {
  color: #68c3c5;
}

.about .philosophy__p-border {
  color: #C46A68;
}

.about .philosophy__detail {
  margin-top: 20px;
}

/*=========================
 contact page
==========================*/

.contact .block-page__title,
.thanks .block-page__title {
  background-image: url(../images/contact/contact@2x.jpg);
  background-position: 40% 0;
}

.form {
  max-width: 750px;
  margin: 0 auto;
}

.form__lead {
  margin-top: 24px;
}

.form__table {
  width: 100%;
  margin: 24px auto 0;
  border-collapse: separate;
  border-spacing: 3px;
  text-align: left;
}

.form__head {
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left;
  padding: 24px .5em;
}

.form__as {
  display: block;
}

.form__detail {
  padding: 24px;
}

.form__requ {
  color: #C46A68;
}

.form__txtarea {
  border: 2px solid #ccc;
  border-radius: 2px;
  padding: .5em;
  width: 100%;
  box-sizing: border-box;
  height: 2em;
}

.form__txtarea:focus {
  border-color: #68c3c5;
  outline: none;
}

.form__txtarea--wide {
  height: 15em;
}

.form__choice {
  padding: 2px;
  border: 2px solid #ccc;
  border-radius: 2px;
  width: 260px;
  display: inline-block;
  position: relative;
}

.form__choice:after {
  content: "\25bc";
  font-size: 12px;
  line-height: 32px;
  color: #ffffff;
  background: #68c3c5;
  width: 35px;
  text-align: center;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  pointer-events: none;
  margin: 1px;
}

.form__select {
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 275px;
  z-index: 2;
  background: transparent;
  border: none;
}

.form__select:focus {
  outline: none;
}

.form__op {
  border-bottom: 1px solid #ccc;
  border-left: 3px solid #fffafa;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form__r-label,
.form__c-label {
  display: block;
  margin-bottom: 1em;
}

.form__r-input + .form__r-label,
.form__c-input + .form__c-label {
  padding-left: 20px;
  position: relative;
}

.form__r-input + .form__r-label:before,
.form__c-input + .form__c-label:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  border-radius: 50%;
}

.form__c-input + .form__c-label:before {
  border-radius: 2px;
}

.form__r-input:checked + .form__r-label,
.form__c-input:checked + .form__c-label {
  color: #68c3c5;
}

.form__r-input:checked + .form__r-label:after,
.form__c-input:checked + .form__c-label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0px;
  width: 16px;
  height: 16px;
  background: #68c3c5;
  border-radius: 50%;
}

.form__c-input:checked + .form__c-label:after {
  border-radius: 0;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  background: none;
  border-bottom: 3px solid #68c3c5;
  border-right: 3px solid #68c3c5;
  left: 4px;
}

.form__url {
  margin-top: 16px;
  text-align: right;
}

.form__button {
  text-align: center;
  margin-top: 36px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.form__button input[type="submit"] {
  color: #C46A68;
}

.form__button input[type="submit"]:hover {
  color: #C46A68;
}

.form__button .btn {
  margin: auto;
}

.form__button .btn:hover {
  color: inherit;
}

.form input[type="checkbox"],
.form input[type="radio"] {
  display: none;
}

/* ====================
 index page
=======================*/

.index {
  /* ====================
   recommend settings
  =======================*/
}

.index .first-catch {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 3.5vw;
  position: relative;
}

.index .first-catch:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: inline-block;
  width: 80px;
  height: 2px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #68c3c5;
}

.index .first-comment {
  font-size: 3vw;
}

.index .sec-index__recommend {
  padding-top: 0;
  background: none;
}

.index .sec-index__recommend .index-reco--about {
  position: relative;
}

.index .sec-index__recommend .index-reco--service {
  position: relative;
}

.index .sec-index__recommend .index-reco--service .c-btn {
  text-align: right;
}

.index .typo {
  position: absolute;
  right: 0;
  color: #aad1e4;
  font-size: 10vw;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  opacity: 0.5;
}

.index .typo--left {
  left: 0;
}

.reco-text {
  min-width: 280px;
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 20px;
  box-shadow: inset 2px 2px 7px rgba(136, 165, 191, 0.4), inset -2px -2px 7px #ffffff;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reco-text .sec-title {
  margin-bottom: 30px;
}

.reco-text p {
  margin-bottom: 20px;
}

.reco-text .btn {
  width: 240px;
}

/* ====================
 newslist settings
 main styles are includes
 component directory
=======================*/

.sec-index__news .c-btn {
  margin-top: 30px;
}

/* ====================
 special contents
=======================*/

.c-shadowpic-link {
  display: block;
  position: relative;
}

.c-shadowpic-link:hover::after {
  height: 100%;
}

.c-shadowpic-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 24%;
  content: "";
  transition: ease 0.2s;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,000000+100&0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
}

.c-shadowpic-link span {
  display: block;
  width: 100%;
  padding: 5px 15px 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  font-weight: bold;
  color: #ffffff;
  z-index: 1;
}

.c-shadowpic-link span::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  float: right;
}

.spcontent-list:after {
  content: "";
  display: block;
}

.spcontent-list > li {
  margin-top: 18px;
}

/*=========================
 news page
==========================*/

.news .block-page__title {
  background-image: url(../images/news/news@2x.jpg);
  background-position: 0% 0%;
}

/*=========================
 service page
==========================*/

.service .block-page__title {
  background-image: url(../images/service/service@2x.jpg);
}

.service .row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.service .col {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.service .card {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fcfafa;
  background-clip: border-box;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.service .shadow-soft {
  box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.1), -4px -4px 6px white;
}

.service .p-4 {
  padding: 1.5rem !important;
}

.service .border-light {
  border-color: #e7ebf1 !important;
}

.service .bg-primary {
  background-color: #fcfafa !important;
}

.service .mb-4,
.service .my-4 {
  margin-bottom: 1.5rem !important;
}

.service .col-12 {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.service .text-center {
  text-align: center;
}

.service .pb-5,
.service .py-5 {
  padding-bottom: 3rem !important;
}

.service .pt-5,
.service .py-5 {
  padding-top: 3rem !important;
}

.service .card-body {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.5rem;
}

.service .card-body .fa-laptop:before {
  color: #68c3c5;
}

.service .card-body .fa-puzzle-piece:before {
  color: #C46A68;
}

.service .card-body .fa-comment:before {
  color: #4562c4;
}

.service .card-body p {
  text-align: left;
}

.service .icon.icon-shape {
  width: 5.5rem;
  height: 5.5rem;
}

.service .icon {
  text-align: center;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.service .icon span {
  font-size: 2.25rem;
}

.service .shadow-inset {
  box-shadow: inset 2px 2px 5px #b8b9be, inset -3px -3px 7px #fff !important;
}

.service .mb-3,
.service .my-3 {
  margin-bottom: 1rem !important;
}

.service .rounded-circle {
  border-radius: 50% !important;
}

.service .mr-2,
.service .mx-2 {
  margin-right: .5rem !important;
}

.service .h4 {
  font-size: calc(1.275rem + .3vw);
  margin-bottom: 1em;
  color: #0a3042;
}

.service .tl-content {
  position: relative;
  padding: 0 0 1.5em 1.8em;
}

.service .tl-content:before {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  bottom: 0;
  width: 3px;
  background: #68c3c5;
  left: 5px;
}

.service .tl-content:not(:first-of-type):not(:last-of-type) .tl_marker {
  background: transparent;
}

.service .tl-content:last-of-type:before {
  content: none;
}

.service .tl-label {
  padding-top: 2px;
  color: #90969a;
  font-size: 14px;
  font-weight: bold;
}

.service .tl_title {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.5;
}

.service .tl_main {
  margin-top: 0.5em;
  padding: 0 0 1.5em;
  font-size: 0.9em;
  line-height: 1.6;
  border-bottom: dashed 1px #ccd5db;
}

.service .main-bc {
  background-color: #6bb6ff;
}

.service .tl_marker {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: solid 3px #6bb6ff;
}

/*=========================
 work page
==========================*/

.work .block-page__title {
  background-image: url(../images/work/work@2x.jpg);
  background-position: 20% 0;
}

/* ユーティリティ(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: #f6f7fa !important;
}

.u-bc-blue {
  background-color: #4562c4 !important;
}

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

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

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

.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: #C46A68 !important;
}

.u-c-green {
  color: #68c3c5 !important;
}

.u-c-blue {
  color: #7186b9;
}

.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;
}

.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 only screen and (min-width: 640px) {
  .seq .mv-txt {
    top: 50%;
    right: 1%;
  }

  .seq {
    /* Make the container 16:9 but no bigger than 90% of the screen height */
    position: relative;
    height: auto;
    height: 100%;
    max-height: 90vh;
    min-height: 420px;
    /* Move the background radial to the left */
    background-position: 50% 100%;
  }

  .seq:before {
    /* Make an element a certain aspect ratio */
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%;
  }

  .seq .seq-screen {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .seq .seq-canvas > *:before {
    /* Vertically align the content using a :before element */
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
  }

  .seq .seq-model,
  .seq .seq-title {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5% 0 2.5%;
  }

  .seq .seq-model {
    top: 0;
    bottom: 0;
    width: 50%;
  }

  .seq .seq-model--02 {
    width: 60%;
  }

  .seq .seq-model--03 {
    margin-left: 2.5%;
    width: 45%;
  }

  .seq .seq-model img {
    float: right;
    opacity: 0;
    -webkit-transform: translate3d(60px, 0, 0);
    transform: translate3d(60px, 0, 0);
    -webkit-transition-properties: transform, opacity;
    transition-properties: transform, opacity;
  }

  .seq .seq-title {
    bottom: 0;
    width: 40%;
    margin-right: 12.5%;
  }

  .seq .seq-title h2,
  .seq .seq-title h3 {
    display: inline-block;
    width: auto;
    margin: 0;
    opacity: 0;
    text-align: left;
    font-size: 18px;
    transition-duration: .3s;
    -webkit-transition-properties: transform, opacity;
    transition-properties: transform, opacity;
  }

  .seq .seq-title h2 {
    margin-bottom: .4em;
    padding: .2em .6em;
    color: white;
    background: black;
    -webkit-transform: translate3d(-120px, 0, 0);
    transform: translate3d(-120px, 0, 0);
  }

  .seq .seq-title h3 {
    display: block;
    -webkit-transform: translate3d(120px, 0, 0);
    transform: translate3d(120px, 0, 0);
  }

  .seq .seq-in {
    /* Animate in positions for content */
  }

  .seq .seq-in .seq-model img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .seq .seq-out {
    /* Animate out positions for content */
  }

  .seq .seq-out .seq-model img {
    -webkit-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0);
  }
}

@media screen and (min-width: 735px) {
  .work-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .work-list .card {
    width: calc(50% - 30px);
  }
}

@media only screen and (min-width: 768px) {
  .seq.seq-active .seq-pagination {
    /* Show navigation and pagination if JS is enabled */
    display: block;
  }

  .seq .seq-pagination {
    pointer-events: none;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    bottom: 5px;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1240px;
    text-align: right;
  }

  .seq .seq-pagination li {
    display: inline-block;
    list-style: none;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
  }

  .seq .seq-pagination li img {
    opacity: .4;
    pointer-events: auto;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition-duration: .2s;
    -webkit-transition-properties: transform, opacity;
    transition-properties: transform, opacity;
  }

  .seq .seq-pagination li.seq-current img {
    opacity: 1;
  }

  .seq .seq-pagination li:focus img,
  .seq .seq-pagination li:hover img {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@media screen and (min-width: 798px) {
  .flex-col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .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: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    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 #6e6e6e;
  }

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

  .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: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    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;
  }

  .form-submit {
    width: 200px;
    margin-left: 296px;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
  }

  .form-submit:hover {
    opacity: 0.6;
  }

  .submit-btn {
    margin-top: 30px;
  }

  .submit-btn:after {
    left: 480px;
    right: 0;
    font-size: 16px;
    font-weight: bold;
  }

  .section-confirmation input[type="submit"],
  .section-confirmation input[type="button"] {
    font-size: 16px;
  }

  .section-confirmation .input-submit {
    width: 200px;
    display: inline-block;
    margin: 0 20px 0 100px;
  }

  .section-confirmation .input-button {
    width: 200px;
    display: inline-block;
  }

  textarea {
    width: 100%;
    height: 294px;
  }

  input[type="text"].input__min {
    width: 290px;
  }

  input[type="text"].middle-width {
    width: 325px;
  }

  input[type="text"].full-width {
    width: 100%;
  }

  input[type="text"].full-width--670 {
    width: 670px;
  }

  .input-birth input[type="text"] {
    float: inherit;
  }

  input.input-year {
    width: 113px;
  }

  input.input-month {
    width: 52px;
  }

  input.input-day {
    width: 52px;
  }

  input[type="text"].input--inline {
    display: inline-block;
    width: 90%;
  }

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

  .btn {
    padding: 15px;
  }

  .btn.btn-s--wide {
    max-width: 400px;
    font-size: 24px;
  }

  .c-flow {
    margin-top: -20px;
  }

  .c-flow:before {
    top: 34px;
    left: 84px;
  }

  .c-flow dt {
    width: 90px;
    padding-top: 20px;
  }

  .c-flow dd {
    padding-left: 20px;
  }

  .c-flow dd:after {
    top: 27px;
    left: -10px;
    width: 10px;
    height: 10px;
  }

  .block-page__title {
    height: 480px;
  }

  .block-page__title .page-title {
    width: 600px;
    padding: 10px 2em;
  }

  .block-page__title .page-title__inner {
    font-size: 28px;
  }

  .p-lower-sec {
    margin-bottom: 40px;
  }

  .p-text-with--pic {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .p-text-with--pic .block-text {
    width: 64%;
  }

  .p-text-with--pic .block-pic {
    width: 34%;
  }

  .c-pagination {
    margin-top: 45px;
  }

  .l-footer:after {
    width: 20%;
    height: 60%;
    max-width: 300px;
    max-height: 255px;
  }

  .l-footer .footer-nav:before {
    width: 80px;
    height: 160px;
  }

  .l-footer .l-container a {
    font-size: 14px;
  }

  .back-color {
    height: 600px;
  }

  .back-color:after {
    right: 0;
    width: 90%;
  }

  .title-img {
    width: 20%;
    min-width: 235px;
    margin: 20px 10% 0 auto;
  }

  .about .col-md-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .about .philosophy__lists {
    margin-top: 80px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about .philosophy__lists .philosophy__list {
    width: 45%;
    -webkit-flex-basis: 45%;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
  }

  .about .philosophy__subTitle--02 {
    margin-top: 80px;
  }

  .about .philosophy__subTitle--04 {
    margin-top: 80px;
  }

  .about .philosophy__detail {
    margin-top: 24px;
  }

  .contact .block-page__title,
  .thanks .block-page__title {
    background-position: center;
  }

  .index .first-catch {
    margin-bottom: 30px;
    font-size: 34px;
  }

  .index .first-comment {
    text-align: center;
    line-height: 2;
    font-size: 18px;
  }

  .index .sec-index__recommend .index-reco--about .reco-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    z-index: -1;
  }

  .index .sec-index__recommend .index-reco--service {
    margin-top: 20%;
  }

  .index .sec-index__recommend .index-reco--service .reco-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    z-index: -1;
  }

  .index .typo {
    font-size: 130px;
  }

  .index .typo--left {
    margin-top: 0;
  }

  .reco-text {
    padding: 30px;
  }

  .reco-text p {
    margin-bottom: 30px;
  }

  .spcontent-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -18px;
  }

  .spcontent-list:after {
    width: calc(50% - 10px);
  }

  .spcontent-list > li {
    width: calc(50% - 10px);
  }

  .service .col-lg-4 {
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .service .h4 {
    font-size: 19px;
  }

  .work .block-page__title {
    background-position: center;
  }

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

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

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

@media only screen and (min-width: 860px) {
  .seq .mv-txt {
    top: 20%;
    right: 2.5%;
  }

  .seq .seq-model {
    margin-left: 2.5%;
    width: 50%;
  }

  .seq .seq-model--02 {
    width: 60%;
  }

  .seq .seq-title {
    width: 42.5%;
    margin-right: 10%;
  }

  .seq .seq-title br {
    display: inline-block;
  }
}

@media only screen and (min-width: 1020px) {
  .seq .mv-txt {
    position: absolute;
    top: 50%;
    right: 5%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .seq .mv-txt .catchcopy {
    font-size: 18px;
    text-align: right;
  }

  .seq .seq-model {
    margin-left: 2.5%;
    width: 50%;
  }

  .seq .seq-model--02 {
    width: 60%;
  }

  .seq .seq-title {
    width: 47.5%;
    margin-right: 5%;
  }
}

@media only screen and (min-width: 1020px) and (min-width: 1120px) {
  .seq .mv-txt .catchcopy {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .breadcrumb {
    padding: 12px 0;
  }

  .btn::after {
    font-size: 16px;
  }

  .sec-content.sec-common-contact {
    padding: 100px 0;
  }

  .sec-content .common-contact__list > li {
    margin-bottom: 20px;
  }

  .sec-title {
    margin-bottom: 60px;
    font-size: 32px;
  }

  .sec-title span {
    font-size: 16px;
  }

  .block-page__title img {
    display: none;
  }

  .lower-title {
    margin-bottom: 50px;
    padding-bottom: 15px;
    font-size: 26px;
  }

  .lower-title::before,
  .lower-title::after {
    width: 60px;
    height: 5px;
  }

  .lower-title::after {
    left: 60px;
  }

  .lower-subtitle {
    margin-bottom: 40px;
    padding-bottom: 10px;
    font-size: 22px;
  }

  .p-info {
    margin: 20px 0;
    background-image: url(../images/common/bg_common_info_pc.jpg);
  }

  .p-info dl {
    padding: 16px 0;
  }

  .p-info dl dt {
    font-size: 20px;
  }

  .p-info dl dd {
    font-size: 26px;
  }

  .p-lower-page p {
    margin-bottom: 25px;
    clear: both;
  }

  .p-lower-page--with-pic .lower-page__txt {
    width: 600px;
    float: left;
  }

  .p-lower-page--with-pic .lower-page__pic {
    float: right;
    width: 400px;
    margin: 0;
    padding: 0;
  }

  .p-lower-sec {
    margin-bottom: 50px;
  }

  .p-text-with--pic .block-text {
    width: 600px;
  }

  .p-text-with--pic .block-pic {
    width: 400px;
  }

  .newslist > li {
    margin-top: 20px;
  }

  .newslist > li .newslist-meta {
    display: table-cell;
    width: 240px;
  }

  .newslist > li .newslist-text {
    display: table-cell;
  }

  .newslist a {
    display: table;
    width: 100%;
  }

  .news-icon {
    margin-right: 10px;
  }

  .js-anchor {
    top: -74px;
  }

  .pagetop {
    width: 70px;
    height: 70px;
    bottom: 10px;
    line-height: 40px;
  }

  .c-table {
    display: table;
    width: 100%;
  }

  .c-table .c-table__row {
    display: table-row;
  }

  .c-table .c-table__row dt {
    width: 220px;
    display: table-cell;
  }

  .c-table .c-table__row dd {
    display: table-cell;
    padding: 33px 0 33px 70px;
    text-align: left;
  }

  .c-table.c-table--default dt {
    vertical-align: top;
    width: 180px;
    padding: 20px 0 0 0;
  }

  .c-table.c-table--default dt span {
    font-size: 14px;
  }

  .c-table.c-table--default dt span.form-required.u-sp-hide {
    display: inline-block !important;
  }

  .c-table.c-table--default dt span.form-required.u-pc-hide {
    display: none;
  }

  .c-table.c-table--default dd {
    vertical-align: top;
    padding: 14px 0 14px 70px;
  }

  .c-table.c-table--default dd::before {
    top: 33px;
    left: 15px;
  }

  .c-table.c-table--center dd::before {
    top: 45px;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .work-list {
    margin-top: 86px;
    margin-bottom: 60px;
  }

  .l-footer .footer-nav {
    padding: 100px 0;
  }

  .l-footer .footer-copy p {
    padding-right: 80px;
  }

  .l-footer .footer-copy small {
    font-size: 14px;
  }

  .gnav-btn {
    display: none;
  }

  .gnav {
    width: auto;
    height: auto;
    position: static;
    background-color: transparent;
    display: block;
    padding: 0;
  }

  .menu-list {
    width: auto;
    margin: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 1em 0;
    overflow: visible;
    font-size: 16px;
  }

  .menu-list > li {
    margin: 0 .5rem;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.1), -4px -4px 6px white;
    border-radius: 10px;
    transition: color 0.2s ease-out, -webkit-transform 0.2s ease-out;
    transition: color 0.2s ease-out, transform 0.2s ease-out;
    transition: color 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    color: #444;
  }

  .menu-list > li.gnav-contact a {
    color: #C46A68;
  }

  .menu-list > li > a {
    position: relative;
    font-size: 15px;
  }

  .l-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    padding: 0;
  }

  .l-header.l-header--fixed {
    margin-top: 0;
  }

  .l-header .l-container {
    width: 100%;
    padding: 0 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-logo {
    font-size: 1.2rem;
  }

  .header-logo span {
    font-size: .75rem;
  }

  .main-block {
    padding-top: 64px;
  }

  .index .main-block {
    padding: 0;
    margin-top: 0;
  }

  .sec-content {
    padding: 100px 0;
  }

  .l-container {
    padding: 0 20px;
    width: 1080px;
  }

  .reco-text {
    width: 100%;
  }

  .sec-index__work {
    margin-top: 10%;
  }

  .sec-index__news .c-btn {
    margin-top: 60px;
  }

  .spcontent-list:after {
    width: calc(33.333333% - 10px);
  }

  .spcontent-list > li {
    width: calc(33.333333% - 10px);
  }

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

@media screen and (min-width: 1080px) and (min-width: 1200px) {
  .menu-list > li {
    margin: 0 1rem;
    padding: 0.5rem 1.5rem;
  }
}

@media only screen and (min-width: 1120px) {
  .seq .seq-model {
    width: 37.5%;
  }

  .seq .seq-model--01 {
    width: 50%;
  }

  .seq .seq-model--02 {
    width: 60%;
  }

  .seq .seq-title {
    width: 52.5%;
    margin-right: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */

  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media screen and (max-width: 798px) {
  .form__head {
    width: 100%;
    display: block;
  }

  .form__detail {
    width: 100%;
    display: block;
  }

  .form__url {
    text-align: left;
  }

  .form__button {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .seq .seq-model img {
    height: auto;
  }

  .seq .seq-model--03 img {
    height: 100%;
  }
}

@media (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .seq {
    /* Apply Retina (@2x) Images */
  }

  .seq .seq-next {
    background: url("../images/index/bt_next@2x.png");
    background-size: 60px 60px;
  }

  .seq .seq-prev {
    background: url("../images/index/bt_prev@2x.png");
    background-size: 60px 60px;
  }
}