@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&family=Inria+Sans&family=Montserrat:wght@700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@700&display=swap");

.inria {
  font-family: "Inria Sans", sans-serif;
  font-weight: bold;
}

.itaric {
  font-style: italic;
}

.spBr {
  display: none;
}

@media (max-width: 768px) {
  .spBr {
    display: inline;
  }
}

@media (max-width: 768px) {
  .pcBr {
    display: none;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  min-width: 1330px;
}

@media (max-width: 768px) {
  body {
    min-width: 100%;
  }
}

body.fixed {
  overflow: hidden;
}

.wrap {
  margin: 0 auto;
  padding: 0 18px;
  width: 1128px;
}

@media (max-width: 768px) {
  .wrap {
    width: auto;
  }
}

p,
li,
dt,
dd,
span {
  line-height: 1.5;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 50px;
  }
}

.mv {
  background: url(../img/mv.png);
  background-size: cover;
  display: block;
  margin-top: 67px;
  padding: 59px 0 74px;
}

@media (max-width: 768px) {
  .mv {
    background: url(../img/mv_sp.png);
    background-size: cover;
    margin-top: 52px;
    padding: 30px 0;
  }
}

.mv .wrap {
  padding: 0 10px;
}

.mv .mv_txt {
  align-items: flex-start;
  color: #FFF;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .mv .mv_txt {
    width: 100%;
  }
}

.mv .txt01 {
  background-color: #49BEFC;
  border-radius: 5px;
  display: flex;
  font-size: 21px;
  font-weight: bold;
  justify-content: center;
  line-height: 1.8;
  padding: 5px 0;
  text-align: center;
  width: 519px;
}

@media (max-width: 768px) {
  .mv .txt01 {
    font-size: 18px;
    width: 100%;
  }
}

.mv .txt02 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  padding-top: 26px;
}

@media (max-width: 768px) {
  .mv .txt02 {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 auto;
    padding-top: 10px;
    text-align: center;
  }
}

.mv .txt03 {
  font-size: 70px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .mv .txt03 {
    font-size: 24px;
    margin: 0 auto;
  }
}

.mv .txt03 em {
  font-weight: 300;
}

.mv .btn {
  background-color: #F4B200;
  border: 1px solid #F4B200;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  font-size: 21px;
  font-weight: bold;
  gap: 3px;
  height: 100px;
  justify-content: center;
  margin-top: 37px;
  position: relative;
  transition: 0.3s;
  width: 465px;
}

@media (max-width: 768px) {
  .mv .btn {
    font-size: 16px;
    height: 70px;
    margin-top: 10px;
    padding: 0;
    width: 100%;
  }
}

.mv .btn .btn_top {
  align-items: center;
  display: flex;
  justify-content: center;
}

.mv .btn .btn_top:before,
.mv .btn .btn_top:after {
  background-color: #FFF;
  content: "";
  height: 30px;
  margin: 5px 13px 0;
  transform: rotate(-35deg);
  width: 2px;
}

@media (max-width: 768px) {

  .mv .btn .btn_top:before,
  .mv .btn .btn_top:after {
    height: 18px;
  }
}

.mv .btn .btn_top:after {
  transform: rotate(35deg);
}

.mv .btn .btn_btm {
  display: flex;
  justify-content: center;
}

