@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: #111;
  --color-blue: #106EE0;
  --color-lblue: #E3F3FF;
  --color-gray: #999;
  --color-dgray: #606060;
  --color-yellow: #FFFF00;
  --color-white: #FFF;
  --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;
}

/*PARTS*/
main {
  position: relative;
}

.section {
  border-radius: 6.8vw 0;
}

.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_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-black);
  background: var(--color-yellow);
  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;
}

.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_sub {
    font-size: 0.75rem;
    margin-top: 8px;
  }

  .btn {
    padding: 16px;
  }

  .u-sp {
    display: block;
  }

  .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 0 10px;
  position: relative;
}

.header_logo {
  width: 120px;
}

.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: 40px;
}

.header_nav_btn {
  margin-left: 40px;
}

.header .header_nav_btn .login {
  color: var(--color-blue);
  background: var(--color-white);
  border: 2px solid var(--color-blue);
}

.header .header_nav_btn .entry {
  margin-left: 16px;
}

.p-header__hamburger {
  display: none;
}

@media screen and (max-width: 1200px) {
  .header_nav_text li+li {
    margin-left: 3vw;
  }
  .header .header_nav_btn .login, .header .header_nav_btn .entry{
    min-width: 140px;
  }
}


@media screen and (max-width: 767px) {
  .header {
    height: auto;
    overflow: hidden;
    position: static;
  }

  .header .inner {
    padding: 10px 20px 10px 10px;
  }

  .header_logo {
    width: 100px;
  }

  .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-white);
  }

  .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: 100px;
    position: absolute;
    top: 10px;
    left: 10px;
  }

  .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-blue);
  }

  .header_nav, .header_nav_text, .header_nav_btn {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  .header_nav_text {
    margin-top: 132px;
  }

  .header_nav_text li {
    width: 100%;
    color: var(--color-white);
    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-white);
    background: none;
    border-color: var(--color-white);
  }

  .header .header_nav_btn .entry {
    margin: 20px auto 0;
  }
}


/*KV*/
.kv .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px 80px;
}

.kv_text {
  width: calc(50% - 90px);
}

.kv_title {
  font-size: 3.25rem;
  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: 50%;
}

.kv_img .note {
  font-size: 0.625rem;
  text-align: center;
  margin-top: 8px;
}

.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-lblue);
  width: 18px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.limited_head {
  background: var(--color-blue);
  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-lblue);
  padding: 8px 12px 12px;
  width: calc(100% - 70px);
  border-radius: 0 8px 8px 0;
}

.limited_title {
  color: var(--color-blue);
  font-size: 1.2rem;
  font-weight: bold;
}

.limited_main {
  display: flex;
  align-items: center;
  margin: 1px 0 8px;
}

.limited_rate {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.3;
  margin-top: -4px;
}

.limited_rate .line {
  background: linear-gradient(transparent 50%, var(--color-yellow) 80%);
}

.limited_rate .big {
  font-size: 2rem;
}

.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_term+.note {
  font-size: 0.625rem;
  line-height: 1.4;
}

.note-text {
  font-size: 0.625rem;
  line-height: 1.4;
}

.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% - 60px);
  }
  .kv_title{
    font-size: 4.2vw;
  }
  .kv_subtitle{
    font-size: 2.3vw;
  }
  .limited_title{
    font-size: 1.5vw;
  }
  .limited_term, .kv_list_item .small{
    font-size: 1vw;
  }

  .sp-size-font {
    font-size: 0.75rem !important;
  }
  .limited_term+.note{
    font-size: 0.83vw;
  }
  .kv_list_item{
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 767px) {
  .kv .inner {
    flex-direction: column;
    padding: 10px 20px 24px;
  }

  .kv_text {
    width: 100%;
  }

  .kv_title {
    font-size: 2rem;
    text-align: center;
  }

  .kv_subtitle {
    font-size: 1.25rem;
    margin: 4px 0 22px;
    text-align: center;
  }

  .kv_list_item {
    font-size: 1rem;
    padding-left: 1.65em;
  }

  .kv_list_item:before {
    top: calc(1em - 11px);
  }

  .kv_list_item+.kv_list_item {
    margin-top: 6px;
  }

  .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: 1.062rem;
  }

  .limited_content {
    padding: 6px 6px 10px;
    width: calc(100% - 50px);
  }

  .limited_title {
    font-size: 0.937rem;
  }

  .limited_main {
    margin: 0 0 4px;
  }

  .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: 0 !important;
  }

  .limited_term+.note {
    font-size: 0.562rem;
  }

  .note-text {
    font-size: 0.562rem;
  }

  .kv .btn {
    min-width: auto;
    width: 100%;
    max-width: 320px;
    padding: 18px;
    margin: 36px auto;
    font-size: 1.125rem;
  }
}


/*FEATURE*/
.feature {
  background: var(--color-blue);
}

.feature .title {
  color: var(--color-white);
}

.feature .title_sub {
  color: var(--color-white);
}

.feature_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.feature_item {
  background: var(--color-white);
  border-radius: 16px;
  padding: 48px 24px 24px;
  position: relative;
}

.feature_num {
  font-family: 'Poppins', sans-serif;
  color: var(--color-blue);
  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: 0.875rem;
}

.feature_item .limited_main {
  display: block;
}

.feature_item .limited_desc {
  font-size: 0.687rem;
  margin: 0;
}

.feature_item .limited_rate {
  margin-top: -1px;
}

.feature_item .limited_term+.note {
  margin-top: 2px;
}

@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_title {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .feature_item .limited_rate {
    font-size: 1.125rem;
    margin: 0 auto 6px;
  }

  .feature_item .limited_rate .big {
    font-size: 1.75rem;
  }

  .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-blue);
  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-blue);
  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;
}

@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-lblue);
}
.schedule_img img{
  margin: 0 auto;
}


/*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-blue);
}

.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-gray);
}

.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-blue);
  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-blue);
  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: 24px;
  }

  .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-blue);
    border-bottom: none;
  }

  .fix_btn .btn.login {
    background: var(--color-blue);
    color: var(--color-white);
  }

  .fix_btn .btn.entry {
    color: var(--color-blue);
  }

  .fix_btn .btn:hover {
    transform: none;
    opacity: 1;
  }
}


/*FOOTER*/
.footer {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.footer {
  padding: 80px 20px 70px;
}

.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);
}

@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;
  }
}