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

@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: #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: -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: #333333;
  text-decoration: underline;
}

a:visited {
  color: #333333;
}

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

a:focus {
  outline: none;
}

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

a:hover {
  opacity: 0.6;
}

.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: #3ead6d;
}

.link--green {
  color: #3ead6d;
}

.link--green:visited {
  color: #3ead6d;
}

.link--gold {
  color: #B48F58 !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 #eeeeee;
  text-align: center;
}

.table dl dt {
  background-color: #f7f8f8;
  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 #f7f8f8;
  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 #f7f8f8;
  color: #f4f9fc;
  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 #f7f8f8;
}

.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;
  border-color: #333333;
  border-radius: 3px;
  background: #333333;
  color: #fff;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

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 {
  border-color: #aaa #bbb #bbb;
  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: #333333;
  border-radius: 3px;
  background: #333333;
  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: #333333;
  border: none;
  padding: 5px 5px;
  border: 1px solid #666666;
}

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

select {
  border: 2px solid #B48F58;
  height: 37px;
  width: 100%;
}

textarea {
  width: 100%;
  height: 120px;
  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 #B48F58;
  border-radius: 50%;
}

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

body,
button,
input,
select,
textarea {
  color: #333333;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "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;
}

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

/* ライブラリ */

/** VARIABLES
===================================*/

/** RESET AND LAYOUT
===================================*/

.bxslider-thumb.lazy {
  opacity: 0;
}

.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

.bxslider {
  margin: 0;
  padding: 0;
}

ul.bxslider {
  list-style: none;
}

.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}

/** THEME
===================================*/

.bx-wrapper {
  background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -20px;
  width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url("../images/libs/bx_loader.gif") center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #f7f8f8;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #666666;
}

.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
  left: 10px;
  background: url("../images/libs/bxSlider/controls.png") no-repeat 0 -32px;
}

.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}

.bx-wrapper .bx-next {
  right: 10px;
  background: url("../images/libs/bxSlider/controls.png") no-repeat -43px -32px;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url("../images/libs/bxSlider/controls.png") -86px -11px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url("../images/libs/bxSlider/controls.png") -86px -44px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

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

/* Slider */

.slick-loading .slick-list {
  background: #fff url("./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%);
  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: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -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-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

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

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  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: 12px;
  height: 12px;
  border-radius: 100px;
  background-color: #ffffff;
  border: solid 1px #17acc7;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  background-color: #f28149;
  border: solid 1px #f28149;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-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);
  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;
  height: 100%;
  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;
}

/* コンポーネント */

/*=========================
lower pages breadcrumb
==========================*/

.breadcrumb {
  font-size: 13px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  color: #666666;
}

.breadcrumb a {
  text-decoration: none;
  color: #666666;
}

.breadcrumb a:after {
  content: "＞";
  display: inline-block;
  margin: 0px 1px;
}

.btn {
  display: inline-block;
  background-color: #ffffff;
  border-radius: 100px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  padding: 10px 70px 10px 20px;
  float: right;
  border: solid 1px #a2a2a2;
  letter-spacing: 0px;
  position: relative;
  transition: .3s;
}

.btn:before,
.btn:after {
  transition: .3s;
}

.btn:before {
  content: "";
  width: 10px;
  height: 10px;
  border: solid 1px #E50019;
  border-radius: 50px;
  display: block;
  position: absolute;
  right: 50px;
  top: 50%;
  margin-top: -5px;
}

.btn:after {
  content: "";
  width: 31px;
  height: 8px;
  display: block;
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -7px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/common/btn_arrow@2x.png);
}

.btn:hover {
  opacity: 1 !important;
  border: solid 1px #E50019;
  color: #525252;
}

.btn:hover:before {
  right: 37px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
}

.btn:hover:after {
  right: 15px;
}

.block--contents--table {
  margin-top: 60px;
  background-color: #fff;
  max-width: 870px;
  width: 100%;
  margin: 80px auto;
}

.block--contents--table .block--contents--table_header {
  background-color: #f1f9ff;
  color: #17acc7;
  font-weight: bold;
  border-bottom: solid 2px #17acc7 !important;
}

.block--contents--table dt {
  font-size: 15px;
  padding: 10px;
  color: #333333;
}

.block--contents--table dd {
  font-size: 15px;
  padding: 15px 10px;
}

.block--contents--table--dot {
  padding-left: 1em;
  text-indent: -1em;
}

.block--contents--table--dot:before {
  content: "・";
}

.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 {
  font-size: 85px;
  line-height: 85px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: normal;
  letter-spacing: 5px;
}

.sec-title_sub {
  font-size: 15px;
  letter-spacing: 1px;
  color: #E50019;
  font-weight: bold;
}

.page-tlt {
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 100px;
  font-weight: normal;
  position: relative;
}

.page-tlt_sub {
  font-size: 20px;
  display: block;
  font-weight: bold;
}

.page-sec_tlt {
  font-size: 88px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: normal;
}

.page-sec_tlt_m {
  font-size: 50px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: normal;
}

.page-sec_tlt_sub {
  font-size: 35px;
  color: #E50019;
  font-weight: bold;
}

.page-header {
  position: relative;
  height: 490px;
}

.page-header_tlt {
  width: 670px;
  height: 490px;
  background: #ffffff;
  background-image: url(../images/common/page_header/page_header_pattern_02.png);
  background-position: right 90px;
  background-size: 95px 95px;
  background-repeat: no-repeat;
  border-radius: 0px 400px 400px 0px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 10;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-header_img {
  width: calc(100% - 420px);
  height: 425px;
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  background-image: url(../images/index/home_withone_header@2x.png);
  position: absolute;
  right: 0px;
  top: 0px;
}

.page-header_pattern_01 {
  background-image: url(../images/common/page_header/page_header_pattern_01@2x.png);
  width: 165px;
  height: 149px;
  bottom: -75px;
  left: -53px;
  z-index: 10;
}

.page-header_pattern_02 {
  background-image: url(../images/common/page_header/page_header_pattern_02@2x.png);
  width: 220px;
  height: 220px;
  top: -75px;
  right: 7px;
  z-index: 10;
  mix-blend-mode: multiply;
}

.page-header_pattern_04 {
  background-image: url(../images/common/page_header/page_header_pattern_04@2x.png);
  width: 220px;
  height: 220px;
  top: -75px;
  right: -53px;
  z-index: 10;
  mix-blend-mode: multiply;
}

.c-page__intro {
  margin-bottom: 30px;
  letter-spacing: 0;
}

.c-page__intro:after {
  content: "";
  clear: both;
  display: block;
}

.c-page__intro p {
  margin-bottom: 15px;
}

.c-page__intro p:last-child {
  margin-bottom: 0;
}

.c-movie__wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.c-movie__wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.c-news dl {
  margin-top: 10px;
}

.c-news dl dt {
  font-family: "Crimson Text", serif;
  font-weight: bold;
}

.news-list {
  margin-bottom: 25px;
}

.news-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eeeeee;
}

.news-list dl dt {
  font-weight: bold;
  color: #3ead6d;
}

.news-list a {
  display: block;
  position: relative;
  padding-right: 20px;
  text-decoration: none;
}

.news-list a i {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #3ead6d;
}

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

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

.c-pagination ul {
  font-weight: bold;
}

.c-pagination ul > li {
  display: inline-block;
}

.c-pagination ul a {
  margin: 0 5px;
  text-decoration: none;
}

.c-pagination ul a:hover {
  color: #f4f9fc;
}

.c-pagination ul span {
  margin: 0 5px;
}

.c-pagination ul span.current {
  color: #f4f9fc;
}

.pagetop {
  display: none;
  width: 70px;
  position: fixed;
  bottom: 70px;
  right: 15px;
  z-index: 1050;
}

.c-table {
  display: table;
  width: 100%;
  border: 1px solid #192431;
  border-collapse: collapse;
  color: #ffffff;
}

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

.c-table > dl > dt {
  width: 120px;
  padding: 10px;
  display: table-cell;
  vertical-align: middle;
  border-bottom: 1px solid #192431;
  font-weight: bold;
}

.c-table > dl > dd {
  display: table-cell;
  padding: 10px;
  border-bottom: 1px solid #192431;
  border-left: 1px solid #192431;
}

.c-table > dl > dd .c-table-title {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "HiraKakuProN-W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
}

.c-table > dl > dd .c-table-list {
  margin-bottom: 25px;
  padding-left: 1.5em;
}

.c-table > dl > dd .c-table-list:last-of-type {
  margin-bottom: 0;
}

.c-table > dl > dd .c-table-list > li {
  margin-bottom: 15px;
  list-style: disc;
}

.c-table > dl > dd .c-table-list > li:last-child {
  margin-bottom: 0;
}

.c-table > dl > dd .c-table-list__nomargin > li {
  margin: 0;
}

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

.c-table--child dt {
  display: table-cell;
  width: 52px;
}

.c-table--child dd {
  display: table-cell;
}

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

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

.footer-contact_sec {
  margin-top: 180px;
}

.footer-contact_sec_pattern_01 {
  width: 53px;
  height: 53px;
  top: -40px;
  left: -55px;
  background-image: url(../images/footer/footer_contact_p02@2x.png);
}

.footer-contact_sec_contents {
  background-color: #eeeeee;
  text-align: center;
  padding: 50px 30px !important;
  margin: auto;
  width: 90%;
  max-width: 1030px;
  position: relative;
  border-radius: 20px;
}

.footer-contact_sec_contents_fig {
  position: absolute;
  left: 7px;
  top: -197px;
}

.footer-contact_sec_contents_inner {
  border: solid 1px #333333;
  border-radius: 20px;
  padding: 0px 20px 35px 20px;
}

.footer-contact_sec_contents_inner_tlt {
  margin-top: -40px;
  background-color: #eeeeee;
  display: inline-block;
  position: relative;
  top: -10px;
  padding: 0px 30px;
  font-size: 28px;
  letter-spacing: 0px;
}

.footer-contact_sec_contents_inner_txt {
  margin-top: 24px;
  margin-bottom: 25px;
  font-size: 17px;
  font-weight: bold;
}

.footer-contact_sec_contents_inner .btn {
  float: none;
}

.footer {
  background-color: #eeeeee;
  padding: 115px 20px 40px 20px;
  position: relative;
  margin-top: 90px;
}

