@charset "UTF-8";

/*
Theme Name: YOUSUKE NISHIKAWA
Author: Yuichi Kumada
Version: 2018.07.16
*/

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

@-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: #000000;
  /* Fallback for when there is no custom background color defined. */
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "HiraKakuProN-W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
}

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. */
  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: #010101;
  text-decoration: underline;
}

a:visited {
  color: #010101;
}

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

a:focus {
  outline: none;
}

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

a:hover {
  opacity: 0.8;
}

.link-arrow::after {
  content: "▶";
  display: inline-block;
  margin-left: 5px;
}

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

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

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

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

th {
  font-weight: normal;
}

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

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  border-color: #000000;
  border-radius: 3px;
  background: #000000;
  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: fontawesome;
  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: #000000;
  border-radius: 3px;
  background: #000000;
  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: #000000;
  border: none;
  padding: 5px;
  border: 1px solid #ccc;
}

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: 1px solid #ccc;
}

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

input[type="text"] {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
}

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

.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 #999;
  border-radius: 50%;
}

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

body,
button,
input,
select,
textarea {
  color: #010101;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "HiraKakuProN-W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  -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%;
}

/* ライブラリ */

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

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

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

.bx-wrapper {
  position: relative;
  margin-bottom: 20px;
  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-controls-auto {
  position: absolute;
  bottom: -20px;
  width: 100%;
}

/* LOADER */

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

/* PAGER */

.bx-has-pager {
  width: 100%;
  position: absolute;
  bottom: 15px;
  left: 0;
}

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

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #e6e6e6;
  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: #e4c751;
}

.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-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}

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

/* コンポーネント */

.block__content {
  padding-top: 25px;
}

.block__content:first-child {
  padding-top: 0;
}

.block__content .content__title {
  position: relative;
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}

.block__content .content__title span {
  position: relative;
  display: inline-block;
  padding: 2px 18px;
  background-color: #ffffff;
  line-height: 1.2em;
}

.block__content .content__title::before {
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
}

.block__content .content__subtitle {
  margin-bottom: 15px;
  font-size: 16px;
}

.block__content .content__subtitle span {
  display: block;
  padding: 5px;
  color: #ffffff;
  text-align: center;
}

.index .block__subcontent {
  margin-top: 25px;
  padding: 0;
}

.index .block__subcontent .l-container {
  padding: 0;
}

.block__subcontent {
  padding: 25px 0;
}

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

.c-btn__col2 .btn {
  margin: 10px 0;
}

.btn {
  padding: 15px;
  transition: eaes 0.2s;
  box-sizing: border-box;
  border-radius: 0;
  text-decoration: none;
}

.btn:after {
  margin-left: 5px;
  display: inline-block;
  content: "▶︎";
  font-size: 10px;
  vertical-align: middle;
}

.btn.btn--wide {
  padding: 18px 10px;
  font-size: 14px;
}

.page-anchor:after {
  content: "\f078";
}

/* animate */

