@charset "UTF-8";

/*
Theme Name: ODD FOOT WORKS
Author: FMC inc.
Version: 2018.10.20
*/

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

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

/* mixin(for Sass) */

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

html {
  box-sizing: border-box;
}

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

body {
  background: #ffffff;
  /* Fallback for when there is no custom background color defined. */
  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: 1px solid #000000;
  color: #fff;
  line-height: 1;
}

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

button.btn-submit {
  margin-top: 20px;
  border: 1px solid #e6e6e6;
  color: #e6e6e6;
  background-color: transparent;
  transition: all 0.3s ease;
}

button.btn-submit:hover {
  background: #e6e6e6;
  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 {
  width: 100%;
  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 {
  outline: 2px solid #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
  resize: vertical;
}

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

/* Firefox */

::-moz-placeholder {
  color: #585858;
}

/* IE */

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

.c-form .c-form-table__row > dt {
  background-color: #e6e6e6;
  padding: 10px 15px;
  font-weight: bold;
}

.c-form .c-form-table__row > dd {
  padding: 10px 15px;
}

.c-form .c-form-table__row .c-form-table__last {
  padding: 10px 15px 0;
}

.c-form__confirm dl > dt {
  background-color: #e6e6e6;
  padding: 10px 15px;
  font-weight: bold;
}

.c-form__confirm dl > dd {
  padding: 10px 15px;
}

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;
  -moz-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 {
  margin-top: 25px;
}

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

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

.c-btn__col2 .btn {
  display: block;
  margin: 10px auto;
}

.btn {
  width: 150px;
  padding: 10px 15px;
  border: 1px solid #585858;
  color: #585858;
  display: inline-block;
  text-align: center;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn__white {
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
}

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

.btn__black {
  color: #ffffff;
  border: 1px solid #000000;
  background-color: #000000;
}

.btn__black:hover {
  background-color: #4d4d4d;
  border: 1px solid #4d4d4d;
}

.btn:visited {
  color: #ffffff;
}

.btn:hover {
  opacity: 1;
}

.btn__big {
  width: 300px;
}

.js-hover-btn span {
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: .3s;
  background: #ffffff;
}

.js-hover-btn:hover {
  background: transparent !important;
}

.js-hover-btn:hover span {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.js-hover-btn__left {
  width: 1px;
  height: 31px;
  top: 4px;
  left: 5px;
}

.js-hover-btn__right {
  width: 1px;
  height: 31px;
  top: 4px;
  right: 5px;
}

.js-hover-btn__top {
  width: 130px;
  height: 1px;
  top: 5px;
  left: 4px;
}

.js-hover-btn__bottom {
  width: 130px;
  height: 1px;
  bottom: 5px;
  left: 4px;
}

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

/* ====================
 common__reserve
=======================*/

.common__reserve {
  position: relative;
  background-color: #e4c751;
  padding: 50px 0;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
}

.common__reserve #common-reserve {
  position: absolute;
  top: -20px;
}

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

.common__reserve .l-container::before,
.common__reserve .l-container::after {
  display: block;
  content: "";
  width: 70px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.common__reserve .l-container::before {
  top: -10px;
  left: 0;
}

.common__reserve .l-container::after {
  bottom: -10px;
  right: 0;
}

.common__reserve .reserve__title {
  font-size: 21px;
}

.common__reserve .reserve__tel {
  display: inline-block;
  border: 1px solid #f6efd6;
  margin-top: 15px;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 18px;
}

.common__reserve .reserve__insta {
  display: block;
  width: 30px;
  margin: 15px auto;
}

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

.common__reserve .common__reserve--list {
  font-size: 15px;
  font-weight: bold;
}

.common__reserve .common__reserve--list > li {
  margin-top: 25px;
}

.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%;
  text-align: center;
}

.page__header .page__header-title {
  text-align: center;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

/*=========================
 loop
==========================*/

.c-loop {
  padding: 25px 7px 25px 7px;
  border-bottom: 1px solid #e4c751;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  position: relative;
}

.c-loop::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  display: block;
  content: "";
  background-color: #fdf9f3;
  transition: ease 0.3s;
}

.c-loop:hover::before {
  width: 100%;
}

.c-loop a {
  display: table;
  position: relative;
  text-decoration: none;
}

.c-loop a:hover {
  opacity: 1;
}

.c-loop a:hover .loop__img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.c-loop a .loop__img {
  overflow: hidden;
  display: table-cell;
  width: 33.8%;
  vertical-align: top;
}

.c-loop a .loop__img img {
  transition: ease 0.3s;
  width: 100%;
}

.c-loop a .loop__txt {
  display: table-cell;
  vertical-align: top;
  padding-left: 10px;
  font-size: 14px;
}

.c-loop a .loop__date::before {
  display: inline-block;
  margin-right: 4px;
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(./images/icon/icon_link_arrow@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.c-loop a .loop__title {
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.c-loop a .loop_excerpt {
  position: absolute;
  bottom: 26px;
  line-height: 1.8;
  color: #585858;
  font-size: 13px;
}

.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-num.num__list-num--double {
  left: -10px;
}

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

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

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

/* ====================
 coupon page
=======================*/

.num__list-coupon {
  width: 6px;
  top: 35px;
  left: 8px;
}

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

.num__list-check {
  width: 6px;
  top: 35px;
  left: 8px;
}

.num__list-case {
  width: 6px;
  top: 35px;
  left: 8px;
}

/*=========================
 loop
==========================*/

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

.c-pagination .wp-pagenavi {
  text-align: center;
  font-weight: bold;
}

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

.c-pagination .wp-pagenavi a {
  margin: 0 5px;
}

.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: 50px;
  padding: 10px 0 10px;
  background-color: #000000;
  color: #ffffff;
}

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

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

.l-footer .footer__copy small {
  font-size: 10px;
  letter-spacing: 0.03em;
  font-family: "Spectral", serif;
}

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

.gnav-btn {
  width: 27px;
  text-align: center;
  vertical-align: middle;
  position: absolute;
  top: 2px;
  right: 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 {
  margin: 20px 0 10px;
}

.globalnav__list {
  text-align: center;
  font-size: 0;
}

.globalnav__list li {
  display: inline-block;
  margin: 5px 10px;
}

.globalnav__list a {
  text-decoration: none;
  font-family: "Spectral", serif;
  font-size: 12px;
  text-align: center;
  font-weight: 600;
}

.snsnav__list {
  text-align: center;
  font-size: 0;
}

.snsnav__list li {
  display: inline-block;
  margin: 0 5px;
  font-size: 17px;
}

.gnav-news,
.gnav-works,
.gnav-biography,
.gnav-schedule,
.gnav-video,
.gnav-contact {
  position: relative;
}

.gnav-news::after,
.gnav-works::after,
.gnav-biography::after,
.gnav-schedule::after,
.gnav-video::after,
.gnav-contact::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000000;
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: ease 0.2s;
}

.gnav-news:hover::after,
.gnav-works:hover::after,
.gnav-biography:hover::after,
.gnav-schedule:hover::after,
.gnav-video:hover::after,
.gnav-contact:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.news .gnav-news::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.works .gnav-works::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.schedule .gnav-schedule::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.video .gnav-video::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.biography .gnav-biography::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.contact .gnav-contact::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

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

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

.l-header {
  padding: 20px 0;
  transition: ease 0.3s;
}

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

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

.header__icon-list {
  position: absolute;
  top: -6px;
  right: 15px;
  overflow: hidden;
  font-size: 0;
}

.header__icon-list > li {
  display: inline-block;
  vertical-align: middle;
}

.header__tel-icon {
  width: 30px;
  margin-left: 10px;
}

.header__insta-icon {
  width: 22px;
}

.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: 1.8;
  text-align: center;
}

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

.sec__policy {
  background-image: url(./images/about/bg_policy_sp.png);
  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_sp.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;
}

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

.news-cat__list {
  text-align: center;
  font-size: 0;
}

.news-cat__list li {
  display: inline-block;
  margin: 0 5px;
  font-family: "Montserrat", sans-serif;
}

.news-cat__list li a {
  font-weight: bold;
  text-decoration: none;
  font-size: 10px;
}

.news-list {
  margin-top: 10px;
}

.news-list:first-child {
  margin-top: 0;
}

.news-list .news-list__header {
  position: relative;
  background-color: #000000;
  padding: 10px 25px 10px 10px;
  color: #ffffff;
}

.news-list .news-list__header .news-list__title {
  font-size: 12px;
  line-height: 1.6;
}

.news-list .news__content__meta {
  margin-bottom: 10px;
  font-size: 12px;
}

.news-list .news__content__meta:after {
  content: "";
  clear: both;
  display: block;
}

.news-list .news__content__meta .news__content__date {
  margin: 0;
  display: inline-block;
  font-weight: bold;
}

.news-list .news__content__meta .news-list__cat {
  margin-left: 10px;
  display: inline-block;
  font-weight: bold;
  padding-left: 0;
}

.news-list .news__content__meta .news-list__cat > li {
  list-style: none;
}

.news-list .js-open {
  cursor: pointer;
}

.news-list .js-open .news__arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.news-list .news__content .js-close {
  margin-top: 20px;
  cursor: pointer;
}

.news-list .news__content .js-close > div {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.news-list .news__content .js-close p {
  margin: 0;
}

.news-list .news__content .news__content--close {
  text-align: center;
}

.news-list .news__content {
  padding: 10px 15px 15px;
  font-size: 14px;
  line-height: 1.9;
  display: none;
}

.news-list .news__content div {
  max-width: 100%;
}

.news-list .news__content h1 {
  margin: 5px 0;
  font-size: 16px;
}

.news-list .news__content h2 {
  margin: 5px 0;
  font-size: 15px;
}

.news-list .news__content h3 {
  margin: 5px 0;
  font-size: 14px;
}

.news-list .news__content h4 {
  margin: 5px 0;
  font-size: 14px;
}

.news-list .news__content h5 {
  margin: 5px 0;
  font-size: 14px;
}

.news-list .news__content h6 {
  margin: 5px 0;
  font-size: 14px;
}

.news-list .news__content p {
  margin: 15px 0;
}

.news-list .news__content .fluid-width-video-wrapper {
  margin: 15px 0;
}

.news-list .news__content ol {
  margin: 5px 0;
  padding-left: 1.5em;
}

.news-list .news__content ul {
  margin: 5px 0;
  padding-left: 1.5em;
}

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

.news-list .news__content img {
  max-width: 100%;
}

.news-list .news__content .alignleft {
  float: left;
  margin: 10px 10px 10px 0;
}

.news-list .news__content .alignright {
  float: right;
  margin: 10px 0 10px 10px;
}

.news-list .news__content .aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.news-list .news__content table {
  border: 1px solid #000000;
}

.news-list .news__content table td,
.news-list .news__content table th {
  border: 1px solid #000000;
  padding: 10px;
}

.blog .c-loop {
  position: relative;
}

.blog .c-loop:first-child::after {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 1px;
  height: 30px;
  content: "";
  display: block;
  background-color: #000000;
}

/*=========================
 single
==========================*/

.single-cat__list {
  text-align: center;
  font-size: 0;
}

.single-cat__list li {
  display: inline-block;
  margin: 0 5px;
  font-family: "Montserrat", sans-serif;
}

.single-cat__list li a {
  font-weight: bold;
  text-decoration: none;
  font-size: 10px;
}

.single-list {
  margin-top: 10px;
}

.single-list:first-child {
  margin-top: 0;
}

.single-list .single-list__header {
  position: relative;
  background-color: #000000;
  padding: 10px 25px 10px 10px;
  color: #ffffff;
}

.single-list .single-list__header .single-list__title {
  font-size: 12px;
  line-height: 1.6;
}

.single-list .single-list__header .single-list__title--center {
  text-align: center;
}

.single-list .single__content {
  padding: 10px 15px 15px;
  font-size: 14px;
  line-height: 1.9;
}

.single-list .single__content .single__content__meta {
  margin-bottom: 10px;
  font-size: 12px;
}

.single-list .single__content .single__content__meta:after {
  content: "";
  clear: both;
  display: block;
}

.single-list .single__content .single__content__meta p {
  float: left;
  font-weight: bold;
}

.single-list .single__content .single__content__meta .single-list__cat {
  margin-left: 10px;
  float: left;
  font-weight: bold;
  padding-left: 0 !important;
}

.single-list .single__content .single__content__meta .single-list__cat > li {
  list-style: none;
}

.single-list .single__content div {
  max-width: 100%;
}

.single-list .single__content h1 {
  margin: 5px 0;
  font-size: 16px;
}

.single-list .single__content h2 {
  margin: 5px 0;
  font-size: 15px;
}

.single-list .single__content h3 {
  margin: 5px 0;
  font-size: 14px;
}

.single-list .single__content h4 {
  margin: 5px 0;
  font-size: 14px;
}

.single-list .single__content h5 {
  margin: 5px 0;
  font-size: 14px;
}

.single-list .single__content h6 {
  margin: 5px 0;
  font-size: 14px;
}

.single-list .single__content p {
  margin: 5px 0;
}

.single-list .single__content ol {
  margin: 5px 0;
  padding-left: 1.5em;
}

.single-list .single__content ul {
  margin: 5px 0;
  padding-left: 1.5em;
}

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

.single-list .single__content img {
  max-width: 100%;
}

.single-list .single__content .alignleft {
  float: left;
  margin: 10px 10px 10px 0;
}

.single-list .single__content .alignright {
  float: right;
  margin: 10px 0 10px 10px;
}

.single-list .single__content .aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.single-list .single__content table {
  border: 1px solid #000000;
}

.single-list .single__content table td,
.single-list .single__content table th {
  border: 1px solid #000000;
  padding: 10px;
}

.single-list .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: block;
  color: #cd052f;
}

.single-list .wpcf7-response-output.wpcf7-validation-errors {
  display: block;
  margin-top: 10px;
  color: #cd052f;
  text-align: center;
}

#wpcf7-f6-p8-o1.wpcf7 .screen-reader-response {
  color: #cd052f;
}

#wpcf7-f6-p8-o1.wpcf7 ul {
  padding: 0;
}

#wpcf7-f6-p8-o1.wpcf7 ul > li a {
  color: #cd052f;
}

.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
==========================*/

.block__contact {
  max-width: 600px;
  margin: 0 auto;
}

.form__content {
  margin-top: 20px;
}

.form__content dl {
  margin-top: 15px;
}

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

.form__content .c-btn .btn {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
  padding: 10px 15px;
}

.form__content .c-btn .btn:hover {
  background-color: #e4c751;
  color: #ffffff;
  border-color: #e4c751;
}

/* ====================
 coupon
=======================*/

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

/* ====================
 sec__guidance
=======================*/

.sec__guidance .guidance__description {
  margin-bottom: 20px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  text-align: center;
}

.guidance__list > li {
  margin-top: 35px;
  text-align: center;
}

/* ====================
 sec__bridal
=======================*/

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

/* ====================
 sec__campaign
=======================*/

.sec__campaign {
  background-image: url(./images/coupon/bg_campaign_sp.png);
  background-size: cover;
}

.c-ticket {
  border: 1px solid #000000;
  padding: 10px;
  text-align: center;
}

.c-ticket .ticket-title {
  width: 186px;
  position: relative;
  margin: -25px auto 0;
  padding: 5px;
  background-color: #c30d23;
  text-align: center;
  color: #e4c751;
  font-size: 14px;
  letter-spacing: 1.8px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
}

.c-ticket .ticket-title::before {
  position: absolute;
  top: 0;
  left: -28px;
  content: "";
  border-top: 15px solid transparent;
  border-right: 14px solid #c30d23;
  border-bottom: 14px solid transparent;
  border-left: 14px solid transparent;
}

.c-ticket .ticket-title::after {
  position: absolute;
  top: 0;
  right: -28px;
  content: "";
  border-top: 15px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #c30d23;
}

.c-ticket .ticket-regular {
  margin-bottom: 10px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  font-size: 14px;
}

.c-ticket .ticket-count {
  position: relative;
  margin: 10px 0;
  padding-bottom: 5px;
  font-weight: bold;
  font-size: 16px;
}

.c-ticket .ticket-count::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 2px;
  display: block;
  content: "";
  background-color: #e4c751;
}

