@charset "UTF-8";

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

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

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

@-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: #fbf5e4;
  /* 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: #000000;
  text-decoration: underline;
}

a:visited {
  color: inherit;
}

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

a:focus {
  outline: none;
}

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

a:hover {
  opacity: 0.8;
}

.link-arrow {
  position: relative;
}

.link-arrow::after {
  font-family: fontawesome;
  content: "\f105";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

.link--green {
  color: #0fb29b;
}

.link--green:visited {
  color: #0fb29b;
}

.link--gold {
  color: #b98d36 !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;
}








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

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: 2px solid #b98d36;
  border-radius: 5px;
}

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

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

body,
button,
input,
select,
textarea {
  color: #000000;
  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%;
}

/* ライブラリ */

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

/* LOADER */

.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url("../images/libs/bxslider/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: #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: #0fb29b;
}

.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 .content__title {
  position: relative;
  margin-bottom: 20px;
  color: #0fb29b;
  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;
  background-color: #0fb29b;
  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;
  background-color: #4b4948;
  color: #ffffff;
  text-align: center;
}

.block__subcontent {
  margin-top: 25px;
}

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

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

.c-btn--col2 .btn {
  width: 250px;
  margin: 5px 0;
}

.btn {
  width: 250px;
  padding: 15px;
  border: 2px solid #b98d36;
  color: #000000;
  display: inline-block;
  text-align: center;
  position: relative;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1;
  transition: eaes 0.2s;
  box-sizing: border-box;
  border-radius: 10px;
  text-decoration: none;
  transition: ease 0.3s;
  background-color: #ffffff;
}

.btn:hover {
  background-color: #b98d36;
  border: 2px solid #b98d36;
  color: #ffffff !important;
}

.btn:visited {
  color: #000000;
}

.btn:after {
  margin-left: 10px;
  display: inline-block;
  font-family: fontawesome;
  content: "\f105";
  font-size: 16px;
}

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

.btn.btn--default {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.btn.btn--default:after {
  color: #ffffff;
}

.btn.btn--default:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn.btn--default:hover:after {
  color: #000000;
}

.btn.btn--green {
  background-color: transparent;
  color: #0fb29b;
  border-color: #0fb29b;
}

.btn.btn--green:hover {
  background-color: #0fb29b;
  color: #ffffff;
}

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

.btn.btn--green-inverted {
  background-color: #0fb29b;
  color: #ffffff;
  border-color: #0fb29b;
}

.btn.btn--green-inverted:hover {
  background-color: transparent;
  color: #0fb29b;
}

.btn.btn--green-inverted:hover:after {
  color: #0fb29b;
}

.btn.btn--orange {
  background-color: transparent;
  color: #e25a21;
  border-color: #e25a21;
}

.btn.btn--orange:hover {
  background-color: #e25a21;
  color: #ffffff;
}

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

.btn.btn--purple {
  background-color: transparent;
  color: #8b5ad4;
  border-color: #8b5ad4;
}

.btn.btn--purple:hover {
  background-color: #8b5ad4;
  color: #ffffff;
}

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

.btn.btn--lime {
  background-color: transparent;
  color: #70b823;
  border-color: #70b823;
}

.btn.btn--lime:hover {
  background-color: #70b823;
  color: #ffffff;
}

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

.btn.btn-line {
  border: 2px solid #765d2b;
  color: #765d2b;
}

.btn.btn-line:hover {
  border: 2px solid #efc337;
  background-color: #efc337;
}

.btn.btn-f__small {
  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-contact {
  padding: 27px 0;
  background: url(../images/footer/bg_footer@2x.png);
  background-size: cover;
  background-position: center;
  text-align: center;
  font-size: 14px;
}

.common-contact .common-contact--inner {
  padding: 30px 20px;
}

.common-contact .common-contact__border {
  position: relative;
}

.common-contact .common-contact__border:before,
.common-contact .common-contact__border:after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #000000;
  left: 0;
}

.common-contact .common-contact__border:before {
  top: 10px;
}

.common-contact .common-contact__border:after {
  bottom: 10px;
}

.common-contact .common-contact__border--inner:before,
.common-contact .common-contact__border--inner:after {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #000000;
  top: 0;
}

.common-contact .common-contact__border--inner:before {
  left: 10px;
}

.common-contact .common-contact__border--inner:after {
  right: 10px;
}

.common-contact .common-contact__list {
  margin-top: 15px;
}

.common-contact p.common-contact__list-num {
  color: #2874bc;
  font-weight: bold;
  font-size: 31px;
  line-height: 1;
}

.common-contact p.common-contact__list-num img {
  width: 27px;
  margin-top: -5px;
  margin-right: 3px;
}

.common-contact p.common-contact__list-info {
  margin-bottom: 20px;
  font-size: 12px;
}

.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 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 18px;
  text-align: center;
}

.sec__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -44px;
  width: 88px;
  height: 2px;
  display: block;
  content: "";
  background-color: #b98d36;
}

.sec__subtitle {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 18px;
}

.sec__subtitle::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -45px;
  width: 90px;
  height: 2px;
  content: "";
  display: inline-block;
  background-color: #b98d36;
}

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

.page__header {
  width: 100%;
  height: 90px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page__header .page__title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 18px 0;
  text-align: center;
  font-size: 18px;
}

.page__header .page__title span {
  position: relative;
  display: inline-block;
}

