@charset "UTF-8";
/*$minFont　最小のフォントサイズを引数として受け取る（単位なし）*/
/* ================================================= 
 header setting
================================================= */
header {
  width: 100%;
  padding: 30px 0 25px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: white;
}
header #header-inner {
  max-width: 1200px;
  width: 94%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header #header-inner .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
header #header-inner .header-left #h_logo {
  line-height: 1;
  margin: 0;
}
header #header-inner .header-left #h_logo a {
  display: block;
  max-width: 435px;
}
@media (max-width: 1200px) {
  header #header-inner .header-left #h_logo a {
    max-width: 350px;
  }
}
@media (max-width: 550px) {
  header #header-inner .header-left #h_logo a {
    max-width: 300px;
  }
}
header #header-inner .header-left #h_logo a img {
  width: 100%;
  height: auto;
}
header #header-inner #header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}
header #header-inner #header-nav ul li {
  position: relative;
}
header #header-inner #header-nav ul li:after {
  content: "";
  position: absolute;
  right: -7.5px;
  width: 1px;
  height: 20px;
  background: #333;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header #header-inner #header-nav ul li:last-child:after {
  display: none;
}
header #header-inner #header-nav ul li a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 1200px) {
  header #header-inner #header-nav ul li a {
    font-size: 14px;
  }
}
header #header-inner #header-nav ul li a:hover {
  color: #e60012;
}
header #header-inner .hamburger {
  display: none;
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
header #header-inner .hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #e60012;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header #header-inner .hamburger span:nth-child(1) {
  top: 0px;
}
header #header-inner .hamburger span:nth-child(2) {
  top: 8px;
}
header #header-inner .hamburger span:nth-child(3) {
  top: 16px;
}
header #header-inner .hamburger.active span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
header #header-inner .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header #header-inner .hamburger.active span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media screen and (max-width: 819px) {
  header {
    padding: 12px 0;
  }
  header #header-inner .header-left {
    gap: 10px;
  }
  header #header-inner .header-left .header-title {
    font-size: 14px;
  }
  header #header-inner #header-nav {
    position: fixed;
    top: 54px;
    left: 0;
    width: 100%;
    background: white;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
  }
  header #header-inner #header-nav.active {
    max-height: 400px;
  }
  header #header-inner #header-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  header #header-inner #header-nav ul li {
    border-bottom: 1px solid #eee;
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  header #header-inner #header-nav ul li:after {
    display: none;
  }
  header #header-inner #header-nav ul li a {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
  }
  header #header-inner #header-nav.active ul li {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  header #header-inner #header-nav.active ul li:nth-child(1) {
    -webkit-transition-delay: 0.05s;
            transition-delay: 0.05s;
  }
  header #header-inner #header-nav.active ul li:nth-child(2) {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  header #header-inner #header-nav.active ul li:nth-child(3) {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  header #header-inner #header-nav.active ul li:nth-child(4) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  header #header-inner #header-nav.active ul li:nth-child(5) {
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
  header #header-inner .hamburger {
    display: block;
  }
}

/* Body class for menu open state */
body.menu-open {
  overflow: hidden;
}

