@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@500&display=swap');

:root {
  --color-black: #000;
  --color-lblue: #0099FF;
  --color-pink: #FF65E2;
  --color-yellow: #FFFF54;
  --color-white: #FFF;
  --color-gray: #F0F0F0;
  --PC_h2: 4rem;
  --lineHeight01: 1.4;
}

* {
  box-sizing: border-box;
}


body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  letter-spacing: .05em;
  background: #F0F0F0;
}

/*PARTS*/
main {
  position: relative;
}

.section {
}

.inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section .inner {
  padding: 96px 20px 120px;
}

.title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 66px;
}

.title .small{
  font-size: 1rem;
}

.title_sub {
  font-size: 1rem;
  font-weight: normal;
  display: block;
  margin-top: 12px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-width: 180px;
  padding: 14px;
  color: var(--color-white);
  background: var(--color-lblue);
  font-weight: bold;
  border-radius: 100px;
  margin: 0 auto;
  position: relative;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-4px);
}

.note {
  color: var(--color-dgray);
}

.note:before {
  content: "※";
}

.en {
  font-family: 'Poppins', sans-serif;
}

body .u-sp {
  display: none;
}

.scroll_padding {
  scroll-padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .section {
    border-radius: 6.8vw 0;
  }

  .section .inner {
    padding: 70px 20px 90px;
  }

  .title {
    font-size: 1.5rem;
    margin-bottom: 36px;
  }

  .title .small{
    font-size: .75rem;
  }

  .title_sub {
    font-size: 0.75rem;
    margin-top: 8px;
  }

  .btn {
    padding: 16px;
  }

  body .u-sp {
    display: block;
  }

 body .u-pc {
    display: none;
  }
}

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}


/*HEADER*/
.header {
  height: 100px;
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  position: relative;
}

.header_logo {
  width: 240px;
}

.header_logo a {
  display: block;
  line-height: 1;
}

.header_logo a:hover {
  opacity: .7;
}

.header_nav, .header_nav_text, .header_nav_btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header_nav_text {
  font-size: 1rem;
  font-weight: bold;
}

.header_nav_text li+li {
  margin-left: 24px;
}

.header_nav_btn {
  margin-left: 32px;
}

.header .header_nav_btn .login {
  color: var(--color-lblue);
  background: var(--color-white);
  border: 2px solid var(--color-lblue);
}

.header .header_nav_btn .entry {
  margin-left: 16px;
}

.p-header__hamburger {
  display: none;
}

.is-active .header_logo{
    width: 168px;
    position: absolute;
    top: 10px;
    left: 20px;
}