@-webkit-keyframes circleanime {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes circleanime {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ====================
 common introduce
=======================*/

.common__introduce {
  margin-top: 30px;
  margin-bottom: 50px;
}

.common__introduce-list > li {
  position: relative;
  width: 240px;
  margin: 15px auto;
}

.common__introduce-list > li .common__introduce-txt {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.common__introduce-list > li .c-btn {
  margin-top: 10px;
  text-align: center;
}

.common__introduce-list > li .c-btn .btn {
  display: inline-block;
  border: 1px solid #000000;
  padding: 7px 15px;
  font-weight: bold;
}

.common__introduce-list > li .c-btn .btn:hover {
  background-color: #e4c751;
  border: 1px solid #e4c751;
  color: #ffffff;
}

.common__introduce-list > li .c-btn .btn:hover::after {
  color: #ffffff;
}

.common__introduce-list > li .c-btn .btn::after {
  color: #e4c751;
}

.common__introduce-title {
  position: relative;
  padding-top: 35px;
  font-size: 21px;
  text-align: center;
}

.common__introduce-title::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  content: "";
  width: 21px;
  height: 22px;
  margin-left: -11px;
  background-image: url(./images/icon/icon_needle@2x.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.common__introduce-title span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
}

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

/* ==========================
  index title common
=========================== */

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

.page__header {
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.page__header .l-container {
  position: relative;
  padding: 0;
  height: 217px;
}

.page__header .l-container::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 200px;
  background-size: 1267px;
  background-position: center;
}

.page__header .page__header-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 20px;
}

.page__header .page__header-title {
  position: relative;
  padding-top: 25px;
  text-align: center;
}

.page__header .page__header-title::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  content: "";
  width: 21px;
  height: 22px;
  margin-left: -11px;
  background-image: url(./images/icon/icon_needle@2x.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.page__header .page__header-title span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
}

.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 > li {
  padding: 7px;
  letter-spacing: 0;
  font-size: 14px;
}

.c-news a {
  display: block;
  text-decoration: none;
}

.c-news__txt {
  padding-right: 20px;
  background-image: url(./images/icon/icon_link_arrow@2x.png);
  background-repeat: no-repeat;
  background-position: top 3px right 0;
  background-size: 13px;
}

.c-news__list {
  margin-bottom: 15px;
}

.c-news__list li {
  padding: 10px 0;
  border-bottom: 1px solid #e6e6e6;
}

.c-news__list dl dt {
  font-weight: bold;
}

.c-news__list a {
  text-decoration: underline;
}

/* ====================
 num_list
=======================*/

.num__list > li {
  width: 280px;
  min-height: 80px;
  margin: 25px auto 20px;
  position: relative;
}

.num__list > li::after {
  width: 28px;
  height: 29px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  background-image: url(./images/common/line@2x.png);
  background-size: cover;
}

.num__list-txt {
  position: relative;
  padding: 0 30px 0 35px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  line-height: 1.8;
}

.num__list-txt::before {
  width: 28px;
  height: 29px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  background-image: url(./images/common/line@2x.png);
  background-size: cover;
}

.num__list-txt .num__list-num {
  position: absolute;
  top: 5px;
  left: 0;
  color: #e4c751;
  font-family: "Times New Roman";
  font-size: 24px;
  line-height: 0;
}

.num__list-txt .num__list-icon {
  position: absolute;
}

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

.num__list-policy {
  width: 7px;
  top: 35px;
  left: 8px;
}

.page-top {
  position: fixed;
  width: 47px;
  right: 5px;
  bottom: 40px;
  display: none;
  z-index: 10;
}

.page-top a {
  display: block;
}

/*=========================
 company page table
==========================*/

.c-table--01 dt {
  padding: 6px 13px;
  font-weight: bold;
}

.c-table--01 dd {
  padding: 6px 13px 12px;
}

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

.c-table--02 dt {
  padding: 6px 13px;
  font-weight: bold;
}

.c-table--02 dd {
  padding: 6px 13px 12px;
}

.input__list > li {
  margin-top: 5px;
}

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

.input__list > li span {
  display: block;
  text-align: right;
}

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

.c-title__block-head {
  position: relative;
  margin-bottom: 15px;
  padding: 0 7px 18px;
  text-align: center;
}

.c-title__block-head p {
  margin-top: 20px;
  font-size: 26px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  letter-spacing: 0;
}

.c-title__block-head::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 52px;
  height: 2px;
  margin-left: -26px;
  background-color: #e4c751;
}

.c-title__block-title {
  position: relative;
  padding-top: 35px;
  font-size: 21px;
}

.c-title__block-title::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  content: "";
  width: 21px;
  height: 22px;
  margin-left: -11px;
  background-image: url(./images/icon/icon_needle@2x.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.c-title__block > p {
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  padding: 0 7px;
  line-height: 1.7;
  font-size: 15px;
}

.c-title__block .c-btn {
  margin-top: 25px;
}

.c-title__block .c-btn .btn {
  display: block;
  background-color: #e4c751;
  font-weight: bold;
  color: #ffffff;
}

.c-title__block .c-btn .btn::after {
  color: #e4c751;
}

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

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

.l-footer {
  margin-top: 15px;
  padding: 10px 0;
  color: #ffffff;
  text-align: center;
}

.l-footer .l-container {
  padding: 0;
}

.l-footer .footer__copy small {
  font-size: 10px;
  letter-spacing: 2px;
  font-family: 'Open Sans', sans-serif;
}

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

.gnav-btn {
  width: 27px;
  text-align: center;
  vertical-align: middle;
  position: absolute;
  top: -3px;
  left: 15px;
  cursor: pointer;
}

.gnav-btn__container {
  position: relative;
  width: 100%;
  height: 16px;
  position: relative;
  display: inline-block;
}

.gnav-txt {
  text-align: center;
  line-height: 0;
}

.gnav-txt .gnav-txt--menu {
  width: 28px;
}

.gnav-txt .gnav-txt--close {
  width: 29px;
  display: none;
}

.gnav-btn.close .gnav-txt--close {
  display: block;
}

.gnav-btn.close .gnav-txt--menu {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.globalnav {
  width: 100%;
  margin-top: 20px;
}

.globalnav__list {
  width: 100%;
  display: table;
  font-family: 'Open Sans', sans-serif;
}

.globalnav__list li {
  width: 33.3333%;
  display: table-cell;
  text-align: center;
  border-left: 1px solid #ffffff;
}

.globalnav__list li:first-child {
  border-left: none;
}

.globalnav__list li.globalnav__sns a {
  font-size: 15px;
}

.globalnav__list a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 2px;
}

.index .gnav-index {
  font-weight: bold;
}

.service .gnav-service {
  font-weight: bold;
}

.company .gnav-company {
  font-weight: bold;
}

.contact .gnav-contact {
  font-weight: bold;
}

/*=========================
h-gnav
==========================*/

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

.l-header {
  width: 100%;
  z-index: 100;
  margin-bottom: 20px;
  padding: 25px 0;
  transition: ease 0.3s;
  background-color: rgba(0, 0, 0, 0.7);
}

.l-header .l-container {
  position: relative;
}

.header__logo {
  width: 200px;
  margin: 0 auto;
  transition: ease 0.3s;
}

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

.is-sticky::before {
  height: 100%;
}

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

/*=============
header__bottom
==============*/

/*=============
subnav__list
==============*/

.l-wrapper {
  margin: 0 auto;
}

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

.index .l-main {
  overflow: hidden;
}

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

.top-news {
  padding: 30px 0 50px;
}

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

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

.top-business .l-container,
.top-products .l-container,
.top-facility .l-container {
  padding: 0;
}

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

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

.about .page__header {
  background-image: url(./images/about/bg_header_sp.jpg);
}

/* ====================
 sec__treatment
=======================*/

.sec__treatment p {
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  line-height: 2;
  text-align: center;
}

/* ====================
 sec__policy
=======================*/

.sec__policy {
  background-image: url(./images/about/bg_policy.jpg);
  background-size: cover;
}

/* ====================
 sec__accompany
=======================*/

.sec__accompany p {
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  text-align: center;
}

.accompany__list {
  margin-top: 20px;
}

.accompany__list > li {
  width: 280px;
  margin: 15px auto 0;
}

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

/* ====================
 access
=======================*/

.access .page__header {
  background-image: url(./images/access/bg_header_sp.jpg);
}

/* ====================
 sec__accessmap
=======================*/

/* ====================
 accessmap
=======================*/

.accessmap iframe {
  width: 100%;
  height: 200px;
}

/* ====================
 directions
=======================*/

.sec__directions {
  background-image: url(./images/access/bg_directions.png);
  background-size: cover;
}

.directions__list > li {
  width: 280px;
  margin: 20px auto;
  position: relative;
}

.directions__list > li::after {
  width: 28px;
  height: 29px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  background-image: url(./images/common/line@2x.png);
  background-size: cover;
}

.directions__list-txt {
  position: relative;
  margin-top: 20px;
  padding: 0 30px 10px 35px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  line-height: 1.8;
}

.directions__list-txt::before {
  width: 28px;
  height: 29px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  background-image: url(./images/common/line@2x.png);
  background-size: cover;
}

.directions__list-txt .directions__list-num {
  position: absolute;
  top: 5px;
  left: 0;
  color: #e4c751;
  font-family: "Times New Roman";
  font-size: 24px;
  line-height: 0;
}

.directions__list-txt .directions__list-map {
  width: 7px;
  position: absolute;
  top: 35px;
  left: 8px;
}

/*=========================
 blog
==========================*/

.blog .page__header {
  background-image: url(./images/blog/bg_header_sp.jpg);
}

/*=========================
 thanks
==========================*/

.block__pages .pages__header {
  position: relative;
  height: 95px;
  margin-bottom: 15px;
}

.block__pages .pages__header::before,
.block__pages .pages__header::after {
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  content: "";
  background-color: #ffffff;
}

.block__pages .pages__header::before {
  top: 8px;
}

.block__pages .pages__header::after {
  bottom: 8px;
}

.block__pages .pages__header .pages__title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: normal;
  text-align: center;
  font-size: 25px;
}

.bread__list {
  font-size: 0;
}

.bread__list > li {
  display: inline-block;
  font-size: 10px;
}

.bread__list > li a::after {
  content: ">";
  padding: 0 5px;
  color: #000000;
}

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

.contact .page__header {
  background-image: url(./images/contact/bg_header_sp.jpg);
}

/*=========================
 thanks
==========================*/

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

body {
  position: relative;
}

body::after {
  position: fixed;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(./images/bg_sp.jpg);
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  z-index: -1;
}

.frontpage {
  position: relative;
}

.frontpage.index {
  min-height: 100vh;
}

.frontpage .l-footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}

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