/* ================================================= 
 hero setting
================================================= */
#hero-wrap .hero-inner {
  padding: 37px 0;
  text-align: center;
  background-image: url(../../assets/images/pc_kv_bg.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5f3;
}
@media (max-width: 1440px) {
  #hero-wrap .hero-inner {
    background-size: cover;
  }
}
@media (max-width: 768px) {
  #hero-wrap .hero-inner {
    background-image: url(../../assets/images/sp_kv_bg.webp);
    padding: 26px 0;
  }
}
#hero-wrap .hero-inner img {
  max-width: 652px;
  height: auto;
}
@media (max-width: 768px) {
  #hero-wrap .hero-inner img {
    max-width: 100%;
    width: calc(100% - 40px);
    height: auto;
  }
}
#hero-wrap .hero-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -50px;
  margin-bottom: 40px;
  gap: 16px;
}
@media (max-width: 768px) {
  #hero-wrap .hero-bottom {
    margin-top: 0px;
  }
}
@media (max-width: 550px) {
  #hero-wrap .hero-bottom {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  #hero-wrap .hero-bottom img {
    max-width: 100px;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 550px) {
  #hero-wrap .hero-bottom img {
    max-width: 80px;
    width: 100%;
    height: auto;
  }
}
#hero-wrap .hero-bottom > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#hero-wrap .hero-bottom > div span {
  font-size: 100px;
  font-weight: bold;
  font-family: "Lato";
}
@media (max-width: 768px) {
  #hero-wrap .hero-bottom > div span {
    font-size: 50px;
  }
}
@media (max-width: 550px) {
  #hero-wrap .hero-bottom > div span {
    font-size: 42px;
  }
}
#hero-wrap .hero-bottom > div strong {
  line-height: 1.2;
  font-weight: bold;
  font-family: "Lato";
  color: #db0717;
  font-size: 220px;
}
@media (max-width: 768px) {
  #hero-wrap .hero-bottom > div strong {
    font-size: 110px;
  }
}
@media (max-width: 550px) {
  #hero-wrap .hero-bottom > div strong {
    font-size: 72px;
  }
}
#hero-wrap .hero-bottom > div strong span {
  font-size: 100px;
}
@media (max-width: 768px) {
  #hero-wrap .hero-bottom > div strong span {
    font-size: 50px;
  }
}
@media (max-width: 550px) {
  #hero-wrap .hero-bottom > div strong span {
    font-size: 42px;
  }
}
#hero-wrap .hero-bottom > div small {
  font-size: 25px;
  margin-top: -30px;
  font-weight: bold;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  #hero-wrap .hero-bottom > div small {
    font-size: 18px;
    line-height: 1;
    margin-top: -7px;
  }
}
@media (max-width: 550px) {
  #hero-wrap .hero-bottom > div small {
    font-size: 16px;
    line-height: 1;
  }
}
#hero-wrap p.hero-bottom__text {
  text-align: center;
  font-size: 25px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #hero-wrap p.hero-bottom__text {
    font-size: 16px;
  }
}
#hero-wrap p.hero-bottom__text:before {
  content: "";
  position: absolute;
  background: url(../images/sakura-left.png);
  background-repeat: no-repeat;
  display: block;
  width: 55px;
  height: 148px;
  left: -50px;
  top: -50%;
  -webkit-transform: translate(0px, -10%);
          transform: translate(0px, -10%);
}
@media (max-width: 768px) {
  #hero-wrap p.hero-bottom__text:before {
    height: 74px;
    width: 27.5px;
    background-size: contain;
    top: 0px;
    -webkit-transform: translate(0px, -10%) rotate(-15deg);
            transform: translate(0px, -10%) rotate(-15deg);
  }
}
@media (max-width: 550px) {
  #hero-wrap p.hero-bottom__text:before {
    top: 15px;
    left: -10px;
  }
}
#hero-wrap p.hero-bottom__text:after {
  content: "";
  position: absolute;
  background: url(../images/sakura-right.png);
  background-repeat: no-repeat;
  display: block;
  width: 55px;
  height: 148px;
  right: -50px;
  top: -50%;
  -webkit-transform: translate(0px, -10%);
          transform: translate(0px, -10%);
}
@media (max-width: 768px) {
  #hero-wrap p.hero-bottom__text:after {
    height: 74px;
    width: 27.5px;
    background-size: contain;
    top: 0px;
    -webkit-transform: translate(0px, -10%) rotate(15deg);
            transform: translate(0px, -10%) rotate(15deg);
  }
}
@media (max-width: 550px) {
  #hero-wrap p.hero-bottom__text:after {
    top: 15px;
    right: -10px;
  }
}

/* ================================================= 
 contents setting
================================================= */
.cta ._type02 {
  margin-bottom: 2em;
}
.cta .c-title-md {
  margin-top: 2em;
}
.cta .c-img-wrap {
  margin: 1.5em 0;
}

