@charset "UTF-8";
/* NotoSans */
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
/* M PLUS 1p */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500&display=swap");
/* font */
/* font option */
/* color */
/* opacity */
/* z-index */
/**
 * 引数のfontSizeをremに変換する関数
 * @param fontSize フォントサイズ
 */
/**
* 引数の最大画面サイズから指定されたpx数を元にvwに変換する関数
* @param maxScreenSize 最大画面サイズ
* @param px 変換するpx数
*/
/**
* 引数のpx数と親要素のparentを元に割合を返す関数
* @param parent 基準となる画面幅
* @param px 変換するpx数
*/
/**
 * レスポンシブ
 * - xs:  375px~
 * - sm:  576px〜
 * - md:  751px〜
 * - lg: 1024px〜
 * - xl: 1200px〜
 */


@keyframes kv-animation {
    0% {
        transform: scale(0);
    }
    30%, 50%, 70%, 100% {
        transform: scale(1);
    }
    40%, 60% {
        transform: scale(0.93);
    }
    50%, 100% {
        opacity: 1;
    }
}

@keyframes kv-animation-wasabi-sp-1 {
    0% {
        transform: rotate(19deg) scale(0);
    }
    20%, 40%, 70%, 100% {
        transform: rotate(19deg) scale(1);
    }
    30% {
        transform: rotate(19deg) scale(0.8);
    }
    55% {
        transform: rotate(19deg) scale(0.9);
    }
    50%, 100% {
        opacity: 1;
    }
}

@keyframes kv-animation-wasabi-2 {
    0% {
        transform: rotate(-5deg) scale(0);
    }
    30%, 50%, 70%, 100% {
        transform: rotate(-5deg) scale(1);
    }
    40%, 60% {
        transform: rotate(-5deg) scale(0.9);
    }
    50%, 100% {
        opacity: 1;
    }
}

@keyframes kv-animation-wasabi-sp-2 {
    0% {
        transform: rotate(8deg) scale(0);
    }
    30%, 50%, 70%, 100% {
        transform: rotate(8deg) scale(1);
    }
    40%, 60% {
        transform: rotate(8deg) scale(0.9);
    }
    50%, 100% {
        opacity: 1;
    }
}

@keyframes kv-animation-ume-1 {
    0% {
        transform: rotate(-4deg) scale(0);
    }
    30%, 50%, 70%, 100% {
        transform: rotate(-4deg) scale(1);
    }
    40%, 60% {
        transform: rotate(-4deg) scale(0.95);
    }
    50%, 100% {
        opacity: 1;
    }
}

@keyframes kv-animation-ume-sp-1 {
    0% {
        transform: rotate(-19deg) scale(0);
    }
    20%, 40%, 70%, 100% {
        transform: rotate(-19deg) scale(1);
    }
    30% {
        transform: rotate(-19deg) scale(0.8);
    }
    55% {
        transform: rotate(-19deg) scale(0.9);
    }
    50%, 100% {
        opacity: 1;
    }
}

@keyframes kv-animation-ume-2 {
    0% {
        transform: rotate(5deg) scale(0);
    }
    30%, 50%, 70%, 100% {
        transform: rotate(5deg) scale(1);
    }
    40%, 60% {
        transform: rotate(5deg) scale(0.9);
    }
    50%, 100% {
        opacity: 1;
    }
}

@keyframes kv-animation-ume-sp-2 {
    0% {
        transform: rotate(-9deg) scale(0);
    }
    30%, 50%, 70%, 100% {
        transform: rotate(-9deg) scale(1);
    }
    40%, 60% {
        transform: rotate(-9deg) scale(0.9);
    }
    50%, 100% {
        opacity: 1;
    }
}

body {
  font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  position: relative;
}
p,span,a{
    transform: rotate(0.03deg);
    font-family: 'Noto Sans Japanese', sans-serif;
}

main {
  overflow: hidden;
}

main img {
  width: 100%;
}

.d-pc {
  display: none;
}
.aCen{
     text-align: center;
}
.flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex.__f-between{
    justify-content: space-between;
}


@media screen and (min-width: 751px) {
    main img {
      max-width: 100%;
      width: auto;
    }
  .d-pc {
    display: block;
  }
}

.d-sp {
  display: block;
}

@media screen and (min-width: 751px) {
  .d-sp {
    display: none !important;
  }
}

.container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 751px) {
    .container {
        width: calc(100% - 20px);
    }
}