@media screen and (max-width: 1200px) {
  .header {
    height: auto;
    overflow: hidden;
    position: static;
  }

  .header .inner {
    padding: 20px;
  }

  .header_logo {
    width: 168px;
  }

  .p-header__hamburger {
    display: inherit;
  }

  .c-hamburger {
    position: relative;
    width: inherit;
    height: inherit;
    margin: 0;
    border: transparent;
    background-color: transparent;
    cursor: pointer;
    z-index: 11;
  }

  .c-hamburger span {
    display: block;
    position: relative;
    left: 50%;
    width: 24px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--color-black);
    transition: all 0.4s;
  }

  .c-hamburger.is-active span {
    background: var(--color-black);
  }

  .c-hamburger span:nth-of-type(1) {
    top: -4px;
  }

  .c-hamburger span:nth-of-type(2) {
    top: 1px;

    transform: translateX(-0.45deg);
  }

  .c-hamburger span:nth-of-type(3) {
    top: 6px;
    transform: translateX(-0.45deg);
  }

  .c-hamburger.is-active span:nth-of-type(1) {
    top: 0;
    transform: translateX(-50%) rotate(225deg);
  }

  .c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }

  .c-hamburger.is-active span:nth-of-type(3) {
    top: -4px;
    transform: translateX(-50%) rotate(-225deg);
  }

  .header_logo_sp {
    width: 168px;
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .header_logo_sp a {
    display: block;
    line-height: 1;
  }

  .header_logo_sp a:hover {
    opacity: .7;
  }

  .header_nav {
    z-index: 10;
    position: absolute;
    top: 0;
    right: -100%;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding: 0 20px;
    height: 100vh;
    background: transparent;
    opacity: 0;
    transition: top 0.6s, right 0.6s;
  }

  .header_nav.is-active {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 1;
    background-color: var(--color-gray);
  }

  .header_nav, .header_nav_text, .header_nav_btn {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  .header_nav_text {
    margin-top: 110px;
  }

  .header_nav_text li {
    width: 100%;
    font-size: 1.125rem;
    text-align: left;
  }

  .header_nav_text li+li {
    margin: 26px 0 0;
  }

  .header_nav_btn {
    margin-top: 64px;
  }

  .header_nav_btn li {
    width: 100%;
  }

  .header_nav_btn li .btn {
    width: 100%;
  }

  .header .header_nav_btn .login {
    color: var(--color-lblue);
    background: var(--color-white);
    border-color: var(--color-lblue);
  }

  .header .header_nav_btn .entry {
    margin: 24px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .header .inner {
    padding: 10px 20px 20px;
  }
  .header_logo{
    margin-top: 10px;
  }
  .is-active{
    .header .inner {
      padding-top: 20px;
    }
  }
}


/*KV*/
.kv{
  background: var(--color-white);
}
.kv_main .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px 80px;
}

.kv_text {
  width: calc(50% - 90px);
}

.kv_title {
  font-size: 2.875rem;
  font-weight: bold;
  line-height: 1.4;
}

.kv_subtitle {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 10px 0 22px;
}

.kv_list_item {
  font-size: 1.125rem;
  font-weight: bold;
  padding-left: 1.375em;
  position: relative;
}

.kv_list_item:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(1em - 11px);
  width: 20px;
  height: 20px;
  background: url(../image/check.webp) center / contain no-repeat;
}

.kv_list_item+.kv_list_item {
  margin-top: 8px;
}

.kv_list_item span {
  display: block;
}

.kv_list_item .small {
  font-size: 0.75rem;
  line-height: 1.4;
}

.kv_list_item .note {
  font-size: 0.625rem;
  line-height: 1.4;
  margin-top: 2px;
  color: var(--color-dgray);
  font-weight: normal;
}

.kv_list+.btn.u-pc {
  font-size: 1.125rem;
  min-width: 320px;
  padding: 20px;
  margin: 36px auto 0 0;
}

.kv_img {
  width: 57.7%;
}

.kv_img .note {
  font-size: 0.625rem;
  text-align: center;
  margin-top: 8px;
}

