@charset "UTF-8";
html {
  font-size: 10px;
}

main {
  padding-top: 125px;
  overflow: hidden;
}

body.fixed {
  overflow: hidden;
}

small {
  font-size: 1.6rem;
}

/*      Variable
 *                      */
@font-face {
  font-family: "century";
  src: url(../font/century.ttf) format("truetype");
}
.deco {
  position: absolute;
  z-index: 2;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.col02 {
  width: 48%;
  margin: 0 1%;
}

.col03 {
  width: 31.3333333333%;
  margin: 0 1%;
}

.col04 {
  width: 23%;
  margin: 0 1%;
}

.col05 {
  width: 18%;
  margin: 0 1%;
}

.flexAc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.ly_fluid {
  width: 100%;
}

.ly_cont {
  max-width: 1280px;
  margin: 0 auto;
}

.ly_section {
  padding: 100px 0;
}

.ly_sectionPbNone {
  padding-top: 100px;
}

.ly_sectionPtNone {
  padding-bottom: 100px;
}

.bl_follow {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 11;
}
.bl_follow a {
  display: block;
  width: 300px;
  border: 10px solid #000;
}
.bl_follow a:hover {
  opacity: 0.8;
}

/****************************/
/*         modal           */
/****************************/
.bl_modal {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999999;
}
.bl_modal .ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 25px;
}
.bl_modal .note {
  font-size: 2rem;
  font-weight: bold;
  color: #d9391c;
}

.bl_modal_bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.bl_modal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  max-width: 850px;
  border-radius: 10px;
}

.bl_modal_inner {
  max-height: calc(93vh - 40px);
  overflow: scroll;
  padding: 50px 40px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bl_modal_inner::-webkit-scrollbar {
  display: none;
}

.bl_modal_close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(30%, -30%);
      -ms-transform: translate(30%, -30%);
          transform: translate(30%, -30%);
  display: inline-block;
  cursor: pointer;
}

/****************************/
/*         header           */
/****************************/
.bl_header {
  padding: 35px 30px 0 40px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

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

.bl_headerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
}
.bl_headerNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.bl_headerNav ul:first-of-type a {
  position: relative;
}
.bl_headerNav ul:first-of-type a::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bl_headerNav ul:first-of-type a:hover::after {
  width: 100%;
}
.bl_headerNav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bl_headerNav li:nth-of-type(n+2) {
  margin-left: 30px;
}
.bl_headerNav li.btn {
  margin-left: 30px;
}
.bl_headerNav li.btn:nth-of-type(n+2) {
  margin-left: 20px;
}
.bl_headerNav a {
  text-align: center;
  display: block;
  letter-spacing: 0.06em;
}

/****************************/
/*           TOP            */
/****************************/
.bl_kv {
  height: calc(100vh - 110px);
  background-image: url(../img/top/kv_bg.png);
  background-repeat: no-repeat;
  background-position: left 50% top;
}

.bl_dish {
  position: relative;
  z-index: 3;
  text-align: center;
  height: 100%;
}

