@charset "utf-8";

/*-----------------------------------------------------
大見出し
-------------------------------------------------------*/

/* 中見出し
------------------------------------------------*/

/* 小見出し/コメント */

/* 1400px以下 */
@media only screen and (max-width: 1399px) {
}

/* 1200px以下 */
@media only screen and (max-width: 1199px) {
}

/* タブレット以下 */
@media only screen and (max-width: 991px) {
}

/* スマホ */
@media only screen and (max-width: 767px) {
}

/*-----------------------------------------------------
共通
-------------------------------------------------------*/
section {
  padding: 150px 0;
}

@media only screen and (max-width: 767px){
section {
  padding: 50px 0;
}}

/*動画*/
.movie {
  position: relative;
   width: 309.5px;
}
.mask {
  display: block;
  margin: 45px auto 0;
  background-image: url(../images/fv-phone.png);
  background-size: 100% 98%;
  background-repeat: no-repeat;
  aspect-ratio: 720 / 1280;
}
.movie video {
  mask-image: url(../images/fv-phone_bg.png);
  -webkit-mask-image: url(../images/fv-phone_bg.png);
  -webkit-mask-size: 100% 100%;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1199px){
  .mask {
  margin: 0px auto 0;
}
  .movie {
   width: 250px;
}}
@media only screen and (max-width: 991px){
  .mask {
  margin: 0px auto 0;
}
  .movie {
   width: 180px;
}}
@media only screen and (max-width: 767px){
  .mask {
  margin: 0px auto 0;
}
  .movie {
   width: 140px;
   padding: 1em 0 0;
}}