.c-ticket .ticket-ribbon {
  position: relative;
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-bottom: 15px;
  background-color: #c30d23;
  padding: 5px;
  color: #e4c751;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  font-weight: bold;
  font-size: 16px;
}

.c-ticket .ticket-ribbon::before {
  position: absolute;
  content: '';
  top: -7px;
  left: 0;
  border: none;
  border-bottom: solid 7px #a2303b;
  border-left: solid 5px transparent;
}

.c-ticket .ticket-ribbon::after {
  position: absolute;
  content: '';
  top: -7px;
  right: 0;
  border: none;
  border-bottom: solid 7px #a2303b;
  border-right: solid 5px transparent;
}

.c-ticket .ticket-price {
  font-weight: bold;
  font-size: 20px;
}

.c-ticket.c-ticket--arrow {
  border-bottom: none;
  position: relative;
}

.c-ticket.c-ticket--arrow::before {
  position: absolute;
  left: -2px;
  bottom: -7.6%;
  display: block;
  width: 51%;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(8deg);
  transform: rotate(8deg);
  content: "";
}

.c-ticket.c-ticket--arrow::after {
  position: absolute;
  right: -2px;
  bottom: -7.6%;
  display: block;
  width: 51%;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
  content: "";
}

.campaign__list > li {
  margin-top: 35px;
}