.footer_pattern_01 {
  width: 195px;
  height: 163px;
  top: -120px;
  right: 20px;
  background-image: url(../images/footer/footer_p01@2x.png);
  z-index: -1;
}

.footer_jp {
  font-weight: bold;
}

.footer-inner {
  width: 100%;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-inner_box {
  text-align: left;
  display: inline-block;
  padding-right: 30px;
  width: 15%;
}

.footer-inner_box:last-child {
  margin-right: 0px;
}

.footer-inner_box li {
  font-size: 12px;
  margin-bottom: 7px;
}

.footer-inner_box li a {
  text-decoration: none;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  line-height: 10px;
}

.footer-inner_box_head {
  font-size: 20px !important;
  height: 100px;
}

.footer-inner_box_head a {
  font-weight: normal;
}

.footer-inner_box_head_inline {
  font-size: 20px !important;
}

.footer-inner_box_company li {
  font-weight: bold;
  line-height: 20px;
}

.footer-inner_box_company li:first-child {
  margin-bottom: 40px;
}

.footer-groups {
  text-align: center;
  margin-top: 50px;
}

.footer-groups li {
  display: inline-block;
  margin: 0px 20px;
}

.footer-groups li img {
  width: 90px;
}

.gnav-btn {
  width: 50px;
  height: 43px;
  text-align: center;
  vertical-align: middle;
  position: absolute;
  top: 7px;
  right: 0px;
  z-index: 10;
  cursor: pointer;
}

.gnav-btn_inner {
  border-radius: 50%;
  border: solid 1px #333333;
  width: 25px;
  height: 25px;
  position: relative;
  top: 10px;
  left: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.gnav-btn_inner:before {
  content: "";
  width: 25px;
  height: 25px;
  border: solid 1px #333333;
  transition: .2s;
  border-radius: 100px;
  opacity: 0;
}

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

.gnav-btn__container > span {
  position: absolute;
  width: 23px;
  height: 2px;
  left: 50%;
  margin-left: -15px;
  display: block;
  background-color: #E50019;
  transition: all .4s;
  border-radius: 30px;
}

.gnav-btn__container > span:first-child {
  top: 11px;
}

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

.gnav-btn__container > span:nth-child(3) {
  bottom: 16px;
}

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

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

.gnav-txt__close {
  display: none;
}

.menu-open .gnav-btn_inner:before {
  width: 9px;
  height: 9px;
  opacity: 1;
}

.menu-open .gnav-txt__close {
  display: block;
  color: #ffffff;
}

.menu-open .gnav-txt__open {
  display: none;
}

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

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

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

/*=========================
.sp-navi
==========================*/

.sp-navi {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  overflow-y: scroll;
  background-color: #ffffff;
  overflow: hidden;
}

.sp-navi_pattern_01 {
  width: 135px;
  height: 157px;
  top: -90px;
  left: -50px;
  background-image: url(../images/header/sp_menu_p01@2x.png);
}

.sp-navi_pattern_02 {
  width: 229px;
  height: 208px;
  bottom: -90px;
  right: -50px;
  background-image: url(../images/header/sp_menu_p02@2x.png);
}

.sp-navi .sp-navi-list {
  padding: 40px 20px 20px 20px;
  position: relative;
  z-index: 1;
}

.sp-navi .sp-navi-list > li {
  padding: 12px 0;
}

.sp-navi .sp-navi-list > li a {
  text-decoration: none;
  font-weight: normal;
  font-size: 22px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  letter-spacing: 2px;
}

.sp-navi .sp-navi-list > li a i:first-child {
  margin-right: 15px;
}

.sp-navi .sp-navi-list > li a img {
  width: auto;
}

.sp-navi .sp-navi-list > li form {
  position: relative;
}

.sp-navi .sp-navi-list > li input[type="text"] {
  padding: 10px;
  border-radius: 100px;
  border: solid 1px #e6e6e6;
}

.sp-navi .sp-navi-list > li input[type="image"] {
  position: absolute;
  top: 12px;
  right: 20px;
}

.sp-navi .sp-navi-list .sp-navi-logo img {
  width: auto;
}

.sp-navi .sp-subnavi-list {
  text-align: center;
  margin-top: 20px;
}

.sp-navi .sp-subnavi-list > li {
  padding: 10px 0;
}

.sp-navi .sp-subnavi-list > li a {
  text-decoration: none;
  font-weight: normal;
  font-size: 14px;
}

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

.pc-navi-top {
  display: none;
}

.pc-navi-bottom .pc-mainnavi {
  display: none;
}

.pc-navi-bottom .pc-mainnavi > li {
  display: inline-block;
  text-align: center;
  position: relative;
  margin: 9px 13px 0px 13px;
}

.pc-navi-bottom .pc-mainnavi > li:last-child {
  margin-right: 0px;
}

.pc-navi-bottom .pc-mainnavi > li a {
  text-decoration: none;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 18px;
  position: relative;
}

.pc-navi-bottom .pc-mainnavi > li a:after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #E50019;
  position: relative;
  left: 0;
  right: 0;
  bottom: -5px;
  margin: auto;
  display: block;
  opacity: 0;
}

.pc-navi-bottom .pc-mainnavi > li a:hover {
  color: #E50019 !important;
  opacity: 1 !important;
}

.pc-navi-bottom .pc-mainnavi > li a:hover:after {
  opacity: 1;
}

.home .nav-home a {
  color: #E50019;
}

.home .nav-home a:after {
  opacity: 1 !important;
}

.news .nav-news a {
  color: #E50019;
}

.news .nav-news a:after {
  opacity: 1 !important;
}

.company .nav-company a {
  color: #E50019;
}

.company .nav-company a:after {
  opacity: 1 !important;
}

.works_groups .nav-works_groups a {
  color: #E50019;
}

.works_groups .nav-works_groups a:after {
  opacity: 1 !important;
}

.team_member .nav-team_member a {
  color: #E50019;
}

.team_member .nav-team_member a:after {
  opacity: 1 !important;
}

.withone .nav-withone a {
  color: #E50019;
}

.withone .nav-withone a:after {
  opacity: 1 !important;
}

.clubone .nav-clubone a {
  color: #E50019;
}

.clubone .nav-clubone a:after {
  opacity: 1 !important;
}

.contact .nav-contact a {
  color: #E50019;
}

.contact .nav-contact a:after {
  opacity: 1 !important;
}

.search .nav-search a {
  color: #E50019;
}

.search .nav-search a:after {
  opacity: 1 !important;
}

.nav-marketing {
  width: 100px;
}

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

.l-header {
  width: 100%;
  height: 55px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  opacity: 0;
  transition: .3s;
}

.l-header .l-container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 0px 5px #d8d8d8;
}

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

.l-header .logo {
  width: 138px;
  margin-top: 13px;
  float: left;
  position: relative;
  z-index: 100;
}

.l-header .logo a {
  display: block;
}

.l-header .pc-navi-bottom {
  float: right;
  width: 1030px;
}

.page .pc-mainnavi li:before {
  background-color: #ffffff;
}

#top {
  position: absolute;
  top: 0px;
  left: 0px;
}

.menu-open .logo {
  display: none;
}

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

.sec-contents {
  padding: 40px 0;
}

.l-container {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

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

.sec-contents_bg {
  background-size: 100% auto;
  background-position: left;
  background-image: url(../images/common/contents_bg@2x.png);
}

.with-club_sec .home-sec_inner:after {
  content: "";
  clear: both;
  display: block;
}

.with-club_sec_header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  z-index: 10;
  padding-bottom: 100px;
}

.with-club_sec_header .home-sec_img {
  width: 50%;
  height: 390px;
}

.with-club_sec_header_contents {
  width: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.with-club_sec_header_contents_inner {
  position: relative;
}

.with-club_sec_contents {
  position: absolute;
  bottom: 10px;
  width: 95%;
  height: 300px;
}

.with-club_sec .btn {
  position: relative;
  top: 20px;
}

.withone-sec {
  position: relative;
}

.withone-sec_pattern_01 {
  width: 189px;
  height: 189px;
  top: 170px;
  right: -30px;
  background-image: url(../images/index/home_withone_p02@2x.png);
}

.withone-sec_pattern_02 {
  width: 327px;
  height: 316px;
  bottom: -180px;
  left: -30px;
  background-image: url(../images/index/home_withone_p03@2x.png);
}

.withone-sec .home-sec_img {
  border-radius: 0px 400px 400px 0px;
  background-image: url(../images/index/home_withone_header@2x.png);
}

.withone-sec .with-club_sec_contents {
  border-radius: 0px 0px 100px 0px;
}

.withone-sec_fig {
  position: absolute;
  top: -360px;
  left: -100px;
  right: 0px;
  margin: auto;
  width: 470px;
  max-width: inherit;
}

.clubone-sec {
  position: relative;
}

.clubone-sec_pattern_01 {
  width: 189px;
  height: 224px;
  bottom: -50px;
  left: 30%;
  background-image: url(../images/index/home_clubone_p01@2x.png);
}

.clubone-sec .home-sec_img {
  border-radius: 400px 0px 0px 400px;
  background-image: url(../images/index/home_clubone_header@2x.png);
  background-position: top;
}

.clubone-sec .with-club_sec_header {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.clubone-sec .with-club_sec_contents {
  right: 0px;
  border-radius: 0px 0px 0px 100px;
}

.slick-arrow {
  z-index: 1000;
  background-color: #fff;
  border-radius: 100px;
  width: 50px;
  height: 50px;
}

.slick-arrow:hover,
.slick-arrow:focus {
  background: #ffffff !important;
}

.slick-prev {
  left: 20px;
}

.slick-prev:before {
  content: "";
  width: 31px;
  height: 8px;
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -4px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/common/slide_arrow_prev@2x.png);
  transition: .3s;
}

.slick-next {
  right: 20px;
}

.slick-next:before {
  content: "";
  width: 31px;
  height: 8px;
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -4px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/common/slide_arrow_next@2x.png);
  transition: .3s;
}

.slide_outer_arrow {
  width: 170px;
  height: 50px;
  position: absolute;
  bottom: -70px;
  right: 20px;
}