#intoro .bd-box {
  margin-top: -250px;
  border: 5px solid #BA9F26;
  border-radius: 20px;
  padding: 30px 20px;
  background-color: #fefff0;
  text-align: center;
}
#intoro .bd-box .c-title-ld {
  font-weight: 500;
  margin-bottom: 0.25em;
}
#intoro .bd-box .c-title-md {
  margin-top: 0.5em;
}
@media screen and (max-width: 819px) {
  #intoro .bd-box {
    margin-top: 0;
  }
  #intoro .bd-box p.c-red {
    margin-top: 0.5em;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

#opening {
  padding-bottom: 70px;
}
#opening .title-blc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #de0000;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
}
#opening .title-blc img {
  max-width: 100%;
}
#opening .attention {
  margin: 35px 0;
  border: 5px solid #de0000;
  border-radius: 20px;
  padding: 30px 20px;
  background-color: #fefff0;
}
#opening .attention .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
}
#opening .attention .title img {
  max-width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: block;
  padding: 5px;
}
#opening .attention .title h2 {
  margin-bottom: 0.25em;
}
#opening .attention ul {
  padding-left: 2em;
}
#opening .attention span a:hover {
  color: #ff9199;
}
#opening .inner {
  padding-right: 3%;
}
#opening .inner h2 {
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.25em;
}
#opening .inner .c-title-ld {
  line-height: 1.2;
}
#opening .inner .c-title-ld .c-red {
  font-size: 1.75em;
  margin-right: 5px;
}
#opening .Column--4 {
  margin-top: 2em;
}
@media screen and (max-width: 819px) {
  #opening ._smimg {
    max-width: 140px;
  }
  #opening .inner {
    padding-right: 0;
    text-align: center;
  }
  #opening .inner h2 {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.25em;
  }
  #opening .inner .c-title-ld {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#opening .opening__inner__cont01 {
  text-align: center;
  margin: 50px 0 40px;
}
@media (max-width: 768px) {
  #opening .opening__inner__cont01 {
    margin: 30px 0 30px;
  }
}
#opening .opening__inner__cont01 h3 {
  font-size: 25px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  #opening .opening__inner__cont01 h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 27px;
  }
}
#opening .opening__inner__cont01 p {
  font-size: 16px;
}
@media (max-width: 768px) {
  #opening .opening__inner__cont01 p {
    padding: 0 10px;
  }
}
#opening .opening__step {
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  margin-bottom: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 842px;
  margin: 0 auto 70px;
}
@media (max-width: 980px) {
  #opening .opening__step {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 35px;
    text-align: center;
  }
}
#opening .opening__step .grid-arw {
  position: relative;
  display: block;
}
@media (max-width: 980px) {
  #opening .opening__step .grid-arw {
    margin-top: -20px;
  }
}
#opening .opening__step .grid-arw:before {
  content: "";
  background-color: #75a0eb;
  height: 30px;
  width: 15px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 130px;
}
@media (max-width: 980px) {
  #opening .opening__step .grid-arw:before {
    height: 30px;
    width: 80px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    top: 10px;
  }
}
#opening .opening__step > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fefff0;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: #2b559b 3px solid;
}
#opening .opening__step > div .md_flex {
  display: contents;
}
@media (max-width: 768px) {
  #opening .opening__step > div:nth-child(1) .opening__step__item__image {
    margin: 0;
    max-width: 100px;
  }
  #opening .opening__step > div:nth-child(1) .opening__step__item__image img {
    width: 100%;
    height: auto;
  }
  #opening .opening__step > div:nth-child(5) .opening__step__item__image {
    margin: 0;
    max-width: 113px;
  }
  #opening .opening__step > div:nth-child(5) .opening__step__item__image img {
    width: 100%;
    height: auto;
  }
  #opening .opening__step > div:nth-child(3) .opening__step__item__image {
    margin: 0;
    max-width: 87px;
  }
  #opening .opening__step > div:nth-child(3) .opening__step__item__image img {
    width: 100%;
    height: auto;
  }
  #opening .opening__step > div .md_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 20px);
  }
  #opening .opening__step > div .md_flex .opening__step__item__top {
    text-align: left;
    margin: 0 0 10px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #opening .opening__step > div .md_flex .opening__step__item__top {
    margin-bottom: 0;
  }
}
#opening .opening__step > div:last-child .opening__step__item__image {
  margin-top: auto;
}
#opening .opening__step > div .opening__step__item__top {
  margin: 0 0 5px;
  text-align: center;
  font-size: 16px;
  color: #2b559b;
}
#opening .opening__step > div h4 {
  color: #2b559b;
  font-size: 18px;
  font-weight: bold;
}
#opening .opening__step > div .opening__step__item__image {
  margin-top: 24px;
}
#opening .opening__step > div .c-btn {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  #opening .opening__step > div .c-btn {
    margin-top: 10px;
  }
}
#opening .opening__step > div .c-btn a {
  padding: 1rem 0rem;
  width: 100%;
  display: block;
  font-size: 15px;
  background: #f8ac09;
  -webkit-box-shadow: 0 5px 0 #cd8c00;
          box-shadow: 0 5px 0 #cd8c00;
}
#opening .opening__step > div .c-btn a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
#opening .opening__table .c-box {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 768px) {
  #opening {
    padding-bottom: 60px;
  }
}
#opening .opening__visual {
  background-color: #fcd9d9;
  padding: 47px 0;
}
@media (max-width: 768px) {
  #opening .opening__visual {
    padding: 30px 0;
  }
}
#opening .opening__visual img {
  max-width: 709px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #opening .opening__visual img {
    max-width: 100%;
    width: calc(100% - 40px);
  }
}
#opening .opening__visual__bottom h2 {
  color: #333;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 34px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 820px) {
  #opening .opening__visual__bottom h2 {
    font-size: 20px;
    margin-top: 30px;
  }
}
#opening .opening__visual__bottom h2 strong {
  font-size: 36px;
  line-height: 130%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #ffce09));
  background: linear-gradient(transparent 75%, #ffce09 75%);
  padding: 0 0 0 16px;
}
@media (max-width: 820px) {
  #opening .opening__visual__bottom h2 strong {
    font-size: 26px;
    padding: 0;
  }
}
#opening .opening__visual__bottom h2 strong span {
  color: #de0000;
}

