
@import url(//fonts.googleapis.com/css?family=Barlow:400,700);

@charset "UTF-8";
/**
	WPより出力される<p>へ適用するスタイル
 */
/* ==========================================================================

   ========================================================================== */
/* ==========================================================================
   Base
   リセットcssとhtml要素の定義
   ========================================================================== */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/*  HTML5 display-role reset for older browsers
*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  height: 10px;
  border: none;
}

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

   preset.scss
   プリミティブ要素の設定

 */
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* &.is-scrollOff {
    @include mq-pc {
      !*overflow: hidden;*!
      height: 100%;
      .glb-page-wrapper {
        width: 100%;
        height: 100vh;
        overflow: hidden;
      }
    }

  }*/
}

body {
  font-size: 1.6rem;
  color: #000;
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  letter-spacing: .05em;
  /*overflow-y: scroll;*/
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  }
}

body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
}

main {
  display: block;
}

a:link, a:visited, a.touchend {
  color: #000;
  text-decoration: none;
  outline: none;
}

a:active, a:hover, a.touchstart {
  text-decoration: none;
  color: #000;
}

@media print, screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

p, h1, h2, h3, h4, h5, h6, li, dt, dd, th, td {
  line-height: 1;
  font-weight: normal;
  font-feature-settings: "palt";
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

sup {
  font-size: .4em;
  vertical-align: top;
}

hr {
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* reset form elements */
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/* ==========================================================================
   Layout
   ========================================================================== */
/* --------------------------------------------------------------------
  #基本幅レイアウト用wrapper
 */
.l-width-std {
  margin-left: 10px;
  margin-right: 10px;
}

@media print, screen and (min-width: 769px) {
  .l-width-std {
    max-width: 1010px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-width-content {
  margin-left: 10px;
  margin-right: 10px;
}

@media print, screen and (min-width: 769px) {
  .l-width-content {
    min-width: 960px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media print, screen and (min-width: 769px) {
  .l-no-hpadding {
    padding-left: 0;
    padding-right: 0;
  }
}

/* --------------------------------------------------------------------
  #ページ全体のwrapper
 */
.l-page-wrapper {
  position: relative;
  background: url(../img/bg_ptn.jpg) repeat center top/auto auto;
}

.l-page-wrapper img {
  width: 100%;
  height: auto;
}

@media print, screen and (min-width: 769px) {
  .l-page-wrapper {
    min-width: 1080px;
  }
}

/* --------------------------------------------------------------------
  #メインエリアwrapper
 */
.l-contents {
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-contents {
    padding-top: 70px;
  }
}

@media print, screen and (min-width: 769px) {
  .l-contents {
    min-width: 840px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-main {
    padding-bottom: 60px;
  }
}

@media print, screen and (min-width: 769px) {
  .l-main {
    padding-bottom: 120px;
  }
}

@media print, screen and (min-width: 769px) {
  .l-main--second {
    padding-top: 0;
  }
}

.notfound {
  min-height: 500px;
}

@media print, screen and (min-width: 769px) {
  .notfound {
    min-height: 600px;
  }
}

/* -------------------------------------------------------------------------
	サイズ
*/
.l-w10 {
  width: 10px !important;
}

.l-w20 {
  width: 20px !important;
}

.l-w30 {
  width: 30px !important;
}

.l-w40 {
  width: 40px !important;
}

.l-w50 {
  width: 50px !important;
}

.l-w60 {
  width: 60px !important;
}

.l-w70 {
  width: 70px !important;
}

.l-w80 {
  width: 80px !important;
}

.l-w90 {
  width: 90px !important;
}

.l-w100 {
  width: 100px !important;
}

.l-w120 {
  width: 120px !important;
}

.l-w140 {
  width: 140px !important;
}

.l-w160 {
  width: 160px !important;
}

.l-w180 {
  width: 180px !important;
}

.l-w200 {
  width: 200px !important;
}

.l-w220 {
  width: 220px !important;
}

.l-w240 {
  width: 240px !important;
}

.l-w260 {
  width: 260px !important;
}

.l-w280 {
  width: 280px !important;
}

.l-w300 {
  width: 300px !important;
}

.l-w320 {
  width: 320px !important;
}

.l-w340 {
  width: 340px !important;
}

.l-w360 {
  width: 360px !important;
}

.l-w380 {
  width: 380px !important;
}

.l-w400 {
  width: 400px !important;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-sp-w-auto {
    width: auto !important;
  }
  .l-sp-w10 {
    width: 10px !important;
  }
  .l-sp-w20 {
    width: 20px !important;
  }
  .l-sp-w30 {
    width: 30px !important;
  }
  .l-sp-w40 {
    width: 40px !important;
  }
  .l-sp-w50 {
    width: 50px !important;
  }
  .l-sp-w60 {
    width: 60px !important;
  }
  .l-sp-w70 {
    width: 70px !important;
  }
  .l-sp-w80 {
    width: 80px !important;
  }
  .l-sp-w90 {
    width: 90px !important;
  }
  .l-sp-w100 {
    width: 100px !important;
  }
}

/* -------------------------------------------------------------------------
	マージン
*/
.l-mb0 {
  margin-bottom: 0px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb0 {
    margin-bottom: 0px !important;
  }
}

.l-mb5 {
  margin-bottom: 2.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb5 {
    margin-bottom: 5px !important;
  }
}

.l-mb10 {
  margin-bottom: 5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb10 {
    margin-bottom: 10px !important;
  }
}

.l-mb15 {
  margin-bottom: 7.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb15 {
    margin-bottom: 15px !important;
  }
}

.l-mb20 {
  margin-bottom: 10px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb20 {
    margin-bottom: 20px !important;
  }
}

.l-mb25 {
  margin-bottom: 12.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb25 {
    margin-bottom: 25px !important;
  }
}

.l-mb30 {
  margin-bottom: 15px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb30 {
    margin-bottom: 30px !important;
  }
}

.l-mb35 {
  margin-bottom: 17.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb35 {
    margin-bottom: 35px !important;
  }
}

.l-mb40 {
  margin-bottom: 20px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb40 {
    margin-bottom: 40px !important;
  }
}

.l-mb45 {
  margin-bottom: 22.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb45 {
    margin-bottom: 45px !important;
  }
}

.l-mb50 {
  margin-bottom: 25px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb50 {
    margin-bottom: 50px !important;
  }
}

.l-mb55 {
  margin-bottom: 27.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb55 {
    margin-bottom: 55px !important;
  }
}

.l-mb60 {
  margin-bottom: 30px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb60 {
    margin-bottom: 60px !important;
  }
}

.l-mb65 {
  margin-bottom: 32.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb65 {
    margin-bottom: 65px !important;
  }
}

.l-mb70 {
  margin-bottom: 35px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb70 {
    margin-bottom: 70px !important;
  }
}

.l-mb75 {
  margin-bottom: 37.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb75 {
    margin-bottom: 75px !important;
  }
}

.l-mb80 {
  margin-bottom: 40px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb80 {
    margin-bottom: 80px !important;
  }
}

.l-mb85 {
  margin-bottom: 42.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb85 {
    margin-bottom: 85px !important;
  }
}

.l-mb90 {
  margin-bottom: 45px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb90 {
    margin-bottom: 90px !important;
  }
}

.l-mb95 {
  margin-bottom: 47.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb95 {
    margin-bottom: 95px !important;
  }
}

.l-mb100 {
  margin-bottom: 50px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb100 {
    margin-bottom: 100px !important;
  }
}

.l-mt0 {
  margin-top: 0px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
}

.l-mt5 {
  margin-top: 2.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt5 {
    margin-top: 5px !important;
  }
}

.l-mt10 {
  margin-top: 5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt10 {
    margin-top: 10px !important;
  }
}

.l-mt15 {
  margin-top: 7.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt15 {
    margin-top: 15px !important;
  }
}

.l-mt20 {
  margin-top: 10px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt20 {
    margin-top: 20px !important;
  }
}

.l-mt25 {
  margin-top: 12.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt25 {
    margin-top: 25px !important;
  }
}

.l-mt30 {
  margin-top: 15px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt30 {
    margin-top: 30px !important;
  }
}

.l-mt35 {
  margin-top: 17.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt35 {
    margin-top: 35px !important;
  }
}

.l-mt40 {
  margin-top: 20px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt40 {
    margin-top: 40px !important;
  }
}

.l-mt45 {
  margin-top: 22.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt45 {
    margin-top: 45px !important;
  }
}

.l-mt50 {
  margin-top: 25px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt50 {
    margin-top: 50px !important;
  }
}

.l-mr0 {
  margin-right: 0px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr0 {
    margin-right: 0px !important;
  }
}

.l-mr5 {
  margin-right: 2.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr5 {
    margin-right: 5px !important;
  }
}

.l-mr10 {
  margin-right: 5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr10 {
    margin-right: 10px !important;
  }
}

.l-mr15 {
  margin-right: 7.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr15 {
    margin-right: 15px !important;
  }
}

.l-mr20 {
  margin-right: 10px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr20 {
    margin-right: 20px !important;
  }
}

.l-mr25 {
  margin-right: 12.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr25 {
    margin-right: 25px !important;
  }
}

.l-mr30 {
  margin-right: 15px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr30 {
    margin-right: 30px !important;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-ml0-sp {
    margin-left: 0 !important;
  }
  .l-mr0-sp {
    margin-right: 0 !important;
  }
  .l-mr5-sp {
    margin-right: 5px !important;
  }
  .l-mb0-sp {
    margin-bottom: 0 !important;
  }
  .l-mt0-sp {
    margin-top: 0 !important;
  }
  .l-mb5-sp {
    margin-bottom: 5px !important;
  }
  .l-mb10-sp {
    margin-bottom: 10px !important;
  }
}

.l-pd5 {
  padding: 5px;
}

.l-pd10 {
  padding: 10px;
}

.l-pd15 {
  padding: 15px;
}

.l-pd20 {
  padding: 20px;
}

.l-pd30 {
  padding: 30px;
}

.l-pd40 {
  padding: 40px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-pd5 {
    padding: 3px;
  }
  .l-pd10 {
    padding: 5px;
  }
  .l-pd15 {
    padding: 7px;
  }
  .l-pd20 {
    padding: 10px;
  }
  .l-pd30 {
    padding: 15px;
  }
  .l-pd40 {
    padding: 20px;
  }
}

/* -------------------------------------------------------------------------
	テキスト揃え
*/
.l-alignL {
  text-align: left;
}

.l-alignR {
  text-align: right;
}

.l-alignC {
  text-align: center;
}

.l-block-alignC {
  margin-left: auto;
  margin-right: auto;
}

.l-valign-m {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-sp-alignL {
    text-align: left;
  }
  .l-sp-alignR {
    text-align: right;
  }
  .l-sp-alignC {
    text-align: center;
  }
}

.l-container {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.l-container--centering {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.l-container--fullscreen {
  width: 100%;
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-container-sp-block {
    display: block;
  }
}

@media print, screen and (min-width: 769px) {
  .l-col2 {
    width: calc(50% - 20px);
  }
}

.l-lineup-head-left {
  width: 65%;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-lineup-head-left {
    width: 58%;
  }
}

.l-lineup-head-right {
  width: 30%;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-lineup-head-right {
    width: 38%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-sp-noflex {
    display: block;
  }
}

/**
  フォーム下アクションボタン
 */
.l-form-btn,
.l-form-btn-back {
  max-width: 300px;
  margin: 0 auto;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-form-btn,
  .l-form-btn-back {
    margin: 0 auto;
    width: auto;
  }
}

@media print, screen and (min-width: 769px) {
  .l-form-btn,
  .l-form-btn-back {
    width: 100%;
  }
}

.l-form-btn-back {
  max-width: 160px;
}

.l-form-btn-right {
  max-width: 214px;
  margin: 0 0 40px auto;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-form-btn-right {
    margin: 0 0 20px auto;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-form-btn-container > li:nth-child(n+2) {
    margin-top: 4px;
  }
}

@media print, screen and (min-width: 769px) {
  .l-form-btn-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .l-form-btn-container > li {
    width: 300px;
  }
  .l-form-btn-container > li:nth-child(n+2) {
    margin-left: 30px;
  }
}

/* ==========================================================================
   library
   ========================================================================== */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
	WPより出力される<p>へ適用するスタイル
 */
.slick-slide {
  outline: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("fonts/slick.eot");
  src: url("fonts/slick.eot?#iefix") format("embedded-opentype"), url("fonts/slick.woff") format("woff"), url("fonts/slick.ttf") format("truetype"), url("fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

.slick-controll {
  position: relative;
}

@media print, screen and (min-width: 769px) {
  .slick-controll {
    width: 40%;
    margin: 0 0 0 auto;
  }
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  right: 0;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  z-index: 10009;
  width: 20px;
  height: 40px;
  top: calc(50% - 20px);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .slick-prev,
  .slick-next {
    display: none !important;
  }
}

@media print, screen and (min-width: 769px) {
  .slick-prev,
  .slick-next {
    display: none;
  }
  .slick-prev:hover,
  .slick-next:hover {
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  }
}

.slick-prev {
  background: url(/assets/img/ic_prev_w.svg) no-repeat center center/15px auto;
  left: 20px;
}

.slick-next {
  background: url(/assets/img/ic_next_w.svg) no-repeat center center/15px auto;
  right: 20px;
}

/* Dots */
.slick-dots {
  margin: 10px calc(9.4vw + 110px) 0 auto;
  list-style: none;
  display: block;
  width: 120px;
  text-align: center;
  padding: 0;
}

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

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .slick-dots li {
    margin: 0 3px;
  }
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.slick-dots li button:before {
  position: absolute;
  display: block;
  top: 3px;
  left: 3px;
  content: "";
  width: 6px;
  height: 6px;
  background: #e2e2e2;
  border-radius: 50%;
  transition-duration: .3s;
}

.slick-dots li.slick-active button:before {
  background: #000;
  border: none;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .slick-dots {
    margin: 0 !important;
    width: auto;
    margin-left: -20vw;
  }
}

/* ==========================================================================
   Module
   ========================================================================== */
/* basic */
/* ====================================================================

#コンテンツヘッダ

*/
/* --------------------------------------------------------------------
  #ヘッダ
 */
.header {
  position: relative;
  z-index: 100008;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header {
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    top: 0;
    height: 70px;
    width: 100%;
  }
}

@media print, screen and (min-width: 769px) {
  .header {
    height: 130px;
    background: url(../img/bg_ptn.jpg) repeat-x center top/auto auto;
  }
}

/**
  ヘッダロゴ
 */
.header__logo {
  text-align: center;
}

.header__logo .logo-inner {
  display: block;
}

.header__logo .logo-pict {
  width: 204px;
}

@media print, screen and (min-width: 769px) {
  .header__logo {
    margin-top: 38px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: calc(50% - 64px);
  }
  .header__logo .logo-pict {
    width: 128px;
  }
}

.header-drawer-logo {
  position: fixed;
  display: -ms-flexbox;
  display: flex;
  transform: translate3d(0, -110%, 0);
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: url(../img/bg_ptn.jpg) repeat-x center top/auto auto;
  transition-duration: .2s;
}

.header-drawer-logo.is-active {
  transform: translate3d(0, 0, 0);
}

.header-drawer-logo .logo-pict {
  width: 204px;
}

@media print, screen and (min-width: 769px) {
  .header-drawer-logo {
    display: none;
    visibility: hidden;
  }
}

.header-sp-logo {
  margin-bottom: 40px;
}

.header-sp-logo .logo-pict {
  width: 204px;
}

@media print, screen and (min-width: 769px) {
  .header-sp-logo {
    display: none;
  }
}

/**
  SP時の固定ヘッダ要素
 */
/*.header-wrap {
  @include mq-sp {
    border: 1px solid #000;
    position: relative;
    background: #fff;

    width: 100%;
    z-index: $zind_layer10;
  }
}*/
/**
  メニュートリガーボタン
 */
.header__trigger {
  position: fixed;
  cursor: pointer;
  z-index: 100010;
  right: 12px;
  top: 19px;
  width: 40px;
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition-duration: .2s;
}

.header__trigger:after {
  content: "MENU";
  color: #000;
  font-family: 'Barlow';
  font-weight: 700;
  display: block;
  font-size: .9rem;
  text-align: center;
  margin-top: 8px;
  width: 100%;
}

.header__trigger.is-scroll {
  /*top: 13px;*/
}

.header__trigger .line1,
.header__trigger .line2,
.header__trigger .line3 {
  display: block;
  width: 20px;
  height: 2px;
  background: #444;
  border-radius: 25%;
  transition-duration: .2s;
}

.header__trigger .line1 {
  transform: translate3d(0, -4px, 0);
}

.header__trigger .line2 {
  transform: translate3d(0, 0, 0);
}

.header__trigger .line3 {
  transform: translate3d(0, 4px, 0);
}

.header__trigger.is-active:after {
  transition-duration: .2s;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.header__trigger.is-active .line1,
.header__trigger.is-active .line2,
.header__trigger.is-active .line3 {
  width: 30px;
  background-color: #808080;
  transition-duration: .4s;
}

.header__trigger.is-active .line1 {
  transform: translate3d(0, 8px, 0) rotate(-225deg);
}

.header__trigger.is-active .line2 {
  transform: translate3d(20px, 0, 0);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.header__trigger.is-active .line3 {
  transform: translate3d(0, 4px, 0) rotate(225deg);
}

@media print, screen and (min-width: 769px) {
  .header__trigger {
    display: none;
  }
}

/**
  ドロワーコンテナ（SP時メニューのボディ）
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-menu {
    display: none;
    position: fixed;
    z-index: 100008;
    height: 100%;
    background-color: #000;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header-menu.is-beforeEnter {
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  .header-menu.is-active {
    display: block;
    transition-duration: .5s;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    transform: scale(1);
  }
  .header-menu.is-fadeOut {
    display: block;
    transition-duration: .3s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@media print, screen and (min-width: 769px) {
  .header-menu {
    display: block;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-menu-inner {
    padding-top: 28px;
    padding-bottom: 100px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}

@media print, screen and (min-width: 769px) {
  .header-menu-inner {
    position: relative;
    width: 1080px;
    margin-left: auto;
    margin-right: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

/**
  グロナビ
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-gnav {
    white-space: nowrap;
    width: auto;
    text-align: center;
  }
}

@media print, screen and (min-width: 769px) {
  .header-gnav {
    margin-top: 45px;
    display: -ms-flexbox;
    display: flex;
  }
}

.header-gnav__item {
  position: relative;
}

.header-gnav__item > a, .header-gnav__item > span {
  display: block;
  font-family: 'Barlow';
  font-weight: 700;
  padding: 10px 0;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-gnav__item {
    margin-bottom: 18px;
  }
  .header-gnav__item > a, .header-gnav__item > span {
    font-size: 2rem;
    color: #808080;
  }
}

@media print, screen and (min-width: 769px) {
  .header-gnav__item {
    margin-right: 10px;
  }
  .header-gnav__item > a:after, .header-gnav__item > span:after {
    transition-duration: 0.2s;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    top: 24px;
    background-color: #000;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 100%;
  }
  .header-gnav__item:hover > a:after, .header-gnav__item:hover > span:after {
    transform: scale3d(1, 1, 1);
  }
  .header-gnav__item > a.is-active:after, .header-gnav__item > span.is-active:after {
    transform: scale3d(1, 1, 1);
  }
  .header-gnav__item.is-current > a:after,
  .header-gnav__item.is-current > span:after {
    transform: scale3d(1, 1, 1);
  }
  .header-gnav__item:last-child {
    margin-right: 0;
  }
}

.header-gnav__item--tw > a, .header-gnav__item--tw > span {
  background: url(/assets/img/ic_tw_gray.svg) no-repeat right center/16px auto;
  padding-right: 22px;
}

@media print, screen and (min-width: 769px) {
  .header-gnav__item--tw {
    margin-right: 15px;
  }
  .header-gnav__item--tw > a, .header-gnav__item--tw > span {
    background-image: url(/assets/img/ic_tw.svg);
    background-size: 12px auto;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-gnav__item--bar img {
    width: 58px;
  }
}

@media print, screen and (min-width: 769px) {
  .header-gnav__item--bar {
    width: 51px;
    margin-top: -13px;
  }
  .header-gnav__item--bar > a, .header-gnav__item--bar > span {
    background: url(/assets/img/ic_bar_red.svg) no-repeat center center;
  }
  .header-gnav__item--bar > a:after, .header-gnav__item--bar > span:after {
    display: none;
  }
  .header-gnav__item--bar img {
    transition-duration: 0.2s;
  }
  .header-gnav__item--bar:hover img {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-gnav-second {
    padding: 12px 0;
  }
}

@media print, screen and (min-width: 769px) {
  .header-gnav-second {
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    width: 200px;
    margin-left: -20px;
  }
}

.header-gnav-second .header-gnav__item > a, .header-gnav-second .header-gnav__item > span {
  font-size: 1.6rem;
  white-space: nowrap;
  color: #808080;
}

.header-gnav-second .header-gnav__item > a:after, .header-gnav-second .header-gnav__item > span:after {
  top: 18px;
}

@media print, screen and (min-width: 769px) {
  .header-gnav-second .header-gnav__item {
    display: inline-block;
  }
  .header-gnav-second .header-gnav__item > a, .header-gnav-second .header-gnav__item > span {
    color: #000;
    padding: 5px 0;
  }
}

.header-unav {
  font-family: 'Barlow';
  font-weight: 700;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-unav {
    display: -ms-flexbox;
    display: flex;
  }
}

@media print, screen and (min-width: 769px) {
  .header-unav {
    width: 105px;
    margin-left: auto;
    margin-right: auto;
  }
}

/**
  gnav 開閉用クラス
 */
@media print, screen and (min-width: 769px) {
  .prg-gnav-content {
    position: absolute;
  }
}

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

  #フッタ

 */
.footer {
  position: relative;
  background-color: #000;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer-inner {
    padding: 30px 6.7vw 25px;
  }
}

@media print, screen and (min-width: 769px) {
  .footer-inner {
    padding: 50px 0 50px 60px;
    display: -ms-flexbox;
    display: flex;
  }
}

/**
  footer info
 */
.footer-info {
  color: #808080;
}

.footer-info a {
  color: #808080;
}

@media print, screen and (min-width: 769px) {
  .footer-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
}

.footer-info__logo {
  width: 78px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer-info__logo {
    margin-bottom: 20px;
  }
}

@media print, screen and (min-width: 769px) {
  .footer-info__logo {
    width: 136px;
    margin-right: 35px;
  }
}

.footer-info__info {
  line-height: 1.5;
  font-size: 1.2rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer-info__info {
    margin-bottom: 20px;
  }
}

@media print, screen and (min-width: 769px) {
  .footer-info__info {
    font-size: 1.4rem;
  }
}

/**
  copyright
 */
.footer-sig {
  color: #888888;
  font-size: 1rem;
}

@media print, screen and (min-width: 769px) {
  .footer-sig {
    position: absolute;
    right: 50px;
    bottom: 30px;
  }
}

/**
  pagetop
 */
.footer-pagetop {
  width: 7px;
  position: absolute;
  right: 10px;
  bottom: 182px;
}

.footer-pagetop.is-fixed {
  position: fixed;
  bottom: 0;
}

@media print, screen and (min-width: 769px) {
  .footer-pagetop {
    width: 11px;
    right: 30px;
    bottom: 182px;
  }
}

.footer-pagetop__inner {
  display: block;
  transform: translate3d(0, -15px, 0);
}

@media print, screen and (min-width: 769px) {
  .footer-pagetop__inner {
    transform: translate3d(0, -30px, 0);
  }
}

.list-notes > li {
  text-indent: -1em;
  padding-left: 1em;
}

.list-notes--dot > li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}

.list-decimal {
  counter-reset: number 0;
}

.list-decimal > li {
  position: relative;
  padding-left: 2em;
}

.list-decimal > li:before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: number 1;
  /* number カウンタの増加数をセット */
  content: counter(number);
}

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

	#アコーディオンモジュール

 */
.prg-accr-trigger {
  cursor: pointer;
}

.prg-accr-content {
  display: none;
}

.breadcrumbs {
  background-color: #eaeff4;
}

.breadcrumbs-list {
  padding-top: 10px;
  padding-bottom: 10px;
}

@media print, screen and (min-width: 769px) {
  .breadcrumbs-list {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.breadcrumbs-list > li {
  font-size: 1rem;
  display: inline-block;
}

.breadcrumbs-list > li > a, .breadcrumbs-list > li > span {
  display: inline-block;
  text-decoration: underline;
  line-height: 1.3;
}

.breadcrumbs-list > li:after {
  content: "＞";
  margin-left: 6px;
}

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

@media print, screen and (min-width: 769px) {
  .breadcrumbs-list > li {
    font-size: 1.2rem;
  }
  .breadcrumbs-list > li > a:hover, .breadcrumbs-list > li > span:hover {
    text-decoration: none;
  }
}

.pagenation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 40px;
}

@media print, screen and (min-width: 769px) {
  .pagenation {
    margin-bottom: 40px;
  }
}

.pagenation__prev,
.pagenation__next {
  width: 24px;
  height: 30px;
  margin: 0 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #888;
}

.pagenation__prev.is-disabled,
.pagenation__next.is-disabled {
  pointer-events: none;
  opacity: .2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .pagenation__prev,
  .pagenation__next {
    width: 36px;
    height: 36px;
  }
}

@media print, screen and (min-width: 769px) {
  .pagenation__prev,
  .pagenation__next {
    margin: 0 10px;
    font-size: 1.2rem;
  }
  .pagenation__prev:hover,
  .pagenation__next:hover {
    color: #ED1C24;
  }
}

.pagenation__num {
  width: 30px;
  height: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #888;
  font-weight: bold;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .pagenation__num {
    width: 20px;
    height: 20px;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .pagenation__num {
    width: 30px;
    height: 30px;
  }
}

@media print, screen and (min-width: 769px) {
  .pagenation__num {
    font-size: 1.2rem;
  }
}

.page-numbers.current .pagenation__num {
  color: #ED1C24;
}

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

  #ボタンモジュール
  style設定クラスは > .btn-inner を内包する
  ex)
  <div class="some-btn">
  <p class="btn-style-a">
    <a class="btn-inner" href="hoge">ボタン</a>
  </p>
  </div>

 */
.btn-inner {
  width: 100%;
  display: block;
  cursor: pointer;
}

.btn-style-a {
  display: inline-block;
}

.btn-style-a .btn-inner {
  font-family: 'Barlow';
  font-weight: 700;
  background-color: #000;
  border-radius: 30px;
  height: 25px;
  padding: 0 20px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  letter-spacing: .03em;
  transition-duration: 0.2s;
}

@media print, screen and (min-width: 769px) {
  .btn-style-a .btn-inner {
    font-size: 1.6rem;
  }
  .btn-style-a:hover .btn-inner {
    background-color: #ED1C24;
  }
}

.btn-style-b {
  display: inline-block;
}

.btn-style-b .btn-inner {
  background-color: #4d4d4d;
  display: block;
  padding: 4px 7px;
  color: #fff;
  font-size: 1.4rem;
}

@media print, screen and (min-width: 769px) {
  .btn-style-b .btn-inner {
    transition-duration: 0.2s;
  }
  .btn-style-b:hover .btn-inner {
    background-color: #ED1C24;
  }
}

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

  #見出しモジュール

 */
/* --------------------------------------------------------------------
  # 太字30pt + サブタイトル
 */
.heading1 {
  text-align: center;
  font-size: 2.3rem;
  font-family: 'Barlow';
  font-weight: 700;
  letter-spacing: .03em;
}

@media print, screen and (min-width: 769px) {
  .heading1 {
    font-size: 2.5rem;
  }
}

/* --------------------------------------------------------------------
  # ページ見出し
 */
.heading2 {
  text-align: center;
  font-family: 'Barlow';
  font-weight: 700;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .heading2 {
    border-top: 10px solid #000;
    color: #000;
    margin: 0 10px;
    font-size: 2.3rem;
    padding: 20px 0;
    background-color: #e4e4e4;
  }
}

@media print, screen and (min-width: 769px) {
  .heading2 {
    color: #fff;
    background-color: #000;
    margin-bottom: 25px;
    font-size: 3.5rem;
    padding: 20px 17px;
    line-height: 1;
    display: inline-block;
    margin-left: calc(50% - 540px);
    transform: translateY(-55px);
  }
  .heading2:after {
    content: "";
    display: block;
    position: absolute;
    right: -14px;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 14px 0 0;
    border-color: #808080 transparent transparent transparent;
  }
}

/* --------------------------------------------------------------------
  # 段落見出し
 */
.heading3 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: .16em;
}

.heading3--bordered {
  padding-bottom: 10px;
  border-bottom: 1px solid #4d4d4d;
}

.heading4 {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: .16em;
  border-left: 4px solid #ED1C24;
  padding-left: 10px;
}

/*
mixin
 */
/* --------------------------------------------------------------------
  #フォームボックス
 */
.form-box {
  background-color: #f8f8fb;
  padding: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .form-box {
    padding: 10px;
  }
}

.form-box2 {
  padding: 20px 10px 10px;
  background-color: #eaeff4;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .form-box2 {
    padding: 20px 5px 5px;
  }
}

/* --------------------------------------------------------------------
  #input
 */
input:not([type="radio"]):not([type="file"]):not(.header-search__input),
textarea {
  height: 32px;
  font-size: 1.6rem;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #403F41;
  background: none;
  padding: 0 px;
  /*margin: 0 5px;*/
}

input:not([type="radio"]):not([type="file"]):not(.header-search__input):-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
  font-family: sans-serif;
}

input:not([type="radio"]):not([type="file"]):not(.header-search__input)::placeholder,
textarea::placeholder {
  color: #999;
  font-size: 14px;
  font-family: sans-serif;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  input:not([type="radio"]):not([type="file"]):not(.header-search__input),
  textarea {
    padding: 0 3px;
  }
  input:not([type="radio"]):not([type="file"]):not(.header-search__input):-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #ccc;
    font-size: 1.3rem;
  }
  input:not([type="radio"]):not([type="file"]):not(.header-search__input)::placeholder,
  textarea::placeholder {
    color: #ccc;
    font-size: 1.3rem;
  }
}

input.is-error {
  border: 1px solid #e8503e !important;
}

input {
  width: 100%;
}

input[size="7"] {
  width: 70px;
}

input[size="7"] {
  width: 86px;
}

input[size="10"] {
  width: 100px;
}

input[size="15"] {
  width: 150px;
}

input[size="20"] {
  width: 200px;
}

input[size="25"] {
  width: 250px;
}

input[size="30"] {
  width: 300px;
}

input[size="35"] {
  width: 350px;
}

input[size="40"] {
  width: 400px;
}

input[size="50"] {
  width: 500px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  input[size="5"] {
    width: 50px;
  }
  input[size="7"] {
    width: 50px;
  }
  input[size="10"] {
    width: 65px;
  }
  input[size="15"] {
    width: 120px;
  }
  input[size="20"] {
    width: 180px;
  }
  input[size="25"] {
    width: 220px;
  }
  input[size="30"] {
    width: 100%;
  }
  input[size="35"] {
    width: 100%;
  }
  input[size="40"] {
    width: 100%;
  }
  input[size="50"] {
    width: 100%;
  }
}

textarea {
  padding: 10px;
  width: 100%;
  height: 120px;
}

/* --------------------------------------------------------------------
  #select
 */
.select-wrap {
  position: relative;
  max-width: 350px;
}

.select-wrap:after {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 100%;
  pointer-events: none;
  right: 0;
  top: 0;
  border-radius: 0 50% 50% 0;
  background: url(/assets/img/ic_arrow_down.svg) no-repeat center center/14px auto #aaa;
}

@media print, screen and (min-width: 769px) {
  .select-wrap:after {
    width: 40px;
  }
}

.mw_wp_form_preview .select-wrap:after {
  display: none;
}

select {
  height: 32px;
  width: 100%;
  font-size: 1.3rem;
  letter-spacing: .05em;
  color: #fff;
  background-color: #aaa;
  padding: 0 20px;
}

@media print, screen and (min-width: 769px) {
  select {
    height: 44px;
    font-size: 1.6rem;
  }
}

.select--category {
  width: 180px;
}

@media print, screen and (min-width: 769px) {
  .select--category {
    width: 250px;
  }
}

/* --------------------------------------------------------------------
  #ラジオボタン
 */
label {
  cursor: pointer;
  font-size: 1.3rem;
}

@media print, screen and (min-width: 769px) {
  label {
    font-size: 1.6rem;
  }
}

input[type="radio"] {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  margin: 0 5px;
  border: 2px solid #d9dce3;
  border-radius: 50%;
  margin-right: .3em;
  background: #fff;
  transform: translateY(-0.1em);
}

input[type="radio"]:checked {
  position: relative;
}

input[type="radio"]:checked:before, input[type="radio"]:checked:after {
  position: absolute;
  font-size: 14px;
  left: 1px;
  top: 1px;
  width: 20px;
  height: 20px;
  background: #ED1C24;
  content: "";
  border-radius: 50%;
}

input[type="radio"]:checked:after {
  width: 8px;
  height: 8px;
  left: 7px;
  top: 7px;
  background: #fff;
}

/* --------------------------------------------------------------------
  #チェックボックス
 */
input[type="checkbox"] {
  cursor: pointer;
  vertical-align: middle;
  width: 20px;
  border: 1px solid #ddd;
  margin: 0 8px 0 0;
  background: #f5f5f5;
  padding: 0 !important;
  height: 20px !important;
}

input[type="checkbox"]:checked {
  position: absolute;
}

input[type="checkbox"]:checked:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 3px;
  width: 14px;
  height: 14px;
  background: url(/assets/img/ic_form_check.svg) no-repeat center center/12px 12px #ED1C24;
}

.search-label {
  position: relative;
  line-height: 1.2;
  display: inline-block;
  padding-left: 27px;
  padding-right: 1em;
}

.search-label input {
  position: absolute;
  left: 0;
  top: 0;
}

.table-box {
  background-color: #f8f8fb;
  padding: 20px 10px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-box {
    padding: 20px 5px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-wrap {
    overflow-x: scroll;
  }
}

/* --------------------------------------------------------------------
  #スタイル 1
 */
.table-style-a {
  width: 100%;
}

.table-style-a th, .table-style-a td {
  border-bottom: 1px solid #4d4d4d;
  /*vertical-align: middle;*/
  padding: 20px;
  line-height: 1.5;
  font-size: 1.6rem;
}

.table-style-a th {
  font-weight: bold;
  border-right: 1px solid #4d4d4d;
}

.table-style-a td {
  background-color: #fff;
  border-right: 1px solid #4d4d4d;
}

.table-style-a th:last-child,
.table-style-a td:last-child {
  border-right: none;
}

.table-style-a thead th {
  text-align: center;
  background-color: #DEF3F2;
}

.table-style-a tr:nth-child(2n) th,
.table-style-a tr:nth-child(2n) td {
  background-color: #DEF3F2;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-style-a th, .table-style-a td {
    width: auto;
    padding: 10px;
    font-size: 1.4rem;
  }
  .table-style-a th {
    text-align: left;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .table-style-a {
    table-layout: fixed;
  }
}

.table-style-a--bold th, .table-style-a--bold td {
  font-weight: bold;
}

/* --------------------------------------------------------------------
  #スタイル 2
 */
.table-style-b {
  width: 100%;
  position: relative;
  border-top: 2px solid #4d4d4d;
}

.table-style-b tr {
  background-color: #fff;
}

.table-style-b tbody tr th, .table-style-b tbody tr td {
  background-color: #fff;
}

.table-style-b tbody tr:nth-child(2n-1) th, .table-style-b tbody tr:nth-child(2n-1) td {
  background-color: #f5f5f5;
}

.table-style-b tbody tr th.is-highlight, .table-style-b tbody tr td.is-highlight {
  background-color: #e6f6fe;
}

.table-style-b th.is-current, .table-style-b td.is-current {
  background-color: #347ff6 !important;
}

.table-style-b th.is-current > a, .table-style-b td.is-current > a {
  color: #fff !important;
}

.table-style-b th.is-current .table-unit, .table-style-b td.is-current .table-unit {
  color: #fff !important;
}

.table-style-b tbody tr:nth-child(2n-1) th.is-highlight, .table-style-b tbody tr:nth-child(2n-1) td.is-highlight {
  background-color: #ddecf4;
}

.table-style-b th, .table-style-b td {
  border-bottom: 2px solid #4d4d4d;
  border-right: 2px solid #4d4d4d;
  vertical-align: middle;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0em;
  white-space: nowrap;
}

.table-style-b th {
  font-weight: bold;
  text-align: center;
  padding: 10px 4px 10px 12px;
  position: -webkit-sticky;
  position: sticky;
}

.table-style-b td {
  text-align: left;
  font-size: 2.2rem;
}

.table-style-b td > a {
  display: block;
  padding: 10px 4px 10px 12px;
}

.table-style-b thead th, .table-style-b thead td {
  font-size: 1.4rem;
  font-weight: normal;
  padding: 12px 10px;
  vertical-align: top;
  line-height: 1.3;
  background-color: #fff;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-style-b th {
    position: -webkit-sticky;
    position: sticky;
  }
  .table-style-b thead th:first-of-type {
    position: -webkit-sticky;
    position: sticky;
  }
  .table-style-b tbody th {
    position: -webkit-sticky;
    position: sticky;
    z-index: 2;
  }
  .table-style-b th:first-of-type {
    left: 0;
    z-index: 3;
  }
  .table-style-b th:first-of-type:after {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: -2px;
    background-color: #dcdcdc;
  }
}

/* --------------------------------------------------------------------
  #スタイル 3
 */
.table-style-c {
  width: 100%;
  border-top: 1px solid #4d4d4d;
}

.table-style-c th, .table-style-c td {
  border-bottom: 1px solid #4d4d4d;
  vertical-align: middle;
  padding: 10px;
  line-height: 1.5;
  font-size: 1.6rem;
  border-right: 1px solid #4d4d4d;
}

.table-style-c th:last-child, .table-style-c td:last-child {
  border-right: none;
}

.table-style-c th {
  background: #f8f8fb;
  font-weight: bold;
  text-align: right;
}

.table-style-c thead th {
  text-align: center;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-style-c th, .table-style-c td {
    padding: 6px 3px;
    font-size: 1.4rem;
  }
  .table-style-c thead th {
    font-size: 1.2rem;
  }
}

.table-style-c--narrow th, .table-style-c--narrow td {
  padding: 10px 5px;
}

@media print, screen and (min-width: 769px) {
  .table-style-c--narrow th, .table-style-c--narrow td {
    padding: 13px;
  }
  .table-style-c--narrow th {
    font-size: 1.4rem;
  }
  .table-style-c--narrow td {
    font-size: 1.4rem;
  }
}

/*
  フォーム用レイアウト
 */
.table-style--th-left th {
  text-align: left;
}

/**
  テーブル内　商品＋価格セット
 */
.table-price-set,
.table-price-set2 {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.table-price-set dt, .table-price-set dd,
.table-price-set2 dt,
.table-price-set2 dd {
  line-height: 1.5;
  vertical-align: baseline;
}

.table-price-set dt,
.table-price-set2 dt {
  width: 80%;
  padding-right: 10px;
}

.table-price-set dd,
.table-price-set2 dd {
  font-weight: bold;
  font-size: 1.8rem;
  width: 20%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-price-set dt,
  .table-price-set2 dt {
    width: 75%;
  }
  .table-price-set dd,
  .table-price-set2 dd {
    width: 25%;
    font-size: 1.6rem;
  }
}

.table-price-set2 dd {
  font-weight: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: end;
      align-items: flex-end;
}

.table-row-tax td,
.table-row-tax2 td {
  text-align: right;
  font-weight: bold;
  font-size: 1.8rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-row-tax th,
  .table-row-tax2 th {
    text-align: right;
  }
  .table-row-tax td,
  .table-row-tax2 td {
    font-size: 1.6rem;
  }
}

.table-row-tax2 td {
  font-weight: normal;
}

/**
  「合計」行
 */
.table-row-total,
.table-row-total2 {
  border-top: 2px solid #000;
}

.table-row-total th,
.table-row-total2 th {
  background-color: #eaeff4;
}

.table-row-total td,
.table-row-total2 td {
  text-align: right;
  color: #e8503e;
  font-size: 2.4rem;
  font-weight: bold;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-row-total th,
  .table-row-total2 th {
    text-align: right;
  }
  .table-row-total td,
  .table-row-total2 td {
    font-size: 2.2rem;
  }
}

.table-row-total2 td {
  font-size: 1.8rem;
  color: inherit;
}

/**
  th,td 縦揃え
 */
.table-valign-top {
  vertical-align: top !important;
}

.table-valign-middle {
  vertical-align: middle !important;
}

.table-valign-bottom {
  vertical-align: bottom !important;
}

/**
  テーブルキャプション
 */
.table-caption {
  border-top: 2px solid #333;
  padding: 20px 0;
  background-color: #fff;
  font-size: 1.4rem;
  text-align: center;
}

.table-caption strong {
  font-size: 2.4rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-caption {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
  }
}

.table-yen {
  font-size: 1.4rem;
  display: inline-block;
  vertical-align: baseline;
  margin-right: .3em;
}

.table-unit {
  font-size: 1.2rem;
  color: #666;
  display: inline-block;
  margin-left: 2px;
}

.table-unit2 {
  font-size: 1.4rem;
}

.table-copies {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.table-color {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 10px;
}

.table-color > li {
  width: 20px;
  margin: 0 2px;
}

/*
  テーブルオプション指定用レイアウト
 */
.table-option {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-option {
    display: block;
    min-height: 70px;
  }
}

.table-option__icon {
  width: 102px;
  height: 102px;
  display: block;
  border: 1px solid #dcdcdc;
  background-color: #f8f8fb;
  margin-right: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-option__icon {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.table-option__center {
  width: 45%;
  padding-right: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-option__center {
    width: auto;
    margin-left: 72px;
  }
}

.table-option__2block {
  width: calc(120px + 45%);
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-option__2block {
    width: auto;
  }
}

.table-option__btn {
  width: calc(55% - 120px);
  text-align: right;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-option__btn {
    width: auto;
    margin-top: 15px;
    margin-left: 72px;
  }
}

.table-option__addition {
  color: #e8503e;
  font-weight: bold;
}

@media print, screen and (min-width: 769px) {
  .table-option__addition {
    position: absolute;
    bottom: 5px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-option__addition {
    margin-top: 15px;
  }
}

@media print, screen and (min-width: 769px) {
  .table-option__addition--inline {
    position: relative;
    bottom: auto;
  }
}

/*
  テーブル内住所レイアウト
 */
.table-address {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 630px;
}

.table-address > dt, .table-address > dd {
  margin-bottom: 6px;
}

.table-address > dt {
  width: 120px;
  padding-top: .75em;
}

.table-address > dd {
  width: calc(100% - 120px);
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-address {
    display: block;
  }
  .table-address > dt {
    padding-top: 0;
  }
  .table-address > dt, .table-address > dd {
    width: auto;
    margin-bottom: 7px;
  }
  .table-address > dd {
    margin-bottom: 15px;
  }
}

/*
  テーブル内入力・確認レイアウト
 */
.table-confirm-l {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 630px;
}

.table-confirm-l > dt, .table-confirm-l > dd {
  margin-bottom: 15px;
}

.table-confirm-l > dt:last-child, .table-confirm-l > dd:last-child {
  margin-bottom: 0;
}

.table-confirm-l > dt {
  width: 120px;
  padding-top: .75em;
}

.table-confirm-l > dd {
  width: calc(100% - 120px);
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-confirm-l {
    display: block;
  }
  .table-confirm-l > dt {
    padding-top: 0;
  }
  .table-confirm-l > dt, .table-confirm-l > dd {
    width: auto;
    margin-bottom: 7px;
  }
  .table-confirm-l > dd {
    margin-bottom: 15px;
  }
}

/*
  オプション指定画面 th内にボタンが入るレイアウト
 */
.table-th-button > span {
  display: block;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-th-button {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
}

@media print, screen and (min-width: 769px) {
  .table-th-button > span {
    margin-bottom: 5px;
  }
}

/**
  sp時縦積みテーブル
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-sp-block th, .table-sp-block td {
    display: block;
  }
}

/* --------------------------------------------------------------------
  # SP時項目ごとに見出しが入るパターン
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-mypage--order-history thead,
  .table-mypage--budget-history thead,
  .table-mypage--customer thead,
  .table-mypage--nohinsaki thead {
    display: none;
  }
  .table-mypage--order-history th, .table-mypage--order-history td,
  .table-mypage--budget-history th,
  .table-mypage--budget-history td,
  .table-mypage--customer th,
  .table-mypage--customer td,
  .table-mypage--nohinsaki th,
  .table-mypage--nohinsaki td {
    display: block;
  }
  .table-mypage--order-history td,
  .table-mypage--budget-history td,
  .table-mypage--customer td,
  .table-mypage--nohinsaki td {
    text-align: center;
    border-right: none;
  }
  .table-mypage--order-history tr td:last-child,
  .table-mypage--budget-history tr td:last-child,
  .table-mypage--customer tr td:last-child,
  .table-mypage--nohinsaki tr td:last-child {
    margin-bottom: 20px;
  }
  .table-mypage--order-history tr td:before,
  .table-mypage--budget-history tr td:before,
  .table-mypage--customer tr td:before,
  .table-mypage--nohinsaki tr td:before {
    display: block;
    border-bottom: 1px solid #4d4d4d;
    margin-bottom: 10px;
    width: calc(100% + 10px);
    margin-left: -5px;
    padding-top: 10px;
    margin-top: -10px;
    padding-bottom: 10px;
    text-align: center;
    font-weight: bold;
  }
}

/**
  マイページ　注文履歴テーブル
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-mypage--order-history tr td:nth-child(1):before {
    content: "受付番号";
    background-color: #2f2725;
    color: #fff;
  }
  .table-mypage--order-history tr td:nth-child(n+2):before {
    background-color: #f8f8fb;
    color: #333;
  }
  .table-mypage--order-history tr td:nth-child(2):before {
    content: "注文日付";
  }
  .table-mypage--order-history tr td:nth-child(3) {
    text-align: left;
  }
  .table-mypage--order-history tr td:nth-child(3):before {
    content: "商品名";
  }
  .table-mypage--order-history tr td:nth-child(4):before {
    content: "数量";
  }
  .table-mypage--order-history tr td:nth-child(5):before {
    content: "做業状況";
  }
  .table-mypage--order-history tr td:nth-child(6):before {
    content: "運送会社";
  }
  .table-mypage--order-history tr td:nth-child(7):before {
    content: "追跡番号";
  }
  .table-mypage--order-history tr td:nth-child(8):before {
    content: "操作";
  }
}

/**
  マイページ　見積もり履歴テーブル
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-mypage--budget-history tr td:nth-child(1):before {
    content: "見積番号";
    background-color: #2f2725;
    color: #fff;
  }
  .table-mypage--budget-history tr td:nth-child(n+2):before {
    background-color: #f8f8fb;
    color: #333;
  }
  .table-mypage--budget-history tr td:nth-child(2):before {
    content: "見積日付";
  }
  .table-mypage--budget-history tr td:nth-child(3) {
    text-align: left;
  }
  .table-mypage--budget-history tr td:nth-child(3):before {
    content: "商品名";
  }
  .table-mypage--budget-history tr td:nth-child(4):before {
    content: "数量";
  }
  .table-mypage--budget-history tr td:nth-child(5):before {
    content: "見積詳細(PDF)";
  }
  .table-mypage--budget-history tr td:nth-child(6):before {
    content: "操作";
  }
}

/**
  マイページ　ご注文者情報テーブル
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-mypage--customer tr td:nth-child(1):before {
    content: "ご注文者名";
    background-color: #2f2725;
    color: #fff;
  }
  .table-mypage--customer tr td:nth-child(n+2):before {
    background-color: #f8f8fb;
    color: #333;
  }
  .table-mypage--customer tr td:nth-child(2):before {
    content: "住所";
  }
  .table-mypage--customer tr td:nth-child(2) {
    text-align: left;
  }
  .table-mypage--customer tr td:nth-child(3):before {
    content: "電話番号";
  }
  .table-mypage--customer tr td:nth-child(3) {
    text-align: left;
  }
  .table-mypage--customer tr td:nth-child(4):before {
    content: "操作";
  }
}

/**
  マイページ　ご注文者情報テーブル
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .table-mypage--nohinsaki tr td:nth-child(1):before {
    content: "お届け先名";
    background-color: #2f2725;
    color: #fff;
  }
  .table-mypage--nohinsaki tr td:nth-child(n+2):before {
    background-color: #f8f8fb;
    color: #333;
  }
  .table-mypage--nohinsaki tr td:nth-child(2):before {
    content: "住所";
  }
  .table-mypage--nohinsaki tr td:nth-child(2) {
    text-align: left;
  }
  .table-mypage--nohinsaki tr td:nth-child(3):before {
    content: "電話番号";
  }
  .table-mypage--nohinsaki tr td:nth-child(3) {
    text-align: left;
  }
  .table-mypage--nohinsaki tr td:nth-child(4):before {
    content: "操作";
  }
}

/* --------------------------------------------------------------------
  # タブ
 */
.tab-wrap {
  padding: 20px 9px 6px;
  background-color: #f8f8fb;
}

/* --------------------------------------------------------------------
  # タブボタン
 */
.tab-btns {
  display: -ms-flexbox;
  display: flex;
}

.tab-btn {
  -ms-flex: 1 1 0%;
      flex: 1 1 0%;
  height: 56px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-top: 1px solid #0b0b0b;
  margin-right: 5px;
  cursor: pointer;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}

.tab-btn:last-child {
  margin-right: 0;
}

.tab-btn.is-current {
  border-top: none;
  border-bottom: 1px solid #0b0b0b;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .tab-btn {
    font-size: 1.4rem;
    height: 50px;
  }
}

/* --------------------------------------------------------------------
  # タブボタン　下レイアウト
 */
.tab-wrap--bottom {
  padding: 6px 9px 20px;
}

.tab-wrap--bottom .tab-btn.is-current {
  border-bottom: none;
  border-top: 1px solid #0b0b0b;
}

.tab-btns--bottom .tab-btn {
  border-bottom: 1px solid #0b0b0b;
  border-top: none;
}

/* --------------------------------------------------------------------
  # タブボタン　カラーバリエーション
 */
.tab-btn--blue {
  background-color: #d1e6fc;
}

.tab-btn--beige {
  background-color: #f6eed3;
}

/* --------------------------------------------------------------------
  # タブコンテンツ
 */
.prg-tab-contents {
  display: none;
}

.prg-tab-contents.is-current {
  display: block;
}

/* basic2 */
/* ====================================================================

#ブロック構成のインデックスリンクリスト

*/
.link-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}

.link-list__item {
  position: relative;
  width: 48.5%;
  margin-bottom: 20px;
  margin-right: 3%;
  padding: 4px 4px 10px;
  background-color: #f5f5f5;
}

.link-list__item:before {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 62px 62px 0 0;
  left: 0;
  top: 0;
  border-color: transparent transparent transparent transparent;
}

.link-list__item:after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 10px;
  top: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .link-list__item:nth-child(2n) {
    margin-right: 0;
  }
}

@media print, screen and (min-width: 769px) {
  .link-list__item {
    width: 32%;
    margin-bottom: 20px;
    padding: 6px 6px 20px;
    margin-right: 2%;
  }
  .link-list__item:nth-child(3n) {
    margin-right: 0;
  }
}

.link-list__item .item-pict {
  margin-bottom: 6px;
  overflow: hidden;
}

.link-list__item .item-pict img {
  width: 100%;
  height: 25vw;
  object-fit: cover;
  transition-duration: .2s;
}

@media print, screen and (min-width: 769px) {
  .link-list__item .item-pict {
    margin-bottom: 10px;
  }
  .link-list__item .item-pict img {
    height: 12.4vw;
  }
  .link-list__item .item-pict:hover img {
    transform: scale3d(1.1, 1.1, 1);
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  }
}

@media screen and (min-width: 1480px) {
  .link-list__item .item-pict img {
    height: 182px;
  }
}

.link-list__item .item-title {
  font-weight: bold;
  letter-spacing: .025em;
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 5px;
  text-align: center;
}

@media print, screen and (min-width: 769px) {
  .link-list__item .item-title {
    font-size: 1.6rem;
    margin-bottom: 7px;
  }
}

.link-list__item .item-date {
  letter-spacing: .025em;
  font-size: 1.1rem;
  margin-bottom: 7px;
  text-align: center;
}

@media print, screen and (min-width: 769px) {
  .link-list__item .item-date {
    font-size: 1.3rem;
    margin-bottom: 7px;
  }
}

.link-list__item .item-category {
  letter-spacing: .025em;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 7px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

.link-list__item .item-category > li {
  display: inline-block;
  margin-bottom: 3px;
}

.link-list__item .item-category a {
  display: inline-block;
  padding: 3px 6px;
  margin: 0 .3em;
  color: #fff;
  font-weight: bold;
  background-color: #ED1C24;
}

.link-list__item .item-category a:first-child {
  margin-left: 0;
}

@media print, screen and (min-width: 769px) {
  .link-list__item .item-category {
    font-size: 1.3rem;
    margin-bottom: 7px;
  }
  .link-list__item .item-category > li {
    margin-bottom: 5px;
  }
}

.link-list__item .item-summary {
  font-size: 1rem;
  margin-bottom: 7px;
  line-height: 1.5;
  color: #777;
}

@media print, screen and (min-width: 769px) {
  .link-list__item .item-summary {
    font-size: 1.2rem;
    margin-bottom: 7px;
  }
}

.article {
  word-wrap: break-word;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .article {
    margin: 0 0 60px;
  }
}

@media print, screen and (min-width: 769px) {
  .article {
    margin-bottom: 120px;
  }
}

.article__title {
  margin-bottom: 15px;
  border-bottom: 1px solid #4d4d4d;
  padding-bottom: 10px;
}

@media print, screen and (min-width: 769px) {
  .article__title {
    margin-bottom: 30px;
  }
}

.article-head__date {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

@media print, screen and (min-width: 769px) {
  .article-head__date {
    margin-bottom: 20px;
  }
}

.article-head__heading {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: .05em;
}

@media print, screen and (min-width: 769px) {
  .article-head__heading {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}

.article-head__category {
  font-weight: bold;
  font-size: 1rem;
  color: #ED1C24;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.article-head__category > li a {
  display: inline-block;
  padding: 3px 6px;
  margin: 0 .3em;
  color: #fff;
  font-weight: bold;
  background-color: #ED1C24;
}

.article-head__category > li a:first-child {
  margin-left: 0;
}

@media print, screen and (min-width: 769px) {
  .article-head__category {
    font-size: 1.3rem;
  }
}

.article-main p {
  font-size: 1.4rem;
  margin-bottom: 1.5em;
  line-height: 1.75;
}

.article-main a {
  color: #000;
  text-decoration: underline;
}

.article-main a:hover {
  text-decoration: none;
}

.article-main h1 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2em;
}

@media print, screen and (min-width: 769px) {
  .article-main h1 {
    font-size: 2.2rem;
  }
}

.article-main h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5em;
}

@media print, screen and (min-width: 769px) {
  .article-main h2 {
    font-size: 1.8rem;
  }
}

.article-main h3, .article-main h4, .article-main h5, .article-main h6 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1.5em;
}

@media print, screen and (min-width: 769px) {
  .article-main h3, .article-main h4, .article-main h5, .article-main h6 {
    font-size: 1.6rem;
  }
}

.article-main hr {
  margin: 3em 0;
}

.article-main img {
  display: block;
  margin-bottom: 2em;
}

@media print, screen and (min-width: 769px) {
  .article-main img.is-naturalWidth {
    width: auto;
    height: auto;
  }
}

.article-main img.is-horizontal {
  width: 70%;
}

.article-main img.is-vertical {
  width: 75%;
}

@media print, screen and (min-width: 769px) {
  .article-main img.is-vertical {
    width: 50%;
  }
}

.article-main blockquote {
  background-color: #f6f6f6;
  padding: 1.2em;
  margin-bottom: 2em;
}

.article-main blockquote p {
  font-size: 1.4rem;
}

.article-main blockquote p:last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 769px) {
  .article-main a:hover {
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
  }
}

.addtoany_content {
  position: relative;
  white-space: nowrap;
}

.addtoany_content:before {
  content: "この記事をシェア";
  display: inline-block;
  background: #aaa;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
  padding: 5px 0;
  font-weight: bold;
  width: 110px;
  text-align: center;
  margin-right: 10px;
}

.addtoany_content:after {
  position: absolute;
  content: "";
  display: block;
  left: 110px;
  top: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 8px;
  border-color: transparent transparent transparent #aaa;
}

/* project */
/* ====================================================================

#トップページ

*/
.top-mv {
  position: relative;
  margin-bottom: 40px;
}

@media print, screen and (min-width: 769px) {
  .top-mv {
    margin-bottom: 60px;
  }
}

.top-slide-container {
  height: 53.9vw;
  color: #fff;
  background-color: #000;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (min-width: 769px) {
  .top-slide-container {
    min-width: 840px;
    height: 43vw;
  }
}

.top-mv__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-slide {
  position: relative;
  overflow: hidden;
  height: 53.9vw;
}

@media print, screen and (min-width: 769px) {
  .top-slide {
    height: 43vw;
  }
}

.top-slide__item {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  width: 100%;
}

.top-slide__item.is-active {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.top-slide__item.is-active .item-inner img {
  transition-duration: 10s;
  transform: scale3d(1.1, 1.1, 1);
}

.top-slide__item.is-leave {
  z-index: 10;
}

.top-slide__item.is-leave .item-inner {
  transition-duration: 1s;
  transform: translate3d(-100%, 0, 0);
}

.top-slide__item.is-leave .item-inner .item-inner2 {
  transition-duration: 1s;
  transform: translate3d(100%, 0, 0);
}

.top-slide__item.is-enter {
  z-index: 5;
}

.top-slide__item .item-inner,
.top-slide__item .item-inner2 {
  height: 53.9vw;
  overflow: hidden;
}

.top-slide__item .item-inner img,
.top-slide__item .item-inner2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media print, screen and (min-width: 769px) {
  .top-slide__item .item-inner,
  .top-slide__item .item-inner2 {
    height: 43vw;
  }
}

/* -------------------------------------------------------------------------
	Pickup Room
*/
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-pu {
    margin: 0 25px 60px;
  }
}

@media print, screen and (min-width: 769px) {
  .top-pu {
    width: 1080px;
    margin: 0 auto 180px;
  }
}

.top-pu-block {
  margin-bottom: 40px;
}

@media print, screen and (min-width: 769px) {
  .top-pu-block {
    margin-bottom: 90px;
  }
}

.top-pu__heading {
  font-family: 'Barlow';
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  font-size: 2.4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background-size: auto 20px;
  background-repeat: no-repeat;
  background-position: left 110px center;
}

.top-pu__heading .heading-typo1 {
  font-size: 1.4rem;
  display: block;
  margin-right: 10px;
  line-height: 1;
}

.top-pu__heading .heading-typo2 {
  font-size: 2.5rem;
  line-height: 1;
}

@media print, screen and (min-width: 769px) {
  .top-pu__heading {
    margin-bottom: 26px;
    background-size: auto 28px;
    background-position: left 170px top 9px;
  }
  .top-pu__heading .heading-typo1 {
    font-size: 2.5rem;
    margin-right: 10px;
  }
  .top-pu__heading .heading-typo2 {
    font-size: 4.2rem;
  }
}

.top-pu__heading.room_rank_1 {
  background-image: url(/assets/img/rank1.svg);
}

.top-pu__heading.room_rank_2 {
  background-image: url(/assets/img/rank2.svg);
}

.top-pu__heading.room_rank_3 {
  background-image: url(/assets/img/rank3.svg);
}

.top-pu__heading.room_rank_4 {
  background-image: url(/assets/img/rank4.svg);
}

.top-pu__heading.room_rank_5 {
  background-image: url(/assets/img/rank5.svg);
}

.top-pu__heading.room_rank_6 {
  background-image: url(/assets/img/rank6.svg);
}

.top-pu-container1 {
  position: relative;
}

.top-pu__p-main,
.top-pu__p-sub,
.top-pu__p-sub2 {
  overflow: hidden;
}

.top-pu__p-main img,
.top-pu__p-sub img,
.top-pu__p-sub2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 0.2s;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-pu__p-main {
    margin-bottom: 20px;
  }
}

@media print, screen and (min-width: 769px) {
  .top-pu__p-main {
    width: 61%;
    height: 464px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-pu__p-sub,
  .top-pu__p-sub2 {
    width: 40.5vw;
    height: 22.7vw;
  }
}

@media print, screen and (min-width: 769px) {
  .top-pu__p-sub,
  .top-pu__p-sub2 {
    position: absolute;
    width: 36%;
    height: 47%;
  }
}

@media print, screen and (min-width: 769px) {
  .top-pu__p-sub {
    top: 0;
    right: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-pu__p-sub2 {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

@media print, screen and (min-width: 769px) {
  .top-pu__p-sub2 {
    bottom: 0;
    right: 0;
  }
}

.top-pu-link {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

@media print, screen and (min-width: 769px) {
  .top-pu__heading {
    transition-duration: 0.2s;
  }
  .top-pu-link:hover .top-pu__p-main img,
  .top-pu-link:hover .top-pu__p-sub img,
  .top-pu-link:hover .top-pu__p-sub2 img {
    transform: scale3d(1.1, 1.1, 1);
  }
}

/***********
  anchor
 */
.top__anchor {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}

.top__anchor > li {
  margin-bottom: 10px;
  font-family: 'Barlow';
  font-weight: 700;
}

.top__anchor > li > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  height: 38px;
  padding-right: 15px;
  background: url(../img/ic_down.svg) no-repeat right 10px center/18px auto #000;
}

@media print, screen and (min-width: 769px) {
  .top__anchor {
    margin-bottom: 120px;
    width: 610px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .top__anchor > li {
    width: 165px;
  }
  .top__anchor > li > a {
    font-size: 2.1rem;
    transition-duration: 0.2s;
  }
  .top__anchor > li:hover > a {
    background-color: #ED1C24;
  }
}

.top-section {
  margin-left: 25px;
  margin-right: 25px;
  margin-bottom: 120px;
}

@media print, screen and (min-width: 769px) {
  .top-section {
    width: 840px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 180px;
  }
}

.top-section__heading {
  font-family: 'Barlow';
  font-weight: 700;
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 30px;
}

@media print, screen and (min-width: 769px) {
  .top-section__heading {
    font-size: 2.9rem;
    margin-bottom: 50px;
  }
}

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

.top-section__slide .slide-item {
  width: 100%;
  height: 58vw;
}

.top-section__slide .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media print, screen and (min-width: 769px) {
  .top-section__slide {
    width: 840px;
    margin-bottom: 60px;
  }
  .top-section__slide .slide-item {
    height: 460px;
  }
}

.top-section__images {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -30px;
  margin-bottom: calc(60px - 4%);
}

.top-section__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-section__images > li {
  width: 48%;
  margin-bottom: 4%;
  height: 30vw;
}

@media print, screen and (min-width: 769px) {
  .top-section__images > li {
    height: 300px;
  }
}

.top-section__copy-l {
  text-align: center;
  margin-bottom: 20px;
}

.top-section__copy-l p {
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 1.5em;
  font-size: 1.5rem;
}

.top-section__copy-l p:last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 769px) {
  .top-section__copy-l {
    margin-bottom: 20px;
  }
  .top-section__copy-l p {
    font-size: 1.7rem;
  }
}

.top-section__copy-s {
  text-align: center;
}

.top-section__copy-s p {
  font-weight: bold;
  line-height: 1.75;
  font-size: 1.3rem;
  margin-bottom: 1.5em;
}

.top-section__copy-s p:last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 769px) {
  .top-section__copy-s p {
    font-size: 1.5rem;
  }
}

.top-section__map {
  margin-top: 40px;
}

.top-section__map iframe {
  width: 100%;
  height: 45vw;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /></filter></svg>#filter');
  filter: grayscale(100%);
}

@media print, screen and (min-width: 769px) {
  .top-section__map {
    margin-left: auto;
    margin-right: auto;
    width: 580px;
    margin-top: 80px;
  }
  .top-section__map iframe {
    margin-left: auto;
    margin-right: auto;
    width: 580px;
    height: 234px;
  }
}

.top-section__bar {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 70px;
}

.top-section__bar > a, .top-section__bar > span {
  display: block;
}

@media print, screen and (min-width: 769px) {
  .top-section__bar {
    margin-top: 50px;
    width: 86px;
  }
  .top-section__bar > a, .top-section__bar > span {
    background: url(/assets/img/ic_bar_red.svg) no-repeat center center;
  }
  .top-section__bar > a:after, .top-section__bar > span:after {
    display: none;
  }
  .top-section__bar img {
    transition-duration: 0.2s;
  }
  .top-section__bar:hover img {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.top-section__room {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}

@media print, screen and (min-width: 769px) {
  .top-section__room {
    width: 180px;
    margin-top: 50px;
  }
}

/* -------------------------------------------------------------------------
  hotel information
*/
.hotel-info {
  padding: 20px 0;
  margin: 0 25px;
  /*border-top: 1px solid #000;*/
}

@media print, screen and (min-width: 769px) {
  .hotel-info {
    /*border-top: 2px solid #000;*/
    width: 970px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hotel-info-block {
  position: relative;
}

@media print, screen and (min-width: 769px) {
  .hotel-info-block {
    width: 840px;
    margin-left: auto;
    margin-right: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

@media print, screen and (min-width: 769px) {
  .hotel-info-box1 {
    width: 50%;
  }
}

@media print, screen and (min-width: 769px) {
  .hotel-info-box2 {
    width: 45%;
  }
}

.hotel-info__pict img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .hotel-info__pict {
    margin-bottom: 20px;
    height: 56vw;
  }
}

@media print, screen and (min-width: 769px) {
  .hotel-info__pict {
    width: 416px;
    height: 270px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .hotel-info-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .hotel-info-nav > li .btn-inner {
    font-size: 1.5rem;
    white-space: nowrap;
    padding: 0 15px;
  }
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .hotel-info-nav > li .btn-inner {
    font-size: 1.3rem;
    padding: 0 15px;
  }
}

@media print, screen and (min-width: 769px) {
  .hotel-info-nav {
    position: absolute;
    left: 0;
    top: 300px;
  }
  .hotel-info-nav > li {
    display: inline-block;
  }
  .hotel-info-nav > li:last-child {
    margin-right: 0;
  }
}

.hotel-info__ci {
  width: 80vw;
  margin-bottom: 20px;
}

@media print, screen and (min-width: 769px) {
  .hotel-info__ci {
    width: 100%;
    margin-bottom: 25px;
  }
}

.hotel-info__text1 {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.75;
  letter-spacing: .13em;
  font-size: 1.2rem;
}

@media print, screen and (min-width: 769px) {
  .hotel-info__text1 {
    line-height: 2;
    font-size: 1.2rem;
  }
}

.hotel-info__text {
  margin-bottom: 20px;
}

.hotel-info__text p {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.75;
  letter-spacing: .1em;
  font-size: 1.2rem;
  margin-bottom: 1em;
}

.hotel-info__text p:last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 769px) {
  .hotel-info__text p {
    line-height: 1.75;
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}

.hotel-info__caution {
  font-size: 1.2rem;
  line-height: 1.3;
  background: url(/assets/img/ic_18.png) no-repeat left center/27px auto;
  padding: 10px 0 10px 38px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .hotel-info__caution {
    margin-bottom: 15px;
  }
}

@media print, screen and (min-width: 769px) {
  .hotel-info__caution {
    font-size: 1.2rem;
    padding: 10px 0 10px 40px;
    background: url(/assets/img/ic_18.png) no-repeat left center/32px auto;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .second-mv {
    margin-bottom: 40px;
  }
}

.service-lead {
  background-color: #DEF3F2;
  padding: 20px;
  border-top: 1px solid #4d4d4d;
  margin-bottom: 40px;
}

.service-lead p {
  font-size: 1.4rem;
  margin-bottom: 1.5em;
  line-height: 1.75;
}

@media print, screen and (min-width: 769px) {
  .service-lead {
    margin-bottom: 80px;
  }
}

.service-wrap {
  background-color: #e6e6e6;
  padding: 0 20px 20px;
  margin-bottom: 40px;
}

@media print, screen and (min-width: 769px) {
  .service-wrap {
    border-top: 20px solid #000;
    padding: 45px 65px;
    margin-bottom: 80px;
  }
}

.service-mv {
  position: relative;
}

.service-mv:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #C9EBEA;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .service-mv {
    margin-bottom: 40px;
  }
}

@media print, screen and (min-width: 769px) {
  .service-mv {
    padding-bottom: 120px;
  }
}

.service-mv__pict {
  position: relative;
  z-index: 2;
}

.service-mv__pict .pict-note {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
}

.service-mv__pict img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .service-mv__pict {
    margin-bottom: 20px;
  }
  .service-mv__pict .pict-note {
    text-align: right;
  }
}

@media print, screen and (min-width: 769px) {
  .service-mv__pict {
    width: 522px;
    height: 390px;
  }
}

.service-mv-box {
  position: relative;
  z-index: 2;
  top: 0;
  right: 0;
}

@media print, screen and (min-width: 769px) {
  .service-mv-box {
    width: 352px;
    height: 390px;
    padding-top: 30px;
    position: absolute;
  }
}

.service-mv__heading {
  font-weight: bold;
  display: inline-block;
  padding: 5px 10px 7px;
  font-family: 'Barlow';
  font-weight: 700;
  line-height: 1;
  background-color: #000;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .service-mv__heading {
    display: none;
  }
}

.service-mv__copy p {
  display: inline;
  font-size: 1.4rem;
  margin-bottom: 1.5em;
  line-height: 1.75;
  line-height: 2;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .service-mv__copy {
    margin-bottom: 15px;
  }
  .service-mv__copy p {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 769px) {
  .service-mv__copy p {
    font-weight: bold;
    color: #fff;
    font-size: 1.4rem;
    background: linear-gradient(transparent 0%, #000 0%);
    padding: 8px 4px;
  }
}

.service-mv__business p {
  font-size: 1.4rem;
  margin-bottom: 1.5em;
  line-height: 1.75;
  margin-bottom: 0;
}

@media print, screen and (min-width: 769px) {
  .service-mv__business {
    position: absolute;
    bottom: -4px;
    left: 50px;
  }
}

@media print, screen and (min-width: 769px) {
  .menu-set-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

.menu-set {
  margin-bottom: 60px;
}

@media print, screen and (min-width: 769px) {
  .menu-set {
    margin-bottom: 20px;
  }
}

.menu-set__list {
  padding: 0;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .menu-set__list:nth-child(1) {
    margin: 20px 0 0;
  }
}

@media print, screen and (min-width: 769px) {
  .menu-set__list {
    width: 46%;
    margin: 20px 0;
  }
}

@media print, screen and (min-width: 769px) {
  .menu-set__list--l {
    border-right: 1px solid #4d4d4d;
    width: 50%;
    padding-right: 4%;
  }
}

.menu-set__list > li {
  margin-bottom: 10px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  font-size: 1.4rem;
  line-height: 1.5;
}

.menu-set__list > li p {
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.menu-set__list > li .list-name,
.menu-set__list > li .list-price {
  display: inline-block;
  letter-spacing: 0;
}

.menu-set__list > li .list-name {
  width: calc(100% - 95px);
}

.menu-set__list > li .list-price {
  width: 90px;
  white-space: nowrap;
  line-height: 1.5;
  text-align: right;
}

@media print, screen and (min-width: 769px) {
  .menu-set__list > li {
    margin-bottom: 20px;
  }
  .menu-set__list > li p {
    font-size: 1.6rem;
  }
  .menu-set__list > li .list-name {
    font-size: 1.6rem;
    width: calc(100% - 105px);
  }
  .menu-set__list > li .list-price {
    width: 100px;
    font-size: 1.6rem;
  }
}

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

#部屋一覧

*/
.room-list-container {
  margin-bottom: 40px;
}

@media print, screen and (min-width: 769px) {
  .room-list-container {
    width: 970px;
  }
}

.room-list-block {
  border-bottom: 1px solid #666666;
  background-color: #e6e6e6;
}

.room-list-content {
  padding: 20px 0;
}

@media print, screen and (min-width: 769px) {
  .room-list-content {
    padding: 25px 60px;
  }
}

.room-list-heading {
  position: relative;
  background-color: #000;
  height: 102px;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer;
}

.room-list-heading.is-active:after {
  transform: rotate(180deg);
}

.room-list-heading:after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 10px;
  right: calc(50% - 100px);
  top: 36px;
  transition-duration: .3s;
  background: url(../img/ic_down.svg) no-repeat center center/contain;
}

@media print, screen and (min-width: 769px) {
  .room-list-heading {
    height: 75px;
  }
  .room-list-heading:after {
    width: 30px;
    height: 20px;
    right: 30px;
    top: 27px;
  }
}

.room-list-heading__rank {
  font-family: 'Barlow';
  position: relative;
  display: inline-block;
  text-align: center;
}

.room-list-heading__rank .rank-star1,
.room-list-heading__rank .rank-star2 {
  font-size: 1.6rem;
  display: inline-block;
  margin: 0 2px;
}

.room-list-heading__rank .rank-star1 {
  color: #fff;
}

.room-list-heading__rank .rank-star2 {
  color: #4d4d4d;
}

.room-list-heading__rank .rank-shape,
.room-list-heading__rank .rank-shape2 {
  height: 24px;
  display: inline-block;
}

.room-list-heading__rank .rank-shape img,
.room-list-heading__rank .rank-shape2 img {
  width: auto;
  height: 100%;
}

.room-list-heading__rank .rank-shape2 {
  height: 27px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-list-heading__rank {
    font-size: 2.3rem;
  }
  .room-list-heading__rank .rank-typo {
    display: block;
  }
}

@media print, screen and (min-width: 769px) {
  .room-list-heading__rank {
    font-size: 2rem;
  }
  .room-list-heading__rank .rank-typo {
    margin-right: 15px;
  }
}

/**
  部屋リスト
 */
.room-list {
  margin-bottom: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-list {
    margin: 0 30px;
  }
}

@media print, screen and (min-width: 769px) {
  .room-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
}

.room-list__item {
  text-align: center;
  margin-bottom: 30px;
}

.room-list__item .item-pict {
  overflow: hidden;
}

.room-list__item .item-pict img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 0.2s;
}

.room-list__item .item-title {
  font-size: 1.6rem;
  font-weight: bold;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-list__item .item-pict {
    width: 74.7vw;
    height: 46vw;
    margin: 0 auto 10px;
  }
}

@media print, screen and (min-width: 769px) {
  .room-list__item {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 20px;
  }
  .room-list__item .item-pict {
    height: 182px;
    margin-bottom: 10px;
  }
  .room-list__item:nth-child(3n) {
    margin-right: 0;
  }
  .room-list__item:hover .item-pict img {
    transform: scale3d(1.1, 1.1, 1);
  }
}

/**
  部屋情報
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-list-info--sppadding {
    padding: 0 20px;
  }
}

.room-list-info__table {
  border-top: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  margin-bottom: 60px;
}

.room-list-info__table .table-block1 {
  padding: 10px 0 0;
}

.room-list-info__table .table-block2,
.room-list-info__table .table-block3 {
  padding: 0 0 20px;
}

.room-list-info__table .table-text1 p,
.room-list-info__table .table-text2 p {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 1.5em;
  line-height: 1.75;
}

.room-list-info__table .table-text2 {
  border-left: 3px solid #000;
  padding-left: 6px;
  font-weight: bold;
}

.room-list-info__table .table-day {
  font-size: 1.4rem;
  font-weight: bold;
}

.room-list-info__table .table-price {
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: .1em;
}

.room-list-info__table .table-price-unit {
  font-size: 1.6rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-list-info__table .table-text1 {
    margin-bottom: 15px;
  }
  .room-list-info__table .table-block2,
  .room-list-info__table .table-block3 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  .room-list-info__table .table-block4 {
    padding: 20px 0 0;
  }
  .room-list-info__table .table-day {
    width: 90px;
  }
}

@media print, screen and (min-width: 769px) {
  .room-list-info__table {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
  }
  .room-list-info__table .table-wrap {
    width: 484px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .room-list-info__table .table-day {
    margin-bottom: 30px;
  }
  .room-list-info__table .table-block1,
  .room-list-info__table .table-block2,
  .room-list-info__table .table-block3 {
    padding: 20px 20px 20px 0;
  }
  .room-list-info__table .table-block1 {
    width: 326px;
    border-right: 1px solid #000;
  }
  .room-list-info__table .table-block2 {
    width: 242px;
    padding: 20px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .room-list-info__table .table-block2:nth-child(n+5) {
    border-bottom: none;
  }
  .room-list-info__table .table-block2:nth-child(2n) {
    border-right: none;
  }
  .room-list-info__table .table-block3 {
    width: 242px;
    padding: 20px;
    border-left: 1px solid #000;
  }
  .room-list-info__table .table-block4 {
    padding: 20px 20px 20px 0;
    width: 568px;
  }
}

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

#room

*/
.room-heading {
  position: relative;
  background-color: #000;
  color: #fff;
  height: 102px;
  text-align: center;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-heading {
    padding-top: 14px;
  }
}

@media print, screen and (min-width: 769px) {
  .room-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    height: 75px;
    padding-left: 35px;
  }
}

.room-heading__rank {
  font-family: 'Barlow';
  font-size: 2.3rem;
}

.room-heading__rank .rank-star1,
.room-heading__rank .rank-star2 {
  font-size: 1.6rem;
  display: inline-block;
  margin: 0 2px;
}

.room-heading__rank .rank-star1 {
  color: #fff;
}

.room-heading__rank .rank-star2 {
  color: #4d4d4d;
}

.room-heading__rank .rank-typo {
  margin-right: 6px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-heading__rank {
    margin-bottom: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
  .room-heading__rank .rank-badge img {
    width: auto;
    height: 16px;
  }
}

@media print, screen and (min-width: 769px) {
  .room-heading__rank {
    font-size: 2rem;
  }
  .room-heading__rank .rank-typo {
    margin-right: 15px;
  }
  .room-heading__rank .rank-star1,
  .room-heading__rank .rank-star2 {
    font-size: 2.4rem;
  }
  .room-heading__rank .rank-badge img {
    width: auto;
    height: 24px;
  }
}

.room-heading__text {
  font-family: 'Barlow';
  font-size: 2.5rem;
}

.room-heading__text .text-big {
  font-size: 3.7rem;
}

@media print, screen and (min-width: 769px) {
  .room-heading__text {
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .room-heading__text .text-big {
    display: inline-block;
    margin-left: 5px;
    font-size: 3rem;
  }
}

.room-wrap {
  background-color: #e6e6e6;
  padding: 20px 13px;
  margin-bottom: 40px;
}

@media print, screen and (min-width: 769px) {
  .room-wrap {
    padding: 25px 65px;
    margin-bottom: 80px;
  }
}

/**
  slide
 */
.room-slide {
  position: relative;
  height: 63.4vw;
  margin-bottom: 38vw;
}

@media print, screen and (min-width: 769px) {
  .room-slide {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    height: 442px;
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-slide .swiper-container {
    margin-bottom: 10px;
  }
}

@media print, screen and (min-width: 769px) {
  .room-slide .swiper-container {
    width: 650px;
    margin: 0 !important;
  }
}

.room-slide .swiper-wrapper .swiper-slide {
  background-color: #fff;
}

.room-slide .swiper-wrapper img {
  width: 100%;
  height: 100%;
}

.room-slide .swiper-wrapper img.is-horizontal {
  object-fit: cover;
}

.room-slide .swiper-wrapper img.is-vertical {
  object-fit: contain;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-slide .swiper-wrapper {
    height: 63.4vw;
  }
  .room-slide .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 63.4vw;
  }
}

@media print, screen and (min-width: 769px) {
  .room-slide .swiper-wrapper .swiper-slide {
    width: 650px;
    height: 442px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-slide .slide-thumbs .swiper-wrapper {
    height: 24vw;
    display: -ms-flexbox;
    display: flex;
  }
}

.room-slide .slide-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 0.2s;
}

.room-slide .slide-thumbs img.is-vertical {
  object-fit: cover !important;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-slide .slide-thumbs {
    width: 100%;
    height: 20vw;
    display: -ms-flexbox;
    display: flex;
  }
}

@media print, screen and (min-width: 769px) {
  .room-slide .slide-thumbs {
    width: 168px;
    height: 100%;
  }
}

.room-slide .slide-thumbs__item {
  cursor: pointer;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-slide .slide-thumbs__item {
    width: 31% !important;
    height: 24vw !important;
    margin-right: 3.5%;
  }
  .room-slide .slide-thumbs__item:last-child {
    margin-right: 0;
  }
}

@media print, screen and (min-width: 769px) {
  .room-slide .slide-thumbs__item {
    width: 168px !important;
    height: 135px !important;
    overflow: hidden;
    margin-bottom: 18px;
  }
  .room-slide .slide-thumbs__item:last-child {
    margin-bottom: 0;
  }
  .room-slide .slide-thumbs__item:hover img {
    transform: scale3d(1.1, 1.1, 1);
  }
}

.room-block {
  border-top: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  padding: 10px 0;
}

@media print, screen and (min-width: 769px) {
  .room-block {
    padding: 20px 0;
  }
}

.room-about {
  margin-bottom: 50px;
}

@media print, screen and (min-width: 769px) {
  .room-about {
    margin-bottom: 50px;
  }
}

.room-about-content p {
  font-size: 1.4rem;
  margin-bottom: 1.5em;
  line-height: 1.75;
}

.room-about__view360 .view360-inner {
  display: block;
  line-height: 1.5;
  font-size: 1.2rem;
  color: #4D4D4D;
  background: url(../img/ic_360.png) no-repeat left center/10.7vw auto;
  padding-left: 12vw;
}

@media print, screen and (min-width: 769px) {
  .room-about__view360 .view360-inner {
    background-size: 40px auto;
    padding-left: 50px;
    transition-duration: 0.2s;
  }
  .room-about__view360:hover > a {
    color: #ED1C24;
    background-image: url(../img/ic_360_g.png);
  }
}

.room-facility {
  margin-bottom: 40px;
}

@media print, screen and (min-width: 769px) {
  .room-facility {
    margin-bottom: 60px;
  }
}

.room-facility__heading {
  background-color: #4d4d4d;
  color: #fff;
  font-weight: bold;
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 20px;
}

@media print, screen and (min-width: 769px) {
  .room-facility__heading {
    height: 74px;
    font-size: 2rem;
    letter-spacing: .16em;
  }
}

.room-facility__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .room-facility__list > li {
    width: 31.4%;
    margin-right: 2.9%;
    margin-bottom: 2.9%;
  }
  .room-facility__list > li:nth-child(3n) {
    margin-right: 0;
  }
}

@media print, screen and (min-width: 769px) {
  .room-facility__list > li {
    width: 194px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .room-facility__list > li:nth-child(4n) {
    margin-right: 0;
  }
}

@media print, screen and (min-width: 769px) {
  .room-bottom {
    padding-bottom: 120px;
  }
}

.room-bottom__back {
  padding-left: 35px;
  background: url(../img/ic_back.svg) no-repeat left center/23px 10px;
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 1.6rem;
}

.room-bottom__back .back-inner {
  transition-duration: 0.2s;
  display: block;
}

@media print, screen and (min-width: 769px) {
  .room-bottom__back .back-typo {
    position: relative;
  }
  .room-bottom__back .back-typo:after {
    content: "";
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #000;
    bottom: 1px;
    transition-duration: 0.2s;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 100%;
  }
  .room-bottom__back:hover .back-typo:after {
    transform: scale3d(1, 1, 1);
  }
}

.access-top {
  text-align: center;
  background-color: #000;
  color: #fff;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .access-top {
    background-color: #e6e6e6;
    padding: 0 15px 30px;
  }
  .access-top .access-top-inner {
    padding: 30px 0 30px;
    background-color: #000;
  }
}

@media print, screen and (min-width: 769px) {
  .access-top {
    padding: 30px 0 30px;
  }
}

.access-top__ci {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 148px;
}

.access-top__text {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: bold;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .access-top__text {
    font-size: 1.5rem;
  }
}

.access-top__tel {
  font-size: 2.4rem;
  font-weight: bold;
}

.access-top__tel a {
  color: #fff;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .access-top__tel {
    font-size: 2.2rem;
  }
}

.access-map {
  padding: 20px 0;
  margin-bottom: 40px;
}

@media print, screen and (min-width: 769px) {
  .access-map {
    margin-bottom: 60px;
  }
}

.access-map__map {
  margin-bottom: 10px;
}

.access-map__map iframe {
  width: 100%;
  height: 100vw;
}

@media print, screen and (min-width: 769px) {
  .access-map__map iframe {
    height: 350px;
  }
}

.access-wrap {
  background-color: #e6e6e6;
  padding: 0 15px;
}

@media print, screen and (min-width: 769px) {
  .access-wrap {
    margin-bottom: 80px;
    padding: 55px 65px;
  }
}

.news-content {
  padding: 20px 0;
  border-top: 1px solid #4d4d4d;
}

@media print, screen and (min-width: 769px) {
  .news-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
}

.news-heading__date {
  color: #888;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .05em;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .news-heading__date {
    display: block;
    margin-bottom: 4px;
  }
}

@media print, screen and (min-width: 769px) {
  .news-heading__date {
    width: 130px;
  }
}

.news-heading__text {
  font-size: 2rem;
  font-weight: bold;
}

@media print, screen and (min-width: 769px) {
  .news-heading__text {
    width: calc(100% - 120px);
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .news-index-wrap {
    padding: 20px 14px 0;
    background-color: #e6e6e6;
  }
}

.news-index {
  background-color: #000;
}

.news-index__heading {
  font-family: 'Barlow';
  font-weight: 700;
  font-weight: bold;
  font-size: 3.5rem;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .news-index__heading {
    display: none;
  }
}

.news-index-list {
  padding: 20px;
  background-color: #000;
}

.news-index-list__item {
  margin-bottom: 10px;
}

.news-index-list__item .item-inner {
  color: #fff;
}

.news-index-list__item .item-date,
.news-index-list__item .item-title {
  line-height: 1.3;
  font-size: 1.4rem;
  font-weight: bold;
}

.news-index-list__item .item-date {
  color: #888888;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .news-index-list__item {
    margin-bottom: 15px;
  }
  .news-index-list__item .item-date {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 769px) {
  .news-index-list__item {
    margin-bottom: 10px;
  }
  .news-index-list__item .item-inner {
    display: -ms-flexbox;
    display: flex;
  }
  .news-index-list__item .item-inner:hover .item-date,
  .news-index-list__item .item-inner:hover .item-title {
    color: #ED1C24;
  }
  .news-index-list__item .item-date {
    width: 130px;
  }
  .news-index-list__item .item-title {
    width: calc(100% - 130px);
  }
}

.news-block {
  padding: 20px 0 0 0;
  margin-bottom: 30px;
}

@media print, screen and (min-width: 769px) {
  .news-block {
    padding: 20px 0 0 0;
    margin-bottom: 60px;
  }
}

.news-wrap {
  background-color: #e6e6e6;
  padding: 10px 20px;
}

@media print, screen and (min-width: 769px) {
  .news-wrap {
    padding: 10px 65px 20px;
    margin-bottom: 80px;
  }
}

.contact-block {
  margin-bottom: 40px;
}

@media print, screen and (min-width: 769px) {
  .contact-block {
    margin-bottom: 60px;
  }
}

.contact__tel {
  font-size: 2.4rem;
  font-weight: bold;
}

.contact-required {
  color: #ED1C24;
}

/* --------------------------------------------------------------------
  #layout
 */
.con-intro__text {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

@media print, screen and (min-width: 769px) {
  .con-intro__text {
    margin: 80px 0 60px 0;
    font-size: 1.6rem;
  }
}

@media print, screen and (min-width: 769px) {
  .con-form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media print, screen and (min-width: 769px) {
  .con-form-inner {
    width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

.con-form {
  margin-bottom: 40px;
}

.con-form .error {
  margin: .5em 0 0;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .con-form input {
    width: 100%;
  }
}

.con-form select {
  width: 200px;
}

.con-form .select-wrap {
  width: 200px;
}

.con-form > dt, .con-form > dd {
  position: relative;
  padding: 0 0 .5em 0;
  font-size: 1.6rem;
  line-height: 1.5;
}

.con-form > dt {
  font-weight: bold;
}

.con-form > dt > span {
  display: inline-block;
  padding-left: 8px;
  border-left: 4px solid #ED1C24;
}

.con-form > dt.is-required > span:after {
  content: "*";
  font-size: 1.8rem;
  color: #ED1C24;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .con-form > dt {
    margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 0;
    line-height: 1.3;
    margin-bottom: 10px;
    border-bottom: none;
  }
  .con-form > dd:last-child {
    padding-bottom: 15px;
  }
}

@media print, screen and (min-width: 769px) {
  .con-form {
    margin-bottom: 40px;
  }
  .con-form > dt, .con-form > dd {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .con-form > dt {
    width: 30%;
  }
  .con-form > dd {
    position: relative;
    width: 70%;
  }
}

.con-action-btn-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.con-action-btn,
input.con-action-btn {
  cursor: pointer;
  color: #fff;
  width: 350px;
  border: none !important;
  letter-spacing: .05em;
  background-color: #C7C9CA !important;
  border-radius: 40px;
  transition-duration: 0.2s;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .con-action-btn,
  input.con-action-btn {
    width: 200px;
    font-size: 2rem !important;
    height: 40px !important;
    background-size: 14px auto;
    margin-bottom: 40px;
  }
}

@media print, screen and (min-width: 769px) {
  .con-action-btn,
  input.con-action-btn {
    height: 40px !important;
    font-size: 2rem !important;
  }
  .con-action-btn:hover,
  input.con-action-btn:hover {
    background-color: #ED1C24 !important;
  }
}

.con-action-btn--back {
  background-image: none;
  background-color: #C7C9CA !important;
  width: 150px;
  margin-right: 30px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .con-action-btn--back {
    width: 70px;
    margin-right: 10px;
  }
}

.con-form .error {
  position: absolute;
  right: -30px;
  top: 0;
  display: block;
  background-color: #ff0000;
  font-size: 0 !important;
  width: 24px;
  height: 24px;
  background: url(../img/ic_error.svg) no-repeat center center/contain;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .con-form .error {
    width: 18px;
    height: 18px;
    right: -22px;
  }
}

.mw_wp_form_confirm .con-privacy-check {
  display: none;
}

.mw_wp_form_confirm .con-intro__text {
  display: none;
}

.mw_wp_form_confirm .con-form {
  margin-top: 4em;
}

.mw_wp_form_confirm .con-form dt {
  padding: 0;
}

.mw_wp_form_confirm .con-form dt.is-required:after {
  display: none;
}

.mw_wp_form_confirm .con-form dt, .mw_wp_form_confirm .con-form dd {
  margin-bottom: 30px;
}

.contact-text1 {
  line-height: 0;
  position: absolute;
  top: -20px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .contact-text1 {
    top: -24px;
  }
}

.con-complete-message {
  text-align: center !important;
  margin: 40px 0;
  font-size: 2rem;
  font-weight: bold;
}

@media print, screen and (min-width: 769px) {
  .con-complete-message {
    margin: 80px 0;
  }
}

.contact-confirm__text {
  display: none;
  font-size: 2rem;
  font-weight: bold;
  color: #ED1C24;
}

.mw_wp_form_confirm .non-preview {
  display: none;
}

.mw_wp_form_confirm .contact-confirm__text {
  display: block !important;
}

.contact-index {
  background-color: #e6e6e6;
  border-top: 20px solid #000;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .contact-index {
    display: none;
  }
}

.contact-index__heading {
  font-family: 'Barlow';
  font-weight: 700;
  font-weight: bold;
  font-size: 3.5rem;
  text-align: center;
  padding: 80px 0 40px;
  color: #000;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .contact-index__heading {
    display: none;
  }
}

.contact-wrap {
  background-color: #e6e6e6;
  padding: 10px 20px;
}

@media print, screen and (min-width: 769px) {
  .contact-wrap {
    padding: 10px 65px 20px;
    margin-bottom: 80px;
  }
}

.bar-wrap {
  background-color: #e6e6e6;
  padding: 0 20px 1px;
  margin-bottom: 40px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .bar-wrap {
    border-top: 10px solid #000;
  }
}

@media print, screen and (min-width: 769px) {
  .bar-wrap {
    border-top: 20px solid #000;
    padding: 45px 65px;
    margin-bottom: 80px;
  }
}

.bar__visual01 {
  margin: 0 -20px 30px;
}

@media print, screen and (min-width: 769px) {
  .bar__visual01 {
    margin: -45px -65px 45px;
  }
}

.bar__heading01 {
  font-family: 'Barlow';
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 30px;
}

@media print, screen and (min-width: 769px) {
  .bar__heading01 {
    font-size: 3.5rem;
    margin-bottom: 45px;
  }
}

.bar__content h1 {
  font-size: 1.7rem !important;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .bar__content h1 {
    font-size: 1.6rem !important;
  }
}

.bar__content p {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .bar__content p {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 769px) {
  .bar__content {
    margin-bottom: 80px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .bar__visual02 {
    margin: 0 -20px 40px;
  }
}

@media print, screen and (min-width: 769px) {
  .bar__visual02 {
    margin: 0 -65px 50px;
  }
}

.bar__heading02 {
  font-family: 'Barlow';
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: 20px;
}

@media print, screen and (min-width: 769px) {
  .bar__heading02 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}

.bar-menu {
  margin-bottom: 40px;
}

@media print, screen and (min-width: 769px) {
  .bar-menu {
    margin-bottom: 80px;
  }
}

.bar-menu-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.bar-menu-btn__item {
  margin-right: 38px;
}

.bar-menu-btn__item:last-child {
  margin-right: 0;
}

.bar-menu-btn__item .item-inner {
  font-family: 'Barlow';
  font-weight: 700;
  font-size: 1.8rem;
  display: inline-block;
  padding: 10px 20px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

@media print, screen and (min-width: 769px) {
  .bar-menu-btn__item {
    transition: 0.2s;
  }
  .bar-menu-btn__item:hover {
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
/* ==========================================================================

	#テキストモジュールとユーティリティ

	36　コピー
	27　 H1相当　ページタイトル
	25　 H2相当　コピー・見出しおよびラベル
	24　 H3相当　見出しおよびラベル
	20　コピー・中見出し・ラベル
	18　本文：大・ラベル
	16　本文：中
	14　本文：小を使用しています。
	12　最小（注文など一部のみ）

 */
/* -------------------------------------------------------------------------
	本文指定
*/
.u-txt-ll,
.u-txt-l,
.u-txt,
.u-txt-s,
.u-txt-ss {
  line-height: 1.75;
}

.u-txt-ll {
  font-size: 1.8rem;
  /*@include mq-sp {
		font-size: 1.6rem;
	}*/
}

.u-txt-l {
  font-size: 1.6rem;
  /*@include mq-sp {
		font-size: 1.4rem;
	}*/
}

.u-txt {
  font-size: 1.4rem;
  /*@include mq-sp {
		font-size: 1.2rem;
	}*/
}

.u-txt-s {
  font-size: 1.2rem;
  /*@include mq-sp {
		font-size: 1.2rem;
	}*/
}

.u-txt-ss {
  font-size: 1.1rem;
  /*	@include mq-sp {
		font-size: 1rem;
	}*/
}

.u-color-red {
  color: #ff0000;
}

.u-color-blue {
  color: #007eff;
}

.u-color-pink {
  color: #e4007f;
}

/* -------------------------------------------------------------------------
	ユーティリティmisc
*/
/*一字下げ*/
.u-indent-head {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.u-font-bold {
  font-weight: bold;
}

.u-font-normal {
  font-weight: normal;
}

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

   ユーティリティモジュール

 */
/* -------------------------------------------------------------------------
	画像を100%に/100%を解除
	<img class="u-fit" src="xxx.jpg" />
*/
.u-fit {
  width: 100%;
  height: auto;
}

.u-free {
  width: auto;
}

/* -------------------------------------------------------------------------
	SPのみ、PCのみで改行させる
	<br class="u-spbr" />
	<br class="u-pcbr" />
*/
.u-spbr {
  display: none;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-spbr {
    display: inline;
  }
}

.u-pcbr {
  display: none;
}

@media print, screen and (min-width: 769px) {
  .u-pcbr {
    display: inline;
  }
}

.u-tdbr {
  display: none;
}

@media only screen and (max-width: 768px) {
  .u-tdbr {
    display: inline;
  }
}

/* -------------------------------------------------------------------------
	フロート
*/
@media print, screen and (min-width: 769px) {
  .u-floatL {
    float: left;
  }
}

@media print, screen and (min-width: 769px) {
  .u-floatR {
    float: right;
  }
}

/* -------------------------------------------------------------------------
	position:relative
*/
.u-relative {
  position: relative;
}

/* -------------------------------------------------------------------------
	インラインテキストリンク
*/
.u-textLink:link, .u-textLink:visited {
  text-decoration: underline;
}

@media print, screen and (min-width: 769px) {
  .u-textLink:hover {
    color: #ED1C24;
  }
}

/* -------------------------------------------------------------------------
	縦書きテキスト
*/
.u-vertical-text {
  font-feature-settings: 'pkna';
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-orientation: upright;
  -ms-text-combine-horizontal: all;
}

/* -------------------------------------------------------------------------
	ブロック指定
*/
.u-inlineBlock {
  display: inline-block;
}

.u-block {
  display: block;
}

/* -------------------------------------------------------------------------
	リスト要素のスタイル
*/
.u-listIndent li {
  font-size: 1.6rem;
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.75em;
  margin-bottom: 1.2em;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-listIndent li {
    font-size: 1.1rem;
    margin-bottom: .5em;
  }
}

.u-listDisc li {
  list-style-type: disc;
  margin-bottom: 1em;
  margin-left: 1.2em;
}

/* -------------------------------------------------------------------------
	PCレイアウト時に非表示
*/
.u-sp-only {
  display: none !important;
}

.u-pc-only {
  display: block !important;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-sp-only {
    display: block !important;
  }
  .u-pc-only {
    display: none !important;
  }
}

.u-noWrap {
  white-space: nowrap;
}

@media print, screen and (min-width: 769px) {
  .u-pc-pdng {
    display: inline-block;
    width: 20px;
  }
}

/* ==========================================================================
   Animation
   アニメーション設定用css
   ========================================================================== */