.patterns {
  position: absolute;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.no_bold {
  font-weight: normal !important;
}

.fade_contents {
  opacity: 0;
  transition: 1s;
}

.first_contents {
  opacity: 0;
  transition: 1s;
}

.fade_inview {
  opacity: 1 !important;
}

.home-sec_img,
.patterns,
.fade_up_contents {
  margin-top: 100px;
  transition: 1.5s;
  opacity: 0;
}

.fade_up_inview {
  opacity: 1 !important;
  margin-top: 0px;
}

.menu-round {
  text-align: left;
  margin: 20px 0px;
}

.menu-round_list {
  display: inline-block;
  margin: 20px 0px;
}

.menu-round_list_link {
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 100px;
  background-color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  margin: 0px 15px;
  text-align: center;
}

.menu-round_list_link_current {
  border: solid 3px #E50019;
}

.l-sidebar {
  margin-top: 40px;
}

.l-sidebar .sidebar-contents {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.l-sidebar .sidebar-contents .title-accordion {
  display: block;
  position: relative;
  background-color: #ffffff;
  padding: 10px 0 10px 15px;
  cursor: pointer;
  border-radius: 10px;
}

.l-sidebar .sidebar-contents--model .title-accordion img {
  width: 250px;
}

.l-sidebar .sidebar-contents--area {
  margin-top: 20px;
}

.l-sidebar .sidebar-contents--area .title-accordion img {
  width: 237px;
}

.l-sidebar .sidebar-contents .side-title {
  font-size: 19px;
}

.l-sidebar .sidebar-contents .title-accordion {
  position: relative;
}

.l-sidebar .sidebar-contents .title-accordion i {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #59af26;
}

.l-sidebar .js-accordion-contents {
  display: none;
}

.l-sidebar .sidebar-contents__inner {
  padding: 10px;
}

.l-sidebar .model-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: -10px;
}

.l-sidebar .model-list > li {
  margin-top: 10px;
  width: calc(33.33333% - 10px);
}

.l-sidebar .side-area__title {
  background-color: #f7f8f8;
  padding: 5px;
  font-size: 14px;
  color: #f28149;
}

.l-sidebar .side-area__subtitle {
  margin: 5px;
  color: #f28149;
}

.l-sidebar .side-area__subtitle:not(:first-of-type) {
  margin-top: 10px;
}

.l-sidebar .side-area__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;
}

.l-sidebar .side-area__list::after {
  content: "";
  display: block;
  width: calc(33.33333% - 3px);
}

.l-sidebar .side-area__list > li {
  margin-top: 5px;
  width: calc(33.33333% - 3px);
}

.l-sidebar .side-area__list > li a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  color: #f28149;
  text-align: center;
  border: 1px solid #f28149;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 0;
}

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

/*=========================
common lower pages settings
==========================*/

/*=========================
common lower pages page-header
==========================*/

.page-header_contents {
  position: relative;
  z-index: 5;
  margin-top: -65px;
  padding: 100px 20px 10px 70px;
  margin-bottom: 100px;
}

.page-sec_tlt_ja {
  font-size: 21px;
  color: #E50019;
  font-weight: bold;
  line-height: 1;
  display: block;
  margin: -18px 0 32px 3px;
}

.page-footer_menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
}

.page-footer_menu_link {
  width: 50%;
  height: 390px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  position: relative;
}

.page-footer_menu_link_txt {
  height: 390px;
  width: 30%;
  min-width: 420px;
  background: linear-gradient(90deg, rgba(255, 116, 100, 0.9) 0%, rgba(255, 193, 147, 0.9) 100%);
  border-radius: 0px 400px 400px 0px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
}

.page-footer_menu_link_txt_tlt {
  font-size: 78px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: normal;
  color: #ffffff;
  opacity: 1 !important;
}

.page-footer_menu_link_txt_tlt_sub {
  font-size: 20px;
  font-weight: bold;
  display: block;
}

.ancr {
  position: absolute;
  top: -70px;
}

.company-about {
  background-color: #FBFBFB;
}

.company-about-sec_groups {
  padding-bottom: 10px;
}

.company-about-sec_groups .l-container {
  position: relative;
}

.company-about-sec_groups_pattern_01 {
  width: 271px;
  height: 361px;
  top: -97px;
  right: 141px;
  -webkit-transform: rotate(12deg);
  transform: rotate(12deg);
  background-image: url(../images/index/home_works_p02@2x.png);
}

.company-about-sec_groups_pattern_02 {
  width: 50px;
  height: 50px;
  top: -140px;
  right: -40px;
  background-image: url(../images/index/home_works_p03@2x.png);
}

.company-about-sec_groups_pattern_03 {
  width: 62px;
  height: 193px;
  bottom: 88px;
  right: -52px;
  background-image: url(../images/index/home_works_p05@2x.png);
}

.company-about-sec_groups_pattern_04 {
  width: 105px;
  height: 105px;
  bottom: -40px;
  left: -55px;
  background-image: url(../images/index/home_works_p04@2x.png);
}

.company-about-sec_groups_pattern_05 {
  width: 105px;
  height: 105px;
  bottom: 80px;
  right: -35px;
  background-image: url(../images/index/home_works_p06@2x.png);
}

.company-about-sec_groups_pattern_06 {
  width: 232px;
  height: 224px;
  bottom: -31px;
  right: -97px;
  background-image: url(../images/index/home_works_p07@2x.png);
}

.company-about-sec_groups_pattern_07 {
  width: 126px;
  height: 126px;
  bottom: 80px;
  left: -35px;
  background-image: url(../images/index/home_works_p08@2x.png);
}

.company-about-sec_groups_pattern_08 {
  width: 104px;
  height: 110px;
  bottom: -20px;
  right: -35px;
  z-index: 15;
  background-image: url(../images/index/home_works_p09@2x.png);
  mix-blend-mode: multiply;
}

.company-about-sec_groups .page-sec_tlt {
  padding-left: 65px;
}

.company-about-sec_groups_text {
  font-size: 18px;
  font-weight: bold;
  line-height: 2.1;
  padding-left: 65px;
  margin-top: 40px;
}

.company-about-sec_groups_list {
  width: 1235px;
  margin: 0 auto;
}

.company-about-sec_groups_list_item {
  margin-top: 25px;
  margin-bottom: 30px;
  padding: 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  position: relative;
}

.company-about-sec_groups_list_item:after {
  content: "";
  clear: both;
  display: block;
}

.company-about-sec_groups_list_item_inner {
  width: 100%;
  background-color: #ffffff;
  border-radius: 50px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 55px 30px;
  position: relative;
  z-index: 10;
  box-shadow: 0px 0px 5px #d8d8d8;
}

.company-about-sec_groups_list_item_logo {
  width: 36%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.company-about-sec_groups_list_item_contents {
  width: 60%;
  padding-left: 25px;
  max-width: 665px;
}

.company-about-sec_groups_list_item_contents:after {
  content: "";
  clear: both;
  display: block;
}

.company-about-sec_groups_list_item_contents_tlt {
  font-size: 30px;
  line-height: 27px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: normal;
  margin-bottom: 10px;
}

.company-about-sec_groups_list_item_contents_tag {
  color: #E50019;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0px;
}

.company-about-sec_groups_list_item_contents_txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 2.1;
  letter-spacing: 0px;
  margin: 10px 0 0;
}

.company-about-sec_groups_arrow {
  display: none;
}

.company-about-sec_profile {
  background-color: #ffffff;
  padding: 75px 0 165px;
  position: relative;
}

.company-about-sec_profile_pattern_01 {
  width: 169px;
  height: 196px;
  top: 387px;
  left: -88px;
  background-image: url(../images/company/about/about_pt01@2x.png);
}

.company-about-sec_profile_df {
  letter-spacing: 0;
  padding: 45px 0;
  border-bottom: 1px solid #D6D6D6;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.company-about-sec_profile_df_term {
  width: 150px;
  font-weight: bold;
  color: #646464;
  line-height: 2.4;
}

.company-about-sec_profile_df_dsc {
  width: 482px;
  font-size: 15px;
  font-weight: bold;
  line-height: 2.6;
  padding-left: 45px;
}

.company-about-sec_history {
  background-color: #ffffff;
  padding: 75px 0 55px;
  position: relative;
}

.company-about-sec_history_pattern_01 {
  width: 193px;
  height: 187px;
  top: -10px;
  right: -43px;
  background-image: url(../images/company/about/about_pt02@2x.png);
}