.kv_sub{
  border-top: 1px solid #ccc;
  padding: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.kv_list{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .kv{
    background: var(--color-white) url(../image/kv_sp.webp) top center / contain no-repeat;
  }
}

.campaign_main{
  background: var(--color-black);
  color: var(--color-white);
  padding: 20px 20px 24px;
}

.campaign_main dl{
  display: flex;
  justify-content: center;
  align-items: end;
  line-height: 1.2;
}

.campaign_main dt{
  font-weight: bold;
  position: relative;
  margin-right: 40px;
}

.campaign_main dt:before{
  position:absolute;
  content: "";
  right: -28px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: var(--color-pink);
  height: calc(tan(40deg) * 40px / 2);
  width: 15px;
   clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.campaign_main dt p{
  font-size: 1.5rem;
}

.campaign_main dt span{
  background: var(--color-pink);
  color: var(--color-black);
  font-size: 1.125rem;
  line-height: 1.2;
  display: inline-block;
  margin-right: 8px;
  padding: 3px 6px;
}

.campaign_main dd > .note{
  font-size:0.5625rem;
  margin-top: 4px;
}

.campaign_main dd .wrapper{
  display: flex;
  align-items: end;
  font-size: 1.5rem;
  font-weight: bold;
}

.campaign_main dd .wrapper{
  display: flex;
  align-items: end;
  font-weight: bold;
}

.campaign_main dd .wrapper .commission{
  font-size: 1.5rem;
  margin-right: 4px;
}

.campaign_main dd .wrapper .num{
  font-size: 2.75rem;
  line-height: 1;
}

.campaign_main dd .wrapper .num .small{
  font-size: 1.5rem;
}

.campaign_main dd .wrapper .point {
  margin-left: 10px;
  position: relative;
}

.campaign_main dd .wrapper .point p:nth-of-type(1){
  background: var(--color-white);
  color:var(--color-black);
  padding: 8px 10px;
  font-size: 1rem;
}

.campaign_main dd .wrapper .point p:nth-of-type(2){
  position: absolute;
  right: 0;
  top: -1.125rem;
  font-size: 0.5625rem;
  font-weight: normal;
  color: var(--color-white);
}

.campaign_main dd p:nth-of-type(2){
  font-size: 0.5625rem;
  margin-top: 4px;
}

.campaign_sub{
  background: var(--color-pink);
}

.campaign_sub .inner{
  display: flex;
  align-items:end;
  justify-content: center;
  padding: 6px 20px 8px;
}

.campaign_sub .inner p:not([class]){
  font-weight: bold;
}

.campaign_sub .inner p.note{
  font-size: 0.625rem;
  font-weight: 500;
  margin-left: 10px;
}

.limited_box {
  display: flex;
  max-width: 440px;
  position: relative;
  margin-bottom: 16px;
}

.limited_box:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  margin: 0 auto;
  background-color: var(--color-black);
  width: 18px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}


.limited_head {
  background: var(--color-lblue);
  color: var(--color-white);
  border-radius: 8px 0 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.limited_head span {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.25;
}

.limited_content {
  background: var(--color-white);
  padding: 10px 24px 14px;
  width: calc(100% - 70px);
  border-radius: 0 8px 8px 0;
}

.limited_title {
  font-size: 1.2rem;
  font-weight: bold;
}

.limited_main {
  display: flex;
  align-items: center;
  margin: 1px 0 4px;
}


.limited_rate {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-top: -4px;
}

.limited_rate .num {
  color: var(--color-lblue);
  font-size: 1.5rem;
  margin-left: 4px;
}

.limited_rate .big {
  font-size: 2.625rem;
  line-height: 1.25;
}

.limited_desc {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.4;
  margin-left: 8px;
  flex: 1;
}

.limited_term {
  font-size: 0.812rem;
  line-height: 1.4;
  margin-left: -.5em;
}

.limited_content .note {
  font-size: 0.5625rem;
  line-height: 1.4;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}

.kv .btn {
  min-width: 320px;
  padding: 18px;
  margin: 36px auto 0 0;
  font-size: 1.125rem;
}

@media screen and (max-width: 1200px) {
  .kv_text {
    width: calc(50% - 5vw);
  }
  .kv_title{
    font-size: 4.2vw;
  }
  .kv_subtitle{
    font-size: 2.3vw;
  }
  .kv .btn{
        min-width:26.66vw;
  }
  .kv_list_item:before{
    width: 1.8vw;
    height: 1.8vw;
    top: calc(1em - 1vw);
  }
  .limited_title{
    font-size: 1.5vw;
  }
  .limited_term, .kv_list_item .small{
    font-size: 1vw;
  }
  .kv_list_item .note, .limited_content .note{
    font-size: 0.83vw;
  }
  .kv_list_item{
    font-size: 1.5vw;
  }
  .campaign_main dt p{
    font-size: 2vw;
  }
  .campaign_main dd .wrapper .commission{
    font-size: 2vw;
  }
  .campaign_main dd .wrapper .num{
    font-size: 3.33vw;
  }
  .campaign_main dd .wrapper .point p:nth-of-type(1){
    font-size: 1.33vw;
  }
  .campaign_main dt span{
    font-size: 1.5vw;
  }
  .campaign_main dd .wrapper > p{
    font-size: 1vw;
  }
  .campaign_main dd .wrapper div{
    font-size: 2.333vw;
  }
  .campaign_main dd .wrapper div .small{
    font-size: 1.66vw;
  }
  .campaign_main dd .wrapper div .big{
    font-size: 3.33vw;
  }
  .campaign_main dd > .note{
    font-size: 0.75vw;
  }
  .campaign_sub .inner p:not([class]){
    font-size: 1.33vw;
  }
  .campaign_sub .inner p.note{
    font-size: 0.83vw;
  }
}

@media screen and (max-width: 767px) {
  .kv{
    padding-bottom: 30px;
  }
  .kv .kv_main .inner {
    flex-direction: column;
    padding: 15vw 20px 0;
  }

  .kv_text {
    width: 100%;
  }

  .kv_title {
    font-size: 6.4vw;
    text-align: center;
  }

  .kv_sub{
    border: none;
    padding: 30px 20px 0;
  }

  .kv_subtitle {
    font-size: 3.9vw;
    color: var(--color-lblue);
    text-align: center;
    margin: 6px 0 0;
  }
  .kv_subtitle span{
    border-bottom: 2px solid var(--color-lblue);
  }

  .kv_list{
    display: block;
  }

  .kv_list_item {
    font-size: 1rem;
    padding-left: 1.65em;
  }

  .kv_list_item:before {
    top: calc(1em - 11px);
    width: 20px;
    height: 20px;
  }

  .kv_list_item+.kv_list_item {
    margin-top: 6px;
  }

  .limited_term, .kv_list_item .small{
    font-size: 0.7rem;
  }

  .kv_list_item .note, .limited_content .note{
    font-size: 0.625rem;
  }

  .kv_img {
    width: 100%;
  }

  .kv_img .note {
    font-size: 0.625rem;
    margin-top: 8px;
    line-height: 1.4;
    text-align: left;
  }

  .limited_box {
    max-width: 450px;
    margin: 18px auto 12px;
  }

  .limited_box:before {
    bottom: -10px;
    width: 14px;
    height: 10px;
  }

  .limited_head span {
    font-size: 0.875rem;
    letter-spacing: .025em;
  }

  .limited_content {
    padding: 10px 24px 12px;
    width: 100%;
  }

  .limited_title {
    font-size: 0.937rem;
  }

  .limited_main {
    margin: 0 0 6px;
  }

  .limited_rate {
    font-size: 0.875rem;
    margin-top: -2px;
  }

  .limited_rate .big {
    font-size: 1.25rem;
  }

  .limited_desc {
    font-size: 0.625rem;
    margin-left: 6px;
  }

  .limited_term {
    font-size: 0.687rem;
    margin-left: -.5em;
  }

  .limited_content .note {
    font-size: 0.5rem;
  }

  main .kv_sub .limited_box{
    margin: 0 auto 18px;
  }

  .kv_sub .limited_head{
    background: var(--color-pink);
    color: var(--color-black);
    border-radius: 8px 8px 0 0 ;
    padding: 8px 4px;
  }

  .kv_sub .limited_content {
    background: var(--color-black);
    color: var(--color-white);
    padding: 10px 9px 14px;
    border-radius: 0 0 8px 8px;
  }

  .kv_sub .limited_title{
    color: var(--color-white);
    font-size: 1rem;
  }

  .kv_sub .limited_main{
    align-items: center;
    justify-content: center;
  }

  .kv_sub .limited_rate {
    font-size: 1.125rem;
  }

  .kv_sub .limited_rate .big{
    font-size: 2.125rem;
    padding-left: .25rem;
  }

  .kv_sub .limited_wrapper{
    position: relative;
  }

  .kv_sub .limited_balloon{
    background: var(--color-white);
    color: var(--color-black);
    font-weight: bold;
    font-size:0.8125rem;
    padding: 2px 8px;
    margin-left: 8px;
  }

  .kv_sub .limited_note{
    position: absolute;
    right: 0;
    top: -1rem;
    font-size: 0.5rem;
    color: var(--color-white);
  }

  .kv .btn {
    min-width: auto;
    width: 100%;
    max-width: 320px;
    padding: 18px;
    margin: 36px auto;
    font-size: 1.125rem;
  }
}


/*SYSTEM*/
.system_item{
  background: var(--color-white);
  border-radius: 16px;
}

.system_item + .system_item{
  margin-top: 40px;
}

.system_heading{
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  font-size: 1.5rem;
  padding: 10px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.system_body{
  padding: 30px;
}
.system_body .note{
  font-size: 0.625rem;
}
@media screen and (max-width: 767px) {
  .system_heading{
    font-size: 1.125rem;
  }
  .system_body .note{
    margin-top: 8px;
  }
}

/*FEATURE*/
.feature{
  background: var(--color-black);
}
.feature .title{
  color: var(--color-white);
}

.feature_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.feature_item {
  background: var(--color-gray);
  border-radius: 16px;
  padding: 48px 24px 24px;
  position: relative;
}

.feature_num {
  font-family: 'Poppins', sans-serif;
  color: var(--color-lblue);
  line-height: 1;
  position: absolute;
  left: 28px;
  top: 28px;
}

.feature_img {
  text-align: center;
  margin-bottom: 12px;
}

.feature_img img {
  height: 100px;
}

.feature_title {
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 12px;
}

.feature_desc {
  text-align: center;
  line-height: 1.4;
}

.feature_desc small{
  display: block;
  font-size: 0.75rem;
  color: var(--color-dgray);
  margin-top: 4px;
}

.feature_item .limited_box {
  margin: 16px auto 0;
  display: block;
  max-width: none;
}

.feature_item .limited_box:before {
  display: none;
}

.feature_item .limited_head {
  border-radius: 8px 8px 0 0;
  padding: 6px;
}

.feature_item .limited_content {
  width: 100%;
  border-radius: 0 0 8px 8px;
  text-align: center;
}

.feature_item .limited_head span {
  font-size: 1rem;
}

.feature_item .limited_title {
  font-size: 1.125rem;
}

.feature_item .limited_main {
  display: block;
}

.feature_item .limited_desc {
  font-size: 0.687rem;
  margin: 0;
}

.feature_item .limited_rate {
  margin-top: -8px;
}

.feature_item .limited_content .feature_desc {
  font-size: .875rem;
}

.feature_item .limited_content .note {
  margin-top: 2px;
}

.feature_item .limited_content .feature_desc + .note {
  margin-top: 6px;
}

.feature_item .limited_balloon{
  background: var(--color-yellow);
  font-weight: bold;
  font-size: 0.875rem;
  padding: 4px 6px;
  position: relative;
  margin-top: 10px;
}

.feature_item .limited_balloon:before{
  position: absolute;
  content: '';
  width: 16px;
  height: 8px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  top: -8px;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--color-yellow);
}

.feature_item .limited_balloon .small{
  font-size: 0.5rem;
  padding-left: 4px;
}

@media screen and (max-width: 1200px) {
  .feature_list{
    gap: 20px
  }
}

@media screen and (max-width: 767px) {
  .feature_list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature_item {
    border-radius: 16px;
    padding: 36px 24px 24px;
  }

  .feature_img img {
    height: 90px;
  }

  .feature_desc{
    font-size:0.875rem ;
  }

  .feature_desc small{
    font-size: 0.625rem;
  }

  .feature_title {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .feature_item .limited_title {
    font-size: 1rem;
  }

  .feature_item .limited_rate {
    font-size: 1.375rem;
    margin: -6px auto 6px;
  }

  .feature_item .limited_rate .big {
    font-size: 2.25rem;
  }

  .feature_item .limited_term+.note {
    margin-top: 0;
  }
}


/*FLOW*/
.flow_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
}

.flow_list:before {
  content: "";
  position: absolute;
  left: 15%;
  top: 28px;
  width: 70%;
  height: 2px;
  background: var(--color-lblue);
  z-index: -1;
}

.flow_num {
  display: block;
  margin: 0 auto;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 56px;
  text-align: center;
  background: var(--color-lblue);
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
}

.flow_img {
  width: 188px;
  margin: 24px auto 20px;
}

.flow_text {
  text-align: center;
  font-weight: bold;
}

.flow_text small{
  font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
  .flow_list {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .flow_list:before {
    left: 23px;
    top: 0;
    width: 2px;
    height: 80%;
  }

  .flow_item {
    position: relative;
  }

  .flow_num {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 48px;
    position: absolute;
    left: 0;
    top: 0;
  }

  .flow_img {
    width: 100%;
    margin: 0 auto 12px;
    padding-left: 60px;
    text-align: center;
  }

  .flow_img img {
    width: 152px;
  }

  .flow_text {
    margin-left: 60px;
    line-height: 1.6;
  }
}


/*SCHEDULE*/
.schedule {
  background: var(--color-black);
}
.schedule_item:nth-of-type( n + 2 ){
  margin-top: 80px;
}
.schedule .title {
  color: var(--color-white);
}
.schedule_heading{
  color: var(--color-white);
  text-align: center;
  font-size: 1.5rem;
  padding: 4px;
  border: 3px solid var(--color-white);
}
.schedule_body{
  margin-top: 30px;
}
.schedule_body img{
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .schedule_heading{
    font-size: 1.125rem;
    padding: 3px;
    border-width: 2px;
  }
  .schedule_body{
    margin-top: 24px;
  }
}

/*FAQ*/
.accordion_wrapper {
  margin-top: -28px;
}

.accordion {
  border-bottom: 1px solid #ccc;
}

.accordion_header,
.accordion_content {
  width: 100%;
}

.accordion_header {
  cursor: pointer;
  position: relative;
  padding-bottom: 30px;
  padding-top: 28px;
}

.accordion_header span {
  position: relative;
  display: block;
  padding: 0 68px;
  font-size: 1.25rem;
  font-weight: bold;
}

.accordion_header span:before {
  content: "Q";
  position: absolute;
  left: 26px;
  top: .375rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-lblue);
}

.accordion_content {
  display: none;
  padding: 0 68px 32px 68px;
  position: relative;
}

.accordion_content:before {
  content: "A";
  position: absolute;
  left: 26px;
  top: .25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-black);
}

.accordion_content .note {
  display: block;
  color: inherit;
  font-size: 0.875rem;
}

.accordion_header::before {
  position: absolute;
  content: '';
  top: calc(50% - 2px);
  right: 25px;
  width: 20px;
  height: 2px;
  background-color: var(--color-lblue);
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}

.accordion_header::after {
  position: absolute;
  content: '';
  top: calc(50% - 2px);
  right: 25px;
  width: 20px;
  height: 2px;
  background-color: var(--color-lblue);
  transition: all .3s ease-in-out;
}

.accordion_header.open::before {
  transform: rotate(180deg);
}

.accordion_header.open::after {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .accordion_wrapper {
    margin-top: -24px;
  }

  .accordion_header {
    padding-bottom: 20px;
  }

  .accordion_header span {
    padding: 0 32px;
    font-size: 1rem;
  }

  .accordion_header span:before {
    left: 0;
    top: .25rem;
    font-size: 1.25rem;
  }

  .accordion_content {
    display: none;
    padding: 0 32px 24px 32px;
    position: relative;
  }

  .accordion_content:before {
    left: 0;
    top: .25rem;
    font-size: 1.25rem;
  }

  .accordion_content .note {
    font-size: 0.875rem;
  }

  .accordion:nth-of-type(n + 2) .accordion_header {
    padding-top: 20px;
  }

  .accordion_header::before {
    top: calc(50% + 2px);
    right: 0;
    width: 14px;
  }

  .accordion_header::after {
    top: calc(50% + 2px);
    right: 0;
    width: 14px;
  }
}


/*FIXED BTN*/
.fix_btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .fix_btn {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    z-index: 2;
  }

  .fix_btn ul{
    display: flex;
    justify-content: space-between;
    margin: 0 4px;
  }

  .fix_btn ul li{
    width: calc( 50% - 2px );
  }

  .fix_btn .btn {
    min-width: auto;
    width: 100%;
    padding: 13px 10px;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 2px solid var(--color-lblue);
    border-bottom: none;
  }

  .fix_btn .btn.login {
    background: var(--color-white);
    color: var(--color-lblue);
  }

  .fix_btn .btn.entry {
    color: var(--color-white);
  }

  .fix_btn .btn:hover {
    transform: none;
    opacity: 1;
  }
}


/*FOOTER*/
.footer {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.footer {
  padding: 60px 20px;
}

.footer_info {
  margin: 24px auto;
  font-size: 0.875rem;
}

.footer_info dt {
  font-weight: bold;
}

.footer_copyright {
  font-size: 0.75rem;
  color: var(--color-dgray);
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 20px 95px;
  }

  .footer_logo {
    width: 230px;
    margin: 0 auto;
  }

  .footer_info {
    margin: 16px auto;
    font-size: 0.75rem;
  }

  .footer_copyright {
    margin-top: 10px;
  }
}