@charset "UTF-8";
/**************************************************/
/* mixin */
/**************************************************/
/***** font-size ******/
/**例
h1 {
	font-size: rem(24px); // -> 1.5rem
}
**/
/***** clearfix ******/
/***** opacity *****/
/***** placeholder *****/
/*************** 矢印 線タイプ ****************/
/*************** 矢印 線タイプ2重 ****************/
/*************** 矢印 塗りタイプ ****************/
/*************** 吹き出しボックス ****************/
/*************** フロー矢印 ****************/
/* 塗り矢印 */
/* 線矢印 */
/*************** テーブル風リスト ****************/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, select, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

/* html5要素 */
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, dialog, figure, footer, header, time, picture,
hgroup, nav, section {
  display: block;
}

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

fieldset, img {
  border: 0;
  vertical-align: bottom;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr, acronym {
  border: 0;
}

a {
  /*outline:none; アクセシビリティのためoutlineは消してはいけない*/
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*************** フォーム ***************/
:placeholder-shown {
  color: #aaaaaa;
}

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

:-moz-placeholder {
  color: #aaaaaa;
  opacity: 1;
}

::-moz-placeholder {
  color: #aaaaaa;
  opacity: 1;
}

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

button {
  font-family: YakuHanJPs, "Roboto", verdana, "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  vertical-align: middle;
  cursor: pointer;
}

input[type="text"],
input[type="password"],
textarea,
select {
  padding: 10px 5px;
  line-height: 1.4;
  min-height: 46px;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  background: #fafafa;
  color: #111111;
  font-size: 1rem;
  font-family: YakuHanJPs, "Roboto", verdana, "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="text"]:hover,
input[type="password"]:hover,
textarea:hover,
select:hover {
  border-color: #888888;
  background: #ffffff;
  color: #333333;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: #67CBDF;
  background: #ffffff;
  color: #333333;
}

input[type="text"]:disabled,
input[type="password"]:disabled,
textarea:disabled,
select:disabled {
  border-color: #888888;
  background: #EBEBE4;
  color: #777777;
  cursor: not-allowed;
}

input[type="text"],
input[type="password"],
textarea {
  -webkit-appearance: none;
}

input[type="radio"],
input[type="checkbox"] {
  position: relative;
  top: -0.1em;
  margin: 0 5px 0 0;
  vertical-align: middle;
}

select {
  max-width: 100%;
  height: 46px;
}

label {
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.8;
  min-width: 1050px;
  font-size: 1rem;
  font-family: YakuHanJPs, "Roboto", verdana, "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background: #ffffff;
  color: #393939;
  word-wrap: break-word;
  letter-spacing: 1.4px;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
    font-size: 1rem;
    -webkit-text-size-adjust: 100%;
  }
}

[data-whatinput="mouse"] *:focus,
[data-whatinput="touch"] *:focus {
  outline: none;
}

table a {
  word-break: break-all;
}

br {
  letter-spacing: 0;
}

a {
  color: #518f9c;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

a:hover {
  /*マウスをのせたとき*/
  color: #333333;
  text-decoration: underline;
}

a:active {
  /*マウスを押したとき*/
  color: #aaaaaa;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*************** Page Top ***************/
.go-top {
  position: fixed;
  z-index: 100000;
  bottom: 45px;
  right: 45px;
}

@media only screen and (max-width: 767px) {
  .go-top {
    bottom: 75px;
    right: 30px;
  }
}

.go-top a {
  display: block;
  white-space: nowrap;
  position: relative;
  text-align: center;
  text-decoration: none;
  font-size: 0.875rem;
  font-family: "Shippori Mincho", serif;
  color: #777777;
}

.go-top a:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -23px;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border-right: 3px solid #777777;
  border-bottom: 3px solid #777777;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.go-top a:hover {
  text-decoration: none;
}

.sns-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sns-btn-list__item {
  margin-left: 15px;
  line-height: 1;
}

/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0;
  *zoom: 1;
}

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

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  background: #fff;
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}

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

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

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: 0;
  font-family: Arial;
  font-weight: bold;
  color: #666;
}

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

.bx-wrapper .bx-pager.bx-default-pager a {
  display: inline-block;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

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

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev, .bx-wrapper .bx-next {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  line-height: 1;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.bx-wrapper .bx-prev:hover, .bx-wrapper .bx-next:hover {
  color: white;
}

.bx-wrapper .bx-prev {
  left: 3%;
}

.bx-wrapper .bx-prev:before {
  content: "\f060";
}

.bx-wrapper .bx-next {
  right: 3%;
}

.bx-wrapper .bx-next:before {
  content: "\f061";
}

.bx-wrapper .bx-controls-direction a {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 30px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.bx-wrapper .bx-controls-direction a:hover {
  text-decoration: none;
}

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

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

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

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

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

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

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

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

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

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

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

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

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.popup-modal-wrap {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  width: 555px;
  background: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

.c-main-visual-type01-wrap .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type01-wrap .slick-slide {
    display: block;
  }
}

.c-main-visual-type02-wrap.slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

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

.slick-arrow.slick-hidden:before {
  color: #cccccc;
  opacity: 1;
  cursor: default;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

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

/************************ Arrows ************************/
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  z-index: 100;
  display: block;
  width: 65px;
  height: 65px;
  margin-top: -32px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.slick-prev:hover,
.slick-next:hover {
  background: #ffffff;
}

.slick-prev.slick-hidden,
.slick-next.slick-hidden {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -22px;
  width: 35px;
  height: 35px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.slick-prev:before {
  left: 50%;
  margin-left: -4px;
  border-left: 2px solid #cccccc;
  border-top: 2px solid #cccccc;
}

.slick-next:before {
  right: 50%;
  margin-right: -4px;
  border-right: 2px solid #cccccc;
  border-bottom: 2px solid #cccccc;
}

.slick-prev {
  left: -30px;
}

[dir='rtl'] .slick-prev {
  right: -30px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -30px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -30px;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

/*タイプ01*/
.c-main-visual-type01-wrap {
  /* Arrows */
}

.c-main-visual-type01-wrap .slick-prev,
.c-main-visual-type01-wrap .slick-next {
  width: 65px;
  height: 65px;
  margin-top: -32px;
  background: transparent;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type01-wrap .slick-prev,
  .c-main-visual-type01-wrap .slick-next {
    width: 45px;
    height: 45px;
    margin-top: -22px;
  }
}

.c-main-visual-type01-wrap .slick-prev:before,
.c-main-visual-type01-wrap .slick-next:before {
  top: 50%;
  margin-top: -20px;
  width: 35px;
  height: 35px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type01-wrap .slick-prev:before,
  .c-main-visual-type01-wrap .slick-next:before {
    margin-top: -13px;
    width: 25px;
    height: 25px;
  }
}

.c-main-visual-type01-wrap .slick-prev:before {
  left: 50%;
  margin-left: -10px;
  border-left: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
}

.c-main-visual-type01-wrap .slick-next:before {
  right: 50%;
  margin-right: -10px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}

.c-main-visual-type01-wrap .slick-prev {
  left: 15px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type01-wrap .slick-prev {
    left: 15px;
  }
}

.c-main-visual-type01-wrap .slick-next {
  right: 15px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type01-wrap .slick-next {
    right: 15px;
  }
}

/*タイプ02*/
.c-main-visual-type02 {
  /* Arrows */
}

.c-main-visual-type02 .slick-prev,
.c-main-visual-type02 .slick-next {
  width: 65px;
  height: 65px;
  margin-top: -32px;
  background: transparent;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type02 .slick-prev,
  .c-main-visual-type02 .slick-next {
    width: 45px;
    height: 45px;
    margin-top: -22px;
  }
}

.c-main-visual-type02 .slick-prev:before,
.c-main-visual-type02 .slick-next:before {
  top: 50%;
  margin-top: -20px;
  width: 35px;
  height: 35px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type02 .slick-prev:before,
  .c-main-visual-type02 .slick-next:before {
    margin-top: -13px;
    width: 25px;
    height: 25px;
  }
}

.c-main-visual-type02 .slick-prev:before {
  left: 50%;
  margin-left: -10px;
  border-left: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
}

.c-main-visual-type02 .slick-next:before {
  right: 50%;
  margin-right: -10px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}

.c-main-visual-type02 .slick-prev {
  left: 15px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type02 .slick-prev {
    left: 15px;
  }
}

.c-main-visual-type02 .slick-next {
  right: 15px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type02 .slick-next {
    right: 15px;
  }
}

/* メニューページカルーセル */
.menu-list-type01-wrap .slick-prev,
.menu-list-type01-wrap .slick-next {
  display: none !important;
  width: 65px;
  height: 65px;
  margin-top: -32px;
  background: transparent;
}

@media only screen and (max-width: 767px) {
  .menu-list-type01-wrap .slick-prev,
  .menu-list-type01-wrap .slick-next {
    display: inline-block !important;
    width: 45px;
    height: 45px;
    margin-top: -22px;
  }
}

.menu-list-type01-wrap .slick-prev:before,
.menu-list-type01-wrap .slick-next:before {
  top: 50%;
  margin-top: -20px;
  width: 35px;
  height: 35px;
}

@media only screen and (max-width: 767px) {
  .menu-list-type01-wrap .slick-prev:before,
  .menu-list-type01-wrap .slick-next:before {
    margin-top: -13px;
    width: 25px;
    height: 25px;
  }
}

.menu-list-type01-wrap .slick-prev:before {
  left: 50%;
  margin-left: -10px;
  border-left: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
}

.menu-list-type01-wrap .slick-next:before {
  right: 50%;
  margin-right: -10px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}

.menu-list-type01-wrap .slick-prev {
  left: 15px;
}

@media only screen and (max-width: 767px) {
  .menu-list-type01-wrap .slick-prev {
    left: 0;
  }
}

.menu-list-type01-wrap .slick-next {
  right: 15px;
}

@media only screen and (max-width: 767px) {
  .menu-list-type01-wrap .slick-next {
    right: 0;
  }
}

/************************ Dots ************************/
.slick-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: block;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
  font-size: 0;
  display: block;
  padding: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  background: #cbcbcb;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  background: rgba(3, 0, 0, 0.5);
}

.slick-dots li.slick-active button {
  background: rgba(3, 0, 0, 0.5);
}

/* タイプ01 */
.c-main-visual-type01-wrap .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 15px;
  height: 30px;
  line-height: 1;
  width: calc(100% - 30px);
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type01-wrap .slick-dots {
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 30px;
  }
}

@media (min-width: 1360px) {
  .c-main-visual-type01-wrap .slick-dots {
    left: 0;
    width: 100%;
  }
}

.c-main-visual-type01-wrap .slick-dots li {
  display: block;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type01-wrap .slick-dots li {
    margin: 0 5px;
  }
}

.c-main-visual-type01-wrap .slick-dots li button {
  width: 15px;
  height: 15px;
  background: #cccccc;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type01-wrap .slick-dots li button {
    width: 15px;
    height: 15px;
  }
}

.c-main-visual-type01-wrap .slick-dots li button:hover,
.c-main-visual-type01-wrap .slick-dots li button:focus {
  background: #555555;
}

.c-main-visual-type01-wrap .slick-dots li.slick-active button {
  background: #555555;
}

.menu-list-type01-wrap .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 15px;
  height: 20px;
  margin-left: -240px;
  margin-right: -240px;
  width: calc(100% + 480px);
  padding: 0;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .menu-list-type01-wrap .slick-dots {
    bottom: -30px;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    height: 30px;
  }
}

.menu-list-type01-wrap .slick-dots li {
  display: block;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .menu-list-type01-wrap .slick-dots li {
    margin: 0 5px;
  }
}

.menu-list-type01-wrap .slick-dots li button {
  width: 80px;
  height: 6px;
  border-radius: 0;
  background: #cccccc;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media only screen and (max-width: 767px) {
  .menu-list-type01-wrap .slick-dots li button {
    width: 60px;
    height: 15px;
  }
}

.menu-list-type01-wrap .slick-dots li button:hover,
.menu-list-type01-wrap .slick-dots li button:focus {
  background: #555555;
}

.menu-list-type01-wrap .slick-dots li.slick-active button {
  background: #555555;
}

.carousel-box {
  padding: 0 30px;
}

.carousel-list__item {
  margin: 0 5px;
}

@media (max-width: 768px) {
  .carousel-box {
    font-size: 10px;
  }
}

/*************** ヘッダー ***************/
#l-header.is-second {
  background-color: #333333;
}

#l-header.is-client {
  position: fixed;
  width: 100%;
  z-index: 999999;
}

.l-header__copy {
  padding-top: 22px;
  padding-bottom: 3px;
  font-size: 0.75rem;
}

@media only screen and (max-width: 767px) {
  .l-header__copy {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 40px;
    text-align: center;
  }
}

.l-header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .l-header-main {
    display: block;
    height: auto;
    position: relative;
  }
}

.l-header-main__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .l-header-main__logo {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 90px;
  }
  .l-header-main__logo img {
    width: 150px;
  }
  .l-header-main__logo img:hover {
    opacity: 0.8;
  }
}

/*************** ログイン中 ***************/
.l-header-login-now {
  overflow: hidden;
  padding: 3px 0;
  font-size: 0.875rem;
  background: #2b991f;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .l-header-login-now {
    font-size: 0.75rem;
  }
}

.l-header-login-now a {
  color: #ffffff;
  text-decoration: underline;
}

.l-header-login-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .l-header-login-message {
    display: block;
  }
}

.l-header-login-message__btn {
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .l-header-login-message__btn {
    float: right;
  }
}

.l-header-login-message__btn:hover {
  text-decoration: underline;
}

/*************** メインナビ ***************/
.l-main-navi-btn {
  display: none;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 1.4px;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-btn {
    display: block;
    position: absolute;
    top: 30px;
    right: 15px;
    padding: 0;
    border: 0;
    width: 75px;
    background: transparent;
  }
  .l-main-navi-btn img {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  }
}

@media only screen and (max-width: 767px) {
  .l-main-navi-btn.is-second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: static;
    padding: 13px 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #777777;
    color: #ffffff;
    background-color: #333333;
  }
  .l-main-navi-btn.is-second img {
    display: inline;
    margin-left: 5px;
    width: 17px;
  }
}

.l-main-navi {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (max-width: 767px) {
  .l-main-navi {
    margin: 0;
    width: 100%;
  }
}

.l-main-navi .l-container {
  position: relative;
}

.l-main-navi-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  height: 100px;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-wrap {
    display: none;
    position: relative;
    z-index: 1;
    padding-top: 0;
    padding-bottom: 30px;
    height: auto;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (min-width: 768px) {
  .l-main-navi-wrap {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.l-main-navi-wrap.is-second {
  height: 60px;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-wrap.is-second {
    height: auto;
    background-color: #333333;
  }
}

.l-main-navi-wrap.is-style {
  height: auto;
}

.l-main-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 53px;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list {
    display: block;
    margin-top: 0;
    padding-top: 15px;
  }
}

.l-main-navi-list.is-second {
  margin-top: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list.is-second {
    padding-top: 15px;
  }
}

.l-main-navi-list.is-style {
  width: 100%;
}

.l-main-navi-list__item {
  margin-left: 40px;
  text-align: center;
}

.l-main-navi-list__item:first-child {
  margin-left: 0;
}

.l-main-navi-list__item.is-client-navi {
  min-width: 150px;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__item {
    margin-left: 0;
    min-width: 0;
    text-align: left;
  }
}

.l-main-navi-list__item.is-style {
  margin-left: 0;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__item.is-style {
    width: auto;
  }
}

.l-main-navi-list__item.is-style:first-child {
  border-right: 1.5px solid #ffffff;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__item.is-style:first-child {
    border-right: none;
    text-align: center;
  }
}

.l-main-navi-list__item.is-style:first-child .l-main-navi-list__link {
  margin-right: 165px;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__item.is-style:first-child .l-main-navi-list__link {
    margin-right: 0;
  }
}

.l-main-navi-list__item.is-style:last-child {
  border-left: 1.5px solid #ffffff;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__item.is-style:last-child {
    border-left: none;
    text-align: center;
  }
}

.l-main-navi-list__item.is-style:last-child .l-main-navi-list__link {
  margin-left: 165px;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__item.is-style:last-child .l-main-navi-list__link {
    margin-left: 0;
  }
}

.l-main-navi-list__link {
  display: block;
  position: relative;
  font-size: 1rem;
  color: #393939;
  font-family: "Shippori Mincho", serif;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 13px 15px;
  }
}

.l-main-navi-list__link:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #393939;
  z-index: 1;
  -webkit-transition: width 0.28s;
  -o-transition: width 0.28s;
  transition: width 0.28s;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__link:before {
    content: none;
  }
}

.l-main-navi-list__link:hover, .l-main-navi-list__link.is-on {
  color: #393939;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__link:hover, .l-main-navi-list__link.is-on {
    color: #393939;
  }
}

.l-main-navi-list__link:hover:before, .l-main-navi-list__link.is-on:before {
  width: 100%;
}

.l-main-navi-list__link:hover span, .l-main-navi-list__link.is-on span {
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__link:hover span, .l-main-navi-list__link.is-on span {
    border: none;
    background: #eeeeee;
  }
}

.l-main-navi-list__link.is-second {
  display: inline-block;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__link.is-second {
    display: block;
    text-align: center;
  }
}

.l-main-navi-list__link.is-second:before {
  background: #ffffff;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__link.is-second:before {
    content: none;
  }
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__link.is-second span {
    border: none;
  }
}

.l-main-navi-list__link.is-second:hover, .l-main-navi-list__link.is-second.is-on {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__link.is-second:hover, .l-main-navi-list__link.is-second.is-on {
    color: #ffffff;
    text-decoration: none;
  }
}

.l-main-navi-list__link.is-second:hover span, .l-main-navi-list__link.is-second.is-on span {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__link.is-second:hover span, .l-main-navi-list__link.is-second.is-on span {
    border: none;
    background: #777777;
  }
}

.l-main-navi-list__link.is-style {
  margin: 15px 0;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__link.is-style {
    margin: 15px 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__link.is-client {
    font-size: 1.125rem;
  }
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__main {
    padding: 5px 10px;
  }
}

.l-main-navi-list__main.is-pc {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__main.is-pc {
    display: none;
  }
}

.l-main-navi-list__main.is-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__main.is-sp {
    display: inline-block;
  }
}