.mv .btn .btn_btm:before {
  background: url(../img/ico_download_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 18px;
  margin-right: 10px;
  margin-top: 7px;
  width: 19px;
}

.mv .btn:hover {
  background-color: #FFF;
  color: #F4B200;
  opacity: 1;
}

.mv .btn:hover .btn_top:before,
.mv .btn:hover .btn_top:after {
  background-color: #F4B200;
}

.mv .btn:hover .btn_btm:before {
  background: url(../img/ico_download_o.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.sec01 {
  padding: 100px 0 174px;
  position: relative;
}

@media (max-width: 768px) {
  .sec01 {
    padding: 60px 0 87px;
  }
}

.sec01:after {
  background: url(../img/arrow.png) center center/contain no-repeat;
  bottom: 48px;
  content: "";
  display: block;
  height: 78px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 108px;
}

@media (max-width: 768px) {
  .sec01:after {
    bottom: 5px;
    height: 70px;
    width: 90px;
  }
}

.sec01 .cont {
  display: flex;
}

@media (max-width: 768px) {
  .sec01 .cont {
    flex-direction: column;
  }
}

.sec01 .cont .sec_txt .txt01 {
  color: #49BEFC;
  font-size: 59px;
  letter-spacing: 4px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .sec01 .cont .sec_txt .txt01 {
    font-size: 30px;
    letter-spacing: 1px;
  }
}

.sec01 .cont .sec_txt .txt02 {
  color: #49BEFC;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .sec01 .cont .sec_txt .txt02 {
    font-size: 14px;
  }
}

.sec01 .cont .sec_txt .txt03 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 26px 0;
}

@media (max-width: 768px) {
  .sec01 .cont .sec_txt .txt03 {
    font-size: 16px;
    padding: 10px 0;
  }
}

.sec01 .cont .sec_txt .txt04 {
  font-size: 16px;
  line-height: 2.2;
}

@media (max-width: 768px) {
  .sec01 .cont .sec_txt .txt04 {
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .sec01 .cont .sec_txt {
    text-align: center;
  }
}

.sec01 .cont .imgWrap {
  margin-left: auto;
}

.sec01 .cont .imgWrap img {
  height: auto;
  width: 438px;
}

@media (max-width: 768px) {
  .sec01 .cont .imgWrap img {
    width: 100%;
  }
}

.sec01 .list {
  display: flex;
  justify-content: space-between;
  padding-top: 59px;
}

@media (max-width: 768px) {
  .sec01 .list {
    flex-direction: column;
    gap: 8px;
    padding-top: 30px;
  }
}

.sec01 .list .item {
  border: 3px solid #49BEFC;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  padding: 60px 0 30px;
  position: relative;
  text-align: center;
  width: 261px;
}

@media (max-width: 768px) {
  .sec01 .list .item {
    line-height: 1.5;
    padding: 50px 10px 20px;
    width: calc(100% - 24px);
  }
}

.sec01 .list .item:before {
  background: url(../img/check.png) center center/contain no-repeat;
  content: "";
  display: block;
  height: 25px;
  left: 50%;
  position: absolute;
  top: 22px;
  transform: translateX(-50%);
  width: 25px;
}

.sec01 .list .item em {
  color: #49BEFC;
}

.sec02 {
  background: rgba(73, 190, 252, 0.1);
  padding: 80px 0;
}

@media (max-width: 768px) {
  .sec02 {
    padding: 60px 0;
  }
}

.sec02 .sec_txt {
  text-align: center;
}

.sec02 .sec_txt .txt01 {
  color: #49BEFC;
  font-size: 59px;
  letter-spacing: 4px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .sec02 .sec_txt .txt01 {
    font-size: 30px;
    letter-spacing: 1px;
  }
}

.sec02 .sec_txt .txt02 {
  color: #49BEFC;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .sec02 .sec_txt .txt02 {
    font-size: 14px;
  }
}

.sec02 .sec_txt .txt03 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 26px 0;
}

@media (max-width: 768px) {
  .sec02 .sec_txt .txt03 {
    font-size: 16px;
    padding: 10px 0;
  }
}

.sec02 .sec_txt .txt04 {
  font-size: 16px;
  line-height: 2.2;
}

@media (max-width: 768px) {
  .sec02 .sec_txt .txt04 {
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 30px;
  }
}

.sec02 .list {
  display: flex;
  flex-direction: column;
  gap: 146px;
  padding-top: 126px;
}

@media (max-width: 768px) {
  .sec02 .list {
    flex-direction: column;
    gap: 8px;
    padding-top: 0;
  }
}

.sec02 .list .item {
  background-color: #FFF;
  border: 2px solid #49BEFC;
  border-radius: 10px;
  display: flex;
  margin-left: -94px;
  padding: 60px 76px;
  position: relative;
  width: 891px;
}

@media (max-width: 768px) {
  .sec02 .list .item {
    flex-direction: column;
    margin: 0 auto;
    padding: 20px;
    width: calc(100% - 44px);
  }
}

.sec02 .list .item .cont .top {
  padding-bottom: 50px;
  padding-right: 290px;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .top {
    padding-bottom: 20px;
    padding-right: 0;
  }
}

.sec02 .list .item .cont .top .ttl {
  align-items: center;
  display: flex;
  gap: 32px;
  margin-bottom: 33px;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .top .ttl {
    gap: 16px;
    margin-bottom: 15px;
  }
}

.sec02 .list .item .cont .top .ttl .num {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: #49BEFC;
  border-radius: 50%;
  color: #FFF;
  display: flex;
  flex-shrink: 0;
  font-size: 41px;
  font-weight: bold;
  justify-content: center;
  letter-spacing: 2px;
  width: 117px;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .top .ttl .num {
    font-size: 20px;
    width: 50px;
  }
}

.sec02 .list .item .cont .top .ttl .ttl3 {
  color: #49BEFC;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .top .ttl .ttl3 {
    font-size: 18px;
    line-height: 1.5;
  }
}

.sec02 .list .item .cont .top .txt01 {
  font-size: 16px;
  line-height: 2.1;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .top .txt01 {
    font-size: 14px;
    line-height: 1.7;
  }
}

.sec02 .list .item .cont .txt02 {
  align-items: center;
  border-bottom: 1px solid #49BEFC;
  display: flex;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 12px;
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .txt02 {
    font-size: 16px;
    padding-top: 10px;
  }
}

.sec02 .list .item .cont .txt02:before {
  aspect-ratio: 1/1;
  background-color: #49BEFC;
  border-radius: 50%;
  content: "";
  display: block;
  margin-right: 14px;
  width: 10px;
}