/*-----------------------------------------------------
フォント
-------------------------------------------------------*/
.text-pink{
  font-weight: 900;
  background: linear-gradient(to top, #ff00a8, #f88ced);
  -webkit-background-clip: text;
  color: transparent;
}
.text-big{
  font-size: 4rem;
}
.text-bold{
  font-weight: bold;
}
.text-bold02{
  font-weight: 900;
}
.text-yellow{
  color: #fbd73d;
}
.text-blue{
  color: #00737f;
}
.text-white{
  color: #fff;
}
.yellow-marker{
  background:linear-gradient(transparent 70%, #fbd73d 70%);
  display: inline-block;
}

@media only screen and (max-width: 767px){
  .text-big{
  font-size: 1.55rem;
}
.yellow-marker{
  background:linear-gradient(transparent 86%, #fbd73d 86%);
  display: inline-block;
}}

/*-----------------------------------------------------
タイトル
-------------------------------------------------------*/
.ttl_box{
  text-align: center;
  padding-bottom: 50px;
  line-height: 1.1;
}

.ttl-big{
    color: #333;
    font-size: 8rem;
    font-weight: 900;
    margin-bottom: 0;
}
.ttl-small{
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
}
@media only screen and (max-width: 1199px){
.ttl-big{
    font-size: 6.5rem;
}}
@media only screen and (max-width: 991px){
.ttl-big{
    font-size: 5rem;
}}
@media only screen and (max-width: 767px) {
.ttl-big{
    font-size: 2.3rem;
}
.ttl-small{
    font-size: 0.8rem;
}
.ttl_box{
  padding-bottom: 30px;
}}

/*-----------------------------------------------------
CTA
-------------------------------------------------------*/
.cta{
  background-color: #333;
  padding: 0;
}
.cta-box{
  position: relative;
  right: -8%;
  z-index: 9999;
}
.cta-box02{
  position: relative;
  left: -8%;
  z-index: 0;
}
@media only screen and (max-width: 991px){
.cta-box{
  right: 0;
}
.cta-box02{
  left: 0;
}}
@media only screen and (max-width: 767px){
.cta-sp{
  padding: 0 1em;
}
.cta-box02{
  left: -35%;
}
.cta_pic{
  width: 130%;
}}

/*ボタンアニメーション*/
.rollover {
  display: inline-block;
  position: relative;

  .off {
    position: relative;
    top: -0.5em;
    left: 0;
    z-index: 1;
    transition: .4s ease;
  }
  .on {
    position: absolute;
    top: -0.5em;
    left: 0;
    z-index: 0;
  }
  .on, .off {
    display: block;
  }
}
.rollover:hover {
  .off {
    opacity: 0;
  }
}

/*-----------------------------------------------------
header
-------------------------------------------------------*/
#Header{
  background-color: #333;
}
#Header p{
  margin-bottom: 0;
}
.header-box{
  padding: 1em 0.5em 0.5em;
}
.h-logo{
  max-width: 20rem;
  padding-left: 3em;
}

@media only screen and (max-width: 1199px) {
.h-logo{
  max-width: 10rem;
  padding-left: 1em;
  padding-right: 1em;
}}
@media only screen and (max-width: 991px) {
.h-logo{
  max-width: 10rem;
  padding-left: 0.5em;
}}
@media only screen and (max-width: 767px) {
.h-logo_sp{
  max-width: 8rem; 
  padding: 0.5em;
  margin: 0 auto;
}}

.h-rollover {
  display: inline-block;
  position: relative;

  .h-off {
    position: relative;
    top: -0.5em;
    left: 0;
    z-index: 1;
    transition: .4s ease;
  }
  .h-on {
    position: absolute;
    top: -0.5em;
    left: 0;
    z-index: 0;
  }
  .h-on, .h-off {
    display: block;
  }
}
.h-rollover:hover {
  .h-off {
    opacity: 0;
  }
}

/*-----------------------------------------------------
FV
-------------------------------------------------------*/
.fv {
  background-image: url(../images/fv-bg.png);
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.fv .container{
  padding: 2em 0 0;
}
.fv-cta{
  bottom: 1em;
  left: 10%;
}
@media only screen and (max-width: 1399px) {
  .fv-cta{
  bottom: 1em;
  left: 4%;
}}
@media only screen and (max-width: 1199px) {
  .fv-cta{
  bottom: 1em;
  left: 0%;
}
  .fv-cta-pic{
  width: 80%;
}}
@media only screen and (max-width: 991px) {
  .fv-cta{
  bottom: 1em;
  left: -10%;
}
  .fv-cta-pic{
  width: 60%;
}}
@media only screen and (max-width: 767px){
  .fv .container {
  background-image:none;
  padding: 1em 0;
  max-width: 767px;
}
.fv-cta-pic{
  width: 80%;
  margin: 1em auto 0;
}}

/*ボタンアニメーション*/
.fv-rollover {
  display: inline-block;
  position: relative;
  top: 1em;

  .fv-off {
    position: relative;
    top: -0.5em;
    left: 0;
    z-index: 1;
    transition: .4s ease;
  }
  .fv-on {
    position: absolute;
    top: -0.5em;
    left: 0;
    z-index: 0;
  }
  .fv-on, .fv-off {
    display: block;
  }
}
.fv-rollover:hover {
  .fv-off {
    opacity: 0;
  }
}
@media only screen and (max-width: 991px){
  .fv-rollover {
  width: 65%;
}}
@media only screen and (max-width: 767px){
  .fv-rollover {
  width: 90%;
}}
/*-----------------------------------------------------
FV下
-------------------------------------------------------*/
.about-movie{
  padding-bottom: 2em;
}
.about-right{
  background-color: #f1f1f1;
  border-radius: 30px;
  padding: 1em;
}
.text-bg-black{
  background-color: #333;
  padding: 0 0.3em;
  margin: 0 0.15em;
}
.about-text{
  line-height: 1.3;
  font-size: 2.5em;
}
.about-text02{
  line-height: 1.5;
  font-size: 2.5em;
}
.about-text-big{
  font-size: 1.2em;
}

@media only screen and (max-width: 1199px) {
  .about-text{
  font-size: 2em;
}
  .about-text02{
  font-size: 2em;
}}
@media only screen and (max-width: 991px) {
  .about-text{
  font-size: 1.5em;
}
.about-text-big{
  font-size: 1.2em;
}
  .about-text02{
  font-size: 1.5em;
}}
@media only screen and (max-width: 767px) {
.about-right{
  padding: 1em 0.5em;
}
.text-bg-black {
    margin: 0 0.15em;
}
  .about-text{
  font-size: 0.85em;
}
.about-text-big{
  font-size: 1em;
}
  .about-text02{
  font-size: 0.85em;
}}


/*-----------------------------------------------------
選ばれる理由
-------------------------------------------------------*/
.reason{
    background-image: url(../images/reason_bg.png); /* 背景画像のパス */
    background-size: cover;
    background-position: center;
    position: relative;
    height: 60vw;
}
.reason-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 3em 2em;
}
.reason-ttl-text{
  font-size: 2.08rem;
  font-weight: 900;
  background-color: #fff;
  padding: 0.2em 0.5em;
  display: inline-block;
}
.main-title{
  font-size: 6rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
}
.sub-title{
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1.25;
}
.reason-text{
  font-size: 1.3rem;
  text-align: center;
}
.content-top{
  margin-bottom: 5em;
}
.content-left{
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-center{
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-right{
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-bottom{
  margin-top: 5em;
}

@media only screen and (max-width: 1399px) {
  .reason-ttl-text{
  font-size: 1.7rem;
}
.reason-text{
  font-size: 1.1rem;
}}
@media only screen and (max-width: 1199px) {
.content-top{
  margin-bottom: 2em;
}
.content-bottom{
  margin-top: 2em;
}
.main-title{
  font-size: 4rem;
}
.sub-title{
  font-size: 1.25rem;
}
.cta-button{
  width: 85%;
}
.reason-ttl-text{
  font-size: 1.45rem;
}
.reason-text{
  font-size: 0.96rem;
}}
@media only screen and (max-width: 991px){
.reason-box {
  padding: 3em 1em;
}
.main-title{
  font-size: 3rem;
}
.sub-title{
  font-size: 1.2rem;
}
.reason-ttl-text{
  font-size: 1.14rem;
}
.reason-text{
  font-size: 0.76rem;
}}
@media only screen and (max-width: 767px){
.reason{
    height: auto;
    background-image: none; /* 背景画像のパス */
}
.content-sp01{
  background-image: url(../images/reason01_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.5em 0.5em;
}
.content-sp02{
  background-image: url(../images/reason02_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.5em 0.5em;
}
.content-sp03{
  background-image: url(../images/reason03_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.5em 0.5em;
}
.content-sp04{
  background-image: url(../images/reason04_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.5em 0.5em;
}
.reason-ttl-text{
  font-size: 1.3rem;
}
.reason-text{
  font-size: 1rem;
}}

.reason-rollover {
  display: inline-block;
  position: relative;

  .reason-off {
    position: relative;
    top: -0.5em;
    left: 0;
    z-index: 1;
    transition: .4s ease;
  }
  .reason-on {
    position: absolute;
    top: -0.5em;
    left: 0;
    z-index: 0;
  }
  .reason-on, .reason-off {
    display: block;
  }
}
.reason-rollover:hover {
  .reason-off {
    opacity: 0;
  }
}

/*-----------------------------------------------------
ご利用者の声
-------------------------------------------------------*/
.achievements{
  background-color: #f1f1f1;
}
.achievements ul{
  padding-inline-start: 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.slide-items img{
  width: 90%;
}
.slick-prev {
    left: -50px !important;
    z-index: 2;
}
.slick-next {
    right: -15px !important;
    z-index: 3;
}
.slick-prev:before, .slick-next:before {
    color: #fff !important;/*ボタンの色*/
    opacity: 0.75 !important;/*ボタンの不透明度*/
    font-size: 20px !important;/*ボタンのサイズ*/
    background: #828282;
    border-radius: 50%;
    font-weight: bold;
    padding: 0.5em 0.8em;
}

.slick-dots li button:before{
  font-size:25px!important;/*ドットのサイズ*/
  padding-top: 15px;
}
.slick-dots {
  left: 50%;
  transform: translateX(-50%);
}

.slick-arrow:before{
    content:""!important;
    width: 35px !important;
    height: 35px !important;
    position: absolute;
    top: 0;
    left: 0;
}

.slick-next:before{
    background: url(../images/slick-next.png)!important;
    background-size: contain!important;
}

.slick-prev:before{
    background: url(../images/slick-prev.png)!important;
    background-size: contain!important;
}

@media (max-width:767px) {
.slide-items img{
  width: 100%;
}
.slick-prev {
    left: -35px !important;
    z-index: 2;
}
.slick-next {
    right: -22px !important;
    z-index: 3;
}
.slick-prev:before, .slick-next:before {
    color: #fff !important;/*ボタンの色*/
    opacity: 0.75 !important;/*ボタンの不透明度*/
    font-size: 10px !important;/*ボタンのサイズ*/
    background: #828282;
    border-radius: 50%;
    font-weight: bold;
    padding: 0.5em 0.8em;
}
.slick-dots li{
  width: 15px !important;
}
.slick-dots li button:before{
  font-size:15px!important;/*ドットのサイズ*/
  padding-top: 15px;
}
.slick-dots {
  left: 50%;
  transform: translateX(-50%);
}}

/*-----------------------------------------------------
制作事例
-------------------------------------------------------*/
.past-work{
  background-color: #f1f1f1;
}
@media only screen and (max-width: 767px){
  .past-work .movie{
    width: 230px;
  }}


/*-----------------------------------------------------
他社比較
-------------------------------------------------------*/
.price{
  background-color:#f1f1f1;
}
.price table{
  margin: 0 auto;
}
.price th{
  padding: 1em 1.5em;
}
.price td{
  background-color: #fff;
  padding: 1em 0.5em;
  text-align: center;
  font-weight: bold;
}
.price-big-ttl{
  font-size: 2rem;
}
.price-big-text{
  font-size: 3rem;
  font-weight: 900;
}
.price-big02-text{
  font-size: 1.25rem;
  font-weight: 900;
}
.price-white-text{
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}
.price-gray-text{
  color: #828282;
  font-size: 1.2rem;
  font-weight: bold;
}
.price-small-text{
  font-size: 0.7rem;
}
@media only screen and (max-width: 991px){
  .price th{
  padding: 1em 0.8em;
}
  .price td{
  padding: 1em 0.5em;
}
.price-big-ttl{
  font-size: 1.8rem;
}
  .price-big-text{
  font-size: 2.5rem;
}
  .price-white-text{
  font-size: 1rem;
}
.price-gray-text{
  font-size: 1rem;
}}
@media only screen and (max-width: 767px){
  .table-container{
  overflow-y: scroll;
}
table {
  width: 100%;
  min-width: 550px;
  border-collapse: collapse;
}
  .price th{
  padding: 0.5em 0.25em;
}
  .price td{
  padding: 0.5em 0.25em;
}
.price-big-ttl{
  font-size: 1.5rem;
}
  .price-big-text{
  font-size: 2rem;
}
  .price-white-text{
  font-size: 0.85rem;
}
.price-gray-text{
  font-size: 0.85rem;
}}


/*背景*/
.price-gray-bg{
  background-color: #828282 !important;
}
.price-black-bg{
  background-color: #333 !important;
}
/*線*/
.border-bottom {
  border-bottom: 2.5px solid #333 !important;
}

.border-right {
  border-right: 2.5px solid #333 !important;
}
.border-bottom-bold{
  border-bottom: 10px solid #333 !important;
}
.border-right-bold{
  border-right: 6px solid #333 !important;
}
.border-top-bold{
  border-top: 10px solid #333 !important;
}

/*CTA*/
.price-cta{
  margin-top: 5em;
}

.price-rollover {
  display: inline-block;
  position: relative;

  .price-off {
    position: relative;
    top: -0.5em;
    left: 0;
    z-index: 1;
    transition: .4s ease;
  }
  .price-on {
    position: absolute;
    top: -0.5em;
    left: 0;
    z-index: 0;
  }
  .price-on, .price-off {
    display: block;
  }
}
.price-rollover:hover {
  .price-off {
    opacity: 0;
  }
}
/*-----------------------------------------------------
ステップ
-------------------------------------------------------*/
.step{
  background-color: #fff;
}
/*-----------------------------------------------------
よくある質問
-------------------------------------------------------*/
.question{
  background-color: #f1f1f1;
}
.qa-box{
  background-color: #fff;
  padding: 0 2em 2em;
  border: 3px solid #333;
  min-height: 13em;
  margin-bottom: 2em;
}
.q-color_pink{
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff00a8;
  margin-right: 0.5em;
}
.a-color_pink{
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff00a8;
  margin-right: 0.5em;
}
.q-color_blue{
  font-size: 2.5rem;
  font-weight: 900;
  color: #00c2c0;
  margin-right: 0.5em;
}
.a-color_blue{
  font-size: 1.8rem;
  font-weight: bold;
  color: #00c2c0;
  margin-right: 0.5em;
}
.q_text{
  color: #333;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0;
}
.a_text{
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
.bullet-text01 {
    padding-left: 1em;
    text-indent: -2.5em;
    display: block;
}
.bullet-text02 {
    padding-left: 1.5em;
    text-indent: -1.65em;
    display: block;
}
.accordion-button{
  background-color: #fff !important;
  border-radius: 0 !important;
  border-bottom: 2px solid #828282;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}
.accordion {
  --bs-accordion-border-color: none;
  --bs-accordion-btn-focus-border-color: none;
  --bs-accordion-btn-focus-box-shadow:none;
  --bs-accordion-active-bg: none;
  --bs-accordion-btn-padding-y: 1.5rem;
}
.accordion-body {
    padding-bottom: 1.5rem;
    background-color: #eeeeee;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 20px;
}
.accordion-flush .accordion-item {
    border-radius: 20px;
}
.accordion-button::after{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008f80'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008f80'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media only screen and (max-width: 991px){
.q-color_pink{
  font-size: 1.8rem;
}
.a-color_pink{
  font-size: 1.3rem;
}
.q-color_blue{
  font-size: 1.8rem;
}
.a-color_blue{
  font-size: 1.3rem;
}
.sp-pink{
  color: #ff00a8 !important;
}
.sp-blue{
  color: #00c2c0 !important;
}
.q_text{
  font-size: 0.9rem;
}
.a_text{
  font-size: 0.9rem;
  color: #333;
}
.qa-box{
  padding: 0 0.5em 0.5em;
  min-height: auto;
  margin-bottom: 2em;
}
.accordion-header {
    padding-left: 0.5em;
}
.accordion {
--bs-accordion-body-padding-x: 1.8rem;
}}

/*-----------------------------------------------------
form
-------------------------------------------------------*/
.form{
  background-color: #fff;
}
.form .container{
  background-color: #fff;
  border: 3px solid #333;
  border-radius: 40px;
  padding: 3em 0;
}
.form .btn{
  background-color: transparent;
  border-color: transparent;
  padding: 0;
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: transparent;
}

.form label{
  font-weight: bold;
}
.text-bg-danger{
  background-color: #ff00a8 !important;
  border-radius: 0 !important;
  font-size: 1rem;
  margin-right: 0.5em;
}
.text-bg-light{
  background-color: #fff !important;
  border: 2px solid #ff00a8;
  color: #ff00a8 !important;
  border-radius: 0 !important;
  font-size: 1rem;
  margin-right: 0.5em;  
}
@media only screen and (max-width: 1199px){
.form .col-lg-3{
  padding: 0;
}}
@media only screen and (max-width: 991px){
.form .container{
  padding: 2em;
}
.form label{
  margin-bottom: 0.5em;
}}
@media only screen and (max-width: 767px){
.form .container{
  width: 90%;
  border-radius: 20px;
}}

.form-rollover {
  display: inline-block;
  position: relative;

  .form-off {
    position: relative;
    top: -0.5em;
    left: 0;
    z-index: 1;
    transition: .4s ease;
  }
  .form-on {
    position: absolute;
    top: -0.5em;
    left: 0;
    z-index: 0;
  }
  .form-on, .form-off {
    display: block;
  }
}
.form-rollover:hover {
  .form-off {
    opacity: 0;
  }
}

/*-----------------------------------------------------
footer
-------------------------------------------------------*/
#Footer{
  color: #fff;
  background-color: #333333;
  padding: 3em 2em 7em;
}

/* 追従 */
.fix-navi{
  position: fixed;
  z-index: 9999;
  bottom: 5em;
  right: 5%;
}
.pc-cta{
  width: 80%;
}

@media only screen and (max-width: 991px){
.fix-navi{
  position: fixed;
  z-index: 9999;
  bottom: 22em;
  right: 0%;
}
.pc-cta{
  width: 55%;
}}

@media only screen and (max-width: 767px){
.fix-navi{
  position: fixed;
  z-index: 9999;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: #252525d9;
  padding: 0.5em 0;
}
.fix-navi a{
  color: #fff !important;
}
.fix-navi p{
  margin-bottom: 0;
}
.navi_cta{
  width: 80%;
  margin: 0 auto;
}}

@media only screen and (max-width: 767px){
  .scroll-up{
    bottom: 125px;
}}

/*-----------------------------------------------------
サンクスページ
-------------------------------------------------------*/
.thks{
  background-color: #000;
}

.toiawase-ttl{
  color: #fff;
}

.toiawase-text{
  color: #fff;
}


.thankspage-point{
  background-color: #cecece;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  
  padding: 3em 1em;
  margin-top: 5rem;
}

.thankspage-point img {
    display: block;
    margin: 0 auto;
    width: 300px;
    padding-top: 1rem;
}

.thanks-pont-text{
  text-align: center;
  font-size: 1.2rem;
}

.text-green-thanks{
    font-weight: bold;
    font-size: 2rem;
    background: #FD2A55;
    -webkit-background-clip: text;
    color: transparent;
    }

    /*LINE*/
.button-line a {
    background: #fd2a55;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 25em;/*幅*/
    padding: 15px 15px;/*文字横空白*/
    color: #fff!important;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    color: #fff!important;
    text-decoration: none;
	border-radius: 40px;/*丸み*/
	 border: 1px solid #c18f21;
	font-size: 1.2rem;/*文字サイズ*/
	box-shadow: 5px 5px 5px rgba(0,0,0,0.3);  /*影*/
}

 /*マウスホバー時演出*/
.button-line a:hover {
    background: #11F7F5;
    color: #000;
}

.text-weight-bold{
  font-weight: bold;
  font-size: 1.3rem;
}

.balloon1 {
  position: relative;
  display: inline-flex; 
  align-items: center; /* 縦方向中央（pが複数行でもOK） */
  justify-content: center; /* 横方向中央 */
  font-size: 1.2rem;
  color: #333;
  font-weight: bold;
  background: #11F7F5;
  border-radius: 40px;
  padding: 0 1.5rem;
  margin: 0 auto;
  text-align: center; /* 念のため追加 */
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); /* ←こちらの方が安定します */
  border: 15px solid transparent;
  border-top: 15px solid #11F7F5;
}

.wrapper {
  text-align: center; /* inline要素・inline-flexを中央に配置 */
}

.text-thanks-blue{
  color: #fd2a55;
}

no-js{
  background-color: #333;
}

.houjin-tassei{
  font-weight: bold;
  font-size: 2rem;
}

@media only screen and (max-width: 767px){
.text-green-thanks{
    font-weight: bold;
    font-size: 1.1rem;
    background: #fd2a55;
    -webkit-background-clip: text;
    color: transparent;
    }
.thanks-pont-text{
  text-align: center;
  font-size: 1rem;
}
.balloon1 {
  position: relative;
  display: inline-flex; 
  align-items: center; /* 縦方向中央（pが複数行でもOK） */
  justify-content: center; /* 横方向中央 */
  color: #333;
  font-weight: bold;
  background: #11F7F5;
  border-radius: 40px;
  padding: 0 1.5rem;
  margin: 0 auto;
  font-size: 0.9rem;
  text-align: center; /* 念のため追加 */
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); /* ←こちらの方が安定します */
  border: 15px solid transparent;
  border-top: 15px solid #11F7F5;
}

.wrapper {
  text-align: center; /* inline要素・inline-flexを中央に配置 */
}

.thankspage-point img {
    display: block;
    margin: 0 auto;
    width: 200px
}

}

.houjintasseisaize img {
    display: block;
    margin: 0 auto;
    width: 500px;
}

.thanks-pont-text-white{
  color: #fff;
}

@media only screen and (max-width: 767px){
  .houjintasseisaize img {
    display: block;
    margin: 0 auto;
    width: 280px;
}
}

.pink-text{
  font-weight: bold;
  font-size: 2rem;
  color: #fd2a55;
}