<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&amp;display=swap");

/*----------------------------------------
共通
----------------------------------------*/

/*for PC*/
@media screen and (min-width: 769px) {
  html {
    scroll-behavior: smooth;
    font-size: 62.5%; /*1rem=10px*/
  }

  body {
    font-size: 1.6rem; /*指定がない場合16pxに調整*/
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #001e45;
  }

  img {
    vertical-align: bottom;
  }

  .sp-view {
    display: none !important;
  }

  a:hover {
    opacity: 0.7;
  }

  .gap-60 {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .gap-40 {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .gap-20 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

/*for SP*/
@media screen and (max-width: 768px) {
  html {
    scroll-behavior: smooth;
    font-size: 62.5%; /*1rem=10px*/
  }

  body {
    font-size: 1.6rem; /*指定がない場合16pxに調整*/
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #001e45;
  }

  img {
    width: 100%;
    vertical-align: bottom;
  }

  .pc-view {
    display: none !important;
  }

  .gap-60 {
    display: flex;
    flex-direction: column;
    gap: calc(30 * (100vw / 375));
  }

  .gap-40 {
    display: flex;
    flex-direction: column;
    gap: calc(25 * (100vw / 375));
  }

  .gap-20 {
    display: flex;
    flex-direction: column;
    gap: calc(20 * (100vw / 375));
  }
}

/*----------------------------------------
h1
----------------------------------------*/

h1 {
  width: 100%;
  min-width: 1200px;
  height: 600px;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  margin-bottom: -120px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  h1 {
    width: calc(375 * (100vw / 375));
    min-width: calc(375 * (100vw / 375));
    height: calc(300 * (100vw / 375));
    margin-bottom: calc(-80 * (100vw / 375));
  }

  h1 img {
    width: calc(375 * (100vw / 375));
    height: calc(300 * (100vw / 375));
  }
}

/*----------------------------------------
#page-container 共通
----------------------------------------*/

#page-container {
  width: 100%;
  height: auto;
  background-color: #fff;
  background-image: url("../img/bg_pc.png");
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  #page-container {
    overflow: hidden;
    background-image: url("../img/bg_sp.png");
    gap: calc(80 * (100vw / 375));
  }
}

/*----------------------------------------
.compare
----------------------------------------*/

.compare {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
  padding: 60px 0;
  margin-bottom: -40px;
}

.compare h3 {
  color: #001e45;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}

.compare picture {
  width: 1000px;
  margin: 0 auto;
}

.compare p {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .compare {
    padding: calc(40 * (100vw / 375)) 0;
    margin-bottom: calc(-40 * (100vw / 375));
  }

  .compare h3 {
    font-size: 2.4rem;
  }

  .compare picture {
    width: calc(335 * (100vw / 375));
  }

  .compare p {
    width: calc(335 * (100vw / 375));
    text-align: left;
    font-size: 1.4rem;
  }
}

/*----------------------------------------
.anchor
----------------------------------------*/
.anchor {
  width: 1000px;
  margin: -60px auto;
}

.anchor h3 {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  color: #001e45;
  margin-top: 40px;
}

.anchor ol {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.anchor ol li {
  width: 235px;
  height: 235px;
  background-color: #fff;
  text-align: center;
  border-top: 5px solid #001e45;
  /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
}

.anchor ol li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #444;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  color: #001e45;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .anchor {
    width: 100%;
    margin: 0 auto calc(-20 * (100vw / 375));
  }

  .anchor h3 {
    font-size: 2.4rem;
    margin-top: 0;
  }

  .anchor ol {
    gap: calc(20 * (100vw / 375));
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }

  .anchor ol li {
    width: calc(335 * (100vw / 375));
    height: calc(80 * (100vw / 375));
    border-top: calc(5 * (100vw / 375)) solid #001e45;
    margin: 0 auto;
  }

  .anchor ol li a {
    gap: calc(10 * (100vw / 375));
    font-size: 1.6rem;
  }

  .anchor ol li .icon {
    width: calc(12 * (100vw / 375));
    height: calc(12 * (100vw / 375));
  }
}

/*----------------------------------------
.block 共通
----------------------------------------*/
.block {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
  margin: 100px auto 0;
}

.block h3.question {
  position: relative;
  display: block;
  padding: 60px 0;
  width: 1000px;
  height: auto;
  margin: -120px auto 25px;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  color: #001e45;
  background: #ffffff;
  border-top: 10px solid #001e45;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.block h3.question:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  border: 15px solid transparent;
  border-top: 25px solid #ffffff;
}

.block h3.question span {
  display: block;
  margin: 0;
  padding: 0;
}

.block .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 60px 0 80px;
  text-align: center;
}

.block .inner .answer {
  font-size: 4rem;
  font-weight: 500;
}