.sec02 .list .item .cont .list02 {
  display: flex;
  justify-content: space-between;
  padding-top: 35px;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .list02 {
    flex-direction: column;
    padding-top: 15px;
  }
}

.sec02 .list .item .cont .list02 .item02 {
  width: 421px;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .list02 .item02 {
    width: 100%;
  }
}

.sec02 .list .item .cont .list02 .item02 .img02 {
  display: block;
  height: 269px;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .list02 .item02 .img02 {
    height: auto;
    width: 100%;
  }
}

.sec02 .list .item .cont .list02 .item02 .txt03 {
  font-size: 16px;
  line-height: 2.2;
  padding-top: 30px;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .list02 .item02 .txt03 {
    font-size: 14px;
    line-height: 1.7;
    padding: 10px 0;
  }
}

.sec02 .list .item .cont .btm {
  display: flex;
  gap: 42px;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .btm {
    flex-direction: column;
    gap: 20px;
  }
}

.sec02 .list .item .cont .btm .img03 {
  border-radius: 10px;
  display: block;
  height: auto;
  width: 485px;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .btm .img03 {
    margin-top: 20px;
    width: 100%;
  }
}

.sec02 .list .item .cont .btm .list03 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sec02 .list .item .cont .btm .list03 li {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 9px;
  padding-left: 27px;
  position: relative;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .btm .list03 li {
    font-size: 14px;
    padding-bottom: 5px;
    padding-top: 5px;
  }
}

.sec02 .list .item .cont .btm .list03 li:not(:last-of-type) {
  border-bottom: 1px dotted #BABABA;
}

.sec02 .list .item .cont .btm .list03 li:before {
  background: url(../img/check_02.png) no-repeat center top/contain;
  content: "";
  display: block;
  height: 15px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 20px;
}

@media (max-width: 768px) {
  .sec02 .list .item .cont .btm .list03 li:before {
    top: 8px;
  }
}

.sec02 .list .item .img01 {
  height: auto;
  position: absolute;
  right: -236px;
  top: -66px;
  width: 544px;
}

@media (max-width: 768px) {
  .sec02 .list .item .img01 {
    position: static;
    width: 100%;
  }
}

.sec02 .list .item.alt {
  flex-direction: row-reverse;
  margin-left: 140px;
}

@media (max-width: 768px) {
  .sec02 .list .item.alt {
    flex-direction: column;
    margin-left: 0;
  }
}

.sec02 .list .item.alt .ttl {
  flex-direction: row-reverse;
  margin-left: 0;
}

@media (max-width: 768px) {
  .sec02 .list .item.alt .ttl {
    flex-direction: row;
  }
}

.sec02 .list .item.alt .top {
  padding-bottom: 0;
  padding-left: 304px;
  padding-right: 0;
}

@media (max-width: 768px) {
  .sec02 .list .item.alt .top {
    padding: 0;
    padding-bottom: 20px;
  }
}

.sec02 .list .item.alt .img01 {
  height: auto;
  left: -236px;
  position: absolute;
  top: -66px;
  width: 544px;
}

@media (max-width: 768px) {
  .sec02 .list .item.alt .img01 {
    position: static;
    width: 100%;
  }
}

.sec03 {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .sec03 {
    padding: 60px 0;
  }
}

.sec03 .sec_txt {
  text-align: center;
}

.sec03 .sec_txt .txt01 {
  color: #49BEFC;
  font-size: 59px;
  letter-spacing: 4px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .sec03 .sec_txt .txt01 {
    font-size: 30px;
    letter-spacing: 1px;
  }
}

.sec03 .sec_txt .txt02 {
  color: #49BEFC;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .sec03 .sec_txt .txt02 {
    font-size: 14px;
  }
}

.sec03 .sec_txt .txt03 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 26px 0;
}

@media (max-width: 768px) {
  .sec03 .sec_txt .txt03 {
    font-size: 16px;
    padding: 10px 0;
  }
}

.sec03 .sec_txt .txt04 {
  font-size: 16px;
  line-height: 2.2;
}

@media (max-width: 768px) {
  .sec03 .sec_txt .txt04 {
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 30px;
  }
}

.sec03 .list {
  display: flex;
  flex-direction: column;
  gap: 85px;
  padding-top: 60px;
}

@media (max-width: 768px) {
  .sec03 .list {
    gap: 40px;
    padding-top: 30px;
  }
}

.sec03 .list .item .ttl {
  display: flex;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .sec03 .list .item .ttl {
    margin-bottom: 20px;
  }
}

.sec03 .list .item .ttl .inria {
  align-items: center;
  background-color: #49BEFC;
  border-radius: 10px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  font-size: 10px;
  font-style: italic;
  font-weight: bold;
  height: 90px;
  justify-content: center;
  letter-spacing: 1px;
  margin-right: -60px;
  margin-top: -25px;
  position: relative;
  width: 90px;
  z-index: 1;
}