.opening__visual__bottom__contents {
  padding: 0 0 50px;
  margin-top: 50px;
  background: #f2f1e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.opening__visual__bottom__contents h3 {
  margin: 50px 0;
  color: #0a419d;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.1em;
}
@media (max-width: 820px) {
  .opening__visual__bottom__contents h3 {
    margin: 30px 0 24px;
    font-size: 26px;
  }
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table {
  border-radius: 10px;
  background: #fff;
  max-width: 760px;
  width: 100%;
  padding: 37px 31px;
  text-align: center;
}
@media (max-width: 820px) {
  .opening__visual__bottom__contents .opening__visual__bottom__contents__table {
    width: calc(100% - 40px);
    padding: 30px 20px;
  }
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table img {
  display: block;
  margin: 0 auto 30px;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 821px) {
  .opening__visual__bottom__contents .opening__visual__bottom__contents__table .table-wrapper {
    overflow-x: visible;
  }
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table {
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  width: 698px;
  min-width: 698px;
}
@media (min-width: 821px) {
  .opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table {
    margin: 0 auto;
  }
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__cell {
  border: 1px solid #8c9193;
  text-align: center;
  vertical-align: middle;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__cell--empty {
  background-color: transparent;
  width: 180px;
  height: 42px;
  border: none;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__cell--header {
  height: 42px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 1.6;
  color: white;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__cell--header.rate-comparison-table__cell--blue {
  background-color: #0a419d;
  width: 260px;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__cell--header.rate-comparison-table__cell--red {
  background-color: #de0000;
  width: 260px;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__cell--label {
  background-color: #a0a8aa;
  width: 180px;
  height: 42px;
  color: white;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1.6;
  padding: 0 10px;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__cell--data {
  background-color: white;
  height: 42px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1.6;
  color: #333333;
  padding: 0 10px;
  width: 260px;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__cell--data[colspan="2"] {
  width: auto;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__cell--amount {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__cell--amount.rate-comparison-table__cell--blue {
  color: #0a419d;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__cell--amount.rate-comparison-table__cell--red {
  color: #de0000;
}
.opening__visual__bottom__contents .opening__visual__bottom__contents__table .rate-comparison-table__note {
  font-size: 12px;
  letter-spacing: 1.2px;
}

.product-overview {
  max-width: 910px;
  width: 100%;
  margin: 0 auto;
}
.product-overview__header {
  background-color: #de0000;
  color: white;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  padding: 6px 0;
  border-radius: 10px 10px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .product-overview__header {
    font-size: 24px;
    padding: 15px 0;
  }
}
.product-overview__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
}
.product-overview__row--beige {
  background-color: #f2f1e8;
}
.product-overview__label {
  width: 215px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  vertical-align: center;
  background-color: inherit;
}
@media (max-width: 768px) {
  .product-overview__label {
    width: 120px;
    padding: 20px 15px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .product-overview__label {
    width: 115px;
    padding: 15px 0px 15px 15px;
    font-size: 16px;
  }
}
.product-overview__content {
  padding: 15px 25px 15px 30px;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  line-height: 1.8;
  background-color: inherit;
}
@media (max-width: 768px) {
  .product-overview__content {
    padding: 20px 15px 20px 0;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .product-overview__content {
    padding: 15px 10px 15px 0;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}
.product-overview__content div:last-child {
  margin-bottom: 0;
}
.product-overview__list {
  margin: 0;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .product-overview__list {
    padding-left: 15px;
  }
}
.product-overview__list li {
  margin-bottom: 5px;
  line-height: 1.6;
  list-style: disc;
}
.product-overview__list li:last-child {
  margin-bottom: 0;
}
.product-overview__button a {
  background-color: #333333;
  text-align: center;
  border-radius: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 25px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.product-overview__button a i {
  margin-top: -2px;
}
@media (max-width: 768px) {
  .product-overview__button a {
    font-size: 16px;
    padding: 18px;
  }
}
@media (max-width: 480px) {
  .product-overview__button a {
    font-size: 14px;
    padding: 15px;
  }
}
.product-overview__button a:hover {
  opacity: 0.8;
}

#features {
  padding-bottom: 100px;
}
#features .title-blc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #de0000;
  color: white;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0;
}
#features > .tac {
  margin: 40px 0;
  font-size: 24px;
}
@media (max-width: 768px) {
  #features > .tac {
    font-size: 20px;
    margin: 30px 0 20px;
  }
}
#features .features__content1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1100px;
  gap: 40px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  padding: 10px 0 20px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
@media (max-width: 1230px) {
  #features .features__content1 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#features .features__content1::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
#features .features__content1 > div.features__content__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 245px;
          flex: 0 0 245px;
  background-color: #fefff0;
  border: 3px solid #0a419d;
  border-radius: 10px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  scroll-snap-align: start;
}
#features .features__content1 > div.features__content__item h3 {
  text-align: center;
  font-size: 16px;
  margin-top: auto;
}
#features .features__content1 > div.features__content__item h3 strong {
  color: #de0000;
  font-weight: bold;
  font-size: 20px;
  display: block;
}
#features .features__content2 h2 {
  font-size: 25px;
  color: #de0000;
  font-weight: bold;
  text-align: center;
  margin: 30px auto 20px;
}
@media (max-width: 768px) {
  #features .features__content2 h2 {
    margin: 20px auto 15px;
    font-size: 20px;
  }
}
#features .features__content2 img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  display: block;
}
#features .features__content3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  #features .features__content3 {
    gap: 20px;
    width: 100%;
  }
}
@media (max-width: 376px) {
  #features .features__content3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#features .features__content3 .features__content3__item {
  width: 100%;
  max-width: 250px;
}
@media (max-width: 768px) {
  #features .features__content3 .features__content3__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: unset;
    gap: 20px;
  }
  #features .features__content3 .features__content3__item .features__content3__item__inner {
    height: 160px;
    width: 160px;
    padding: 20px;
    min-height: unset !important;
  }
}
@media (max-width: 768px) and (max-width: 376px) {
  #features .features__content3 .features__content3__item .features__content3__item__inner {
    width: 120px;
    height: 120px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  #features .features__content3 .features__content3__item .features__content3__item__inner img {
    width: 72px;
    height: auto;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #features .features__content3 .features__content3__item .t {
    width: calc(100% - 160px - 20px);
  }
}
@media (max-width: 768px) and (max-width: 376px) {
  #features .features__content3 .features__content3__item .t {
    width: calc(100% - 120px - 20px);
  }
}
#features .features__content3 .features__content3__item .features__content3__item__inner {
  background-color: #fefff0;
  border: 3px solid #0a419d;
  border-radius: 10px;
  padding: 0 20px;
  min-height: 170px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#features .features__content3 .features__content3__item h3 {
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #features .features__content3 .features__content3__item h3 {
    font-size: 16px;
  }
}
#features .features__content3 .features__content3__item p {
  letter-spacing: 0.1em;
}
#features .features__content3 .features__content3__item p br {
  display: none;
}
@media (max-width: 768px) {
  #features .features__content3 .features__content3__item p br {
    display: block;
  }
}
@media (max-width: 768px) {
  #features .features__content3 .features__content3__item p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #features {
    padding-bottom: 60px;
  }
}