/****************************  section02  ****************************/
.bl_section02 {
  padding: 100px 0;
}
.bl_section02 .deco01 {
  top: 50px;
  left: -227px;
}
.bl_section02 .deco02 {
  top: -110px;
  right: -100px;
}
.bl_section02 .deco03 {
  top: 45%;
  left: -20px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.bl_section02 .deco04 {
  top: 45%;
  right: -100px;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.bl_section02 .deco05 {
  bottom: -115px;
  left: 40px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.bl_section02 .deco06 {
  bottom: -110px;
  right: -190px;
}

.bl_section02_yellowBg {
  position: absolute;
  top: 0;
  right: 110px;
  bottom: 0;
  left: 0;
  height: 100%;
}

.bl_imgTxtLinkWrap {
  max-width: 935px;
  margin: 0 auto;
}

.bl_imgTxtLink {
  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;
}
.bl_imgTxtLink:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.bl_imgTxtLink_img {
  width: 51.3368983957%;
}

.bl_imgTxtLink_txt {
  width: 42.7807486631%;
}

.bl_imgTxtLink_txt_p {
  margin: 25px 0 50px;
  letter-spacing: 0.06em;
}

/****************************  bl_section03  ****************************/
.bl_section03 {
  padding: 60px 0;
}
.bl_section03 .deco01 {
  bottom: -30px;
  left: -81px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.bl_section03 .deco02 {
  bottom: -158px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

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

.bl_decoCard {
  width: 48.4375%;
  background-color: #fff;
  padding: 17px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl_decoCard:hover {
  -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
          transform: translateY(-15px);
}
.bl_decoCard:hover .el_decoCard_ttl {
  color: #1a1a1a;
}
.bl_decoCard:hover .origin {
  opacity: 0;
}
.bl_decoCard:hover .bl_decoCard_inner {
  border-color: #000;
}
.bl_decoCard:hover .bl_decoCard_inner::after {
  background-color: #1a1a1a;
}

.bl_decoCard_inner {
  border: solid 2px #d9391c;
  padding: 55px 20px;
  text-align: center;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bl_decoCard_inner img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bl_decoCard_inner .deco {
  width: 47px;
}
.bl_decoCard_inner .cardDeco01 {
  top: -2px;
  left: -2px;
}
.bl_decoCard_inner .cardDeco02 {
  bottom: -2px;
  left: -2px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.bl_decoCard_inner .cardDeco03 {
  bottom: -2px;
  right: -2px;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.bl_decoCard_inner .cardDeco04 {
  top: -2px;
  right: -2px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.bl_decoCard_inner::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -11px;
  bottom: -11px;
  width: 60px;
  height: 60px;
  background-image: url(../img/common/icon_ungle.png);
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d9391c;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/****************************  bl_section03  ****************************/
.bl_section04 {
  background-image: url(../img/common/bg_black.jpg);
  background-repeat: no-repeat;
  background-position: right top 390px;
  background-size: cover;
  color: #fff;
  padding-bottom: 80px;
}
.bl_section04::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 390px 0 0 1920px;
  border-color: transparent transparent transparent #1a1a1a;
}
.bl_section04 .ly_cont {
  padding-top: 135px;
  position: relative;
  z-index: 2;
}
.bl_section04 .deco01 {
  top: 160px;
  right: -90px;
}

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

.bl_topShopInfo_txtWrap {
  width: 50%;
}

.bl_topShopInfo_imgWrap {
  width: 50%;
}
.bl_topShopInfo_imgWrap .imgDeco01 {
  bottom: 45px;
  right: -75px;
}

.bl_dl {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  letter-spacing: 0.06em;
}
.bl_dl dt {
  width: 125px;
  padding: 5px 0;
}
.bl_dl dd {
  width: calc(100% - 125px);
  padding: 5px 0;
}
.bl_dl .link {
  color: #d9391c;
  border-bottom: solid 1px transparent;
}
.bl_dl .link:hover {
  border-color: #d9391c;
}
.bl_dl .mt10 {
  display: inline-block;
}

/****************************/
/*         footer           */
/****************************/
.bl_footer {
  padding: 25px 0 30px;
}

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

.bl_footerNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl_footerNav li:nth-of-type(n+2) {
  margin-left: 35px;
}
.bl_footerNav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  white-space: nowrap;
}
.bl_footerNav a img {
  margin-left: 10px;
}
.bl_footerNav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #d9391c;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bl_footerNav a:hover::after {
  width: 100%;
}

/****************************/
/*          lower           */
/****************************/
.bl_kvLower {
  padding: 50px 0 90px;
  text-align: center;
}

.bl_kvImgWrap {
  margin-top: -60px;
}
.bl_kvImgWrap .kvDeco01 {
  top: -45px;
  left: 20px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.bl_kvImgWrap .kvDeco02 {
  top: 92px;
  left: -105px;
}
.bl_kvImgWrap .kvDeco03 {
  top: -45px;
  right: 40px;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.bl_kvImgWrap .kvDeco04 {
  bottom: 90px;
  left: -25px;
  -webkit-transform: translate(-100%, 100%);
      -ms-transform: translate(-100%, 100%);
          transform: translate(-100%, 100%);
}
.bl_kvImgWrap .kvDeco05 {
  bottom: 25px;
  right: 80px;
  -webkit-transform: translate(100%, 100%);
      -ms-transform: translate(100%, 100%);
          transform: translate(100%, 100%);
}
.bl_kvImgWrap .kvDeco06 {
  top: 200px;
  left: -165px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.bl_kvImgWrap .kvDeco07 {
  top: 140px;
  right: -230px;
}
.bl_kvImgWrap .kv {
  position: relative;
  z-index: 2;
}

.bl_kvTxtWrap {
  margin-top: 55px;
  color: #fff;
  line-height: 2;
  font-weight: 500;
}

/****************************  history  ****************************/
.bl_roofWrap {
  position: relative;
  margin-top: 150px;
  background-image: url(../img/common/bg_light_orange.jpg);
  background-repeat: repeat;
  padding-bottom: 125px;
}
.bl_roofWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: 1920px;
  height: 158px;
  background-image: url(../img/common/roof.png);
  background-position: center top;
}

.bl_historywrap .deco01 {
  top: 28.5%;
  left: -60px;
}
.bl_historywrap .deco02 {
  top: 43%;
  right: -84px;
}
.bl_historywrap .deco03 {
  top: 49%;
  left: 100px;
}
.bl_historywrap .deco04 {
  bottom: 25%;
  right: 0;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}
.bl_historywrap .deco05 {
  bottom: 13%;
  left: 53px;
}
.bl_historywrap .deco06 {
  bottom: -105px;
  left: -55px;
  width: 520px;
}
.bl_historywrap .deco07 {
  bottom: -105px;
  right: -55px;
  width: 520px;
}
.bl_historywrap .ly_cont {
  position: relative;
  z-index: 2;
}

.bl_familyTree {
  max-width: 960px;
  margin: -50px auto 230px;
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}
.bl_familyTree .famDeco01 {
  top: 0;
  left: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.bl_familyTree .famDeco02 {
  top: 0;
  right: 0;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}
.bl_familyTree .famDeco03 {
  bottom: -30px;
  left: -100px;
}
.bl_familyTree .famDeco04 {
  bottom: -30px;
  right: -100px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

/*  bl_circleImgMedia  */
.bl_circleImgMedia {
  position: relative;
}
.bl_circleImgMedia:nth-of-type(n+2) {
  margin-top: 80px;
}
.bl_circleImgMedia:nth-of-type(even) .bl_circleImgMedia_txt,
.bl_circleImgMedia:nth-of-type(even) .bl_circleImgMedia_txt_inner {
  margin-left: auto;
}
.bl_circleImgMedia:nth-of-type(even) .bl_circleImgMedia_img {
  right: auto;
  left: -80px;
}
.bl_circleImgMedia.bl_circleImgMedia__mbLarge {
  margin-bottom: 190px;
}

.bl_circleImgMedia_txt {
  padding: 70px 80px;
  background-color: rgba(255, 255, 255, 0.6);
  width: 1100px;
}
.bl_circleImgMedia_txt .el_h2 {
  margin-bottom: 20px;
}
.bl_circleImgMedia_txt p:nth-of-type(n+2) {
  margin-top: 23px;
}
.bl_circleImgMedia_txt .el_btn__large {
  margin-top: 45px;
}

.bl_circleImgMedia_txt_inner {
  width: 63.829787234%;
}

.bl_circleImgMedia_img {
  position: absolute;
  top: 50%;
  right: -80px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 46.875%;
}

/*  footer直前共通  */
.bl_beforeFotterWrap {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.bl_decoCardWrap__col03 .bl_decoCard {
  width: 31.25%;
}

/****************************  recruit  ****************************/
.bl_recruitWrap .deco01 {
  top: 0;
  left: -130px;
}
.bl_recruitWrap .deco02 {
  top: 0;
  right: -130px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.bl_recruitWrap .el_btn {
  margin: 0 auto;
  margin-top: 80px;
}

.bl_kvSimpleJumpBtnWrap {
  margin-top: 50px;
}

.bl_simpleJumpBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl_simpleJumpBtn li:nth-of-type(n+2) {
  margin-left: 20px;
}
.bl_simpleJumpBtn a {
  display: block;
  width: 200px;
  background-color: #fff;
  border-radius: 3px;
  letter-spacing: 0.06em;
  color: #d9391c;
  padding: 12px 5px 20px;
  position: relative;
  line-height: 1.2;
}
.bl_simpleJumpBtn a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 11px;
  height: 8px;
  background-image: url(../img/common/ungle_bottom.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.bl_simpleJumpBtn a:hover {
  background-color: rgba(255, 240, 0, 0.8);
  -webkit-transform: translateY(7px);
      -ms-transform: translateY(7px);
          transform: translateY(7px);
}

/*  半分画像　半分テキスト  */
.bl_halfMedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl_halfMedia:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.bl_halfMedia:nth-of-type(even) .halfMediaDeco {
  right: auto;
  left: 20px;
}
.bl_halfMedia:nth-of-type(n+2) {
  margin-top: 60px;
}

.bl_halfMedia_img,
.bl_halfMedia_txt {
  width: 50%;
}

.bl_halfMedia_txt {
  background-color: rgba(255, 255, 255, 0.9);
  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;
}
.bl_halfMedia_txt .halfMediaDeco {
  top: 0;
  right: 20px;
}
.bl_halfMedia_txt .txt {
  letter-spacing: 0.06em;
  margin-top: 35px;
}

.bl_halfMedia_txt_inner {
  width: 75%;
}

/**  先輩スタッフ紹介  **/
.bl_recruitWrap02 {
  padding: 80px 0 260px;
  z-index: 2;
}
.bl_recruitWrap02 .ly_cont {
  position: relative;
  z-index: 2;
}

.bl_recruitWrap02_orangeBg {
  position: absolute;
  top: 0;
  height: calc(100% + 60px);
  width: calc(100% - 120px);
}

.bl_cardDifferentPositionWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bl_cardDifferentPositionWrap .bl_card:nth-of-type(2) {
  -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
          transform: translateY(40px);
}
.bl_cardDifferentPositionWrap .bl_card:nth-of-type(3) {
  -webkit-transform: translateY(80px);
      -ms-transform: translateY(80px);
          transform: translateY(80px);
}

.bl_card {
  background-color: #fff;
  width: 31.25%;
}

.bl_card_txt {
  padding: 35px 40px;
  letter-spacing: 0.06em;
}

/**  求人詳細  **/
.bl_recruitWrap03 {
  background-color: rgba(255, 255, 255, 0.6);
}
.bl_recruitWrap03 .deco01 {
  top: -70px;
  right: -40px;
}
.bl_recruitWrap03 .deco02 {
  bottom: -70px;
  left: -40px;
}

.bl_cardInfoWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
.bl_cardInfoWrap .bl_card {
  width: 100%;
}

.bl_cardInfo {
  width: 100%;
  max-width: 540px;
}
.bl_cardInfo:nth-of-type(n+2) {
  margin-left: 40px;
}

.bl_cardInfo_cat {
  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: 7px;
}
.bl_cardInfo_cat .ttl {
  font-size: 3rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.bl_dl__inCard {
  margin: 0;
}
.bl_dl__inCard dt {
  width: 110px;
}
.bl_dl__inCard dd {
  width: calc(100% - 110px);
}
.bl_dl__inCard dt,
.bl_dl__inCard dd {
  padding: 10px 0;
}
.bl_dl__inCard dt:not(:last-of-type),
.bl_dl__inCard dd:not(:last-of-type) {
  border-bottom: dashed 1px #ccc;
}

.bl_dl__marginNone {
  margin: 0;
}

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

.bl_gmapwrapper {
  width: calc(50% - 20px);
}

.bl_gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 59.765625%;
  position: relative;
  border: solid 4px #1a1a1a;
}
.bl_gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.bl_gmap .el_btn {
  position: absolute;
  bottom: -3px;
  right: -3px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/**  お問い合わせバナー  **/
.bl_contactBanner {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.bl_contactBanner h3 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}

.bl_contactBanner_tel,
.bl_contactBanner_mail {
  width: 50%;
  padding: 60px 20px;
  text-align: center;
}

.bl_contactBanner_tel a {
  line-height: 1.2;
  font-size: 4.8rem;
  font-weight: bold;
  color: #d9391c;
  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;
}
.bl_contactBanner_tel a img {
  margin-right: 10px;
}

.bl_contactBanner_mail {
  position: relative;
}
.bl_contactBanner_mail::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  bottom: 20px;
  border-right: dashed 1px #000;
}
.bl_contactBanner_mail a {
  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;
  margin: 0 auto;
  border-radius: 4px;
  background-color: #d9391c;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 30px;
  width: 100%;
  max-width: 480px;
}
.bl_contactBanner_mail a img {
  margin-right: 20px;
}
.bl_contactBanner_mail a:hover {
  background-color: #1a1a1a;
  letter-spacing: 0.1em;
}

/****************************  perfectionism  ****************************/
.bl_perfectionismWrap {
  padding: 80px 0 230px;
  z-index: 2;
}
.bl_perfectionismWrap .ly_cont {
  z-index: 2;
}
.bl_perfectionismWrap .deco01 {
  top: -40px;
  right: -230px;
}

.bl_yellowUniqueBg {
  position: absolute;
  top: 0;
  height: calc(100% + 100px);
  width: calc(100% - 120px);
}

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

.bl_cardCircleImg {
  width: 31.25%;
}

.bl_cardCircleImg_txt {
  margin-top: 35px;
}
.bl_cardCircleImg_txt .ttl {
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
}
.bl_cardCircleImg_txt .txt {
  letter-spacing: 0.06em;
  margin-top: 20px;
}

/**  おすすめメニュー  **/
.bl_perfectionismWrap03 .deco {
  width: 700px;
}
.bl_perfectionismWrap03 .deco01 {
  top: 60px;
  right: -80px;
}
.bl_perfectionismWrap03 .deco02 {
  top: 46.5%;
  left: -125px;
}
.bl_perfectionismWrap03 .ly_cont {
  position: relative;
  z-index: 2;
}

.bl_recommendMenu {
  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;
}
.bl_recommendMenu:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.bl_recommendMenu:nth-of-type(n+2) {
  margin-top: 40px;
}
.bl_recommendMenu .ttl {
  font-size: 3rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 20px;
}
.bl_recommendMenu .ttl span {
  display: block;
  color: #d9391c;
  font-size: 2rem;
  font-weight: normal;
}

.bl_recommendMenu_img,
.bl_recommendMenu_txt {
  width: 48.4375%;
}

/**  slider  **/
.bl_perfectionismSliderWrap {
  z-index: 2;
  padding: 135px 0;
}
.bl_perfectionismSliderWrap .ly_cont {
  position: relative;
  z-index: 2;
}

.bl_perfectionismSliderWrap_bg {
  position: absolute;
  top: 0;
  right: 27.0833333333%;
  height: calc(100% + 60px);
  width: 72.9166666667%;
}

.bl_slideWrap {
  margin-right: calc((100vw - 1280px) * -1 / 2);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bl_slideWrap .slick-track {
  left: -10%;
}

.bl_slide:nth-of-type(n+2) {
  margin-left: 40px;
}
.bl_slide .bl_card_txt {
  min-height: 255px;
}
.bl_slide img {
  width: 100%;
}

.bl_slideDots {
  padding-top: 50px;
  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;
}
.bl_slideDots li {
  margin: 0 20px;
}
.bl_slideDots li button {
  position: relative;
  text-indent: -9999px;
}
.bl_slideDots li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: solid 1px #fff;
  border-radius: 50px;
}
.bl_slideDots li.slick-active button::before {
  content: "";
  background-color: #fff;
}

/**  お取り寄せ  **/
.bl_figureWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bl_figure {
  margin: 50px 0 0;
  width: 31.25%;
}
.bl_figure .caption {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #d9391c;
  text-align: center;
}

.bl_lowerYabaInfo {
  z-index: 2;
}
.bl_lowerYabaInfo .lowerdeco01 {
  top: 16vw;
  right: -90px;
}
.bl_lowerYabaInfo .lowerdeco02 {
  bottom: -20px;
  left: -45px;
}

/****************************  group  ****************************/
.bl_shopInfo {
  letter-spacing: 0.06em;
}
.bl_shopInfo:nth-of-type(n+2) {
  margin-top: 135px;
}

/*  上  */
.bl_shopInfo_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.9);
  padding-right: 80px;
}

.bl_shopInfo_top_left {
  width: 53.3333333333%;
  padding: 70px 6.25% 40px;
  position: relative;
}
.bl_shopInfo_top_left .shopInfoDeco {
  position: absolute;
  top: 0;
  left: 20px;
}

/*  slider  */
.bl_shopInfo_top_slider {
  width: 46.6666666667%;
  margin-top: -60px;
}
.bl_shopInfo_top_slider img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bl_slideVerticalWrap.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.bl_slideVerticalDots {
  position: absolute;
  right: -20px;
  bottom: 20px;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.bl_slideVerticalDots li {
  margin: -4px 0;
}
.bl_slideVerticalDots li button {
  position: relative;
  text-indent: -9999px;
  color: transparent;
}
.bl_slideVerticalDots li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border: solid 1px #d9391c;
  border-radius: 50px;
}
.bl_slideVerticalDots li.slick-active button::before {
  content: "";
  background-color: #d9391c;
}

.bl_ul {
  margin: 20px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl_ul li:not(:last-of-type) {
  margin-right: 25px;
}
.bl_ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #d9391c;
  font-size: 1.8rem;
  position: relative;
}
.bl_ul a img {
  margin-right: 10px;
}
.bl_ul a.border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d9391c;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bl_ul a:hover::after {
  background-color: transparent;
}

.bl_shopInfo_bottom {
  padding: 60px 6.25% 80px;
}
.bl_shopInfo_bottom .mainTtl {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 30px;
}

.bl_media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.bl_media .bl_ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 20px 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl_media:nth-of-type(n+2) {
  margin-top: 40px;
}

.bl_media_img {
  width: 360px;
}

.bl_media_txt {
  width: calc(100% - 360px);
  padding: 40px;
}
.bl_media_txt .ttl {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

/****************************  privacy  ****************************/
.bl_kvLower__h1Only .kvDeco01 {
  top: 10px;
  left: 30px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.bl_kvLower__h1Only .kvDeco02 {
  top: 148px;
  left: -97px;
}
.bl_kvLower__h1Only .kvDeco03 {
  top: 20px;
  right: 40px;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.bl_kvLower__h1Only .kvDeco04 {
  top: 230px;
  right: 125px;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.bl_kvLower__h1Only .kvDeco05 {
  top: 200px;
  left: -165px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.bl_privacy {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}

.bl_whiteInner {
  position: relative;
  background-color: #fff;
  padding: 70px 6.25%;
  letter-spacing: 0.06em;
  line-height: 2;
}

.bl_dotsOrangeUl li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 18px;
  position: relative;
}
.bl_dotsOrangeUl li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #d9391c;
  border-radius: 50px;
}
.bl_dotsOrangeUl a {
  color: #d9391c;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.bl_dotsOrangeUl a img {
  margin: 0 5px 0 2px;
}
.bl_dotsOrangeUl a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d9391c;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bl_dotsOrangeUl a:hover::before {
  background-color: transparent;
}

/****************************  entry  ****************************/
::-webkit-input-placeholder {
  color: #999;
  font-size: 16px;
}
::-moz-placeholder {
  color: #999;
  font-size: 16px;
}
:-ms-input-placeholder {
  color: #999;
  font-size: 16px;
}
::-ms-input-placeholder {
  color: #999;
  font-size: 16px;
}
::placeholder {
  color: #999;
  font-size: 16px;
}

.bl_entry {
  position: relative;
  z-index: 2;
}

.bl_orderWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 700px;
  margin: 0 auto 60px;
}

.bl_order {
  padding: 20px 10px;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  color: #666;
  background-color: #e6e6e6;
  width: calc(33.3333333333% - 23.3333333333px);
  position: relative;
}
.bl_order::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 15px;
  border-color: transparent transparent transparent #e6e6e6;
}
.bl_order:last-of-type::after {
  content: none;
}

.bl_order__current {
  color: #fff;
  background-color: #d9391c;
}
.bl_order__current::after {
  border-color: transparent transparent transparent #d9391c;
}

/*  線入り  */
.bl_dlWithLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}
.bl_dlWithLine dt,
.bl_dlWithLine dd {
  padding: 20px 0;
  border-bottom: solid 1px #e6e6e6;
}
.bl_dlWithLine dt:first-of-type,
.bl_dlWithLine dd:first-of-type {
  border-top: solid 1px #e6e6e6;
}
.bl_dlWithLine dt {
  font-weight: 500;
  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;
  width: 290px;
  padding-right: 40px;
}
.bl_dlWithLine dd {
  width: calc(100% - 290px);
}

/*  form  */
.bl_form {
  max-width: 860px;
  margin: 0 auto;
  font-size: 16px;
  letter-spacing: 0.06em;
  /**  ラジオボタン  **/
}
.bl_form input,
.bl_form textarea {
  border: 1px transparent solid;
  background-color: #f2f2f2;
  padding: 15px;
  width: 100%;
  font-size: 16px;
  font-family: YakuHanJP, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.bl_form input:focus,
.bl_form textarea:focus {
  outline: 1px transparent solid;
  border: 1px #d9391c solid;
}
.bl_form input.short {
  width: 100px;
  margin-right: 10px;
}
.bl_form input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  background-color: transparent;
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #fff;
  padding: 20px 10px;
  cursor: pointer;
}
.bl_form input[type=submit]:focus {
  border-color: transparent;
}
.bl_form input[type=radio] {
  opacity: 0;
  margin-left: -15px;
}

.bl_radio span {
  display: block;
}
.bl_radio span:nth-of-type(n+2) {
  margin-top: 5px;
}
.bl_radio input {
  width: auto;
  margin-bottom: 4px;
  cursor: pointer;
}
.bl_radio label {
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}
.bl_radio input[type=radio] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 1px #1a1a1a;
}
.bl_radio input[type=radio] + label::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #d9391c;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
}
.bl_radio input[type=radio]:checked + label::after {
  opacity: 1;
}

.bl_zip {
  margin-bottom: 15px;
}
.bl_zip input {
  width: 180px;
  margin-left: 10px;
}

/*  submitボタン  */
.bl_formBtnWrap {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bl_formBtnWrap__finish {
  margin-top: 80px;
}

.el_closeBtn {
  display: block;
  margin-left: auto;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  background-color: #000;
  position: relative;
  margin-bottom: 5px;
}
.el_closeBtn:hover {
  opacity: 0.7;
}
.el_closeBtn span {
  position: absolute;
  top: 22px;
  left: 10px;
  width: 55%;
  height: 3px;
  background-color: #fff;
  border-radius: 50px;
}
.el_closeBtn span:first-of-type {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.el_closeBtn span:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* header */
.el_headerLogoOuter {
  max-width: 28%;
}

.el_headerLogo {
  display: block;
}

.el_pageTop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 10;
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
  -webkit-transition: none;
  transition: none;
}

/* heading */
.el_h2 {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.el_h2_en {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  color: #d9391c;
}

.el_normalH2 {
  font-size: 3rem;
  font-weight: 500;
}

.el_borderBottomH2 {
  margin-bottom: 80px;
  font-size: 4rem;
  letter-spacing: 0.06em;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.el_borderBottomH2::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1a1a1a;
}

.el_borderBottomH2__white {
  color: #fff;
}
.el_borderBottomH2__white::after {
  background-color: #fff;
}

.el_pointHeader {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: center;
}
.el_pointHeader .point {
  display: block;
  font-size: 4.6rem;
  color: #d9391c;
  line-height: 1;
  margin-bottom: 30px;
}
.el_pointHeader .point span {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.el_lowerH3 {
  font-size: 3rem;
  letter-spacing: 0.06em;
  margin-bottom: 25px;
}

/* txt */
.el_normalTxt {
  letter-spacing: 0.06em;
}

/* lower */
.el_lowerH1 {
  display: inline-block;
  position: relative;
  z-index: 3;
}
.el_lowerH1 .deco {
  width: 160px;
}
.el_lowerH1 .decoLeft {
  top: -20px;
  left: -85px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.el_lowerH1 .decoRight {
  bottom: -20px;
  right: -85px;
}

/* btn */
.el_btn {
  display: block;
  padding: 20px 10px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  background-color: #d9391c;
  border-radius: 4px;
  max-width: 300px;
  width: 100%;
  position: relative;
}
.el_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 10px;
  background-image: url(../img/common/icon_ungle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.el_btn:hover {
  background-color: #1a1a1a;
  letter-spacing: 0.1em;
}

.el_btn__blank::after {
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon_blank.svg);
}

.el_btn__large {
  max-width: 480px;
}

.el_btn__black {
  background-color: #1a1a1a;
}
.el_btn__black:hover {
  background-color: #d9391c;
}

.el_flameBtn {
  display: block;
  width: 100%;
  max-width: 540px;
  border: solid 2px #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 25px 10px;
  position: relative;
}
.el_flameBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 33px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.el_flameBtn:hover {
  background-color: #d9391c;
  border-color: #d9391c;
  letter-spacing: 0.1em;
}

/****************************/
/*         header           */
/****************************/
.el_headerNav_btn {
  border: solid 1px #fff;
  padding: 13px 10px;
  border-radius: 4px;
  width: 240px;
  position: relative;
}
.el_headerNav_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 100%;
  background-image: url(../img/common/icon_blank.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.el_headerNav_btn:hover {
  border-color: #fff000;
  background-color: #fff000;
  color: #d9391c;
}

.el_headerNav_btn__blank:hover::after {
  background-image: url(../img/common/icon_blank_orange.svg);
}

.el_headerNav_btn__cart {
  background-color: #fff;
  color: #d9391c;
}
.el_headerNav_btn__cart::after {
  background-image: url(../img/common/icon_cart.svg);
}

/****************************  ham  ****************************/
.el_ham {
  display: none;
  z-index: 9999999;
  position: fixed;
  top: 0;
  right: 0;
  width: 85px;
  height: 75px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom-left-radius: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.el_ham.is_open {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom-left-radius: 0;
}
.el_ham.is_open span:first-of-type {
  top: 25px;
  right: 17px;
  width: 17px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.el_ham.is_open span:nth-of-type(3) {
  top: 35px;
  right: 17px;
  width: 17px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.el_ham_inner {
  height: 100%;
  width: 100%;
  position: relative;
}
.el_ham_inner span {
  position: absolute;
  right: 20px;
  display: block;
  height: 4px;
  width: 35px;
  background-color: #d9391c;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.el_ham_inner span:first-of-type {
  top: 20px;
}
.el_ham_inner span:nth-of-type(2) {
  top: 30px;
}
.el_ham_inner span:nth-of-type(3) {
  top: 40px;
}

/****************************/
/*           TOP            */
/****************************/
/****************************  kv  ****************************/
.el_kvttl {
  position: absolute;
  z-index: 6;
  top: 80px;
  right: 13.28125%;
}

.el_kvttl_inner {
  position: relative;
}
.el_kvttl_inner .ttl {
  max-height: calc(80vh - 110px);
}
.el_kvttl_inner .deco {
  position: absolute;
  bottom: -7.2%;
  left: -30%;
  max-width: initial;
  width: 240%;
}

.el_dishIn {
  height: calc(85vh - 110px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.el_dishIn__movie {
  border-radius: 50%;
}

.el_steam {
  max-height: 100%;
  position: absolute;
  bottom: -8%;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1.1);
      -ms-transform: translateX(-50%) scale(1.1);
          transform: translateX(-50%) scale(1.1);
  opacity: 0.5;
  -webkit-animation: steamInfinite 3s infinite ease-in-out;
          animation: steamInfinite 3s infinite ease-in-out;
  z-index: 5;
}

.el_dish {
  height: calc(100vh - 110px);
  -webkit-transform: translate(2%, 2%);
      -ms-transform: translate(2%, 2%);
          transform: translate(2%, 2%);
}

@-webkit-keyframes steamInfinite {
  0% {
    bottom: -8%;
    opacity: 0.5;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    bottom: -5%;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    bottom: -8%;
    opacity: 0.5;
  }
}

@keyframes steamInfinite {
  0% {
    bottom: -8%;
    opacity: 0.5;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    bottom: -5%;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    bottom: -8%;
    opacity: 0.5;
  }
}
.el_scrollDownOuter {
  position: relative;
  z-index: 3;
  overflow: hidden;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.el_scrollDown {
  position: relative;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 1px;
  height: 110px;
  background-color: #fff000;
  margin: 0 auto;
}
.el_scrollDown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #fff000;
  -webkit-animation: scroll infinite 1.5s;
          animation: scroll infinite 1.5s;
}

@-webkit-keyframes scroll {
  0% {
    top: 0;
  }
  100% {
    top: 102%;
  }
}

@keyframes scroll {
  0% {
    top: 0;
  }
  100% {
    top: 102%;
  }
}
/****************************  section03  ****************************/
.el_decoCard_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  color: #d9391c;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.el_decoCard_txt {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin-top: 20px;
}

/****************************  section04  ****************************/
.el_banner {
  display: block;
  margin-top: 70px;
}
.el_banner:hover {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

/****************************/
/*          lower           */
/****************************/
/****************************  recruit  ****************************/
.el_card_txt_ttl {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
}
.el_card_txt_ttl rt {
  color: #555;
}

.el_card_txt_ttl_sub {
  font-size: 1.6rem;
  display: block;
  margin-top: -3px;
}

.el_card_txt_price {
  font-size: 2.4rem;
  color: #d9391c;
  text-align: center;
  margin: -10px 0 10px;
}
.el_card_txt_price span {
  font-size: 2rem;
}

.el_tag {
  background-color: #d9391c;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 50px;
  color: #fff;
  padding: 0 30px;
}

.el_tag__smail {
  font-size: 1.4rem;
  display: inline-block;
}

.el_tag__yellow {
  background-color: #d0c151;
}

/****************************  perfectionism  ****************************/
.el_prevUngle {
  position: absolute;
  top: 46%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

.el_nextUngle {
  position: absolute;
  top: 46%;
  right: calc((100vw - 1280px) / 2);
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  z-index: 2;
  cursor: pointer;
}

/****************************  perfectionism  ****************************/
.el_shopName {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}

.el_shopSubTtl {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin: 15px 0 25px;
}

/****************************  privacy  ****************************/
.el_privacyTtl {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 60px 0 20px;
}

/****************************  privacy  ****************************/
.el_formTag {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 3px 8px 4px;
  margin-top: 7px;
  background-color: #d9391c;
  border-radius: 2px;
  color: #fff;
}

.el_formTtl {
  font-size: 3rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 20px;
}

.el_submitBtn {
  text-align: center;
  cursor: pointer;
  width: 100%;
  max-width: 540px;
  background-color: #d9391c;
  border-radius: 4px;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.el_submitBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 10px;
  background-image: url(../img/common/icon_ungle.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.el_submitBtn:hover {
  background-color: #1a1a1a;
}

/**  確認画面  **/
.el_submitBtn__short {
  max-width: 400px;
  margin-left: 40px;
}
.el_submitBtn__short::after {
  right: 30px;
}

.el_submitBtn__back {
  max-width: 240px;
  background-color: transparent;
  border: solid 2px #d9391c;
}
.el_submitBtn__back::after {
  right: auto;
  left: 30px;
  background-image: url(../img/common/icon_ungle_orange.png);
}
.el_submitBtn__back input[type=submit] {
  color: #d9391c;
}
.el_submitBtn__back:hover {
  background-color: #444;
  border-color: #444;
}
.el_submitBtn__back:hover input[type=submit] {
  color: #fff;
}
.el_submitBtn__back:hover::after {
  background-image: url(../img/common/icon_ungle.png);
  -webkit-transform: translateY(-50%) rotateY(180deg);
          transform: translateY(-50%) rotateY(180deg);
}

/**  完了画面  **/
.el_finishTxt {
  font-size: 4rem;
  letter-spacing: 0.06em;
  font-weight: bold;
}

.el_submitBtn__link {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 20px 0;
  color: #fff;
  text-align: center;
}

/****************************/
/*          text            */
/****************************/
.hp_whiteBgTxt {
  font-weight: 500;
  background-color: #fff;
  color: #d9391c;
  padding: 3px 8px;
  margin: 0 2px;
}

/****************************/
/*        position          */
/****************************/
.hp_relative {
  position: relative;
}

.hp_absolute {
  position: absolute;
}

/****************************/
/*          other           */
/****************************/
.hp_bgOrange {
  background-image: url(../img/common/bg_orange.png);
  background-repeat: repeat;
  background-position: center;
}

.hp_bglightOrange {
  background-image: url(../img/common/bg_light_orange.jpg);
  background-repeat: repeat;
}

.hp_eventsNone {
  pointer-events: none;
  -webkit-filter: grayscale(80%);
          filter: grayscale(80%);
  opacity: 0.3;
}

.hp_whiteSpacePreWrap {
  white-space: pre-wrap;
}

/*  form  */
.un_agreeBtn {
  text-align: center;
  margin: 50px 0 30px;
}
.un_agreeBtn:hover {
  color: #d9391c;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.un_agreeBtn label,
.un_agreeBtn input,
.un_agreeBtn span {
  cursor: pointer;
}
.un_agreeBtn input[type=checkbox] {
  display: none;
}
.un_agreeBtn label {
  position: relative;
  padding-left: 40px;
  font-weight: bold;
}
.un_agreeBtn input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: solid 2px #1a1a1a;
}
.un_agreeBtn input[type=checkbox] + label::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 2px;
  display: block;
  width: 6px;
  height: 14px;
  -webkit-transform: rotate(38deg);
      -ms-transform: rotate(38deg);
          transform: rotate(38deg);
  border-right: 3px solid #d9391c;
  border-bottom: 3px solid #d9391c;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
}
.un_agreeBtn input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.un_formCaution {
  color: #ED1C24;
  font-weight: 500;
  font-size: 14px;
}

/**  TOP アニメーション  **/
.an_dishIn {
  -webkit-animation: dish01 forwards 1s;
          animation: dish01 forwards 1s;
}

.an_dishInAfter02 {
  opacity: 0;
  -webkit-animation: dish02 forwards 1s;
          animation: dish02 forwards 1s;
}

.an_dishIn__movie {
  opacity: 0;
  -webkit-animation: dishMovie forwards 1s;
          animation: dishMovie forwards 1s;
}

@-webkit-keyframes dish01 {
  0% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes dish01 {
  0% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes dish02 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dish02 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes dishMovie {
  0% {
    opacity: 0;
  }
  85%, 100% {
    opacity: 1;
  }
}
@keyframes dishMovie {
  0% {
    opacity: 0;
  }
  85%, 100% {
    opacity: 1;
  }
}
.an_dishDelay01 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.an_dishDelay02 {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.an_dishDelay03 {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.an_dishDelay04 {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

/**  その他アニメーション  **/
.an_flyToRight {
  opacity: 0;
  -webkit-animation: flyToRight forwards 1s linear;
          animation: flyToRight forwards 1s linear;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.an_flyToLeft {
  opacity: 0;
  -webkit-animation: flyToLeft forwards 1.2s linear;
          animation: flyToLeft forwards 1.2s linear;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes flyToLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, 0);
            transform: translate(80px, 0);
  }
  25% {
    -webkit-transform: translate(60px, -10px);
            transform: translate(60px, -10px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(40px, 0);
            transform: translate(40px, 0);
  }
  75% {
    -webkit-transform: translate(20px, 10px);
            transform: translate(20px, 10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes flyToLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, 0);
            transform: translate(80px, 0);
  }
  25% {
    -webkit-transform: translate(60px, -10px);
            transform: translate(60px, -10px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(40px, 0);
            transform: translate(40px, 0);
  }
  75% {
    -webkit-transform: translate(20px, 10px);
            transform: translate(20px, 10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes flyToRight {
  0% {
    opacity: 0;
    -webkit-transform: translate(-80px, 0) rotateY(180deg);
            transform: translate(-80px, 0) rotateY(180deg);
  }
  25% {
    -webkit-transform: translate(-60px, -10px) rotateY(180deg);
            transform: translate(-60px, -10px) rotateY(180deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-40px, 0) rotateY(180deg);
            transform: translate(-40px, 0) rotateY(180deg);
  }
  75% {
    -webkit-transform: translate(-20px, 10px) rotateY(180deg);
            transform: translate(-20px, 10px) rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotateY(180deg);
            transform: translate(0, 0) rotateY(180deg);
  }
}
@keyframes flyToRight {
  0% {
    opacity: 0;
    -webkit-transform: translate(-80px, 0) rotateY(180deg);
            transform: translate(-80px, 0) rotateY(180deg);
  }
  25% {
    -webkit-transform: translate(-60px, -10px) rotateY(180deg);
            transform: translate(-60px, -10px) rotateY(180deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-40px, 0) rotateY(180deg);
            transform: translate(-40px, 0) rotateY(180deg);
  }
  75% {
    -webkit-transform: translate(-20px, 10px) rotateY(180deg);
            transform: translate(-20px, 10px) rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotateY(180deg);
            transform: translate(0, 0) rotateY(180deg);
  }
}
.an_fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn forwards 1.2s;
          animation: fadeIn forwards 1.2s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.an_fadeDown {
  opacity: 0;
  -webkit-animation: fadeDown forwards 1.2s;
          animation: fadeDown forwards 1.2s;
}

@-webkit-keyframes fadeDown {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeDown {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.an_delay01 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.an_delay02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.an_delay03 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.an_delay04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.an_delay05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.an_delay06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.an_delay07 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.an_delay08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.an_delay09 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.an_delay10 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.js_scrollIn,
.js_child {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
          transform: translateY(40px);
}
.js_scrollIn.on,
.js_child.on {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.js_slideInRight {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translateX(40px);
      -ms-transform: translateX(40px);
          transform: translateX(40px);
}
.js_slideInRight.on {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.js_slideInLeft {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translateX(-40px);
      -ms-transform: translateX(-40px);
          transform: translateX(-40px);
}
.js_slideInLeft.on {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.js_fadeIn {
  opacity: 0;
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.js_fadeIn.on {
  opacity: 1;
}

.js_zoomIn {
  opacity: 0;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.js_zoomIn.on {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.js_delay01 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.js_delay02 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.js_delay03 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.js_delay04 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.js_delay05 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.js_delay06 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.js_delay07 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.js_delay08 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.js_delay09 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.js_delay10 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.js_delay11 {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.js_delay12 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}/*# sourceMappingURL=style.css.map */