@media (max-width: 768px) {
  .sec03 .list .item .ttl .inria {
    height: 60px;
    margin-right: -30px;
    margin-top: -15px;
    width: 60px;
  }
}

.sec03 .list .item .ttl .inria em {
  font-size: 42px;
  letter-spacing: 2px;
  line-height: 1;
  padding-right: 6px;
}

@media (max-width: 768px) {
  .sec03 .list .item .ttl .inria em {
    font-size: 25px;
  }
}

.sec03 .list .item .ttl .ttl3 {
  align-items: center;
  background-color: #F7F7F7;
  border-radius: 10px;
  display: flex;
  font-size: 24px;
  font-weight: bold;
  padding: 23px 0;
  padding-left: 92px;
  width: 1098px;
}

@media (max-width: 768px) {
  .sec03 .list .item .ttl .ttl3 {
    font-size: 16px;
    padding: 5px 0;
    padding-left: 50px;
    width: 100%;
  }
}

.sec03 .list .item .cont {
  display: flex;
  gap: 67px;
}

@media (max-width: 768px) {
  .sec03 .list .item .cont {
    flex-direction: column;
    gap: 30px;
  }
}

.sec03 .list .item .cont .txt01 {
  font-size: 16px;
  line-height: 2.2;
}

@media (max-width: 768px) {
  .sec03 .list .item .cont .txt01 {
    font-size: 14px;
    line-height: 1.7;
  }
}

.sec03 .list .item .cont img {
  height: auto;
  width: 451px;
}

@media (max-width: 768px) {
  .sec03 .list .item .cont img {
    width: 100%;
  }
}

.sec03 .list .item .cont.alt {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .sec03 .list .item .cont.alt {
    flex-direction: column;
  }
}

.sec04 {
  background: #F7F7F7;
  padding: 100px 0;
}

@media (max-width: 768px) {
  .sec04 {
    padding: 60px 0;
  }
}

.sec04 .sec_txt {
  padding-bottom: 60px;
  text-align: center;
}

.sec04 .sec_txt .txt01 {
  color: #49BEFC;
  font-size: 59px;
  letter-spacing: 4px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .sec04 .sec_txt .txt01 {
    font-size: 30px;
    letter-spacing: 1px;
  }
}

.sec04 .sec_txt .txt02 {
  color: #49BEFC;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .sec04 .sec_txt .txt02 {
    font-size: 14px;
  }
}

.sec04 .sec_txt .txt03 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 26px 0;
}

@media (max-width: 768px) {
  .sec04 .sec_txt .txt03 {
    font-size: 16px;
    padding: 10px 0;
  }
}

.sec04 .sec_txt .txt04 {
  font-size: 16px;
  line-height: 2.2;
}

@media (max-width: 768px) {
  .sec04 .sec_txt .txt04 {
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .sec04 .sec_txt {
    padding-bottom: 0;
  }
}

.sec04 .imgwrap {
  align-items: center;
  background-color: #FFF;
  border-radius: 10px;
  display: flex;
  height: 536px;
  justify-content: center;
  margin: 0 auto;
  width: 926px;
}

@media (max-width: 768px) {
  .sec04 .imgwrap {
    height: 70%;
    padding: 5% 0;
    width: 100%;
  }
}

.sec04 .imgwrap img {
  height: auto;
  width: 840px;
}

@media (max-width: 768px) {
  .sec04 .imgwrap img {
    width: 90%;
  }
}

.sec05 {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  .sec05 {
    padding: 60px 0 0;
  }
}

.sec05:after {
  background: url(../img/sec05_bg.png) top/cover;
  content: "";
  height: 506px;
  left: 0;
  position: absolute;
  top: 328px;
  width: 100%;
}

@media (max-width: 768px) {
  .sec05:after {
    height: 950px;
  }
}

.sec05 .sec_txt {
  padding-bottom: 60px;
  text-align: center;
}

.sec05 .sec_txt .txt01 {
  color: #49BEFC;
  font-size: 59px;
  letter-spacing: 4px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .sec05 .sec_txt .txt01 {
    font-size: 30px;
    letter-spacing: 1px;
  }
}

.sec05 .sec_txt .txt02 {
  color: #49BEFC;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .sec05 .sec_txt .txt02 {
    font-size: 14px;
  }
}

.sec05 .sec_txt .txt03 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 26px 0;
}

@media (max-width: 768px) {
  .sec05 .sec_txt .txt03 {
    font-size: 16px;
    padding: 10px 0;
  }
}

.sec05 .sec_txt .txt04 {
  font-size: 16px;
  line-height: 2.2;
}