.page__header .page__title span::after {
  position: absolute;
  left: 50%;
  bottom: -3px;
  margin-left: -38px;
  display: block;
  content: "";
  width: 76px;
  height: 2px;
  background-color: #b98d36;
}

.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 > li {
  background-color: #e6e6e6;
  margin-bottom: 7px;
  padding: 10px;
}

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

.c-news a .c-news__txt {
  text-decoration: underline;
}

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

.pagetop {
  margin-top: 20px;
  text-align: right;
}

.pagetop a {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}

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

.c-table {
  background-color: #ffffff;
}

.c-table dl dt {
  border-top: 1px solid #b98d36;
  padding: 10px 12px;
  font-weight: bold;
}

.c-table dl dd {
  border-top: 1px solid #b98d36;
  padding: 10px 12px;
}

.c-table:last-child {
  border-bottom: 1px solid #b98d36;
}

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

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

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

.c-table--02 dt {
  background-color: #ecf9f7;
  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;
}

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

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

.l-footer {
  background-color: #fbf5e4;
  margin-top: 30px;
  border-top: 1px solid #a07e3a;
  padding: 0;
  line-height: 1.2;
}

.l-footer .footer__bnr {
  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: 5px;
}

.l-footer .footer__bnr > li {
  margin-top: 10px;
  width: calc(50% - 5px);
}

.l-footer .footer__link {
  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-bottom: 15px;
}

.l-footer .footer__link > li {
  width: calc(50% - 5px);
  margin-top: 10px;
  font-size: 12px;
}

.l-footer .footer__link > li a {
  text-decoration: none;
  font-weight: bold;
}

.l-footer .footer__link > li a::before {
  font-family: fontawesome;
  content: "\f105";
  display: inline-block;
  margin-right: 3px;
}

.l-footer .footer__copy {
  padding: 6px 0;
  background-color: #f3ecd9;
  text-align: center;
}

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

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

.sp-menu__btn {
  display: block;
  padding: 10px;
  border-top: 1px solid #a07e3a;
  border-bottom: 1px solid #a07e3a;
  color: #a07e3a;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

.sp-menu__btn::after {
  display: block;
  content: "\f107";
  font-family: fontawesome;
  line-height: 8px;
  transition: ease 0.3s;
}

.sp-menu__btn.close::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

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

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

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

.globalnav {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
}

.globalnav-list {
  padding: 0;
}

.globalnav-list a {
  text-decoration: none;
  font-weight: bold;
}

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

.globalnav-list a {
  padding: 10px;
  border-bottom: 1px solid #a07e3a;
  color: #000000;
  display: block;
  text-align: center;
}

.globalnav-list a:visit {
  color: #000000;
}

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

.l-header {
  position: relative;
  z-index: 10;
}

/*=============
header__description
==============*/

.header__description {
  display: none;
}

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

.header__main {
  background-color: #ffffff;
}

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

.header__logo {
  width: 150px;
  line-height: 1;
  float: left;
  margin: 9px 8px;
}

.header__logo a {
  display: block;
}

.header__contact {
  float: right;
  display: table;
}

.header__contact > li {
  display: table-cell;
  vertical-align: middle;
}

.header__contact .header__contact-tel {
  padding: 3px 5px 2px 0;
  width: 40px;
}

.header__contact .header__contact-tel a {
  background-color: #ffffff;
  border: 2px solid #b98d36;
  padding: 6px;
  display: block;
  font-size: 27px;
  color: #b98d36;
  text-decoration: none;
  line-height: 1;
}

.header__contact .header__contact-link {
  background-color: #a07e3a;
  line-height: 1.4;
}

.header__contact .header__contact-link a {
  display: block;
  padding: 0 17px;
  font-size: 10px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}

.icon__font {
  font-family: "CONDENSEicon";
}

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

.subnav__list {
  width: 100%;
  display: table;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.subnav__list > li {
  display: table-cell;
  width: calc(33.3333%);
}

.subnav__list > li a {
  display: block;
  padding: 5px 0;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  text-decoration: none;
}

.subnav__list > li a::before {
  display: block;
  margin-bottom: 4px;
  font-family: CONDENSEicon;
  font-weight: normal;
  line-height: 1;
}

.subnav__list .subnav__order {
  background-color: #4b4948;
}

.subnav__list .subnav__order a {
  color: #ffffff;
}

.subnav__list .subnav__order a::before {
  content: "0";
  font-size: 26px;
}

.subnav__list .subnav__tel {
  background-color: #0fb29b;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.subnav__list .subnav__tel a {
  color: #ffffff;
}

.subnav__list .subnav__tel a::before {
  content: "=";
  font-size: 20px;
}

.subnav__list .subnav__menu {
  background-color: #ffffff;
}

.subnav__list .subnav__menu a {
  color: #0fb29b;
}

.subnav__list .subnav__menu a::before {
  content: "ˇ";
  font-size: 23px;
}

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

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

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

/* ====================
sub__content
=======================*/

.sub__content {
  padding: 15px 0 20px;
}

/* ====================
card
=======================*/

.card {
  padding: 25px 20px;
  background-color: #ffffff;
  border-radius: 5px;
}

.card__title {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 6px;
  font-size: 16px;
  text-align: center;
}

.card__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  content: "";
  width: 76px;
  height: 2px;
  margin-left: -38px;
  background-color: #b98d36;
}

.card .card__graph {
  margin-top: 25px;
  padding: 0 5px;
}

.list__check > li {
  position: relative;
  margin: 10px 0;
  padding-left: 1em;
  font-weight: bold;
  font-size: 15px;
}

.list__check > li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #b98d36;
}

.list__check--black > li::before {
  color: #000000;
}

/* ====================
affair
=======================*/

.affair .page__header {
  background-image: url(../images/affair/bg_title_sp.jpg);
}

/* ====================
sec__affair-intro
=======================*/

.icon__logo {
  margin-bottom: 15px;
  text-align: center;
}

.icon__logo img {
  width: 42px;
}

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

.sec__affair-recruit .col__contents--pic {
  background-image: url(../images/affair/pic_recruit.jpg);
}

.sec__affair-company .col__contents--pic {
  background-image: url(../images/affair/pic_company.jpg);
}

/* ====================
sec__affair-exam
=======================*/

.affair-exam .affair-exam__flow {
  background-color: #ffffff;
  border-radius: 10px;
}

.affair-exam__flow-title {
  padding: 12px 0;
  border-radius: 10px 10px 0 0;
  background-color: #765d2b;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
}

.exam-flow__inner {
  position: relative;
  border: 1px solid #b98d36;
  margin: 22px 5px 0;
  padding: 15px 7px;
  border-radius: 5px;
  background-color: #ffeddb;
}

.exam-flow__inner::after {
  position: absolute;
  bottom: -19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: fontawesome;
  content: "\f0d7";
  color: #a07e3a;
  font-size: 30px;
  line-height: 1;
}

.exam-flow__inner .exam-flow__inner-title {
  margin-top: -30px;
  font-size: 10px;
  text-align: center;
}

.exam-flow__inner .exam-flow__inner-title span {
  display: inline-block;
  padding: 5px 10px;
  background-color: #ffffff;
  border: 1px solid #b98d36;
  border-radius: 5px;
}

.exam-flow__inner .exam-flow__type {
  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;
}

.exam-flow__inner .exam-flow__type > li {
  width: calc(50% - 5px);
  padding: 10px 5px;
  border-radius: 15px;
  background-color: #a07e3a;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}

.exam-flow__inner .list__check {
  margin-top: 15px;
  width: 68%;
  margin-left: auto;
  margin-right: auto;
}

.exam-flow__inner .list__check > li {
  margin: 5px 0;
  font-size: 10px;
}

.exam-flow__inner .exam-flow3 {
  text-align: center;
}

.exam-flow__inner .exam-flow3 span {
  display: inline-block;
  border-radius: 15px;
  padding: 7px 15px;
  background-color: #ffffff;
  border: 1px solid #000000;
  font-size: 10px;
  font-weight: bold;
}

.exam-flow__inner .exam-flow4 {
  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;
}

.exam-flow__inner .exam-flow4 > li {
  width: calc(50% - 5px);
  margin-top: 7px;
  text-align: center;
  font-size: 10px;
}

.exam-flow__inner .exam-flow4 .exam-flow4__title {
  background-color: #ffffff;
  padding: 5px 10px;
  border: 1px solid #b98d36;
  border-radius: 5px 5px 0 0;
}

.exam-flow__inner .exam-flow4 p {
  padding: 7px 5px 0;
}

.exam-flow__end {
  padding: 20px 0 25px;
  text-align: center;
}

.exam-flow__end span {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 12px;
}

.exam-flow__end span::before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 26px;
  background-image: url(../images/affair/icon_leaf_left.png);
  background-size: 100%;
  vertical-align: middle;
  margin-right: 5px;
}

.exam-flow__end span::after {
  display: inline-block;
  content: "";
  width: 15px;
  height: 26px;
  background-image: url(../images/affair/icon_leaf_right.png);
  background-size: 100%;
  vertical-align: middle;
  margin-left: 5px;
}

.exam__list > li {
  margin-top: 10px;
  padding: 15px 12px;
  background-color: #ffffff;
  border-radius: 10px;
}

.exam__list .exam__list__title {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 6px;
  font-size: 16px;
}

.exam__list .exam__list__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  display: block;
  content: "";
  background-color: #b98d36;
}

.exam__list__table {
  width: 100%;
  display: table;
}

.exam__list__table .exam__list__table-icon {
  display: table-cell;
  width: 85px;
  text-align: center;
}

.exam__list__table .exam__list__table-txt {
  display: table-cell;
  vertical-align: middle;
}

.exam-icon__church {
  width: 46px;
}

.exam-icon__bridal {
  width: 35px;
}

.exam-icon__bar {
  width: 51px;
}

.exam-icon__cloak {
  width: 50px;
}

.flow--icon {
  position: relative;
  margin-bottom: 30px;
}

.flow--icon::after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: fontawesome;
  content: "\f0d7";
  color: #a07e3a;
  font-size: 30px;
  line-height: 1;
}

.affair__step {
  margin-top: 15px;
}

.affair__step-list > li {
  position: relative;
  background-color: #ffffff;
  margin-top: 20px;
  padding: 10px 13px;
  border-radius: 10px;
  text-align: center;
}

.affair__step-list > li:after {
  position: absolute;
  left: 50%;
  bottom: -18px;
  font-family: fontawesome;
  content: "\f0d7";
  color: #000000;
  font-size: 30px;
  line-height: 1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.affair__step-list > li:last-child:after {
  display: none;
}

.affair__step-list > li .step-list__title {
  margin-bottom: 10px;
  font-size: 16px;
  border-bottom: 2px solid #b98d36;
}

.block__pages .pages__header {
  background-color: #ecf9f7;
  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 {
  color: #8c8c8c;
}

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

/*=========================
company
==========================*/

.company .page__header {
  background-image: url(../images/company/bg_title_sp.jpg);
}

.access-map iframe {
  width: 100%;
  height: 180px;
}

/* ====================
 customers
=======================*/

.customers .page__header {
  background-image: url(../images/customers/bg_title_sp.jpg);
}

.customers__info {
  text-align: center;
}

.customers__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;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}

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

.customers__list > li {
  background-color: #ffffff;
  margin-top: 15px;
  border: 2px solid #b98d36;
  border-radius: 5px;
}

.customers__list > li a {
  position: relative;
  display: block;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  height: 100%;
}

.customers__list > li a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  font-family: fontawesome;
  content: "\f105";
  font-size: 16px;
}

/* ====================
 slider
=======================*/

.mainvisual {
  width: 100%;
  height: 245px;
  background-image: url(../images/index/mv_pc@2x.jpg);
  background-size: 780px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.mainvisual .colona {
  background-color: #ffffff;
  border-radius: 5px;
  width: 90%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  right: 50%;
  padding: 20px;
  font-size: 12px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 20px;
}

.mainvisual .colona .sec__title {
  font-size: 16px;
}

/* ====================
 component
=======================*/

.col__contents .col__contents--pic {
  height: 205px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.col__contents .col__contents--txt {
  padding: 15px;
}

.col__contents .col__contents--txt__inner {
  padding: 25px 15px 30px;
  background-color: #ffffff;
  border-radius: 5px;
}

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

/* ====================
 recruit
=======================*/

.sec__top-recruit .col__contents--pic {
  background-image: url(../images/index/pic_recruit@2x.jpg);
}

.sec__top-company .col__contents--pic {
  background-image: url(../images/index/pic_company@2x.jpg);
}

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

.top-service__list > li {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}

.top-service__content .top-service__content-pic {
  width: 61.2%;
  margin: 0 auto 12px;
}

.top-service__content .top-service__content-pic img {
  width: 100%;
}

.top-service__content .top-service__content-txt .top-service__content-title {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
}

.top-service__movie {
  margin-top: 18px;
}

.top-service__movie .top-service__movie-title {
  margin-bottom: 2px;
  font-size: 12px;
  text-align: center;
}

/* top-service__list modifier */

.top-service__list--calender .top-service__content-title,
.top-service__list--calender .top-service__movie-title {
  color: #0fb29b;
}

.top-service__list--photo .top-service__content-title,
.top-service__list--photo .top-service__movie-title {
  color: #e25a21;
}

.top-service__list--deco .top-service__content-title,
.top-service__list--deco .top-service__movie-title {
  color: #8b5ad4;
}

.top-service__list--silk .top-service__content-title,
.top-service__list--silk .top-service__movie-title {
  color: #70b823;
}

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

.top-about__seecatch {
  margin-top: 20px;
  margin-bottom: 40px;
  position: relative;
}

.top-about__seecatch::after {
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  background-color: #e6e6e6;
  position: absolute;
  bottom: -20px;
  left: 0;
}

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

.top-about__seecatch-title {
  color: #0fb29b;
  font-size: 15px;
}

.top-about__seecatch-subtitle {
  width: 69%;
  margin: 0 auto;
  padding: 12px 25px;
  background-color: #ffffff;
  color: #0fb29b;
  font-size: 17px;
}

.top-about__seecatch-pic {
  margin: 0;
  text-align: center;
}

.top-about__seecatch-pic img {
  width: 69%;
  margin: 0 auto;
}

.top-about__seecatch-pic figcaption {
  margin-top: 12px;
  text-align: left;
}

/* ====================
 top__bottom
=======================*/

.top__bottom .top__bottom-title {
  margin-bottom: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 17px;
  color: #0fb29b;
}

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

.top__news .top__bottom-title {
  margin-bottom: 0;
}

.top__news p a {
  text-decoration: none;
}

/* ====================
 company
=======================*/

.top__company img {
  margin-left: 10px;
  width: 40%;
  float: right;
}

/*=========================
inquiry
==========================*/

.inquiry .page__header,
.thanks .page__header {
  background-image: url(../images/inquiry/bg_title_sp.jpg);
}

.inquiry__intro .inquiry__intro-txt p {
  margin-bottom: 10px;
}

.form__attentions {
  margin-top: 20px;
  background-color: #b98d36;
  font-weight: bold;
  padding: 15px;
  border-radius: 10px;
  color: #ffffff;
}

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

.form__type {
  margin-top: 15px;
}

.form__type dl dt {
  border-top: 1px solid #b98d36;
  padding: 10px 15px;
  font-weight: bold;
}

.form__type dl dd {
  border-top: 1px solid #b98d36;
  padding: 10px 15px;
  border-bottom: 1px solid #b98d36;
  background-color: #ffffff;
}

.form__block {
  margin-top: 25px;
}

.form__block .form__block__title {
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid #b98d36;
  font-size: 16px;
}

.form__table {
  border-left: 1px solid #b98d36;
  border-right: 1px solid #b98d36;
  border-bottom: 1px solid #b98d36;
}

.form__table dl {
  background-color: #ffffff;
}

.form__table dl dt {
  border-top: 1px solid #b98d36;
  padding: 10px;
  font-weight: bold;
}

.form__table dl dd {
  border-top: 1px solid #b98d36;
  padding: 10px;
}

.form__list {
  padding-left: 0;
}

.form__privacy {
  height: 300px;
  padding: 15px 10px;
  background-color: #ffffff;
  border-radius: 5px;
  overflow-y: scroll;
}

.form__privacy h4 {
  margin: 25px 0 10px;
  font-size: 14px;
}

.form__privacy p {
  margin: 10px 0;
}

ul.dot{
  list-style: disc;
}

/*=========================
 confirm
==========================*/

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

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

/* ====================
一覧
=======================*/

.service__content {
  overflow: hidden;
  position: relative;
}

.service__content--pic {
  margin: 0 50px 20px;
}

.service__content--txt .c-btn {
  margin-top: 20px;
}

/* ====================
スライダー
=======================*/

.bxslider-thumb p {
  margin-top: 5px;
  font-size: 10px;
}

/* ====================
下層共通
=======================*/

.service__content--movie iframe {
  width: 100%;
  height: 100%;
}

.service__content--attention {
  padding-left: 1em;
  color: #cd052f;
  font-size: 12px;
  font-weight: bold;
  text-indent: -1em;
}

.service__content--table {
  border: 2px solid #e6e6e6;
  font-size: 12px;
}

.service__content--table th {
  width: 56%;
  padding: 12px 8px;
  background: #ecf9f7;
  text-align: left;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.service__content--table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid #e6e6e6;
}

.service__content-delivery {
  margin-bottom: 10px;
  padding: 12px;
  border: 5px solid #ecf9f7;
}

.service__content-delivery dt {
  font-weight: bold;
}

.service__content--order p a {
  color: #0fb29b;
  font-weight: bold;
  text-decoration: underline;
}

.service__content--store table {
  margin-bottom: -2px;
}

.service__content--store p {
  margin-top: 15px;
  padding-left: 1em;
  font-size: 12px;
  text-indent: -1em;
}

.service__content--store p a {
  color: #0fb29b;
  font-weight: bold;
}

/* ====================
calendar
=======================*/

.service__icon-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-bottom: 15px;
}

.service__icon-list li {
  width: 32%;
}

.service__content--txt-original a {
  color: #0fb29b;
  font-weight: bold;
}

/* ====================
photo
=======================*/

.service__content--movie--photo {
  margin: 10px 0;
}

.service__content--notice li {
  margin-bottom: 10px;
  padding-left: 1.8em;
  text-indent: -0.8em;
}

.service__content--notice li:last-child {
  margin-bottom: 0;
}

.service__content--notice li:before {
  content: "\f00c";
  display: inline-block;
  margin-right: 8px;
  font-family: fontawesome;
  vertical-align: 1px;
}

.service-content--comment {
  display: none;
}

.service__content--item-popup ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.service__content--item-popup ul li {
  width: 24%;
  margin-bottom: 5px;
}

.service__content--item-popup--first {
  margin-top: 15px;
}

.service__content--item-popup--last {
  margin-bottom: 10px;
}

/* ====================
silk screen 他でも使うかも？
=======================*/

.service__content--col2 .service__content--txt-price {
  text-align: right;
  font-weight: bold;
  font-size: 120%;
}

/* ====================
silk screen 他でも使うかも？
=======================*/

.service-pic__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: 12px;
}

.service-pic__list > li {
  width: calc(33.333% - 6px);
  margin-top: 7px;
}

.service-pic__list > li figure {
  margin: 0;
}

.service-pic__list > li figcaption {
  text-align: center;
}

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

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

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

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

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

.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-c-green {
  color: #0fb29b !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: 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;
  }

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

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

  .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;
    background-color: #4b4948;
    position: absolute;
    top: 50%;
    left: 0;
  }

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

  .block__subcontent {
    margin-top: 30px;
  }

  .c-btn--col2 .btn {
    display: inline-block;
    margin: 0 10px;
  }

  .btn {
    width: 280px;
    padding: 20px;
    font-size: 18px;
  }

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

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

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

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

  .common-contact {
    padding: 65px 0;
    font-weight: bold;
    font-size: 16px;
  }

  .common-contact .common-contact--inner {
    padding: 50px 40px;
  }

  .common-contact .common-contact__list {
    width: 100%;
    margin-top: 40px;
    display: table;
  }

  .common-contact .common-contact__list > li {
    display: table-cell;
    width: 33.33333%;
    padding: 0 10px;
  }

  .common-contact p.common-contact__list-num {
    font-size: 36px;
    text-align: right;
  }

  .common-contact p.common-contact__list-num img {
    width: 34px;
    margin-top: -7px;
  }

  .common-contact p.common-contact__list-info {
    text-align: right;
    font-size: 16px;
  }

  .common-contact .btn {
    width: 280px;
    padding: 20px;
    font-size: 16px;
  }

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

  .sec__title {
    padding-bottom: 15
 px;
    margin-bottom: 30px;
    font-size: 20px;
  }

  .sec__title::after {
    width: 100px;
    margin-left: -50px;
  }

  .sec__subtitle {
    padding-bottom: 20px;
    font-size: 20px;
  }

  .sec__subtitle::after {
    width: 100px;
    margin-left: -50px;
  }

  .page__header {
    height: 270px;
  }

  .page__header .page__title {
    padding: 30px 0 40px;
    font-size: 34px;
  }

  .page__header .page__title span::after {
    width: 100px;
    height: 3px;
    bottom: -10px;
    margin-left: -50px;
  }

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

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

  .c-news > li {
    display: table;
    width: 100%;
    margin-bottom: 12px;
    padding: 0;
  }

  .c-news__time {
    display: table-cell;
    width: 110px;
    padding: 15px;
  }

  .c-news__txt {
    display: table-cell;
    border-left: 1px solid #ffffff;
    padding: 15px;
  }

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

  .pagetop {
    margin-top: 30px;
  }

  .pagetop a {
    font-size: 14px;
  }

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

  .c-table dl dt {
    width: 130px;
    display: table-cell;
    border-right: 1px solid #b98d36;
    padding: 20px;
  }

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

  .c-table--col2 {
    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;
  }

  .c-table--col2 dl {
    width: 50%;
  }

  .c-table--col2 dl:first-child {
    border-right: 1px solid #b98d36;
  }

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

  .l-footer {
    margin-top: 60px;
    background-color: #ffffff;
  }

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

  .l-footer .footer__bnr {
    margin-top: 0;
    float: left;
  }

  .l-footer .footer__bnr > li {
    width: 228px;
    margin-top: 0;
  }

  .l-footer .footer__link {
    display: block;
    margin-top: 22px;
    margin-bottom: 0;
    float: right;
  }

  .l-footer .footer__link > li {
    width: auto;
    display: inline-block;
    margin-top: 0;
    margin-left: 30px;
    font-size: 14px;
  }

  .l-footer .footer__link > li a::before {
    margin-right: 5px;
  }

  .l-footer .footer__copy {
    background-color: #a07e3a;
  }

  .l-footer .footer__copy small {
    font-size: 12px;
    color: #ffffff;
  }

  .globalnav {
    position: static;
    left: auto;
  }

  .globalnav {
    width: 100%;
    padding: 25px 0;
    border-top: 1px solid #e6deca;
    border-bottom: 1px solid #e6deca;
    background-color: #fbf5e4;
    display: block;
  }

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

  .globalnav-list > li {
    display: table-cell;
    width: 16.6666666667%;
    border-right: 1px solid #e6deca;
  }

  .globalnav-list > li:first-child {
    border-left: 1px solid #e6deca;
  }

  .globalnav-list a {
    position: relative;
    border-bottom: none;
    padding: 2px 0;
    letter-spacing: 0;
  }

  .header__description {
    display: block;
    padding: 5px 0;
    background-color: #b98d36;
    border-bottom: 1px solid #e6e6e6;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
  }

  .header__main .l-container {
    padding: 20px 20px 23px;
  }

  .header__logo {
    width: 326px;
  }

  .header__contact {
    width: 570px;
    border: 1px solid #b98d36;
    border-radius: 10px;
  }

  .header__contact .header__contact-tel {
    width: 307px;
    padding: 10px 10px 7px;
  }

  .header__contact .header__contact-tel .header__tel {
    text-align: center;
    line-height: 1.2;
  }

  .header__contact .header__contact-tel .header__tel .header__tel--title {
    font-size: 13px;
    font-weight: bold;
    color: #cd052f;
  }

  .header__contact .header__contact-tel .header__tel .header__tel--num {
    margin-top: 3px;
    font-weight: bold;
    font-size: 32px;
    line-height: 1;
  }

  .header__contact .header__contact-tel .header__tel .header__tel--num span {
    color: #a07e3a;
  }

  .header__contact .header__contact-link {
    border-radius: 0 7px 7px 0;
  }

  .header__contact .header__contact-link a {
    border-radius: 0 7px 7px 0;
    text-align: center;
    font-size: 19px;
  }

  .header__contact .header__contact-link a::after {
    right: 15px;
    margin-top: 0;
  }

  .subnav__list {
    width: 420px;
    display: block;
    box-shadow: none;
    position: absolute;
    top: -36px;
    right: 20px;
    font-size: 0;
  }

  .subnav__list > li {
    display: inline-block;
    width: 195px;
    height: 50px;
    margin-left: 10px;
  }

  .subnav__list > li a {
    padding: 0;
    line-height: 50px;
  }

  .subnav__list > li a::before {
    display: inline-block;
    margin-bottom: 0;
  }

  .subnav__list .subnav__order a {
    font-size: 18px;
  }

  .subnav__list .subnav__order a::before {
    font-size: 18px;
  }

  .subnav__list .subnav__tel a {
    font-size: 21px;
  }

  .subnav__list .subnav__menu {
    display: none;
  }

  .l-wrapper {
    min-width: 1040px;
  }

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

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

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

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

  .sub__content {
    padding: 30px 0;
  }

  .card {
    padding: 35px 50px 30px;
    text-align: center;
  }

  .card__title {
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-size: 20px;
  }

  .card__title::after {
    width: 100px;
    margin-left: -50px;
  }

  .list__check > li {
    font-size: 18px;
  }

  .affair .page__header {
    background-image: url(../images/affair/bg_title_pc.jpg);
  }

  .sec__affair-intro p {
    width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .icon__logo img {
    width: 55px;
  }

  .business__list--first .card {
    width: 490px;
    margin: 0 auto;
  }

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

  .business__list > li {
    width: 490px;
    margin-top: 30px;
  }

  .affair-exam {
    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;
  }

  .affair-exam .affair-exam__flow {
    width: 500px;
  }

  .affair-exam .affair-exam__list {
    width: 470px;
  }

  .affair-exam__flow-title {
    font-size: 18px;
  }

  .exam-flow__inner {
    margin: 35px 10px 0;
  }

  .exam-flow__inner::after {
    bottom: -32px;
    font-size: 50px;
  }

  .exam-flow__inner .exam-flow__inner-title {
    font-size: 17px;
  }

  .exam-flow__inner .exam-flow__inner-title span {
    padding: 2px 15px;
  }

  .exam-flow__inner .exam-flow__type > li {
    border-radius: 25px;
    font-size: 17px;
  }

  .exam-flow__inner .list__check {
    margin-top: 25px;
  }

  .exam-flow__inner .list__check > li {
    font-size: 15px;
  }

  .exam-flow__inner .exam-flow3 span {
    border-radius: 25px;
    padding: 10px 30px;
    border: 2px solid #000000;
    font-size: 17px;
  }

  .exam-flow__inner .exam-flow4 .exam-flow4__title {
    border: 2px solid #b98d36;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    font-size: 17px;
  }

  .exam-flow__inner .exam-flow4 p {
    font-size: 14px;
  }

  .exam-flow__end {
    padding-top: 35px;
  }

  .exam-flow__end span {
    font-size: 20px;
  }

  .exam-flow__end span::before {
    width: 36px;
    height: 63px;
  }

  .exam-flow__end span::after {
    width: 36px;
    height: 63px;
  }

  .exam__list > li {
    margin-top: 20px;
    padding: 25px 20px;
  }

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

  .exam__list .exam__list__title {
    font-size: 18px;
  }

  .exam__list__table .exam__list__table-icon {
    width: 124px;
  }

  .exam__list__table .exam__list__table-txt {
    padding-left: 10px;
  }

  .exam-icon__church {
    width: 74px;
  }

  .exam-icon__bridal {
    width: 56px;
  }

  .exam-icon__bar {
    width: 80px;
  }

  .exam-icon__cloak {
    width: 82px;
  }

  .flow--icon {
    margin-bottom: 40px;
  }

  .flow--icon::after {
    bottom: -45px;
    font-size: 50px;
  }

  .affair__step {
    margin-top: 50px;
  }

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

  .affair__step-list > li {
    width: calc(25% - 25px);
    margin-top: 0;
    border-radius: 5px;
    text-align: left;
  }

  .affair__step-list > li:after {
    top: 50%;
    left: auto;
    bottom: auto;
    right: -20px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 50px;
    content: "\f0da";
  }

  .affair__step-list > li .step-list__title {
    padding-bottom: 5px;
    text-align: center;
    font-size: 18px;
  }

  .block__pages .pages__header {
    height: 140px;
  }

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

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

  .company .page__header {
    background-image: url(../images/company/bg_title_pc.jpg);
  }

  .access-map iframe {
    height: 420px;
  }

  .customers .page__header {
    background-image: url(../images/customers/bg_title_pc.jpg);
  }

  .customers__list {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .customers__list > li {
    width: calc(33.3333% - 15px);
    margin-top: 20px;
  }

  .customers__list > li a {
    height: 60px;
    font-size: 15px;
  }

  .customers__list > li a span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .mainvisual {
    height: 495px;
    background-size: cover;
  }

  .mainvisual .colona {
    background-color: #ffffff;
    border-radius: 5px;
    min-width: 460px;
    max-width: 530px;
    padding: 20px;
    display: block;
    margin: auto;
    position: absolute;
    font-size: 16px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .mainvisual .colona .sec__title {
    font-size: 20px;
  }

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

  .col__contents--reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .col__contents .col__contents--pic {
    width: 50%;
    height: 563px;
  }

  .col__contents .col__contents--txt {
    width: 50%;
    height: 563px;
    position: relative;
  }

  .col__contents .col__contents--txt__inner {
    min-width: 460px;
    max-width: 530px;
    width: 73.61111111111111%;
    padding: 40px 45px 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

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

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

  .top-service__list > li {
    margin-top: 0;
    width: 475px;
    border-bottom: none;
  }

  .top-service__content {
    display: table;
    width: 100%;
  }

  .top-service__content .top-service__content-pic {
    width: 220px;
    display: table-cell;
    vertical-align: top;
  }

  .top-service__content .top-service__content-txt {
    display: table-cell;
    width: 255px;
    padding-left: 20px;
  }

  .top-service__content .top-service__content-txt .top-service__content-title {
    font-size: 17px;
    text-align: left;
    letter-spacing: 0;
  }

  .top-service__content .top-service__content-txt .c-btn {
    width: 235px;
  }

  .top-service__content .top-service__content-txt .c-btn .btn {
    padding: 10px;
  }

  .top-service__movie {
    margin-top: 30px;
  }

  .top-service__movie .top-service__movie-title {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .top-about__seecatch {
    overflow: hidden;
    margin-bottom: 0;
  }

  .top-about__seecatch::after {
    display: none;
  }

  .top-about__seecatch--left {
    width: 370px;
    float: left;
  }

  .top-about__seecatch--right {
    width: 570px;
    float: left;
  }

  .top-about__seecatch--right > li {
    width: 170px;
    float: left;
    margin-left: 20px;
    margin-top: 0;
  }

  .top-about__seecatch-title {
    margin-bottom: 15px;
  }

  .top-about__seecatch-subtitle {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
  }

  .top-about__seecatch-pic img {
    width: 100%;
  }

  .top-about__seecatch-pic figcaption {
    margin-top: 10px;
    font-size: 14px;
  }

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

  .top__bottom .top__bottom-title {
    margin-bottom: 25px;
    border-bottom: 2px solid #e6e6e6;
    font-size: 20px;
  }

  .top__news {
    width: 475px;
    float: left;
  }

  .top__news .top__bottom-title {
    margin-bottom: 10px;
  }

  .top__news p {
    font-size: 13px;
  }

  .top__news p a::before {
    font-size: 13px;
  }

  .top__company {
    width: 475px;
    float: right;
  }

  .top__company img {
    width: 200px;
  }

  .top__company p {
    margin-top: 15px;
    letter-spacing: 0;
  }

  .inquiry .page__header,
  .thanks .page__header {
    background-image: url(../images/inquiry/bg_title_pc.jpg);
  }

  .inquiry__intro {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: row-reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
  }

  .inquiry__intro .inquiry__intro-pic {
    width: 285px;
    margin-left: 20px;
  }

  .form__attentions {
    padding: 20px;
  }

  .form__type dl {
    background-color: #ffffff;
    display: table;
    width: 100%;
    border: 1px solid #b98d36;
  }

  .form__type dl dt {
    display: table-cell;
    border: none;
    padding: 15px;
    width: 195px;
  }

  .form__type dl dd {
    display: table-cell;
    border: none;
    padding: 15px;
  }

  .form__block .form__block__title {
    font-size: 20px;
  }

  .form__table {
    display: table;
    width: 100%;
  }

  .form__table dl {
    display: table-row;
  }

  .form__table dl dt {
    width: 195px;
    padding: 15px;
    display: table-cell;
    vertical-align: top;
  }

  .form__table dl dd {
    border-left: 1px solid #b98d36;
    display: table-cell;
  }

  .form__list > li {
    display: inline-block;
    margin-right: 10px;
  }

  .form__privacy {
    padding: 25px 30px;
    height: 330px;
  }

  .form__privacy h4 {
    font-size: 16px;
  }

  .confirm .form__table dl dd {
    padding: 15px;
  }

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

  .service__content--item-list {
    padding-bottom: 142px;
  }

  .service__content--pic {
    width: 210px;
    float: left;
    margin: 0;
  }

  .service__content--txt {
    width: 760px;
    float: right;
  }

  .service__content--slider {
    float: left;
  }

  .service__content--slider .bx-wrapper {
    width: 500px;
    padding: 25px;
    border: 1px solid #e6e6e6;
  }

  .service__content--thumb {
    position: absolute;
    bottom: -10px;
  }

  .bxslider-thumb p {
    font-size: 12px;
  }

  .service__content--movie {
    width: 600px;
    height: 338px;
  }

  .service__content--attention {
    font-size: 14px;
  }

  .service__content--table {
    border: 3px solid #e6e6e6;
    font-size: 16px;
  }

  .service__content--table th {
    width: 50%;
  }

  .service__content--right {
    width: 470px;
    float: right;
  }

  .service__content--order .c-btn {
    margin-top: 20px;
  }

  .service__content--order .btn {
    max-width: 410px;
    padding: 30px 0;
    font-size: 20px;
  }

  .service__content--store table {
    width: 485px;
    float: left;
  }

  .service__content--store table:first-of-type {
    margin-right: 30px;
  }

  .service__content--store table th {
    font-weight: bold;
  }

  .service__content--store p {
    clear: both;
    padding-top: 30px;
    font-size: 16px;
  }

  .service__icon-list {
    width: 537px;
    float: right;
    margin-left: 20px;
  }

  .service--photo .service__content--item-list {
    padding-bottom: 116px;
  }

  .service__content--movie--photo {
    width: 478px;
    height: 269px;
    float: left;
  }

  .service__content--pic--howto {
    width: 500px;
    margin-top: 10px;
    float: right;
  }

  .service-content--comment {
    display: block;
    margin-bottom: 10px;
  }

  .service__content--item-popup ul li {
    width: 120px;
  }

  .service__content--item-popup--first {
    width: 500px;
  }

  .service__content--popup--right {
    position: absolute;
    width: 470px;
    right: 0;
    top: 15px;
  }

  .service__content--col2 {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .service__content--col2 .service__content--item-list {
    padding-bottom: 0;
  }

  .service__content--col2 .block__subcontent {
    width: 480px;
  }

  .service__content--col2 .service__content--slider {
    float: none;
  }

  .service__content--col2 .service__content--thumb {
    position: relative;
    bottom: 0;
  }

  .service-pic__list > li {
    margin-top: 10px;
    width: calc(16.6666% - 10px);
  }

  .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 all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 320px) {
  .exam-flow__inner .exam-flow4 p br {
    display: none;
  }
}