@charset "UTF-8";

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

#furugura2022 html {
  font-size: 62.5%;
  height: 100%;
  font-family: YuGothic, 'Yu Gothic', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
}

#furugura2022 a {
  cursor: pointer;
  text-decoration: none;
  color: #543e32;
}

#furugura2022 p,
#furugura2022 div,
#furugura2022 a,
#furugura2022 li {
  font-family: YuGothic, 'Yu Gothic', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
}

#furugura2022 img {
  vertical-align: middle;
}

#furugura2022 .none {
  display: none;
}

#furugura2022 .p96 {
  width: 96%;
}

#furugura2022{
  min-width: 850px;
  overflow-x: hidden;
}

#furugura2022 .pc {
  display: block;
}

#furugura2022 .sp {
  display: none;
}

#furugura2022 .mv_wrap {
  width: 100%;
  position: relative;
}

#furugura2022 .mv_title {
  position: absolute;
  top: 0;
  left: 10%;
  width: 26.7%;
  opacity: 0;
  transform: translateX(-100%);
  transition: 1s;
}
#furugura2022 .mv_img {
  opacity: 0;
  transition: 1s;
}

#furugura2022 .mv_title._active {
  opacity: 1;
  transform: translateX(0);
}
#furugura2022 .mv_img._active {
  opacity: 1;
}

#furugura2022 .mv_ancbox {
  background-color: #e60019;
  padding: 20px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#furugura2022 .mv_ancbox a {
  color: white;
  font-size: 18px;
}

#furugura2022 .mv_ancbox li {
  border-right: 1px solid white;
  padding: 0 20px;
}

#furugura2022 .mv_ancbox li:last-child {
  border-right: none;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  background: #e60019;
  padding: 10px;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: white;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
  background: none;
}

.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: white;
  background: #e60019;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp ul {
  background: #e60019;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  background: #e60019;
}

#furugura2022 nav.globalMenuSp ul li a {
  display: block;
  color: white;
  padding: 1em 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}


#furugura2022 .content_wrap {
  position: relative;
}
#furugura2022 .content_bg {
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: repeat-y;
  padding-bottom: 120px;
}

#furugura2022 .content_box {
  background-color: white;
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

#furugura2022 .sec02_box {
  border: solid 2px #e60019;
  border-radius: 12px;
  width: 90%;
  margin: 80px auto 0;
  background-color: white;
}

#furugura2022 .sec02_subtitle {
  background-color: white;
  margin-top: -30px;
}

#furugura2022 .sec02_itembox {
  margin-top: 40px;
  background: linear-gradient(#fff, #fcf0e4);
  padding: 0 0 40px;
}

#furugura2022 .sec02_itembox:last-child {
  border-radius: 0 0 12px 12px;
}

#furugura2022 .modal_btn {
  width: 90%;
  margin: 40px auto 0;
  padding: 20px 20px 20px 40px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  text-align: left;
  background-color: #1d2087;
  font-size: 20px;
  line-height: 1.2;
  position: relative;
}

#furugura2022 .modal_btn:hover {
  cursor: pointer;
}

#furugura2022 .modal_btn:last-child {
  margin: 20px auto 0;
}

#furugura2022 .modal_btn::after {
  content: '';
  background-image: url(../img/icon_arrow_white.png);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

#furugura2022 .quesion_box {
  margin-top: 40px;
}

#furugura2022 .question_item {
  border: solid 2px #e60019;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  margin: 0 auto;
  color: #543e32;
  font-size: 25px;
  text-align: left;
  font-weight: 500;
  background-color: white;
}

#furugura2022 .question_item:nth-child(2n) {
  background-color: #fff9f6;
}

#furugura2022 .question_title {
  width: 100%;
  margin: 0 auto;
  font-size: 25px;
  text-align: left;
  font-weight: 500;
  position: relative;
  padding: 0 40px;
}

#furugura2022 .question_title:hover {
  cursor: pointer;
}

#furugura2022 .question_title:before {
  content: '';
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#furugura2022 .question_title._01:before {
  background-image: url(../img/icon_q1.png);
}

#furugura2022 .question_title._02:before {
  background-image: url(../img/icon_q2.png);
}

