@charset "UTF-8";

/* common */

html{
    font-size: 62.5%;
}

body{
    font-family: 
        "Noto Sans JP",
        "Noto Sans";
    font-optical-sizing: auto;
    font-weight: 600;
    color: #2F2F2F;
    font-style: normal;
    background-color: white;
    line-height: 1.5;
    overflow-x: hidden;
}

:root {
    --color-pink01: #f094b3;
    --color-pink02: #ffd2e1;
    --color-pink03: #ffeefc94;
    --color-green01: #006666;
    --color-green02: #ecfaee;
    --color-yellow01: #fffbd4;

    --color-gradient01: linear-gradient(140deg, rgb(242, 170, 176) -0.22%, rgb(242, 121, 141) 100%);
    --fontfamily_base: "Noto Sans JP", "Noto Sans";
    --font_color_base: rgb(var(--color-grayscale-900));
    --font_size_base: 1.4rem;
    --font_weight_base: 500;
    --font_weight_bold: 900;
    --line-height_base: 1.9;
    --line-height_sm: 1.5;
    --letter-spacing_base: .1em;
    --letter-spacing_sm: .03em;
    --fontfamily_en: "Noto Sans";
    --font_weight_en: 400;
    --line-height_en: 1.2;
    --letter-spacing_en: 0em;
    --contents_width: 1160px;
    --contents_wide_width: 1260px;
    --body_padding_side: 25px;
    --contents_width_with_padding: 1260px;
    --contents_wide_width_with_padding: 1360px;
    --sidebar_width: 250px;
    --header_height: 70px;
    --shadow_btn: 2px 2px 0 rgb(var(--color-grayscale-900));
    --shadow_btn_lg: 4px 4px 0 rgb(var(--color-grayscale-900));
    --shadow_tit: 1px 1px 0 rgb(var(--color-grayscale-900));
}

.article_header{
    overflow: hidden;
    position: relative;
}

img{
    max-width: 100%;
    height: auto;
    overflow: hidden;
}

.background_title_en{
    font-family: "Noto Sans";
    font-size: 4rem;
    font-weight: 900;
    color: #64646456;
    display: block;
    margin: 10px 0px;
    overflow: hidden;
    white-space: nowrap;
}

.title_en{
    font-family: "Noto Sans";
    font-size: 4rem;
    font-weight: 900;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: black;
    color: #FDFDFD;

    display: block;
    margin-top: 10px;
    overflow: hidden;
    text-align: center;
    margin-top: 10px;
}

.title_ja{
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
}

.title_ja_influencer{
    margin-top: 20px;
}

/* .header PC */
@media screen and (min-width:1024px) {
    .title_en{
    font-size: 5.5rem;
    -webkit-text-stroke-width: 2.5px;
}

.title_ja{
    font-size: 2.5rem;
}

}

/*==========================
fadeIn
==========================*/

.fadeIn{
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated{
    transform: translate(0, 0);
    opacity: 1;
}

/* header */

.header-box {
  height: 47px;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom:solid #141414 2px;
    z-index: 999;
    background-color: white;
}

.logo{
    display: flex;
    align-items: center;
}

.nav_txt{
    margin: 10px 0px 0px 10px;
}

.header_topic,
.nav_logo{
    display: block;
    width: 100px;
}

.header_topic,
.nav_logo{
    margin: 10px 0px 10px 15px;
}

/* nav */

.nav_btn,
.header_btn{
    width: 47px;
}

.header_btn{
    border-left:solid #141414 2px;
}

.nav{
    background: #ffeefc;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
    overflow: hidden;
}

.nav_header{
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.nav_item {
    text-align: center;
    justify-content: center;
    margin-top: 20px;
    color: #2F2F2F;
    font-size: 1.4rem;
    letter-spacing: 2.4px;
    display: flex;
    align-items: center;
}

.nav_item:hover{
    color: #ff7bac;
}

.nav_en{
    font-size: 1.6rem;
    font-weight: 800;
}

a{
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

.nav.active{
    transform: translateX(0);
}

.nav_cta{
    width: 230px;
    border-radius: 2rem;
    background-color: #ff7bac;
    padding: 10px 20px;
    margin: 30px auto 10px auto;
    text-align: center;
    font-size: 1.6rem;
    color: #FFF;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav_cta:hover{
    background-color: #8d3150;
}

.pcbr{
    display: none;
}


.btn-custom01 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
  z-index: 999;
}

.btn-custom01 {
  animation:show 0.5s none;
  animation-delay: 950ms;
}

@keyframes show {
	0% {
		-webkit-transition: all 0.3s;
        transition: all 0.3s;
        background: #ff7bac;
	}
	100% {
		-webkit-transform: translate(0, 0.25rem);
        transform: translate(0, 0.25rem);
	}
}

a.btn-custom01 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 0.75rem;
  margin-top: 30px;
}

a.btn-custom01:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.75rem, -1rem);
  transform: translate3d(0, 0.75rem, -1rem);

  border: 2px solid #000;
  border-radius: inherit;
  background: #b94c74;
  -webkit-box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a.btn-custom01:before {
  animation:show01 0.5s none;
  animation-delay: 950ms;
}

@keyframes show01 {
	0% {
    -webkit-box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
	}
	100% {
		  -webkit-transform: translate3d(0, 0.5rem, -1rem);
            transform: translate3d(0, 0.5rem, -1rem);
            -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
	}
}

.btn-custom01-front {
  position: relative;
  display: block;
  padding: 1rem 5rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid #000;
  border-radius: inherit;
  background: #ff7bac;
}

.fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1rem;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}

a.btn-custom01:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
  background: #ff7bac;
}