.company-about-sec_history_col_box:last-of-type {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.company-about-sec_history_year {
  width: 185px;
  padding: 0 25px 93px 0;
  position: relative;
}

.company-about-sec_history_year:after {
  content: '';
  width: 11px;
  height: 122px;
  background-image: url(../images/company/about/img_history.svg);
  background-size: cover;
  display: block;
  position: absolute;
  top: 7px;
  right: 0;
}

.company-about-sec_history_year_text {
  font-size: 18px;
  font-weight: bold;
}

.company-about-sec_history_year_text span {
  font-weight: normal;
  color: #646464;
  padding-left: 25px;
}

.company-about-sec_history_year:nth-of-type(9):after {
  content: '';
  width: 11px;
  height: 11px;
  background-image: url(../images/company/about/img_history02.svg);
}

.company-about-sec_history_detail {
  width: calc(100% - 185px);
  padding-left: 70px;
}

.company-about-sec_history_detail_text {
  font-size: 15px;
  font-weight: bold;
  padding-top: 1px;
}

.company-about-sec_suppliers {
  padding: 75px 0 130px;
  text-align: center;
  position: relative;
}

.company-about-sec_suppliers_pattern_01 {
  width: 186px;
  height: 188px;
  top: 42px;
  left: -88px;
  background-image: url(../images/company/about/about_pt03@2x.png);
}

.company-about-sec_suppliers_pattern_02 {
  width: 224px;
  height: 262px;
  bottom: -50px;
  right: -88px;
  background-image: url(../images/company/about/about_pt04@2x.png);
}

.company-about-sec_suppliers_heading {
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.company-about-sec_suppliers_list {
  width: 100%;
  margin: 0 auto;
}

.company-about-sec_suppliers_list_item {
  margin-bottom: 30px;
}

.company-about .withone-sec_fig,
.company-about .withone-sec_pattern_01,
.company-about .withone-sec_pattern_02,
.company-about .clubone-sec_pattern_01,
.company-about .footer-contact_sec_contents_fig {
  display: none;
}

.company-about .footer-contact_sec {
  margin-top: -15px;
  padding-top: 0;
}

.company-access {
  background-color: #FBFBFB;
}

.company-access-sec {
  position: relative;
  margin-bottom: 50px;
}

.company-access-sec_pattern_01 {
  width: 169px;
  height: 196px;
  top: 80px;
  left: -104px;
  background-image: url(../images/company/access/access_pt01@2x.png);
}

.company-access-sec_pattern_02 {
  width: 224px;
  height: 262px;
  bottom: -290px;
  right: -112px;
  background-image: url(../images/company/access/access_pt02@2x.png);
}

.company-access-sec_col_box {
  position: relative;
  letter-spacing: 0;
}

.company-access-sec_col_box .page-sec_tlt {
  margin: 0px 0 50px;
}

.company-access-sec_col_box_text {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 36px;
}

.company-access-sec_col_box_text:last-of-type {
  margin-top: -30px;
}

.company-access-sec_col_box_text_ho {
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: normal;
}

.company-access-sec_col_box_iframe {
  position: relative;
  padding-top: 97%;
  margin-top: 30px;
}

.company-access-sec_col_box_iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.company-access-sec_col_box_btn {
  position: absolute;
  left: 0;
  bottom: 0;
}

.company-access .withone-sec_fig,
.company-access .withone-sec_pattern_01,
.company-access .withone-sec_pattern_02,
.company-access .clubone-sec_pattern_01,
.company-access .footer-contact_sec_contents_fig {
  display: none;
}

.company-access .footer-contact_sec {
  margin-top: -15px;
  padding-top: 0;
}

.company-philosophy-sec {
  position: relative;
}

.company-philosophy-sec_col_box {
  position: relative;
  letter-spacing: 0;
}

.company-philosophy-sec_philosophy_col {
  margin-top: 100px;
}

.company-philosophy-sec_philosophy_col_box_heading {
  font-size: 29px;
  line-height: 2.2;
  margin-bottom: 40px;
}

.company-philosophy-sec_philosophy_col_box_fig {
  position: relative;
}

.company-philosophy-sec_philosophy_col_box_text {
  line-height: 2.1;
  margin-bottom: 36px;
}

.company-philosophy-sec_philosophy_col_box_text:last-of-type {
  margin-top: 80px;
}

.company-philosophy-sec_philosophy_col_box:last-of-type {
  padding-top: 8px;
}

.company-philosophy-sec_message_pattern_01 {
  width: 193px;
  height: 187px;
  bottom: 728px;
  right: -50px;
  background-image: url(../images/company/philosophy/philosophy_pt02@2x.png);
}

.company-philosophy-sec_message_pattern_02 {
  width: 186px;
  height: 188px;
  bottom: -130px;
  left: -94px;
  background-image: url(../images/company/philosophy/philosophy_pt03@2x.png);
}

.company-philosophy-sec_message_col {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 70px;
}

.company-philosophy-sec_message_col_box_text {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 36px;
}

.company-philosophy-sec_message_col_box_text:last-of-type {
  font-size: 18px;
  font-weight: bold;
  margin-top: 100px;
}

.company-philosophy .withone-sec_fig,
.company-philosophy .withone-sec_pattern_01,
.company-philosophy .withone-sec_pattern_02,
.company-philosophy .clubone-sec_pattern_01,
.company-philosophy .footer-contact_sec_contents_fig {
  display: none;
}

.company-philosophy .footer-contact_sec {
  margin-top: -15px;
  padding-top: 0;
}

.company-philosophy .page-footer_menu_link_history {
  background-image: url(../images/company/common/footer_history_bg@2x.png);
  background-position: 1px;
}

.company-philosophy .page-footer_menu_link_access {
  background-image: url(../images/company/common/footer_access_bg@2x.png);
}

.company .page-header_img {
  width: calc(100% - 570px);
  background-image: url(../images/company/common/company_header_bg@2x.png);
}

.company-sec_vmv_list {
  position: relative;
  margin-bottom: 160px;
}

.company-sec_vmv_list:last-child {
  margin-bottom: 100px;
}

.company-sec_vmv_list_txt .page-sec_tlt {
  line-height: 120px;
}

.company-sec_vmv_list_txt_p {
  font-size: 28px;
  font-weight: bold;
  margin-top: 30px;
  line-height: 53px;
}

.company-sec_vmv_list_txt_line {
  border-left: solid 20px #E50019;
  padding: 13px 0px 6px 25px;
}

.company-sec_vmv_list_txt_line .page-sec_tlt_m {
  line-height: 51px;
}

.company-sec_vmv_list_fig {
  position: absolute;
  top: 0px;
  right: 120px;
}

.company-sec_identity {
  text-align: center;
  margin-bottom: 40px;
}

.company-sec_identity_tlt {
  font-size: 88px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: normal;
  margin-bottom: 70px;
}

.company .page-footer_menu_link_history {
  background-image: url(../images/company/common/footer_history_bg@2x.png);
  background-position: 1px;
}

.company .page-footer_menu_link_access {
  background-image: url(../images/company/common/footer_access_bg@2x.png);
}

.home .fv-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.home .fv-container_scroll {
  position: absolute;
  bottom: 80px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 150;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
  color: #E50019;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  display: inline-block;
  width: 150px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.home .fv-container_scroll:after {
  content: "";
  width: 21px;
  height: 8px;
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -4px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/common/arrow@2x.png);
  transition: .3s;
}

.home .fv-container_scroll:hover {
  opacity: 1;
}

.home .fv-container_scroll:hover:after {
  right: 13px;
}

.home .fv-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10010;
}

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

.home #home_contents {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #fff;
}

.home-sec {
  margin: 30px 0px;
  position: relative;
}

.home-sec_inner {
  position: relative;
}

.home-sec_inner:after {
  content: "";
  clear: both;
  display: block;
}

.home-sec_img {
  background-size: cover;
  background-position: center;
  width: 50%;
  height: 470px;
}

.home-news_sec {
  margin-bottom: 250px;
  margin-top: 130px;
}

.home-news_sec_pattern_01 {
  width: 68px;
  height: 68px;
  top: -25px;
  right: 191px;
  background-image: url(../images/index/home_news_p01@2x.png);
}

.home-news_sec_pattern_02 {
  width: 100px;
  height: 100px;
  top: 57px;
  left: 59px;
  z-index: 10;
  background-image: url(../images/index/home_news_p02@2x.png);
  mix-blend-mode: multiply;
}

.home-news_sec_pattern_03 {
  width: 182px;
  height: 129px;
  bottom: -25px;
  left: 97px;
  z-index: 10;
  background-image: url(../images/index/home_news_p03@2x.png);
}

.home-news_sec_pattern_04 {
  width: 296px;
  height: 264px;
  bottom: -142px;
  right: -25px;
  background-image: url(../images/index/home_news_p04@2x.png);
}

.home-news_sec_inner .home-sec_img {
  position: absolute;
  top: 110px;
  background-image: url(../images/index/home_news_header@2x.png);
  border-radius: 0px 400px 400px 0px;
}

.home-news_sec .sec-title {
  line-height: 20px;
  margin-left: 11px;
  position: relative;
  top: 5px;
}

.home-news_sec .sec-title_sub {
  top: -24px;
  left: -5px;
  position: relative;
}

.home-news_sec_contents {
  width: 60%;
  float: right;
}

.home-news_sec_contents_box {
  padding: 70px 35px 50px 12vw;
  border-radius: 50px 0px 0px 50px;
}

.home-news_sec_contents_box:after {
  content: "";
  clear: both;
  display: block;
}

.home-news_sec_list {
  margin-bottom: 45px;
}

.home-news_sec_list_lists {
  background-color: #ffffff;
  box-shadow: 0px 0px 5px #d8d8d8;
  margin-bottom: 25px;
  padding: 17px 20px;
  border-radius: 10px;
}

.home-news_sec_list_lists_link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  text-decoration: none;
}

.home-news_sec_list_lists_title {
  letter-spacing: -1px;
}

.home-news_sec_list_lists_date {
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: normal;
  letter-spacing: 0px;
  font-size: 14px;
}

