:root{
  /*ページ汎用*/
  --color01:#FFC136;/*全体背景*/
  --color02:#FFFFFF;/*メイン背景*/
  --color03:#FFEEC7;/*メイン装飾背景*/
  --color04:#452505;/*テキストメイン*/
  --color05:#FFD672;/*注釈背景*/
  --color06:#2FB901;/*LINE*/
  --color07:#000000;/*X*/
  --color08:#EDEDEA;/*フォーム色*/
  --color09:#D71921;/*テキスト強調*/
  --color10:#DADADA;/*フォームボタン非アクティブ*/
  --color11:#999999;/*フォームボタン非アクティブテキスト*/
  /*レスポンシブ計算式*/
  --sp-base: 375;

  /* SP用スケール */
  --vw: calc(100vw / 375);
  /*例：width: calc(60 * var(--vw));*/
}
@media screen and (min-width: 1200px){
  /*PC用スケール */
  :root {
    --pc-base: 800;
    --vw: calc(100vw / 800);
    /*例：width: calc(60 * var(--vw));*/
  }
}
*{
  box-sizing: border-box;
}
body {
  line-height: 1;
  box-sizing: border-box;
}
body .Wrap {
  overflow: clip !important;
  background-color: var(--color01);
}
img{
  max-width: 100%;
}
em{
  font-weight: 600;
}
a:hover{
  text-decoration: none;
}
.pc_view {
  display: none;
}
.sp_view {
  display: block;
}

@media screen and (min-width: 1200px){
  .pc_view {
    display: block;
  }
  .sp_view {
    display: none;
  }
}

.mt_15{
  margin-top: calc(7 * var(--vw)) !important;
}

footer {
  position: relative;
  z-index: 1;
}