@media (max-width: 768px) {
  .sec05 .sec_txt .txt04 {
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .sec05 .sec_txt {
    padding-bottom: 30px;
  }
}

.sec05 .list_wrap {
  position: relative;
  z-index: 1;
}

.sec05 .list_wrap .list {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .sec05 .list_wrap .list {
    flex-direction: column;
    gap: 30px;
  }
}

.sec05 .list_wrap .list li {
  background-color: #FFF;
  border-radius: 10px;
  display: block;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.1));
  width: 361px;
}

@media (max-width: 768px) {
  .sec05 .list_wrap .list li {
    width: 100%;
  }
}

.sec05 .list_wrap .list li img {
  height: auto;
  width: 361px;
}

@media (max-width: 768px) {
  .sec05 .list_wrap .list li img {
    width: 100%;
  }
}

.sec05 .list_wrap .list li .btm {
  padding: 42px 33px 51px;
}

@media (max-width: 768px) {
  .sec05 .list_wrap .list li .btm {
    padding: 20px;
  }
}

.sec05 .list_wrap .list li .btm .ttl3 {
  color: #49BEFC;
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 41px;
  position: relative;
}

@media (max-width: 768px) {
  .sec05 .list_wrap .list li .btm .ttl3 {
    font-size: 18px;
    padding-bottom: 20px;
  }
}

.sec05 .list_wrap .list li .btm .ttl3:after {
  border-bottom: 1px solid #49BEFC;
  content: "";
  left: 0;
  position: absolute;
  top: 52px;
  width: 42px;
}

@media (max-width: 768px) {
  .sec05 .list_wrap .list li .btm .ttl3:after {
    top: 38px;
  }
}

.sec05 .list_wrap .list li .btm .txt01 {
  font-size: 16px;
  line-height: 1.7;
  margin-top: auto;
}

@media (max-width: 768px) {
  .sec05 .list_wrap .list li .btm .txt01 {
    font-size: 14px;
  }
}

.sec06 {
  padding: 100px 0 0;
  position: relative;
}

@media (max-width: 768px) {
  .sec06 {
    padding: 60px 0 0;
  }
}

.sec06 .sec_txt {
  padding-bottom: 60px;
  text-align: center;
}

.sec06 .sec_txt .txt01 {
  color: #49BEFC;
  font-size: 59px;
  letter-spacing: 4px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .sec06 .sec_txt .txt01 {
    font-size: 30px;
    letter-spacing: 1px;
  }
}

.sec06 .sec_txt .txt02 {
  color: #49BEFC;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .sec06 .sec_txt .txt02 {
    font-size: 14px;
  }
}

.sec06 .sec_txt .txt03 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 26px 0;
}

@media (max-width: 768px) {
  .sec06 .sec_txt .txt03 {
    font-size: 16px;
    padding: 10px 0;
  }
}

.sec06 .sec_txt .txt04 {
  font-size: 16px;
  line-height: 2.2;
}