.alm-reveal {
  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;
}

.alm-reveal .disco__list-content {
  width: calc(50% - 10px);
  margin-bottom: 15px;
  padding: 7px 6px;
  background-color: rgba(228, 228, 228, 0.9);
  transition: ease 0.4s;
}

.disco__list-pic {
  position: relative;
  padding: 3px;
  width: 100%;
  height: auto;
}

.disco__list-pic .disco__list-pic__inner {
  padding-top: 100%;
}

.disco__list-pic img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 3px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.disco__list-txt {
  padding: 10px 5px 0;
}

.disco__list-artist {
  margin-bottom: 5px;
  font-size: 12px;
}

.disco__list-work {
  font-size: 12px;
}

/*=========================
 menu
==========================*/

.menu .page__header {
  background-image: url(./images/menu/bg_header_sp.jpg);
}

/*=========================
equipment
==========================*/

/*=========================
access
==========================*/

/* ====================
single__content
=======================*/

.single__content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 10px 30px;
  color: #ffffff;
  font-size: 12px;
}

.single__content h1 {
  margin-bottom: 10px;
  font-weight: bold;
}

.single__content h2 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}

.single__content h2 span {
  font-size: 10px;
}

.single__content h3 {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
}

.single__content h4 {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
}

.single__content h5 {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
}