#PageTop {
  background:var(--color01);
}
/*============================
  メイン
============================*/
.MainColumn{
  position: relative;
  text-align: left;
  color: var(--color04);
  padding: 20px 30px;
}
.main{
  text-align: center;
  max-width: 800px;
  padding: 22px 16px 30px;
  background-color: var(--color02);
  border-radius: 10px;
  margin: auto;
}
@media screen and (max-width: 320px){
  .main{
    padding: 22px 10px 30px;
  }
}
.main .main_img{
  display: block;
  width: 100%;
  max-width: 386px;
  margin: 0 auto 15px;
}
.main .period{
  font-size: 13px;
  font-weight: 600;
  height: 36px;
  line-height: 36px;
  background-color: var(--color03);
  border-radius: 4px;
  margin:0 auto 20px;
  max-width: 533px;
}
.main .period span{
  font-size: 16px;
}
@media screen and (max-width: 320px){
  .main .period{
    font-size: 11px;
  }
  .main .period span{
    font-size: 14px;
  }
}
.main .code {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: baseline;
  gap: .4em;
}
@media screen and (max-width: 320px){
  .main .code{
    font-size: 14px;
  }
}
.main .invitation {
  display: inline-block;
  background: var(--color08);
  font-weight: 600;
  font-size: inherit;
  cursor: pointer;
  user-select: all;
  white-space: nowrap;
}
.main .copy_message{
  position: absolute;
  width: 230px;
  font-size: 14px;
  color: var(--color02);
  line-height: 5;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.main a{
  display: block ;
  color: var(--color02);
  width: 236px;
  height: 50px;
  border-radius: 50px;
  margin: auto;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 50px;
}
.main a.share_line{
  margin-bottom: 20px;
  background-color: var(--color06);
}
@media screen and (min-width: 1200px){
  .main a.share_line{
    margin-bottom: 0;
  }
}
.main a.share_x{
  background-color: var(--color07);
}
.main a.share_line svg{
  width: 30px;
  height: 29px;
  vertical-align: middle;
  margin-right: 5px;
}
.main a.share_x svg{
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 5px;
}
.main .share{
  margin-bottom: 30px;
}
.form {
  max-width: 533px;
  margin: auto;
}
.form.error .form-error{
  display: block !important;
  font-size: 11px;
  color: var(--color09);
  text-align: left;
  margin: 0 auto 5px;
}
.form .form-input{
  display: block;
}
.form .form-input .input-group{
  position: relative;
  border: 1px solid var(--color04);
  border-radius: 4px;
  margin: 0 auto 10px;
  height: 55px;
  
}
.form .form-input .input-group input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 15px;
  border-radius: 4px;
  color: var(--color04);
  font-size: 15px;
  font-weight: 600;
}
.form.error .form-input .input-group input{
  background-color: #FFEBEB;
}
.form .form-input .input-group input::placeholder{
  color: var(--color11);
}
.form .form-input .input-group input:focus{
  border: none;
  outline: none;
}
.form .form-input .input-group .submit-btn{
  position: absolute;
  right: 0;
  top: 0;
  width: 78px;
  height: 35px;
  border: none;
  outline: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
  border-radius: 35px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.form.active .submit-btn{
  background-color: var(--color04);
  color: var(--color02);
}
.form.no-active .submit-btn{
  background-color: var(--color10);
  color: var(--color11);
}
.form .note{
  font-size: 11px;
  color: var(--color04);
  line-height: 1.2;
  text-align: left;
  margin: auto;
}
@media screen and (min-width: 1200px){
  .form .form-input .input-group{
    width: 533px;
  }
  .form .note{
    width: 533px;
  }
}
.howto{
  position: relative;
  text-align: left;
  max-width: 800px;
  padding: 55px 0 40px;
  border-radius: 10px;
  margin: 0 auto;
}
.howto:before{
  content: "";
  position: absolute;
  width: 76px;
  height: 54px;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/horse.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.howto .title{
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.howto .title img{
  text-align: center;
  width: 92px;
}
.howto .title::before,
.howto .title::after{
  position: absolute;
  content: "";
  flex: 1;
  height: 3px;
  width: calc(50% - 62px);
  background-color: var(--color04);
}
.howto .title::before{
  margin-right: 10px;
  left: 0;
}
.howto .title::after{
  margin-left: 10px;
  right: 0;
}
.howto .invitation-steps{
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
  margin-bottom: 20px;
}
.howto .invitation-steps li{
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4666666666666666;
  counter-increment: step-counter;
}
.howto .invitation-steps li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
  line-height: 1;
}
.howto .invitation-steps li:nth-child(1)::before{
  content: "\2776";
}
.howto .invitation-steps li:nth-child(2)::before{
  content: "\2777";
}
.howto .invitation-steps li:nth-child(3)::before{
  content: "\2778";
}
.howto .invitation-steps li:nth-child(4)::before{
  content: "\2779";
}
.howto .invitation-steps li:nth-child(5)::before{
  content: "\277A";
}
.howto .invitation-steps li span{
  color: var(--color09);
}
.howto .note{
  font-size: 11px;
  padding: 21px 11px;
  background-color: var(--color05);
  border-radius: 4px;
  line-height: 1.6363636363636365;
}
.howto .note span{
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px){
  .share{
    display: flex;
    width: 482px;
    margin: auto;
    justify-content: space-between;
  }
  .main a{
    margin: 0;
  }
  .howto{
    padding: 30px 0 60px;
  }
  .howto:before{
    width: 96px;
    height: 69px;
    right: 10px;
    top: -68px;
    left: auto;
    transform: none;
  }
  .howto .title img{
    width: 102px;
  }
  .howto .note{
    font-size: 13px;
  }
}
/*============================
  Q&A
============================*/
.qanda{
  position: relative;
  text-align: left;
  max-width: 800px;
  padding: 0px 0 48px;
  border-radius: 10px;
  margin: 0 auto;
}
.qanda .title{
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.qanda .title img{
  text-align: center;
  width: 92px;
}
.qanda .title::before,
.qanda .title::after{
  position: absolute;
  content: "";
  flex: 1;
  height: 3px;
  width: calc(50% - 62px);
  background-color: var(--color04);
}
.qanda .title::before{
  margin-right: 10px;
  left: 0;
}
.qanda .title::after{
  margin-left: 10px;
  right: 0;
}
.qanda .qanda-list{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.qanda .qanda-item{
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.qanda .qanda-item:last-child{
  margin-bottom: 0;
}
.qanda .qanda-question{
  position: relative;
  padding: 15px 42px 15px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color04);
  background-color: var(--color02);
  cursor: pointer;
  user-select: none;
  line-height: 1.4666666666666666;
}
.qanda .qanda-question::after{
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color04);
  border-bottom: 2px solid var(--color04);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.qanda .qanda-item.active .qanda-question::after{
  transform: translateY(-50%) rotate(-135deg);
}
.qanda .qanda-item img{
  display: inline-block;
  width: 17px;
  height: 20px;
  vertical-align: sub;
  margin-right: 5px;
}
.qanda .qanda-content{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--color02);
}
.qanda .qanda-item.active .qanda-content{
  max-height: 520px;
}
.qanda .qanda-text{
  padding: 0 20px 15px;
  font-size: 15px;
  font-weight: 400;
  color: var(--color04);
  line-height: 1.6;
}
.qanda .qanda-steps{
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
  margin: 15px 0 15px 23px;
}
.qanda .qanda-steps li{
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  counter-increment: step-counter;
}
.qanda .qanda-steps li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 15px;
  line-height: 1;
}
.qanda .qanda-steps li:nth-child(1)::before{
  content: "\2776";
}
.qanda .qanda-steps li:nth-child(2)::before{
  content: "\2777";
}
.qanda .qanda-steps li:nth-child(3)::before{
  content: "\2778";
}
.qanda .qanda-steps li:nth-child(4)::before{
  content: "\2779";
}
.qanda .qanda-steps li:not(:last-child)::after{
  position: absolute;
  content: "";
  display: block;
  width: 11.429px;
  height: 13.399px;
  margin: 5px auto;
  left: 2px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.429' height='13.399' viewBox='0 0 11.429 13.399'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h13.399v11.429H0z' data-name='%E9%95%B7%E6%96%B9%E5%BD%A2%204805'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2024206' transform='rotate(-90 6.7 6.7)'%3E%3Cpath d='m.308 6.461 4.659 4.659A1.056 1.056 0 1 0 6.46 9.627L3.6 6.77h8.74a1.056 1.056 0 1 0 0-2.111H3.6L6.46 1.8A1.056 1.056 0 0 0 4.967.309L.308 4.968a1.057 1.057 0 0 0 0 1.493' data-name='%E3%83%91%E3%82%B9%2050424'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.qanda .qanda-image{
  display:block;
  margin: 15px 0 18px;
}
.qanda .qanda-image img{
  display: block;
  width: 196px;
  height: auto;
  margin: auto;
}
.qanda .qanda-note{
  font-size: 10px;
  color: var(--color04);
  line-height: 1.6363636363636365;
  text-align: center;
  width: 209px;
  margin: auto;
  text-align: left;
}
@media screen and (min-width: 1200px){
  .qanda{
    padding: 30px 0 40px;
  }
  .qanda .title img{
    width: 102px;
  }
  .qanda .qanda-image img{
    width: 302px;
  }
  .qanda .qanda-note{
    width: 302px;
    font-size: 12px;
  }
}