@charset "UTF-8";

/*　common
--------------------------------------------------------------------------*/
body {
  font-size: 10px;
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
    sans-serif;
  font-weight: 500;
  /* font-feature-settings: "palt"; */
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  line-height: 1;
  letter-spacing: 0em;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

*{
-webkit-tap-highlight-color: transparent; /* 強調をなくす */
}

ul,
ol {
  list-style: none;
}
a,
a[href="javascript:void(0);"]:hover {
  color: #000;
  text-decoration: none;
  -webkit-transition:all 500ms ease-in-out;
  transition:all 500ms ease-in-out;
  outline: none;
}
a:focus {
  text-decoration: none !important;
}
img {
  vertical-align: middle;
}
address,
em,
i {
  font-style: normal;
}

small {
  font-size: 86%;
}

strong {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: none;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

/*　common
--------------------------------------------------------------------------*/


/*　flex
--------------------------------------------------------------------------*/
/*　flexコンテナ
------------------------------------------------------------------------------------*/
.flex-container {
  /* IE10 */
  /* Android4.3以下、Safari3.1〜6.0 */
  /* Safari6.1以降 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*　縦並び
------------------------------------------------------------------------------------*/
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*　縦中央寄せ
------------------------------------------------------------------------------------*/
.align-center {
  /*IE10*/
  /* Android4.3以下、Safari3.1〜6.0 */
  /* Safari6.1以降 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*　縦下寄せ
------------------------------------------------------------------------------------*/
.align-end {
  /*IE10*/
  /* Android4.3以下、Safari3.1〜6.0 */
  /* Safari6.1以降 */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

/*　縦左揃え
    ------------------------------------------------------------------------------------*/
.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/*　縦均等揃え
------------------------------------------------------------------------------------*/
.align-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

/*　右揃え
------------------------------------------------------------------------------------*/
.flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/*　右揃え
------------------------------------------------------------------------------------*/
.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*　横均等揃え  両端余白なし
------------------------------------------------------------------------------------*/
.flex-between {
  /*IE10*/
  /* Android4.3以下、Safari3.1〜6.0 */
  /* Safari6.1以降 */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*　横中央寄せ
------------------------------------------------------------------------------------*/
.flex-center {
  /*IE10*/
  /* Android4.3以下、Safari3.1〜6.0 */
  /* Safari6.1以降 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*　順番　左から右
------------------------------------------------------------------------------------*/
.flex-reverse {
  /*IE10*/
  /* Android4.3以下、Safari3.1〜6.0 */
  /* Safari6.1以降 */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* 横幅が収まらない時改行
------------------------------------------------------------------------------------*/
.flex-wrap {
  /*IE10*/
  /* Safari6.1以降 */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ta-c{
  text-align:center;
}

.ta-l{
  text-align:left;
}

.ta-r{
  text-align:right;
}

/* 共通
------------------------------------------------------------------------------------*/
body{
  opacity:0;
  -webkit-transition:0.5s;
  transition:0.5s
}

html.wf-active body, html.loading-delay body{
  opacity:1;
}

.inner {
  max-width: 1920px;
  margin: 0 auto;
  width:90%;
}

.inner.inner-s{
  max-width:1032px;
}

.bg-sparkle{
    background-color: #FF4D20;
    background-image:url(https://yocabitoshop.itembox.design/item/brand/images/sparkle_pattern.png);
    background-size:cover;
    background-position:center center;
}

.bg-fix{
    background-attachment:fixed;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

.bg-orange{
  background-color:#FF4D20;
}

.bg-black{
  background-color:#000;
}

.white{
  color: #FFF;
}

.black{
  color:#000;
}

.slide-link{
  display:inline-block;
  background:-webkit-gradient(linear, left top, right top, color-stop(50%, #FF4D20), color-stop(50%, #FFF)) 100%;
  background:linear-gradient(to right, #FF4D20 50%, #FFF 50%) 100%;
  background-size:201% 100%;
  background-repeat:no-repeat;
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent!important;
  -webkit-transition:500ms ease-in-out;
  transition:500ms ease-in-out;
}

.slide-link:hover{
  background-position:0 100%;
}

.eio250{
  -webkit-transition:250ms ease-in-out!important;
  transition:250ms ease-in-out!important;
}

.eio500{
  -webkit-transition:500ms ease-in-out!important;
  transition:500ms ease-in-out!important;
}

.oh{
  overflow:hidden;
}

.sp{
  display:none;
}

@media screen and (max-width: 767px) {
  .sp{
    display:block;
  }
}

/*　アニメーション
-----------------------------------------------------------*/

/* スライダー */
@-webkit-keyframes slider {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
    to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes slider {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
    to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}




/*　header
-----------------------------------------------------------*/
.header{
  background:#000;
}

.header-yocabito-logo{
  margin:0 auto;
  position:fixed;
  margin-top:20px;
  width:100%;
  top:0;
  z-index:99999;
}

@media screen and (max-width: 767px) {
  .header-yocabito-logo{
    margin-top:20px;
  }
}

.header-yocabito-logo a{
  transform:translate(15px,0);
}

.header-yocabito-logo-img{
  width:220px;
}

@media screen and (max-width: 767px) {
  .header-yocabito-logo-img{
    width:100px;
  }
}


.gnav_btn{
  position:fixed;
  top:20px;
  right:5% ;
  padding:15px 0;
  cursor:pointer;
  z-index:100000;
}

@media screen and (max-width: 767px) {
  .gnav_btn{
    top:20px;
    padding:11px 0;
  }
}

.gnav_btn span{
  display:block;
  width:40px;
  height:5px;
  background-image:url(https://yocabitoshop.itembox.design/item/brand/images/sparkle_bar.png);
  background-repeat:no-repeat;
  position:relative;
  background-size:contain;
  background-position:center;
  -webkit-transition:0.2s linear;
  transition:0.2s linear;
}

@media screen and (max-width: 767px) {
  .gnav_btn span{
    width:40px;
    height:6px;
    background-size:contain;
    background-position:center center;
  }
}

.gnav_btn span::after,
.gnav_btn span::before{
  content:" ";
  display:block;
  width:40px;
  height:5px;
  background-image:url(https://yocabitoshop.itembox.design/item/brand/images/sparkle_bar.png);
  background-repeat:no-repeat;
  position:absolute;
  background-position:center;
  background-size:contain;
  -webkit-transition:0.2s linear;
  transition:0.2s linear;
}

@media screen and (max-width: 767px) {
  .gnav_btn span::after,
  .gnav_btn span::before{
    width:40px;
    height:6px;
    background-size:contain;
    background-position:center center;
  }
}

.gnav_btn span::before{
  top:11px;
}

@media screen and (max-width: 767px) {
  .gnav_btn span::before{
    top:11px;
  }
}

.gnav_btn span::after{
  bottom:11px;
}

@media screen and (max-width: 767px) {
  .gnav_btn span::after{
    bottom:11px;
  }
}

.gnav_btn.open span{
  background:transparent;
}

.gnav_btn.open span::before{
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  top:0;
}

.gnav_btn.open span::after{
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  bottom:0;
}


.gnav_btn.open + .gnav_box{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  opacity:1;
  visibility: visible;
}

.gnav_box{
  width:100%;
  height:100%;
  position:fixed;
  top:0;
  left:0;
  background:#FF4D20;
  z-index:99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition:all .3s;
  transition:all .3s;
}

@media screen and (max-width: 767px) {
  .gnav_box{
    padding:0 5% 0;
  }
}

.gnav_area *,.gnav_area a{
  color:#fff;
}

.gnav_lists{
  gap:80px;
}

@media screen and (max-width: 767px) {
  .gnav_lists{
    gap:41px;
  }
}

.gnav_list{
  position:relative;
}

.gnav_list_products{
  cursor:pointer;
}

.gnav_list_products .gnav-link::after{
  content:"";
  display:block;
  width:20px;
  height:8px;
  margin:-4px 0 0 10px;
  padding:0;
  background-image:url(https://yocabitoshop.itembox.design/item/brand/images/gnav_arrow_open.svg);
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.gnav_list_products .gnav-link.close::after{
  margin:-8px 0 0 10px;
  /* background-image:url(/images/gnav_arrow_close.svg); */
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.gnav-link{
  font-family: linotype-didot, serif;
  font-size: 5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 1535px) {
  .gnav-link{
    font-size:4rem;
  }
}

.gnav__lists{
  gap:30px;
  position:absolute;
  margin-top:30px;
  -webkit-transition: .3s;
  transition: .3s;
  opacity:1;
  -webkit-transform:translate(0,0);
          transform:translate(0,0)
}

.gnav_list_products .gnav-link.close + .gnav__lists{
  opacity:0;
  -webkit-transform:translate(0,-10%);
          transform:translate(0,-10%);
  position:absolute;
}

@media screen and (max-width: 767px) {
  .gnav__lists{
    position:static;
  }
}

/* .gnav--link{
  font-family: linotype-didot, serif;
  font-size:2rem;
  font-style:normal;
  font-weight:400;
  line-height:1;
  position:relative;
}

.gnav--link::before{
  content:"";
  position:absolute;
  height:1px;
  width:100%;
  background:#fff;
  bottom:-2px;
} */

.gnav__lists a{
  font-family: linotype-didot, serif;
  font-size:2rem;
  font-style:normal;
  font-weight:400;
  line-height:1;
  position:relative;
}

.gnav__lists a::before{
  content:"";
  position:absolute;
  height:1px;
  width:100%;
  background:#fff;
  bottom:-2px;
}

.gnav_sns{
  position:fixed;
  bottom:50px;
  left:0;
  width:100%;
}

@media screen and (max-width: 767px) {
  .gnav_sns{
    padding:0 5%;
  }
}

.gnav_sns .fs-pt-column__item{
  padding:0;
}

.share_ttl{
  font-family: linotype-didot, serif;
  font-size:2rem;
  line-height:1;
  margin-bottom:20px;
  text-align:center;
}

@media screen and (max-width: 767px) {
  .share_ttl{
    text-align:left;
  }
}

.gnav_sns_lists{
  gap:30px;
}

.gnav_sns img{
  width:30px;
}


/*　タイトル
-----------------------------------------------------------*/
.ttl-area{
  margin:0 auto;
  padding: 270px 0 150px;
  width:90%!important;
}

@media screen and (max-width: 767px) {
  .ttl-area{
    padding:172px 0 100px;
  }
}

.ttl{
  font-family: linotype-didot, serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color:#fff;
}

@media screen and (max-width: 767px) {
  .ttl{
    font-size:1.5rem;
  }
}


/*　VIEW MORE
-----------------------------------------------------------*/

.more-link{
  font-family: linotype-didot, serif;
  font-weight:400;
  font-size:4rem;
  line-height:1;
  text-decoration:none;
  padding-bottom:7px;
  position:relative;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  color: transparent;
  display:inline-block;
}

@media screen and (max-width: 767px) {
  .more-link{
    font-size:3rem;
  }
}

.more-link::after{
  content:" ";
  position:absolute;
  left:0;
  bottom:0;
  display:block;
  width:100%;
  height:1px;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.more-wh .more-link,
.more-wh .more-link::after{
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #FF4D20), color-stop(50%, #FFF)) 100%;
  background: linear-gradient(to right, #FF4D20 50%, #FFF 50%) 100%;
  background-size: 201% 100%;
  color:transparent;
}

.more-wh .more-link{
    background-clip: text;
  	-webkit-background-clip: text;
}

.more-wh .more-link:hover,
.more-wh .more-link:hover::after{
    background-position:0 100%;
}


/*　BACK
-----------------------------------------------------------*/
.back-btn{
  padding:150px;
  width:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .back-btn{
    padding:100px;
  }
}

.back-btn-link{
  font-family: linotype-didot, serif;
  font-weight:400;
  font-size:3rem;
  line-height:1;
  text-decoration:none;
  padding-bottom:10px;
  position:relative;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  color: transparent;
  display:inline-block;
}

.back-btn-link::after{
  content:" ";
  position:absolute;
  left:0;
  bottom:0;
  display:block;
  width:100%;
  height:1px;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.back-btn-black .back-btn-link{
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #000), color-stop(50%, #FFF)) 100%;
  background: linear-gradient(to right, #000 50%, #FFF 50%) 100%;
  background-size: 201% 100%;
  color:transparent;
}

.back-btn-black .back-btn-link::after{
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #000), color-stop(50%, #FFF)) 100%;
  background: linear-gradient(to right, #000 50%, #FFF 50%) 100%;
  background-size: 201% 100%;
}

.back-btn-orange .back-btn-link{
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #FF4D20), color-stop(50%, #FFF)) 100%;
  background: linear-gradient(to right, #FF4D20 50%, #FFF 50%) 100%;
  background-size: 201% 100%;
  color:transparent;
}

.back-btn-orange .back-btn-link::after{
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #FF4D20), color-stop(50%, #FFF)) 100%;
  background: linear-gradient(to right, #FF4D20 50%, #FFF 50%) 100%;
  background-size: 201% 100%;
}

.back-btn-black .back-btn-link,
.back-btn-orange .back-btn-link{
  background-clip: text;
  -webkit-background-clip: text;
}

.back-btn-link:hover,
.back-btn-link:hover::after{
  background-position:0 100%;
}

/*　cta
-----------------------------------------------------------*/

.lp-support-single-cta{
  text-align:center;
  margin-bottom:150px;
  margin-top:150px;
}

@media screen and (max-width: 767px) {
  .lp-support-single-cta{
    margin-bottom:100px;
    margin-top:100px;
  }
}

.lp-support-single-cta-link{
  font-family: linotype-didot, serif;
  font-size: 10rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display:inline-block;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #FF4D20), color-stop(50%, #FFF)) 100%;
  background: linear-gradient(to right, #FF4D20 50%, #FFF 50%) 100%;
  background-size: 201% 100%;
  color:transparent!important;
  background-clip: text;
  -webkit-background-clip: text;
  position:relative;
  -webkit-transition: all 50 0ms ease-in-out;
  transition: all 50 0ms ease-in-out;
  margin-bottom:30px;
}

@media screen and (max-width: 767px) {
  .lp-support-single-cta-link{
    font-size: 3rem;
    padding-bottom:10px;
    margin-bottom:20px;
  }
}

.lp-support-single-cta-link::after{
  content:" ";
  position:absolute;
  left:0;
  bottom:0;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #FF4D20), color-stop(50%, #FFF)) 100%;
  background: linear-gradient(to right, #FF4D20 50%, #FFF 50%) 100%;
  background-size: 201% 100%;
   display:block;
  width:100%;
  height:2px;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

@media screen and (max-width: 767px) {
  .lp-support-single-cta-link::after{
    height:1px;
  }
}

.lp-support-single-cta-link:hover,
.lp-support-single-cta-link:hover::after{
  background-position:0 100%;
}

.lp-support-single-cta-txt{
  font-family:"yu-gothic-pr6n", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .lp-support-single-cta-txt{
    font-size:1.2rem;
  }
}

/*　news
-----------------------------------------------------------*/

.news-list{
  width:19%;
}

.news-lists::-webkit-scrollbar{
  display:none;
  -webkit-appearance: none;
}

.news-img{
  width:100%;
  padding-top:100%;
  background-size:cover;
}

.news-heading{
  font-family:"yu-gothic-pr6n", sans-serif;
  font-weight:400;
  font-size:1.8rem;
  line-height:1.666;
  padding-top:1.111em;
  padding-bottom:1.111em;
  display:-webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 0;
  margin: 1.111em 0;
  height: calc(1.8rem * 1.666 *2);
}

@media screen and (max-width: 767px) {
  .news-heading{
    font-size: 1.3rem;
    line-height: 1.538;
    padding-top:15px;
    padding-bottom:15px;
    padding:0;
    margin:15px 0;
    height: calc(1.3rem * 1.538 * 2);
  }
}

.news-date{
  font-size:1.2rem;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight:300;
  line-height:1.666;
}

@media screen and (max-width: 767px) {
  .news-date{
    line-height:1;
  }
}

.news-cat{
  font-size:1.2rem;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight:300;
  padding:3px 10px 3px 10px;
  background:#fff;
  color:#000;
  line-height:1;
  display:inline-block;
  text-transform: uppercase;
}

.news-more{
  font-family: linotype-didot, serif;
  font-weight:400;
  font-size:1.8rem;
  text-align:center;
  border:1px solid #fff;
  width:100%;
  padding:0.7em 0 0.45em;
  margin-top:30px;
  cursor:pointer;
  -webkit-transition:ease-in 250ms;
  transition:ease-in 250ms;
  display:block;
}

@media screen and (max-width: 767px) {
  .news-more{
    margin-top:15px;
  }
}

.news-more:hover{
  background:#fff;
  color:#000;
  border-color:#fff;
}

.news .more-btn{
  margin-top:104px;
  text-align:center;
}

.modal__open,
#modal__close{
  display: none;
}

.modal__open-label,
.modal__close-label {
  cursor: pointer;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal__open-input:checked + label + input + .modal {
  display: block;
  -webkit-animation: modal-animation .6s;
          animation: modal-animation .6s;
}

.modal__content-wrap {
  position: absolute;
  left: 50%;
  top: calc(50% - 40px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1344px;
  background-color: #fefefe;
  z-index: 2;
  background:#FF4D20;
}

@media screen and (max-width: 767px) {
  .modal__content-wrap{
    width:90%;
    height:70%;
    top:calc(50% - 35px);
  }
}

.modal__close-label {
  display: table-cell;
  position: fixed;
  z-index: 99999;
  width: 328px;
  border: 1px solid #FF4D20;
  background: #FF4D20;
  color: #FFF;
  text-align: center;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-family: linotype-didot, serif;
  padding: 14px 0 8px;
  margin-top: 50px;
  left: calc(50% - 328px / 2);
}

@media screen and (max-width: 767px) {
  .modal__close-label{
    width:100%;
    left:0;
    margin-top:30px;
    padding:13px 0 7px 0;
  }
}

.modal__content {
  padding: 0 5%;
  margin:100px 5%;
  background: #FF4D20;
  gap:50px;
  max-height:50vh;
}

@media screen and (max-width: 767px) {
  .modal__content{
    overflow-y: auto;
    padding:0 20px;
    height:calc(100% - 40px);
    margin:20px 0;
    gap:20px;
    max-height:100%;
  }
}

.modal-img{
  width:30vw;
  height:30vw;
  max-width:400px;
  max-height:400px;
  background-size:cover;
}


@media screen and (max-width: 767px) {
  .modal-img{
    width:100%;
    height:0;
    padding-top:100%;
    max-width:100%;
    max-height:100%;
  }
}

.modal-txt{
  gap:30px;
  -webkit-box-flex:1;
      -ms-flex:1;
          flex:1;
  padding-right: 5%;
  overflow-y: auto;
}

.modal-txt::-webkit-scrollbar {
  width: 5px;
}

.modal-txt::-webkit-scrollbar-track {
  background-color: rgba(255,255,255,0.2);
}

.modal-txt::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .modal-txt{
    width:100%;
    gap:20px;
    overflow-y:unset;
    padding-right:0;
  }
}

.modal-heading{
  color: #FFF;
  font-family:"yu-gothic-pr6n", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.333;
}

@media screen and (max-width: 767px) {
  .modal-heading{
    font-size:1.6rem;
    line-height:1.5;
  }
}


.modal-date{
  color: #FFF;
  font-family:"yu-gothic-pr6n", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.modal-cat{
  color: #FF4D20!important;
  font-family:"yu-gothic-pr6n", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  background:#fff!important;
  padding:3px 10px;
  text-transform: uppercase;
}

.modal-caption{
  color: #FFF;
  /* text-align: justify; */
  font-family:"yu-gothic-pr6n", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.666;
}

.modal-caption a{
  color:#fff;
  text-decoration:underline;
}

@media screen and (max-width: 767px) {
  .modal-caption{
    font-size:1.3rem;
    line-height:1.785;
  }
}

.modal__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@-webkit-keyframes modal-animation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes modal-animation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}




/*　footer
-----------------------------------------------------------*/
.footer{
  background-color:#FF4D20;
  padding:50px 0;
}

@media screen and (max-width: 767px) {
  .footer{
    padding:50px 0 10px;
  }
}

.footer a{
  position:relative;
  -webkit-transition:all 500ms ease-in-out;
  transition:all 500ms ease-in-out;
  color:#fff;
}

.footer .footer-product-name{
  transform:translate(-4px,0);
}

@media screen and (max-width: 767px) {
  .footer .footer-product-name{
    transform:translate(-2px,0);
  }
}

.footer a:hover{
  color:#fff;
  text-decoration:none;
}

.footer a::before{
  content:" ";
  display:block;
  width:100%;
  height:1px;
  background:#fff;
  -webkit-transition:all 0.5s;
  transition:all 0.5s;
  -webkit-transform:scale(0,0);
          transform:scale(0,0);
  -webkit-transform-origin:left;
          transform-origin:left;
  position:absolute;
  bottom:-1px;
  left:0;
}

.footer .footer-product-name::before{
  left:4px;
}
@media screen and (max-width: 767px) {
  .footer .footer-product-name::before{
    left:2px;
  }
}

.footer a:hover::before{
  -webkit-transform:scale(1,1);
          transform:scale(1,1);
}

.footer-heading{
  font-family: linotype-didot, serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color:#fff;
}

.footer-products{
  padding:50px 0;
  border-bottom:1px solid #fff;
  -webkit-column-gap:92px;
     -moz-column-gap:92px;
          column-gap:92px;
  row-gap:60px;
}

@media screen and (max-width: 767px) {
  .footer-products{
    padding:30px 0;
    -webkit-column-gap:30px;
       -moz-column-gap:30px;
            column-gap:30px;
    row-gap:20px;
  }
}

.footer-product-name{
  font-family: linotype-didot, serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  color:#fff;
  display:block;
}

@media screen and (max-width: 767px) {
  .footer-product-name{
    font-size:2.5rem;
    font-weight:400;
  }
}

.footer-product-cat{
  font-family:"yu-gothic-pr6n", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color:#fff;
  display:block;
  margin-top:10px;
}

@media screen and (max-width: 767px) {
  .footer-product-cat{
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    margin-top:5px;
  }
}

.footer-sitemap-items{
  border-bottom:1px solid #fff;
  padding-bottom:50px;
  margin:100px 0 100px;
  -webkit-column-gap:92px;
     -moz-column-gap:92px;
          column-gap:92px;
  row-gap:60px;
}

@media screen and (max-width: 767px) {
  .footer-sitemap-items{
    padding-bottom:10px;
    margin:70px 0;
    -webkit-column-gap:30px;
       -moz-column-gap:30px;
            column-gap:30px;
    row-gap:0;
  }
}

@media screen and (max-width: 767px) {
  .footer-sitemap-items li{
    margin-bottom:20px;
  }
}

.footer-sitemap-items li::after{
  content:"";
  display:inline-block;
  border-right:1px solid #fff;
  height:35px;
  margin-left:30px;
  margin-right:30px;
  display: none;
}

@media screen and (max-width: 767px) {
  .footer-sitemap-items li::after{
    height:18px;
    margin-left:20px;
    margin-right:20px;
  }
  .footer-sitemap-items li:nth-child(2n)::after{
    display:none;
  }
}

.footer-sitemap-items li:last-of-type::after{
  display:none;
}

.footer-sitemap-items li a{
  font-family: linotype-didot, serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  color:#fff;
}

@media screen and (max-width: 767px) {
  .footer-sitemap-items li a{
    font-size:2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-icon-area,.footer-small-items,.footer-copy{
    width:100%;
  }
}

@media screen and (max-width: 767px) {
  .footer-icon-area{
    border-bottom:1px solid #fff;
  }
}

.footer-icon-heading{
  color: #FFF;
  font-family: linotype-didot, serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-bottom:20px;
}

@media screen and (max-width: 767px) {
  .footer-icon-heading{
    font-size: 1.5rem;
    margin-bottom:30px;
  }
}

.footer-icon-items{
  gap:30px;
}

@media screen and (max-width: 767px) {
  .footer-icon-items{
    margin-bottom:30px;
  }
}

.footer-icon-items a{
  display:block;
  width:30px;
  padding:0;
}

.footer-icon-items a::before{
  display:none;
}

.footer-small-items{
  gap:50px;
}

@media screen and (max-width: 767px) {
  .footer-small-items{
    padding:70px 0;
  }
}

.footer-small-items li a{
  font-family:"yu-gothic-pr6n", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.0666em;
  color:#fff;
}

@media screen and (max-width: 767px) {
  .footer-small-items li a{
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.0666em;
  }
}

.footer-small li a::before{
  bottom:-5px;
}

.footer-small li a:hover::before{
  -webkit-transform:scale(0.98,1);
          transform:scale(0.98,1);
}

.footer-copy{
  font-family:"yu-gothic-pr6n", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color:#fff;
}

@media screen and (max-width: 767px) {
  .footer-copy{
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 300;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {

  /*　flexコンテナ
    ------------------------------------------------------------------------------------*/
  .sp-flex-container {
    /* IE10 */
    /* Android4.3以下、Safari3.1〜6.0 */
    /* Safari6.1以降 */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /*　横並び
    ------------------------------------------------------------------------------------*/
  .sp-flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /*　縦並び
    ------------------------------------------------------------------------------------*/
  .sp-flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .sp-flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

/*　縦中央寄せ
------------------------------------------------------------------------------------*/
.sp-align-center {
  /*IE10*/
  /* Android4.3以下、Safari3.1〜6.0 */
  /* Safari6.1以降 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*　縦下寄せ
------------------------------------------------------------------------------------*/
.sp-align-end {
  /*IE10*/
  /* Android4.3以下、Safari3.1〜6.0 */
  /* Safari6.1以降 */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

  /*　縦左揃え
    ------------------------------------------------------------------------------------*/
  .sp-align-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  /*　縦均等揃え
    ------------------------------------------------------------------------------------*/
  .sp-align-between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  /*　右揃え
    ------------------------------------------------------------------------------------*/
  .sp-flex-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  /*　右揃え
    ------------------------------------------------------------------------------------*/
  .sp-flex-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  /*　横均等揃え  両端余白なし
    ------------------------------------------------------------------------------------*/
  .sp-flex-between {
    /*IE10*/
    /* Android4.3以下、Safari3.1〜6.0 */
    /* Safari6.1以降 */
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  /*　横中央寄せ
    ------------------------------------------------------------------------------------*/
  .sp-flex-center {
    /*IE10*/
    /* Android4.3以下、Safari3.1〜6.0 */
    /* Safari6.1以降 */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  /*　順番　左から右
    ------------------------------------------------------------------------------------*/
  .sp-flex-reverse {
    /*IE10*/
    /* Android4.3以下、Safari3.1〜6.0 */
    /* Safari6.1以降 */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  /* 横幅が収まらない時改行
    ------------------------------------------------------------------------------------*/
  .sp-flex-wrap {
    /*IE10*/
    /* Safari6.1以降 */
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

}