.block .inner .answer .marker {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  background-image: linear-gradient(to right, transparent 0%, transparent 50%, #004aab 50%, #001e45 100%);
  background-repeat: repeat-x;
  transition: all 1s ease;
  background-size: 200% 100%;
  background-position: 0 100%;
}

.block .inner .answer .marker.view {
  background-position: -100% 100%;
}

.block .inner .answer em {
  font-size: 1.6rem;
}

.block .inner .text {
  font-size: 1.8rem;
}

.block .inner .note {
  font-size: 1.6rem;
}

.block .inner .text em {
  font-weight: 600;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .block {
    margin: calc(60 * (100vw / 375)) auto calc(-30 * (100vw / 375));
  }

  .block h3.question {
    padding: calc(30 * (100vw / 375)) 0;
    width: calc(335 * (100vw / 375));
    margin: calc(-60 * (100vw / 375)) auto calc(20 * (100vw / 375));
    font-size: 2rem;
    border-top: calc(10 * (100vw / 375)) solid #001e45;
  }

  .block h3.question:before {
    margin-left: calc(-25 * (100vw / 375));
    border: calc(15 * (100vw / 375)) solid transparent;
    border-top: calc(25 * (100vw / 375)) solid #ffffff;
  }

  .block .inner {
    width: calc(335 * (100vw / 375));
    margin: 0 auto;
    padding: calc(20 * (100vw / 375)) 0 calc(40 * (100vw / 375));
  }

  .block .inner .answer {
    font-size: 2rem;
  }

  .block .inner .answer .marker {
    margin-top: calc(10 * (100vw / 375));
  }

  .block .inner .answer em {
    font-size: 1.4rem;
  }

  .block .inner .text {
    font-size: 1.6rem;
    text-align: left;
  }

  .block .inner .note {
    font-size: 1.4rem;
    text-align: left;
  }
}

/*----------------------------------------
.morebtn
----------------------------------------*/

.btn .morebtn {
  /* position: relative; */
  width: 500px;
  height: 80px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #001e45;
  font-size: 2rem;
  font-weight: 600;
}

.btn .morebtn span {
  width: 100%;
  text-align: center;
}

.btn .morebtn .icon {
  width: 24px;
  height: 24px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .btn .morebtn {
    width: calc(335 * (100vw / 375));
    height: calc(60 * (100vw / 375));
    padding: 0 calc(20 * (100vw / 375));
    border-radius: calc(8 * (100vw / 375));
    gap: calc(10 * (100vw / 375));
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .btn .morebtn .icon {
    width: calc(20 * (100vw / 375));
    height: calc(20 * (100vw / 375));
  }
}

/*----------------------------------------
.contents
----------------------------------------*/
.contents {
  width: 1000px;
  margin: -40px auto 120px;
}

.contents h3 {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  color: #001e45;
}

.contents .inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.contents .inner a {
  width: 240px;
  text-decoration: none;
  color: #444;
  background-color: #fff;
  /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
}

.contents .inner a picture img {
  width: 240px;
}

.contents .inner a p {
  padding: 1.6rem;
}

.arrowlink {
  position: relative;
  text-indent: 1.5em;
  color: #001e45;
  font-weight: 600;
  text-decoration: none;
}

.arrowlink::before {
  position: absolute;
  content: "＞";
  color: #eb5505;
  left: -3em;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .contents {
    width: 100%;
    margin: 0 auto calc(60 * (100vw / 375));
  }

  .contents h3 {
    font-size: 2.4rem;
  }

  .contents .inner {
    display: flex;
    flex-direction: column;
    gap: calc(10 * (100vw / 375));
  }

  .contents .inner a {
    width: calc(240 * (100vw / 375));
    margin: 0 auto;
  }

  .contents .inner a picture img {
    width: calc(240 * (100vw / 375));
  }
}

/*----------------------------------------
ctafixed
----------------------------------------*/
.ctafixed {
  z-index: 9999;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: calc(90 * (100vw / 375));
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.5s;
}

.ctafixed.view {
  opacity: 1;
}

.ctafixed ol {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: calc(5 * (100vw / 375));
}

.ctafixed ol li {
  width: calc(115 * (100vw / 375));
  display: flex;
  flex-direction: column;
  gap: calc(5 * (100vw / 375));
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

/*----------------------------------------
fadein
----------------------------------------*/
.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
}

.fadein.view {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------------------
block04
----------------------------------------*/
.block04 h4 {
  font-size: 3.6rem;
}

.block04 h5 {
  font-size: 2rem;
}

.block04 .ta-left {
  text-align: left;
}

.block04 .note--frame {
  border: 1px solid #ccc;
  padding: 20px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .block04 h4 {
    font-size: 2.4rem;
  }

  .block04 h5 {
    font-size: 1.8rem;
  }
}

/*----------------------------------------
leadtext
----------------------------------------*/

.compare .leadtext {
  text-align: center;
}

.compare .leadtext .attn {
  font-size: 2rem;
  font-weight: bold;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .compare .leadtext {
    padding: 0 calc(20 * (100vw / 375));
    text-align: left;
  }
  .compare .leadtext .attn {
    font-size: 1.8rem;
    font-weight: bold;
  }
}

/*----------------------------------------
アンカーずれ防止
----------------------------------------*/
/* アンカーリンクの対象になる要素に適用 */
@media screen and (min-width: 769px) {
  #anchor00,
  #anchor01,
  #anchor02,
  #anchor03,
  #anchor04 {
    scroll-margin-top: 150px;
  }
}
</pre></body></html>