.home-news_sec_list_lists_company_tag {
  display: inline-block;
  width: 70px;
  height: 30px;
  margin: 0px 17px;
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.home-news_sec_list_lists_company_tag_one {
  background-image: url(../images/common/one_logo@2x.png);
}

.home-works_groups_sec {
  position: relative;
  position: relative;
}

.home-works_groups_sec_pattern_01 {
  width: 271px;
  height: 361px;
  top: -210px;
  left: 1px;
  background-image: url(../images/index/home_works_p02@2x.png);
}

.home-works_groups_sec_pattern_01_s {
  display: none;
}

.home-works_groups_sec_pattern_02 {
  width: 471px;
  height: 395px;
  top: -221px;
  left: -396px;
  background-image: url(../images/index/home_works_p01@2x.png);
}

.home-works_groups_sec_pattern_03 {
  width: 50px;
  height: 50px;
  top: 30px;
  right: -40px;
  background-image: url(../images/index/home_works_p03@2x.png);
}

.home-works_groups_sec_pattern_04 {
  width: 62px;
  height: 193px;
  bottom: -92px;
  right: -52px;
  background-image: url(../images/index/home_works_p05@2x.png);
}

.home-works_groups_sec_pattern_05 {
  width: 105px;
  height: 105px;
  top: 125px;
  left: -55px;
  background-image: url(../images/index/home_works_p04@2x.png);
}

.home-works_groups_sec_pattern_06 {
  width: 105px;
  height: 105px;
  top: -20px;
  right: -35px;
  background-image: url(../images/index/home_works_p06@2x.png);
}

.home-works_groups_sec_pattern_07 {
  width: 232px;
  height: 224px;
  top: -20px;
  right: -35px;
  background-image: url(../images/index/home_works_p07@2x.png);
}

.home-works_groups_sec_pattern_08 {
  width: 126px;
  height: 126px;
  top: -20px;
  left: -35px;
  background-image: url(../images/index/home_works_p08@2x.png);
}

.home-works_groups_sec_pattern_09 {
  width: 104px;
  height: 110px;
  bottom: -20px;
  right: -35px;
  z-index: 15;
  background-image: url(../images/index/home_works_p09@2x.png);
  mix-blend-mode: multiply;
}

.home-works_groups_sec_pattern_10 {
  width: 60px;
  height: 60px;
  bottom: 30px;
  left: 0px;
  z-index: 15;
  background-image: url(../images/index/home_works_p10@2x.png);
}

.home-works_groups_sec .sec-title {
  line-height: 84px;
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}

.home-works_groups_sec .sec-title .sec-title_sub {
  position: relative;
  top: -20px;
  left: 20px;
}

.home-works_groups_sec .home-sec_img {
  background-image: url(../images/index/home_groups_header@2x.png);
  border-radius: 400px 0px 0px 400px;
}

.home-works_groups_sec_inner {
  padding-bottom: 10px;
  background-size: 100% 100%;
}

.home-works_groups_sec_header {
  padding-left: 90px;
  padding-top: 71px;
  position: relative;
}

.home-works_groups_sec_header .home-sec_img {
  position: absolute;
  right: 0px;
  width: 40%;
  top: -130px;
}

.home-works_groups_sec_header_contents {
  width: 60%;
}

.home-works_groups_sec_header_contents_txt {
  font-size: 16px;
  font-weight: bold;
  margin-top: 25px;
  line-height: 36px;
  letter-spacing: -1px;
}

.home-works_groups_sec_slide {
  padding: 0px 30px !important;
}

.home-works_groups_sec_lists {
  margin-top: 25px;
  margin-bottom: 30px;
  padding: 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  position: relative;
}

.home-works_groups_sec_lists:after {
  content: "";
  clear: both;
  display: block;
}

.home-works_groups_sec_lists_inner {
  width: 100%;
  background-color: #ffffff;
  border-radius: 50px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 55px 30px;
  position: relative;
  z-index: 10;
  box-shadow: 0px 0px 5px #d8d8d8;
}

.home-works_groups_sec_lists_logo {
  width: 40%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-works_groups_sec_lists_contents {
  width: 60%;
  padding-left: 45px;
  max-width: 560px;
}

.home-works_groups_sec_lists_contents:after {
  content: "";
  clear: both;
  display: block;
}

.home-works_groups_sec_lists_contents_tlt {
  font-size: 30px;
  line-height: 27px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: normal;
  margin-bottom: 20px;
}

.home-works_groups_sec_lists_contents_tag {
  color: #E50019;
  font-size: 13px;
  letter-spacing: 0px;
}

.home-works_groups_sec_lists_contents_txt {
  font-size: 15px;
  font-weight: bold;
  line-height: 35px;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.home-works_groups_sec .home-works_groups_arrow {
  display: none;
}

.home-one_engage_sec {
  position: relative;
  padding-left: 50px !important;
  margin-top: 160px;
}

.home-one_engage_sec_pattern_01 {
  width: 271px;
  height: 263px;
  top: -140px;
  left: 10px;
  background-image: url(../images/index/home_engage_01@2x.png);
}

.home-one_engage_sec_pattern_02 {
  width: 112px;
  height: 120px;
  top: -140px;
  right: 180px;
  background-image: url(../images/index/home_engage_02@2x.png);
}

.home-one_engage_sec_pattern_03 {
  width: 139px;
  height: 188px;
  top: -80px;
  right: 0px;
  z-index: 5;
  background-image: url(../images/index/home_engage_03@2x.png);
}

.home-one_engage_sec_pattern_04 {
  width: 232px;
  height: 224px;
  top: -50px;
  right: -130px;
  z-index: 5;
  background-image: url(../images/index/home_engage_04@2x.png);
}

.home-one_engage_sec_pattern_05 {
  width: 233px;
  height: 233px;
  bottom: -10px;
  right: 40%;
  background-image: url(../images/index/home_engage_05@2x.png);
}

.home-one_engage_sec .sec-title {
  position: relative;
  z-index: 5;
}

.home-one_engage_sec_inner {
  padding-bottom: 60px;
  height: 995px;
}

.home-one_engage_sec_header {
  max-height: 390px;
  height: 32vw;
}

.home-one_engage_sec .home-sec_img {
  width: 85%;
  position: relative;
  top: -100px;
  left: -50px;
  border-radius: 0px 400px 400px 0px;
  background-image: url(../images/index/home_engage_header@2x.png);
  background-position: right;
  max-height: 470px;
}

.home-one_engage_sec_contents {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-right: calc(100% - 75%);
  min-width: 1050px;
  padding-left: 50px;
  margin-top: 26px;
}

.home-one_engage_sec_contents:after {
  content: "";
  clear: both;
  display: block;
}

.home-one_engage_sec_contents_logo {
  margin-top: 20px;
}

.home-one_engage_sec_contents_logo li {
  width: 70px;
  margin-top: 30px;
}

.home-one_engage_sec_contents_logo li img {
  width: 100%;
}

.home-one_engage_sec_contents_tlt {
  position: relative;
}

.home-one_engage_sec_contents_txt {
  padding-right: 100px;
}

.home-one_engage_sec_contents_txt_tlt {
  font-size: 40px;
  margin-bottom: 25px;
  line-height: 60px;
}

.home-one_engage_sec_contents_txt_inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-left: 150px;
}

.home-one_engage_sec_contents_txt_inner_fig {
  width: 250px;
  position: absolute;
  left: -80px;
  top: -25px;
}

.home-one_engage_sec_contents_txt_inner_p {
  font-size: 15px;
  font-weight: bold;
  line-height: 48px;
  margin-top: 0px;
  letter-spacing: 0px;
}

.home-one_engage_sec_contents_txt_inner .btn {
  float: none;
  margin-top: 60px;
  line-height: 20px;
}

.home-member_sec {
  margin-top: 150px;
  margin-bottom: -10px;
}

.home-member_sec_pattern_01 {
  width: 363px;
  height: 264px;
  top: -124px;
  left: 34px;
  background-image: url(../images/index/home_member_p02@2x.png);
}

.home-member_sec_pattern_02 {
  width: 208px;
  height: 271px;
  top: -120px;
  right: 195px;
  z-index: 5;
  background-image: url(../images/index/home_member_p01@2x.png);
}

.home-member_sec .sec-title {
  padding-left: 95px;
  letter-spacing: 2px;
  line-height: 9px;
  position: relative;
  z-index: 5;
}

.home-member_sec_contents {
  padding-top: 50px;
  padding-bottom: 100px;
}

.home-member_sec .slide_outer_arrow {
  bottom: 28px;
}

.home-member_sec_slide_lists {
  padding-left: 70px;
  width: 340px;
}

.home-member_sec_slide_lists img {
  height: 300px;
  width: auto;
}

.home-member_sec_slide_lists_link {
  text-decoration: none;
}

.home-member_sec_slide_lists_tlt {
  background-color: #ffffff;
  border: solid 1px #E6E6E6;
  border-radius: 0px 100px 100px 0px;
  padding: 10px 20px;
  font-size: 22px;
  position: relative;
}

.home-member_sec_slide_lists_tlt:before {
  content: "";
  width: 21px;
  height: 8px;
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -4px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/common/arrow@2x.png);
  transition: .3s;
}

.home-member_sec_slide_lists_tlt:hover:before {
  right: 15px;
}

.home-member_sec_slide_lists_tlt_company {
  font-size: 17px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: normal;
}

.home-member_sec_slide_lists_tlt_post {
  font-size: 12px;
  font-weight: normal;
  display: block;
  color: #808080;
}

.news .page-header_img {
  width: calc(100% - 570px);
  background-image: url(../images/news/common/news_header_bg@2x.jpg);
}

.news .breadcrumb span:nth-of-type(2):before {
  content: "＞";
  display: inline-block;
  margin: 0px 1px;
}

.news .menu-round {
  margin: 13px 0 9px;
}

.news .menu-round_list .menu-round_list_link {
  width: 130px;
  margin: 0 11px;
  padding: 8px 0;
  display: block;
}

.news .menu-round_list:first-of-type .menu-round_list_link {
  margin-left: 0;
}

.news-sec {
  padding: 0 !important;
}

.news-sec_list {
  max-width: 1010px;
  margin: 0 auto;
  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;
}

.news-sec_list_item {
  width: 303px;
  letter-spacing: 0;
  margin-bottom: 46px;
}

.news-sec_list_item_company {
  padding-left: 20px;
  margin: 20px 0;
}

.news-sec_list_item_company a:before {
  content: '';
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
}

.news-sec_list_item_company a:hover:before {
  opacity: .6;
}

.news-sec_list_item_company_one a:before {
  width: 109px;
  background-image: url(../images/news/common/news_one.svg);
  display: block;
}

.news-sec_list_item_company_eight a:before {
  width: 67px;
  background-image: url(../images/news/common/news_eight.svg);
  display: block;
}

.news-sec_list_item_company_zero a:before {
  width: 114px;
  background-image: url(../images/news/common/news_zero.svg);
  display: block;
}

.news-sec_list_item_company_spowerts a:before {
  width: 89px;
  background-image: url(../images/news/common/news_spowerts.svg);
  display: block;
}

.news-sec_list_item_company_cc a:before {
  width: 92px;
  background-image: url(../images/news/common/news_cc.svg);
  display: block;
}

.news-sec_list_item_title {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.64;
  padding: 0 10px 10px 20px;
}

.news-sec_list_item_title a {
  text-decoration: none;
}

.news-sec_list_item_date {
  font-size: 16px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  padding-left: 20px;
}

.news-sec_pager {
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  text-align: center;
}

.news-sec_pager_item {
  font-size: 21px;
  display: inline-block;
  margin: 0 4px;
}

.news-sec_pager_item a {
  color: #333333;
  text-decoration: none;
}

.news-sec_pager_item_current span {
  color: #E50019;
  text-decoration: underline;
}

.news-sec_pager_item_prev {
  margin-right: 25px;
}

.news-sec_pager_item_next {
  margin-left: 25px;
}

.news-single-sec {
  position: relative;
}

.news-single-sec_article {
  width: 867px;
  margin: 0 auto 160px;
  letter-spacing: 0;
}

.news-single-sec_article_pattern_01 {
  width: 271px;
  height: 361px;
  top: -278px;
  right: -115px;
  background-image: url(../images/news/news_pt01@2x.png);
}

.news-single-sec_article_pattern_02 {
  width: 139px;
  height: 160px;
  top: 131px;
  left: -70px;
  background-image: url(../images/news/news_pt02@2x.png);
}

.news-single-sec_article_pattern_03 {
  width: 147px;
  height: 120px;
  top: 1231px;
  right: -54px;
  background-image: url(../images/news/news_pt03@2x.png);
}

.news-single-sec_article_date {
  font-size: 15px;
  font-family: "Hammersmith One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.news-single-sec_article_img {
  margin-bottom: 45px;
}

.news-single-sec_article_title {
  font-size: 28px;
  font-weight: bold;
  padding-left: 94px;
  position: relative;
  margin-bottom: 40px;
}

.news-single-sec_article_title:before {
  content: '';
  background-size: cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.news-single-sec_article_title_one:before {
  width: 74px;
  height: 23px;
  background-image: url(../images/news/common/news_one.svg);
}

.news-single-sec_article_text {
  font-size: 15px;
  font-weight: medium;
  line-height: 2.2;
  margin-bottom: 33px;
}

.news-single-sec_article_heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.news-single-sec_newslist_pattern_01 {
  width: 214px;
  height: 175px;
  bottom: 508px;
  left: -92px;
  background-image: url(../images/news/news_pt04@2x.png);
}

.news-single-sec_newslist_pattern_02 {
  width: 193px;
  height: 187px;
  bottom: -335px;
  right: -49px;
  background-image: url(../images/news/news_pt05@2x.png);
}

.news-single-sec_newslist_heading {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 53px;
}

.news-single-sec_newslist_heading_text {
  font-size: 24px;
  line-height: 1;
}

.news-single-sec_newslist_heading_link {
  font-size: 15px;
  font-weight: bold;
}

.news-single-sec_newslist .news-sec_list {
  width: 100%;
}

.news .withone-sec,
.news .clubone-sec,
.news .footer-contact_sec_contents_fig,
.news .footer_pattern_01 {
  display: none;
}

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

.u-bc-blue {
  background-color: #17acc7 !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: #E50019 !important;
}

.u-c-green {
  color: #3ead6d !important;
}

.u-c-blue {
  color: #f4f9fc;
}

.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 screen and (min-width: 600px) {
  .home .fv-pc-hide {
    display: none !important;
  }

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

@media screen and (min-width: 736px) {
  .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 #eeeeee;
  }

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

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

  select {
    width: 290px;
  }

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

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

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

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

  .bx-wrapper .bx-pager.bx-default-pager a {
    width: 12px;
    height: 12px;
  }

  .block--contents--table dt {
    display: inline-block;
    width: 155px;
    vertical-align: top;
  }

  .block--contents--table dd {
    position: relative;
    display: inline-block;
    padding: 5px 0px;
    width: calc(100% - 210px);
  }

  .block--contents--table dd:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 89%;
    top: 5%;
    left: 0;
  }

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

  .c-page__intro {
    margin-bottom: 50px;
  }

  .c-page__intro p {
    margin-bottom: 30px;
  }

  .c-news {
    width: 100%;
  }

  .c-news dl {
    margin-top: 40px;
    width: 100%;
    display: table;
  }

  .c-news dl dt {
    display: table-cell;
    width: 185px;
  }

  .c-news dl dd {
    display: table-cell;
  }

  .news-list li {
    padding: 15px 0;
  }

  .news-list dl {
    width: 100%;
    display: table;
  }

  .news-list dl dt {
    display: table-cell;
    width: 100px;
  }

  .news-list dl dd {
    display: table-cell;
  }

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

  .c-pagination ul a {
    margin: 0 10px;
  }

  .c-pagination ul span {
    margin: 0 10px;
  }

  .c-table {
    margin-top: 0;
  }

  .c-table > dl {
    font-size: 15px;
  }

  .c-table > dl > dt {
    width: 240px;
    padding: 20px;
  }

  .c-table > dl > dd {
    padding: 20px;
  }

  .c-table > dl > dd .c-table-list > li {
    margin-bottom: 10px;
  }

  .c-table > dl > dd .c-table-list__nomargin > li {
    margin: 0;
  }

  .c-table--child dt {
    width: 62px;
  }

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

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

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

  .pagetop {
    bottom: 50px;
  }

  .gnav-btn {
    display: none;
  }

  .pc-navi-top {
    display: block;
    float: left;
  }

  .pc-navi-top:after {
    content: "";
    clear: both;
    display: block;
  }

  .pc-navi-bottom {
    display: block;
  }

  .pc-navi-bottom:after {
    content: "";
    clear: both;
    display: block;
  }

  .pc-navi-bottom .pc-mainnavi {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 80px;
  }

  .l-header {
    padding: 0px 20px;
    top: 30px;
    height: 80px;
    margin: auto;
  }

  .l-header * {
    transition: ease 0.2s;
  }

  .sec-contents {
    padding: 80px 0;
  }

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

  .l-sidebar {
    margin-top: 0;
    width: 210px;
    float: left;
  }

  .l-sidebar .sidebar-contents--model .side-title {
    background-color: #17acc7;
  }

  .l-sidebar .sidebar-contents--area .side-title {
    background-color: #f28149;
  }

  .l-sidebar .sidebar-contents .side-title {
    padding: 10px;
    color: #ffffff;
    text-align: center;
  }

  .l-sidebar .js-accordion-contents {
    display: block;
  }

  .l-sidebar .model-list > li {
    width: calc(33.33333% - 3px);
  }

  .l-sidebar .side-area__title {
    font-size: 15px;
  }

  .l-sidebar .side-area__subtitle {
    font-size: 13px;
  }

  .l-sidebar .side-area__list > li a {
    font-size: 10px;
  }

  .ancr {
    top: -150px;
  }

  .company-about-sec_col {
    width: 1130px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
  }

  .company-about-sec_col_box {
    width: 465px;
  }

  .company-about-sec_col_box:last-of-type {
    width: 632px;
  }

  .company-about-sec_suppliers_list {
    width: 985px;
    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;
  }

  .company-about-sec_suppliers_list_item {
    width: 200px;
    margin: 23px;
  }

  .company-access-sec .l-container {
    padding: 0 140px;
  }

  .company-access-sec_col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .company-access-sec_col_box {
    width: 465px;
  }

  .company-access-sec_col_box:last-of-type {
    width: 555px;
  }

  .company-philosophy-sec {
    padding-bottom: 170px !important;
  }

  .company-philosophy-sec .l-container {
    padding: 0 100px;
  }

  .company-philosophy-sec_col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .company-philosophy-sec_col_box {
    width: 540px;
  }

  .company-philosophy-sec_col_box:last-of-type {
    width: 560px;
  }

  .company-philosophy-sec_philosophy_col_box_fig {
    left: -21px;
  }

  .home-one_engage_sec .home-sec_img {
    height: 40vw;
  }

  .news-single-sec_newslist {
    width: 1010px;
    margin: 0 auto;
  }

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

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

@media screen and (max-width: 1250px) {
  .pc-navi-bottom .pc-mainnavi > li {
    margin: 9px 10px 0px 10px;
    line-height: 17px;
  }

  .pc-navi-bottom .pc-mainnavi > li a {
    font-size: 16px;
  }

  .l-header .logo {
    width: 100px;
  }

  .l-header .pc-navi-bottom {
    width: 910px;
  }
}

@media screen and (max-width: 1230px) {
  .company-sec_vmv_list_fig {
    right: -100px;
  }
}

@media screen and (max-width: 1105px) {
  .l-header .pc-navi-bottom {
    width: 810px;
  }
}

@media screen and (max-width: 1100px) {
  .home-one_engage_sec_contents {
    min-width: 890px;
  }

  .home-one_engage_sec_contents_txt {
    padding-right: 20px;
  }

  .home-one_engage_sec_contents_txt_inner {
    padding-left: 110px;
  }
}

@media screen and (max-width: 1080px) {
  .home-works_groups_sec .sec-title .sec-title_sub {
    left: 0px;
    display: block;
    line-height: 60px;
  }
}

@media screen and (max-width: 1040px) {
  .with-club_sec_contents {
    width: 100%;
  }
}

@media screen and (max-width: 995px) {
  .pc-navi-bottom .pc-mainnavi > li {
    line-height: 17px;
  }

  .l-header .pc-navi-bottom {
    width: 680px;
  }
}

@media screen and (max-width: 970px) {
  .home-works_groups_sec_header_contents {
    width: 100%;
  }
}

@media screen and (max-width: 930px) {
  .home-one_engage_sec_contents {
    min-width: 860px;
  }
}

@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: 900px) {
  .sec-title {
    font-size: 74px;
    line-height: 60px;
    letter-spacing: 1px;
  }

  .sec-title_sub {
    font-size: 14px;
    letter-spacing: -1px;
  }

  .page-tlt {
    font-size: 36px;
    line-height: 32px;
    top: 10px;
  }

  .page-tlt_sub {
    font-size: 14px;
  }

  .page-sec_tlt {
    font-size: 50px;
    line-height: 80px !important;
  }

  .page-sec_tlt_m {
    font-size: 25px;
  }

  .page-sec_tlt_sub {
    font-size: 18px;
  }

  .page-header {
    height: 350px;
  }

  .page-header_tlt {
    width: 95%;
    height: 140px;
    top: auto;
    bottom: 0px;
    background-position: right -20px;
  }

  .page-header_img {
    height: 300px;
    width: 100%;
    background-position: center;
  }

  .page-header_pattern_01 {
    width: 105px;
    height: 99px;
    bottom: -30px;
    left: -53px;
    z-index: 10;
  }

  .page-header_pattern_02 {
    width: 80px;
    height: 80px;
    top: auto;
    bottom: 40px;
    right: -30px;
  }

  .page-header_pattern_04 {
    width: 140px;
    height: 140px;
    top: -25px;
    right: -53px;
  }

  .footer-contact_sec {
    margin-top: 0px;
  }

  .footer-contact_sec_pattern_01 {
    width: 160px;
    height: 160px;
    bottom: -70px;
    top: auto;
    left: -59px;
    z-index: -1;
    background-image: url(../images/footer/footer_contact_p02_s@2x.png);
  }

  .footer-contact_sec_contents {
    width: 90%;
    padding: 42px 17px 33px 17px !important;
  }

  .footer-contact_sec_contents_fig {
    display: none;
  }

  .footer-contact_sec_contents_inner_txt {
    margin-top: 20px;
  }

  .footer {
    padding: 52px 40px 40px 40px;
  }

  .footer_pattern_01 {
    z-index: -1;
    width: 164px;
    height: 190px;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner_box {
    display: block;
    width: 100%;
  }

  .footer-inner_box li {
    display: none;
    margin-bottom: 22px;
    letter-spacing: 2px;
  }

  .footer-inner_box_head {
    display: block !important;
    font-size: 20px;
    height: auto;
  }

  .footer-inner_box_head_inline {
    display: block !important;
    font-size: 20px;
    height: auto;
  }

  .footer-inner_box_company {
    padding-right: 0px;
  }

  .footer-inner_box_company li {
    display: block !important;
    text-align: center;
    letter-spacing: 0px;
    line-height: 22px;
  }

  .footer-inner_box_company li:first-child {
    margin-bottom: 24px;
  }

  .footer-inner_box_company li:first-child img {
    width: 90px;
  }

  .footer-groups {
    margin-top: 30px;
  }

  .footer-groups li {
    margin: 15px 20px;
  }

  .l-header .l-container {
    border-radius: 0px;
  }

  .l-header .logo {
    width: 93px;
    margin-left: 0px;
    margin-top: 4px;
    margin-bottom: 7px;
  }

  .l-header .pc-navi-bottom {
    width: 100%;
  }

  .with-club_sec .sec-title {
    font-size: 58px;
  }

  .with-club_sec_header {
    display: block;
    padding-bottom: 60px;
  }

  .with-club_sec_header .home-sec_img {
    width: 95%;
    height: 250px;
  }

  .with-club_sec_header_contents {
    width: 100%;
    padding-top: 30px;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .with-club_sec_header_contents_inner {
    padding-left: 20px;
  }

  .withone-sec_pattern_01 {
    width: 160px;
    height: 160px;
    top: 6px;
    right: -15px;
  }

  .withone-sec_pattern_02 {
    width: 178px;
    height: 173px;
    bottom: -34px;
    left: -33px;
  }

  .withone-sec_fig {
    display: none;
  }

  .clubone-sec {
    margin-top: 45px;
    padding-bottom: 20px;
  }

  .clubone-sec_pattern_01 {
    width: 157px;
    height: 157px;
    top: -11px;
    right: -45px;
    left: auto;
    background-image: url(../images/index/home_works_p04@2x.png);
  }

  .clubone-sec .home-sec_img {
    margin-left: 5%;
  }

  .clubone-sec .with-club_sec_header_contents_inner {
    padding-left: 60px;
  }

  .menu-round {
    text-align: center;
    margin: 10px 0px;
  }

  .menu-round_list {
    margin: 13px 0px;
  }

  .menu-round_list_link {
    font-size: 13px;
    padding: 10px 13px;
    margin: 0px 5px;
  }

  .page-header_contents {
    margin-bottom: 40px;
    padding: 90px 20px 10px 20px;
  }

  .page-sec_tlt_ja {
    font-size: 16px;
    margin-top: -13px;
  }

  .page-footer_menu {
    display: block;
  }

  .page-footer_menu_link {
    width: 100%;
    height: 200px;
    display: block;
  }

  .page-footer_menu_link:first-child {
    margin-bottom: 80px;
  }

  .page-footer_menu_link_txt {
    height: 150px;
    width: 95%;
    min-width: 95%;
    position: relative;
    bottom: -90px;
  }

  .page-footer_menu_link_txt_tlt {
    font-size: 45px;
  }

  .page-footer_menu_link:nth-of-type(2) .page-footer_menu_link_txt {
    right: -5%;
    border-radius: 400px 0px 0px 400px;
  }

  .company-about-sec_groups {
    padding-bottom: 40px;
  }

  .company-about-sec_groups_pattern_01 {
    width: 140px;
    height: 170px;
    top: -70px;
    right: 71px;
    z-index: -1;
  }

  .company-about-sec_groups_pattern_02 {
    display: none;
  }

  .company-about-sec_groups_pattern_03 {
    display: none;
  }

  .company-about-sec_groups_pattern_04 {
    display: none;
  }

  .company-about-sec_groups_pattern_05 {
    display: none;
  }

  .company-about-sec_groups_pattern_06 {
    display: none;
  }

  .company-about-sec_groups_pattern_07 {
    display: none;
  }

  .company-about-sec_groups_pattern_08 {
    display: none;
  }

  .company-about-sec_groups .page-sec_tlt {
    padding-left: 0;
  }

  .company-about-sec_groups_text {
    padding-left: 0;
    font-size: 16px;
  }

  .company-about-sec_groups_list_item {
    display: block;
    width: 300px;
  }

  .company-about-sec_groups_list_item_inner {
    display: block;
    padding: 25px 0px;
    border-radius: 25px;
  }

  .company-about-sec_groups_list_item_logo {
    width: 100%;
  }

  .company-about-sec_groups_list_item_logo img {
    width: auto;
    max-width: 160px;
  }

  .company-about-sec_groups_list_item_contents {
    width: 100%;
    padding: 25px 17px 10px 17px;
  }

  .company-about-sec_groups_list_item_contents .btn {
    float: none;
    margin: auto;
    display: table;
  }

  .company-about-sec_groups_list_item_contents_tlt {
    font-size: 22px;
  }

  .company-about-sec_groups_list_item_contents_tag {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .company-about-sec_groups_list_item_contents_txt {
    font-size: 13px;
    line-height: 25px;
    margin-top: 10px;
  }

  .company-about-sec_groups_arrow {
    display: block;
    bottom: -15px;
    z-index: 5;
  }

  .company-about-sec_profile {
    padding: 65px 0 55px;
  }

  .company-about-sec_profile_pattern_01 {
    width: 100px;
    height: 120px;
    top: -60px;
    left: -38px;
  }

  .company-about-sec_profile_df {
    padding: 20px 0;
  }

  .company-about-sec_profile_df:first-of-type {
    padding-top: 15px;
  }

  .company-about-sec_profile_df_dsc {
    font-size: 14px;
  }

  .company-about-sec_history {
    padding: 55px 0 20px;
  }

  .company-about-sec_history_pattern_01 {
    width: 120px;
    height: 120px;
    top: -30px;
  }

  .company-about-sec_history_col_box:last-of-type {
    margin-top: 50px;
  }

  .company-about-sec_history_year {
    width: 133px;
    padding-bottom: 53px;
    margin-top: -10px;
    overflow: hidden;
  }

  .company-about-sec_history_year_text {
    font-size: 16px;
  }

  .company-about-sec_history_year_text span {
    padding-left: 15px;
  }

  .company-about-sec_history_year:nth-of-type(9) {
    overflow: hidden;
  }

  .company-about-sec_history_detail {
    width: calc(100% - 133px);
    padding-left: 25px;
    margin-top: -10px;
  }

  .company-about-sec_suppliers {
    padding: 55px 0 35px;
  }

  .company-about-sec_suppliers_pattern_01 {
    width: 100px;
    height: 104px;
    top: -20px;
    left: -38px;
  }

  .company-about-sec_suppliers_pattern_02 {
    width: 140px;
    height: 170px;
  }

  .company-about-sec_suppliers_heading {
    margin-bottom: 30px;
  }

  .company-about .footer-contact_sec {
    margin-top: 50px;
  }

  .company-access-sec_pattern_01 {
    width: 89px;
    height: 107px;
    top: 15px;
    left: 40%;
  }

  .company-access-sec_col_box .page-sec_tlt {
    margin: 0 0 40px;
  }

  .company-access-sec_col_box_text {
    line-height: 1.95;
    margin-bottom: 25px;
  }

  .company-access-sec_col_box_text:last-of-type {
    margin: -20px 0 35px;
  }

  .company-access-sec_col_box_iframe {
    margin-top: 0;
  }

  .company-access-sec_col_box_btn {
    position: relative;
    float: none;
    margin-bottom: 40px;
  }

  .company-access .footer-contact_sec {
    margin-top: 50px;
  }

  .company-philosophy-sec_philosophy_col {
    margin: 40px 0 80px;
  }

  .company-philosophy-sec_philosophy_col_box_heading {
    font-size: 5.6vw;
    margin-bottom: 20px;
  }

  .company-philosophy-sec_philosophy_col_box_fig {
    width: 35%;
    position: absolute;
    top: -190px;
    right: 0;
    z-index: -1;
  }

  .company-philosophy-sec_philosophy_col_box_text {
    line-height: 1.95;
    margin-bottom: 25px;
  }

  .company-philosophy-sec_philosophy_col_box_text:last-of-type {
    margin-top: 40px;
  }

  .company-philosophy-sec_message_pattern_01 {
    bottom: 918px;
    right: -90px;
  }

  .company-philosophy-sec_message_col {
    margin-top: 40px;
  }

  .company-philosophy-sec_message_col_box_text {
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 25px;
  }

  .company-philosophy-sec_message_col_box_text:last-of-type {
    font-size: 15px;
    margin-top: 40px;
  }

  .company-philosophy-sec_message_col_box:last-of-type {
    margin-top: 40px;
  }

  .company-philosophy .footer-contact_sec {
    margin-top: 50px;
  }

  .company .page-header_img {
    width: 100%;
    background-image: url(../images/company/common/company_header_bg_s@2x.png);
  }

  .company-sec_vmv_list:last-child {
    margin-bottom: 30px;
  }

  .company-sec_vmv_list_txt_p {
    font-size: 18px;
    margin-top: 22px;
    line-height: 36px;
  }

  .company-sec_vmv_list_txt_line {
    border-left: solid 10px #E50019;
  }

  .company-sec_vmv_list_txt_line .page-sec_tlt_m {
    line-height: 30px;
  }

  .company-sec_vmv_list_fig {
    right: -10px;
    top: -50px;
    width: 140px;
  }

  .company-sec_vmv_list:nth-of-type(1) {
    margin-top: 40px;
  }

  .company-sec_vmv_list:nth-of-type(1) .company-sec_vmv_list_fig {
    top: -40px;
  }

  .company-sec_vmv_list:nth-of-type(2) .company-sec_vmv_list_fig {
    top: -70px;
  }

  .company-sec_identity {
    padding: 0px 20px;
  }

  .company-sec_identity_tlt {
    font-size: 50px;
    line-height: 80px !important;
    margin-bottom: 30px;
  }

  .home .fv-container {
    padding: 0px;
    height: 100vh;
  }

  .home-sec_img {
    height: 240px;
  }

  .home-news_sec {
    margin-bottom: 440px;
    margin-top: 90px;
  }

  .home-news_sec_pattern_01 {
    display: none;
  }

  .home-news_sec_pattern_02 {
    width: 70px;
    height: 70px;
    top: 1px;
    left: -27px;
  }

  .home-news_sec_pattern_03 {
    display: none;
  }

  .home-news_sec_pattern_04 {
    width: 216px;
    height: 264px;
    bottom: -52px;
  }

  .home-news_sec_inner .home-sec_img {
    width: 95%;
    top: 55px;
  }

  .home-news_sec .sec-title {
    padding-left: 3px;
    line-height: 69px !important;
    top: auto;
  }

  .home-news_sec .sec-title_sub {
    top: -18px;
    left: 8px;
  }

  .home-news_sec_contents {
    width: 100%;
    float: none;
    padding-left: 20px;
    margin-top: 120px;
  }

  .home-news_sec_contents_box {
    padding: 140px 20px 35px 20px;
  }

  .home-news_sec_list {
    margin-bottom: 35px;
  }

  .home-news_sec_list_lists {
    padding: 7px 13px 10px 13px;
  }

  .home-news_sec_list_lists_link {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .home-news_sec_list_lists_title {
    font-size: 13px;
  }

  .home-news_sec_list_lists_date {
    font-size: 12px;
  }

  .home-news_sec_list_lists_company_tag {
    margin: 0px 17px 6px 17px;
  }

  .home-works_groups_sec_pattern_01 {
    width: 140px;
    height: 170px;
    top: -90px;
    z-index: -1;
  }

  .home-works_groups_sec_pattern_01_s {
    width: 155px;
    height: 170px;
    bottom: -40px;
    right: -20px;
    z-index: 1;
    display: block;
    mix-blend-mode: multiply;
    background-image: url(../images/index/home_works_p01_s@2x.png);
  }

  .home-works_groups_sec_pattern_02 {
    display: none;
  }

  .home-works_groups_sec_pattern_03 {
    display: none;
  }

  .home-works_groups_sec_pattern_04 {
    display: none;
  }

  .home-works_groups_sec_pattern_05 {
    display: none;
  }

  .home-works_groups_sec_pattern_06 {
    display: none;
  }

  .home-works_groups_sec_pattern_07 {
    display: none;
  }

  .home-works_groups_sec_pattern_08 {
    display: none;
  }

  .home-works_groups_sec_pattern_09 {
    display: none;
  }

  .home-works_groups_sec_pattern_10 {
    display: none;
  }

  .home-works_groups_sec .sec-title {
    position: absolute;
    top: -294px;
    left: 20px;
    line-height: 68px;
  }

  .home-works_groups_sec .sec-title .sec-title_sub {
    top: -15px;
    left: auto;
  }

  .home-works_groups_sec_inner {
    padding-bottom: 0px;
  }

  .home-works_groups_sec_header {
    padding-left: 30px;
  }

  .home-works_groups_sec_header .home-sec_img {
    width: 70%;
    top: -180px;
    background-position: left;
  }

  .home-works_groups_sec_header_contents_txt {
    font-size: 14px;
    margin-top: 15px;
    line-height: 31px;
    padding-right: 30px;
    letter-spacing: 0px;
  }

  .home-works_groups_sec_slide {
    padding: 0px 0px 40px 0px !important;
  }

  .home-works_groups_sec_lists {
    display: block;
    width: 300px;
  }

  .home-works_groups_sec_lists_inner {
    display: block;
    padding: 25px 0px;
    border-radius: 25px;
  }

  .home-works_groups_sec_lists_logo {
    width: 100%;
  }

  .home-works_groups_sec_lists_logo img {
    width: auto;
    max-width: 160px;
  }

  .home-works_groups_sec_lists_contents {
    width: 100%;
    padding: 25px 17px 10px 17px;
  }

  .home-works_groups_sec_lists_contents .btn {
    float: none;
    margin: auto;
    display: table;
  }

  .home-works_groups_sec_lists_contents_tlt {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .home-works_groups_sec_lists_contents_tag {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .home-works_groups_sec_lists_contents_txt {
    font-size: 13px;
    line-height: 25px;
    margin-top: 10px;
  }

  .home-works_groups_sec .home-works_groups_arrow {
    display: block;
    bottom: 20px;
    z-index: 5;
  }

  .home-one_engage_sec {
    padding-left: 0px !important;
    margin-top: 243px;
  }

  .home-one_engage_sec_pattern_01 {
    display: none;
  }

  .home-one_engage_sec_pattern_02 {
    display: none;
  }

  .home-one_engage_sec_pattern_03 {
    display: none;
  }

  .home-one_engage_sec_pattern_04 {
    display: none;
  }

  .home-one_engage_sec_pattern_05 {
    background-image: url(../images/index/home_works_p09@2x.png);
    width: 143px;
    height: 163px;
    bottom: -42px;
    left: -29px;
    right: auto;
  }

  .home-one_engage_sec .sec-title {
    position: absolute;
    top: -220px;
    left: 14px;
  }

  .home-one_engage_sec_inner {
    height: auto;
    padding-bottom: 45px;
    border-radius: 0px 0px 0px 50px;
  }

  .home-one_engage_sec_header {
    position: relative;
    height: 130px;
  }

  .home-one_engage_sec .home-sec_img {
    width: 95%;
    max-width: 430px;
    left: 0px;
    top: -110px;
    height: 260px;
    background-image: url(../images/index/home_engage_header_s@2x.png);
    background-position: left;
  }

  .home-one_engage_sec_contents {
    min-width: 100%;
    margin-right: inherit !important;
    display: block;
    margin-top: 40px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .home-one_engage_sec_contents_logo {
    text-align: center;
  }

  .home-one_engage_sec_contents_logo li {
    display: inline-block;
    margin: 8px 12px;
  }

  .home-one_engage_sec_contents_txt {
    max-width: 360px;
    padding-right: 0px;
    margin: auto;
  }

  .home-one_engage_sec_contents_txt_tlt {
    margin-top: 27px;
    margin-bottom: 21px;
    font-size: 28px;
    line-height: 37px;
  }

  .home-one_engage_sec_contents_txt_inner {
    height: auto;
    padding-left: 0px;
  }

  .home-one_engage_sec_contents_txt_inner {
    display: block;
  }

  .home-one_engage_sec_contents_txt_inner img {
    display: none;
  }

  .home-one_engage_sec_contents_txt_inner_p {
    line-height: 33px;
    letter-spacing: -1px;
    font-size: 14px;
  }

  .home-one_engage_sec_contents_txt_inner .btn {
    display: table;
    margin: auto;
    margin-top: 35px;
  }

  .home-member_sec {
    margin-top: 75px;
    margin-bottom: 37px;
  }

  .home-member_sec_pattern_01 {
    display: none;
  }

  .home-member_sec_pattern_02 {
    width: 123px;
    height: 161px;
    top: -18px;
    right: 22px;
    z-index: -1;
  }

  .home-member_sec .sec-title {
    line-height: 69px;
    padding-left: 21px;
    margin-bottom: -43px;
  }

  .home-member_sec .sec-title_sub {
    display: block;
    position: relative;
    top: -14px;
  }

  .home-member_sec_contents {
    padding-bottom: 140px;
    border-radius: 0px 0px 0px 50px;
  }

  .home-member_sec .slide_outer_arrow {
    bottom: 47px;
  }

  .home-member_sec_slide_lists {
    width: 290px;
    padding-left: 20px;
    padding-right: 40px;
  }

  .home-member_sec_slide_lists_tlt {
    padding: 6px 20px;
  }

  .news .page-header_img {
    width: 100%;
    background-image: url(../images/news/common/news_header_bg@2x.jpg);
  }

  .news .menu-round {
    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;
  }

  .news .menu-round_list .menu-round_list_link {
    width: 36.5vw;
    margin: 0;
  }

  .news .menu-round_list .menu-round_list_link img {
    width: 60%;
  }

  .news .menu-round_list:nth-of-type(2) .menu-round_list_link img {
    width: 36%;
  }

  .news .menu-round_list:nth-of-type(3) .menu-round_list_link {
    padding: 6px 0;
  }

  .news .menu-round_list:nth-of-type(3) .menu-round_list_link img {
    width: 68%;
  }

  .news .menu-round_list:nth-of-type(4) .menu-round_list_link img {
    width: 49%;
  }

  .news .menu-round_list:nth-of-type(5) .menu-round_list_link {
    padding: 6px 0;
  }

  .news-sec {
    padding-bottom: 50px !important;
  }

  .news-sec_list {
    max-width: 100%;
    display: block;
  }

  .news-sec_list_item {
    width: 100%;
  }

  .news-sec_list_item:last-of-type {
    margin-bottom: 0;
  }

  .news-sec_list_item_company {
    padding-left: 0;
    margin-bottom: 15px;
  }

  .news-sec_list_item_company a:before {
    background-size: 80%;
    height: 30px;
  }

  .news-sec_list_item_title {
    padding-left: 0px;
  }

  .news-sec_list_item_date {
    padding-left: 0px;
  }

  .news-sec_pager {
    margin-top: 50px;
  }

  .news-single-sec_article {
    width: 100%;
    margin-bottom: 80px;
  }

  .news-single-sec_article_pattern_02 {
    display: none;
  }

  .news-single-sec_article_pattern_03 {
    display: none;
  }

  .news-single-sec_article_img {
    margin-bottom: 25px;
  }

  .news-single-sec_article_title {
    font-size: 22px;
    padding: 35px 0 0 0;
    margin-bottom: 25px;
  }

  .news-single-sec_article_title:before {
    top: 0;
    left: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  .news-single-sec_article_text {
    line-height: 1.95;
    margin-bottom: 28px;
  }

  .news-single-sec_article_heading {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .news-single-sec_newslist_pattern_01 {
    display: none;
  }

  .news-single-sec_newslist_pattern_02 {
    bottom: -115px;
  }

  .news-single-sec_newslist_heading {
    margin-bottom: 30px;
  }

  .news-single-sec_newslist_heading_text {
    font-size: 20px;
  }

  .news-single-sec_newslist_heading_link {
    font-size: 13px;
  }
}

@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: 736px) {
  .block--contents--table {
    margin-top: 20px;
  }

  .block--contents--table .block--contents--table_header {
    display: none;
  }
}