.container-mini {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.__link-hover {
  cursor: pointer;
}

.__link-hover:hover {
  opacity: 0.8;
}
._position-absolute {
  position: absolute;
}

.__intersection {
  opacity: 0;
}

.__intersection.__pop {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.__intersection.__left-in {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.__intersection-appearance {
  opacity: 1;
  -webkit-transition: all 0s .5s;
  transition: all 1s .2s;
}

.__intersection-appearance.__pop {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.__intersection-appearance.__left-in {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

header .inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 50;
  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;
}

#logo {
  width: 254px;
  margin: 0 auto;
}

.h_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.h_sns li {
  width: 50px;
  height: auto;
}

.h_sns li + li {
  margin-left: 20px;
}

.h_sns img {
  width: 100%;
  max-width: inherit;
  height: auto;
}

@media screen and (max-width: 750px) {
  .h_sns li {
    width: 9vw;
    height: auto;
  }
  .h_sns li + li {
    margin-left: 10px;
  }
}

@media screen and (max-width: 380px) {
  .h_sns li {
    width: 25px;
  }
}

@media screen and (min-width: 751px) {
    #footer #pagetop {
      right: 10%;
      left: auto!important;
    }
}

.section-link {
  padding: 7% 5% 32% 5%;
  background-color: #fff100;
}
@media screen and (min-width: 751px) {
    .section-link {
        padding: 5% 5% 32% 5%;
    }
}

.section-link .link-banner-comment {
  width: 100%;
}

.section-link .link-banner-comment.link-banner-comment-01-wrapper {
  margin: 12% auto 0;
}

.section-link .link-banner-comment.link-banner-comment-02-wrapper {
  margin: 17% auto 0;
}

.section-link .link-banner-comment.link-banner-comment-03-wrapper {
  margin: 16% auto 0;
}

.section-link .link-banner-comment.link-banner-comment-04-wrapper {
  margin: 17% auto 0;
}

.section-link .link-banner {
  width: 100%;
}

.section-link .link-banner.link-banner-01-wrapper {
  margin: 4% 0 0;
}

.section-link .link-banner.link-banner-02-wrapper {
  margin: 6% 0 0;
}

.section-link .link-banner.link-banner-03-wrapper {
  margin: 6% 0 0;
}

.section-link .link-banner.link-banner-04-wrapper {
  margin: 6% 0 0;
}

.section-link .link-sns-header-wrapper {
  width: 40%;
  margin: 0 auto 0;
}

.section-link .link-sns-area {
  width: 83%;
  margin: 2% auto 0;
  padding: 2% 20px;
  background-color: #ffffff;
  border: #ffa800 solid 2px;
  border-radius: 10px;
}

.section-link .link-sns-area .link-sns-icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}

.section-link .link-sns-area .link-sns-icon {
  max-width: 37px;
}
@media screen and (min-width: 751px) {
    .section-link .link-sns-area .link-sns-icon {
        max-width: 70px;
    }
}

@media screen and (min-width: 751px) {
  .section-link {
    padding: 5% 0 75px;
  }
  .section-link .link-banner-comment {
    width: 82%;
  }
  .section-link .link-banner-comment.link-banner-comment-01-wrapper {
    width: 80%;
    margin: 4% auto 0;
  }
  .section-link .link-banner-comment.link-banner-comment-02-wrapper {
    margin: 12% auto 0;
  }
  .section-link .link-banner-comment.link-banner-comment-03-wrapper {
    margin: 12% auto 0;
  }
  .section-link .link-banner-comment.link-banner-comment-04-wrapper {
    margin: 12% auto 0;
  }
  .section-link .link-banner {
    width: 94%;
  }
  .section-link .link-banner.link-banner-01-wrapper {
    margin: 0;
  }
  .section-link .link-banner.link-banner-02-wrapper {
    margin: 0;
  }
  .section-link .link-banner.link-banner-03-wrapper {
    margin: 0;
  }
  .section-link .link-banner.link-banner-04-wrapper {
    margin: 0;
  }
  .section-link .link-sns-header-wrapper {
    width: 22%;
    margin: 3% auto 0;
  }
  .section-link .link-sns-area {
    width: 50%;
    padding: 15px 8%;
    border: #ffa800 solid 5px;
    border-radius: 20px;
  }
  .section-link .link-sns-area .link-sns-icon-list {
    gap: 40px;
  }
  .section-link .link-sns-area .link-sns-icon {
    max-width: 68px;
  }
  .section-link .container-mini{
    position: relative;
  }
  .section-link .container-mini .link-sns-img{
    position: absolute;
    right: 6px;
    bottom: -75px;
      width: 31%;
  }
}
@media screen and (max-width: 750px) {
  .section-link{
    padding-bottom: 0;
  }
  .section-link .container-mini .link-sns-img{
    width: 40vw;
    margin: 5.3vw auto auto;
  }
}

/**
 * レスポンシブ
 * - xs:  375px~
 * - sm:  576px〜
 * - md:  751px〜
 * - lg: 1024px〜
 * - xl: 1200px〜
 */

.section-top {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #fff000;
}

@media screen and (min-width: 751px) {
  .section-top {
    background-color: #fff000;
  }
}

.section-top .container {
  margin: 0 auto;
}

.section-top .container.__kv {
  max-width: inherit;
    width: 100%;
}
.section-top .container.__kv .kv-img{
    box-shadow: 0 10px 15px rgba(0,0,0,0.6);
}
.section-top .container.__kv .kv__line-01{
    position: relative;
}
.section-top .container.__kv .kv__line-01 img{
    width: 100%;
}
.section-top .container.__kv .kv__line-01__img-01{
    position: absolute;
    top: 12%;
    left: 0;
    width: 32.8%;
}
.section-top .container.__kv.__intersection-appearance .kv__line-01__img-01{
    animation: kv-animation 1.5s 0.8s both;
}
.section-top .container.__kv .kv__line-01__img-02{
    position: absolute;
    top: 12%;
    left: 34%;
    width: 33.5%;
}
.section-top .container.__kv.__intersection-appearance .kv__line-01__img-02{
    animation: kv-animation 1.5s 0.8s both;
}
.section-top .container.__kv .kv__line-01__img-03{
    position: absolute;
    top: 12%;
    left: 68%;
    width: 33.5%;
}
.section-top .container.__kv.__intersection-appearance .kv__line-01__img-03{
    animation: kv-animation 1.5s 0.8s both;
}
.section-top .container.__kv .kv__line-02{
    position: relative;
    background: #fff000;
    padding: 0 0 1.5%;
}
.section-top .container.__kv .kv__line-02 img{
    width: 100%;
}
.section-top .container.__kv .kv__line-02__img-01{
    position: absolute;
    top: -21%;
    left: 1%;
    width: 17.8%;
    animation: kv-animation 1.5s 0.8s both;
}
.section-top .container.__kv.__intersection-appearance .kv__line-02__img-01{
    animation: kv-animation 1.5s 1.6s both;
}
.section-top .container.__kv .kv__line-02__img-02{
    position: absolute;
    top: -4%;
    left: 54%;
    width: 65.6%;
    transform: translate(-50%,30px);
    transition-delay: 1.4s;
    transition-duration: .6s;
}
.section-top .container.__kv.__intersection-appearance .kv__line-02__img-02{
    transform: translate(-50%,0);
}
.section-top .container.__kv .kv__line-02__img-03{
    width: 97.8%;
    margin-left: 1%;
}
.section-top .container.__kv.__intersection-appearance .kv__line-02__img-03{
    animation: kv-animation 1.5s 2s both;
}

.section-top .menu_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0 55px 0;
    box-sizing: border-box;
}
.section-top .menu_wrap a{ transition: .4s;}
.section-top .menu_wrap a:hover{
    opacity: .7;
}
@media screen and (min-width: 751px) {
  .section-top .menu_wrap a+a{ margin-left: 106px;}
}
@media screen and (max-width: 750px) {
  .section-top .menu_wrap{
    padding: 6.7vw 5.3vw 4.6vw;
    justify-content: space-evenly;
    /* justify-content: space-between; */
  }
  .section-top .menu_wrap a{
    width: 25.6vw;
  }

    .section-top .container.__kv .kv__line-01__img-01{
        top: 8%;
        left: 0;
        width: 33%;
    }
    .section-top .container.__kv .kv__line-01__img-02{
        top: 8%;
        left: 32.5%;
        width: 34%;
    }
    .section-top .container.__kv .kv__line-01__img-03{
        top: 8%;
        left: 68%;
        width: 33%;
    }
    .section-top .container.__kv .kv__line-02{
        padding: 4% 0 4%;
    }
    .section-top .container.__kv .kv__line-02__img-01{
        top: 17%;
        left: 4%;
        width: 31.4%;
        animation: kv-animation 1.5s 0.8s both;
        z-index: 1;
    }
    .section-top .container.__kv .kv__line-02__img-02{
        top: -8%;
        left: 50%;
        width: 89.8%;
        transform: translate(-50%,30px);
        transition-delay: 1.4s;
        transition-duration: .6s;
    }
    .section-top .container.__kv .kv__line-02__img-03{
        width: 93%;
        margin-left: 1%;
    }

}