#flow {
  padding-bottom: 70px;
}
@media (max-width: 768px) {
  #flow {
    padding-bottom: 60px;
  }
}
#flow .title-blc {
  padding: 1rem 0;
  background-color: #de0000;
  color: white;
  text-align: center;
}
#flow .c-title-md {
  margin: 2em auto 1em;
  text-align: center;
  font-weight: 400;
}
#flow .Row {
  position: relative;
  padding-bottom: 2em;
}
@media (max-width: 390px) {
  #flow .Row {
    margin: 0;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#flow .Row .Column--4 {
  max-width: 350px;
}
@media (max-width: 640px) {
  #flow .Row .Column--4 {
    max-width: 250px;
  }
}
@media (max-width: 520px) {
  #flow .Row .Column--4 {
    max-width: 200px;
  }
}
@media (max-width: 390px) {
  #flow .Row .Column--4 {
    max-width: 165px;
    padding: 0;
  }
}
#flow .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  padding: 10px 0 20px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
#flow .grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
@media (max-width: 1048px) {
  #flow .grid {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 30px;
  }
}
#flow .grid > div:not(.grid-arw) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 245px;
          flex: 0 0 245px;
  scroll-snap-align: start;
}
#flow .grid-arw {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
}
#flow .grid-arw:before {
  content: "";
  background-color: #75a0eb;
  height: 30px;
  width: 15px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 95px;
}
@media (max-width: 1048px) {
  #flow .grid-arw {
    display: none;
  }
}
#flow .attention {
  background-color: #feefe6;
  border-radius: 20px;
  margin-top: 2em;
  padding: 2em 1em;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 819px) {
  #flow .c-title-md {
    margin: 30px auto 15px;
  }
  #flow .Row {
    position: relative;
    padding-bottom: 2em;
  }
  #flow .Row::before {
    display: none;
  }
  #flow .grid {
    text-align: center;
  }
  #flow .attention {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#flow .cont01 {
  gap: 40px;
}
@media (max-width: 768px) {
  #flow .cont01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
#flow .cont01 .Column--4 {
  max-width: 245px;
  width: 100%;
  padding: 0;
}
#flow .cont01 .Column--4 p {
  font-size: 16px;
  letter-spacing: 0.1em;
}
#flow .cont01 .c-img-wrap {
  background: #f2f6dc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 170px;
}
#flow .cont01 h3 {
  text-align: center;
  margin: 10px 0;
}
#flow .cont02 {
  max-width: 1100px;
  margin: 0 auto;
}
#flow .cont02 img {
  width: 100%;
  vertical-align: middle;
}
#flow .cont02 h4 {
  margin: 10px 0;
}
#flow .cont02 p {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: left;
}