#furugura2022 .question_title._03:before {
  background-image: url(../img/icon_q3.png);
}

#furugura2022 .question_title._04:before {
  background-image: url(../img/icon_q4.png);
}

#furugura2022 .question_title._05:before {
  background-image: url(../img/icon_q5.png);
}

#furugura2022 .question_title._06:before {
  background-image: url(../img/icon_q6.png);
}

#furugura2022 .question_title._07:before {
  background-image: url(../img/icon_q7.png);
}

#furugura2022 .question_title::after {
  content: '';
  background-image: url(../img/icon_arrow_red.png);
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(0deg);
  transition: 0.5s;
}

#furugura2022 .question_title._active::after {
  transform: translateY(-50%) rotate(90deg);
}

#furugura2022 .question_text {
  font-size: 18px;
  line-height: 1.3;
  margin-top: 20px;
  display: none;
}
#furugura2022 .question_text a.underline{
  text-decoration: underline;
}

#furugura2022 .question_text span {
  font-size: 14px;
}

#furugura2022 .link_red {
  color: #e60019;
}

#furugura2022 .coupon_wrap {
  width: 80%;
  position: relative;
  margin: 0 auto;
}

#furugura2022 .coupon_banner {
  position: absolute;
  top: 210px;
  left: 0;
  width: 100%;
  text-align: center;
}
#furugura2022 .coupon {
  color: white;
  font-weight: bold;
  font-size: 28px;
  position: absolute;
  top: 654px;
  left: 380px;
  letter-spacing: 10px;
}

/* モーダル */
#furugura2022 .modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

#furugura2022 .modal__bg {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

#furugura2022 .modal__content {
  background: linear-gradient(#fff, #fcf0e4);
  left: 50%;
  padding: 3% 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 850px;
  max-height: 90vh;
  overflow-y: scroll;
  border-radius: 20px;
  text-align: center;
}
#furugura2022 .modal_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
#furugura2022 .modal_wrap._border div{
  border-left: solid 2px black;
  margin-right: 20px;
  padding-left: 20px;
}
#furugura2022 .modal_wrap._border div:first-child{
  border-left: none;
}
#furugura2022 .modal_wrap div{
  margin-right: 20px;
}
#furugura2022 .modal_text{
  color: #543e32;
  text-align: left;
  font-size: 12px;
  padding-left: 40px;
  margin-top: 20px;
}
#furugura2022 .modal_text._center{
  text-align: center;
  padding-left: 0;
  margin-top: 20px;
}
#furugura2022 .modal_close_btn{
  position: absolute;
  top: 10px;
  right: 10px;
}
#furugura2022 .item_position{
  position: absolute;
}
#furugura2022 .item_position._01{
  top: 3%;
  right: -32%;
}
#furugura2022 .item_position._02{
  top: 15%;
  left: -21%;
}
#furugura2022 .item_position._03{
  top: 22%;
  right: -40%;
}
#furugura2022 .item_position._04{
  top: 36%;
  left: -38%;
}
#furugura2022 .item_position._05{
  top: 44%;
  right: -30%;
}
#furugura2022 .item_position._06{
  top: 57%;
  left: -27%;
}
#furugura2022 .item_position._07{
  top: 60%;
  right: -27%;
}
#furugura2022 .item_position._08{
  top: 75%;
  left: -30%;
}
#furugura2022 .item_position._09{
  top: 83%;
  right: -27%;
}
#furugura2022 .item_position._10{
  top: 90%;
  left: -12%;
}

#furugura2022 .item_position {
  opacity: 0;
  transform : translate(0, 50px);
  transition : all 1500ms;
}

#furugura2022 .item_position.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}
#furugura2022 .sec02_item_img{
  width: 96%;
}
#furugura2022 .banner_text{
  color: #543e32;
  font-size: 14px;
  text-indent: -14px;
  padding-left: 14px;
  text-align: left;
  width: 60%;
  margin: 10px auto 0;
  line-height: 1.2;
}


