@charset "UTF-8";

/* --------------------
  reset
-------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.7;
  color: #111;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* common */
body {
    text-align: center;
    color: #fff;
    font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif;
}

.font-serif {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
}

.sp_none {
    display: none;
}




/* header */
.header__logo {
  width: 20%;
  min-width: 240px;
  padding: 20px 20px 24px;
}

/* fv */
.fv {
    background-color: #0053A6;
}
.fv__imgback {
    background-color: #fff;
}
.fv__img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.fv__lead {
  background: linear-gradient(90deg, #14126F 0%, #0041B4 50%, #14126F 100%);
  color: #FFFAB2;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 10px 20px;
}
.fv__back {
  width: 100%;
  padding: 24px 20px 32px;
  background-image: url("../img/fv_back.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}
.fv__h1 {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  padding-bottom: 20px;
}
.fv__sub_copy {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.fv__inner {
  padding: 0 20px 60px;
}
.fv__text {
  font-size: 22px;
  line-height: 1.5; 
  padding: 20px 0;
  font-weight: 700;
}
.fv__list {
    margin: 0 auto;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap:20px
}
.fv__text2 {
  font-weight: 700;
  padding-top: 30px;
  font-size: 18px;
}


/* solution */

.solution{
    background-color: #00104E;
}
.solution__inner {
    padding: 60px 20px;
}
.solution__contents {
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px 50px;
    max-width: 1306px;
    margin: 0 auto;
}
.solution__h2 {
  padding-bottom: 50px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
.solution__list{
  width: 100%;
    max-width: 360px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap:16px
}
.solution__title {
    color :#00104E;
    font-size: 24px;
    font-weight: 700;
}

.solution__text {
    color: #B10004;
    font-weight: 700;
    font-size: 20px;
    strong {
        font-size: 26px;
        text-decoration:underline;
    }
}

/* comparison */

.comparison {
    background-color: #0053A6;
    padding: 50px 0 80px;
}
.comparison__h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px 20px;
  font-size: 20px;
  text-align: center;
}
.comparison__h2::before,
.comparison__h2::after {
  content: "";
  width: 24px;
  height: 1px;
  background-color: #fff;
}
.comparison__inner {
    padding: 20px;
}
.scroll-note {
  font-size: 12px;
  padding:10px 20px;
  text-align: left;
}
.table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-left: 20px;
  padding-bottom: 15px;
}

.table-scroll img {
  display: block;
  max-width: none;
  width: 760px;
}

/* cta */
.cta__text1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  margin: 50px 20px 10px;
}
.cta__text2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 20px;
}
.cta__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFE945;
  margin: 30px auto 0px;
  height: 78px;
  border-radius: 9999px;
  font-weight: 700;
  max-width: 320px;
  font-size: 20px;
  color: #00104E;
  transition: color 0.3s ease, background-color 0.5s ease;
}
.cta__btn:hover {
  background-color: #FFF6B5;
}

/* footer */
.footer {
  color: #000;
}
.footer__inner {
  padding: 50px 20px 20px;
}
.footer__logo{
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.footer__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: #0053A6 solid 1px;
  height: 56px;
  border-radius: 9999px;
  font-weight: 700;
  max-width: 300px;
  margin: 15px auto 30px;
  color:#0053A6;
  background-color: #fff;
  transition: color 0.3s ease, background-color 0.5s ease;
}
.footer__btn:hover {
  background-color: #DCEAF8;
}
.footer__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 10px;
  small {
    font-size: 14px;
  }
}
.footer__tel {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.footer__ad{
  padding-top: 10px;
}
.copyright {
  background-color: #CFDBE8;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 8px 20px;
}




/* pc */

@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
  .sp_none {
    display: block;
  }
  .sp_br {
    display: none;
  }

  .header__logo {
    padding: 20px 20px 5px;
  }

  /* fv */

.fv__lead {
  font-size: 36px;
  letter-spacing: 0.05em;
  padding: 10px 20px;
}
.fv__back {
  padding: 40px 20px 25px;
  background-image: url("../img/fv_back_pc.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}

.fv__sub_copy {
  padding-top: 30px;
}
.fv__list{
    max-width: 1200px;
    margin: 20px auto 10px;
    flex-direction: row;
    gap:20px
}
.fv__text {
  font-size: 36px;
  margin: 60px auto 20px;
}
.fv__text2{
  font-size: 24px;
}
.fv__inner {
  padding: 0 20px 120px;
}


/* solution */
.solution__inner {
  padding: 120px 20px 160px;
}
.solution__h2 {
  padding-bottom: 0;
}
.solution__list{
    max-width: 1200px;
    margin: 20px auto;
    flex-direction: row;
    gap:20px
}
.solution__title {
    color :#00104E;
    font-size: 30px;
    font-weight: 700;
}

.solution__text {
    color: #B10004;
    font-weight: 700;
    font-size: 28px;
    strong {
        font-size: 40px;
        text-decoration:underline;
    }
  }

  /* comparison */
.comparison {
    padding: 100px 0 120px;
}
.comparison__h2 {
  font-size: 30px;
  padding-bottom: 50px;
}
.comparison__h2::before,
.comparison__h2::after {
  width: 60px;
}
.comparison__inner {
    padding: 20px;
}

  .table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .table-scroll img {
    max-width: none;
    width: 1200px;
    margin: 0 auto;
  }

  .cta__text1 {
  font-size: 34px;
  padding-top: 80px;
}
.cta__text2 {
  font-size: 24px;
  
}
.cta__btn {
  margin: 50px auto 20px;
  height: 110px;
  border-radius: 9999px;
  max-width: 540px;
  font-size: 24px;
  transition: color 0.3s ease, background-color 0.5s ease;
}
  

  /* footer */
  .footer__logo{
  max-width: 350px;
  margin: 0 auto;
}
  .footer__inner {
  max-width: 1200px;
  margin: 0 auto 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap:40px;
}
}