@charset "UTF-8";

body {
  text-align: center;
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0;
}

main a {
  text-decoration: underline
}

main a:link, main a:visited {
  color: #06c
}

main a:active, main a:hover {
  color: #09f
}

@media (max-width:768px) {
  main a:active, main a:hover {
    color: #06c
  }
}

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, caption, th, td, img, form, div {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  text-align: left;
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

input,select{
  font-family: "Noto Sans JP", sans-serif;
}

.strong{
  font-weight: 700;
}

:root {
    --color-blue: #0096D8;
    --color-gray: #f5f5f5;
    --color-gray-primary: #696969;
    --color-gray-base: #b7b7b7;
}
  



/* =========================================================
header
========================================================= */
.c-hd {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 50;
}

.c-hd__in {
  display: flex;
  align-items: center;
  height: 72px;
}

.c-hd-logo {
  flex: 1;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .c-hd-logo {
    padding: 0 0 0 16px;
  }
}
@media (min-width: 769px) {
  .c-hd-logo {
    padding: 0 16px 0 40px;
  }
}
.c-hd-logo a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .c-hd-logo__img {
    width: 92px;
  }
}
@media (min-width: 769px) {
  .c-hd-logo__img {
    width: 115px;
  }
}
  


.container .inner{
    width: 90%;
    max-width: 904px;
    margin: 0 auto;
}






/*------------------------------------------
title
------------------------------------------*/
.c-ttl01 {
  text-align: center;
}

.c-ttl01 > * + * {
  margin: 8px auto 0;
}

.c-ttl01__en {
  font-size: clamp(10px, 7.4666666667vw, 28px);
  line-height: 1.3;
  font-weight: 500;
}

.c-ttl01__en--small {
  font-size: clamp(10px, 3.7333333333vw, 14px);
}

.c-ttl01__ja {
  font-size: clamp(10px, 3.2vw, 12px);
  line-height: 1.5;
}
  




/* =========================================================
STEP
========================================================= */

.info_step_list{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    width: 308px;
    /* padding: 46px 16px 106px 0; */
    box-sizing: border-box;
  }
  .info_step_list li{
    position: relative;
    font-size: 16px;
    font-weight: 700;
  }
  .info_step_list li:not(:last-child){
    flex: 1;
  }
  .info_step_list li:not(:last-child)::before{
    content: "";
    position: absolute;
    top: 9px;
    right: -16px;
    width: 100%;
    height: 1px;
    z-index: -2;
  }
  .info_step_list li::before{
    background-color: var(--color-gray-base);
  }

  .info_step_list li .number{
    position: relative;
    margin: 0 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-gray-base);
  }
  .info_step_list[data-current="1"] li:nth-of-type(1) .number,
  .info_step_list[data-current="2"] li:nth-of-type(2) .number,
  .info_step_list[data-current="3"] li:nth-of-type(3) .number,
  .info_step_list[data-current="4"] li:nth-of-type(4) .number{
    color: #ffffff;
  }

  .info_step_list li .number::before{
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-gray-base);
    border-radius: 50%;
    box-sizing: border-box;
    z-index: -1;
  }
  .info_step_list li .number::before{
    background-color: #ffffff;
  }
  .info_step_list[data-current="1"] li:nth-of-type(1) .number::before,
  .info_step_list[data-current="2"] li:nth-of-type(2) .number::before,
  .info_step_list[data-current="3"] li:nth-of-type(3) .number::before,
  .info_step_list[data-current="4"] li:nth-of-type(4) .number::before{
    border: 1px solid var(--color-blue);
  }

  .info_step_list[data-current="1"] li:first-child .number::before,
  .info_step_list[data-current="2"] li:first-child::before,
  .info_step_list[data-current="2"] li:nth-of-type(-n+2) .number::before,
  .info_step_list[data-current="3"] li:nth-of-type(-n+2)::before,
  .info_step_list[data-current="3"] li:nth-of-type(-n+3) .number::before,
  .info_step_list[data-current="4"] li:nth-of-type(-n+3)::before,
  .info_step_list[data-current="4"] li:nth-of-type(-n+4) .number::before{
    background-color: var(--color-blue);
  }