@media screen and (max-width:767px) {
  #furugura2022 .pc {
    display: none;
  }

  #furugura2022 .sp {
    display: block;
  }

  #furugura2022{
    min-width: inherit;
  }
  

  #furugura2022 .mv_wrap {
    width: 100%;
    position: relative;
  }

  #furugura2022 .mv_title {
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(0);
  }

  #furugura2022 .sec02_box {
    margin: 40px auto 0;
    width: 96%;
  }

  #furugura2022 .modal_btn {
    width: 90%;
    margin: 20px auto 0;
    padding: 3% 3% 3% 10%;
    font-size: 3.74vw;
  }

  #furugura2022 .modal_btn:last-child {
    margin: 10px auto 0;
  }

  #furugura2022 .modal_btn::after {
    width: 3vw;
    height: 3vw;
    left: 4%;
  }
  #furugura2022 .content_bg {
    padding-bottom: 0;
  }
  #furugura2022 .content_box {
    width: 100%;
    padding: 0 2%;
  }


  #furugura2022 .quesion_box {
    margin-top: 20px;
  }

  #furugura2022 .question_item {
    border: solid 2px #e60019;
    padding: 3%;
    font-size: 4.67vw;
  }

  #furugura2022 .question_title {
    font-size: 4.67vw;
    padding: 0 8% 0 10%;
  }

  #furugura2022 .question_title:before {
    width: 5vw;
    height: 5vw;
  }

  #furugura2022 .question_title::after {
    width: 5vw;
    height: 5vw;
  }

  #furugura2022 .question_text {
    font-size: 3.2vw;
    margin-top: 5%;
  }

  #furugura2022 .question_text span {
    font-size: 2.67vw;
  }

  #furugura2022 .coupon_wrap {
    width: 100%;
  }

  #furugura2022 .coupon_banner {
    position: absolute;
    top: 34%;
    left: 0;
    width: 100%;
    text-align: center;
  }
  #furugura2022 .modal__content{
    padding: 12% 0 3%;
  }
  #furugura2022 .modal__content img{
    width: 90%;
  }
  #furugura2022 .modal__content img.modal_02_item01{
    width: 60%;
  }
  #furugura2022 .modal_wrap{
    display: block;
  }
  #furugura2022 .modal_wrap div:first-child{
    margin-top: 10px;
  }
  #furugura2022 .modal_wrap div{
    margin-right: 0;
    margin-top: 20px;
  }
  #furugura2022 .modal_wrap._border div{
    border-left: none;
    border-top: solid 2px #1d2087;
    margin-right: 0;
    padding-left: 0;
    padding-top: 20px;
  }
  #furugura2022 .modal_wrap._border div:first-child{
    border-left: none;
    border-top: none;
    padding-top: 0;
  }
  #furugura2022 .modal_text{
    padding-left: 5%;
  }
  #furugura2022 .modal_close_btn{
    position: fixed;
    top: 6%;
    right: 8%;
    width: 8%;
  }
  #furugura2022 .modal_close_btn img{
    width: 100%;
  }

  #furugura2022 .coupon {
    font-size: 4.67vw;
    position: absolute;
    top: 60.7%;
    left: 58%;
    letter-spacing: 1vw;
  }
  #furugura2022 .item_position {
    width: 35%;
  }
  #furugura2022 .item_position._01{
    top: 3.5%;
    right: -21%;
  }
  #furugura2022 .item_position._02{
    top: 14%;
    left: -20%;
  }
  #furugura2022 .item_position._03{
    top: 19%;
    right: -16%;
  }
  #furugura2022 .item_position._04{
    top: 36%;
    left: -18%;
  }
  #furugura2022 .item_position._05{
    top: 43%;
    right: -18%;
  }
  #furugura2022 .item_position._06{
    top: 57%;
    left: -18%;
  }
  #furugura2022 .item_position._07{
    top: 65.6%;
    right: -16%;
  }
  #furugura2022 .item_position._08{
    top: 75.5%;
    left: -21%;
  }
  #furugura2022 .item_position._09{
    top: 87%;
    right: -17%;
  }
  #furugura2022 .item_position._10{
    top: 95%;
    left: -20%;
  }

  #furugura2022 .banner_text{
    font-size: 2.67vw;
    text-indent: -2.67vw;
    padding-left: 2.67vw;
    width: 96%;
    margin: 5px auto 0;
  }

}