@media (max-width: 768px) {
  .sec06 .sec_txt .txt04 {
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .sec06 .sec_txt {
    padding-bottom: 30px;
  }
}

.sec06 .tablewrap {
  padding-top: 45px;
  width: 100%;
}

@media (max-width: 768px) {
  .sec06 .tablewrap {
    overflow-x: scroll;
    padding-top: 45px;
  }
}

.sec06 .tablewrap .dltable {
  font-size: 16px;
}

@media (max-width: 768px) {
  .sec06 .tablewrap .dltable {
    font-size: 14px;
    margin: 0 auto;
    width: 632px;
  }
}

.sec06 .tablewrap .dltable dl {
  display: flex;
}

.sec06 .tablewrap .dltable dl dt {
  align-items: center;
  background-color: #F4F5F5;
  border-top: 4px solid #FFF;
  display: flex;
  font-weight: bold;
  justify-content: center;
  letter-spacing: 1px;
  width: 212px;
}

@media (max-width: 768px) {
  .sec06 .tablewrap .dltable dl dt {
    width: 130px;
  }
}

.sec06 .tablewrap .dltable dl dt.blank {
  background-color: #595F6A;
  content: "";
}

.sec06 .tablewrap .dltable dl dd {
  align-items: center;
  background-color: #F4F5F5;
  border-left: 4px solid #FFF;
  border-top: 4px solid #FFF;
  display: flex;
  flex-direction: column;
  height: 100px;
  justify-content: center;
  text-align: center;
  width: 294px;
}

@media (max-width: 768px) {
  .sec06 .tablewrap .dltable dl dd {
    height: 90px;
    width: 150px;
  }
}

.sec06 .tablewrap .dltable dl dd em {
  align-items: center;
  display: flex;
  font-size: 20px;
  font-weight: 500;
  height: 39px;
  justify-content: center;
}

.sec06 .tablewrap .dltable dl dd.blue {
  background-color: rgba(73, 190, 252, 0.15);
  width: 328px;
}

@media (max-width: 768px) {
  .sec06 .tablewrap .dltable dl dd.blue {
    width: 190px;
  }
}

.sec06 .tablewrap .dltable dl dd.blue em {
  color: #49BEFC;
  font-size: 26px;
  margin-top: -3px;
}

.sec06 .tablewrap .dltable dl.top {
  background-color: #595F6A;
  color: #FFF;
  height: 100px;
}

@media (max-width: 768px) {
  .sec06 .tablewrap .dltable dl.top {
    height: 90px;
  }
}

.sec06 .tablewrap .dltable dl.top dt {
  background-color: #595F6A;
  border-top: none;
}

.sec06 .tablewrap .dltable dl.top dd {
  background-color: #595F6A;
  border-top: none;
  font-weight: 500;
  height: 100px;
  width: 294px;
}

@media (max-width: 768px) {
  .sec06 .tablewrap .dltable dl.top dd {
    height: 90px;
    width: 150px;
  }
}

.sec06 .tablewrap .dltable dl.top dd.inria {
  background-color: #49BEFC;
  font-size: 32px;
  font-weight: bold;
  height: 145px;
  letter-spacing: 1px;
  margin-top: -45px;
  width: 328px;
}

@media (max-width: 768px) {
  .sec06 .tablewrap .dltable dl.top dd.inria {
    font-size: 25px;
    height: 135px;
    width: 190px;
  }
}

.sec06 .tablewrap .dltable dl.top dd.inria span {
  font-size: 22px;
}

@media (max-width: 768px) {
  .sec06 .tablewrap .dltable dl.top dd.inria span {
    font-size: 14px;
  }
}

.sec06 .tablewrap .dltable dl.top dd.inria span i {
  font-family: "Noto Sans JP", sans-serif;
}

.sec06 .btn_list {
  display: flex;
  gap: 27px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .sec06 .btn_list {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
}

.sec06 .btn_list li a {
  align-items: center;
  background-color: #083F8E;
  border: 1px solid #083F8E;
  border-radius: 100px;
  color: #FFF;
  display: flex;
  font-size: 20px;
  font-weight: bold;
  height: 131px;
  justify-content: center;
  opacity: 1;
  transition: 0.3s;
  width: 357px;
}

@media (max-width: 768px) {
  .sec06 .btn_list li a {
    font-size: 16px;
    height: 70px;
    width: 357px;
  }
}

.sec06 .btn_list li a.download:before {
  background: url(../img/ico_download_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 18px;
  margin-right: 19px;
  width: 19px;
}

.sec06 .btn_list li a.contact:before {
  background: url(../img/ico_contact_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 18px;
  margin-right: 19px;
  width: 27px;
}

.sec06 .btn_list li a.tel {
  background-color: #FFF;
  border-color: #000;
  color: #000;
  flex-direction: column;
  font-size: 10px;
  font-weight: normal;
  pointer-events: none;
}

@media (max-width: 768px) {
  .sec06 .btn_list li a.tel {
    pointer-events: auto;
    text-align: center;
  }
}

.sec06 .btn_list li a.tel .inria {
  font-size: 30px;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .sec06 .btn_list li a.tel .inria {
    font-size: 20px;
  }
}

.sec06 .btn_list li a.tel .inria:before {
  content: url(../img/ico_tel_b.svg);
  margin-right: 20px;
}

@media (max-width: 768px) {
  .sec06 .btn_list li a.tel .inria:before {
    margin-right: 5px;
  }
}

.sec06 .btn_list li a:hover {
  background-color: #FFF;
  color: #083F8E;
}

.sec06 .btn_list li a:hover.download:before {
  background: url(../img/ico_download_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.sec06 .btn_list li a:hover.contact:before {
  background: url(../img/ico_contact_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.sec07 {
  padding: 100px 0 40px;
}

@media (max-width: 768px) {
  .sec07 {
    padding: 50px 0 20px;
  }
}

.sec07 .lp_box .txt_01 {
  font-size: 33px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .sec07 .lp_box .txt_01 {
    font-size: 20px;
  }
}

.sec07 .lp_box .list {
  display: flex;
  justify-content: space-between;
  padding: 50px 0 120px;
}

@media (max-width: 768px) {
  .sec07 .lp_box .list {
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0 60px;
  }
}

.sec07 .lp_box .list li a {
  align-items: center;
  border: 1px solid #D8D8D8;
  border-radius: 10px;
  display: flex;
  height: 240px;
  justify-content: center;
  width: 549px;
}

@media (max-width: 768px) {
  .sec07 .lp_box .list li a {
    height: auto;
    width: calc(100% - 2px);
  }
}

.sec07 .lp_box .list li a img {
  display: block;
  height: auto;
}

.sec07 .btn_list {
  display: flex;
  gap: 27px;
  margin-bottom: 60px;
  justify-content: center;
}

@media (max-width: 768px) {
  .sec07 .btn_list {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
  }
}

.sec07 .btn_list li a {
  align-items: center;
  background-color: #083F8E;
  border: 1px solid #083F8E;
  border-radius: 100px;
  color: #FFF;
  display: flex;
  font-size: 20px;
  font-weight: bold;
  height: 131px;
  justify-content: center;
  opacity: 1;
  transition: 0.3s;
  width: 357px;
}

@media (max-width: 768px) {
  .sec07 .btn_list li a {
    font-size: 16px;
    height: 70px;
    width: 357px;
  }
}

.sec07 .btn_list li a.download:before {
  background: url(../img/ico_download_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 18px;
  margin-right: 19px;
  width: 19px;
}

.sec07 .btn_list li a.contact:before {
  background: url(../img/ico_contact_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 18px;
  margin-right: 19px;
  width: 27px;
}

.sec07 .btn_list li a.tel {
  background-color: #FFF;
  border-color: #000;
  color: #000;
  flex-direction: column;
  font-size: 10px;
  font-weight: normal;
  pointer-events: none;
}

@media (max-width: 768px) {
  .sec07 .btn_list li a.tel {
    pointer-events: auto;
    text-align: center;
  }
}

.sec07 .btn_list li a.tel .inria {
  font-size: 30px;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .sec07 .btn_list li a.tel .inria {
    font-size: 20px;
  }
}

.sec07 .btn_list li a.tel .inria:before {
  content: url(../img/ico_tel_b.svg);
  margin-right: 20px;
}

@media (max-width: 768px) {
  .sec07 .btn_list li a.tel .inria:before {
    margin-right: 5px;
  }
}

.sec07 .btn_list li a:hover {
  background-color: #FFF;
  color: #083F8E;
}

.sec07 .btn_list li a:hover.download:before {
  background: url(../img/ico_download_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.sec07 .btn_list li a:hover.contact:before {
  background: url(../img/ico_contact_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.sec07 .box {
  align-items: flex-end;
  display: flex;
}

@media (max-width: 768px) {
  .sec07 .box {
    align-items: center;
    flex-direction: column;
  }
}

.sec07 .box_img {
  display: block;
  height: 50px;
  margin-right: 30px;
  width: 170px;
}

@media (max-width: 768px) {
  .sec07 .box_img {
    height: 36px;
    width: 115px;
  }
}

.sec07 .box_ttl {
  color: #000;
  font-size: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .sec07 .box_ttl {
    font-size: 14px;
    padding-top: 12px;
  }
}

.sec07 .box_txt {
  font-size: 16px;
  line-height: 2.2;
}

@media (max-width: 768px) {
  .sec07 .box_txt {
    font-size: 14px;
    line-height: 1.7;
  }
}

.sec07 .txt02 {
  margin-top: 100px;
  text-align: center;
}

@media (max-width: 768px) {
  .sec07 .txt02 {
    font-size: 14px;
    margin-top: 50px;
  }
}

header .header_cont {
  background-color: #FFF;
  display: flex;
  height: 67px;
  margin-top: -67px;
  min-width: 1330px;
  position: fixed;
  width: 100%;
  z-index: 100;
}

@media (max-width: 768px) {
  header .header_cont {
    height: 52px;
    margin-top: -52px;
    min-width: 100%;
  }
}

header .header_cont .header_logo {
  display: flex;
  gap: 18px;
  margin: 10px 0;
  padding-left: 17px;
}

@media (max-width: 768px) {
  header .header_cont .header_logo {
    height: 52px;
    margin: 8px 0 0;
    transform: scale(.7);
    transform-origin: 0 0;
    z-index: 100;
  }
}

header .header_cont .header_logo a {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
}

header .header_cont .header_logo .logo_side {
  border-left: 1px solid #707070;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 18px;
}

header .header_cont .header_logo .logo_side a {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

header .header_cont .header_logo .logo_side_txt {
  font-size: 10px;
  font-weight: 500;
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  header .header_cont .header_logo .logo_side_txt {
    margin-top: 1px;
    white-space: nowrap;
  }
}

header .header_cont .header_logo .logo_side img {
  min-width: 181px;
}

@media (max-width: 768px) {
  header .header_cont .header_toggle {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: auto;
    padding: 11px;
    transition: 0.5s;
  }

  header .header_cont .header_toggle span {
    background: #000;
    content: "";
    display: flex;
    height: 3px;
    transition: 0.5s;
    width: 34.4px;
  }

  header .header_cont .header_toggle.show {
    margin-top: 20px;
  }

  header .header_cont .header_toggle.show span {
    margin-top: -12px;
    transform: translateY(6px) rotate(-45deg);
    transition: 0.5s;
  }

  header .header_cont .header_toggle.show span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  header .header_cont .header_toggle.show span:last-child {
    margin: 0;
    opacity: 0;
    transform: none;
  }
}

header .header_cont .header_nav {
  align-items: center;
  display: flex;
  gap: 3em;
  margin-left: auto;
  margin-right: 15px;
}

@media (max-width: 768px) {
  header .header_cont .header_nav {
    background-color: white;
    flex-direction: column;
    gap: 0;
    height: 100vh;
    margin-top: 52px;
    padding: 0 18px;
    padding-top: 30px;
    position: fixed;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    visibility: hidden;
    width: calc(100% - 36px);
    z-index: 1;
  }

  header .header_cont .header_nav.show {
    transform: translateX(0);
    transition: all 0.5s ease-in-out;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  header .header_cont .header_nav li {
    align-items: center;
    border-top: 1px solid #707070;
    display: flex;
    width: 100%;
  }
}

header .header_cont .header_nav li .pagelink {
  font-size: 14px;
  font-weight: 500;
  opacity: 1;
  transition: 0.3s;
}

@media (max-width: 768px) {
  header .header_cont .header_nav li .pagelink {
    padding: 1em 0;
    width: 100%;
  }
}

header .header_cont .header_nav li .pagelink:hover {
  text-decoration: underline;
}

header .header_cont .header_nav li .header_btn {
  align-items: center;
  background-color: #F4B200;
  border: 1px solid #F4B200;
  border-radius: 100px;
  color: #FFF;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  height: 40px;
  justify-content: center;
  opacity: 1;
  position: relative;
  transition: 0.3s;
  width: 174px;
}

@media (max-width: 768px) {
  header .header_cont .header_nav li .header_btn {
    font-size: 16px;
    height: 42px;
    margin-top: 30px;
    width: 100%;
  }
}

header .header_cont .header_nav li .header_btn:before {
  background: url(../img/ico_contact_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 7px;
  margin-right: 10px;
  width: 10px;
}

@media (max-width: 768px) {
  header .header_cont .header_nav li .header_btn:before {
    margin-right: 10px;
  }
}

header .header_cont .header_nav li .header_btn:hover {
  background-color: #FFF;
  color: #F4B200;
}

header .header_cont .header_nav li .header_btn:hover:before {
  background: url(../img/ico_contact_o.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 768px) {
  footer .footer_top {
    flex-direction: column;
    padding: 20px 0 0;
  }
}

footer .footer_top .footer_logo {
  display: flex;
  gap: 18px;
  padding-left: 17px;
}

@media (max-width: 768px) {
  footer .footer_top .footer_logo {
    justify-content: center;
    padding: 0;
    transform: scale(.7);
  }
}

footer .footer_top .footer_logo a {
  align-items: center;
  display: flex;
}

@media (max-width: 768px) {
  footer .footer_top .footer_logo a {
    flex-shrink: 0;
  }
}

footer .footer_top .footer_logo .ttl {
  align-items: flex-start;
  border-left: 1px solid #707070;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  font-weight: 500;
  gap: 2px;
  padding-left: 19px;
}

footer .footer_top .footer_logo .ttl .inria {
  font-size: 22px;
  letter-spacing: 1px;
  white-space: nowrap;
}

footer .footer_top .footer_list {
  align-items: center;
  display: flex;
  gap: 3em;
  margin-left: auto;
}

@media (max-width: 768px) {
  footer .footer_top .footer_list {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin: 0;
    margin-left: 18px;
    padding: 1em 0;
  }
}

footer {
  background-color: #F7F7F7;
}

footer .footer_top {
  display: flex;
  padding: 38px 0 30px;
  text-align: left;
  flex-wrap:wrap;
  justify-content: flex-start;
}
footer .footer_ul{
  text-align: left;
  padding-left: 15px;
}
footer .footer_ul,
footer .footer_ul li,
footer .footer_ul a {
  font-size: 14px;
  font-weight: 500;
}
footer .footer_ul li{
  margin-bottom: 5px;
}
footer .footer_ul li.f_u_title{
  margin-bottom: 20px;
  color: #000000bb;
}
footer .links {
	overflow: hidden;
	font-size: 0.9em;
  color: #083F8E;
	text-align: left;
  display: flex;
  gap: 20px;
  padding: 30px 0;
  flex-wrap:wrap;
}
footer .footer_ul a:hover {
  text-decoration: underline;
}

footer .footer_top .footer_list li {
  display: flex;
  position: relative;
}

footer .footer_top .footer_list li:before {
  background-color: #083F8E;
  border: 1px solid #083F8E;
  border-radius: 10px;
  content: "";
  height: 6px;
  left: -0.8em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
}

footer .footer_top .footer_list li a {
  font-size: 14px;
  font-weight: 500;
  opacity: 1;
  transition: 0.3s;
}

footer .footer_top .footer_list li a:hover {
  text-decoration: underline;
}

footer .copyright {
  display: block;
  font-size: 10px;
  padding-top: 50px;
  padding-bottom: 5px;
  text-align: center;
  width: 100%;
}

/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
* {
  box-sizing: border-box;
}

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*::before,
*::after {
  box-sizing: border-box;
}

/* Preferred box-sizing value */
/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-block-size: 100%;
  max-inline-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/*# sourceMappingURL=style.css.map */