.single__content p {
  margin-bottom: 10px;
}

.single__content ul {
  margin-bottom: 10px;
  padding-left: 1.5em;
}

.single__content ul > li {
  list-style: disc;
}

.single__content ol {
  margin-bottom: 10px;
  padding-left: 1.5em;
}

.single__content ol > li {
  list-style: decimal;
}

.c-contact {
  margin-bottom: 10px;
}

.c-contact dl {
  margin-bottom: 15px;
}

.c-contact dl dt {
  margin: 5px 0;
}

.c-contact dl dd {
  margin: 5px 0;
}

.c-contact .c-btn {
  margin-top: 15px;
}

.c-contact .c-btn .btn {
  padding: 5px 20px;
  background-color: #ffffff;
  color: #000000;
}

/* ユーティリティ(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-white {
  background-color: #FFF !important;
}

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

.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: 735px) {
  .common__introduce {
    margin-top: 40px;
    margin-bottom: 100px;
  }

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

  .common__introduce-list > li {
    width: 270px;
    margin: 0;
  }

  .common__introduce-list > li .c-btn .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .common__introduce-title {
    font-size: 23px;
  }

  .common__introduce-title::before {
    width: 25px;
    height: 26px;
  }

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

  .page__header {
    background-image: none !important;
  }

  .page__header .l-container {
    height: 310px;
  }

  .page__header .l-container::before {
    width: 1267px;
    height: 310px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: -60px;
  }

  .page__header .page__header-title {
    padding-top: 35px;
    font-size: 30px;
  }

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

  .num__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: -40px;
  }

  .num__list > li {
    margin: 40px 0 0 0;
    width: calc(50% - 20px);
  }

  .num__list > li::after {
    width: 57px;
    height: 59px;
  }

  .num__list-txt {
    height: 140px;
    padding: 0 60px 0 70px;
    line-height: 1.9;
  }

  .num__list-txt p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 350px;
    margin-left: 10px;
  }

  .num__list-txt::before {
    top: -5px;
    width: 57px;
    height: 59px;
  }

  .num__list-txt .num__list-num {
    top: 10px;
    font-size: 45px;
  }

  .num__list-policy {
    width: 11px;
    top: 60px;
    left: 17px;
  }

  .c-title__block-head p {
    font-size: 30px;
  }

  .c-title__block-title {
    font-size: 23px;
  }

  .c-title__block > p {
    padding: 0;
  }

  .c-title__block .c-btn .btn {
    border: 1px solid #000000;
    display: inline-block;
    padding: 10px 25px;
    color: #000000;
    background-color: transparent;
  }

  .c-title__block .c-btn .btn:hover {
    background-color: #e4c751;
    border: 1px solid #e4c751;
    color: #ffffff;
  }

  .c-title__block .c-btn .btn:hover::after {
    color: #ffffff;
  }

  .about .page__header .l-container::before {
    background-image: url(./images/about/bg_header.png);
  }

  .sec__treatment p {
    margin-top: -15px;
    line-height: 3.6;
  }

  .sec__policy {
    background-size: 1440px;
    background-position: top center;
    background-repeat: no-repeat;
    padding-bottom: 60px !important;
  }

  .accompany__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: 40px;
  }

  .accompany__list > li {
    width: calc(33.3333% - 20px);
    margin: 0;
  }

  .access .page__header .l-container::before {
    background-image: url(./images/access/bg_header.png);
  }

  .accessmap iframe {
    height: 350px;
  }

  .sec__directions {
    background-size: 1440px;
    background-position: top center;
    background-repeat: no-repeat;
    padding-bottom: 60px !important;
  }

  .directions__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: -40px;
  }

  .directions__list::after {
    content: "";
    display: block;
    width: calc(33.3333% - 20px);
  }

  .directions__list > li {
    margin: 40px 0 0 0;
    width: calc(33.3333% - 20px);
  }

  .directions__list > li::after {
    width: 57px;
    height: 59px;
  }

  .directions__list-txt {
    margin-top: 30px;
    padding: 0 60px 5px 70px;
    line-height: 1.9;
  }

  .directions__list-txt::before {
    top: -5px;
    width: 57px;
    height: 59px;
  }

  .directions__list-txt .directions__list-num {
    top: 10px;
    font-size: 45px;
  }

  .directions__list-txt .directions__list-map {
    width: 10px;
    top: 60px;
    left: 17px;
  }

  .blog .page__header .l-container::before {
    background-image: url(./images/blog/bg_header.png);
  }

  .contact .page__header .l-container::before {
    background-image: url(./images/contact/bg_header.png);
  }

  .alm-reveal::after {
    content: "";
    display: block;
    margin-bottom: 30px;
    width: calc(33.3333% - 40px);
  }

  .alm-reveal .disco__list-content {
    margin-bottom: 30px;
    width: calc(33.3333% - 20px);
  }

  .disco__list-artist {
    font-size: 14px;
  }

  .disco__list-work {
    font-size: 14px;
  }

  .menu .page__header .l-container::before {
    background-image: url(./images/menu/bg_header.png);
  }
}

@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-top: -3px;
    margin-left: 10px;
  }

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

  .viewlinks {
    font-size: 16px;
  }

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

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

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

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

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

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

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

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

  input[type="text"].min-width {
    width: 180px;
  }

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

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

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

  .block__content {
    padding-top: 50px;
  }

  .block__content .content__title {
    font-size: 30px;
  }

  .block__content .content__subtitle {
    margin-bottom: 20px;
    position: relative;
    font-size: 18px;
  }

  .block__content .content__subtitle::before {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
  }

  .block__content .content__subtitle span {
    display: inline-block;
    padding: 7px 20px;
    position: relative;
  }

  .index .block__subcontent {
    margin-top: 35px;
  }

  .index .block__subcontent .l-container {
    padding: 0 15px;
  }

  .index .top-staff .block__subcontent,
  .index .top-blog .block__subcontent {
    margin-top: 0;
    padding: 0;
  }

  .block__subcontent {
    padding: 40px 0 60px;
  }

  .block__subcontent:last-child {
    padding: 40px 0 0;
  }

  .c-btn__col2 .btn {
    margin: 0 10px;
  }

  .btn.btn--wide {
    max-width: 410px;
    margin-top: 25px;
    padding: 25px;
    font-size: 20px;
  }

  .btn.btn--wide::after {
    font-size: 20px;
  }

  .page-anchor:after {
    font-size: 10px;
    font-weight: normal;
  }

  .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-news > li {
    display: table;
    width: 100%;
    margin-bottom: 25px;
    padding: 0;
    font-size: 16px;
  }

  .c-news__time {
    display: table-cell;
    width: 90px;
    padding: 0;
  }

  .c-news__txt {
    display: table-cell;
    padding: 0 15px 0 0;
  }

  .c-news__list li {
    padding: 15px 0;
  }

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

  .c-news__list dl dt {
    display: table-cell;
    width: 100px;
  }

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

  .page-top {
    width: 67px;
    right: 50px;
    bottom: 60px;
  }

  .c-table--01 dl {
    width: 100%;
    display: table;
    margin-bottom: 10px;
  }

  .c-table--01 dt {
    width: 170px;
    padding: 15px 20px;
    display: table-cell;
  }

  .c-table--01 dd {
    display: table-cell;
    padding: 15px 20px;
  }

  .table-child__list > li {
    display: inline-block;
  }

  .table-child__list > li:first-child::before {
    display: none;
  }

  .table-child__list > li::before {
    content: " / ";
    display: inline-block;
    margin-right: 3px;
  }

  .c-table--02 dl {
    width: 100%;
    display: table;
    margin-bottom: 10px;
  }

  .c-table--02 dt {
    width: 200px;
    padding: 15px 20px;
    display: table-cell;
    vertical-align: top;
  }

  .c-table--02 dd {
    display: table-cell;
    padding: 10px 20px;
  }

  .c-table--02--thanks dd {
    padding: 15px 20px;
  }

  .table-child__list > li {
    display: inline-block;
  }

  .table-child__list > li:first-child::before {
    display: none;
  }

  .table-child__list > li::before {
    content: " / ";
    display: inline-block;
    margin-right: 3px;
  }

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

  .input__list > li input {
    width: 90%;
    display: inline-block;
  }

  .input__list > li span {
    display: inline-block;
  }

  .c-title__block-head {
    margin-bottom: 20px;
  }

  .l-footer {
    padding: 15px 0;
    font-size: 14px;
    text-align: left;
  }

  .l-footer .l-container {
    padding: 0 15px;
  }

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

  .l-footer .footer__copy {
    text-align: center;
  }

  .l-footer .footer__copy small {
    font-size: 13px;
  }

  .gnav-btn {
    display: none;
  }

  .globalnav {
    width: auto;
    left: auto;
    float: right;
    margin-top: 0;
  }

  .globalnav__list:after {
    content: "";
    clear: both;
    display: block;
  }

  .globalnav__list li {
    float: left;
    width: auto;
  }

  .globalnav__list li.globalnav__sns a {
    font-size: 16px;
  }

  .globalnav__list a {
    padding: 0 20px;
    font-size: 14px;
  }

  .l-header {
    margin-bottom: 20px;
    padding: 25px 0;
  }

  .l-header .l-container {
    width: 100%;
    padding: 0 80px;
  }

  .header__logo {
    max-width: 600px;
    width: 66%;
    margin: 0;
    float: left;
  }

  .is-sticky {
    padding: 20px 0;
  }

  .is-sticky .header__logo {
    width: 190px;
  }

  .is-sticky .header__logo .header__logo-pc {
    display: none;
  }

  .is-sticky .header__logo .header__logo-sp {
    display: block;
  }

  .is-sticky .globalnav {
    transition: ease 0.3s;
    padding-top: 5px;
  }

  .menu-open .l-header {
    background-color: transparent;
  }

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

  .top-news {
    padding: 50px 0 60px;
  }

  .l-container {
    padding: 0 50px;
  }

  .top-business .l-container,
  .top-products .l-container,
  .top-facility .l-container {
    background: linear-gradient(to right, #000000 0%, #2875bc 50%, #000000 100%);
  }

  .block__pages .pages__header {
    height: 140px;
  }

  .block__pages .pages__header .pages__title {
    font-size: 35px;
  }

  .bread__list > li {
    font-size: 12px;
  }

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

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

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

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

@media screen and (min-width: 980px) {
  .l-container {
    padding: 0 15px;
    width: 1000px;
  }

  body::after {
    background-image: url(./images/bg.jpg);
  }

  .alm-reveal::before {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    content: "";
    display: block;
    margin-bottom: 30px;
    width: calc(25% - 40px);
  }

  .alm-reveal::after {
    width: calc(25% - 40px);
  }

  .alm-reveal .disco__list-content {
    width: calc(25% - 40px);
  }

  .single__content {
    padding: 10px 40px 60px;
    font-size: 14px;
  }

  .single__content h1 {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .single__content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  .single__content h2 span {
    font-size: 14px;
  }

  .single__content h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .single__content h4 {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .single__content h5 {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .single__content p {
    margin-bottom: 15px;
  }

  .single__content ul {
    margin-bottom: 15px;
  }

  .single__content ol {
    margin-bottom: 15px;
  }

  .single__content blockquote {
    margin-bottom: 15px;
  }

  .c-contact {
    margin-bottom: 15px;
    max-width: 500px;
  }

  .c-contact dl {
    margin-bottom: 25px;
  }

  .c-contact dl dt {
    margin: 10px 0;
  }

  .c-contact dl dd {
    margin: 10px 0 15px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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