/*************** お問合せ ***************/
.l-header-contact {
  position: absolute;
  top: -25px;
  right: 0px;
  width: 170px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .l-header-contact {
    position: static;
    margin: 30px auto;
    width: 175px;
  }
}

.l-header-contact__link {
  display: block;
  padding: 5px 0;
  border-radius: 30px;
  background-color: #a7627c;
  border: 1px solid #a7627c;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
}

.l-header-contact__link:hover {
  text-decoration: none;
  background-color: #ffffff;
  color: #a7627c;
}

@media only screen and (max-width: 767px) {
  .l-header-contact__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.75rem;
  }
  .l-header-contact__link:hover {
    text-decoration: none;
  }
  .l-header-contact__link i {
    margin-right: 5px;
  }
}

.l-main-navi-btn-close {
  display: none;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-btn-close {
    display: block;
    margin: 30px auto 0 auto;
    padding: 3px 15px;
    width: 105px;
    border: 1px solid #eeeeee;
    border-radius: 15px;
    background: inherit;
    color: #393939;
    font-size: 0.875rem;
    text-align: center;
  }
  .l-main-navi-btn-close img {
    margin-right: 10px;
    margin-bottom: 2px;
    width: 12px;
  }
}

.l-main-navi-btn-close.is-second {
  color: #ffffff;
}

/*************** サロン様向けページボタン ***************/
.l-header-client {
  position: absolute;
  top: -23px;
  right: 215px;
  width: 210px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .l-header-client {
    position: static;
    margin: 30px auto;
    width: 175px;
  }
}

.l-header-client__link {
  display: block;
  padding: 3px 0;
  border: 1px solid #666666;
  color: #393939;
  font-size: 0.875rem;
}

@media only screen and (max-width: 767px) {
  .l-header-client__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.75rem;
  }
  .l-header-client__link:hover {
    text-decoration: none;
  }
  .l-header-client__link i {
    margin-right: 5px;
  }
}

.l-header-client__link:hover {
  text-decoration: none;
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
}

.l-main-navi-list__btn {
  padding: 0 15px;
  border-radius: 15px;
  border: none;
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  line-height: 30px;
  letter-spacing: 0;
  background-color: #EEEEEE;
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 13px 15px;
    width: 100%;
    color: #ffffff;
    background-color: inherit;
  }
}

.l-main-navi-list__btn i {
  margin-right: 5px;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-list__btn:hover {
    border-radius: 0;
    background-color: #777777;
  }
}

/*************** ハンバーガーメニュー ***************/
@media only screen and (max-width: 767px) {
  .btn-trigger {
    display: inline-block;
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 30px;
    height: 23px;
    cursor: pointer;
  }
  .btn-trigger span {
    display: inline-block;
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #393939;
    border-radius: 4px;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 11px;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .btn-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    -ms-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
  }
  .btn-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .btn-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    -ms-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }
}

/*************** フッター ***************/
#l-footer + iframe {
  display: none;
}

.l-footer-main {
  position: relative;
  padding: 45px 0;
}

@media only screen and (max-width: 767px) {
  .l-footer-main {
    font-size: 0.9375rem;
  }
}

.l-footer-main.is-second {
  border-top: 1px solid #cccccc;
}

@media only screen and (max-width: 767px) {
  .l-footer-main.is-second {
    padding: 45px 0 40px 0;
    border-top: none;
    background-color: #333333;
  }
}

.l-footer-main.is-client {
  padding: 33px 0;
}

@media only screen and (max-width: 767px) {
  .l-footer-main.is-client {
    padding: 45px 0 40px 0;
  }
}

.l-footer-main.is-style {
  padding: 0;
  border-top: none;
  background-color: #EEEEEE;
}

@media only screen and (max-width: 767px) {
  .l-footer-main.is-style {
    padding: 23px 0 0 0;
    background-color: #333333;
  }
}

.l-footer-navi {
  margin-bottom: 30px;
}

.l-footer-navi.is-client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi.is-client {
    display: block;
  }
}

.l-footer-navi.is-style {
  margin-bottom: 0;
}

.l-footer-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list {
    display: block;
  }
}

.l-footer-navi-list.is-second {
  margin-top: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list.is-second {
    padding-top: 15px;
  }
}

.l-footer-navi-list.is-style {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list.is-style {
    padding-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list.is-client {
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 15px;
  }
}

.l-footer-navi-list__item {
  margin-left: 45px;
  min-width: 75px;
  text-align: center;
}

.l-footer-navi-list__item:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__item {
    margin-left: 0;
    min-width: 0;
    text-align: left;
  }
}

.l-footer-navi-list__item.is-client {
  margin-left: 60px;
  width: auto;
  min-width: inherit;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__item.is-client {
    margin-left: 0;
    font-size: 1.125rem;
  }
}

.l-footer-navi-list__item.is-client:first-child {
  margin-left: 0;
}

.l-footer-navi-list__item.is-style {
  margin-left: 0;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__item.is-style {
    width: auto;
  }
}

.l-footer-navi-list__item.is-style:first-child {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__item.is-style:first-child {
    text-align: center;
  }
}

.l-footer-navi-list__item.is-style:first-child .l-footer-navi-list__link {
  margin-right: 165px;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__item.is-style:first-child .l-footer-navi-list__link {
    margin-right: 0;
  }
}

.l-footer-navi-list__item.is-style:last-child {
  border-left: 1.5px solid #bbbbbb;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__item.is-style:last-child {
    border-left: none;
    text-align: center;
  }
}

.l-footer-navi-list__item.is-style:last-child .l-footer-navi-list__link {
  margin-left: 165px;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__item.is-style:last-child .l-footer-navi-list__link {
    margin-left: 0;
  }
}

.l-footer-navi-list__link {
  display: block;
  position: relative;
  font-size: 1rem;
  color: #393939;
  font-family: "Shippori Mincho", serif;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 8px 15px;
  }
}

.l-footer-navi-list__link:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #393939;
  z-index: 1;
  -webkit-transition: width 0.28s;
  -o-transition: width 0.28s;
  transition: width 0.28s;
}

.l-footer-navi-list__link:hover, .l-footer-navi-list__link.is-on {
  color: #393939;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__link:hover, .l-footer-navi-list__link.is-on {
    color: #393939;
  }
}

.l-footer-navi-list__link:hover span, .l-footer-navi-list__link.is-on span {
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__link:hover span, .l-footer-navi-list__link.is-on span {
    background: #eeeeee;
  }
}

.l-footer-navi-list__link:hover:before, .l-footer-navi-list__link.is-on:before {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__link:hover:before, .l-footer-navi-list__link.is-on:before {
    content: none;
  }
}

.l-footer-navi-list__link.is-second {
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__link.is-second {
    color: #ffffff;
  }
}

.l-footer-navi-list__link.is-second:hover, .l-footer-navi-list__link.is-second.is-on {
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__link.is-second:hover, .l-footer-navi-list__link.is-second.is-on {
    color: #ffffff;
    text-decoration: none;
  }
}

.l-footer-navi-list__link.is-second:hover span, .l-footer-navi-list__link.is-second.is-on span {
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__link.is-second:hover span, .l-footer-navi-list__link.is-second.is-on span {
    color: #ffffff;
    background: #777777;
  }
}

.l-footer-navi-list__link.is-style {
  display: inline-block;
  margin: 10px 0;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__link.is-style {
    margin: 12px 0;
  }
}

.l-footer-navi-list__main {
  display: block;
}

@media only screen and (max-width: 767px) {
  .l-footer-navi-list__main {
    padding: 5px 10px;
  }
}

.l-footer-copy {
  display: none;
}

@media only screen and (max-width: 767px) {
  .l-footer-copy {
    display: block;
    margin-bottom: 30px;
    font-size: 0.75rem;
    text-align: center;
  }
}

.l-footer-main-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .l-footer-main-wrap {
    display: block;
  }
}

.l-footer-logo {
  width: 195px;
}

@media only screen and (max-width: 767px) {
  .l-footer-logo {
    margin: 0 auto;
    margin-bottom: 30px;
    width: 150px;
  }
}

.l-footernavi-list__btn {
  padding: 0 15px;
  border-radius: 20px;
  border: none;
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  line-height: 37px;
  letter-spacing: 0;
  background-color: #EEEEEE;
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .l-footernavi-list__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 13px 15px;
    width: 100%;
    color: #ffffff;
    background-color: inherit;
  }
}

.l-footernavi-list__btn i {
  margin-right: 5px;
}

@media only screen and (max-width: 767px) {
  .l-footernavi-list__btn:hover {
    border-radius: 0;
    background-color: #777777;
  }
}

.l-footer-contacts-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .l-footer-contacts-wrap {
    display: block;
  }
}

/*************** CONTACTボタン ***************/
.l-footer-contact {
  margin-left: 30px;
  width: 160px;
  font-size: 1rem;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.l-footer-contact:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

@media only screen and (max-width: 767px) {
  .l-footer-contact {
    margin: 10px auto;
    margin-bottom: 0;
  }
}

.l-footer-contact i {
  margin-right: 10px;
  font-size: 1rem;
}

@media only screen and (max-width: 767px) {
  .l-footer-contact i {
    margin-right: 15px;
  }
}

.l-footer-contact.is-second {
  margin-top: 22px;
}

@media only screen and (max-width: 767px) {
  .l-footer-contact.is-second {
    margin: 30px auto;
  }
}

.l-footer-contact__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 35px;
  border-radius: 23px;
  border: 1px solid #a7627c;
  background: #a7627c;
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
}

.l-footer-contact__link:hover {
  color: #a7627c;
  background: #ffffff;
  text-decoration: none;
}

/*************** サロン様向けページボタン ***************/
.l-footer-client {
  width: 210px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .l-footer-client {
    margin: 30px auto;
    margin-bottom: 0;
    width: 175px;
  }
}

.l-footer-client__link {
  display: block;
  padding: 4px 0;
  border: 1px solid #666666;
  color: #393939;
  font-size: 0.875rem;
}

@media only screen and (max-width: 767px) {
  .l-footer-client__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
    font-size: 0.75rem;
  }
  .l-footer-client__link:hover {
    text-decoration: none;
  }
  .l-footer-client__link i {
    margin-right: 5px;
  }
}

.l-footer-client__link:hover {
  text-decoration: none;
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
}

.l-copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.75rem;
  color: #ffffff;
  background-color: #333333;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .l-copyright {
    font-size: 0.625rem;
    line-height: 20px;
  }
}

/*************** ボトム バナー ***************/
.l-bottom-bnr {
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #f2f2f2;
}

@media only screen and (max-width: 767px) {
  .l-bottom-bnr {
    padding-top: 35px;
    padding-bottom: 25px;
  }
}

.l-bottom-bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

@media only screen and (max-width: 767px) {
  .l-bottom-bnr-list {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

.l-bottom-bnr-list__item {
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .l-bottom-bnr-list__item {
    padding-left: 0;
    padding-right: 0;
    width: auto;
    text-align: center;
  }
}

.l-bottom-bnr-list__img {
  margin-bottom: 5px;
}

.l-bottom-bnr-list__img img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .l-bottom-bnr-list__img img {
    max-width: 330px;
  }
}

/*************** パンくず ***************/
.breadcrumbs {
  padding: 10px 0;
  font-size: 12px;
  border-top: 1px dotted #cccccc;
  border-bottom: 1px dotted #cccccc;
}

@media only screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 7px 0;
    font-size: 10px;
  }
}

.breadcrumbs.is-client {
  padding-top: 70px;
  background-color: #EEEEEE;
}

@media only screen and (max-width: 767px) {
  .breadcrumbs.is-client {
    padding-top: 56px;
  }
}

.breadcrumbs-list__item {
  position: relative;
  display: inline-block;
  margin-right: 25px;
}

@media only screen and (max-width: 767px) {
  .breadcrumbs-list__item {
    margin-top: 3px;
    margin-bottom: 3px;
  }
}

.breadcrumbs-list__item a {
  color: #888888;
}

.breadcrumbs-list__item:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.breadcrumbs-list__item:last-child {
  margin-right: 0;
}

.breadcrumbs-list__item:last-child a {
  color: #393939;
}

.breadcrumbs-list__item:last-child:before {
  content: none;
}

#top .breadcrumbs-list__item:before {
  content: none;
}

/*************** サイド ***************/
.l-side-bnr-list__item {
  margin-bottom: 15px;
}

.l-side-box {
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .l-side-box {
    margin-bottom: 30px;
  }
}

.l-side-ttl {
  margin-bottom: 20px;
  font-size: 15px;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .l-side-ttl {
    margin-bottom: 10px;
  }
}

.l-side-list__item {
  position: relative;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .l-side-list__item {
    margin-bottom: 2px;
  }
}

.l-side-list__link {
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .l-side-list__link {
    display: block;
    padding: 11px 15px;
    background: #fafafa;
    color: #333333;
  }
  .l-side-list__link:hover {
    background: #f0f0f0;
    text-decoration: none;
  }
}

.l-side-list__link:before {
  content: "- ";
}

@media only screen and (max-width: 767px) {
  .l-side-list__link:before {
    content: none;
  }
}

/*************** スタイルガイド サイドナビ ***************/
.c-side-index-list__item {
  margin-bottom: 30px;
}

.c-side-index-list__link {
  display: block;
  padding: 0;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  background: transparent;
}

.c-side-index-sub-list {
  margin-top: 10px;
}

.c-side-index-sub-list__item {
  line-height: 2;
}

.c-side-index-sub-list__link {
  display: block;
}

.c-side-index-sub-list__link.is-current {
  font-weight: bold;
}

/*************** コンテンツレイアウト ***************/
.l-container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (min-width: 768px) {
  .l-container {
    width: 1020px;
    min-width: 320px;
  }
}

.l-container.is-second {
  padding: 0;
}

@media only screen and (min-width: 768px) {
  .l-container.is-second {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.l-container.is-padding {
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (min-width: 768px) {
  .l-container.is-padding {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.l-salon-container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (min-width: 768px) {
  .l-salon-container {
    width: 1230px;
    min-width: 320px;
  }
}

@media (orientation: portrait) {
  .l-main {
    min-height: 800px;
  }
}

@media only screen and (orientation: portrait) and (max-width: 767px) {
  .l-main {
    min-height: inherit;
  }
}

.l-main {
  min-height: 600px;
}

.l-contents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .l-contents-wrap {
    display: block;
  }
}

.l-contents-side {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  width: 165px;
}

@media only screen and (max-width: 767px) {
  .l-contents-side {
    margin-right: 0;
    width: auto;
  }
}

.l-contents-main {
  width: 780px;
}

@media only screen and (max-width: 767px) {
  .l-contents-main {
    width: auto;
  }
}

/***** フルサイズコンテンツ(スタイルガイドページ) *****/
.l-full-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #666666;
  min-width: 1290px;
}

@media only screen and (max-width: 767px) {
  .l-full-container {
    display: block;
    min-width: inherit;
  }
}

.l-full-container__side {
  padding: 30px;
  width: 240px;
  background: #f5f5f5;
}

@media only screen and (max-width: 767px) {
  .l-full-container__side {
    width: auto;
  }
}

.l-full-container__main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 30px;
  padding-top: 30px;
  width: 1050px;
}

@media only screen and (max-width: 767px) {
  .l-full-container__main {
    padding: 0 15px;
    width: auto;
  }
}

/*************** コンテンツ間の余白 ***************/
.l-contents {
  padding-top: 90px;
  padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .l-contents {
    padding-top: 60px;
  }
}

.l-contents.is-bg {
  background: #f2f2f2;
}

.l-contents.is-border {
  border-top: 1px solid #666666;
}

.l-contents .l-contents-box:last-child {
  margin-bottom: 0;
}

.l-contents-box {
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .l-contents-box {
    margin-bottom: 45px;
  }
}

/*********************************************/
/* Components title */
/*********************************************/
.c-ttl-main {
  margin-bottom: 35px;
  line-height: 1.2;
  font-size: 1.875rem;
  color: #333333;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.c-ttl-main span {
  display: block;
  margin-top: 10px;
}

.c-ttl-main.is-left {
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .c-ttl-main {
    font-size: 1.5rem;
  }
}

.c-ttl-main.is-client {
  margin-bottom: 30px;
  font-size: 2.25rem;
}

@media only screen and (max-width: 767px) {
  .c-ttl-main.is-client {
    font-size: 1rem;
  }
}

.c-ttl-sub {
  position: relative;
  margin-bottom: 75px;
  font-size: 1.25rem;
  color: #333333;
  text-align: center;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
}

@media only screen and (max-width: 767px) {
  .c-ttl-sub {
    margin-bottom: 30px;
  }
}

.c-ttl-sub:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  margin-left: -15px;
  width: 30px;
  height: 2px;
  background: #a7627c;
}

@media only screen and (max-width: 767px) {
  .c-ttl-sub:before {
    bottom: -10px;
  }
}

.c-ttl-sub.is-left {
  text-align: left;
}

.c-ttl-sub.is-left:before {
  left: 0;
  margin-left: 0;
}

.c-ttl-sub.is-white {
  color: #ffffff;
}

.c-ttl-sub-s {
  margin-bottom: 30px;
  padding-left: 15px;
  border-left: 2px solid #a7627c;
  font-size: 1rem;
  color: #333333;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
}

@media only screen and (max-width: 767px) {
  .c-ttl-sub-s {
    margin-bottom: 20px;
    padding-left: 15px;
  }
}

.c-ttl-sub-ss {
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #333333;
  line-height: 1.4;
}

.c-lead {
  margin-bottom: 60px;
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  text-align: center;
}

/*********************************************/
/* Components button */
/*********************************************/
.c-btn {
  display: inline-block;
  position: relative;
  padding: 10px 30px;
  border: none;
  border-top: 1px dotted #518f9c;
  border-bottom: 1px dotted #518f9c;
  border-radius: 0px;
  min-width: 180px;
  line-height: 1.4;
  background: transparent;
  color: #518f9c;
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 100ms 0s ease;
  -o-transition: all 100ms 0s ease;
  transition: all 100ms 0s ease;
  position: relative;
}

.c-btn:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #518f9c;
  border-bottom: 1px solid #518f9c;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.c-btn:hover {
  color: #518f9c;
  background-color: #f1f1f1;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.c-btn:hover:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 13px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #518f9c;
  border-bottom: 1px solid #518f9c;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.c-btn.is-client {
  padding: 5px 30px;
  min-width: inherit;
}