/**
 * レスポンシブ
 * - xs:  375px~
 * - sm:  576px〜
 * - md:  751px〜
 * - lg: 1024px〜
 * - xl: 1200px〜
 */
.bg-yellow{ background-color: #fff000;}
.bg-yellow02{ background-color: #ffe400;}

.bg-wrap{
    position: relative;
    padding: 10px;
    background: url("../images/bg.png") repeat left top ,#FFF;
    border-radius: 100px 100px 0 0;
    box-shadow: 0 0 18px 0 rgba(0,0,0,.3);
    box-sizing: border-box;
}


.bg-wrap.bg-kakinotane:before{
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    display: block;
    content: '';
    background-size: 100% auto !important;
}
.bg-wrapIn{
    padding: 80px 10px 80px 10px;
    border: 4px solid #fec338;
    border-radius: 90px 90px 0 0;
    box-sizing: border-box;
}
@media screen and (max-width: 750px){
  .bg-wrap{
    background-image: none;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }
  .bg-wrap.bg-kakinotane::before,
  .bg-wrap.bg-kakinotane::after{
    content: none;
  }
  .bg-wrapIn{
    padding: 0;
    border: none;
    border-radius: 0;
  }
  .bg-spwrap{
    background-image: url(../images/bg_sp02.png);
    background-size: 100%;
    background-repeat: repeat-y;
    padding: 7.933vw 5.3333vw 20vw;
    position: relative;
  }
  .bg-spwrap::before,
  .bg-spwrap::after{
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    height: 2.933vw;
    display: block;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .bg-spwrap::before{
    background-image: url(../images/bg_sp01.png);
    background-position: top center;
    top: -1.1vw;
  }
  .bg-spwrap::after{
    background-image: url(../images/bg_sp03.png);
    background-position: bottom center;
    bottom: -0.7vw;
  }
}
.section-about{
    padding: 0 0 100px 0;
    box-sizing: border-box;
}
.section-about .bg-wrap.bg-kakinotane::before{
    left: 48%;
    transform: translateX(-50%);
    background: url("../images/about/bg_kakipi.png") no-repeat center center;
    width: 1323px;
    height: 677px;
}
@media screen and (min-width: 751px) {
  /* .section-about .bg-wrap::after{
      position: absolute;
      right: -107px;
      bottom: 0;
      content: '';
      background: url("../images/about/img01.png") no-repeat center bottom;
      background-size: 100% auto;
      max-width: 239px;
      width: 26%;
      height: 394px;
  } */

  .section-about .section-title{
      margin-bottom: 30px;
  }
  .section-about .section-subtitle{
      margin-bottom: 40px;
  }
  .section-about .flex{ margin-bottom: 20px;}
  .section-about .flex div+div{ margin-left: 7px;}
    .section-about .note{
        width: 100%;
        max-width: 932px;
        margin: 0 auto 70px auto;
        font-size: 1.0rem;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .section-about .section-txt-01 {
        width: 75%;
        margin: 0 auto;
    }
    .section-about .section-txt-02 {
      width: 76%;
      margin: 0 auto;
    }
}

@media screen and (max-width: 750px) {

  .section-about{
    padding-bottom: 10vw;
  }
  .section-about .bg-wrapIn{
    padding: 0;
    border: none;
    border-radius: 0;
  }
  .section-about .section-title{
    margin-bottom: -1vw;
    position: relative;
    z-index: 1;
  }

  .section-about .bg-spwrap{
    
    padding-top: 6.67vw;
  }
  .section-about .flex{ 
    display: block;
  }
  .section-about .flex div{
    width: 73.5vw;
    margin: auto auto auto;
  }
  .section-about .flex div+div{
    margin-top: 4vw;
  }
    .section-about .note{
        display: none;
    }

  .section-about .section-txt{
    width: 72.27vw;
    margin: 12.4vw auto -8vw;
    position: relative;
    z-index: 1;
  }
}
/**
 * レスポンシブ
 * - xs:  375px~
 * - sm:  576px〜
 * - md:  751px〜
 * - lg: 1024px〜
 * - xl: 1200px〜
 */
.section-prize{
    padding: 0 0 130px 0;
    box-sizing: border-box;
}
.section-prize .bg-wrap.bg-kakinotane:before{
    left: 47.5%;
    top: 60px;
    transform: translateX(-50%);
    background: url("../images/prize/bg_kakipi.png") no-repeat center center;
    width: 1287px;
    height: 1491px;
    z-index: 5;
}
.section-prize .bg-wrap{
    padding-bottom: 0;
}
.section-prize .bg-wrapIn{
    position: relative;
    padding: 70px 0 0 0;
    border: none;
}
@media screen and (min-width: 751px) {
.section-prize .bg-wrapIn:after{
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    content: '';
    width:100%;
    height: calc(100% - 14px);
    border: 4px solid #fec338;
    border-radius: 90px 90px 0 0;
    box-sizing: border-box;
    z-index: 3;
}
.section-prize .section-title{
    position: relative;
    margin-bottom: 24px;
}
.section-prize .section-title:before{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -65px;
    display: block;
    content: '';
    background: url("../images/prize/flag.png") no-repeat center center;
    background-size: 100% auto;
    width: 921px;
    height: 144px;
}
.section-prize .section-txt {
    text-align: center;
    position: relative;
    z-index: 10;
    width: calc(62% + 60px);
    margin: 0 auto;
    padding-left: 60px;
}
.section-prize .prize_area{
    margin-left: -10px;
    margin-right: -10px;
}
.section-prize .prize_area.-prize_a{ position: relative; margin-top: 10px;}
.section-prize .prize_area.-prize_a:after{
    position: absolute;
    left: -99px;
    top: -295px;
    content: '';
    background: url("../images/prize/img01.png") no-repeat center center;
    background-size: 100% auto;
    max-width: 310px;
    width: 37%;
    height: 384px;
    z-index: 4;
}
.section-prize .prize_area.-prize_b{
    position: relative;
    margin-top: -42px;
    z-index: 2;
}
}
@media screen and (max-width: 750px) {

  .section-prize{
    padding: 0 0 5.6vw;
  }
  .section-prize .bg-wrapIn{
    padding: 0;
  }
  .section-prize .bg-wrapIn:after{
    content: none;
  }
  .section-prize .prize_area.-prize_a{
    margin-top: -14.4vw;
  }
  .section-prize .prize_area.-prize_b{
    margin-top: -10.4vw;
  }
}

.finish-area::after {
  content: '';
  width: 83%;
  height: 58.7%;
  display: block;
  position: absolute;
  top: 4.5%;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 751px) {
  .finish-area::after {
    width: 80%;
    height: 64%;
  }
}
@media screen and (min-width: 430px) and (max-width: 750px) {
  .finish-area::after {
    height: 58.7%;
  }
}
@media screen and (max-width: 330px) {
  .finish-area::after {
    height: 57%;
  }
}

/**
 * レスポンシブ
 * - xs:  375px~
 * - sm:  576px〜
 * - md:  751px〜
 * - lg: 1024px〜
 * - xl: 1200px〜
 */
.section-application {
  padding: 18.5% 0 16%;
  position: relative;
}

@media screen and (min-width: 751px) {
  .section-application {
    padding: min(15.5%, 80px) 0 7.4%;
  }
}
@media screen and (min-width: 751px) {
  .section-application .bg-wrap.bg-kakinotane:before{
      left: 47.5%;
      top: 40px;
      transform: translateX(-50%);
      background: url("../images/application/bg_kakipi.png") no-repeat center center;
      width: 1263px;
      height: 746px;
      z-index: 5;
      pointer-events: none;
  }
  .section-application .bg-wrap{
      padding-bottom: 0;
  }
  .section-application .bg-wrapIn{
      position: relative;
      padding: 70px 0 100px 0;
      border: none;
  }
  .section-application .bg-wrapIn:after{
      position: absolute;
      left: 0;
      top: 0;
      display: block;
      content: '';
      width:100%;
      height: calc(100% - 14px);
      border: 4px solid #fec338;
      border-radius: 90px 90px 0 0;
      box-sizing: border-box;
      z-index: 3;
      pointer-events: none;
  }
  .section-application .section-title{
      position: relative;
      margin-bottom: 24px;
  }
  .section-application .section-title:before{
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: -65px;
      display: block;
      content: '';
      background: url("../images/prize/flag.png") no-repeat center center;
      background-size: 100% auto;
      width: 921px;
      height: 144px;
  }
  .section-application .container .application__step-1__image-wrapper{
      margin-top: 50px;
      margin-left: -10px;
      margin-right: -10px;
  }

  .section-application .container .application__step-1-message__text {
    margin: 4% 0 0;
    font-size: 3.1vw;
    font-weight: bold;
    line-height: 1.7;
    text-align: center;
  }
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-1-message__text {
    margin: 2.8% 0 0;
    font-size: min(1.6vw, 16px);
  }
}

.section-application .container .application__package__image-wrapper {
  width: 89%;
  margin: 7% auto 0;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__package__image-wrapper {
    width: 67.5%;
    margin: 2% auto 0;
  }
}

.section-application .container .applicatioin__step-1-notion__wrapper {
  width: 90%;
  margin: 7% auto 0;
  font-size: 2.5vw;
  line-height: 1.9;
  letter-spacing: 0.1vw;
}

@media screen and (min-width: 751px) {
  .section-application .container .applicatioin__step-1-notion__wrapper {
    width: 48%;
    margin: 1.6% auto 0;
    font-size: min(0.9vw, 12.8px);
    letter-spacing: 0;
  }
}

.section-application .container .applicatioin__step-1-notion__wrapper .applicatioin__step-1-notion-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-application .container .application__step-2__image-wrapper{
    margin-top: 5vw;
}

@media screen and (min-width: 751px) {
    .section-application .container .application__step-2__image-wrapper{
        margin-top: 50px;
        margin-left: -10px;
        margin-right: -10px;
    }

}

.section-application .container .application__step-2-message__text {
  margin: 4% 0 0;
  font-size: 3.1vw;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.1vw;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-2-message__text {
    margin: 2.8% 0 0;
    font-size: min(1.9vw, 19.2px);
    letter-spacing: 0;
  }
}

.section-application .container .application__choice__image-wrapper {
  width: 89%;
  margin: 4% auto 0;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__choice__image-wrapper {
    width: 66%;
    margin: 1.8% auto 0;
  }
}

.section-application .container .application__step-3__image-wrapper {
  width: 89%;
  margin: 11% auto 0;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3__image-wrapper {
    width: 66%;
    margin: 6% auto 0;
  }
}

.section-application .container .application__step-3-vote__area {
  width: 93%;
  margin: 7% auto 0;
  padding: 16% 0 0;
  position: relative;
  pointer-events: none;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area {
    padding: 13% 0 0;
  }
}

/* .section-application .container .application__step-3-vote__area::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
} */

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area {
    width: 66%;
    margin: 0.4% auto 0;
  }
}

.section-application .container .application__step-3-vote__area .application__close__image-wrapper {
  width: 80%;
  position: absolute;
  top: 30%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__close__image-wrapper {
    width: 100%;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area {
  position: relative;
}

.section-application .container .application__step-3-vote__area .application__tab__area .panels{
    position: relative;
    z-index: 1;
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel {
  display: none;
}

.section-application .container .application__step-3-vote__area .application__tab__area input[name="tab-radio"] {
  display: none;
}

.section-application .container .application__step-3-vote__area .application__tab__area #tab1:checked ~ .panels #area1, .section-application .container .application__step-3-vote__area .application__tab__area #tab2:checked ~ .panels #area2 {
  display: block;
}

.section-application .container .application__step-3-vote__area .application__tab__area .tab-label1, .section-application .container .application__step-3-vote__area .application__tab__area .tab-label2 {
  cursor: pointer;
}

.section-application .container .application__step-3-vote__area .application__tab__area .tab-label1 .__on, .section-application .container .application__step-3-vote__area .application__tab__area .tab-label2 .__on {
  width: 42%;
  display: none;
  cursor: default;
}

.section-application .container .application__step-3-vote__area .application__tab__area .tab-label1 .__off, .section-application .container .application__step-3-vote__area .application__tab__area .tab-label2 .__off {
  width: 42%;
  display: block;
}

.section-application .container .application__step-3-vote__area .application__tab__area .tab-label1 .__off:hover, .section-application .container .application__step-3-vote__area .application__tab__area .tab-label2 .__off:hover {
  opacity: .5;
}

.section-application .container .application__step-3-vote__area .application__tab__area #tab1:checked + .tab-label1 .__on, .section-application .container .application__step-3-vote__area .application__tab__area #tab2:checked + .tab-label2 .__on {
  width: 42%;
  display: block;
  cursor: default;
    z-index: 2;
}

.section-application .container .application__step-3-vote__area .application__tab__area #tab1:checked + .tab-label1 .__off, .section-application .container .application__step-3-vote__area .application__tab__area #tab2:checked + .tab-label2 .__off {
  width: 42%;
  display: none;
}

.section-application .container .application__step-3-vote__area .application__tab__area #tab1:checked + .tab-label1 .__off:hover, .section-application .container .application__step-3-vote__area .application__tab__area #tab2:checked + .tab-label2 .__off:hover {
  opacity: .5;
}

.section-application .container .application__step-3-vote__area .application__tab__area .tab-label1 .__on {
  top: 0;
  left: 6.5%;
  -webkit-transform: translate(0, -82%);
          transform: translate(0, -82%);
}

.section-application .container .application__step-3-vote__area .application__tab__area .tab-label1 .__off {
    top: 0;
    left: 6.5%;
  -webkit-transform: translate(0, -65%);
          transform: translate(0, -65%);
}

.section-application .container .application__step-3-vote__area .application__tab__area .tab-label2 .__on {
  top: 0;
  left: 52.5%;
  -webkit-transform: translate(0, -70%);
          transform: translate(0, -70%);
}

.section-application .container .application__step-3-vote__area .application__tab__area .tab-label2 .__off {
    top: 0;
    left: 52.5%;
  -webkit-transform: translate(0, -65%);
          transform: translate(0, -65%);
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area {
  width: 100%;
  padding: 7.8% 2% 0;
  border-right: 3px solid #06c755;
  border-left: 3px solid #06c755;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area {
    padding: 5.4% 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
      border-right: 5px solid #06c755;
      border-left: 5px solid #06c755;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-step1__image-wrapper {
  width: 45vw;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-step1__image-wrapper {
    width: 74%;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-link-button__image-wrapper {
  width: 95%;
  margin: 5% auto 0;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-link-button__image-wrapper {
    width: 90.6%;
    margin: 3.2% auto 0;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-step2__image-wrapper {
  width: 82%;
  margin: 11% auto 0;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-step2__image-wrapper {
    width: 73%;
    margin: 8% auto 0;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-step2-howto__image-wrapper {
  width: 100%;
  margin: 6% auto 0;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-step2-howto__image-wrapper {
    width: 100%;
    margin: 4.8% auto 0;
      text-align: center;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-coution__text {
  padding: 7% 0 8.6%;
  font-size: 2.5vw;
  line-height: 1.7;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-coution__text {
    margin: 0 auto;
    font-size: min(1.4vw, 14px);
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-coution__text .application__line-coution-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area {
  width: 100%;
  padding: 7.8% 2% 12%;
  border-right: 3px solid #e50012;
  border-left: 3px solid #e50012;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area {
    padding: 7.3% 0 6%;
      border-right: 5px solid #e50012;
      border-left: 5px solid #e50012;
  }
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-step1__image-wrapper {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-step1__image-wrapper {
    width: 75%;
      margin: 0 auto;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-link-button__image-wrapper {
  width: 96%;
  margin: 6% auto 0;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-link-button__image-wrapper {
    width: 89%;
    margin: 2% auto 0;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-adobe-notion__area {
  margin: 5% auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vw;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-adobe-notion__area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-adobe-notion__area .application__letter-link-adobe__image-wrapper {
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-adobe-notion__area .application__letter-link-adobe__image-wrapper {
    width: 75%;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-adobe-notion__area .application__adobe-notion__text {
  font-size: 2.1vw;
  line-height: 1.7;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-adobe-notion__area .application__adobe-notion__text {
    width: 42%;
    font-size: 0.6rem;
    text-align: left;
    line-height: 1.8;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-step2__image-wrapper {
  width: 78vw;
  margin: 9% auto 0;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-step2__image-wrapper {
    width: 77%;
    margin: 10% auto 0;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-step3__image-wrapper {
  width: 75vw;
  margin: 12% auto 0;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-step3__image-wrapper {
    width: 82%;
    margin: 8% auto 0;
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-address__text {
  margin: 10% auto 0;
  padding: 3%;
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1vw;
  border-radius: 25px;
  background-color: #f3f3f3;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-address__text {
      width: 90%;
    margin: 4% auto 0;
    padding: 3%;
    font-size: min(1.4vw, 16px);
  }
}

.section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-2 .application__letter-panel-content__area .application__letter-address__text .__red {
  color: #e50012;
}

.section-application .container .application__receipt-notion__area {
  width: 89%;
  margin: 7.6% auto 0;
  padding: 7.4% 0 10%;
  border-radius: 22px;
  background-color: #f3f3f3;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__receipt-notion__area {
    width: 66%;
    margin: 6.1% auto 0;
    padding: 5.2% 0 6.3%;
  }
}

.section-application .container .application__receipt-notion__area .application__sub-title__image-wrapper {
  width: 98%;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__receipt-notion__area .application__sub-title__image-wrapper {
    width: 65%;
  }
}

.section-application .container .application__receipt-notion__area .application__date__area {
  width: 89%;
  margin: 6% auto 0;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__receipt-notion__area .application__date__area {
    width: 84%;
    margin: 3% auto 0;
  }
}

.section-application .container .application__receipt-notion__area .application__date__area .application__date-title__text {
  padding: 3% 0;
  font-size: 3.9vw;
  text-align: center;
  color: #ffffff;
  border-radius: 12px 12px 0 0;
  background-color: #ea5504;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__receipt-notion__area .application__date__area .application__date-title__text {
    padding: 1.7% 0;
    font-size: min(2vw, 24px);
  }
}

.section-application .container .application__receipt-notion__area .application__date__area .application__date-message__text {
  margin: -1px 0 0 0;
  padding: 2% 0 3%;
  font-size: 4.4vw;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  border: 5px solid #ea5504;
  border-radius: 0 0 12px 12px;
  background-color: #fff;
    font-feature-settings: "palt";
}

.section-application .container .application__receipt-notion__area .application__date__area .application__date-message__text span{
    font-size: 1.2em;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__receipt-notion__area .application__date__area .application__date-message__text {
    padding: 2.4% 0 3%;
    font-size: min(2vw, 21px);
  }
}

.section-application .container .application__receipt-notion__area .application__date__area .application__date-message__text .__mini {
  margin: 1% 0 0;
  font-size: 2vw;
  font-weight: normal;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__receipt-notion__area .application__date__area .application__date-message__text .__mini {
    font-size: min(1.4vw, 16px);
  }
}
@media screen and (max-width: 750px) {
  .section-application .container .application__receipt-notion__area .application__date__area .application__date-message__text .__mini {
    font-size: 2vw;
  }
}

.section-application .container .application__receipt-notion__area .applicatioin__receipt-about__wrapper {
  width: 92%;
  margin: 8% auto 0;
  font-size: 3vw;
  line-height: 1.5;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__receipt-notion__area .applicatioin__receipt-about__wrapper {
    width: 87%;
    margin: 3% auto 0;
    font-size: min(1.4vw, 14px);
      font-weight: 500;
    line-height: 2;
  }
}

.section-application .container .application__receipt-notion__area .applicatioin__receipt-about__wrapper .applicatioin__receipt-about-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-application .container .application__receipt-notion__area .applicatioin__receipt-about__wrapper .applicatioin__receipt-about-detail__area {
  margin: 0 0 0 4%;
}

.section-application .container .application__receipt-notion__area .applicatioin__receipt-about__wrapper .applicatioin__receipt-about-detail__area .applicatioin__receipt-about-detail__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-application .container .application__receipt-notion__area .application__receipt-notion__image-wrapper {
  width: 92%;
  margin: 11% auto 0;
}

@media screen and (min-width: 751px) {
  .section-application .container .application__receipt-notion__area .application__receipt-notion__image-wrapper {
    margin: 7% auto 0;
  }
}

@media screen and (max-width: 750px) {

  .section-application{
    padding: 5vw 0 6.7vw;
    position: relative;
  }
  .section-application::after{
    content: "";
    width: 100%;
    height: 92.3vw;
    display: block;
    position: absolute;
    left: 0;
    top: 4vw;
    background-image: url(../images/application/bg_kakipi_sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;

  }
  .section-application .bg-spwrap::before{
    content: none;
  }
  .section-application .application__step-1-message__text{
    text-align: center;
    padding: 0 5.3333vw;
    font-size: 3.47vw;
    line-height: calc(40/26);
    font-weight: bold;
    margin-top: 5vw;
  }
  .section-application .container .applicatioin__step-1-notion__wrapper{
    font-size: 3.2vw;
    line-height: calc(38/24);
  }
  .section-application .application__line-link-txt{
    margin-top: 1.3vw;
    text-align: center;
    font-size: 3.2vw;
    line-height: calc(36/24);
  }

  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-step2__image-wrapper {
    width: 45.2vw;
  }
  .section-application .container .application__step-3-vote__area .application__tab__area .panel.__panel-1 .application__line-panel-content__area .application__line-coution__text {
    font-size: 2.67vw;
    line-height: 1.5;
  }

}
/**
 * レスポンシブ
 * - xs:  375px~
 * - sm:  576px〜
 * - md:  751px〜
 * - lg: 1024px〜
 * - xl: 1200px〜
 */
.section-term {
  padding: 2% 0 8%;
  background-color: #fff000;
}

@media screen and (min-width: 751px) {
  .section-term {
    padding: 1.5% 0 min(16%, 120px);
  }
}

.section-term .term__term__area {
  width: 89%;
  margin: 6% auto 0;
}

@media screen and (min-width: 751px) {
  .section-term .term__term__area {
    width: auto;
      margin-top: 5%;
  }
}

.section-term .term__term__area .term__term-title__text {
  font-size: 4.9vw;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background-color: #ea5504;
}

@media screen and (min-width: 751px) {
  .section-term .term__term__area .term__term-title__text {
    font-size: 2.6rem;
  }
}

.section-term .term__term__area .term__term-message__text {
  margin: -1px 0 0 0;
  padding: 5.4% 3.2%;
  font-size: 3.4vw;
  line-height: 1.8;
  background-color: #ffffff;
  border: 5px solid #ea5504;
    border-top: 0;
}

@media screen and (min-width: 751px) {
  .section-term .term__term__area .term__term-message__text {
    padding: 3.8% 3%;
    font-size: min(1.4vw, 16px);
  }
}

.section-term .term__term__area .term__term-message__text.__term {
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: 92vw;
}
@media screen and (min-width: 751px) {
    .section-term .term__term__area .term__term-message__text.__term {
        max-height: 455px;
    }
}

.section-term .term__term__area .term__term-message__text p:nth-child(n + 2) {
  margin: min(1.4vw, 18px) 0 0;
}

.section-term .term__term__area .term__term-message__text p:nth-child(n + 2).term__notion__area {
  margin: 0 0 0;
}

.section-term .term__term__area .term__term-message__text a {
  color: #003bfc;
  cursor: pointer;
}
.section-term .term__term__area .term__term-message__text .tel-link a{
    color: #000;
    text-decoration: none;
}

.section-term .term__term__area .term__term-message__text a._antialiased {
  display: inline-block;
}

.section-term .term__term__area .term__term-message__text span._antialiased {
  display: inline-block;
}

.term__notion__area._antialiased.prize_txt span{ width: 2.4rem;}
.term__notion__area._antialiased.prize_txt span+span{ width: calc(100% - 2.4rem);}

.section-term .term__term__area .term__term-message__text .term__notion__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-term .term__term__area .term__term-message__text .term__notion__area.mt{
    margin-top: 1em;
}


.section-term .term__term__area .term__term-message__text .__mini {
  font-size: 2vw;
  line-height: 1.8;
}

@media screen and (min-width: 751px) {
    .term__notion__area._antialiased.prize_txt span{ width: 3rem;}
    .term__notion__area._antialiased.prize_txt span+span{ width: calc(100% - 3rem);}
  .section-term .term__term__area .term__term-message__text .__mini {
    font-size: min(1.4vw, 14px);
  }
}

.section-term .term__term__area .term__term-message__text .term__icon__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-term .term__term__area .term__term-message__text .term__icon__area .term__icon__image-wrapper {
  width: 16px;
  display: inline-block;
  margin: -.6rem .5rem 0 0;
}