a.btn-custom01:hover:before {
  -webkit-transform: translate3d(0, 0.5rem, -1rem);
  transform: translate3d(0, 0.5rem, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom01:active {
  -webkit-transform: translate(0rem, 0.75rem);
  transform: translate(0rem, 0.75rem);
}

a.btn-custom01:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

.nav_group{
    text-align: center;
}


/* .header PC */
@media screen and (min-width:1024px) {

    .header-box {
        height: 100px;
        }

    .topic{
        font-size: 3rem;
        margin-top: 20px;
    }

    .header {
        height: 100px;
        margin: 0 auto;
        padding: 10px 0px;
        border-bottom:solid #141414 2px;
    }

    .header_topic {
        width: 178px;
        margin: 20px 0px 10px 43px;
    }

    .nav{
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .nav_header {
        display: none;
    }

    .btn_menu{
        display: none;
    }

    .nav_list {
        display: flex;
        margin: 0 10px 0px 10px;
    } 

    .flex{
        display: block;
        align-items: center;
        padding: 0px;
    }

    .nav_group{
        display: flex;
        align-items: center;
        height: 79px;
    }

    .nav_item{
        margin-top: 0;
        font-size: 1.1rem;
        margin: 15px 10px 0px;
    }

    .nav_en{
    font-size: 1.4rem;
    font-weight: 800;
    }

    .header_btn{
        display: none;
    }

    .nav_btn{
        display: none;
    }

    .background_txt{
        font-size: 5rem;
    }

    .nav_cta{
        border-radius: 0px;
        height: 100%;
        width: 180px;
        padding: 28px 10px;
        margin: 0px 0px;
        text-align: center;
        font-size: 1.4rem;
        color: #FFF;
        border-left: 3px solid #141414;
    }

    .pcbr{
        display: block;
    }

    .btn-custom01 {
    margin-right: 30px;
    }

    a.btn-custom01 {
  margin-top: 0px;
}

}

/* pc 769px */

/* main */

.mainImg_pc{
    display: none;
    overflow: hidden;
}

.mainImg_sp{
    margin: 0px 0px 5px 0px;
}

.article{
    text-align: center;
}


/* .header PC */
@media screen and (min-width:1024px) {
    

    .mainImg_pc{
        display: block;
        width: 80%;
        margin:  0 auto;
    }

    .mainImg_sp{
        display: none;
    }

    .brsp{
        display: none;
    }


}


/* influencer */

.section_influencer{
    background-color: #ffd2e1;
    padding: 10px 0px;
    border-top:solid #141414 2px;
}

.subtitle_ja{
    margin: 0 auto;
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 700;
    text-align: center;
    color: #141414;
    box-sizing: border-box;
    background: #ffffff;
    border: 2px solid #141414;
    border-radius: 5px;
    font-weight: var(--font_weight_bold);
    line-height: var(--line-height_sm);
    letter-spacing: var(--letter-spacing_sm);
    margin-bottom: 9px;
    padding: 4px 13px;
    position: relative;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
}

.subtitle_ja::before{
    content: "";
    box-sizing: border-box;
    background: #fffbd4;
    border: 2px solid #141414;
    border-radius: 5px;
    position: absolute;
    right: -6px;
    bottom: -6px;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.influencer_frame{
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 30px;
    margin: 20px 10px;
}

.influencer_frame::before{

    content: "";
    box-sizing: border-box;
    background: #fff;
    border: 2px solid #141414;
    border-radius: 10px;
    position: absolute;
    inset: 0;
    z-index: -2;
}

.influencer_txt{
    font-size: 1.4rem;
    font-weight: 700;
}

.bold{
    color: #ff7bac;
    font-size: 1.8rem;
}

.influencer_line{
    width: 200px;
    margin: 0 auto;
}

.influencer_name{
    font-size: 2rem;
    margin-top: 10px;
}

.influencer_des{
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 10px;
}

.sns_flex{
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.sns{
    width: 35px;
    filter: drop-shadow(1px 1px 3px #e4e4e4);
}

.influencer_pic{
    max-width: 400px;
    margin: 20px auto;
}

.influencer_cta{
    margin-top: 20px;
    z-index: 999;
}

.influencer_cta_txt{
    font-size: 1.4rem;
    font-weight: 600;
}


.influencer_cta_btn{
    margin: 0 auto;
    margin-top: 5px;
    box-sizing: border-box;
    background: #ff7bac;
    border: 2px solid #141414;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: var(--letter-spacing_sm);
    margin-bottom: 9px;
    padding: 8px 23px;
    position: relative;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
}

.influencer_cta_btn::before{
    content: "";
    box-sizing: border-box;
    background: #fffbd4;
    border: 2px solid #141414;
    border-radius: 5px;
    position: absolute;
    right: -6px;
    bottom: -6px;
    height: 100%;
    width: 100%;
    z-index: -1;
}


@media screen and (min-width:1024px) {

    .influencer_cta{
    position:static;
    margin-top: 20px;
    display: block;
}

    .section_influencer{
    border-top:solid #141414 2px;
    padding: 40px 0px;
}

.subtitle_ja{
    font-size: 1.8rem;
    border: 2px solid #141414;
}

.subtitle_ja::before{
    border: 2px solid #141414;
    right: -7px;
    bottom: -7px;
}

.influencer_frame{
    padding: 30px 50px;
    margin: 30px 200px;
}

.influencer_flex{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.influencer_txtarea{
    width: 350px;
}

.influencer_txt{
    font-size: 1.8rem;
    font-weight: 700;
}

.bold{
    font-size: 2.5rem;
    margin: 0px 1px;
}

.influencer_frame::before{
    border: 2px solid #141414;
}

.influencer_line{
    width: 250px;
    margin: 0 auto;
}

.influencer_name{
    font-size: 2.5rem;
    margin-top: 10px;
}

.influencer_des{
    font-size: 1.4rem;
    margin-top: 10px;
}

.sns_flex{
    margin-top: 30px;
}

.sns{
    width: 40px;
}

.influencer_pic{
    max-width: 400px;
    margin: 0px 1px;
}

.influencer_cta{
    margin-top: 30px;
    display: block;
}

.influencer_cta_txt{
    font-size: 1.8rem;
    font-weight: 600;
}

.influencer_cta_btn{
    font-size: 2rem;
    padding: 10px 80px;
}

.influencer_cta_btn{
    border: 2px solid #141414;
}

.influencer_cta_btn::before{
    border: 2px solid #141414;
    right: -7px;
    bottom: -7px;
}

}

@media screen and (min-width:1700px) {
    .influencer_txtarea {
        width: 450px;
    }

        .influencer_frame {
        padding: 60px 138px;
        margin: 30px 350px;
    }   
}

/* issues */

.section_issues{
    background-color: #e0e0e0;
    padding: 10px 0px;
    border-top:solid #141414 2px;
    padding: 30px;
}

.section_issues::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 38px solid #e0e0e0;
    border-right: 38px solid transparent;
    border-left: 38px solid transparent;
    border-bottom: 0px solid transparent;
    transform: translateX(-50%) translateY(100%);
}

.issues_txt{
    margin: 0 auto;
    margin-top: 5px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid #141414;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: var(--letter-spacing_sm);
    margin-bottom: 9px;
    padding: 10px 13px;
    position: relative;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 20px;
}

.issues_txt::before{
    content: "";
    box-sizing: border-box;
    background: #f094b3;
    border: 2px solid #141414;
    border-radius: 10px;
    position: absolute;
    right: -6px;
    bottom: -6px;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.issues_txt::after{
    content: "";
    position: absolute;
    top: -8px;
    left: 15px;
    width: 25px;
    height: 20px;
    background-image: url(../images/Issues_pic01.png);
    
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 999;
}

.issues_txt02::after{
    content: "";
    position: absolute;
    top: -8px;
    left: 235px;
    width: 25px;
    height: 20px;
    background-image: url(../images/Issues_pic01.png);

    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 999;

}

.issues_bold{
    color: #f094b3;
    font-size: 1.4rem;
}

.issues_pic_area_sp{
    margin: 10px 0px 20px 0px;
    padding: 23px;
}

.issues_pic_area_pc{
    display: none;
}

.issues_sppic{
    width: 400px;
    overflow: hidden;
}

.issues_pcpic{
    display: none;
}

@media screen and (min-width:1024px){

    .section_issues{
    padding: 40px 200px;
    border-top:solid #141414 2px;
}


    .issues_txt{
        font-size: 1.8rem;
        padding: 20px 30px;
        margin-top: 30px;
        border: 2px solid #141414;
    }

     .issues_txt::before{
        border: 2px solid #141414;
        right: -8px;
        bottom: -8px;
    }

    .issues_txt::after{
    top: -10px;
    left: 22px;
    width: 41px;
    height: 21px;
}

.issues_txt02::after{
    top: -10px;
    left: 345px;
    width: 41px;
    height: 21px;
}

.issues_bold{
    font-size: 2rem;
}

.issues_pic_area_pc{
    display: block;
    margin: 10px 0px 20px 0px;
    padding: 23px;
}

.issues_pic_area_sp{
    display: none;
}

.issues_sppic{
    display: none;
}

.issues_pcpic{
    display: block;
    margin: 0 auto;
    width: 746px;
    height: 100%;
    overflow: hidden;
    margin-top: 30px;
}

}

/* about */

.section_about{
    background-color: #fffbd4;
    padding: 10px 0px;
    border-top:solid #141414 2px;
}

.about_frame{
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 30px;
    margin: 20px 10px;
}

.about_frame::before{

    content: "";
    box-sizing: border-box;
    background: #fff;
    border: 2px solid #141414;
    border-radius: 10px;
    position: absolute;
    inset: 0;
    z-index: -2;

    background-image:
    repeating-linear-gradient(
        90deg,
        #b3b3b338 ,
        #b3b3b338 1px,
        transparent 1px,
        transparent 32px
    ),
    repeating-linear-gradient(
        0deg,
        #b3b3b338 ,
        #b3b3b338 1px,
        #fff 1px,
        #fff 32px
    );
}

.about_box{
    position: relative;
    padding-left: 30px;
}

.about02{
    margin-top: 30px;
}

.about03{
    margin-top: 30px;
}


.strengths{
    font-size: 1.2rem;
    font-weight: 700;
    writing-mode: vertical-rl;
    position: absolute;
    left: -2px;
    top: 3%;
}

.border{

    position: absolute;
    left: 5px;
    top: 18%;
    background: #000000;
    width: 2px;
    height: 80%;

}

.about_flex{
    text-align: left;
}

.about_number{
    font-family: "Noto Sans";
    font-size: 5rem;
    font-weight: 900;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: black;
    color: #ffd2e1;
}

.about_number02{
    color: #fffbd4;
}

.about_number03{
    color: #ecfaee;
}

.about_title{
    font-size: 1.8rem;
    font-weight: 800;
}

.about_subtitle{
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 5px;
}

.aboutissues_frame{
    padding: 10px 20px;
    background: #ebebeb;
    border: 2px solid #141414;
    border-radius: 10px;
    margin-top: 20px;
    text-align: left;
}

.about_txt{
    font-size: 1.2rem;
    line-height: 1.6;
}

.about_list{
    font-size: 1.2rem;
}

.about_item{
    margin-top: 10px;
}

.about_list:before {
    content:  "";     /* 空の要素作成 */
    width:  10px;               /* 幅指定 */
    height:  10px;              /* 高さ指定 */
    display:  inline-block;     /* インラインブロックにする */
    background-color: #ffd2e1;  /* 背景色指定 */
    border-radius:  50%;        /* 要素を丸くする */
    position:  relative;        /* 位置調整 */
    top: -1px;                  /* 位置調整 */
    margin-right: 5px;          /* 余白指定 */
    border: 1.5px solid #141414;
}

.about_arrow{
    width: 50px;
    margin-top: 10px;
}

.aboutsolusion_frame{
    padding: 10px 20px;
    background: #faeff3;
    border: 2px solid #141414;
    border-radius: 10px;
    margin-top: 10px;
    text-align: left;
}

.aboutsolusion_frame02{
    background: #fffbd4;
}

.aboutsolusion_frame03{
    background: #ecfaee;
}


.pink{
    color:  #ff7bac;
    font-size: 1.4rem;
    font-weight: 700;
}

.about_pic{
    margin-top: 10px;
}

@media screen and (min-width:1024px){
    .section_about{
    padding: 40px 7%;
    border-top:solid #141414 2px;
}

.about_frame{
    padding: 30px 10%;
}

.about_frame::before{
    border: 2px solid #141414;

    background-image:
    repeating-linear-gradient(
        90deg,
        #b3b3b338 ,
        #b3b3b338 2px,
        transparent 2px,
        transparent 32px
    ),
    repeating-linear-gradient(
        0deg,
        #b3b3b338 ,
        #b3b3b338 2px,
        #fff 2px,
        #fff 32px
    );
}

.about_flex{
    display: flex;
    justify-content: left;
    align-items: center;
}

.about02{
    margin-top: 60px;
}

.about03{
    margin: 60px 0px;
    margin-bottom: 90px;
}


.strengths{
    font-size: 1.6rem;
    left: -2px;
    top: 3%;
}

.border{
        left: 9px;
        top: 26%;
        width: 3px;
        height: 74%;

}

.border02{
        top: 39%;
        height: 61%;
}

.about_flex{
    text-align: left;
}

.about_number{
    font-size: 7rem;
    -webkit-text-stroke-width: 2px;
    margin-right: 20px;
}

.about_title{
    font-size: 2rem;
    font-weight: 800;
}

.about_subtitle{
    font-size: 1.6rem;
    margin-top: 5px;
}

.aboutissues_frame{
    padding: 20px 30px;
    border: 2px solid #141414;
    margin: 0px;
}

.about_txt{
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 60%;
}

.about_list{
    font-size: 1.4rem;
}

.about_item{
    margin-top: 10px;
}

.about_list:before {
    content:  "";     /* 空の要素作成 */
    width:  15px;               /* 幅指定 */
    height:  15px;              /* 高さ指定 */
    display:  inline-block;     /* インラインブロックにする */
    background-color: #ffd2e1;  /* 背景色指定 */
    border-radius:  50%;        /* 要素を丸くする */
    position:  relative;        /* 位置調整 */
    top: 2px;                  /* 位置調整 */
    margin-right: 5px;          /* 余白指定 */
    border: 2px solid #141414;
}

.about_arrow{
    width: 50px;
    margin-top: 10px;
}

.aboutsolusion_frame{
    padding: 20px 30px;
    border: 2px solid #141414;
    position: relative;
}

.pink{
    font-size: 1.6rem;
    font-weight: 700;
}

.about_pic,.about_pic02,.about_pic03{
        position: absolute;
        top: 104px;
        margin-top: 10px;
        max-width: 40%;
        height: auto;
}

.about_pic{
        top: 309px;
        right: -43px;
        max-width: 37%;
}

.about_pic02{
    top: 104px;
    right: -61px;
}

.about_pic03{
    top: 104px;
    right: -61px;
}

}

@media screen and (min-width:1700px){
    .about_frame {
        padding: 101px 14%;
    }

    .about02,.about03 {
        margin-top: 100px;
    }

}



/* works */

.section_works{
    background-color: #ffd2e1;
    padding: 5px 0px;
    position: relative;
    border-top: solid #141414 2px;
}

.work_pc{
    display: none;
    width: 100%;
    height: 100%;
}


.work_sp{
    width: 100%;
    height: 100%;
}

.video_list{
    padding: 0px 50px;
}

.video_title{
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 5px;
}

.video_des{
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 auto;
    margin-top: 5px;
}

.video_img{
    border-radius: 10px;
    border: 2px solid #141414;
}

.video{
    position: relative;
    overflow: hidden;
}

.video::after{
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transform: translate(-50%, -50%);
    content: "";
    background-image: url(../images/youtube.png);
    z-index: 999;
}

.works_pcflex{
    margin-bottom: 30px;
}

.video_item{
    margin-top: 30px;
}

@media screen and (min-width:1024px){
    .section_works{
    padding: 10px 0px;
    border-top: solid #141414 2px;
}

.work_pc{
    display: block;
}

.work_sp{
    display: none;
}

.video_img{
    width: 100%;
    height: 100%;
}

.video_list{
    padding: 0px 75px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 40px;
}

.circle00{
    margin-bottom: 30px;
}

.video_text{
    text-align: left;
}

.video_title{
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 5px;
}

.video_des{
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 auto;
    margin-top: 5px;
}

.video_img{
    border-radius: 10px;
}

.works_pcflex{
    margin-bottom: 30px;
}

.video_item{
    margin-top: 30px;
}

.btn{
width: 348px;
}

}

@media screen and (min-width:1700px){
    .btn{
    width: 412px;
    }
}

/* instructor */

.section_instructor{
    border-top: solid #141414 2px;
    background-color: #ecfaee;
}

/* background_move */

.back-letter-instructor {
    top: 0;
    font-family: Gill Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 80px;
    line-height: 167px;
    letter-spacing: 0.18em;
    color: #f094b31a;
    transition: 1s all;
}

.back-letter {
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
  }

  .example-left {
    -webkit-animation: mymove 8s linear infinite;
    white-space: nowrap;
    animation: mymove 80s linear infinite alternate;
}

.example-left {
    white-space: nowrap;
    position: absolute;
    text-transform: uppercase;
}

@keyframes mymove{
  0%{
    left: 0;
  }

  100%{
    left: -2400px
  }
}

.example-left-instructor1{
  top: -30px;
}

.example-left-instructor2{
  top: 50px;
}

.example-left-instructor3{
  top: 130px;
}

.example-left-instructor4{
  top: 210px;
}

.example-left-instructor5{
  top: 290px;
}

.example-left-instructor6{
  top: 370px;
}

.example-left-instructor7{
  top: 450px;
}

.example-left-instructor8{
  top: 530px;
}

.example-left-instructor9{
  top: 450px;
}

.example-left-instructor10{
  top: 610px;
}

.example-left-instructor11{
  top: 690px;
}

.example-left-instructor12{
  top: 770px;
}

.example-left-instructor13{
  top: 850px;
}

.example-left-instructor14{
  top: 930px;
}

.example-left-instructor15{
  top: 1010px;
}

.example-left-instructor16{
  top: 1090px;
}

.example-left-instructor17{
  top: 1170px;
}

.example-left-instructor18{
  top: 1250px;
}

.example-left-instructor19{
  top: 1330px;
}

/* instructor_txt */

.instructor_txt_group{
    margin: 0px auto 30px auto;
    margin: 0 auto;
    padding: 30px 30px 0px 30px;
}

.section_instructor{
    overflow: hidden;
    text-align: center;
}

.subtitle_instructor{
    margin-top: 10px;
    font-size: 1.3rem;
}

.instructor_area{
    background-color: white;
    margin-top: 30px;
    text-align: left;
    padding: 20px 35px;
    border-radius: 10px;
    border: 2px solid #141414;
}

.instructor_subname{
    margin-top: 5px;
    font-size: 1.1rem;
}

.instructor_name{
    margin-top: 5px;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
}

.instructor_name::before{
    content: "";
    width: 71px;
    height: 4px;
    background-color: #ff7bac;
    position: absolute;
    top: 22px;
    left: -2px;
    
}

.instructor_des{
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.career{
                font-size: 1.6rem;
                font-weight: 700;
                text-align: left;
                margin: 10px;
            }


.instructor_img_sp{
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0 auto;
    overflow: hidden;
}

.instructor_img_pc{
    display: none;
}


/* instructor PC */
@media screen and (min-width:1024px){

.section_instructor{
    border-top: solid #141414 2px;
    padding: 40px 170px 0px 170px;
}

.subtitle_instructor{
    font-size: 1.6rem;
}

.instructor_area{
    padding: 30px 50px;
    border: 2px solid #141414;
}

.instructor_subname{
    margin-top: 5px;
    font-size: 1.6rem;
}

.instructor_name{
    margin-top: 5px;
    font-size: 2rem;
}

.instructor_name::before{
    width: 89px;
    top: 29px;
}

.instructor_des{
    margin-top: 10px;
    font-size: 1.3rem;
}

.instructor_pic{
    padding: 0;
    width: 100%;
}

.career{
    font-size: 2rem;
}

.instructor_img_sp{
    display: none;
}

.instructor_img_pc{
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}

}

@media screen and (min-width:1700px){

    .instructor_img_pc{
        width: 80%;
    }

    .instructor_txt_group{
        padding: 30px 130px 0px 130px;
    }

}

/* flow */

.section_flow{
    background-color: #FFF7FD;
    padding: 10px 0px;
    border-top:solid #141414 2px;
}

.flow_area{
    margin: 30px;
}

.flow_list{
    max-width: 375px;
    margin: 0 auto;
}

.flow_img_area{
    position: relative;
    width: 100px;
    height: 100%;
    margin-right: 20px;
}

.flow_img_area:before{
    content: "";
    width: 2px;
    height: 520px;
    background-color: #141414;
    position: absolute;
    top: 56px;
    left: 50%;
    z-index: -13;
}

.flow_item{
    margin-top: 20px;
}

.flow_flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow_img{
    width: 100px;
    height: 100%;
    margin-right: 20px;
}

.flow_txtarea{
    width: 289px;
    text-align: left;
    line-height: 1.6;
}

.flow_number{
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff7bac;
}

.flow_title{
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
}

.flow_title::after{
    content: "";
    width: 100%;
    height: 3px;
    background-color: #ff7bac;
    position: absolute;
    top: 18px;
    left: -2px;
}

.flow_des{
    margin-top: 5px;
    font-size: 1.1rem;
}

@media screen and (min-width:1024px){
     .section_flow{
    padding: 20px 119px 50px;
}

.flow_item{
    margin-top: 30px;
}

.flow_list{
    max-width: 800px;
}

.flow_img_area{
    position: relative;
    width: 100px;
    height: 100%;
    margin-right: 20px;
}

.flow_img_area:before{
    height: 610px;
}

.flow_txtarea{
    width: 515px;
}

.flow_number{
    font-size: 2rem;
}

.flow_title{
    font-size: 1.6rem;
}

.flow_title::after{
    top: 24px;
}

.flow_des{
    font-size: 1.3rem;
    margin-top: 10px;
}

}

/* cta */

.section_cta{
    background-color: #fffbd4;
    padding: 10px 0px;
    border-top:solid #141414 2px;
}

.cta{
    margin-top: 20px;
    display: block;
     margin-bottom: 30px;
}

.cta_txt{
    font-size: 1.4rem;
    font-weight: 600;
}

.cta_btn{
    margin: 0 auto;
    margin-top: 5px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid #141414;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: var(--letter-spacing_sm);
    margin-bottom: 9px;
    padding: 4px 30px;
    position: relative;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    color: #141414;
}

.cta_btn::before{
    content: "";
    box-sizing: border-box;
    background: #f094b3;
    border: 2px solid #141414;
    border-radius: 5px;
    position: absolute;
    right: -6px;
    bottom: -6px;
    height: 100%;
    width: 100%;
    z-index: -1;
}

@media screen and (min-width:1024px){

    .spbr{
        display: none;
    }

.cta_txt{
    font-size: 1.8rem;
}

.cta_btn{
    margin-top: 15px;
    font-size: 2rem;
    padding: 4px 40px;
}


}

/* course */



.section_course{
    padding: 20px;
    border-top:solid #141414 2px;
}

table {
  border-collapse: inherit;
  margin: 0 auto;
  padding: 0;
  width: 450px;
  table-layout: fixed;
  border-spacing:0
}

.soft_flex{
    display: flex;
    justify-content: left;
    margin-top: 10px;
    align-items: center;
}

.course_soft{
    padding: 0px 0px 0px 40px;
}

.course_img{
    width: 20px;
    height: 100%;
    margin-right: 10px;
}

table thead tr .course01{
    background-color: #f9eff6;
    border: 1px solid #141414;
    border-radius: 20px 20px 0px 0px;
    border-bottom: 0px;
}

table thead tr .course02{
    background-color: #ffccdd;
    border: 1px solid #141414;
    border-radius: 20px 20px 0px 0px;
    border-bottom: 0px;
}

.course_title{
    font-size: 1.6rem;
    font-weight: 900;
    color: #ff7bac;
    text-shadow:
    1px 1px 0 #fff,
    -1px 1px 0 #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    1px 0px 0 #fff,
    0px 1px 0 #fff,
    -1px 0px 0 #fff,
    0px -1px 0 #fff;
    text-align: center;
    border-bottom: 3px dashed #ff7bac;
}


.course_txt{
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}


.width{
    padding: 20px 0px;
    width: 30px;
    border-bottom: 1px solid #b8b8b8;
    font-size: 1.1rem;
}

.width03{
    border-bottom: 0px;
}

.width02{
    padding: 0;
    width: 10px;
}

table tr {
  background-color: #fff;
  align-items: center;
}
table tr:last-child{
  border: none;
}
table th{
  padding: 2em;
  width: 100px;
}
table td {
  padding: 1em .5em;
  border-left: 1px solid #141414;
  border-right: 1px solid #141414;
border-bottom: 1px solid #b8b8b8;
  text-align: center;
  align-content: center;
}

.skill_item{
    border-bottom: 1px solid #b8b8b8;
    width: 100%;
    padding: 0em;
    margin: 10px 0px;
    align-items: center;
}

table th {
  font-size: .85em;
}

.skill_list{
    padding: 0em 0em;
    align-content: baseline;
}

.skill_txt{
    margin: 10px;
}

.skill_item02{
    border-bottom: 0px;
}

.skill_list{
    border: 1px solid #141414;
    border-radius: 0px 0px 20px 20px;
    border-top: 0px;
}

tbody{
    margin-left: 1px;
}

th.non {
    border-right: none;
}
.txt{
   text-align: left;
   font-size: .85em;
}
.price{
  color: #000;
  font-weight: bold;
}

table .btnarea td {
  padding: .2em .5em;
  border-right:none
}

.price{
    font-size: 2.5rem;
    color: #ff7bac;
}

.price span{
    font-size: 1.2rem;
    position: relative;
    margin-left: 3px;
}

.price span::before{
    content: "(税込)";
    font-size: 0.8rem;
    position: absolute;
    top: -10px;
    left: -9px;
    width: 39px;
}

.place{
    font-size: 1.3rem;
}

.month{
    font-size: 2.5rem;
    color: #ff7bac;
}

.month span{
    font-size: 1.3rem;
    margin-left: 2px;
}

.course_pic{
    margin: 40px auto 30px;
    max-width: 400px;
}

.course_pictxt{
    font-size: 1.4rem;
}

.course_img01{
    width: 100%;
    height: 100%;
}

.cource_pic00{
    width: 100px;
    height: 100%;
    position: relative;
    top: 32px;
    left: 289px;
}

.influencer_cource{
    margin-top: 15px;
    background: #ffffff;
    font-size: 1.5rem;
    padding: 4px 56px;
    color: #141414;
}

.influencer_cource::before{
    background: #ff7bac;
}

@media screen and (max-width: 600px) {
  .js-scrollable{
     overflow-x: scroll;
  }
}

@media screen and (min-width: 1024px) {


table {
  width: 600px;
}


.course_soft{
    padding: 0px 0px 0px 55px;
}

.course_img{
    width: 20px;
    height: 100%;
    margin-right: 10px;
}

table thead tr .course01{
    border: 2px solid #141414;
    border-bottom: 0px;
}

table thead tr .course02{
    border: 2px solid #141414;
    border-bottom: 0px;
}

.course_title{
    font-size: 2rem;
    text-shadow:
    2px 2px 0 #fff,
    -2px 2px 0 #fff,
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    2px 0px 0 #fff,
    0px 2px 0 #fff,
    -2px 0px 0 #fff,
    0px -2px 0 #fff;
    border-bottom: 3px dashed #ff7bac;
}


.course_txt{
    font-size: 1.2rem;
}


.width{
    border-bottom: 2px solid #b8b8b8;
    font-size: 1.4rem;
}

.width03{
    border-bottom: 0px;
}


table tr:last-child{
  border: none;
}
table th{
  padding: 2em;
  width: 100px;
}
table td {
  padding: 20px 5px;
  border-left: 2px solid #141414;
  border-right: 2px solid #141414;
border-bottom: 2px solid #b8b8b8;
}

.skill_item{
    border-bottom: 2px solid #b8b8b8;
}

table th {
  font-size: 1em;
}


.skill_txt{
    font-size: 1.3rem;
}

.skill_item02{
    border-bottom: 0px;
}

.skill_list{
    border: 2px solid #141414;
    border-radius: 0px 0px 20px 20px;
    border-top: 0px;
}

tbody{
    margin-left: 1px;
}

.txt{
   text-align: left;
   font-size: 1em;
}


.price{
    font-size: 4rem;
}

.price span{
    font-size: 1.6rem;
}

.price span::before{
    font-size: 1rem;
}

.place{
    font-size: 1.6rem;
}

.month{
    font-size: 4rem;
}

.month span{
    font-size: 1.6rem;
}

.course_pic{
    margin: 47px auto;
    max-width: 500px;
}

.course_pictxt{
    font-size: 2rem;
}

.section_course{
    padding: 40px 150px;
}

.course_img01{
    margin-top: 10px;
}

.cource_pic00{
    width: 120px;
}

.influencer_cource{
    font-size: 2rem;
    padding: 4px 80px;
}

}


/* qa */

/* tab-buttons */
.qa-section {
    display: none;
}
  
.qa-section.active {
    display: block;
}
.tab-buttons {
    display: block;
    justify-content: center;
    gap: 2vw;
    margin: 8vw 6%;
    flex-wrap: wrap;
    padding: 0 var(--contentPadding);
}
.tab-button {
    width: 100%;
    height: 12vw;
    background-color: #ff7bac;
    padding: 3vw 5vw;
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1.86vw;
    border-radius: 20px;
}
.tab-button:hover {
    color: #141414;
}
.tab-button:first-of-type {
    margin-top: 0;
}
.tab-button.active {
    background-color: #fff;
    color: #ff7bac;
    border:solid #ff7bac 2px;
}

.qa_flex{
    margin-top: 1.86vw;
}

.qa_tt{
    font-size: 1.6rem;
    color: #ff7bac;
    font-size: 1.6rem;
    /* margin: 20px 0px; */
    color: #ff7bac;
    padding: 20px 0px;
}

/* =====================================
main menu
======================================*/
.qa-section {
    padding: 0 var(--contentPadding);
    margin-top: 13.3vw;
}

.background_txt.qa{
    position: relative;
    top: -44px;
    color:#ed512e65;
    margin-bottom: -44px;
}

.section_qa{
    background-color: #FFF7FD;
    padding: 20px 10px 60px;
    border-top:solid #141414 2px;
}

.qa_items{
    margin: 0px 6% ;
    background-color: white;
    border-radius: 20px;
    padding: 10px 10px 20px;
    border:solid #ff7bac 2px;
}


.qa_list{
    position: relative;
    padding: 0px 0px 3px 10px;
    list-style-type: none;
    height: 60px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.qa_box{
    padding: 10px 20px 20px 21px;
    display: flex;
    position: relative;
    align-items: center;
}

.qa_box::before{
    content: '';
    position: absolute;
    left: 16px;
    top: -2px;
    display: block;
    width: 90%;
    height: 2px;
    margin: 0 auto;
    background-color: #ff7bac;
}

.qa_list::marker{
    display: none;
}

.qa_list::-webkit-details-marker {
  display: none;
}

.qa_q{
    font-size: 2rem;
    margin-left: 10px;
    font-family: "Noto Sans";
    font-weight: 900;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #ff7bac;
    color: #FDFDFD;
    display: block;
    overflow: hidden;
    text-align: center;
}

.qa_a{
    font-size: 2rem;
    font-family: "Noto Sans";
    font-weight: 900;
    color: #ff7bac;
    display: block;
    text-align: center;
}

.qa_title{
    font-size: 1.2rem;
    width: 210px;
    display: block;
    text-align: left;
    margin-left: 10px;
}

.qa_plus{
    position: absolute;
    right: 2rem;
    top: 2rem;
    width: 17px;
    height: 17px;
}

.qa_plus::before{
    content: '';
    position: absolute;
    left: 0px;
    top: 7px;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #141414;
}

.qa_plus::after{
    content: '';
    position: absolute;
    left: 7px;
    top: 0px;
    display: block;
    width: 2px;
    height: 100%;
    background-color: #141414;
}

.qa_items details[open] .qa_plus::after{
    display: none;
}

.qa_txt{
    width: 330px;
    font-size: 1.1rem;
    text-align: left;
    margin-left: 11px;
}


/* qa PC */
@media screen and (min-width:1024px){

    
    .tab-buttons {
        display: flex;
        justify-content: center;
        gap: 0.5vw;
        margin: 40px auto 0;
        flex-wrap: wrap;
        padding: 0 var(--contentPadding);
    }
    .tab-button {
        width: 26vw;
        height: 80px;
        border-radius: 60px;
        padding: 11px 10px 14px;
        font-size: 1.6rem;
        margin: 5px;

    }
    .spBr {
        display: none;
    }


    .qa-section {
        margin-top: 54px;
    }

    .background_txt.qa{
    top: -71px;
    margin-bottom: -71px;
}

.section_qa{
    padding: 50px 148px;
}


.qa_flex{
    display: flex;
    align-items: center;
}

.qa_list{
    height: 80px;
}

.qa_box{
    padding: 10px 10px 30px 12px;
}

.qa_items{
    margin: 0px;
}

.qa_q{
    font-size: 3rem;
    margin-left: 20px;
}

.qa_a{
    font-size: 3rem;
    margin-left: 20px;
}

.qa_box::before {
    left: 25px;
    width: 93%;
}

.qa_tt{
    font-size: 2.5rem;
    margin: 10px 0px 20px 0px ;
}

.qa_title{
    font-size: 1.8rem;
    width: 71%;
    margin-left: 20px;
}

.qa_plus{
    right: 4rem;
    top: 2.5rem;
    width: 30px;
    height: 30px;
}

.qa_plus::before{
    top: 13px;
    height: 3px;
}

.qa_plus::after{
    left: 13px;
    width: 3px;
}

.qa_txt{
    font-size: 1.5rem;
    margin: 0px 80px 0px 20px;
    width: 900px;
}

}

/* contact */

.section_contact{
    padding: 10px 0px;
    border-top:solid #141414 2px;
}

.jicoo{
    margin: 20px;
}

.title_en_contact{
    color: #ffd2e1;
}

@media screen and (min-width:1024px){
    .jicoo{
    margin: 30px 200px;
}
}

/* footer */

.footer{
    background-color: #faf8ec;
    padding: 10px 0px;
    border-top: solid #141414 2px;
    overflow: hidden;
}

.fotter_txt{
    font-size: 1.2rem;
    text-align: center;
}


.footer_logo{
    width: 200px;
    height: 100%;
}

/* footer_cta */

.section_footer{
    background-color: #fffbd4;
    padding: 10px 0px;
    border-top:solid #141414 2px;
}

.cta_footer{
    margin-top: 20px;
    display: block;
}

.cta_txt{
    font-size: 1.4rem;
    font-weight: 600;
}

.cta_btn_footer{
    margin: 0 auto;
    margin-top: 5px;
    box-sizing: border-box;
    background: #ff7bac;
    border: 2px solid #141414;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: var(--letter-spacing_sm);
    margin-bottom: 9px;
    padding: 12px 30px;
    position: relative;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
}

.cta_btn_footer::before{
    content: "";
    box-sizing: border-box;
    background: #8a8989;
    border: 2px solid #141414;
    border-radius: 5px;
    position: absolute;
    right: -6px;
    bottom: -6px;
    height: 100%;
    width: 100%;
    z-index: -1;
}



.footer0{
    margin-top: 20px;
}

.footer00{
    margin-top: 20px;
}

.footer01{
    margin-top: 20px;
    border-top:solid #141414 2px;
}

.footer_ja{
    font-size: 1.2rem;
}

.footer_item{
    margin-top: 5px;
}

.footer_ja:hover{
    color: #ff7bac;
}

.footer_campany{
    margin-top: 10px;
}

.footer_adress{
    margin-top: 10px;
    font-size: 1.1rem;
}

.footer_url_txt{
    margin-top: 10px;
    font-size: 1.2rem;
}

.footer_url_txt::after{
   content: "";
  background-image: url(../images/window.webp);
  background-size: contain;
  display: inline-block;
  vertical-align: -13%;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  z-index: 999;
}

.footer_url_txt:hover{
    color: #665f00;
}

.copy{
    margin: 10px auto;
    font-size: 1rem;
    text-align: center;
}

/* footer PC */
@media screen and (min-width:1024px){

    .footer{
        padding: 0px;
    }

    .footer_flex{
        display: flex;
    }


.fotter_txt{
    font-size: 1.4rem;
}


.footer_logo{
    width: 300px;
}

/* footer_cta */

.cta_txt{
    font-size: 1.6rem;
    font-weight: 600;
}

.cta_btn_footer{
    font-size: 1.6rem;
    padding: 20px 21px;
}


.footer0{
    margin-top: 0px;
    border-right:solid #141414 2px;
    margin-left: 30px;
    padding: 35px;
}

.footer00{
    padding: 10px 30px;
}

.footer01{
    padding: 10px 30px;
    border-top:solid #141414 2px;
}

.footer_ja{
    font-size: 1.4rem;
}

.footer_item{
    text-align: left;
}

.footer_campany{
    margin-top: 10px;
    text-align: left;
}

.footer_adress{
    margin-top: 10px;
    font-size: 1.3rem;
}

.footer_url_txt{
    margin-top: 15px;
    font-size: 1.4rem;
}

.footer_group{
    width: 100%;
}

.copy{
    margin: 10px auto;
    font-size: 1.1rem;
    text-align: left;
}

}

/* law */

.section_law{
    background-color: #f3f3f3;
    padding: 30px 30px 50px;
    text-align: left;
}

.law_space{
    padding: 20px;
    background-color: #FFF;
    border-radius: 20px;
}

.law_title{
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 20px;
}

.law_item_title{
    font-size: 1.4rem;
    color: #ff7bac;
}

.law_txt{
    font-size: 1.2rem;
    margin-top: 3px;
    line-height: 1.6;
}
.law_item{
    margin-top: 20px;
}

/* law PC */
@media screen and (min-width:1024px){
    .section_law{
        padding: 40px 200px 70px;
    }

    .law_space{
        padding: 40px 50px 60px;
    }

    .law_title{
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .law_item_title{
        font-size: 1.6rem;
    }

    .law_txt{
        font-size: 1.4rem;
        margin-top: 3px;
        line-height: 1.6;
    }
    .law_item{
        margin-top: 30px;
    }

    .law_item:first-of-type {
        margin-top: 10px;
    }
}

/* 追従型CTAボタン */

       .float-button__wrap {
            position: fixed;
            bottom: 6px;
            right: 0px;
            z-index: 10;
            width: 100%;
            z-index: 99;
            align-items: center;
            margin: 0 auto;
            height: 63px;
            text-align: center;
    }

    a.btn-custom01_float{
        margin-top: 0px;
        -webkit-transition: all 0.3s;
  transition: all .3s;
    }

    a.btn-custom01_float:active {
  -webkit-transform: translate(0rem, 0.75rem);
  transform: translate(0rem, 0.75rem);
}

a.btn-custom01:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}


@media screen and (min-width:1024px) {
   .float-button__wrap {
        display: none;
    }
}