@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
/****共通****/
html {
  font-size: clamp(62.5%, 0.7vw, 87.5%);
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-variant-numeric: lining-nums;
  /* 必要に応じて数字のスタイルを調整 */
  font-weight: 400;
  line-height: 1.5;
}
body p {
  font-size: 1.6rem;
  color: #171717;
  line-height: 150%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.pc2 {
  display: block;
}

.sp2 {
  display: none;
}

/****mixin****/
/**********************************************/
.div_wrap {
  display: flex;
  justify-content: center;
  width: auto;
  height: 100vh;
  background-image: url(../img/pc_BG.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  /*************左 固定背景***************/
  /*************右 固定メニュー***************/
  /*************中央 共通パーツ***************/
  /****基本情報****/
}
.div_wrap .bg_left {
  flex-grow: 1;
}
.div_wrap .bg_left__container {
  position: sticky;
  top: 5rem;
  padding-left: 3rem;
}
.div_wrap .bg_left__container img {
  height: 4rem;
  width: auto;
}
.div_wrap .right {
  position: sticky;
  top: 0;
  width: 50%;
  z-index: 1;
}
.div_wrap .right__container {
  width: 100%;
  text-align: center;
  /*********メニュー************/
}
.div_wrap .right__container--img {
  width: 37vw;
  position: absolute;
  top: 14rem;
  right: 7rem;
}
.div_wrap .right__container ul {
  position: absolute;
  bottom: 1rem;
  right: 5rem;
}
.div_wrap .right__container ul li {
  text-align: right;
  color: #008C56;
  font-size: 1rem;
}
.div_wrap .right__container .nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 45%;
  height: 100%;
  z-index: 10;
  background: #008C56;
  transition: right 0.3s ease;
  text-align: center;
  border-radius: 0 0 0 8rem;
}
.div_wrap .right__container .nav.open {
  right: 0;
  transition: right 0.3s ease;
}
.div_wrap .right__container .nav__cat {
  width: 30%;
  height: auto;
}
.div_wrap .right__container .nav ul {
  /*最初はナビゲーションボタンは非表示*/
  display: none;
  list-style: none;
  margin-top: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.div_wrap .right__container .nav ul li {
  text-align: left;
}
.div_wrap .right__container .nav ul li a {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  transition: 0.3s all;
  display: inline-block;
  position: relative;
  margin-bottom: 2.4rem;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.div_wrap .right__container .nav ul li a::before {
  content: "";
  mask-image: url(../img/nikukyu.svg);
  background-color: #fff;
  margin-right: 0.2em;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  display: inline-block;
  -webkit-mask-image: url(../img/nikukyu.svg);
  -webkit-mask-repeat: no-repeat;
}
.div_wrap .right__container .nav ul li a:hover {
  color: #FFF100;
}
.div_wrap .right__container .nav ul li a:hover::before {
  background-color: #FFF100;
}
.div_wrap .right__container .hamburger {
  position: absolute;
  top: 6%;
  right: 3%;
  cursor: pointer;
  width: 10rem;
  height: 9.5rem;
  z-index: 10;
  text-align: center;
  background-image: url(../img/menu_open.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.div_wrap .right__container .hamburger__p {
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  right: 35%;
  top: 32%;
}
.div_wrap .right__container .hamburger span {
  /*3本の線を作る*/
  transition: all 0.3s;
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 35%;
  z-index: 10;
  right: 33%;
  top: 55%;
}
.div_wrap .right__container .hamburger span:nth-of-type(1) {
  /*上の線の位置*/
}
.div_wrap .right__container .hamburger span:nth-of-type(2) {
  /*真ん中の線の位置*/
  top: 66%;
}
.div_wrap .right__container .hamburger span:nth-of-type(3) {
  /*下の線の位置*/
  top: 78%;
}
.div_wrap .right__container .hamburger.open {
  background-image: url(../img/menu_close.svg);
}
.div_wrap .right__container .hamburger.open p {
  color: #008C56;
}
.div_wrap .right__container .hamburger.open span {
  right: 33%;
  background: #008C56;
}
.div_wrap .right__container .hamburger.open span:nth-of-type(1) {
  /*openのとき、上の線を右斜めにする*/
  top: 60%;
  transform: translateY(6px) rotate(-45deg);
}
.div_wrap .right__container .hamburger.open span:nth-of-type(2) {
  /*真ん中の線を消す*/
  opacity: 0;
}
.div_wrap .right__container .hamburger.open span:nth-of-type(3) {
  /*下の線を左斜めにする*/
  top: 71%;
  transform: translateY(-6px) rotate(45deg);
}
.div_wrap .right__container.open {
  position: absolute;
  top: 15%;
  right: 3%;
  cursor: pointer;
  width: 6rem;
  height: 5.5rem;
  z-index: 10;
  text-align: center;
  background-image: url(../img/menu_close.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.div_wrap .right__container--cvbtn {
  display: inline-block;
  width: 19rem;
  height: 19rem;
  background-image: url(../img/cv_btn.webp);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s all;
  margin-top: 50px;
  position: absolute;
  bottom: 2vw;
  right: 32vw;
  z-index: 20;
}
.div_wrap .right__container--cvbtn:hover {
  background-image: url(../img/cv_btn_hover.webp);
}
.div_wrap .main_wrap {
  /*可変用フォントサイズ指定*/
  font-size: 2.5641025641%;
  /*390pxでデザインを作成したので39*/
  width: 30%;
  max-width: 600px;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  /* スクロールバー非表示 IE, Edge 対応 */
  -ms-overflow-style: none;
  /* スクロールバー非表示 Firefox 対応 */
  scrollbar-width: none;
  /* スクロールバー非表示 Chrome, Safari 対応 */
  /****KV****/
  /****キャッチコピー****/
  /****ポイント交換特典****/
}
.div_wrap .main_wrap::-webkit-scrollbar {
  display: none;
}
.div_wrap .main_wrap .KV {
  position: relative;
  padding-top: 5rem;
}
.div_wrap .main_wrap .KV__box {
  background-image: url(../img/KV.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  text-align: center;
  border-radius: 4rem 4rem 0rem 0rem;
  border: 4px solid #fff;
}
.div_wrap .main_wrap .KV__box img {
  border-radius: 4rem 4rem 0rem 0rem;
}
.div_wrap .main_wrap .KV__box--title {
  width: 100%;
}
.div_wrap .main_wrap .KV__logo {
  width: auto;
  height: 3rem;
  position: absolute;
  top: 8rem;
  left: 2rem;
}
.div_wrap .main_wrap .catch {
  background-image: url(../img/catch_BG.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 8rem 2rem;
  margin-top: -3rem;
  position: relative;
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
}
.div_wrap .main_wrap .catch__BG {
  background-image: url(../img/catch_boxBG.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2.7rem;
}
.div_wrap .main_wrap .catch h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #F454AC;
  line-height: 115%;
  padding-bottom: 1rem;
  line-height: 125%;
  color: #FFF100;
}
.div_wrap .main_wrap .catch h2 span {
  color: #fff;
  font-size: 1.6rem;
}
.div_wrap .main_wrap .catch p {
  color: #fff;
}
.div_wrap .main_wrap .catch__dog {
  width: 8rem;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
.div_wrap .main_wrap .catch__cat {
  height: 8rem;
  width: auto;
  position: absolute;
  top: 3rem;
  left: 0;
}
.div_wrap .main_wrap .benefits {
  background-image: url(../img/benefits_BG.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
  margin-top: -2rem;
}
.div_wrap .main_wrap .benefits__wrap {
  padding: 0 2rem;
}
.div_wrap .main_wrap .benefits__wrap h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #F454AC;
  line-height: 115%;
  padding-bottom: 1rem;
  color: #FFF100;
}
.div_wrap .main_wrap .benefits__wrap h2 span {
  color: #fff;
  font-size: 1.6rem;
}
.div_wrap .main_wrap .benefits__box {
  background: #fff;
  padding: 1.6rem 1.4rem;
  border-radius: 2rem;
  margin-bottom: 1.6rem;
}
.div_wrap .main_wrap .benefits__box--p {
  font-size: 1.2rem;
  text-align: center;
}
.div_wrap .main_wrap .benefits__box ul {
  text-align: center;
  width: 100%;
  display: inline-block;
  margin-top: 1.6rem;
}
.div_wrap .main_wrap .benefits__box ul li {
  float: left;
  font-size: 1.5rem;
  color: #fff;
  background: #008C56;
  border-radius: 0.4rem;
  text-align: center;
  width: 47%;
  margin-left: 0.8rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0;
  box-sizing: border-box;
}
.div_wrap .main_wrap .benefits__box ul li span {
  font-size: 2.2rem;
  font-weight: 700;
}
.div_wrap .main_wrap .benefits__box ul .wide_li {
  width: 97%;
}
.div_wrap .main_wrap .benefits__flexbox {
  display: flex;
  justify-content: left;
  align-items: center;
}
.div_wrap .main_wrap .benefits__flexbox img {
  width: 5rem;
  height: 5rem;
  margin-right: 0.4rem;
}
.div_wrap .main_wrap .benefits__flexbox h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #F454AC;
  line-height: 103%;
  margin-bottom: 0.4rem;
}
.div_wrap .main_wrap .benefits__flexbox h3 span {
  color: #008C56;
  font-size: 1.2rem;
}
.div_wrap .main_wrap .benefits__flexbox .h3_span {
  color: #F454AC;
  font-size: 2.8rem;
  font-weight: 900;
}
.div_wrap .main_wrap .fee_point {
  background-image: url(../img/fee_poin_BG.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-top: 4rem;
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
  position: relative;
}
.div_wrap .main_wrap .fee_point__wrap {
  padding: 0 2rem;
  padding-bottom: 8rem;
}
.div_wrap .main_wrap .fee_point__wrap h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #F454AC;
  line-height: 115%;
  padding-bottom: 1rem;
}
.div_wrap .main_wrap .fee_point__wrap h2 span {
  color: #fff;
  font-size: 1.6rem;
}
.div_wrap .main_wrap .fee_point__wrap h2 span {
  color: #008C56;
}
.div_wrap .main_wrap .fee_point__box {
  background-image: url(../img/fee_boxBG.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 3rem 2.4rem 4.8rem 2.4rem;
  position: relative;
  box-sizing: border-box;
}
.div_wrap .main_wrap .fee_point__box p {
  margin-bottom: 2.4rem;
}
.div_wrap .main_wrap .fee_point__box img {
  width: 100%;
}
.div_wrap .main_wrap .fee_point__box--inbox {
  background: #fff;
  text-align: center;
  border-radius: 1.6rem;
  padding: 1rem 2.2rem 1.4rem 2.2rem;
  margin-bottom: 2.4rem;
}
.div_wrap .main_wrap .fee_point__box--inbox h4 {
  color: #008C56;
  font-size: 1.8rem;
  font-weight: 800;
}
.div_wrap .main_wrap .fee_point__box--inbox p {
  margin-bottom: 0;
  text-align: left;
}
.div_wrap .main_wrap .fee_point__btnbox {
  text-align: center;
}
.div_wrap .main_wrap .fee_point__btnbox--btn {
  font-size: 2rem;
  font-weight: 800;
  padding: 1.6rem 3.2rem;
  border-radius: 5rem;
  background: #008C56;
  color: #fff;
}
.div_wrap .main_wrap .fee_point__btnbox--btn:hover {
  background: #F454AC;
}
.div_wrap .main_wrap .fee_point--cat {
  position: absolute;
  width: 8rem;
  bottom: 0;
  left: 0;
}
.div_wrap .main_wrap .fee {
  margin-bottom: 4rem;
}
.div_wrap .main_wrap .point {
  position: relative;
  padding-bottom: 2.4rem;
}
.div_wrap .main_wrap .point__box {
  background-image: url(../img/point_boxBG.webp);
  padding-bottom: 1rem;
  margin-bottom: 3.2rem;
}
.div_wrap .main_wrap .point__dog {
  position: absolute;
  height: 7.5rem;
  width: auto;
  top: 0;
  right: -2rem;
}
.div_wrap .main_wrap .point__coin {
  width: 4rem;
  position: absolute;
  right: 2rem;
  bottom: 5rem;
}
.div_wrap .info {
  background: #FFF100;
  background-image: url(../img/info_BG.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-bottom: 5rem;
  padding-top: 5rem;
  position: relative;
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
}
.div_wrap .info img {
  width: 14rem;
  position: absolute;
  top: 5rem;
  right: 0;
  z-index: 1;
}
.div_wrap .info__wrap {
  margin: 0 2rem;
}
.div_wrap .info__wrap h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #F454AC;
  line-height: 115%;
  padding-bottom: 1rem;
}
.div_wrap .info__wrap h2 span {
  color: #fff;
  font-size: 1.6rem;
}
.div_wrap .info__wrap h2 span {
  color: #008C56;
}
.div_wrap .info__container {
  color: #fff;
  background: #fff;
  border-radius: 2rem;
  color: #000;
  width: 100%;
  position: relative;
  text-align: left;
  padding: 2.4rem 1.6rem;
  box-sizing: border-box;
}
.div_wrap .info__container h5 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5em;
  color: #007346;
}
.div_wrap .info__container ul li {
  font-size: 1.2rem;
}
.div_wrap .info__container ul li a {
  position: relative;
  text-decoration: underline;
  color: #000;
}
.div_wrap .info__container ul li a::before {
  content: "";
  background-image: url(../img/arrow.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.8em;
  height: 0.8em;
  top: calc(50% - 0.7rem);
  display: inline-block;
}
.div_wrap .info__container ol {
  list-style-type: decimal;
  padding-left: 1.6rem;
}
.div_wrap .info__container ol li {
  font-size: 1.2rem;
}
.div_wrap .info__container p {
  font-size: 1.2rem;
}
.div_wrap .info__box {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #F5E3AB;
}
.div_wrap .info__box:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.div_wrap .info__box--annot {
  font-size: 1rem;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 0.5em;
}
.div_wrap .info__box--annot::before {
  content: "※";
}
.div_wrap .notice {
  background: #FFF9D0;
  padding: 4rem 2rem;
  box-sizing: border-box;
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
}
.div_wrap .notice h2 {
  font-size: 2rem;
  color: #008C56;
  font-weight: 800;
  text-align: center;
}
.div_wrap .notice__container {
  background-image: url(../img/notice_BG.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  margin: 2rem 0;
  padding: 3rem 2.4rem 3rem 2.4rem;
}
.div_wrap .notice__container ul li {
  font-size: 1.4rem;
  list-style: "・";
  margin-bottom: 0.5rem;
}
.div_wrap .footer {
  color: #fff;
  font-size: 1rem;
  background: #fff;
}
.div_wrap .footer__container {
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-around;
}
.div_wrap .footer__container:before {
  content: "";
  border: 1px solid #BABABA;
  align-self: stretch;
}
.div_wrap .footer__container p {
  font-size: 1rem;
}
.div_wrap .footer__container img {
  height: 3.5rem;
  width: auto;
}
.div_wrap .footer__container--img {
  order: -1;
}
.div_wrap .footer__bar {
  background: #008C56;
  padding: 1.2rem 0;
  text-align: center;
}
.div_wrap .footer__bar p {
  font-size: 1rem;
  color: #fff;
}

@media screen and (max-width: 1366px) {
  html {
    /*
    font-size: 62.5%;*/
    font-size: 1.4285714286vw;
  }
  html .pc2 {
    display: none;
  }
  html .sp2 {
    display: block;
  }
  .div_wrap .bg_left {
    width: 10vw;
  }
  .div_wrap .bg_left img {
    display: none;
  }
  .div_wrap .right {
    width: 30vw;
  }
  .div_wrap .right__container--img {
    display: none;
  }
  .div_wrap .right__container--cvbtn {
    width: 15rem;
    height: 15rem;
    bottom: 2vw;
    right: 2vw;
  }
  .div_wrap .right__container .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    z-index: 10;
    background: #008C56;
    transition: right 0.3s ease;
    text-align: center;
    border-radius: 0 0 0 8rem;
  }
  .div_wrap .right__container .nav ul li a {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
  .div_wrap .right__container .nav__cat {
    width: 25%;
  }
  .div_wrap .right__container .hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 63%;
    transform: translateY(6px) rotate(-45deg);
  }
  .div_wrap .main_wrap {
    width: 60vw;
    max-width: none;
  }
  .div_wrap .main_wrap .header__logo_container {
    width: 60%;
  }
}
@media screen and (max-width: 959px) {
  .div_wrap .right__container .nav ul li a {
    font-size: 2.2rem;
    margin-bottom: 2.2rem;
  }
  .div_wrap .right__container .nav__cat {
    width: 30%;
  }
  .div_wrap .right__container .hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 60%;
    transform: translateY(6px) rotate(-45deg);
  }
}
@media screen and (max-width: 767px) {
  html {
    /*
    font-size: 62.5%;*/
    font-size: 2.5641025641vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /****mixin****/
  /************フッターで消す関連*************/
  .page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: 0.5s;
  }
  .page-top_link {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background-color: #cccccc;
  }
  .page-top_link:before {
    content: "";
    display: block;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
  }
  /*フッターまでスクロールしたら消す*/
  .is-hidden {
    visibility: hidden;
    opacity: 0;
  }
  /************************************/
  .div_wrap .bg_left {
    display: none;
  }
  .div_wrap .right {
    display: none;
  }
  .div_wrap .main_wrap {
    width: 100vw;
    max-width: none;
  }
  .div_wrap .main_wrap .header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 7rem;
    box-sizing: border-box;
    z-index: 100;
    width: 100%;
    background: rgba(255, 241, 125, 0.9);
  }
  .div_wrap .main_wrap .header__logo_container img {
    height: 3rem;
    padding-left: 2rem;
  }
  .div_wrap .main_wrap .header .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 85%;
    z-index: 10;
    background: #008C56;
    transition: right 0.3s ease;
    text-align: center;
    border-radius: 0 0 0 8rem;
  }
  .div_wrap .main_wrap .header .nav.open {
    right: 0;
    transition: right 0.3s ease;
  }
  .div_wrap .main_wrap .header .nav__cat {
    width: 40%;
    height: auto;
  }
  .div_wrap .main_wrap .header .nav ul {
    /*最初はナビゲーションボタンは非表示*/
    display: none;
    list-style: none;
    margin-top: 4rem;
    width: 65%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .div_wrap .main_wrap .header .nav ul li {
    text-align: left;
  }
  .div_wrap .main_wrap .header .nav ul li a {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1em;
    transition: 0.3s all;
    display: inline-block;
    position: relative;
    margin-bottom: 2.4rem;
    text-indent: -1.2em;
    padding-left: 1.2em;
  }
  .div_wrap .main_wrap .header .nav ul li a::before {
    content: "";
    background-image: url(../img/nikukyu.svg);
    margin-right: 0.2em;
    background-repeat: no-repeat;
    background-size: contain;
    width: 1em;
    height: 1em;
    display: inline-block;
  }
  .div_wrap .main_wrap .header .nav ul li a::before:hover {
    fill: #FFF100;
  }
  .div_wrap .main_wrap .header .nav ul li:hover {
    color: #FFF100;
  }
  .div_wrap .main_wrap .header .hamburger {
    position: absolute;
    top: 15%;
    right: 3%;
    cursor: pointer;
    width: 6rem;
    height: 5.5rem;
    z-index: 10;
    text-align: center;
    background-image: url(../img/menu_open.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
  }
  .div_wrap .main_wrap .header .hamburger__p {
    font-size: 0.8rem;
    color: #fff;
    position: absolute;
    right: 32%;
    top: 30%;
  }
  .div_wrap .main_wrap .header .hamburger span {
    /*3本の線を作る*/
    transition: all 0.3s;
    position: absolute;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 35%;
    z-index: 10;
    right: 33%;
    top: 50%;
  }
  .div_wrap .main_wrap .header .hamburger span:nth-of-type(1) {
    /*上の線の位置*/
  }
  .div_wrap .main_wrap .header .hamburger span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 65%;
  }
  .div_wrap .main_wrap .header .hamburger span:nth-of-type(3) {
    /*下の線の位置*/
    top: 80%;
  }
  .div_wrap .main_wrap .header .hamburger.open {
    background-image: url(../img/menu_close.svg);
  }
  .div_wrap .main_wrap .header .hamburger.open p {
    color: #008C56;
  }
  .div_wrap .main_wrap .header .hamburger.open span {
    right: 33%;
    background: #008C56;
  }
  .div_wrap .main_wrap .header .hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 55%;
    transform: translateY(6px) rotate(-45deg);
  }
  .div_wrap .main_wrap .header .hamburger.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
  }
  .div_wrap .main_wrap .header .hamburger.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 77%;
    transform: translateY(-6px) rotate(45deg);
  }
  .div_wrap .main_wrap .header.open {
    position: absolute;
    top: 15%;
    right: 3%;
    cursor: pointer;
    width: 6rem;
    height: 5.5rem;
    z-index: 10;
    text-align: center;
    background-image: url(../img/menu_close.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
  }
  .div_wrap .main_wrap .KV {
    padding-top: 0;
  }
  .div_wrap .main_wrap .KV__box {
    border: 0;
  }
  .div_wrap .main_wrap .KV__box img {
    border-radius: 0;
  }
  .div_wrap .main_wrap .cvbtn {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 999;
    transition: 0.5s;
  }
  .div_wrap .main_wrap .cvbtn img {
    width: 13rem;
    height: 13rem;
  }
  .div_wrap .main_wrap .is-hidden {
    display: none;
  }
  .div_wrap .main_wrap .catch {
    border: 0;
  }
  .div_wrap .main_wrap .catch h2 {
    font-size: 2.6rem;
  }
  .div_wrap .main_wrap .benefits {
    border: 0;
  }
  .div_wrap .main_wrap .benefits__flexbox h3 {
    font-size: 2rem;
  }
  .div_wrap .main_wrap .fee_point {
    border: 0;
  }
  .div_wrap .main_wrap .fee_point__box {
    padding: 3rem 2rem 4rem 2rem;
  }
  .div_wrap .main_wrap .fee_point__box--inbox {
    padding: 1rem 1.6rem 1.4rem 1.6rem;
  }
  .div_wrap .main_wrap .point {
    border: 0;
  }
  .div_wrap .main_wrap .point__box p {
    margin-bottom: 0;
  }
  .div_wrap .main_wrap .info {
    border: 0;
  }
  .div_wrap .main_wrap .notice {
    border: 0;
  }
  .div_wrap .main_wrap .footer {
    border: 0;
  }
}/*# sourceMappingURL=common.css.map */