  @charset "utf-8";

  /* CSS Document */

  /*
  font-family: 'Roboto', sans-serif;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
*/

  /***********
base
************/
  html,
  body {
    height: 100%;
    min-height: 100%;
    font-size: 13px;
    font-weight: normal;
    font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
    line-height: 1.5;
    letter-spacing: 0.02em;
    background-color: #e9e2dc;
    /*
  font-family: 'Yu Mincho','游明朝',YuMincho,'Hiragino Mincho ProN',serif;
*/
  }

  a {
    text-decoration: underline;
    transition: all 0.2s ease;
  }

  a:visited {}

  a:hover,
  a:active {
    color: ;
    text-decoration: none;
  }

  img {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  @media screen and (min-width:835px) {
    a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
      text-decoration: none;
    }
  }

  /***********************
layout
************************/

  /***********
common
************/

  .l-relative {
    position: relative !important;
  }

  .l-textAlign-center {
    text-align: center !important;
  }

  .l-textAlign-right {
    text-align: right !important;
  }

  .l-textAlign-left {
    text-align: left !important;
  }

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

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

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

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

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

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

  .l-bottom-xxlarge {
    margin-bottom: 80px !important;
  }

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

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

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

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

  .l-top-large {
    margin-top: 30px !important;
  }

  .l-top-xlarge {
    margin-top: 50px !important;
  }

  .l-top-xxlarge {
    margin-top: 80px !important;
  }

  @media screen and (max-width:834px) {

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

    .l-bottom-xsmall {
      margin-bottom: 7px !important;
    }

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

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

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

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

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

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

    .l-top-xsmall {
      margin-top: 7px !important;
    }

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

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

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

    .l-top-xlarge {
      margin-top: 30px !important;
    }

    .l-top-xxlarge {
      margin-top: 40px !important;
    }
  }

  .text-main {
    display: inline-block;
    width: 80%;
    font-size: 120%;
    font-weight: bold;
    padding: 0.5em 0;
    border-top: solid 3px #FD5391;
    border-bottom: solid 3px #FD5391;
  }

  .text-main-guidance {
    display: inline-block;
    width: 100%;
    font-size: 160%;
    color: #fff;
    font-weight: bold;
    padding: 0.5em 0;
    background-color: #FD5391;
    border-bottom: solid 3px #FD5391;
  }

  @media screen and (max-width:834px) {
    .text-main-guidance {
      font-size: 100%;
    }
  }

  /***********
layout
************/

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

  .l-contents {
    background-color: #fff;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  /***********
base
************/

  .l-base {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .l-block-bottom {
    padding-bottom: 80px;
  }

  .l-base-contact {
    width: auto;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  /**********************************************
module-header
***********************************************/

  .header {
    background-color: #fff;
  }

  .header-logo {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .header-logo img {
    width: 160px;
  }

  /***********
bg
************/

  .bg01 {
    background-color: #ece3e3;
  }

  .bg02 {}

  /***********
link
************/

  .link {
    text-align: center;
    padding: 50px 20px;
  }

  .link-btn {}

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

  .link.is-inview a {
    display: inline-block;
    animation: anim-jump 1s normal 1 0.5s;
  }

  @keyframes anim-jump {
    0% {
      transform: translateY(0px);
    }

    10% {
      transform: translateY(-10px);
    }

    20% {
      transform: translateY(0px);
    }

    30% {
      transform: translateY(-10px);
    }

    40% {
      transform: translateY(0px);
    }
  }




  /*
.link{
  padding: 40px 0;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.link-btn{
  display: block;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Yu Mincho Demibold','YuMincho Demibold','Yu Mincho','游明朝',YuMincho,'Hiragino Mincho ProN',serif;
  background: linear-gradient( 120deg, #d8b01d 0%, #e9ddb1 25%, #ae841d 60%, #eadfb4 100%);
  color: #77291d;
  padding: 0.7em 0em 0.65em;
  line-height: 1.3;
  border-radius: 100vw;
  font-size: 300%;
  box-shadow: 3px 6px 0 rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.link-btn::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 200px;
  background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: anim-shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  opacity: 0.7;
}

@keyframes anim-shiny {
  0% {
      transform: scale(0) rotate(25deg);
      opacity: 0;
  }

  50% {
      transform: scale(1) rotate(25deg);
      opacity: 1;
  }

  100% {
      transform: scale(50) rotate(25deg);
      opacity: 0;
  }
}


@media screen and (max-width:768px) {

  .link{
    padding: 30px 0;
    width: 80%;
  }

  .link-btn{
    font-size: 200%;
    box-shadow: 2px 4px 0 rgba(0, 0, 0, 0.5);
  }

}
*/

  /***********
brand
************/

  .brand {
    padding: 10px 0;
  }

  /***********
brandSlider
************/

  .brandSlider {
    position: relative;
    display: flex;
  }

  .brandSlider-img {
    padding: 10px 10px;
    width: 400px;
  }

  .brandSlider-img img {
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }


  /*
slick
*/

  .brandSlider .slick-slide li {
    vertical-align: bottom;
  }

  .brandSlider .slick-next,
  .brandSlider .slick-prev {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 99;
  }

  .brandSlider .slick-next {
    right: 0;
  }

  .brandSlider .slick-prev {
    left: 0;
  }

  .brandSlider .slick-next span,
  .brandSlider .slick-prev span {
    display: inline-block;
    width: 40px;
    height: 60px;
    margin-top: -30px;
    background-color: #000;
    position: relative;
    cursor: pointer;
  }

  .brandSlider .slick-next span::before,
  .brandSlider .slick-prev span::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -5px;
  }

  .brandSlider .slick-next span::before {
    transform: rotate(45deg);
    margin-left: -8px;
  }

  .brandSlider .slick-prev span::before {
    transform: rotate(-135deg);
    margin-left: -5px;
  }

  @media screen and (max-width:768px) {

    .brandSlider-img {
      width: 50vmin;
      padding: 10px 5px;
    }

    .brandSlider-img img {
      border: 1px solid #ddd;
    }

  }

  /***********
furisode
************/

  .furisode {
    position: relative;
  }

  .furisode-title {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    pointer-events: none;
  }

  .furisode-text {
    position: relative;
    z-index: 1;
    margin-top: -30px;
  }

  /***********
furisodeSlider
************/

  .furisodeSlider {
    position: relative;
    display: flex;
    -webkit-mask: url(../../img/mask01.png);
    mask: url(../../img/mask01.png);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    overflow: hidden;
    position: relative;
    z-index: 9;
  }

  .furisodeSlider-img {
    width: 400px;
  }

  /*
slick
*/

  .furisodeSlider .slick-slide li {
    vertical-align: bottom;
  }

  .furisodeSlider .slick-next,
  .furisodeSlider .slick-prev {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 99;
  }

  .furisodeSlider .slick-next {
    right: 0;
  }

  .furisodeSlider .slick-prev {
    left: 0;
  }

  .furisodeSlider .slick-next span,
  .furisodeSlider .slick-prev span {
    display: inline-block;
    width: 40px;
    height: 60px;
    margin-top: -50px;
    position: relative;
    cursor: pointer;
  }

  .furisodeSlider .slick-next span::before,
  .furisodeSlider .slick-prev span::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -5px;
  }

  .furisodeSlider .slick-next span::before {
    transform: rotate(45deg);
    margin-left: -22px;
  }

  .furisodeSlider .slick-prev span::before {
    transform: rotate(-135deg);
    margin-left: -2px;
  }


  @media screen and (max-width:768px) {

    .furisodeSlider-img {
      width: 70vmin;
    }

    .furisodeSlider-img img {}

  }


  /***********
flow
************/

  .flow {
    position: relative;
  }

  /***********
flowSlider
************/

  .flowSlider {}

  .flowSlider-img {}

  /*
slick
*/

  .flowSlider .slick-slide li {
    vertical-align: bottom;
  }

  .flowSlider .slick-next,
  .flowSlider .slick-prev {
    display: block;
    position: absolute;
    top: 42%;
    z-index: 99;
  }

  .flowSlider .slick-next {
    right: 8%;
  }

  .flowSlider .slick-prev {
    left: 8%;
  }

  .flowSlider .slick-next span,
  .flowSlider .slick-prev span {
    display: inline-block;
    width: 40px;
    height: 60px;
    position: relative;
    cursor: pointer;
  }

  .flowSlider .slick-next span::before,
  .flowSlider .slick-prev span::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-top: 2px solid #646464;
    border-right: 2px solid #646464;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -5px;
  }

  .flowSlider .slick-next span::before {
    transform: rotate(45deg);
    margin-left: -24px;
  }

  .flowSlider .slick-prev span::before {
    transform: rotate(-135deg);
    margin-left: -2px;
  }

  .flowSlider .slick-disabled {
    opacity: 0;
  }

  .flowSlider .slick-dots {
    position: absolute;
    width: 100%;
    left: 0;
    top: 20px;
    display: flex;
    justify-content: center;
  }

  .flowSlider .slick-dots button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: #8eb6d3;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    text-indent: -99999px;
    overflow: hidden;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
  }

  .flowSlider .slick-dots .slick-active button {
    background-color: #376485;
  }


  @media screen and (max-width:520px) {

    .flowSlider .slick-next,
    .flowSlider .slick-prev {
      top: 17vw;
    }

    .flowSlider .slick-next {
      right: 5%;
    }

    .flowSlider .slick-prev {
      left: 5%;
    }

  }



  /***********
collection
************/

  .collection {
    display: flex;
    margin-bottom: 30px;
  }

  .collection.is-reverse {
    flex-direction: row-reverse;
  }

  .collection-visual {
    width: 52%;
  }

  .collection-inner {
    width: 48%;
    position: relative;
  }

  .collectionSlider {
    position: relative;
    display: flex;
  }

  .collectionSlider-img {
    padding: 0 10%;
  }

  .collectionSlider-box {
    padding-top: 15px;
    color: #666;
    font-feature-settings: "palt";
  }

  .collectionSlider-num {
    font-size: 10px;
    padding-bottom: 0.5em;
  }

  .collectionSlider-price {
    line-height: 1.3;
  }

  /*
color
*/

  .collection.is-color01 {
    border-bottom: 5px solid #93b8c4;
  }

  .collection.is-color02 {
    border-bottom: 5px solid #a2705d;
  }

  .collection.is-color03 {
    border-bottom: 5px solid #887880;
  }

  .collection.is-color04 {
    border-bottom: 5px solid #414762;
  }

  .collection.is-color05 {
    border-bottom: 5px solid #8aae97;
  }

  .collection.is-color06 {
    border-bottom: 5px solid #cb515f;
  }

  /*
slick
*/

  .collectionSlider .slick-slide li {
    vertical-align: bottom;
  }

  .collectionSlider .slick-next,
  .collectionSlider .slick-prev {
    display: block;
    position: absolute;
    top: 40%;
    z-index: 99;
  }

  .collectionSlider .slick-next {
    right: 0;
  }

  .collectionSlider .slick-prev {
    left: 0;
  }

  .collectionSlider .slick-next span,
  .collectionSlider .slick-prev span {
    display: inline-block;
    width: 40px;
    height: 60px;
    margin-top: -50px;
    position: relative;
    cursor: pointer;
  }

  .collectionSlider .slick-next span::before,
  .collectionSlider .slick-prev span::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -5px;
  }

  .collectionSlider .slick-next span::before {
    transform: rotate(45deg);
    margin-left: -12px;
  }

  .collectionSlider .slick-prev span::before {
    transform: rotate(-135deg);
    margin-left: -8px;
  }



  /***********
tickerSlider
************/

  .tickerSlider {
    position: relative;
  }

  /*
slick
*/

  .tickerSlider .slick-slide li {
    vertical-align: bottom;
  }

  .tickerSlider .slick-next,
  .tickerSlider .slick-prev {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 99;
  }

  .tickerSlider .slick-next {
    right: 0;
  }

  .tickerSlider .slick-prev {
    left: 0;
  }

  .tickerSlider .slick-next span,
  .tickerSlider .slick-prev span {
    display: inline-block;
    width: 40px;
    height: 60px;
    margin-top: -40px;
    background-color: #000;
    position: relative;
    cursor: pointer;
  }

  .tickerSlider .slick-next span::before,
  .tickerSlider .slick-prev span::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -5px;
  }

  .tickerSlider .slick-next span::before {
    transform: rotate(45deg);
    margin-left: -8px;
  }

  .tickerSlider .slick-prev span::before {
    transform: rotate(-135deg);
    margin-left: -5px;
  }



  /***********
bg
************/

  .bgColor01 {
    background-color: #EDECEA;
  }

  /**********************************************
module-closing
***********************************************/

  .closing {
    background-color: #fff;
    padding: 50px 5%;
    border-radius: 10px;
    text-align: center;
  }

  .closing-subTitle {
    color: #fff;
    text-align: center;
    padding-top: 60px;
    font-size: 131%;
  }

  .closing-title {
    text-align: center;
    color: #5F5F5F;
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: 250%;
    font-weight: bold;
  }


  @media screen and (max-width:768px) {

    .closing {
      padding: 15px 15px;
    }

    .closing-title {
      padding-top: 20px;
      padding-bottom: 20px;
      font-size: 200%;
    }

    .closing-title img {
      max-width: 200px;
    }


  }

  /**********************************************
module-info
***********************************************/

  .info {
    display: flex;
    text-align: left;
  }

  .info-title {
    width: 130px;
  }

  .info-title span {
    display: block;
    background-color: #EDECEA;
    color: #5F5F5F;
    font-size: 170%;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    padding: 12px 0;
    letter-spacing: 0.1em;
  }

  .info-inner {
    flex: 1;
    padding-left: 20px;
  }

  .info-schedule {
    padding-top: 0;
    font-size: 300%;
    font-weight: bold;
    line-height: 1.5;
  }

  .info-schedule small {
    font-size: 50%;
  }

  .info-schedule-tips {
    font-size: 131%;
    font-weight: bold;
    line-height: 1;
  }

  @media screen and (max-width:768px) {

    .info {
      display: block;
      text-align: left;
      padding-bottom: 30px;
    }

    .info-title {
      width: auto;
      margin-bottom: 5px;
    }

    .info-title span {
      font-size: 131%;
      padding: 6px 0;
    }

    .info-inner {
      padding-left: 0px;
    }

    .info-schedule {
      padding-top: 5px;
      font-size: 154%;
      text-align: center;
    }

    .info-schedule small {
      font-size: 80%;
    }

    .info-schedule-tips {
      font-size: 85%;
      text-align: center;
      padding-top: 10px;
    }

  }

  /**********************************************
module-hall
***********************************************/

  .hall {
    padding-bottom: 30px;
    padding-top: 15px;
  }

  .hall:not(:last-child) {
    margin-bottom: 30px;
  }

  .hall-title {
    font-size: 200%;
    padding-bottom: 10px;
  }

  .hall-logo {
    width: 13%;
    padding-right: 10px;
    float: left;
  }

  .hall-img {
    float: right;
    width: 30%;
  }

  .hall-data {
    display: flex;
    font-size: 120%;
  }

  .hall-data dt {
    width: 5em;
    font-weight: bold;
    color: #5F5F5F;
  }

  .hall-data dd {
    flex: 1;
  }

  .font-s {
    font-size: 100%;
  }

  .hall-btn {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 3px 13px;
    color: #ddd;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transform: translateY(-4px);
    margin-top: 5px;
  }

  .hall-btn:hover {
    background-color: #e50066;
    color: #fff;
  }


  @media screen and (max-width:768px) {

    .hall {
      padding-top: 5px;
      padding-bottom: 20px;
    }

    .hall-title {
      font-size: 154%;
      padding-bottom: 5px;
      margin-top: 0;
    }


    .hall-logo {
      width: 17%;
      padding-right: 10px;
    }

    .hall-img {
      width: 100%;
      text-align: center;
      padding-bottom: 20px;
    }

    .hall-data {
      font-size: 116%;
      padding-bottom: 5px;
    }

    .hall-data dt {
      width: 5em;
      font-weight: bold;
    }

    .hall-data dd {
      flex: 1;
    }

    .hall-btn {
      display: inline-block;
      margin-left: 0;
      margin-top: 5px;
      padding: 3px 13px;
      text-align: center;
      font-size: 11px;
      transform: translateY(0px);
      margin-top: 0;
    }

    .hall-btn:hover {}



  }

  /**********************************************
module-contact
***********************************************/


  .contact {
    background-color: #eef7fb;
    position: relative;
    font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  }

  .contact-flow {
    display: flex;
    margin-bottom: 50px;
    justify-content: space-between;
  }

  .contact-flow li {
    width: 30%;
    background-color: #ddd;
    padding: 15px 0;
    text-align: center;
    font-size: 108%;
    font-weight: bold;
    position: relative;
    border-radius: 10px;
  }

  .contact-flow li:not(:last-child)::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #aaa;
    position: absolute;
    right: -10%;
    top: 15px;
  }

  .contact-flow li.is-active {
    background-color: #5F5F5F;
    color: #fff;
  }

  .form-table {}

  .form-table tr {
    border-bottom: 1px dashed #aaa;
  }

  .form-table th {
    text-align: left;
    vertical-align: top;
    padding: 30px 0 40px 20px;
    font-size: 108%;
    font-weight: bold;
    width: 36%;
    position: relative;
  }

  .ui-datepicker th {
    width: 0;
  }

  .form-table td {
    padding: 20px 20px 20px 0;
    font-size: 116%;
    text-align: left;
  }

  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  input[type="number"] {
    -moz-appearance: textfield;
  }

  .input-icon {
    display: inline-block;
    background-color: #fff82f;
    color: #000;
    width: 40px;
    padding: 7px 0px;
    font-size: 12px;
    border-radius: 2px;
    letter-spacing: 0.1em;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    vertical-align: 15%;
    margin-left: 15px;
    position: absolute;
    right: 20px;
  }

  .input-icon.must {
    background-color: #c00;
    color: #fff;
  }

  .input-icon.any {
    background-color: #ddd;
  }

  .input-text,
  .input-textarea {
    font-size: 16px;
    padding: 8px 15px;
    border: none;
    background-color: #fff;
    border: 2px solid #ddd;
  }

  .input-text:focus,
  .input-textarea:focus {
    box-shadow: 0 0 5px #60bde3;
  }

  .input-text {
    width: 50%;
    box-sizing: border-box;
  }

  .input-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 60px;
    font-size: 16px;
    padding: 8px 20px 8px 10px;
    background-color: #f6f6f6;
    border: 2px solid #ddd;
    background: url(../../img/select_arrow.png) no-repeat right center;
  }

  .input-full {
    width: 100%;
    box-sizing: border-box;
  }

  .input-half {
    width: 50%;
    box-sizing: border-box;
  }

  .input-small {
    width: 130px;
    box-sizing: border-box;
  }



  .label-list-inline {
    display: inline-block;
    padding-right: 30px;
  }

  .label-list-inline label {
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 5px;
  }

  .label-list-inline label:hover {}

  .label-list-inline label input {
    vertical-align: middle;
    margin-right: 0.3em;
  }



  .input-zip {
    padding-left: 40px;
    width: 160px;
    box-sizing: border-box;
  }

  .input-zip-btn {
    appearance: none;
    display: inline-block;
    height: 42px;
    line-height: 40px;
    background-color: rgb(238, 238, 238);
    font-size: 16px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    vertical-align: middle;
    cursor: pointer;
    margin: 0px 0px 0px 10px;
    padding: 0px 20px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    border-image: initial;
    text-decoration: none;
  }


  .zip-get-btn {
    display: inline-block;
    margin-left: 15px;
    background-color: #000;
    font-size: 108%;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }

  .zip-get-btn:hover {
    background-color: #e50066;
  }

  .input-heading {
    display: inline-block;
    padding: 2px 13px;
    font-size: 18px;
    font-weight: bold;
    color: #999;
    box-sizing: border-box;
    z-index: 3;
    position: absolute;
    margin: 7px 0 0 0;
  }

  .input-heading+.input-text {
    border-radius: 0 3px 3px 0;
  }

  .submit-box {
    padding: 40px 0 70px 0;
    text-align: center;
  }

  .submit-btn {
    display: inline-block;
    padding: 15px 0;
    width: 100%;
    max-width: 480px;
    color: #fff;
    border: none;
    background-color: #000;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 3px;
    letter-spacing: 0.05em;
    font-weight: bold;
    transition: all 0.2s ease;
  }

  .submit-btn:hover {
    background-color: #e50066;
  }


  .contact-privacy {
    text-align: center;
    font-size: 124%;
  }

  .contact-privacy-text {
    padding-bottom: 15px;
  }

  .contact-privacy-block {
    background-color: #f6f6f6;
    padding: 15px 0;
  }

  .error {
    background: #f0f0f0;
    padding: 30px 5%;
    font-size: 116%;
    line-height: 1.8;
  }

  .form-error {
    padding-bottom: 12px;
  }

  .error_messe {
    color: #c00;
  }

  .form-confirm {
    font-size: 116%;
    text-align: center;
    padding-bottom: 30px;
  }

  .confirm-table {
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 30px;
  }

  .confirm-table th {
    border: 1px solid #ccc;
    font-size: 116%;
    padding: 12px 5%;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
    background-color: #f0f0f0;
    width: 25%;
  }

  .confirm-table td {
    border: 1px solid #ccc;
    font-size: 116%;
    padding: 12px 5%;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
    background-color: #fff;
  }

  .privacy-text {
    text-align: center;
    padding: 30px 0;
  }

  .privacy-text strong {
    font-size: 124%;
    display: block;
    padding-bottom: 5px;
  }


  .privacy-text label {
    font-size: 131%;
    font-weight: bold;
    padding: 10px 0;
  }

  .privacy-block {
    border: 1px solid #ddd;
    overflow: auto;
    height: 200px;
  }

  .privacy-block .privacy-block-inner {
    padding: 10px 30px;
    background-color: #fff;
    line-height: 1.8;
  }

  .form-table-inner:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .form-table-subtitle {
    font-size: 110%;
    padding-bottom: 15px;
  }

  .confirm-text {
    text-align: center;
    font-size: 124%;
    padding-bottom: 30px;
  }

  .confirm-link {
    text-align: center;
  }

  .confirm-link input[type=button],
  .confirm-link input[type=submit] {
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 45%;
    margin: 0 1%;
    border: none;
    background: none;
    box-shadow: none;
    padding: 15px 0;
    font-size: 131%;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
  }

  .confirm-btn-back {
    background: #ddd !important;
    color: #000;
  }

  .confirm-btn-submit {
    background: #cb6b05 !important;
    color: #fff;
  }



  .confirm-submit-list {
    display: flex;
    justify-content: center;
  }

  .confirm-submit-list li {
    width: 50%;
    padding: 0 20px;
  }



  @media screen and (max-width:768px) {


    .contact-flow {
      margin-bottom: 20px;
    }

    .contact-flow li {
      width: 31%;
      padding: 10px 0;
      font-size: 60%;
    }

    .contact-flow li:not(:last-child)::after {
      border-width: 10px 0 10px 5px;
      right: -8%;
      top: 8px;
    }

    .contact-flow li.is-active {}

    .form-table,
    .form-table>tbody,
    .form-table>tbody>tr,
    .form-table>tbody>tr>th,
    .form-table>tbody>tr>td {
      display: block;
      width: 100%;
      min-width: 100%;
      box-sizing: border-box;
      text-align: left;
    }

    .form-table th {
      text-align: left;
      padding-right: 0px;
      width: 100%;
      padding: 12px 0px 5px;
      border-bottom: none;
      font-size: 124%;
      margin-bottom: 0;
    }

    .form-table td {
      padding: 10px 0 30px 0;
      border-bottom: 1px solid #eee;
      font-size: 100%;
      background: none;
    }

    .ui-datepicker th {
      width: 0;
    }


    .input-icon {
      padding: 3px 0px;
      margin-left: 5px;
      position: static;
    }


    .input-text,
    .input-textarea {
      font-size: 14px;
      padding: 5px 5px;
    }

    .input-select {
      min-width: 50px;
      font-size: 14px;
      padding: 5px 20px 5px 5px;
    }

    .input-zip {
      padding-left: 40px;
      width: 160px;
      box-sizing: border-box;
    }

    .input-zip-btn {
      appearance: none;
      display: inline-block;
      height: 42px;
      line-height: 40px;
      background-color: rgb(238, 238, 238);
      font-size: 16px;
      font-weight: bold;
      color: rgb(0, 0, 0);
      vertical-align: middle;
      cursor: pointer;
      margin: 0px 0px 0px 10px;
      padding: 0px 20px;
      border-width: 1px;
      border-style: solid;
      border-color: rgb(204, 204, 204);
      border-image: initial;
      text-decoration: none;
    }

    .input-heading {
      margin: 3px 0 0 0;
    }


    .label-list-inline {}

    .label-list-inline label {
      padding: 5px 4px;
    }

    .input-half {
      width: 80%;
      box-sizing: border-box;
    }

    .input-small {
      width: 90px;
      box-sizing: border-box;
    }




    .label-list-inline {
      display: block;
      padding-right: 0px;
    }

    .input-icon {
      width: 30px;
      padding: 5px 0px;
      font-size: 10px;
      right: 10px;
    }

    .submit-box {
      padding: 20px 0 20px 0;
    }

    .submit-btn {
      padding: 20px 0;
      width: 100%;
      font-size: 18px;
      cursor: pointer;
    }

    .confirm-table {
      border: 1px solid #ccc;
      width: 100%;
      margin-bottom: 30px;
    }

    .confirm-table th {
      font-size: 85%;
      padding: 8px 4px;
      width: 25%;
    }

    .confirm-table td {
      font-size: 85%;
      padding: 8px 4px;
    }



    .privacy-block .privacy-block-inner {
      padding: 10px 10px;
      background-color: #fff;
      line-height: 1.4;
      font-size: 85%;
    }


    .privacy-text {
      padding: 10px 0;
      font-size: 77%;
      text-align: left;
    }


    .confirm-submit-list {
      width: 100%;
      display: block;
    }

    .confirm-submit-list li {
      width: 100%;
      padding: 5px 0px;
    }

  }




  /**********************************************
module-footer
***********************************************/

  .copyright {
    display: block;
    background-color: #e50066;
    color: #fff;
    padding: 15px 0;
    font-size: 100%;
    text-align: center;
  }


  /**********************************************
module-cv
***********************************************/

  .cv {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    z-index: 10;
    transition: 0.5s;
  }

  body.is-inquiry .cv {
    transform: translateY(80px);
  }

  .cv-inner {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 5px;
  }

  .cv-list {
    display: flex;
    padding: 0 10px;
    justify-content: space-between;
  }

  .cv-list li {
    width: 50%;
    padding: 0 5px;
    flex: 1;
  }

  .cv-btn {
    display: block;
    background-color: #333;
    padding: 5px 0;
    border-radius: 100px;
    font-size: 139%;
    text-align: center;
    color: #fff;
    text-decoration: none;
    line-height: 2;
  }

  .cv-btn01 {
    background: linear-gradient(120deg, #d8b01d 0%, #e9ddb1 25%, #ae841d 60%, #eadfb4 100%);
    color: #77291d;
    animation: spin-flash 1.2s ease infinite alternate;
  }

  .cv-btn02 {
    background-color: #dd0071;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cv-btn02 p {
    font-size: 10px;
    line-height: 1.2;
    text-align: left;
    padding-left: 8px;
  }

  .cv-btn03 {
    background-color: #06A235;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media screen and (max-width:768px) {

    .cv-list li {
      padding: 0 3px;
    }

    .cv-btn {
      padding: 5px 0;
      font-size: 116%;
      line-height: 2;
    }
  }

  /***********
fixedBanner
************/

  .l-fixedBanner {
    position: fixed;
    left: -100%;
    bottom: 0;
    z-index: 990;
    padding: 0 10px 10px 10px;
    transition: all 0.8s ease 1s;
  }

  body.is-loaded .l-fixedBanner {
    left: 0;
  }

  .l-fixedBanner-close {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    position: absolute;
    left: 10px;
    bottom: 100%;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  .l-fixedBanner-close::before,
  .l-fixedBanner-close::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    margin-top: -1px;
    background-color: #555;
    position: absolute;
    left: 5px;
    top: 50%;
  }

  .l-fixedBanner-close::before {
    transform: rotate(-45deg);
  }

  .l-fixedBanner-close::after {
    transform: rotate(45deg);
  }

  @media screen and (max-width:834px) {

    .l-fixedBanner {
      transform: scale(0.8);
      transform-origin: left bottom;
    }

  }

  」 @media screen and (max-width:520px) {

    .l-fixedBanner {
      transform: scale(0.6);
      transform-origin: left bottom;
    }

  }


  /***********
status
************/

  .is-hide {
    display: none;
  }

  .is-inlineBlock {
    display: inline-block;
  }

  .is-out {
    position: absolute;
    left: -9999999px;
  }

  .is-pc-hide {
    display: none;
  }

  .is-pc-inline,
  .pc-br {
    display: inline;
  }

  .is-sp-inline,
  .sp-br {
    display: none;
  }

  .is-pc-noevent {
    pointer-events: none;
  }

  .is-step>* {
    opacity: 0;
    transition: opacity 1.2s ease;
  }

  .is-step.is-show>* {
    opacity: 1;
  }

  @media screen and (max-width:834px) {

    .is-pc-hide {
      display: block;
    }

    .is-sp-hide {
      display: none;
    }

    .is-sp-inline,
    .sp-br {
      display: inline;
    }

    .is-pc-inline,
    .pc-br {
      display: none;
    }

    .is-pc-noevent {
      pointer-events: auto;
    }

    .is-spGothic {
      font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
    }


  }