.c-btn.is-white {
  background-color: #ffffff;
}

.c-client-btn {
  display: inline-block;
  padding: 10px 15px;
  border-top: 1px dotted #ffffff;
  border-bottom: 1px dotted #ffffff;
  border-radius: 0px;
  min-width: 180px;
  line-height: 1.4;
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.c-client-btn:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}

/***** ボタン 状態 *****/
.c-btn.is-primary {
  border-color: transparent;
  background: #a7627c;
  color: #ffffff;
  position: relative;
}

.c-btn.is-primary:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.c-btn.is-primary.is-no-arrow {
  position: relative;
}

.c-btn.is-primary.is-no-arrow:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: auto;
  left: 0px;
  margin-top: 0px;
  width: 0px;
  height: 0px;
  border-right: 0px solid #696969;
  border-bottom: 0px solid #696969;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.c-btn.is-primary:hover {
  background: rgba(167, 98, 124, 0.9);
  color: #ffffff;
}

.c-btn.is-success {
  border-color: #398439;
  background: #449d44;
  color: #ffffff;
}

.c-btn.is-success:hover {
  background: #398439;
  color: #ffffff;
}

.c-btn.is-link {
  border-color: #a7627c;
  border-width: 1px;
  background: #ffffff;
  color: #a7627c;
  position: relative;
}

.c-btn.is-link:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #a7627c;
  border-bottom: 1px solid #a7627c;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.c-btn.is-link:hover {
  position: relative;
  background: #a7627c;
  color: #ffffff;
}

.c-btn.is-link:hover:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.c-btn.is-disable {
  border-color: #dddddd;
  background: #e5e5e5;
  color: #aaaaaa;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

.c-btn.is-disable:hover {
  margin: 0 2px 2px 0;
}

.c-btn.is-arrow {
  padding-right: 30px;
  position: relative;
}

.c-btn.is-arrow:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.c-btn.is-arrow-bottom {
  padding-right: 30px;
  position: relative;
}

.c-btn.is-arrow-bottom:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.c-btn.is-no-arrow {
  position: relative;
}

.c-btn.is-no-arrow:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: auto;
  left: 0px;
  margin-top: 0px;
  width: 0px;
  height: 0px;
  border-right: 0px solid #696969;
  border-bottom: 0px solid #696969;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.c-btn.is-back {
  position: relative;
}

.c-btn.is-back:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: auto;
  left: 20px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #696969;
  border-bottom: 1px solid #696969;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.c-btn.is-back:hover {
  position: relative;
}

.c-btn.is-back:hover:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: auto;
  left: 20px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #696969;
  border-bottom: 1px solid #696969;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

/***** ボタン サイズ *****/
.c-btn.is-s {
  padding: 4px 5px;
  font-size: 0.75rem;
}

.c-btn.is-m {
  padding: 11px 30px;
}

.c-btn.is-l {
  padding: 15px 30px;
  font-size: 1.125rem;
}

@media only screen and (max-width: 767px) {
  .c-btn.is-l {
    padding: 11px 30px;
    font-size: 1rem;
  }
}

/*********************************************/
/* Components alert */
/*********************************************/
.c-alert {
  padding: 15px;
  border: 1px solid #cccccc;
  border-radius: 5px;
}

.c-alert.is-s {
  padding: 5px 10px;
  font-size: 0.875rem;
}

.c-alert.is-m {
  padding: 15px;
  font-size: 1rem;
}

.c-alert.is-l {
  padding: 15px;
  font-size: 1.3125rem;
}

.c-alert.is-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.c-alert.is-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.c-alert.is-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.c-alert.is-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.c-error {
  margin-top: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  border: 2px solid #ffcfcf;
  background: #fff0f0;
  color: #ff0000;
}

.u-em,
.c-em {
  font-weight: bold;
  color: #ff6600;
}

/*********************************************/
/* Components table */
/*********************************************/
/*** テーブル風リスト 01 ***/
.c-tbl-list-type01 {
  width: 100%;
}

.c-tbl-list-type01__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .c-tbl-list-type01__tr {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.c-tbl-list-type01__tr.is-salon {
  padding-top: 0;
  padding-bottom: 0;
}

.c-tbl-list-type01__th,
.c-tbl-list-type01__td {
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.c-tbl-list-type01__th {
  padding: 5px;
  width: 180px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .c-tbl-list-type01__th {
    padding: 5px;
    width: 90px;
    font-size: 0.75rem;
  }
}

.c-tbl-list-type01__th.is-salon {
  width: 105px;
}

.c-tbl-list-type01__td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 5px 15px 5px 30px;
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .c-tbl-list-type01__td {
    padding: 5px;
    font-size: 0.75rem;
  }
}

.c-tbl-list-type01__td.is-salon {
  padding: 5px;
}

@media only screen and (max-width: 767px) {
  .c-tbl-list-type01__td.is-salon {
    padding: 10px;
  }
}

/*** テーブル風リスト 02 ***/
.c-tbl-list-type02 {
  width: 100%;
}

.c-tbl-list-type02__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #666666;
}

.c-tbl-list-type02__tr:last-child {
  border-bottom: 1px solid #666666;
}

@media only screen and (max-width: 767px) {
  .c-tbl-list-type02__tr {
    display: block;
    margin-bottom: 30px;
    padding-top: 0;
    padding-bottom: 0;
    border-top: 0;
  }
  .c-tbl-list-type02__tr:last-child {
    border-bottom: 0;
  }
}

.c-tbl-list-type02__th,
.c-tbl-list-type02__td {
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.c-tbl-list-type02__th {
  padding: 15px;
  width: 180px;
  border-right: 1px solid #666666;
}

@media only screen and (max-width: 767px) {
  .c-tbl-list-type02__th {
    margin-bottom: 10px;
    padding: 0;
    width: auto;
    border-right: 0;
    color: #000000;
    text-align: left;
  }
}

.c-tbl-list-type02__td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 15px;
}

@media only screen and (max-width: 767px) {
  .c-tbl-list-type02__td {
    padding: 0;
  }
}

/*** ２項目テーブル風リスト ***/
.c-tbl-second-list {
  border-top: 1px dotted #666666;
}

@media only screen and (max-width: 767px) {
  .c-tbl-second-list {
    border-top: 0;
  }
}

.c-tbl-second-list__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px dotted #666666;
}

@media only screen and (max-width: 767px) {
  .c-tbl-second-list__tr {
    border-bottom: none;
  }
}

.c-tbl-second-list__th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  width: 240px;
  background: #777777;
  border-right: 1px solid #666666;
}

@media only screen and (max-width: 767px) {
  .c-tbl-second-list__th {
    display: block;
    padding: 5px 15px;
    width: 100%;
    border-bottom: 0;
    font-size: 0.75rem;
  }
}

.c-tbl-second-list__ttl {
  color: #ffffff;
}

.c-tbl-second-list__td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 15px;
  border-right: 1px solid #666666;
  background: #ffffff;
}

@media only screen and (max-width: 767px) {
  .c-tbl-second-list__td {
    padding: 10px 15px;
    font-size: 0.75rem;
  }
}

.c-tbl-second-list__td.is-02 {
  border-right: 0;
}

/*** 横並びテーブル風リスト ***/
.c-tbl-list-double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .c-tbl-list-double {
    display: block;
  }
}

.c-tbl-list-double__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -1px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px dotted #666666;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .c-tbl-list-double__tr {
    padding-top: 10px;
    padding-bottom: 10px;
    border-left: 0;
    border-right: 0;
    width: auto;
  }
}

.c-tbl-list-double__tr:nth-child(even) {
  border-left: 0;
}

.c-tbl-list-double__th,
.c-tbl-list-double__td {
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.c-tbl-list-double__th {
  padding: 10px 15px;
  width: 120px;
  border-right: 1px solid #666666;
}

@media only screen and (max-width: 767px) {
  .c-tbl-list-double__th {
    padding: 5px 10px;
    width: 90px;
    font-size: 0.75rem;
  }
}

.c-tbl-list-double__td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px 15px;
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .c-tbl-list-double__td {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

/*************** table ***************/
.c-tbl {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .c-tbl {
    font-size: 0.75rem;
  }
}

.c-tbl__th {
  padding: 10px 20px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background: #EEEEEE;
  width: 165px;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .c-tbl__th {
    padding: 5px 10px;
    width: 105px;
  }
}

.c-tbl__td {
  padding: 10px 20px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background: #ffffff;
}

@media only screen and (max-width: 767px) {
  .c-tbl__td {
    padding: 5px 10px;
  }
}

/*********************************************/
/* Components pager */
/*********************************************/
.pager-list {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pager-list__item {
  margin-left: 10px;
  margin-right: 10px;
  width: 45px;
  line-height: 43px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .pager-list__item {
    margin-left: 5px;
    margin-right: 5px;
    width: 40px;
    line-height: 38px;
    font-size: 0.875rem;
  }
}

.pager-list__item span {
  display: block;
  border: 1px solid #518f9c;
  border-radius: 50%;
  background: #518f9c;
  color: #ffffff;
  text-decoration: none;
}

.pager-list__item.pager_omit span {
  border-color: #aaaaaa;
  background: #ffffff;
  color: #393939;
}

.pager-list__link {
  display: block;
  border: 1px solid #518f9c;
  border-radius: 50%;
  background: #ffffff;
  color: #518f9c;
  text-decoration: none;
}

.pager-list__link:hover {
  background: #518f9c;
  color: #ffffff;
  text-decoration: none;
}

/***** ページャー 四角 *****/
.pager.is-square .pager-list__item span {
  border-radius: 0;
}

.pager.is-square .pager-list__link {
  border-radius: 0;
}

/***** ページャー 角丸 *****/
.pager.is-square-r .pager-list__item span {
  border-radius: 5px;
}

.pager.is-square-r .pager-list__link {
  border-radius: 5px;
}

/*********************************************/
/* Components main-visual */
/*********************************************/
/* メインビジュアル */
.c-main-visual-type {
  margin: 0 auto;
  width: 90vw;
  max-height: 720px;
}

@media only screen and (max-width: 1180px) {
  .c-main-visual-type {
    width: auto;
  }
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type {
    margin: 0;
    width: auto;
    max-height: inherit;
  }
}

.c-main-visual-type-wrap-pc {
  display: block;
  max-height: 720px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type-wrap-pc {
    display: none;
  }
}

.c-main-visual-type-wrap-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type-wrap-sp {
    display: block;
  }
}

.main-visual-link {
  position: relative;
}

.c-main-visual-type__img {
  position: relative;
}

.c-main-visual-type__img img {
  width: 100%;
}

.main-visual-link .c-main-visual-type-txt,
.c-main-visual-type__img .c-main-visual-type-txt {
  display: none;
}

.main-visual-link.slick-active .c-main-visual-type-txt,
.c-main-visual-type__img.slick-active .c-main-visual-type-txt {
  display: block;
  position: absolute;
  top: 26%;
  left: 24%;
  padding-right: 18%;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .main-visual-link.slick-active .c-main-visual-type-txt,
  .c-main-visual-type__img.slick-active .c-main-visual-type-txt {
    padding: 0 15px;
    top: 25%;
    left: 0;
    padding-right: 0;
  }
}

.main-visual-link.slick-active .c-main-visual-type-txt .c-main-visual-type-txt__ttl,
.c-main-visual-type__img.slick-active .c-main-visual-type-txt .c-main-visual-type-txt__ttl {
  display: block;
  padding-bottom: 30px;
  font-size: 1.5rem;
  text-shadow: 1px 1px 1px #000000;
  -webkit-animation-name: main-visual-animation1;
  animation-name: main-visual-animation1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@media only screen and (max-width: 767px) {
  .main-visual-link.slick-active .c-main-visual-type-txt .c-main-visual-type-txt__ttl,
  .c-main-visual-type__img.slick-active .c-main-visual-type-txt .c-main-visual-type-txt__ttl {
    padding-bottom: 15px;
    font-size: 1.125rem;
  }
}

.main-visual-link.slick-active .c-main-visual-type-txt .c-main-visual-type-txt__ttl-s,
.c-main-visual-type__img.slick-active .c-main-visual-type-txt .c-main-visual-type-txt__ttl-s {
  display: block;
  font-size: 2.25rem;
  font-weight: bold;
  text-shadow: 1px 1px 1px #000000;
  -webkit-animation-name: main-visual-animation2;
  animation-name: main-visual-animation2;
  -webkit-animation-duration: 3.5s;
  animation-duration: 3.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@media only screen and (max-width: 767px) {
  .main-visual-link.slick-active .c-main-visual-type-txt .c-main-visual-type-txt__ttl-s,
  .c-main-visual-type__img.slick-active .c-main-visual-type-txt .c-main-visual-type-txt__ttl-s {
    font-size: 1.375rem;
  }
}

@-webkit-keyframes main-visual-animation1 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes main-visual-animation1 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes main-visual-animation2 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes main-visual-animation2 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.js-top-main-visual .slick-prev {
  left: -75px;
}

.js-top-main-visual .slick-next {
  right: -75px;
}

/****** 以下過去に使用していたキーヴィジュアルのスタイル ******/
/****** メインビジュアル 02 ******/
.c-main-visual-type02 {
  position: relative;
  height: 600px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type02 {
    height: auto;
    min-height: 330px;
  }
}

.c-main-visual-type02-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 600px;
  background: url(../images/main-visual-01.jpg) no-repeat center center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type02-wrap {
    padding: 30px;
    height: auto;
    min-height: 330px;
    background-size: cover;
  }
}

.c-main-visual-type02__ttl {
  margin-bottom: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.8;
}

.c-main-visual-type02__ttl a {
  color: #ffffff;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type02__ttl {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
}

.c-main-visual-type02__ttl-s {
  display: block;
  margin-bottom: 20px;
  font-size: 1.375rem;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type02__ttl-s {
    margin-bottom: 15px;
    font-size: 1.125rem;
  }
}

.c-main-visual-type02__body {
  line-height: 1.8;
}

.c-main-visual-type02 .c-main-visual-type02-wrap:not(:first-child) {
  display: none;
}

.c-main-visual-type02.slick-initialized .c-main-visual-type02-wrap:not(:first-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/****** メインビジュアル 03 ******/
.c-main-visual-type03 {
  margin-left: auto;
  margin-right: auto;
  width: 990px;
}

@media (min-width: 1260px) {
  .c-main-visual-type03 {
    width: 1500px;
  }
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type03 {
    width: auto;
  }
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type03 .slick-prev {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type03 .slick-next {
    display: none !important;
  }
}

.c-main-visual-type03__img {
  position: relative;
}

.c-main-visual-type03-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 0px;
  width: 990px;
  height: 100%;
  padding: 30px 75px;
  color: #ffffff;
}

@media (min-width: 1360px) {
  .c-main-visual-type03-txt {
    width: 1200px;
    padding: 0 135px;
  }
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type03-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 15px 30px;
    text-align: center;
  }
}

.c-main-visual-type03-txt__ttl {
  margin-bottom: 30px;
  font-size: 2.25rem;
  font-weight: bold;
}

.c-main-visual-type03-txt__ttl a {
  color: #ffffff;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type03-txt__ttl {
    width: 100%;
    margin-bottom: 0px;
    font-size: 3vw;
    text-align: left;
  }
}

.c-main-visual-type03-txt__ttl-s {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: normal;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type03-txt__ttl-s {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 4vw;
  }
}

.c-main-visual-type03-txt__body {
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type03-txt__body {
    display: none;
    padding-bottom: 0;
    text-align: left;
  }
}

.c-main-visual-type03-wrap .c-main-visual-type03__img:not(:first-child) {
  display: none;
}

.c-main-visual-type03-wrap.slick-initialized .c-main-visual-type03__img:not(:first-child) {
  display: block;
}

/****** メインビジュアル 04 ******/
.c-main-visual-type04 {
  position: relative;
  height: 600px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type04 {
    height: auto;
    min-height: 330px;
  }
}

.c-main-visual-type04-wrap {
  position: relative;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type04-wrap {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    padding: 60px 0 30px 0;
    height: auto;
    min-height: 330px;
    background-size: cover;
  }
}

.c-main-visual-type04-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.c-main-visual-type04-wrap .l-container {
  z-index: 10;
}

.c-main-visual-type04-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 600px;
}

.c-main-visual-type04__ttl {
  margin-bottom: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.8;
}

.c-main-visual-type04__ttl a {
  color: #ffffff;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type04__ttl {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
}

.c-main-visual-type04__ttl-s {
  display: block;
  margin-bottom: 20px;
  font-size: 1.375rem;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type04__ttl-s {
    margin-bottom: 15px;
    font-size: 1.125rem;
  }
}

.c-main-visual-type04__body {
  line-height: 1.8;
}

.c-main-visual-type04__bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  will-change: transform;
}

.c-main-visual-type04__bg.is-slick-zoom {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  /*
		transform: matrix3d(
			1, 0, 0, 0,
			0, 1, 0, 0,
			0, 0, 1, 0,
			0, 0, 0, 0.9
		);
		*/
}

.slick-active .is-slick-zoom {
  -webkit-animation-name: bg-zoom;
  animation-name: bg-zoom;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  /*
		transform: matrix3d(
			1, 0, 0, 0,
			0, 1, 0, 0,
			0, 0, 1, 0,
			0, 0, 0, 1
		);
		*/
}

@-webkit-keyframes bg-zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes bg-zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.c-main-visual-type04 .c-main-visual-type04-wrap:not(:first-child) {
  display: none !important;
}

.c-main-visual-type04.slick-initialized .c-main-visual-type04-wrap:not(:first-child) {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/****** メインビジュアル 05 ******/
.c-main-visual-type05 .slick-prev {
  display: none !important;
}

.c-main-visual-type05 .slick-next {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type05 img {
    height: 200px;
  }
}

.c-main-visual-type05-wrap .c-main-visual-type05__img:not(:first-child) {
  display: none;
}

.c-main-visual-type05-wrap.slick-initialized .c-main-visual-type05__img:not(:first-child) {
  display: block;
}

/***** メインビジュアル ページャー *****/
.c-main-visual-type01-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6px 0;
  background: #ffffff;
}

.c-main-visual-type01-list__item {
  margin-left: 10px;
  margin-right: 10px;
  width: 80px;
  line-height: 1;
  height: 6px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-type01-list__item {
    margin-left: 5px;
    margin-right: 5px;
    width: 50px;
  }
}

.c-main-visual-type01-list__btn {
  white-space: nowrap;
  text-indent: -99999px;
  overflow: hidden;
  padding: 0;
  border: 0;
  width: 100%;
  height: 6px;
  background: #666666;
  vertical-align: top;
  -webkit-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.c-main-visual-type01-list__btn.is-on {
  background: #888888;
}

.c-main-visual-type01-list__btn:hover {
  background: #888888;
}

/***** メインビジュアル コントロール *****/
.c-main-visual-control__item {
  position: absolute;
  top: 50%;
}

.c-main-visual-control__item.is-prev {
  left: 15px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-control__item.is-prev {
    left: 10px;
  }
}

.c-main-visual-control__item.is-next {
  right: 15px;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-control__item.is-next {
    right: 10px;
  }
}

.c-main-visual-control__btn {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
  position: relative;
  width: 65px;
  height: 65px;
  border: 0;
  background: transparent;
}

@media only screen and (max-width: 767px) {
  .c-main-visual-control__btn {
    width: 45px;
    height: 45px;
  }
}

.c-main-visual-control__btn:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -7px;
  width: 40px;
  height: 40px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media only screen and (max-width: 767px) {
  .c-main-visual-control__btn:before {
    margin-top: -13px;
    margin-left: -7px;
    width: 25px;
    height: 25px;
  }
}

.c-main-visual-control__btn.is-next:before {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: -7px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*********************************************/
/* Components card */
/*********************************************/
/* カードリスト 1 */
.c-card-list-type01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -22px;
  margin-right: -22px;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type01 {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.c-card-list-type01__item {
  padding-left: 22px;
  padding-right: 22px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type01__item {
    margin-top: -30px;
    padding-left: 0px;
    padding-right: 0px;
    width: auto;
  }
  .c-card-list-type01__item:first-child {
    margin-top: 0;
  }
}

.c-card-list-type01__link {
  display: block;
  position: relative;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-card-list-type01__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.c-card-list-type01__link:hover {
  text-decoration: none;
}

.c-card-list-type01-txt {
  position: relative;
  top: -75px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 15px;
  background: #EEEEEE;
}

.c-card-list-type01-txt:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 0px;
  height: 0px;
  border: solid transparent;
  border-right-color: #a7627c;
  border-bottom-color: #a7627c;
  border-width: 7px;
}

.c-card-list-type01-txt__ttl {
  margin-bottom: 15px;
  color: #000000;
}

.c-card-list-type01-txt__body {
  color: #393939;
}

/* カードリスト 2 */
.c-card-list-type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -22px;
  margin-right: -22px;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type02 {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.c-card-list-type02__item {
  margin-bottom: 60px;
  padding-left: 22px;
  padding-right: 22px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type02__item {
    margin-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
    width: auto;
  }
}

.c-card-list-type02__link {
  display: block;
  position: relative;
  padding: 30px 20px 20px 20px;
  border-radius: 30px;
  background: #eeeeee;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-card-list-type02__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.c-card-list-type02__link:hover {
  text-decoration: none;
}

.c-card-list-type02__link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -37%;
  width: 75%;
  height: 2px;
  background: #a7627c;
}

.c-card-list-type02__ttl {
  margin-bottom: 15px;
  font-size: 1.125rem;
  color: #000000;
}

.c-card-list-type02__img {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
}

.c-card-list-type02__body {
  color: #393939;
}

/* カードリスト 3 */
.c-card-list-type03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type03 {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.c-card-list-type03__item {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 50px;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type03__item {
    padding-left: 0px;
    padding-right: 0px;
    width: auto;
  }
  .c-card-list-type03__item:last-child {
    margin-bottom: 0;
  }
}

.c-card-list-type03-wrap {
  position: relative;
  margin-bottom: 10px;
}

.c-card-list-type03__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type03__ttl {
    font-size: 1.125rem;
  }
}

.c-card-list-type03__body {
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type03__body {
    font-size: 1rem;
  }
}

/* カードリスト 4 */
.c-card-list-type04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type04 {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.c-card-list-type04__item {
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type04__item {
    margin-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
    width: auto;
  }
}

.c-card-list-type04__link {
  overflow: hidden;
  display: block;
  border: 1px solid #666666;
  border-radius: 5px;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-card-list-type04__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.c-card-list-type04__link:hover {
  text-decoration: none;
}

.c-card-list-type04__txt {
  padding: 15px;
}

.c-card-list-type04__ttl {
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #000000;
}

.c-card-list-type04__body {
  color: #393939;
}

/* カードリスト 5 */
.c-card-list-type05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type05 {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.c-card-list-type05__item {
  margin-top: -1px;
  margin-left: -1px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .c-card-list-type05__item {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 15px;
    width: auto;
  }
}

.c-card-list-type05__link {
  display: block;
  border: 1px solid #666666;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-card-list-type05__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.c-card-list-type05__link:hover {
  text-decoration: none;
}

.c-card-list-type05__txt {
  padding: 25px 15px 45px 15px;
}

.c-card-list-type05__ttl {
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #000000;
}

.c-card-list-type05__body {
  color: #393939;
}

/**********  **********/
.c-tile-list {
  -webkit-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 0;
  column-gap: 0;
  margin-left: -5px;
  margin-right: -5px;
}

@media only screen and (max-width: 767px) {
  .c-tile-list {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

.c-tile-list__item {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  padding: 5px;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/*********************************************/
/* Components */
/*********************************************/
/*************** 各ページスタイル ***************/
.client-furisode {
  background: #555555;
}

.client-hakama {
  background: #555555;
}

.style {
  background: #ffffff;
}

.style-furisode {
  background: #ffffff;
}

.style-hakama {
  background: #ffffff;
}

.client-bg {
  color: #ffffff;
}

/*************** カテゴリーリスト ***************/
/* カテゴリーリスト 1 */
.c-category-list-type01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
}

@media only screen and (max-width: 767px) {
  .c-category-list-type01 {
    margin-left: -5px;
    margin-right: -5px;
  }
}

.c-category-list-type01.is-bottom {
  margin-bottom: 25px;
}

.c-category-list-type01__item {
  margin-bottom: 35px;
  padding-left: 7px;
  padding-right: 7px;
  width: 25%;
}

@media only screen and (max-width: 767px) {
  .c-category-list-type01__item {
    margin-bottom: 40px;
    padding-left: 5px;
    padding-right: 5px;
    width: 50%;
  }
}

.c-category-list-type01__link {
  display: block;
}

.c-category-list-type01__link img {
  width: 100%;
}

.c-category-list-type01__img {
  -o-object-position: 50% top;
  object-position: 50% top;
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
  -webkit-transition: -webkit-filter 0.5s ease;
  transition: -webkit-filter 0.5s ease;
  -o-transition: filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
}

.c-category-list-type01__img:hover {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}

.c-category-list-type01__ttl {
  padding-left: 10px;
  margin-bottom: 10px;
  border-left: 4px solid #ffffff;
  color: #393939;
  font-family: "Shippori Mincho", serif;
}

.c-category-list-type01__ttl.client-bg {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .c-category-list-type01__ttl {
    font-size: 0.875rem;
  }
}

.c-category-list-type01__body {
  padding: 15px;
  border-left: 1px solid #666666;
  border-right: 1px solid #666666;
  border-bottom: 1px solid #666666;
  background: #ffffff;
}

/* クライアントページ用 1 */
.c-category-list-client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
}

@media only screen and (max-width: 767px) {
  .c-category-list-client {
    margin-left: -5px;
    margin-right: -5px;
  }
}

.c-category-list-client.is-bottom {
  margin-bottom: 25px;
}

.c-category-list-client__item {
  margin-bottom: 35px;
  padding-left: 7px;
  padding-right: 7px;
  width: 25%;
}

@media only screen and (max-width: 767px) {
  .c-category-list-client__item {
    margin-bottom: 40px;
    padding-left: 5px;
    padding-right: 5px;
    width: 50%;
  }
}

.c-category-list-client__link {
  display: block;
}

.c-category-list-client__link img {
  width: 100%;
}

.c-category-list-client__img {
  -o-object-position: 50% top;
  object-position: 50% top;
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
  -webkit-transition: -webkit-filter 0.5s ease;
  transition: -webkit-filter 0.5s ease;
  -o-transition: filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
}

.c-category-list-client__img:hover {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}

.c-category-list-client__ttl {
  padding-left: 10px;
  margin-bottom: 10px;
  border-left: 4px solid #ffffff;
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
}

@media only screen and (max-width: 767px) {
  .c-category-list-client__ttl {
    font-size: 0.875rem;
  }
}

.c-category-list-client__body {
  padding: 15px;
  border-left: 1px dotted #666666;
  border-right: 1px dotted #666666;
  border-bottom: 1px dotted #666666;
  background: #ffffff;
}

/* カテゴリーリスト 2 */
.c-category-list-type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

@media only screen and (max-width: 767px) {
  .c-category-list-type02 {
    display: block;
  }
}

.c-category-list-type02__item {
  margin-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .c-category-list-type02__item {
    margin-bottom: 30px;
    width: auto;
  }
}

.c-category-list-type02__link {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-category-list-type02__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.c-category-list-type02__img {
  position: relative;
  margin-bottom: 10px;
}

.c-category-list-type02__ttl {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 1.875rem;
  background: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 767px) {
  .c-category-list-type02__ttl {
    font-size: 1.125rem;
  }
}

/* カテゴリーリスト 3 */
.c-category-list-type03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

@media only screen and (max-width: 767px) {
  .c-category-list-type03 {
    display: block;
  }
}

.c-category-list-type03__img img {
  width: 100%;
}

.c-category-list-type03__item {
  margin-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .c-category-list-type03__item {
    margin-bottom: 30px;
    width: auto;
  }
}

.c-category-list-type03__link {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-category-list-type03__link:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.c-category-list-type03__link:hover {
  text-decoration: none;
}

.c-category-list-type03-txt {
  position: relative;
  padding: 30px 15px;
}

.c-category-list-type03-txt__ttl {
  position: relative;
  top: -20px;
  margin-bottom: -10px;
  font-size: 1.125rem;
  color: #393939;
}

.c-category-list-type03-txt__ttl.is-client-f {
  color: #ffffff;
}

.c-category-list-type03-txt__category {
  position: absolute;
  top: 15px;
  right: -1px;
  padding: 0px 10px;
  border-left: 4px solid #ffffff;
  color: #393939;
  font-size: 0.75rem;
  text-align: center;
}

.c-category-list-type03-txt__category.is-client-f {
  color: #ffffff;
}

.c-category-list-type03-txt__body {
  color: #393939;
  font-size: 0.75rem;
}

.c-category-list-type03-txt__box {
  padding: 10px 15px;
  background: #f4f4f4;
  border-radius: 10px;
  margin: 0px -15px;
  min-height: 60px;
}

.c-category-list-type03__price {
  color: #393939;
  text-align: right;
  padding-top: 5px;
  font-size: 0.75rem;
}

.c-category-list-type03__price span {
  font-weight: bold;
  font-size: 1rem;
}

/* クライアント用 */
.c-category-list-client02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

@media only screen and (max-width: 767px) {
  .c-category-list-client02 {
    display: block;
  }
}

.c-category-list-client02__item {
  margin-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .c-category-list-client02__item {
    margin-bottom: 30px;
    width: auto;
  }
}

.c-category-list-client02__link {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-category-list-client02__link:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.c-category-list-client02__link:hover {
  text-decoration: none;
}

.c-category-list-client02-txt {
  position: relative;
  padding: 30px 15px;
}

.c-category-list-client02-txt__ttl {
  position: relative;
  top: -20px;
  margin-bottom: -10px;
  font-size: 1.125rem;
  color: #ffffff;
}

.c-category-list-client02-txt__category {
  position: absolute;
  top: 15px;
  right: -1px;
  padding: 0px 10px;
  min-width: 120px;
  border-left: 4px solid #ffffff;
  color: #393939;
  font-size: 0.75rem;
  text-align: center;
}

.c-category-list-client02-txt__category.is-white {
  color: #ffffff;
}

.c-category-list-client02-txt__body {
  color: #393939;
  font-size: 0.75rem;
}

.c-category-list-client02-txt__box {
  padding: 10px 15px;
  background: #cccccc;
  border-radius: 10px;
  margin: 0px -15px;
  min-height: 60px;
}

.c-category-list-client02__price {
  color: #393939;
  text-align: right;
  padding-top: 5px;
  font-size: 0.75rem;
}

.c-category-list-client02__price span {
  font-weight: bold;
  font-size: 1rem;
}

/*************** メディア ***************/
/* メディア 01 */
.c-media-type01__img {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .c-media-type01__img {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 15px;
  }
}

.c-media-type01__body {
  line-height: 1.8;
}

/* メディア 02 (画像左右) */
/*.c-media-type02-box {
	&:nth-child(even) {
		& .c-media-type02__img {
		}
		& .c-media-type02__txt {
			order: -1;
			margin-left: 0;
			margin-right: 60px;
			line-height: $line-height;
			@include media(sp) {
				margin-right: 0;
			}
		}
	}
}
*/
.c-media-type02-box {
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .c-media-type02-box {
    margin-bottom: 45px;
  }
}

.c-media-type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .c-media-type02 {
    display: block;
  }
}

.c-media-type02.is-no-image .c-media-type02__txt {
  margin-left: 0;
}

.c-media-type02__img {
  width: 435px;
}

@media only screen and (max-width: 767px) {
  .c-media-type02__img {
    margin-bottom: 15px;
    width: auto;
  }
}

.c-media-type02__img img {
  width: 100%;
}

.c-media-type02__txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 60px;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .c-media-type02__txt {
    margin-left: 0;
  }
}

.c-media-type02__body {
  line-height: 1.8;
}

/*************** 吹き出しボックス ***************/
.c-msg-box {
  padding: 15px;
  border-radius: 10px;
  background: #cccccc;
}

.c-msg-box.is-arrow-bottom {
  position: relative;
}

.c-msg-box.is-arrow-bottom:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  margin-left: -20px;
  left: 50%;
  width: 0px;
  height: 0px;
  border: solid transparent;
  border-top-color: #666666;
  border-width: 20px;
}

.c-msg-box.is-arrow-left {
  position: relative;
}

.c-msg-box.is-arrow-left:before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  margin-left: -10px;
  right: 100%;
  width: 0px;
  height: 0px;
  border: solid transparent;
  border-top-color: #666666;
  border-right-color: #666666;
  border-width: 10px;
}

/*************** ギャラリーリスト ***************/
.c-galley-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 767px) {
  .c-galley-list {
    margin-left: -5px;
    margin-right: -5px;
  }
}

.c-galley-list__item {
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  width: 25%;
}

@media only screen and (max-width: 767px) {
  .c-galley-list__item {
    margin-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
    width: 50%;
  }
}

.c-galley-list__img figcaption {
  margin-top: 10px;
  font-size: 0.875rem;
}

/*************** 画像リスト ***************/
.c-img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

@media only screen and (max-width: 767px) {
  .c-img-list {
    margin-left: -5px;
    margin-right: -5px;
  }
}

.c-img-list.is-thum {
  margin: 0 auto;
  width: 50%;
}

@media only screen and (max-width: 1180px) {
  .c-img-list.is-thum {
    width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .c-img-list.is-thum {
    width: 100%;
  }
}

.c-img-list.is-nav {
  display: block;
}

.c-img-list.is-nav .c-img-list__item:hover {
  opacity: 0.8;
}

.c-img-list.is-main {
  margin: 0 auto;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .c-img-list.is-main {
    width: 100%;
  }
}

.c-img-list__item {
  margin-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
}

@media only screen and (max-width: 767px) {
  .c-img-list__item {
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.c-img-list__item.is-width {
  width: 25%;
}

@media only screen and (max-width: 767px) {
  .c-img-list__item.is-width {
    width: 50%;
  }
}

.c-img-list__img figcaption {
  margin-top: 5px;
  font-size: 0.875rem;
}

.c-img-list__img img {
  width: 100%;
}

/*************** テキストリスト ***************/
.c-list__item {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #666666;
  font-size: 1.125rem;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .c-list__item {
    padding: 10px;
    font-size: 1.125rem;
  }
}

.c-list__item:first-child {
  border-top: 1px solid #666666;
}

/*************** フローリスト ***************/
.c-flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-reset: item;
  margin-right: -25px;
}

@media only screen and (max-width: 767px) {
  .c-flow-list {
    display: block;
    margin-right: 0px;
  }
}

.c-flow-list__item {
  margin-bottom: 60px;
  margin-right: 25px;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 15px;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .c-flow-list__item {
    padding: 15px;
    width: 100%;
  }
}

.c-flow-list__item:last-child:before {
  content: none;
}

.c-flow-list__ttl {
  margin-bottom: 25px;
  font-size: 1.3125rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .c-flow-list__ttl {
    margin-bottom: 15px;
  }
}

.c-flow-list__ttl-step {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  margin-right: 8px;
  padding: 3px 12px;
  font-size: 1rem;
  background: #eda84a;
  border-radius: 20px;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .c-flow-list__ttl-step {
    margin-bottom: 5px;
    font-size: 0.875rem;
  }
}

.c-flow-list__ttl-step:after {
  counter-increment: item;
  content: counter(item);
  margin-left: 5px;
  font-weight: bold;
}

.c-flow-list__ttl-txt {
  font-family: "Shippori Mincho", serif;
}

@media only screen and (max-width: 767px) {
  .c-flow-list__ttl-txt {
    display: block;
  }
}

.c-flow-list__img {
  margin: 0px auto;
  padding-bottom: 15px;
  width: 240px;
}

@media only screen and (max-width: 767px) {
  .c-flow-list__img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
}

.c-flow-list__img img {
  width: 100%;
}

.c-flow-list__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.8;
}

/*************** カラーリスト ***************/
.c-color-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.c-color-list__item {
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  width: 20%;
  font-size: 0.75rem;
}

.c-color-list__bg {
  margin-bottom: 10px;
  background: #cccccc;
  height: 90px;
}

.c-color-list__bg.is-main {
  background: #a7627c;
}

.c-color-list__bg.is-base {
  background: #ffffff;
}

.c-color-list__bg.is-accent {
  background: #eda84a;
}

.c-color-list__bg.is-danger {
  background: #ff0000;
}

.c-color-list__bg.is-warning {
  background: #8a6d3b;
}

.c-color-list__bg.is-success {
  background: #3c763d;
}

.c-color-list__bg.is-info {
  background: #31708f;
}

.c-color-list__bg.is-link {
  background: #518f9c;
}

.c-color-list__ttl {
  margin-bottom: 10px;
  font-weight: bold;
}

.c-color-list__body.is-main {
  color: #a7627c;
}

.c-color-list__body.is-base {
  color: #ffffff;
}

.c-color-list__body.is-accent {
  color: #eda84a;
}

.c-color-list__body.is-danger {
  color: #ff0000;
}

.c-color-list__body.is-warning {
  color: #8a6d3b;
}

.c-color-list__body.is-success {
  color: #3c763d;
}

.c-color-list__body.is-info {
  color: #31708f;
}

.c-color-list__body.is-link {
  color: #518f9c;
}

/*************** カテゴリーリスト ***************/
.c-contents-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .c-contents-category-list {
    display: block;
    margin-bottom: 45px;
  }
}

.c-contents-category-list__item {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .c-contents-category-list__item {
    width: auto;
    margin-bottom: 2px;
  }
}

.c-contents-category-list__link {
  display: block;
  padding: 12px;
  background: #fafafa;
  color: #393939;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .c-contents-category-list__link {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
  }
}

.c-contents-category-list__link:hover, .c-contents-category-list__link.is-on {
  background: #eeeeee;
  text-decoration: none;
}

.c-contents-category-list__link.is-page-link {
  position: relative;
}

.c-contents-category-list__link.is-page-link:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #777777;
  border-bottom: 1px solid #777777;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/***** カテゴリーリスト 02 *****/
.c-contents-category-type02-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .c-contents-category-type02-list {
    display: block;
    margin-bottom: 45px;
  }
}

.c-contents-category-type02-list__item {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .c-contents-category-type02-list__item {
    width: auto;
    margin-bottom: 2px;
  }
}

.c-contents-category-type02-list__link {
  display: block;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #518f9c;
  background: #ffffff;
  color: #518f9c;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .c-contents-category-type02-list__link {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
  }
}

.c-contents-category-type02-list__link:hover {
  background: rgba(81, 143, 156, 0.8);
  color: #ffffff;
  text-decoration: none;
}

.c-contents-category-type02-list__link.is-on {
  background: #518f9c;
  color: #ffffff;
  text-decoration: none;
}

/***** カテゴリーリスト 03 *****/
.c-contents-category-type03-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .c-contents-category-type03-list {
    display: block;
    margin-bottom: 45px;
  }
}

.c-contents-category-type03-list__item {
  border-right: 1px solid #666666;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .c-contents-category-type03-list__item {
    margin-bottom: 1px;
    border-right: 0;
    border-bottom: 1px solid #666666;
    width: auto;
  }
}

.c-contents-category-type03-list__item:first-child {
  border-left: 1px solid #666666;
}

@media only screen and (max-width: 767px) {
  .c-contents-category-type03-list__item:first-child {
    border-top: 1px solid #666666;
    border-left: 0;
  }
}

.c-contents-category-type03-list__link {
  display: block;
  padding: 12px;
  background: #ffffff;
  color: #518f9c;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .c-contents-category-type03-list__link {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
  }
}

.c-contents-category-type03-list__link:hover {
  background: rgba(81, 143, 156, 0.8);
  color: #ffffff;
  text-decoration: none;
}

.c-contents-category-type03-list__link.is-on {
  background: #518f9c;
  color: #ffffff;
  text-decoration: none;
}

/***** タブメニュー *****/
.c-tab-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-tab-navi-list__item {
  margin-right: 5px;
}

.c-tab-navi-list__btn {
  padding: 10px 15px;
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #ffffff;
  text-align: center;
}

.c-tab-navi-list__btn.is-active, .c-tab-navi-list__btn[aria-selected="true"] {
  background: #a7627c;
  color: #ffffff;
}

.c-tab-navi-list__btn:hover {
  background: rgba(167, 98, 124, 0.8);
  color: #ffffff;
}

.c-tab-contents {
  padding: 15px;
  border: 1px solid #cccccc;
}

.c-tab-contents-box {
  display: none;
  opacity: 1;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.c-tab-contents-box.is-active {
  display: block;
}

.c-tab-contents-box.is-fadeout {
  opacity: 0;
}

.c-tab-contents-box.is-fadein {
  opacity: 1;
}

.c-tab-contents__item[aria-hidden="true"] {
  display: none;
}

.form-list .c-check-list {
  margin-top: 10px;
}

.c-check-list__item {
  margin-bottom: 15px;
}

.c-check-list__item:last-child {
  margin-bottom: 0;
}

.about-contents.is-white {
  color: #ffffff;
}

.slider-furisode-thum .slick-prev,
.slider-furisode-thum .slick-next,
.slider-hakama-thum .slick-prev,
.slider-hakama-thum .slick-next,
.slider-client-furisode-thum .slick-prev,
.slider-client-furisode-thum .slick-next,
.slider-client-hakama-thum .slick-prev,
.slider-client-hakama-thum .slick-next,
.slider-style-furisode-thum .slick-prev,
.slider-style-furisode-thum .slick-next,
.slider-style-hakama-thum .slick-prev,
.slider-style-hakama-thum .slick-next {
  background: #EEEEEE;
}

@media only screen and (max-width: 767px) {
  .slider-furisode-thum .slick-prev,
  .slider-furisode-thum .slick-next,
  .slider-hakama-thum .slick-prev,
  .slider-hakama-thum .slick-next,
  .slider-client-furisode-thum .slick-prev,
  .slider-client-furisode-thum .slick-next,
  .slider-client-hakama-thum .slick-prev,
  .slider-client-hakama-thum .slick-next,
  .slider-style-furisode-thum .slick-prev,
  .slider-style-furisode-thum .slick-next,
  .slider-style-hakama-thum .slick-prev,
  .slider-style-hakama-thum .slick-next {
    display: block;
    width: 30px;
    height: 45px;
    border-radius: 0;
    background: #cccccc;
  }
}

.slider-furisode-thum .slick-prev:hover,
.slider-furisode-thum .slick-next:hover,
.slider-hakama-thum .slick-prev:hover,
.slider-hakama-thum .slick-next:hover,
.slider-client-furisode-thum .slick-prev:hover,
.slider-client-furisode-thum .slick-next:hover,
.slider-client-hakama-thum .slick-prev:hover,
.slider-client-hakama-thum .slick-next:hover,
.slider-style-furisode-thum .slick-prev:hover,
.slider-style-furisode-thum .slick-next:hover,
.slider-style-hakama-thum .slick-prev:hover,
.slider-style-hakama-thum .slick-next:hover {
  background: #cccccc;
}

@media only screen and (max-width: 767px) {
  .slider-furisode-thum .slick-prev:hover,
  .slider-furisode-thum .slick-next:hover,
  .slider-hakama-thum .slick-prev:hover,
  .slider-hakama-thum .slick-next:hover,
  .slider-client-furisode-thum .slick-prev:hover,
  .slider-client-furisode-thum .slick-next:hover,
  .slider-client-hakama-thum .slick-prev:hover,
  .slider-client-hakama-thum .slick-next:hover,
  .slider-style-furisode-thum .slick-prev:hover,
  .slider-style-furisode-thum .slick-next:hover,
  .slider-style-hakama-thum .slick-prev:hover,
  .slider-style-hakama-thum .slick-next:hover {
    background: #aaaaaa;
  }
}

.slider-furisode-thum .slick-prev:before,
.slider-furisode-thum .slick-next:before,
.slider-hakama-thum .slick-prev:before,
.slider-hakama-thum .slick-next:before,
.slider-client-furisode-thum .slick-prev:before,
.slider-client-furisode-thum .slick-next:before,
.slider-client-hakama-thum .slick-prev:before,
.slider-client-hakama-thum .slick-next:before,
.slider-style-furisode-thum .slick-prev:before,
.slider-style-furisode-thum .slick-next:before,
.slider-style-hakama-thum .slick-prev:before,
.slider-style-hakama-thum .slick-next:before {
  margin-top: -10px;
  width: 20px;
  height: 20px;
  border-color: #ffffff;
}

.slider-furisode-thum .slick-prev,
.slider-hakama-thum .slick-prev,
.slider-client-furisode-thum .slick-prev,
.slider-client-hakama-thum .slick-prev,
.slider-style-furisode-thum .slick-prev,
.slider-style-hakama-thum .slick-prev {
  left: -100px;
}

.slider-furisode-thum .slick-prev:before,
.slider-hakama-thum .slick-prev:before,
.slider-client-furisode-thum .slick-prev:before,
.slider-client-hakama-thum .slick-prev:before,
.slider-style-furisode-thum .slick-prev:before,
.slider-style-hakama-thum .slick-prev:before {
  margin-left: -6px;
}

@media only screen and (max-width: 767px) {
  .slider-furisode-thum .slick-prev,
  .slider-hakama-thum .slick-prev,
  .slider-client-furisode-thum .slick-prev,
  .slider-client-hakama-thum .slick-prev,
  .slider-style-furisode-thum .slick-prev,
  .slider-style-hakama-thum .slick-prev {
    left: 5px;
  }
}

.slider-furisode-thum .slick-next,
.slider-hakama-thum .slick-next,
.slider-client-furisode-thum .slick-next,
.slider-client-hakama-thum .slick-next,
.slider-style-furisode-thum .slick-next,
.slider-style-hakama-thum .slick-next {
  right: -100px;
}

.slider-furisode-thum .slick-next:before,
.slider-hakama-thum .slick-next:before,
.slider-client-furisode-thum .slick-next:before,
.slider-client-hakama-thum .slick-next:before,
.slider-style-furisode-thum .slick-next:before,
.slider-style-hakama-thum .slick-next:before {
  margin-right: -6px;
}

@media only screen and (max-width: 767px) {
  .slider-furisode-thum .slick-next,
  .slider-hakama-thum .slick-next,
  .slider-client-furisode-thum .slick-next,
  .slider-client-hakama-thum .slick-next,
  .slider-style-furisode-thum .slick-next,
  .slider-style-hakama-thum .slick-next {
    right: 5px;
  }
}

/*********************************************/
/* Utility */
/*********************************************/
/* clearfix */
.u-cl:before, .u-cl:after {
  content: " ";
  display: table;
}

.u-cl:after {
  clear: both;
}

.u-cl {
  *zoom: 1;
}

/* font関連 */
.u-bold {
  font-weight: bold !important;
}

.u-through {
  text-decoration: line-through;
}

.u-fss {
  font-size: 10px !important;
}

.u-fs {
  font-size: 12px !important;
}

.u-fm {
  font-size: 14px !important;
}

.u-fl {
  font-size: 18px !important;
}

.u-fll {
  font-size: 24px !important;
}

.u-fxl {
  font-size: 30px !important;
}

.u-mincho {
  font-family: "Shippori Mincho", serif;
}

.u-mincho-noto {
  font-family: YakuHanMPs, "Noto Serif JP", serif;
}

.u-mincho-sawarabi {
  font-family: YakuHanMPs, "Sawarabi Mincho", serif;
}

.u-gothic-noto {
  font-family: YakuHanJPs, "Noto Sans Japanese", sans-serif;
}

.u-gothic-rounded {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/* float */
.u-float-l {
  float: left;
}

.u-float-r {
  float: right;
}

/* text-align */
.u-tl {
  text-align: left !important;
}

.u-tc {
  text-align: center !important;
}

.u-tr {
  text-align: right !important;
}

/* vertical-align */
.u-vat {
  vertical-align: top !important;
}

.u-vam {
  vertical-align: middle !important;
}

.u-vab {
  vertical-align: bottom !important;
}

/* bottom-margin */
.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mbxs {
  margin-bottom: 5px !important;
}

.u-mbss {
  margin-bottom: 10px !important;
}

.u-mbs {
  margin-bottom: 15px !important;
}

.u-mbm {
  margin-bottom: 45px !important;
}

.u-mbl {
  margin-bottom: 60px !important;
}

.u-mbll {
  margin-bottom: 120px !important;
}

.u-mbxl {
  margin-bottom: 240px !important;
}

/* padding */
.u-plrs {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.u-plrm {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* 幅 */
.u-ws {
  width: 50px;
}

.u-wm {
  width: 100px;
}

.u-wl {
  width: 200px;
}

.u-w-half {
  width: 50%;
}

.u-w-max {
  width: 100%;
}

/* 色 */
.u-red {
  color: #eb0800;
}

.u-required {
  color: #eb0800;
}

/* 必須 */
.u-date {
  color: #888888;
}

/* 日付 */
.u-dpn {
  display: none;
}

.u-pc-only {
  display: block;
}

.u-sp-only {
  display: none;
}

img.u-pc-only {
  display: inline;
}

img.u-sp-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: block;
  }
  img.u-pc-only {
    display: none;
  }
  img.u-sp-only {
    display: inline;
  }
}

/* opacity */
.u-opa a img,
.u-opa-img img,
.u-opa-box {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.u-opa a img:hover,
.u-opa-img img:hover,
.u-opa-box:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.u-spr {
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  border: 0;
  cursor: pointer;
}

.u-spr::-moz-focus-inner {
  padding: 0;
  border: none;
}

.u-pre {
  padding: 15px;
  background: #333333;
  color: #ffffff;
}

/***** 画像 *****/
.u-img {
  margin-bottom: 15px;
}

/***** テキスト *****/
.u-txt {
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .u-list-txt {
    padding-left: 0;
  }
}

/* input画像ボタンにつける */
.u-input-img {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

.u-input-img:hover {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* inputテキストボタンにつける */
.u-input-txt {
  padding: 0;
  border: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.u-input-txt:hover {
  padding: 0;
  border: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  text-decoration: underline;
}

.u-hidden {
  overflow: hidden;
}

.u-overbg {
  margin-left: -500%;
  margin-right: -500%;
  padding-left: 500%;
  padding-right: 500%;
}

.u-overframe {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
}

/***** iframeの高さをレスポンシブ対応 *****/
.iframe-content {
  position: relative;
  width: 100%;
  padding: 56.25% 0 0 0;
}

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

/***** 見た目を隠したいとき *****/
.u-visually-hidden {
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
  border: 0;
  padding: 0;
  width: 4px;
  height: 4px;
}

/**************************************************/
/* アクセス */
/**************************************************/
.access-main__img {
  text-align: center;
}

.access-info-tbl .c-tbl-list-type01__th,
.access-info-tbl .c-tbl-list-type02__th {
  width: 240px;
}

@media only screen and (max-width: 767px) {
  .access-info-tbl .c-tbl-list-type01__th,
  .access-info-tbl .c-tbl-list-type02__th {
    width: 90px;
  }
}

/**************************************************/
/* お問い合わせ・プライバシーポリシー */
/**************************************************/
.contact-body {
  margin-bottom: 60px;
  padding: 20px;
  background: #fafafa;
}

.form-list {
  margin-bottom: 30px;
}

.form-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px dotted #777777;
}

@media only screen and (max-width: 767px) {
  .form-list__item {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.form-list__item:first-child {
  border-top: 1px dotted #777777;
}

.form-list__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 24px 15px 15px 15px;
  min-height: 75px;
  width: 315px;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .form-list__ttl {
    margin-bottom: 15px;
    padding: 0;
    width: auto;
    min-height: inherit;
    background: transparent;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.form-list__ttl.is-confirm {
  padding-top: 15px;
  min-height: inherit;
}

@media only screen and (max-width: 767px) {
  .form-list__ttl.is-confirm {
    padding-top: 0;
    font-size: 12px;
    color: #777777;
  }
}

.form-list__name {
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .form-list__name.is-confirm {
    font-size: 12px;
  }
}

.form-required {
  padding: 2px 15px;
  border-radius: 3px;
  font-size: 12px;
  background: #393939;
  color: #ffffff;
}

.form-list__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 15px;
}

@media only screen and (max-width: 767px) {
  .form-list__body {
    padding: 0;
  }
}

.form-list__body.is-confirm {
  font-size: 18px;
}

.form-list__body.is-mail-confirm {
  font-size: 18px;
}

.form-list__box {
  margin-bottom: 10px;
}

.form-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .form-btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.form-btn-box__item {
  margin-left: 15px;
  margin-right: 15px;
}

@media only screen and (max-width: 767px) {
  .form-btn-box__item {
    margin-bottom: 30px;
  }
  .form-btn-box__item.is-next {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

.textarea-box {
  height: 150px;
}

@media only screen and (max-width: 767px) {
  .textarea-box {
    height: 180px;
  }
}

.contact-complete {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .contact-complete {
    text-align: left;
  }
}

.contact-complete_icon {
  margin-bottom: 30px;
  font-size: 72px;
  color: #aaaaaa;
  text-align: center;
}

/**************************************************/
/* プライバシーポリシー */
/**************************************************/
.privacy-body {
  margin-bottom: 75px;
}

@media only screen and (max-width: 767px) {
  .privacy-body {
    margin-bottom: 45px;
  }
}

.privacy-box {
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .privacy-box {
    margin-bottom: 45px;
  }
}

/**************************************************/
/* 物件 */
/**************************************************/
/*************** 物件リスト ***************/
/* 物件リストタイプ 01 */
.estate-list-type01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 767px) {
  .estate-list-type01 {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

.estate-list-type01__item {
  margin-bottom: 45px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .estate-list-type01__item {
    margin-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}

.estate-list-type01__item.is-no-frame {
  margin-bottom: 45px;
}

.estate-list-type01__item-in {
  position: relative;
  padding: 15px;
  border: 1px solid #666666;
  background: #ffffff;
}

.estate-list-type01__img {
  margin-bottom: 15px;
  height: 180px;
  line-height: 180px;
  text-align: center;
  background: #cccccc;
  overflow: hidden;
}

.estate-list-type01__img img {
  vertical-align: middle;
  max-width: 101%;
  max-height: 101%;
  width: auto;
  height: auto;
}

.estate-list-type01-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}

.estate-list-type01__category {
  margin-right: 5px;
  padding-left: 10px;
  padding-right: 10px;
  background: #a7627c;
  color: #ffffff;
}

.estate-list-type01__state {
  padding-left: 10px;
  padding-right: 10px;
  background: #a7627c;
  color: #ffffff;
}

.estate-list-type01__state.is-sale {
  background: #eda84a;
}

.estate-list-type01__state.is-soldout {
  background: #cccccc;
}

.estate-list-type01__copy {
  margin-top: 15px;
  font-size: 21px;
  font-weight: bold;
  color: #a7627c;
}

.estate-list-type01__name {
  margin-top: 10px;
}

.estate-list-type01__body {
  margin-top: 10px;
  font-size: 14px;
}

.estate-list-type01__price {
  font-size: 14px;
  text-align: right;
}

.estate-list-type01__price-num {
  margin-left: 3px;
  margin-right: 3px;
  font-size: 18px;
  font-weight: bold;
  color: #eda84a;
}

.estate-list-point-list {
  margin-top: 15px;
}

.estate-list-point-list__item {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.estate-list-point-list__item:before {
  position: absolute;
  top: 2px;
  left: 0;
  font-weight: 900;
  font-family: "Font Awesome 5 free";
  content: "\f00c";
  color: #a7627c;
  font-size: 12px;
}

/* 物件リストタイプ 02 */
.estate-list-type02__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 3px solid #666666;
}

@media only screen and (max-width: 767px) {
  .estate-list-type02__item {
    display: block;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 3px solid #666666;
  }
}

.estate-list-type02-img {
  width: 360px;
}

@media only screen and (max-width: 767px) {
  .estate-list-type02-img {
    width: auto;
  }
}

.estate-list-type02-txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 45px;
}

@media only screen and (max-width: 767px) {
  .estate-list-type02-txt {
    margin-left: 0;
  }
}

.estate-list-type02-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .estate-list-type02-head {
    margin-top: 10px;
  }
}

.estate-list-type02__category {
  margin-right: 5px;
  padding-left: 10px;
  padding-right: 10px;
  background: #a7627c;
  color: #ffffff;
}

.estate-list-type02__state {
  padding-left: 10px;
  padding-right: 10px;
  background: #a7627c;
  color: #ffffff;
}

.estate-list-type02__state.is-sale {
  background: #a7627c;
}

.estate-list-type02__state.is-soldout {
  background: #cccccc;
}

.estate-list-type02__copy {
  margin-top: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #a7627c;
}

@media only screen and (max-width: 767px) {
  .estate-list-type02__copy {
    font-size: 21px;
  }
}

.estate-list-type02__name {
  margin-top: 15px;
}

.estate-list-type02__body {
  margin-top: 10px;
  font-size: 14px;
}

.estate-list-type02__price {
  text-align: right;
}

.estate-list-type02__price-num {
  margin-left: 3px;
  margin-right: 3px;
  font-size: 21px;
  font-weight: bold;
  color: #68b962;
}

.estate-list-tbl {
  margin-top: 15px;
  width: 100%;
}

.estate-list-tbl__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #666666;
}

.estate-list-tbl__tr:last-child {
  border-bottom: 1px solid #666666;
}

.estate-list-tbl__th,
.estate-list-tbl__td {
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.estate-list-tbl__th {
  padding: 5px 15px 5px 2px;
  width: 120px;
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .estate-list-tbl__th {
    padding: 10px;
    width: 90px;
    font-size: 12px;
  }
}

.estate-list-tbl__td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 5px 0px 5px 15px;
  font-size: 14px;
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .estate-list-tbl__td {
    padding: 10px;
    font-size: 12px;
  }
}

/******************** 物件詳細 ********************/
.estate-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.estate-head__category {
  margin-right: 5px;
  padding-left: 10px;
  padding-right: 10px;
  background: #a7627c;
  color: #ffffff;
}

.estate-head__state {
  padding-left: 10px;
  padding-right: 10px;
  background: #a7627c;
  color: #ffffff;
}

.estate-head__state.is-sale {
  background: #eda84a;
}

.estate-head__state.is-soldout {
  background: #cccccc;
}

.estate-gallery {
  margin-bottom: 60px;
}

.estate-gallery__main {
  background: #eeeeee;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .estate-gallery__main {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.estate-gallery__main img {
  max-width: 920px;
}

@media only screen and (max-width: 767px) {
  .estate-gallery__main img {
    max-width: 100%;
    max-height: 100%;
  }
}

.estate-gallery-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-left: -8px;
  margin-right: -8px;
}

@media only screen and (max-width: 767px) {
  .estate-gallery-thumb {
    margin-top: 4px;
    margin-left: -13px;
    margin-right: -13px;
  }
}

.estate-gallery-thumb__item {
  margin-bottom: 15px;
  padding-left: 8px;
  padding-right: 8px;
  width: 20%;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .estate-gallery-thumb__item {
    margin-bottom: 4px;
    padding-left: 2px;
    padding-right: 2px;
    width: 25%;
  }
}

.estate-gallery-thumb__item a:hover,
.estate-gallery-thumb__item a.active {
  opacity: 0.8;
}

.estate-txt {
  margin-bottom: 75px;
}

@media only screen and (max-width: 767px) {
  .estate-txt {
    margin-bottom: 60px;
  }
}

.estate-txt__point {
  margin-bottom: 45px;
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .estate-txt__point {
    margin-bottom: 30px;
    font-size: 1.125rem;
  }
}

.estate-txt__body {
  line-height: 1.8;
}

.estate-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}

@media only screen and (max-width: 1180px) {
  .estate-info {
    display: block;
  }
}

.estate-info-box {
  margin-bottom: 75px;
  padding-left: 20px;
  padding-right: 20px;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .estate-info-box {
    margin-bottom: 60px;
    width: auto;
  }
}

.estate-info-box.is-col1 {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .estate-info-box.is-col1 {
    width: auto;
  }
}

.estate-info-tbl {
  width: 100%;
}

.estate-info-tbl__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #666666;
}

@media only screen and (max-width: 767px) {
  .estate-info-tbl__tr {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.estate-info-tbl__tr:last-child {
  border-bottom: 1px solid #666666;
}

.estate-info-tbl__th,
.estate-info-tbl__td {
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.estate-info-tbl__th {
  padding: 10px 15px 10px 2px;
  width: 120px;
  border-right: 1px solid #666666;
}

@media only screen and (max-width: 767px) {
  .estate-info-tbl__th {
    padding: 5px 10px;
    width: 90px;
    font-size: 12px;
  }
}

.estate-info-tbl__td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px 0px 10px 15px;
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .estate-info-tbl__td {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.estate-access-map {
  margin-bottom: 30px;
}

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

@media only screen and (max-width: 767px) {
  .estate-access-map iframe {
    height: 100%;
  }
}

.estate-access-box {
  margin-bottom: 15px;
}

.estate-access-box__ttl {
  margin-bottom: 5px;
  font-weight: bold;
}

.estate-box {
  margin-bottom: 75px;
}

.estate-gallery-box {
  margin-bottom: 30px;
}

/**************************************************/
/* よくある質問 */
/**************************************************/
.faq-list {
  border-top: 1px solid #666666;
}

.faq-list__item {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #666666;
}

.faq-list__ttl {
  position: relative;
  margin-bottom: 30px;
  padding-left: 35px;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .faq-list__ttl {
    margin-bottom: 20px;
  }
}

.faq-list__ttl:before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  color: #a7627c;
}

.faq-list-answer__ttl {
  position: relative;
  margin-bottom: 20px;
  padding-left: 35px;
  font-size: 18px;
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .faq-list-answer__ttl {
    margin-bottom: 20px;
  }
}

.faq-list-answer__ttl:before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  color: #a7627c;
}

.faq-list-answer__body {
  line-height: 1.8;
  color: #333333;
}

/**************************************************/
/* メニュー */
/**************************************************/
.menu-main {
  margin-bottom: 60px;
}

.menu-main__img {
  margin-bottom: 35px;
}

@media only screen and (max-width: 767px) {
  .menu-main__img {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 15px;
  }
}

.menu-main__body {
  line-height: 1.8;
  font-size: 18px;
  text-align: center;
}

.menu-box:nth-child(even) {
  background: #EEEEEE;
}

.menu-box-wrap + .menu-box-wrap {
  margin-top: 45px;
}

.menu-box__ttl {
  margin-bottom: 20px;
  font-size: 21px;
  text-align: center;
}

.menu-box__body {
  margin-bottom: 25px;
  text-align: center;
}

.menu-list-type01-wrap {
  margin-left: -240px;
  margin-right: -240px;
  margin-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .menu-list-type01-wrap {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 60px;
  }
}

.menu-list-type01 {
  margin-left: auto;
  margin-right: auto;
  width: 485px;
}

@media only screen and (max-width: 767px) {
  .menu-list-type01 {
    width: auto;
  }
}

.menu-list-type01 .slick-list {
  overflow: inherit;
}

.menu-img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

@media only screen and (max-width: 767px) {
  .menu-img-list {
    margin-left: -3px;
    margin-right: -3px;
    margin-bottom: 30px;
  }
}

.menu-img-list__item {
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .menu-img-list__item {
    margin-bottom: 6px;
    padding-left: 3px;
    padding-right: 3px;
  }
}

.menu-txt-list {
  border-top: 1px solid #666666;
}

.menu-txt-list__item {
  padding: 20px 0;
  border-bottom: 1px solid #666666;
}

.menu-txt-list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.125rem;
}

@media only screen and (max-width: 767px) {
  .menu-txt-list-head {
    display: block;
  }
}

.menu-txt-list-head__price {
  color: #a7627c;
}

@media only screen and (max-width: 767px) {
  .menu-txt-list-head__price {
    text-align: right;
  }
}

.menu-txt-list__body {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .menu-txt-list__body {
    margin-top: 10px;
  }
}

/**************************************************/
/* NEWS・イベント */
/**************************************************/
/***** NEWS 一覧 *****/
@media only screen and (max-width: 767px) {
  .news-index {
    margin-bottom: 45px;
  }
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 767px) {
  .news-list {
    display: block;
  }
}

.news-list__item {
  margin-bottom: 45px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .news-list__item {
    margin-bottom: 60px;
    width: auto;
  }
}

.news-list__link:hover {
  text-decoration: none;
}

.news-list__link .news-list__ttl {
  color: #000000;
}

.news-list__link:hover .news-list__ttl {
  color: #518f9c;
}

.news-list__img {
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .news-list__img {
    margin-left: auto;
    margin-right: auto;
    max-width: 290px;
  }
}

.news-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.news-list__category {
  margin-left: 10px;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 15px;
  background: #00a0e9;
  color: #ffffff;
}

.news-list__date {
  color: #333333;
}

/***** NEWS 一覧 02 *****/
.news-list-type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 767px) {
  .news-list-type02 {
    display: block;
  }
}

.news-list-type02__item {
  margin-bottom: 45px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .news-list-type02__item {
    margin-bottom: 60px;
    width: auto;
  }
}

.news-list-type02__link {
  display: block;
  border: 1px solid #666666;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.news-list-type02__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.news-list-type02__link:hover {
  text-decoration: none;
}

.news-list-type02__link .news-list-type02__ttl {
  color: #000000;
}

.news-list-type02__link:hover .news-list-type02__ttl {
  color: #518f9c;
}

@media only screen and (max-width: 767px) {
  .news-list-type02__img {
    margin-left: auto;
    margin-right: auto;
  }
}

.news-list-type02__txt {
  padding: 15px;
}

.news-list-type02__ttl {
  margin-bottom: 10px;
  font-size: 18px;
}

.news-list-type02__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-list-type02__category {
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 15px;
  background: #00a0e9;
  color: #ffffff;
}

.news-list-type02__date {
  margin-left: 10px;
  font-size: 12px;
  color: #777777;
}

/***** NEWS 一覧 03 *****/
.news-list-type03 {
  border-top: 1px solid #666666;
}

.news-list-type03__item {
  border-bottom: 1px solid #666666;
}

.news-list-type03__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 15px;
  padding-bottom: 15px;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.news-list-type03__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.news-list-type03__link:hover {
  text-decoration: none;
}

.news-list-type03__link .news-list-type03__ttl {
  color: #000000;
}

.news-list-type03__link:hover .news-list-type03__ttl {
  color: #518f9c;
}

.news-list-type03__img {
  margin-right: 30px;
  width: 300px;
}

@media only screen and (max-width: 767px) {
  .news-list-type03__img {
    margin-right: 10px;
    width: 105px;
  }
}

.news-list-type03__txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.news-list-type03__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

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

@media only screen and (max-width: 767px) {
  .news-list-type03__ttl {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.news-list-type03__category {
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 14px;
  background: #00a0e9;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .news-list-type03__category {
    font-size: 10px;
  }
}

.news-list-type03__date {
  margin-left: 10px;
  font-size: 14px;
  color: #777777;
}

@media only screen and (max-width: 767px) {
  .news-list-type03__date {
    font-size: 12px;
  }
}

/* イベント */
.event-over-view__item {
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .event-over-view__item {
    font-size: 0.875rem;
  }
}

.event-over-view__ttl {
  display: inline;
  font-weight: bold;
  color: #000000;
}

.event-over-view__body {
  display: inline;
  color: #393939;
}

.event-over-view__date {
  display: inline;
}

.event-update {
  margin-top: 20px;
  font-size: 0.875rem;
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .event-update {
    margin-top: 15px;
    font-size: 0.75rem;
  }
}

/***** NEWS 詳細 *****/
.news-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.news-head__date {
  margin-right: 45px;
}

@media only screen and (max-width: 767px) {
  .news-head__date {
    margin-right: 15px;
  }
}

.news-head__category {
  min-width: 105px;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 10px;
  background: #a7627c;
  color: #ffffff;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .news-head__category {
    border-radius: 5px;
    line-height: 20px;
    font-size: 12px;
  }
}

.news-body {
  margin-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .news-body {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .news-detail {
    margin-bottom: 45px;
  }
}

.news-detail-box {
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .news-detail-box {
    margin-bottom: 45px;
  }
}

.news-detail__img {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .news-detail__img {
    margin-bottom: 30px;
  }
}

.news-detail__body {
  margin-bottom: 30px;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .news-detail__body {
    margin-bottom: 15px;
  }
}

.news-detail-tbl {
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .news-detail-tbl {
    margin-bottom: 30px;
  }
}

.news-detail-tbl .c-tbl__th {
  width: 240px;
}

@media only screen and (max-width: 767px) {
  .news-detail-tbl .c-tbl__th {
    width: 105px;
  }
}

.news-galley-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 767px) {
  .news-galley-list {
    margin-left: -5px;
    margin-right: -5px;
  }
}

.news-galley-list__item {
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .news-galley-list__item {
    margin-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
    width: 50%;
  }
}

.news-galley-list__img figcaption {
  margin-top: 10px;
}

/***** 商品一覧 *****/
.shop-item-box {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #666666;
}

@media only screen and (max-width: 767px) {
  .shop-item-box {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 0;
  }
}

.shop-item-box:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 767px) {
  .item-list {
    margin-top: 45px;
    display: block;
  }
}

.item-list__item {
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .item-list__item {
    margin-bottom: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
    width: auto;
  }
  .item-list__item:first-child {
    border-top: 1px solid #eeeeee;
  }
}

@media only screen and (max-width: 767px) {
  .item-list__item-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0px;
    width: auto;
  }
}

.item-list__img {
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .item-list__img {
    margin-bottom: 0;
    width: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .item-list__txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 15px;
  }
}

.item-list__name {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .item-list__name {
    margin-bottom: 5px;
    font-size: 16px;
  }
}

.item-price {
  color: #ec4949;
}

.original-price {
  /*値引き前価格*/
  font-weight: normal;
  color: #888888;
  text-decoration: line-through;
}

.new-item__list {
  font-size: 12px;
}

/***** カートサイド *****/
.shop-side-box {
  margin: 0 0 30px 0;
}

.shop-side__ttl {
  padding: 5px 10px;
  background: #dddddd;
  color: #000000;
}

.shop-side-list__item a {
  display: block;
  position: relative;
  padding: 10px 10px;
  border-bottom: 1px dotted #cccccc;
  position: relative;
}

.shop-side-list__item a:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  -o-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

.shop-side-list__item a:hover:after {
  border-color: #337ab7;
}

/***** 下部カテゴリー *****/
.shop-bottom {
  margin-top: 120px;
  border-top: 1px solid #cccccc;
}

.shop-bottom-box {
  padding-top: 30px;
  padding-bottom: 30px;
  border-right: 1px dotted #cccccc;
}

.shop-bottom__box:last-child {
  border-right: none;
}

.shop-bottom__ttl {
  margin-bottom: 10px;
  font-weight: bold;
}

.shop-bottom-list {
  font-size: 0;
}

.shop-bottom-list__item {
  display: inline-block;
  margin-bottom: 5px;
  width: 50%;
  font-size: 12px;
}

/***** ショップ下部 特商法 *****/
.shop-bottom-astc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 767px) {
  .shop-bottom-astc {
    display: block;
  }
}

.shop-bottom-astc__box {
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .shop-bottom-astc__box {
    width: auto;
  }
}

.shop-bottom-astc-list__item {
  margin-bottom: 30px;
}

.shop-bottom-astc__ttl {
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #cccccc;
  font-weight: bold;
}

.shop-bottom-astc__in {
  line-height: 1.6;
  font-size: 13px;
}

@media only screen and (max-width: 767px) {
  .shop-bottom-astc__in {
    font-size: 12px;
  }
}

/* 送料 */
.astc-postage-tbl {
  margin-top: 5px;
  margin-bottom: 5px;
  width: 100%;
}

.astc-postage-tbl__th {
  padding: 3px 5px;
  border: 1px solid #cccccc;
}

.astc-postage-tbl__td {
  padding: 3px 5px;
  border: 1px solid #cccccc;
  width: 120px;
  text-align: right;
}

/* お支払い */
.astc-payment-list__ttl {
  font-weight: bold;
}

.astc-payment-list__data {
  margin-bottom: 15px;
}

.astc-payment-account {
  margin-top: 5px;
  padding: 5px;
  border: 1px solid #cccccc;
  border-radius: 5px;
}

/***** 商品詳細 *****/
.item-detail__ttl {
  margin-bottom: 40px;
  line-height: 1.2;
  font-size: 2.25rem;
  color: #000000;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .item-detail__ttl {
    font-size: 1.5rem;
  }
}

.item-detail__ttl span {
  display: block;
  margin-top: 10px;
  font-size: 0.9375rem;
}

.item-detail-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -22px;
  margin-right: -22px;
  margin-top: 60px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .item-detail-main {
    display: block;
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
    margin-bottom: 45px;
  }
}

.item-detail-img {
  padding-left: 22px;
  padding-right: 22px;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .item-detail-img {
    margin-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}

.item-detail-info {
  padding-left: 22px;
  padding-right: 22px;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .item-detail-info {
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}

.item-detail-info__category {
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 15px;
  border-radius: 10px;
  line-height: 30px;
  background: #e86b6a;
  color: #ffffff;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .item-detail-info__category {
    border-radius: 5px;
    line-height: 20px;
    font-size: 12px;
  }
}

.item-detail-info__body {
  margin-bottom: 30px;
  line-height: 1.8;
}

/* 商品 サムネイル */
.item-thumb-list__item {
  margin-bottom: 20px;
}

.item-thumb-list__item:first-child {
  width: 100%;
}

.item-detail__price {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
}

.item-detail__cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.item-detail__cart-item-count {
  display: none;
  width: 80px;
}

.item-detail__cart-item-select {
  padding-top: 8px;
  padding-bottom: 8px;
}

.item-detail__cart-item-in {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.item-detail__cart-item-in button {
  position: relative;
  width: 100%;
  font-size: 30px;
}

@media only screen and (max-width: 767px) {
  .item-detail__cart-item-in button {
    font-size: 18px;
  }
}

.item-remail {
  margin-bottom: 30px;
}

.item-remail__txt {
  margin-bottom: 10px;
  padding: 15px;
  background: #f0f0f0;
  color: #666666;
  text-align: center;
}

.item-remail__btn a {
  display: block;
  padding: 15px;
  border-radius: 5px;
  background: #aaaaaa;
  color: #ffffff;
  text-align: center;
}

.item-remail__btn a:hover {
  background: #bbbbbb;
  text-decoration: none;
}

.item-detail__body {
  margin-bottom: 30px;
}

/***** バリエーション商品 *****/
.item-variation {
  margin-top: 45px;
}

.item-variation__ttl {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: bold;
}

.item-variation-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
}

.item-variation-list__item {
  margin-bottom: 15px;
  padding-left: 7px;
  padding-right: 7px;
  width: 33.3333%;
}

.item-variation-list__img {
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .item-variation-list__txt {
    font-size: 12px;
  }
}

.item-sell-message {
  margin-bottom: 30px;
  font-size: 12px;
}

.item-discount-message {
  margin-bottom: 30px;
  color: #ff0000;
}

.item-delivery-mail__info {
  color: #666666;
  font-size: 12px;
}

/* 商品のステータス */
.item-states-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-left: -2px;
  margin-right: -2px;
}

.item-states-list.is-detail {
  margin-bottom: 30px;
}

.item-states-list__item {
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 4px;
  padding: 2px;
  border: 1px solid #a7627c;
  border-radius: 3px;
  width: 100px;
  font-size: 12px;
  background: #ffffff;
  color: #a7627c;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .item-states-list__item {
    width: 90px;
    font-size: 10px;
  }
}

/***** 関連商品 *****/
.recent-item-list {
  margin-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .recent-item-list {
    margin-bottom: 60px;
  }
}

.recent-item-list .slick-dots {
  bottom: -20px;
}

@media only screen and (max-width: 767px) {
  .recent-item-list .slick-next {
    right: -10px;
  }
}

@media only screen and (max-width: 767px) {
  .recent-item-list .slick-prev {
    left: -10px;
  }
}

.recent-item-list__item {
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (max-width: 767px) {
  .recent-item-list__item {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/***** カートの中身 *****/
.cart-list {
  margin-bottom: 30px;
  border-top: 1px solid #cccccc;
}

.cart-list .c-btn {
  padding: 8px 15px;
}

@media only screen and (max-width: 767px) {
  .cart-list .c-btn {
    font-size: 12px;
    height: 35px;
  }
}

.cart-list select {
  padding: 8px 15px;
}

@media only screen and (max-width: 767px) {
  .cart-list select {
    font-size: 12px;
    height: 35px;
  }
}

.cart-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px 0;
  border-bottom: 1px solid #cccccc;
}

@media only screen and (max-width: 767px) {
  .cart-list__item {
    position: relative;
  }
}

.cart-list__img {
  width: 90px;
}

@media only screen and (max-width: 767px) {
  .cart-list__img {
    width: 60px;
  }
}

.cart-list__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 30px;
}

@media only screen and (max-width: 767px) {
  .cart-list__txt {
    display: block;
    margin-left: 15px;
  }
}

.cart-list-name {
  padding-right: 15px;
  width: 240px;
}

@media only screen and (max-width: 767px) {
  .cart-list-name {
    width: auto;
  }
}

.cart-list-name__ttl {
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .cart-list-name__ttl {
    margin-bottom: 5px;
    font-size: 16px;
  }
}

.cart-list-variation__name {
  color: #247453;
}

.cart-list-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 300px;
}

@media only screen and (max-width: 767px) {
  .cart-list-price {
    display: block;
    width: auto;
  }
}

.cart-list-price__price {
  padding-right: 15px;
  width: 120px;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .cart-list-price__price {
    margin-bottom: 10px;
    padding-right: 0;
    width: auto;
    font-size: 12px;
  }
}

.cart-list-num__edit {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .cart-list-num__edit {
    margin-right: 0;
  }
}

.cart-list-num__edit .c-btn {
  min-width: inherit;
}

.cart-list-total {
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .cart-list-total {
    margin-top: 10px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .cart-list-delete {
    position: absolute;
    bottom: 15px;
    right: 0;
  }
}

.cart-list-delete .c-btn {
  min-width: inherit;
}

@media only screen and (max-width: 767px) {
  .cart-list-delete .c-btn {
    margin: 0;
    border: 0;
    background: transparent;
    padding: 0;
    height: auto;
    font-size: 12px;
    color: #518f9c;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .cart-list-delete .c-btn:hover {
    margin: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: underline;
  }
}

.carousel-list__img {
  margin-bottom: 5px;
}

/* カート 合計金額 */
.cart-total-box {
  margin-left: auto;
  width: 390px;
}

@media only screen and (max-width: 767px) {
  .cart-total-box {
    width: auto;
  }
}

.cart-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #cccccc;
}

.cart-total__ttl {
  text-align: left;
}

.cart-total__body {
  text-align: right;
}

.cart-total-price {
  font-size: 24px;
  font-weight: bold;
}

.recent-item {
  margin-bottom: 60px;
}

/********** 購入フロー **********/
/***** ボタン *****/
.shop-pager {
  margin: 30px 0;
}

.shop-pager__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.shop-pager__item {
  margin-left: 15px;
  margin-right: 15px;
  width: 300px;
}

@media only screen and (max-width: 767px) {
  .shop-pager__item {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
}

.shop-pager__item a,
.shop-pager__item button {
  width: 100%;
  min-width: inherit;
}

@media only screen and (max-width: 767px) {
  .shop-pager__item:last-child {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

/***** 購入フローナビ *****/
@media (min-width: 993px) {
  .shop-flow-navi {
    margin-bottom: 60px;
    text-align: center;
  }
  .shop-flow-navi__item {
    position: relative;
    display: inline-block;
    margin-right: 23px;
    padding: 0 10px 0 5px;
    height: 40px;
    line-height: 40px;
    background: #eeeeee;
    text-align: center;
    text-decoration: none;
  }
  .shop-flow-navi__item:first-child {
    padding-left: 15px;
    border-radius: 4px 0 0 4px;
  }
  .shop-flow-navi__item:first-child:before {
    border: none;
  }
  .shop-flow-navi__item:last-child {
    margin-right: 0;
    padding-right: 15px;
    border-radius: 0 4px 4px 0;
  }
  .shop-flow-navi__item:last-child:after {
    border: none;
  }
  .shop-flow-navi__item:before,
  .shop-flow-navi__item:after {
    content: "";
    position: absolute;
    top: 0;
    border: 0 solid #eeeeee;
    border-width: 20px 10px;
    width: 0;
    height: 0;
  }
  .shop-flow-navi__item:before {
    left: -20px;
    border-left-color: transparent;
  }
  .shop-flow-navi__item:after {
    left: 100%;
    border-color: transparent;
    border-left-color: #eeeeee;
  }
  /* 現在状態 */
  .shop-flow-navi__item.is-bc-now {
    background-color: #a7627c;
    color: #ffffff;
  }
  .shop-flow-navi__item.is-bc-now:after {
    border-left-color: #a7627c;
  }
  .shop-flow-navi__item.is-bc-now:before {
    border-color: #a7627c;
    border-left-color: transparent;
  }
  /* 完了状態 */
  .shop-flow-navi__item.is-bc-on {
    background-color: #a7627c;
    color: #ffffff;
  }
  .shop-flow-navi__item.is-bc-on:after {
    border-left-color: #a7627c;
  }
  .shop-flow-navi__item.is-bc-on:before {
    border-color: #a7627c;
    border-left-color: transparent;
  }
}

@media (max-width: 992px) {
  .shop-flow-navi {
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .shop-flow-navi ul {
    position: relative;
    margin-left: 12%;
  }
  .shop-flow-navi ul:before {
    content: "";
    position: absolute;
    top: 5px;
    width: 84%;
    border-bottom: 1px solid #cccccc;
  }
  .shop-flow-navi__item {
    position: relative;
    float: left;
    width: 16.66666666%;
  }
  .shop-flow-navi__item:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid #cccccc;
    background: #ffffff;
  }
  .shop-flow-navi span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-indent: -9999px;
  }
  .shop-flow-navi i {
    position: absolute;
    top: -18px;
    left: -1px;
    color: #a7627c;
  }
  .shop-flow-navi__item.is-bc-now:before {
    border-color: #a7627c;
  }
  .shop-flow-navi__item.is-bc-on:before {
    border-color: #a7627c;
  }
}

#ad-address {
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  background: #f5f5f5;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
}

#ad-address:hover {
  background: #dddddd;
}

.cart-form-comment {
  color: #61b430;
}

.send-edit-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 15px;
}

.send-edit-btn-box__item {
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}

.send-edit-btn-box__item .c-btn {
  min-width: inherit;
}

.delivery-alert {
  margin-top: 10px;
}

/* カード情報 */
.shop-card-list__item {
  margin-bottom: 25px;
}

.shop-card-list__ttl {
  margin-bottom: 5px;
  font-size: 12px;
  color: #666666;
}

.shop-card-list__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (max-width: 767px) {
  .shop-card-list__term {
    display: block;
    margin-bottom: 5px;
  }
}

/***** 完了 *****/
.cart-complete__icon {
  margin-bottom: 30px;
  font-size: 90px;
  color: #aaaaaa;
}

/**************************************************/
/* top */
/**************************************************/
.main-visual-bg {
  background: #ffffff;
  overflow: hidden;
  max-height: 720px;
}

@media only screen and (max-width: 767px) {
  .main-visual-bg {
    max-height: inherit;
  }
}

@media (min-width: 1360px) {
  .main-visual-bg {
    overflow: hidden;
  }
}

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

/***** TOP PRODUCTS *****/
.l-top-product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .l-top-product-list {
    display: block;
  }
}

.l-top-product-list__item {
  position: relative;
  width: 50%;
  background-color: #ffffff;
}

.l-top-product-list__item:first-child {
  border-right: 0.5px solid #ffffff;
}

@media only screen and (max-width: 767px) {
  .l-top-product-list__item:first-child {
    border: none;
    border-bottom: 1px solid #ffffff;
  }
}

.l-top-product-list__item:last-child {
  border-left: 0.5px solid #ffffff;
}

@media only screen and (max-width: 767px) {
  .l-top-product-list__item:last-child {
    border: none;
  }
}

@media only screen and (max-width: 767px) {
  .l-top-product-list__item {
    width: auto;
  }
}

.l-top-product-list__item.is-style:first-child .l-top-product-list-txt {
  right: 30%;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .l-top-product-list__item.is-style:first-child .l-top-product-list-txt {
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.l-top-product-list__item.is-style:last-child .l-top-product-list-txt {
  left: 30%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .l-top-product-list__item.is-style:last-child .l-top-product-list-txt {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.l-top-product-list__img {
  -webkit-filter: brightness(85%);
  filter: brightness(85%);
  -webkit-transition: -webkit-filter 0.5s ease;
  transition: -webkit-filter 0.5s ease;
  -o-transition: filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
}

.l-top-product-list__img img {
  width: 100%;
}

.l-top-product-list__link:hover .l-top-product-list__img {
  -webkit-filter: brightness(95%);
  filter: brightness(95%);
}

.l-top-product-list-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

.l-top-product-list-txt__ttl {
  padding: 5px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 3px #000000;
}

@media only screen and (max-width: 1180px) {
  .l-top-product-list-txt__ttl {
    padding: 5px 0;
    font-size: 1.375rem;
  }
}

@media only screen and (max-width: 767px) {
  .l-top-product-list-txt__ttl {
    font-size: 1.125rem;
  }
}

.l-top-product-list-txt__ttl.is-style {
  font-size: 1.75rem;
  letter-spacing: 5px;
}

@media only screen and (max-width: 767px) {
  .l-top-product-list-txt__ttl.is-style {
    font-size: 1.125rem;
  }
}

.l-top-product-list-desc {
  padding-top: 15px;
  font-size: 0.9375rem;
  color: #333333;
}

.l-top-product-list-desc span {
  font-weight: bold;
  color: red;
}

@media only screen and (max-width: 767px) {
  .l-top-product-list-desc {
    padding-bottom: 30px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/***** TOP CONCEPT *****/
.top-concept {
  padding-top: 0;
  padding-bottom: 105px;
}

@media only screen and (max-width: 767px) {
  .top-concept {
    padding-bottom: 60px;
  }
}

.top-concept-wrap {
  position: relative;
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .top-concept-wrap {
    position: static;
    margin-top: 0;
  }
}

.top-concept-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .top-concept-list {
    display: block;
  }
}

.top-concept-list__left {
  width: 440px;
}

@media only screen and (max-width: 767px) {
  .top-concept-list__left {
    width: auto;
  }
}

.top-concept-list__left img {
  width: 100%;
}

.top-concept-list__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 60px 0 0 30px;
  height: 360px;
  background-color: #EEEEEE;
}

@media only screen and (max-width: 767px) {
  .top-concept-list__right {
    padding: 0;
    height: auto;
    background-color: inherit;
  }
}

.top-concept-ttl-main {
  margin-bottom: 30px;
  color: #999999;
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
}

@media only screen and (max-width: 767px) {
  .top-concept-ttl-main {
    margin-bottom: 35px;
    font-size: 1.5rem;
    color: #333333;
    text-align: center;
  }
}

.top-concept-list-ttl {
  font-size: 1.875rem;
  font-family: "Shippori Mincho", serif;
  line-height: 3.25rem;
  letter-spacing: 0.125rem;
}

@media only screen and (max-width: 767px) {
  .top-concept-list-ttl {
    padding-bottom: 30px;
    font-size: 1.25rem;
    letter-spacing: -0.0625rem;
    white-space: nowrap;
    text-align: center;
  }
}

.top-concept-desc {
  padding: 0 30px;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.125rem;
}

@media only screen and (max-width: 767px) {
  .top-concept-desc {
    padding: 0 15px;
    font-size: 1rem;
  }
}

/***** TOP SUPPORT *****/
.top-support {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #cccccc), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #cccccc), color-stop(0.75, #cccccc), color-stop(0.75, transparent), to(transparent));
  -webkit-background-size: 8px 8px;
}

@media only screen and (max-width: 767px) {
  .top-support {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.top-support-wrap {
  position: relative;
  padding: 45px 60px 60px 60px;
  background-color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .top-support-wrap {
    padding: 30px 15px;
  }
}

.top-support-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .top-support-list {
    display: block;
  }
}

.top-support-list__item {
  width: 50%;
}

.top-support-list__item img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .top-support-list__item:first-child {
    width: auto;
    text-align: center;
  }
  .top-support-list__item:last-child {
    width: auto;
  }
}

.top-support-ttl-s-wrap {
  margin-bottom: 30px;
  text-align: center;
}

.top-support-ttl-s {
  display: inline;
  font-size: 1.5rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #dcc0cc));
  background: -webkit-linear-gradient(transparent 70%, #dcc0cc 70%);
  background: -o-linear-gradient(transparent 70%, #dcc0cc 70%);
  background: linear-gradient(transparent 70%, #dcc0cc 70%);
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .top-support-ttl-s {
    font-size: 1.125rem;
  }
}

.sp-none {
  display: inline;
}

@media only screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.top-support-ttl {
  margin-bottom: 0;
  margin-bottom: 45px;
  font-size: 1.875rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .top-support-ttl {
    margin-bottom: 20px;
    font-size: 1.25rem;
  }
}

.top-support-desc {
  padding-top: 10px;
  letter-spacing: 2px;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", serif;
  line-height: 2.1875rem;
}

@media only screen and (max-width: 767px) {
  .top-support-desc {
    padding-top: 0;
    padding-bottom: 15px;
    font-size: 1rem;
    text-align: left;
  }
}

.top-support-desc span {
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .top-support-desc span {
    font-size: 1.25rem;
  }
}

.top-support-btn {
  position: absolute;
  bottom: 75px;
  left: 130px;
}

@media only screen and (max-width: 767px) {
  .top-support-btn {
    position: static;
    padding-top: 30px;
    text-align: center;
  }
}

/***** CLIENT SUPPORT *****/
.client-contents01 {
  padding-top: 165px;
}

@media only screen and (max-width: 767px) {
  .client-contents01 {
    padding-top: 101px;
  }
}

.top-client-support-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .top-client-support-list {
    display: block;
  }
}

.top-client-support-list {
  margin-right: -15px;
  margin-left: -15px;
}

@media only screen and (max-width: 767px) {
  .top-client-support-list {
    margin-right: 0;
    margin-left: 0;
  }
}

.top-client-support-list__item {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 30px;
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  .top-client-support-list__item {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 45px;
    width: auto;
  }
}

.top-client-support-ttl-name {
  padding-bottom: 10px;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.top-client-support-ttl-num {
  position: absolute;
  top: 0;
  left: 15px;
  color: #777777;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", serif;
}

@media only screen and (max-width: 767px) {
  .top-client-support-ttl-num {
    display: none;
  }
}

.top-client-support-img {
  width: 100%;
}

.top-client-support-desc {
  padding-top: 15px;
  color: #333333;
  font-size: 0.9375rem;
}

.support-manual {
  padding-top: 55px;
  padding-bottom: 5px;
  background-color: #f2f2f2;
}

@media only screen and (max-width: 767px) {
  .support-manual {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

/***** CLIENT PRODUCT *****/
.l-client-product-main-contents {
  position: relative;
  margin-bottom: 45px;
}

.l-client-product-main-contents img {
  -webkit-filter: brightness(80%);
  filter: brightness(80%);
  width: 100%;
}

.l-client-product-main-contents img:hover {
  -webkit-filter: brightness(95%);
  filter: brightness(95%);
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.l-top-product-list__link {
  display: block;
}

.l-top-product-list__link:hover {
  opacity: 0.8;
}

.l-client-product-txt {
  position: absolute;
  top: 50%;
  left: 60px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ffffff;
}

.l-client-product-txt i {
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .l-client-product-txt i {
    font-size: 1.125rem;
  }
}

.l-client-product-desc {
  padding-bottom: 20px;
  font-size: 1rem;
}

@media only screen and (max-width: 767px) {
  .l-client-product-desc {
    padding-bottom: 10px;
    font-size: 0.75rem;
  }
}

.l-client-product-ttl {
  padding-bottom: 20px;
  font-size: 1.875rem;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .l-client-product-ttl {
    padding-bottom: 10px;
    font-size: 1.125rem;
  }
}

.style-product {
  padding-top: 0;
  padding-bottom: 0;
}

.style-border {
  border-top: 1px solid #cccccc;
}

.l-second-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .l-second-btn-wrap {
    display: block;
  }
}

.l-second-btn-wrap .btn-more {
  padding-right: 15px;
  padding-left: 15px;
}

@media only screen and (max-width: 767px) {
  .l-second-btn-wrap .btn-more {
    padding-right: 0;
    padding-left: 0;
  }
  .l-second-btn-wrap .btn-more:first-child {
    padding-bottom: 30px;
  }
}

/**************************************************/
/* COMPANY */
/**************************************************/
.company-contents {
  margin-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .company-contents {
    margin-bottom: 60px;
  }
}

.company-main__img {
  margin-bottom: 30px;
}

.company-map iframe {
  width: 100%;
}

/**************************************************/
/* ABOUT */
/**************************************************/
/***** ABOUT 詳細 *****/
.about {
  overflow: hidden;
}

.support-article {
  margin-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .support-article {
    margin-bottom: 60px;
  }
}

.support-article.is-client .c-ttl-sub:before {
  background: #518f9c;
}

.support-article.is-client .c-ttl-sub-s {
  border-color: #518f9c;
}

.support-article.is-client .c-flow-list__ttl-step {
  background: #518f9c;
}

.support-article:nth-child(even) {
  padding: 90px 500%;
  margin-right: -500%;
  margin-left: -500%;
  background: #efede0;
}

.support-article:nth-child(even).is-client {
  color: #ffffff;
  background: #555555;
}

.support-article:nth-child(even).is-client .c-ttl-sub,
.support-article:nth-child(even).is-client .c-ttl-sub-s {
  color: #ffffff;
}

.support-article:nth-child(even).is-client .c-flow-list__body {
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .support-article:nth-child(even) {
    padding: 45px 15px;
    margin-right: -15px;
    margin-left: -15px;
  }
}

.about-article {
  margin-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .about-article {
    margin-bottom: 60px;
  }
}

.about-main {
  margin-bottom: 90px;
}

.about-box {
  margin-bottom: 90px;
}

.about-img {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .about-img {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 60px;
  }
}

.about-img img {
  width: 100%;
}

.about-body {
  margin-bottom: 30px;
  padding-right: 30px;
  padding-left: 30px;
  line-height: 1.8;
}

.about-client-price p {
  text-align: center;
  padding-bottom: 30px;
}

.about-client-price p span {
  font-size: 1.125rem;
  font-weight: bold;
}

/**************************************************/
/* CLIENT */
/**************************************************/
.client-contents02.is-padding {
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  .client-contents02.is-padding {
    padding-top: 75px;
  }
}

.client-contents03.is-bg {
  background-color: #555555;
}

.client-contents03 .client-marker-ttl {
  color: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #518f9c));
  background: -webkit-linear-gradient(transparent 75%, #518f9c 75%);
  background: -o-linear-gradient(transparent 75%, #518f9c 75%);
  background: linear-gradient(transparent 75%, #518f9c 75%);
}

.client-contents03 .client-marker-lead,
.client-contents03 .client-contents03-last-txt {
  color: #ffffff;
}

.client-contents03 .client-marker-lead span,
.client-contents03 .client-contents03-last-txt span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #518f9c));
  background: -webkit-linear-gradient(transparent 75%, #518f9c 75%);
  background: -o-linear-gradient(transparent 75%, #518f9c 75%);
  background: linear-gradient(transparent 75%, #518f9c 75%);
}

.client-contents03 .client-pentagon-num {
  background-color: #518f9c;
}

.client-contents03 .client-pentagon-num:after {
  border-color: #518f9c transparent transparent transparent;
}

.client-contents02,
.client-contents03 {
  color: #333333;
  line-height: 30px;
}

/***** client-contents02 *****/
.client-contents02-bg-wrap {
  margin-bottom: 70px;
  padding-top: 60px;
  background-color: #efede0;
  border-radius: 20px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .client-contents02-bg-wrap {
    margin-bottom: 45px;
    padding: 30px 15px 0 15px;
  }
}

.client-marker-ttl-wrap {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 1.75rem;
  font-family: "Shippori Mincho", serif;
}

@media only screen and (max-width: 767px) {
  .client-marker-ttl-wrap {
    font-size: 1.5rem;
  }
}

.client-marker-ttl-wrap span {
  font-size: 3.75rem;
}

@media only screen and (max-width: 767px) {
  .client-marker-ttl-wrap span {
    font-size: 1.875rem;
  }
}

.client-marker-ttl {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fff039));
  background: -webkit-linear-gradient(transparent 70%, #fff039 70%);
  background: -o-linear-gradient(transparent 70%, #fff039 70%);
  background: linear-gradient(transparent 70%, #fff039 70%);
}

@media only screen and (max-width: 520px) {
  .client-marker-ttl {
    font-size: 1.125rem;
  }
}

.client-marker-lead {
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .client-marker-lead {
    margin-bottom: 30px;
  }
}

.client-marker-lead.is-margin {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .client-marker-lead.is-margin {
    margin-bottom: 30px;
  }
}

.client-contents02-fukidashi01,
.client-contents02-fukidashi02 {
  display: inline-block;
  position: relative;
  padding: 30px;
  border-radius: 20px;
  min-width: 287px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  background-color: #ffffff;
  text-align: center;
  line-height: 35px;
}

@media only screen and (max-width: 767px) {
  .client-contents02-fukidashi01,
  .client-contents02-fukidashi02 {
    padding: 10px;
    min-width: 180px;
    font-size: 1rem;
  }
}

.client-contents02-fukidashi01:before,
.client-contents02-fukidashi02:before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -24px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  border-width: 24px 0px 0px 34px;
}

@media only screen and (max-width: 767px) {
  .client-contents02-fukidashi01:before,
  .client-contents02-fukidashi02:before {
    right: -60px;
  }
}

.client-contents02-fukidashi01 {
  margin-bottom: 30px;
  top: 50px;
  right: -40px;
}

@media only screen and (max-width: 767px) {
  .client-contents02-fukidashi01 {
    top: auto;
    right: auto;
  }
}

.client-contents02-fukidashi02 {
  top: 260px;
  right: 330px;
}

@media only screen and (max-width: 767px) {
  .client-contents02-fukidashi02 {
    margin-bottom: 30px;
    top: auto;
    right: auto;
  }
}

@media only screen and (max-width: 767px) {
  .client-contents02-fukidashi02:before {
    border-width: 24px 34px 0px 0;
  }
}

.client-contents02-img-pic {
  margin-top: -125px;
  text-align: right;
  padding-right: 50px;
}

@media only screen and (max-width: 767px) {
  .client-contents02-img-pic {
    margin-top: 0;
    text-align: center;
    padding-right: 0;
  }
}

.client-contents02-img-pic img {
  width: 518px;
}

@media only screen and (max-width: 767px) {
  .client-contents02-img-pic img {
    width: 80%;
  }
}

.client-contents02-txt-wrap {
  padding-top: 60px;
  text-align: center;
  background-image: url(../images/client-icon-img.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 43px;
  font-family: "Shippori Mincho", serif;
}

.client-contents02-txt-wrap.is-client {
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .client-contents02-txt-wrap {
    padding-top: 40px;
  }
}

.client-contents02-txt {
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .client-contents02-txt {
    font-size: 1rem;
  }
}

.client-contents02-txt:before {
  content: '';
  position: absolute;
  left: -80px;
  bottom: 30px;
  display: inline-block;
  width: 70px;
  height: 1px;
  background-color: black;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

@media only screen and (max-width: 767px) {
  .client-contents02-txt:before {
    content: none;
  }
}

.client-contents02-txt:after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: 30px;
  display: inline-block;
  width: 70px;
  height: 1px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

@media only screen and (max-width: 767px) {
  .client-contents02-txt:after {
    content: none;
  }
}

/***** client-contents03 *****/
.support-contents03 {
  background-color: #efede0;
  text-align: center;
}

.client-contents03 {
  background-color: #eeeeee;
  text-align: center;
}

.client-contents03-merit-list {
  margin-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .client-contents03-merit-list {
    margin-bottom: 60px;
  }
}

.client-contents03-merit-list__item {
  margin-bottom: 30px;
}

.client-contents03-merit-list__item:last-child {
  margin-bottom: 0;
}

.client-contents03-merit-contents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 60px;
  text-align: left;
  background-color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .client-contents03-merit-contents-wrap {
    display: block;
    padding: 30px 30px;
  }
}

.client-contents03-merit-contents-left {
  padding-right: 30px;
  text-align: center;
  border-right: 1px solid #dddddd;
}

@media only screen and (max-width: 767px) {
  .client-contents03-merit-contents-left {
    margin-bottom: 15px;
    padding-right: 0;
    padding-bottom: 15px;
    border-right: none;
    border-bottom: 1px solid #dddddd;
  }
}

.client-contents03-merit-contents-right {
  padding-left: 30px;
  text-align: center;
  border-left: 1px solid #dddddd;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .client-contents03-merit-contents-right {
    padding-left: 0;
    border-left: none;
  }
}

.client-pentagon-num {
  display: inline-block;
  width: 60px;
  height: 40px;
  position: relative;
  background-color: #a7627c;
  color: #ffffff;
  font-size: 0.75rem;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
}

.client-pentagon-num span {
  display: inline-block;
  margin-top: -5px;
  font-size: 1.25rem;
  line-height: 1.875rem;
}

@media only screen and (max-width: 767px) {
  .client-pentagon-num {
    margin-bottom: 10px;
  }
}

.client-pentagon-num:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #a7627c transparent transparent transparent;
  border-width: 10px 30px 0px 30px;
}

.client-contents03-merit-ttl {
  margin-top: 10px;
  font-size: 1.75rem;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .client-contents03-merit-ttl {
    font-size: 1.5rem;
  }
}

.client-contents03-merit-lead {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 2px;
}

.client-contents03-merit-txt {
  letter-spacing: 2px;
}

.client-contents03-merit-txt span {
  font-weight: bold;
}

.client-contents03-plan-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px;
  margin-right: -15px;
  margin-left: -15px;
}

@media only screen and (max-width: 767px) {
  .client-contents03-plan-list {
    display: block;
    margin-right: 0;
    margin-left: 0;
  }
}

.client-contents03-plan-list__item {
  margin-bottom: 40px;
  padding-right: 15px;
  padding-left: 15px;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .client-contents03-plan-list__item {
    padding-right: 0px;
    padding-left: 0px;
    width: auto;
  }
}

.client-contents03-plan-contents-wrap {
  padding: 30px;
  border-radius: 20px;
  background-color: #ffffff;
}

.client-contents03-plan-num-ttl-wrap {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .client-contents03-plan-num-ttl-wrap {
    margin-bottom: 15px;
  }
}

.client-contents03-plan-ttl {
  padding-left: 60px;
  font-size: 1.5rem;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .client-contents03-plan-ttl {
    padding-left: 65px;
    font-size: 1.25rem;
  }
}

.client-pentagon-num-wrap {
  position: absolute;
  top: -10px;
  left: 0;
}

.client-contents03-img-pic {
  margin-bottom: 25px;
}

.client-contents03-plan-lead {
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", serif;
  text-align: left;
}

.client-contents03-plan-txt {
  margin-bottom: 30px;
  text-align: left;
}

.client-contents03-last-txt {
  font-size: 1.25rem;
  font-family: "Shippori Mincho", serif;
}

@media only screen and (max-width: 767px) {
  .client-contents03-last-txt {
    font-size: 1rem;
  }
}

.client-contents03-last-txt span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fff039));
  background: -webkit-linear-gradient(transparent 50%, #fff039 50%);
  background: -o-linear-gradient(transparent 50%, #fff039 50%);
  background: linear-gradient(transparent 50%, #fff039 50%);
}

.client-contents03-last-txt {
  margin-bottom: 45px;
  line-height: 40px;
}

.margin60 {
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .margin60 {
    margin-bottom: 45px;
  }
}

/******SALON*****/
.about-contents-salon {
  background-color: #f4f4f4;
  padding: 30px 30px 30px 30px;
  border-radius: 10px;
}

.second-salon {
  overflow: hidden;
}

.l-second-salon-area-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: -15px;
}

.l-second-salon-area-list__item {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
  border-right: 1px solid #cccccc;
  font-size: 1.125rem;
}

.l-second-salon-area-list__item:last-of-type {
  border-right: none;
}

@media only screen and (max-width: 767px) {
  .l-second-salon-area-list__item {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.l-second-salon-area-list__link {
  color: #393939;
}

.l-second-salon-area-list__link:hover {
  color: #393939;
  text-decoration: none;
}

.l-second-salon-area-list__link:hover .l-second-salon-area-list__main {
  border-bottom: 1px solid #333333;
}

.l-second-salon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

@media only screen and (max-width: 767px) {
  .l-second-salon-list {
    display: block;
    margin-right: 0;
    margin-left: 0;
  }
}

.l-second-salon-list__item {
  width: 50%;
  margin-bottom: 60px;
  padding-right: 20px;
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  .l-second-salon-list__item {
    width: auto;
    padding-right: 0;
    padding-left: 0;
  }
}

.salon-ttl__item {
  margin-top: 60px;
  width: 100%;
}

.c-salon-type02-box {
  margin-bottom: 30px;
}

.c-salon-type02__img {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.c-salon-type02__txt {
  line-height: 1.8;
}

/******サイト名文字色*****/
.b-color {
  color: #a7627c;
  font-weight: bold;
}

.b-color.is-size {
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .b-color.is-size {
    font-size: 1.25rem;
  }
}

.s-color {
  color: #518f9c;
  font-weight: bold;
}

.s-color.is-size {
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .s-color.is-size {
    font-size: 1.25rem;
  }
}

/******LOGIN*****/
.second-login {
  padding-top: 90px;
  font-family: YakuHanMPs, "Noto Serif JP", serif;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .second-login {
    padding: 0 15px;
    padding-top: 15px;
  }
}

.second-login-form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 15px;
  width: 100%;
}

.second-login-form-ttl {
  width: 120px;
  font-size: 1rem;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .second-login-form-ttl {
    width: 90px;
    font-size: 0.875rem;
  }
}

.second-login-form {
  width: 360px;
}

.l-main-navi-contact.is-second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-contact.is-second {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.l-main-navi-contact.is-second .l-main-navi-contact__link {
  padding: 0 15px;
  border-radius: 15px;
  background-color: #eeeeee;
  font-family: "Shippori Mincho", serif;
  line-height: 30px;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .l-main-navi-contact.is-second .l-main-navi-contact__link {
    margin-top: 30px;
  }
}

.l-main-navi-contact.is-second .l-main-navi-contact__link:hover {
  color: #ffffff;
  background-color: #518f9c;
  text-decoration: none;
}

/**************************************************/
/* よくある質問 */
/**************************************************/
.p-faq {
  overflow: hidden;
}

.p-faq-list {
  border-top: 1px solid #cccccc;
}

.p-faq-list__item {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #cccccc;
}

.p-faq-list__ttl,
.p-faq-list-answer__ttl {
  position: relative;
  padding-left: 35px;
  font-size: 1.125rem;
}
.p-faq-list__ttl:before,
.p-faq-list-answer__ttl:before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  font-family: "Klee One", cursive;
  font-weight: bold;
  line-height: 1.2;
}

.p-faq-list__ttl {
  margin-bottom: 20px;
}
.p-faq-list__ttl:before {
  content: "Q";
  color: #1c8297;
}

.p-faq-list-answer__ttl {
  margin-bottom: 15px;
}
.p-faq-list-answer__ttl:before {
  content: "A";
  color: #b8215a;
}

.p-faq-list-answer__body {
  line-height: 1.8;
}

/*# sourceMappingURL=style.css.map */