#overview .l-container {
  padding: 45px 0;
  max-width: 610px;
}
@media (max-width: 768px) {
  #overview .l-container {
    padding: 20px 0 30px;
  }
}
#overview .title-blc {
  padding: 1rem 0;
  background-color: #de0000;
  color: white;
  text-align: center;
}
#overview .l-container._sm {
  margin-bottom: 4em;
}
#overview .l-container .current {
  text-align: right;
  margin-top: 1em;
}

/* =================================================
 floating setting
================================================= */
.floating {
  width: 100%;
  padding: 20px 1rem;
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
}
.floating > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 550px) {
  .floating > div {
    gap: 12px;
  }
}
.floating > div a {
  border-radius: 150px !important;
  width: 100%;
  max-width: 295px;
  font-size: 18px !important;
  background: #c70920 !important;
  position: relative;
}
@media (max-width: 550px) {
  .floating > div a {
    font-size: 16px !important;
  }
}
.floating > div a:after {
  content: "";
  position: absolute;
  top: calc(50% + 2px);
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAQCAYAAADESFVDAAAABHNCSVQICAgIfAhkiAAAAJhJREFUKFNj/P//vwEDA0M8EDcyMjJ+ANIYgBGoaAJQNB+ILwCxIzaFIEUCQMkDQKyPSyEjyGxCCsGKCCmEK8KnEEURToXYvAx1I8i38kC8EcMkqGkJQHo+1IBEbNahKmBkXIDucAwFINOQgwCrArgioENxKgArAioIANLr4Y4EugHdxyBFBUDBfiBOBEYuhgIUN2ELL5gYAHC0TyjmFgSRAAAAAElFTkSuQmCC");
  display: block;
  width: 9px;
  height: 16px;
}
.floating > div > a:last-child {
  background: #1f3985 !important;
  -webkit-box-shadow: 0 3px 0 #071848;
  box-shadow: 0 3px 0 #071848;
}