.campaign__contents {
  border: 1px solid #000000;
  margin: 38px 0 10px;
  padding: 15px;
  text-align: center;
  line-height: 1.8;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
}

.campaign__contents span {
  font-size: 14px;
}

.campaign__price {
  border: 1px solid #000000;
  padding: 5px 10px;
  text-align: center;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
}

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

.c-num__list::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;
}

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

.title-page .l-main {
  height: 100vh;
  position: relative;
}

.title-page .l-main .block__content {
  width: 235px;
  height: 230px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.top__logo {
  margin-top: -600px;
  height: 100%;
  position: relative;
}

.top__logo img {
  width: 100%;
}

.top__logo span {
  display: inline-block;
  position: absolute;
  opacity: 0;
}

.top__logo .anime__01 {
  top: -2px;
  left: 108px;
}

.top__logo .anime__02 {
  top: 18px;
  left: 97px;
}

.top__logo .anime__03 {
  top: 18px;
  left: 118px;
}

.top__logo .anime__04 {
  top: 37px;
  left: 86px;
}

.top__logo .anime__05 {
  top: 37px;
  left: 108px;
}

.top__logo .anime__06 {
  top: 37px;
  left: 129px;
}

.top__logo .anime__07 {
  top: 56px;
  left: 78px;
}

.top__logo .anime__08 {
  top: 56px;
  left: 99px;
}

.top__logo .anime__09 {
  top: 56px;
  left: 121px;
}

.top__logo .anime__10 {
  top: 56px;
  left: 142px;
}

.top__logo .anime__11 {
  top: 75px;
  left: 68px;
}

.top__logo .anime__12 {
  top: 75px;
  left: 89px;
}

.top__logo .anime__13 {
  top: 75px;
  left: 110px;
}

.top__logo .anime__14 {
  top: 75px;
  left: 131px;
}

.top__logo .anime__15 {
  top: 75px;
  left: 147px;
}

.top__logo .anime__16 {
  top: 94px;
  left: 58px;
}

.top__logo .anime__17 {
  top: 94px;
  left: 79px;
}

.top__logo .anime__18 {
  top: 94px;
  left: 100px;
}

.top__logo .anime__19 {
  top: 94px;
  left: 121px;
}

.top__logo .anime__20 {
  top: 94px;
  left: 138px;
}

.top__logo .anime__21 {
  top: 94px;
  left: 158px;
}

.top__logo .anime__22 {
  top: 113px;
  left: 48px;
}

.top__logo .anime__23 {
  top: 113px;
  left: 69px;
}

.top__logo .anime__24 {
  top: 113px;
  left: 91px;
}

.top__logo .anime__25 {
  top: 113px;
  left: 112px;
}

.top__logo .anime__26 {
  top: 113px;
  left: 128px;
}

.top__logo .anime__27 {
  top: 113px;
  left: 148px;
}

.top__logo .anime__28 {
  top: 114px;
  left: 167px;
}

.top__logo .anime__29 {
  top: 133px;
  left: 36px;
}

.top__logo .anime__30 {
  top: 133px;
  left: 58px;
}

.top__logo .anime__31 {
  top: 133px;
  left: 78px;
}

.top__logo .anime__32 {
  top: 133px;
  left: 100px;
}

.top__logo .anime__33 {
  top: 133px;
  left: 115px;
}

.top__logo .anime__34 {
  top: 133px;
  left: 136px;
}

.top__logo .anime__35 {
  top: 133px;
  left: 155px;
}

.top__logo .anime__36 {
  top: 133px;
  left: 174px;
}

.top__logo .anime__37 {
  top: 152px;
  left: 26px;
}

.top__logo .anime__38 {
  top: 152px;
  left: 47px;
}

.top__logo .anime__39 {
  top: 152px;
  left: 69px;
}

.top__logo .anime__40 {
  top: 152px;
  left: 90px;
}

.top__logo .anime__41 {
  top: 152px;
  left: 106px;
}

.top__logo .anime__42 {
  top: 152px;
  left: 126px;
}

.top__logo .anime__43 {
  top: 152px;
  left: 145px;
}

.top__logo .anime__44 {
  top: 152px;
  left: 164px;
}

.top__logo .anime__45 {
  top: 152px;
  left: 189px;
}

.top__logo .anime__46 {
  top: 171px;
  left: 16px;
}

.top__logo .anime__47 {
  top: 171px;
  left: 37px;
}

.top__logo .anime__48 {
  top: 171px;
  left: 59px;
}

.top__logo .anime__49 {
  top: 171px;
  left: 80px;
}

.top__logo .anime__50 {
  top: 171px;
  left: 95px;
}

.top__logo .anime__51 {
  top: 171px;
  left: 116px;
}

.top__logo .anime__52 {
  top: 171px;
  left: 135px;
}

.top__logo .anime__53 {
  top: 171px;
  left: 154px;
}

.top__logo .anime__54 {
  top: 171px;
  left: 180px;
}

.top__logo .anime__55 {
  top: 171px;
  left: 200px;
}

.top__logo .anime__56 {
  top: 190px;
  left: 7px;
}

.top__logo .anime__57 {
  top: 190px;
  left: 28px;
}

.top__logo .anime__58 {
  top: 190px;
  left: 49px;
}

.top__logo .anime__59 {
  top: 190px;
  left: 70px;
}

.top__logo .anime__60 {
  top: 190px;
  left: 85px;
}

.top__logo .anime__61 {
  top: 190px;
  left: 107px;
}

.top__logo .anime__62 {
  top: 190px;
  left: 126px;
}

.top__logo .anime__63 {
  top: 190px;
  left: 144px;
}

.top__logo .anime__64 {
  top: 190px;
  left: 169px;
}

.top__logo .anime__65 {
  top: 190px;
  left: 191px;
}

.top__logo .anime__66 {
  top: 190px;
  left: 210px;
}

.top__logo .anime__67 {
  top: 210px;
  left: 0px;
}

.top__logo .anime__68 {
  top: 210px;
  left: 20px;
}

.top__logo .anime__69 {
  top: 210px;
  left: 42px;
}

.top__logo .anime__70 {
  top: 210px;
  left: 63px;
}

.top__logo .anime__71 {
  top: 210px;
  left: 79px;
}

.top__logo .anime__72 {
  top: 210px;
  left: 99px;
}

.top__logo .anime__73 {
  top: 210px;
  left: 118px;
}

.top__logo .anime__74 {
  top: 210px;
  left: 137px;
}

.top__logo .anime__75 {
  top: 210px;
  left: 162px;
}

.top__logo .anime__76 {
  top: 210px;
  left: 183px;
}

.top__logo .anime__77 {
  top: 210px;
  left: 203px;
}

.top__logo .anime__78 {
  top: 210px;
  left: 222px;
}

.logo__o {
  width: 19px;
}

.logo__d {
  width: 20px;
}

.logo__f {
  width: 16px;
}

.logo__t {
  width: 18px;
}

.logo__w {
  width: 26.5px;
}

.logo__r {
  width: 19px;
}

.logo__k {
  width: 19px;
}

.logo__s {
  width: 13px;
}

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

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

.menu__list > li {
  border-bottom: 1px solid #e4c751;
}

/*=========================

==========================*/

.menu__parent {
  padding-bottom: 30px;
  text-align: center;
}

.menu__parent .menu__txt {
  padding: 0 15px;
}

.menu__title {
  position: relative;
  height: 100px;
  font-size: 18px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  font-weight: normal;
}

.menu__title span {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

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

.menu__child {
  display: none;
  position: relative;
}

.menu__child::before {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 1px;
  height: 30px;
  content: "";
  display: block;
  background-color: #000000;
}

.menu-sub {
  border-top: 1px solid #e4c751;
  padding-top: 30px;
}

.menu-sub:first-child {
  border-top: none;
}

.menu-sub .menu-sub__title {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
}

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

.menu-sub .menu-sub__desc {
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  line-height: 1.8;
}

.menu-sub .menu-sub__desc p span {
  font-size: 13px;
}

.menu-sub .menu-sub__check {
  margin: 25px 0 0 0;
  padding: 30px 0 30px 0;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.menu-sub .menu-sub__check--aging {
  background-image: url(./images/menu/bg_aging_sp.png);
}

.menu-sub .menu-pic {
  margin: 30px auto;
}

.menu-sub .menu-pic .menu-pic__list > li {
  margin-top: 15px;
}

.menu-sub .menu-pic .menu-pic__list > li:first-child {
  margin-top: 0;
}

.c-recommend .recommend__inner {
  padding: 25px 35px 45px;
  position: relative;
}

.c-recommend .recommend__inner::before,
.c-recommend .recommend__inner::after {
  position: absolute;
  width: 100%;
  height: 1px;
  display: block;
  content: "";
  background-color: #e4c751;
}

.c-recommend .recommend__inner::before {
  top: -5px;
  left: 50px;
}

.c-recommend .recommend__inner::after {
  bottom: -5px;
  right: 50px;
}

.c-recommend .recommend__head {
  position: relative;
  margin: 15px 0;
  padding: 5px 0;
  overflow: hidden;
}

.c-recommend .recommend__head--no-recommend {
  margin: -16px 0 15px 0;
}

.c-recommend .recommend__head::before {
  width: 50px;
  height: 100%;
  content: "";
  display: block;
  background-image: url(./images/menu/bg_recommend_left.png);
  position: absolute;
  background-position: top right;
  background-size: 641px;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}

.c-recommend .recommend__head::after {
  width: 50px;
  height: 100%;
  content: "";
  display: block;
  background-image: url(./images/menu/bg_recommend_right.png);
  position: absolute;
  background-position: bottom left;
  background-size: 641px;
  background-repeat: no-repeat;
  right: 0;
  bottom: 0;
}

.recommend__head .recommend__title {
  position: relative;
  margin-bottom: 20px;
  padding-top: 35px;
  font-size: 21px;
  text-align: center;
}

.recommend__head .recommend__title span {
  font-size: 13px;
}

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

.recommend__head .recommend__price {
  text-align: center;
}

.recommend__contents {
  position: relative;
}

.recommend__contents .recommend__contents--title {
  width: 180px;
  margin: -33px auto 20px;
}

.recommend__contents .recommend__contents--paragraph {
  margin: 20px 0;
  line-height: 1.8;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
}

.recommend__contents .recommend__contents--list {
  margin: 0 auto 20px;
  width: 280px;
  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;
}

.recommend__contents .recommend__contents--list.recommend__contents--list--center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*=========================
couporn
==========================*/

.sec-menu__coupon {
  background-color: #c30d22;
  padding: 30px 0 35px;
  color: #e4c751;
  text-align: center;
}

.sec-menu__coupon .menu__coupon--title {
  margin-bottom: 15px;
  font-size: 21px;
}

.sec-menu__coupon p {
  margin-bottom: 20px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  font-weight: bold;
  line-height: 1.6;
}

.sec-menu__coupon .l-container {
  position: relative;
}

.sec-menu__coupon .l-container::before,
.sec-menu__coupon .l-container::after {
  width: 74px;
  height: 1px;
  display: block;
  content: "";
  background-color: #e4c751;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sec-menu__coupon .l-container::before {
  left: 0;
  top: 5px;
}

.sec-menu__coupon .l-container::after {
  right: 0;
  bottom: 5px;
}

.sec-menu__coupon .c-btn .btn {
  width: 185px;
  border: 1px solid #e4c751;
  background-color: #e4c751;
  color: #c30d22;
  font-weight: bold;
}

.sec-menu__coupon .c-btn .btn:hover {
  background-color: transparent;
  color: #e4c751;
  opacity: 1;
}

.menu-bottom__close {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

/*=========================
reserve
==========================*/

.sec-menu__reserve {
  margin-top: 15px;
  padding: 30px 0 35px;
  background-color: #e4c751;
  color: #ffffff;
  text-align: center;
}

.sec-menu__reserve .menu__coupon--title {
  margin-bottom: 15px;
  font-size: 21px;
}

.sec-menu__reserve p {
  margin-bottom: 20px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  font-weight: bold;
  line-height: 1.6;
}

.sec-menu__reserve .l-container {
  position: relative;
}

.sec-menu__reserve .l-container::before,
.sec-menu__reserve .l-container::after {
  width: 74px;
  height: 1px;
  display: block;
  content: "";
  background-color: #ffffff;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sec-menu__reserve .l-container::before {
  left: 0;
  top: 5px;
}

.sec-menu__reserve .l-container::after {
  right: 0;
  bottom: 5px;
}

.sec-menu__reserve .c-btn .btn {
  width: 185px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #e4c751;
  font-weight: bold;
}

.sec-menu__reserve .c-btn .btn:hover {
  background-color: transparent;
  color: #ffffff;
  opacity: 1;
}

/* ====================
staff
=======================*/

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

/* ====================
sec__message
=======================*/

.sec__message {
  text-align: center;
}

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

.sec__message p .comments {
  display: inline-block;
  font-size: 13px;
  line-height: 1.6;
}

/* ====================
sec__staff
=======================*/

.sec__staff {
  background-image: url(./images/staff/bg_staff.jpg);
  background-position: bottom right;
}

.staff__pic {
  padding: 0 20px;
}

.staff__txt {
  padding: 0 20px;
}

.staff__txt dl {
  overflow: hidden;
  margin: 15px 0 0;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
}

.staff__txt dl dt {
  position: relative;
  color: #e4c751;
  font-weight: bold;
}

.staff__txt dl dt:after {
  width: 100%;
  height: 1px;
  position: absolute;
  content: "";
  display: block;
  background-color: #e4c751;
  top: 50%;
}

.staff__txt dl dd {
  margin-top: 10px;
}

.staff__txt-name dt:after {
  left: 60px;
}

.staff__txt-birth dt:after {
  left: 80px;
}

.staff__txt-from dt:after {
  left: 60px;
}

.staff__txt-blood dt:after {
  left: 100px;
}

.sec__title {
  position: relative;
  margin-bottom: 20px;
  padding: 0 0 18px;
  text-align: center;
  font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  font-weight: normal;
  font-size: 22px;
}

.sec__title-bordered::before {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 1px;
  height: 30px;
  content: "";
  display: block;
  background-color: #000000;
}

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

/* ====================
sec__license
=======================*/

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

.license__list li {
  padding: 0 20px;
  margin-top: 20px;
}

/* ユーティリティ(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;
  }

  .common__reserve #common-reserve {
    top: -68px;
  }

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

  .c-loop {
    padding-left: 0;
    padding-right: 0;
  }

  .c-loop a .loop__img {
    width: 156px;
  }

  .c-loop a .loop__txt {
    padding-left: 15px;
    width: 815px;
  }

  .c-loop a .loop__date {
    margin-bottom: 5px;
  }

  .c-loop a .loop__title {
    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--col3 > li {
    margin: 40px 0 0 0;
    width: calc(33.333% - 20px);
  }

  .num__list--col3 > li .num__list-txt p {
    width: 190px;
  }

  .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-txt .num__list-num.num__list-num--double {
    left: -20px;
  }

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

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

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

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

  .c-num__list--wide {
    width: 470px;
  }

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

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

  .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-image: url(./images/about/bg_policy.jpg);
    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-image: url(./images/access/bg_directions.png);
    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;
  }

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

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

  .sec__guidance .num__list {
    margin-top: 10px;
  }

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

  .guidance__list > li {
    margin-top: 60px;
  }

  .guidance__list--col3 > li {
    width: calc(33.3333% - 20px);
  }

  .guidance__list--col2 > li {
    width: calc(50% - 20px);
  }

  .sec__campaign {
    background-image: url(./images/coupon/bg_campaign.png);
    background-size: 1440px;
    background-position: top center;
    background-repeat: no-repeat;
    padding-bottom: 60px !important;
  }

  .c-ticket {
    padding: 30px 10px;
  }

  .c-ticket .ticket-title {
    margin: -49px auto 0;
    padding: 7px;
    font-size: 18px;
  }

  .c-ticket .ticket-title::before {
    left: -30px;
    border-top: 19px solid transparent;
    border-right: 15px solid #c30d23;
    border-bottom: 20px solid transparent;
    border-left: 15px solid transparent;
  }

  .c-ticket .ticket-title::after {
    right: -30px;
    border-top: 19px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 15px solid #c30d23;
  }

  .c-ticket .ticket-regular {
    font-size: 18px;
  }

  .c-ticket .ticket-count {
    margin: 15px 0;
    font-size: 20px;
    letter-spacing: 0.2em;
  }

  .c-ticket .ticket-count::after {
    width: 50px;
    margin-left: -25px;
  }

  .c-ticket .ticket-ribbon {
    width: calc(100% + 34px);
    margin-left: -17px;
    font-size: 20px;
  }

  .c-ticket .ticket-ribbon::before {
    top: -10px;
    border-bottom: solid 10px #a2303b;
    border-left: solid 7px transparent;
  }

  .c-ticket .ticket-ribbon::after {
    top: -10px;
    border-bottom: solid 10px #a2303b;
    border-right: solid 7px transparent;
  }

  .c-ticket .ticket-price {
    font-size: 24px;
  }

  .c-ticket.c-ticket--arrow::before {
    bottom: -5%;
  }

  .c-ticket.c-ticket--arrow::after {
    bottom: -5%;
  }

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

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

  .campaign__contents {
    margin: 45px 0 15px;
    padding: 30px 20px;
    font-size: 19px;
  }

  .campaign__contents span {
    font-size: 16px;
  }

  .campaign__price {
    font-size: 20px;
  }

  .c-num__list::after {
    width: 57px;
    height: 59px;
  }

  .c-num__list .num__list-txt p {
    width: 190px;
  }

  .title-page .l-main .block__content {
    width: 480px;
    height: 470px;
  }

  .top__logo .anime__01 {
    top: -28px;
    left: 218px;
  }

  .top__logo .anime__02 {
    top: 13px;
    left: 197px;
  }

  .top__logo .anime__03 {
    top: 15px;
    left: 238px;
  }

  .top__logo .anime__04 {
    top: 54px;
    left: 171px;
  }

  .top__logo .anime__05 {
    top: 54px;
    left: 214px;
  }

  .top__logo .anime__06 {
    top: 54px;
    left: 257px;
  }

  .top__logo .anime__07 {
    top: 94px;
    left: 153px;
  }

  .top__logo .anime__08 {
    top: 94px;
    left: 195px;
  }

  .top__logo .anime__09 {
    top: 94px;
    left: 241px;
  }

  .top__logo .anime__10 {
    top: 94px;
    left: 288px;
  }

  .top__logo .anime__11 {
    top: 135px;
    left: 135px;
  }

  .top__logo .anime__12 {
    top: 135px;
    left: 178px;
  }

  .top__logo .anime__13 {
    top: 135px;
    left: 220px;
  }

  .top__logo .anime__14 {
    top: 135px;
    left: 265px;
  }

  .top__logo .anime__15 {
    top: 135px;
    left: 300px;
  }

  .top__logo .anime__16 {
    top: 180px;
    left: 114px;
  }

  .top__logo .anime__17 {
    top: 180px;
    left: 156px;
  }

  .top__logo .anime__18 {
    top: 180px;
    left: 198px;
  }

  .top__logo .anime__19 {
    top: 180px;
    left: 241px;
  }

  .top__logo .anime__20 {
    top: 180px;
    left: 278px;
  }

  .top__logo .anime__21 {
    top: 180px;
    left: 323px;
  }

  .top__logo .anime__22 {
    top: 225px;
    left: 94px;
  }

  .top__logo .anime__23 {
    top: 225px;
    left: 136px;
  }

  .top__logo .anime__24 {
    top: 225px;
    left: 179px;
  }

  .top__logo .anime__25 {
    top: 225px;
    left: 225px;
  }

  .top__logo .anime__26 {
    top: 225px;
    left: 257px;
  }

  .top__logo .anime__27 {
    top: 225px;
    left: 302px;
  }

  .top__logo .anime__28 {
    top: 225px;
    left: 345px;
  }

  .top__logo .anime__29 {
    top: 267px;
    left: 71px;
  }

  .top__logo .anime__30 {
    top: 267px;
    left: 112px;
  }

  .top__logo .anime__31 {
    top: 267px;
    left: 154px;
  }

  .top__logo .anime__32 {
    top: 267px;
    left: 197px;
  }

  .top__logo .anime__33 {
    top: 267px;
    left: 234px;
  }

  .top__logo .anime__34 {
    top: 267px;
    left: 279px;
  }

  .top__logo .anime__35 {
    top: 267px;
    left: 320px;
  }

  .top__logo .anime__36 {
    top: 267px;
    left: 359px;
  }

  .top__logo .anime__37 {
    top: 309px;
    left: 53px;
  }

  .top__logo .anime__38 {
    top: 309px;
    left: 96px;
  }

  .top__logo .anime__39 {
    top: 309px;
    left: 139px;
  }

  .top__logo .anime__40 {
    top: 309px;
    left: 181px;
  }

  .top__logo .anime__41 {
    top: 309px;
    left: 215px;
  }

  .top__logo .anime__42 {
    top: 309px;
    left: 259px;
  }

  .top__logo .anime__43 {
    top: 309px;
    left: 303px;
  }

  .top__logo .anime__44 {
    top: 309px;
    left: 342px;
  }

  .top__logo .anime__45 {
    top: 309px;
    left: 393px;
  }

  .top__logo .anime__46 {
    top: 351px;
    left: 36px;
  }

  .top__logo .anime__47 {
    top: 351px;
    left: 77px;
  }

  .top__logo .anime__48 {
    top: 351px;
    left: 119px;
  }

  .top__logo .anime__49 {
    top: 351px;
    left: 166px;
  }

  .top__logo .anime__50 {
    top: 351px;
    left: 201px;
  }

  .top__logo .anime__51 {
    top: 351px;
    left: 245px;
  }

  .top__logo .anime__52 {
    top: 351px;
    left: 288px;
  }

  .top__logo .anime__53 {
    top: 351px;
    left: 326px;
  }

  .top__logo .anime__54 {
    top: 351px;
    left: 377px;
  }

  .top__logo .anime__55 {
    top: 351px;
    left: 416px;
  }

  .top__logo .anime__56 {
    top: 393px;
    left: 17px;
  }

  .top__logo .anime__57 {
    top: 393px;
    left: 58px;
  }

  .top__logo .anime__58 {
    top: 393px;
    left: 99px;
  }

  .top__logo .anime__59 {
    top: 393px;
    left: 145px;
  }

  .top__logo .anime__60 {
    top: 393px;
    left: 180px;
  }

  .top__logo .anime__61 {
    top: 393px;
    left: 224px;
  }

  .top__logo .anime__62 {
    top: 393px;
    left: 267px;
  }

  .top__logo .anime__63 {
    top: 393px;
    left: 305px;
  }

  .top__logo .anime__64 {
    top: 393px;
    left: 357px;
  }

  .top__logo .anime__65 {
    top: 393px;
    left: 397px;
  }

  .top__logo .anime__66 {
    top: 393px;
    left: 437px;
  }

  .top__logo .anime__67 {
    top: 434px;
  }

  .top__logo .anime__68 {
    top: 434px;
    left: 38px;
  }

  .top__logo .anime__69 {
    top: 434px;
    left: 79px;
  }

  .top__logo .anime__70 {
    top: 434px;
    left: 120px;
  }

  .top__logo .anime__71 {
    top: 434px;
    left: 155px;
  }

  .top__logo .anime__72 {
    top: 434px;
    left: 200px;
  }

  .top__logo .anime__73 {
    top: 434px;
    left: 243px;
  }

  .top__logo .anime__74 {
    top: 434px;
    left: 281px;
  }

  .top__logo .anime__75 {
    top: 434px;
    left: 333px;
  }

  .top__logo .anime__76 {
    top: 434px;
    left: 377px;
  }

  .top__logo .anime__77 {
    top: 434px;
    left: 418px;
  }

  .top__logo .anime__78 {
    top: 434px;
    left: 456px;
  }

  .logo__o {
    width: 40px;
  }

  .logo__d {
    width: 41px;
  }

  .logo__f {
    width: 32px;
  }

  .logo__t {
    width: 36px;
  }

  .logo__w {
    width: 54px;
  }

  .logo__r {
    width: 39px;
  }

  .logo__k {
    width: 39px;
  }

  .logo__s {
    width: 26px;
  }

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

  .menu__parent {
    position: relative;
    padding-bottom: 0;
    height: 275px;
  }

  .menu__parent .menu__pic {
    display: none;
  }

  .menu__parent .menu__txt {
    width: 310px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .menu__title {
    height: auto;
    margin-bottom: 20px;
    font-size: 21px;
  }

  .menu__title span {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .sec-menu__list .menu__parent {
    background-size: cover;
    background-position: center;
  }

  .sec-menu__aging .menu__parent {
    background-image: url(./images/menu/bg_aging.jpg);
  }

  .sec-menu__diet .menu__parent {
    background-image: url(./images/menu/bg_diet.jpg);
  }

  .sec-menu__bridal .menu__parent {
    background-image: url(./images/menu/bg_bridal.jpg);
  }

  .sec-menu__mote .menu__parent {
    background-image: url(./images/menu/bg_mote.jpg);
  }

  .sec-menu__sports .menu__parent {
    background-image: url(./images/menu/bg_sports.jpg);
  }

  .sec-menu__artist .menu__parent {
    background-image: url(./images/menu/bg_artist.jpg);
  }

  .sec-menu__dryhead .menu__parent {
    background-image: url(./images/menu/bg_dryhead.jpg);
  }

  .sec-menu__bikyaku .menu__parent {
    background-image: url(./images/menu/bg_bikyaku.jpg);
  }

  .menu__child::before {
    height: 50px;
    top: -25px;
  }

  .menu-sub .menu-sub__desc {
    text-align: center;
  }

  .menu-sub .menu-sub__desc p span {
    font-size: 16px;
  }

  .menu-sub .menu-sub__check {
    padding: 50px 0 50px 0;
    background-size: 1440px;
    background-position: top center;
  }

  .menu-sub .menu-sub__check--aging {
    background-image: url(./images/menu/bg_aging_pc.png);
  }

  .menu-sub .menu-pic {
    margin: 50px auto;
  }

  .menu-sub .menu-pic .menu-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;
  }

  .menu-sub .menu-pic .menu-pic__list > li {
    margin-top: 0;
    width: calc(33.3333% - 23px);
  }

  .c-recommend .recommend__inner {
    width: 970px;
    margin: 0 auto;
    padding: 15px 35px 35px;
  }

  .c-recommend .recommend__inner--row2 {
    padding: 5px 35px 20px;
  }

  .c-recommend .recommend__inner::before {
    left: 0;
  }

  .c-recommend .recommend__inner::after {
    right: 0;
  }

  .c-recommend .recommend__head {
    padding: 10px;
    background-image: url(./images/menu/bg_recommend_pc.png);
    background-size: 1980px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .c-recommend .recommend__head--no-recommend {
    margin: -26px 0 15px 0;
  }

  .c-recommend .recommend__head::before {
    display: none;
  }

  .c-recommend .recommend__head::after {
    display: none;
  }

  .recommend__head .recommend__title {
    margin-bottom: 10px;
    padding: 0 140px;
    font-size: 24px;
  }

  .recommend__head .recommend__title span {
    font-size: 14px;
  }

  .recommend__head .recommend__title:before {
    position: static;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
  }

  .recommend__contents .recommend__contents--title {
    width: 185px;
    margin: -39px auto 35px;
  }

  .recommend__contents .recommend__contents--paragraph {
    margin: 35px 0;
    text-align: center;
  }

  .recommend__contents .recommend__contents--list {
    margin-bottom: 40px;
    width: auto;
  }

  .sec-menu__coupon .l-container::before,
  .sec-menu__coupon .l-container::after {
    width: 205px;
  }

  .sec-menu__coupon .l-container::before {
    top: 50%;
  }

  .sec-menu__coupon .l-container::after {
    bottom: 50%;
  }

  .sec-menu__coupon .c-btn .btn {
    background-color: transparent;
    color: #e4c751;
    width: 100px;
    padding: 8px 10px;
  }

  .sec-menu__coupon .c-btn .btn:hover {
    background-color: #e4c751;
    color: #c30d22;
  }

  .menu-bottom__close {
    padding-top: 25px !important;
    padding-bottom: 50px !important;
  }

  .sec-menu__reserve {
    margin-top: 30px;
  }

  .sec-menu__reserve .l-container::before,
  .sec-menu__reserve .l-container::after {
    width: 205px;
  }

  .sec-menu__reserve .l-container::before {
    top: 50%;
  }

  .sec-menu__reserve .l-container::after {
    bottom: 50%;
  }

  .sec-menu__reserve .c-btn .btn {
    background-color: transparent;
    color: #ffffff;
    width: 100px;
    padding: 8px 10px;
  }

  .sec-menu__reserve .c-btn .btn:hover {
    background-color: #ffffff;
    color: #e4c751;
  }

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

  .sec__message p {
    line-height: 2.8;
  }

  .sec__message p .comments {
    font-size: 14px;
  }

  .sec__staff {
    background-size: 1440px;
    background-position: top center;
    background-repeat: no-repeat;
  }

  .staff {
    width: 100%;
    display: table;
    font-size: 18px;
  }

  .staff__pic {
    display: table-cell;
    width: 390px;
    padding: 0;
  }

  .staff__txt {
    display: table-cell;
    padding: 0 0 0 80px;
    vertical-align: middle;
  }

  .sec__title {
    margin-bottom: 40px;
    font-size: 30px;
  }

  .sec__title-bordered::before {
    top: -70px;
    height: 55px;
  }

  .sec__license p {
    font-size: 18px;
  }

  .license__list {
    margin-top: 40px;
    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;
  }

  .license__list li {
    width: 470px;
    padding: 0;
    margin: 0;
  }
}

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

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

  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 {
    padding: 10px;
  }

  .input__middle {
    width: 50% !important;
  }

  .c-form {
    display: table;
    width: 790px;
    margin: 0 auto;
  }

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

  .c-form .c-form-table__row > dt {
    display: table-cell;
    width: 200px;
    padding: 20px 15px;
    background-color: transparent;
    vertical-align: top;
  }

  .c-form .c-form-table__row > dd {
    display: table-cell;
  }

  .c-form__confirm dl {
    display: table;
    width: 790px;
    margin: 0 auto 20px;
  }

  .c-form__confirm dl > dt {
    padding: 5px 15px;
    width: 200px;
    display: table-cell;
    background-color: transparent;
    border-right: 2px solid #585858;
  }

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

  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 {
    margin-top: 50px;
  }

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

  .btn {
    width: 190px;
    padding: 12px;
    font-size: 16px;
  }

  .btn__big {
    width: 250px;
  }

  .js-hover-btn__left {
    height: 34px;
    top: 10px;
    left: 5px;
  }

  .js-hover-btn__right {
    height: 34px;
    top: 10px;
    right: 5px;
  }

  .js-hover-btn__top {
    width: 220px;
    top: 5px;
    left: 14px;
  }

  .js-hover-btn__bottom {
    width: 220px;
    bottom: 5px;
    left: 14px;
  }

  .common__reserve .l-container::before,
  .common__reserve .l-container::after {
    width: 200px;
  }

  .common__reserve .l-container::before {
    top: 50px;
    left: -50px;
  }

  .common__reserve .l-container::after {
    bottom: 50px;
    right: -50px;
  }

  .common__reserve .reserve__tel {
    font-size: 20px;
  }

  .common__reserve .reserve__insta {
    display: inline-block;
    margin: 0 0 0 25px;
  }

  .common__reserve p {
    margin-top: 20px;
    font-size: 16px;
  }

  .common__reserve .common__reserve--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;
    width: 760px;
    margin: 0 auto;
    font-size: 16px;
  }

  .common__reserve .common__reserve--list > li {
    line-height: 1.8;
  }

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

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

  .c-pagination .wp-pagenavi {
    font-size: 16px;
  }

  .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 .l-container {
    padding: 0 15px;
  }

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

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

  .gnav-btn {
    display: none;
  }

  .globalnav {
    margin: 40px 0 15px;
  }

  .globalnav__list li {
    margin: 0 10px;
  }

  .globalnav__list a {
    padding: 0 13px;
    color: #000000;
    letter-spacing: 0;
    font-size: 16px;
  }

  .snsnav__list li {
    font-size: 20px;
  }

  .l-header {
    padding: 60px 0 60px;
  }

  .header__logo {
    width: 273px;
    margin: 0 auto;
  }

  .is-sticky .header__icon-list {
    margin-top: 0;
  }

  .header__icon-list {
    position: static;
    float: right;
    margin-top: -4px;
    margin-left: 14px;
  }

  .header__insta-icon {
    width: 28px;
  }

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

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

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

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

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

  .news-cat__list li {
    margin: 0 10px;
  }

  .news-cat__list li a {
    font-size: 14px;
  }

  .news-list {
    width: 800px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .news-list .news-list__header {
    padding: 10px 25px 10px 20px;
  }

  .news-list .news-list__header .news-list__title {
    font-size: 16px;
  }

  .news-list .news__content__meta {
    font-size: 14px;
  }

  .news-list .news__content {
    font-size: 16px;
  }

  .news-list .news__content h1 {
    font-size: 20px;
    margin: 15px 0;
  }

  .news-list .news__content h2 {
    font-size: 19px;
    margin: 15px 0;
  }

  .news-list .news__content h3 {
    font-size: 18px;
    margin: 15px 0;
  }

  .news-list .news__content h4 {
    font-size: 17px;
    margin: 15px 0;
  }

  .news-list .news__content h5 {
    font-size: 16px;
    margin: 15px 0;
  }

  .news-list .news__content h6 {
    font-size: 16px;
    margin: 15px 0;
  }

  .news-list .news__content p {
    margin: 15px 0;
  }

  .news-list .news__content .fluid-width-video-wrapper {
    margin: 15px 0;
  }

  .news-list .news__content ol {
    margin: 15px 0;
  }

  .news-list .news__content ul {
    margin: 15px 0;
  }

  .blog .c-loop:first-child::after {
    top: -70px;
    height: 55px;
  }

  .single-cat__list li {
    margin: 0 10px;
  }

  .single-cat__list li a {
    font-size: 14px;
  }

  .single-list {
    width: 800px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .single-list .single-list__header {
    padding: 10px 25px 10px 20px;
  }

  .single-list .single-list__header .single-list__title {
    font-size: 16px;
  }

  .single-list .single__content {
    font-size: 16px;
  }

  .single-list .single__content .single__content__meta {
    font-size: 14px;
  }

  .single-list .single__content h1 {
    font-size: 20px;
    margin: 15px 0;
  }

  .single-list .single__content h2 {
    font-size: 19px;
    margin: 15px 0;
  }

  .single-list .single__content h3 {
    font-size: 18px;
    margin: 15px 0;
  }

  .single-list .single__content h4 {
    font-size: 17px;
    margin: 15px 0;
  }

  .single-list .single__content h5 {
    font-size: 16px;
    margin: 15px 0;
  }

  .single-list .single__content h6 {
    font-size: 16px;
    margin: 15px 0;
  }

  .single-list .single__content p {
    margin: 15px 0;
  }

  .single-list .single__content ol {
    margin: 15px 0;
  }

  .single-list .single__content ul {
    margin: 15px 0;
  }

  .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 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) {
  .header__tel-icon {
    margin-left: 5px;
    width: 26px;
  }
}