/* ================================================= 
 pagetop setting
================================================= */
.pagetop {
  width: 100px;
  position: fixed;
  right: 4%;
  bottom: 10%;
  z-index: 2;
  opacity: 0;
  z-index: 100;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.pagetop._fold {
  opacity: 1;
}
.pagetop a {
  display: block;
  height: 80px;
  line-height: 80px;
}
@media screen and (max-width: 819px) {
  .pagetop {
    width: 50px;
    position: fixed;
    right: 4%;
    z-index: 2;
    opacity: 0;
    z-index: 100;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    bottom: 100px;
  }
  .pagetop._fold {
    opacity: 1;
  }
  .pagetop a {
    display: block;
    height: 50px;
    line-height: 50px;
  }
  .pagetop a img {
    width: 100%;
    height: auto;
  }
}

/* ================================================= 
 FAQ setting
================================================= */
#faq {
  background: #fff0f0;
}
#faq h2 {
  color: #de0000;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
#faq .l-container._sm {
  max-width: 910px;
}
#faq.js-accordion .c-panel-title {
  cursor: pointer;
  position: relative;
}
#faq.js-accordion .c-panel-title .p_btn {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  #faq.js-accordion .c-panel-title .p_btn {
    right: 10px;
    width: 25px;
    height: 25px;
  }
}
#faq.js-accordion .c-panel-title .p_btn:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  width: 17px;
  height: 3px;
  background-color: #de0000;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  border-radius: 100px;
}
@media (max-width: 768px) {
  #faq.js-accordion .c-panel-title .p_btn:before {
    width: 15px;
    height: 2px;
  }
}
#faq.js-accordion .c-panel-title .p_btn:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17px;
  height: 3px;
  background-color: #de0000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 100px;
}
@media (max-width: 768px) {
  #faq.js-accordion .c-panel-title .p_btn:after {
    width: 15px;
    height: 2px;
  }
}
#faq.js-accordion .c-panel-title.active .p_btn:before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
#faq.js-accordion .c-panel-title.active .p_btn:after {
  background-color: transparent;
}
#faq.js-accordion .c-panel-body {
  display: none;
  padding: 2rem;
  background-color: white;
}
#faq .c-panel {
  margin-bottom: 1.5em;
}
#faq .c-panel:last-child {
  margin-bottom: 0;
}

/* ================================================= 
 footer setting
================================================= */
footer {
  padding: 1em 0;
  background-color: #de0000;
}
footer #copyright {
  font-size: 12px;
  font-size: 1.2rem;
  color: white;
  text-align: center;
}
@media screen and (max-width: 819px) {
  footer {
    padding-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */