@charset "UTF-8";
html,
body {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body {
  color: #000;
  background-color: #f0f0f0;
}

img {
  width: 100%;
}

.header {
  position: relative;
  height: 100vh;
  overflow-y: hidden;
}
.header-logo {
  width: 12vw;
  height: auto;
  position: absolute;
  top: 10%;
  left: 15%;
  z-index: 2;
}
.header-ttl {
  font-size: clamp(30px, 4vw, 80px);
  letter-spacing: 10px;
  position: absolute;
  top: 20%;
  left: 15%;
  z-index: 3;
}
.header-mobile {
  width: 14vw;
  height: auto;
  display: block;
  position: absolute;
  right: 15%;
  top: 38%;
  z-index: 4;
}
.header-copy1 {
  position: absolute;
  top: 63%;
  left: 15%;
  z-index: 5;
}
.header-copy2 {
  position: absolute;
  top: 78%;
  left: 15%;
  z-index: 6;
}
.header-copy1, .header-copy2 {
  font-size: 16px;
  line-height: 1.5;
}
.header .copy-ttl {
  font-size: clamp(16px, 1.4vw, 25px);
}

/***** スクロールダウンアニメーション *****/
.scroll {
  position: absolute;
  right: 7%;
  top: 70%;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  letter-spacing: 2px;
  font-size: clamp(12px, 1.3vw, 20px);
  color: #08213f;
}
.scroll span {
  transform: rotate(180deg);
  display: inline-block;
}

.scroll::before {
  content: "";
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #08213f;
  bottom: -240px;
  height: 220px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1.5px;
}

@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/***** スクロールダウンアニメーションEND *****/
.private {
  background: url(../images/bg1.jpg) no-repeat center center/cover;
  padding: 8% 0 0 0;
}
.private-ttl {
  font-size: clamp(30px, 4vw, 80px);
  letter-spacing: 10px;
  color: #fff;
  margin-left: 15%;
  line-height: 1.2;
}
.private-ttl span {
  color: #195490;
}

.card-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  margin: 7% auto 0 0;
}

.card {
  flex-shrink: 0;
  width: 20vw;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
}
.card:first-child {
  margin-left: 5%;
}

.card::before {
  content: "";
  display: block;
  padding-top: 142.5%;
}

.card img {
  width: 100%;
}

.card .back,
.card .front {
  transition: all 0.6s;
  position: absolute;
  left: 30%;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.card .front {
  transform: rotateY(-180deg);
}

.card:hover .back {
  transform: rotateY(180deg);
}

.card:hover .front {
  transform: rotateY(0);
}

.card .front-txt {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 16px;
  font-weight: 400;
  z-index: 10;
  width: 80%;
  line-height: 1.3;
}
.card .front-txt span {
  display: flex;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 3%;
  align-items: center;
  font-size: 1.1rem;
}

.reason {
  padding: 4% 0;
}
.reason h3 {
  font-size: clamp(30px, 4vw, 80px);
  letter-spacing: 10px;
  text-align: center;
}
.reason h3 span {
  color: #195490;
}

.feature {
  background: url(../images/bg2.jpg) no-repeat center center/cover;
  padding: 8% 0;
}
.feature-inner {
  display: flex;
  width: 950px;
  margin: 0 auto;
  justify-content: center;
  gap: 10%;
  align-items: flex-end;
}
.feature-left {
  width: 235px;
  height: auto;
}

#vertical_tab_nav {
  display: block;
  max-width: 570px;
}
#vertical_tab_nav .tab-ttl {
  margin: 0 auto;
  font-size: clamp(30px, 4vw, 80px);
  letter-spacing: 10px;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 4%;
  padding-bottom: 10px;
  width: 30vw;
}

#vertical_tab_nav ul {
  display: block;
  float: left;
  margin-top: 5%;
  padding: 0px;
  list-style: none;
  overflow: hidden;
  width: 50%;
  margin-right: -1.5px;
}

#vertical_tab_nav li {
  margin-bottom: 5px;
  text-align: left;
  padding: 0px;
}

#vertical_tab_nav li:last-child {
  margin-bottom: 0px;
  border-bottom: 0px;
}

#vertical_tab_nav li a {
  display: block;
  font-size: clamp(16px, 1.3vw, 20px);
  color: #fff;
  text-decoration: none;
  padding: 7% 5%;
  line-height: 1.3;
}

#vertical_tab_nav li a.selected {
  background: url(../images/tab-bg.png) no-repeat left 14%/cover;
  border-left: solid 1px #fff;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  border-left: solid 1px #fff;
  z-index: 10;
  position: relative;
  border-radius: 16px 0 0 16px;
}

#vertical_tab_nav li .tab2.selected {
  background: url(../images/tab-bg.png) no-repeat left 37%/cover;
}

#vertical_tab_nav li .tab3.selected {
  background: url(../images/tab-bg.png) no-repeat left 50%/cover;
}

#vertical_tab_nav li .tab4.selected {
  background: url(../images/tab-bg.png) no-repeat left 76%/cover;
}

#vertical_tab_nav div {
  display: block;
  float: left;
  background: url(../images/panel-bg.png) no-repeat left center/contain;
  width: 50%;
  min-height: 400px;
  padding: 10px 3% 3% 3%;
  border-radius: 16px;
  border: solid 1px #fff;
  z-index: 5;
  position: relative;
}

#vertical_tab_nav div article {
  display: none;
  margin: 0px;
  color: #fff;
}

#vertical_tab_nav div article p {
  margin: 0px 0px 20px 0px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 10px;
}
#vertical_tab_nav div article p::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 1px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.tab-content {
  display: block;
  width: 75%;
  margin: 0 auto;
  padding: 5% 0;
  position: relative;
}

.point {
  padding: 10% 0 2% 0;
}
.point-box {
  width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
  padding-left: 1.4%;
  padding-bottom: 2.5%;
}
.point-left img {
  border-radius: 5px;
  width: 303px;
  height: auto;
}
.point-right {
  color: #fff;
}
.point-right h4 {
  font-size: 35px;
  line-height: 1.5;
  letter-spacing: 2px;
}
.point-right h4 span {
  display: block;
  font-size: clamp(16px, 1.2vw, 18px);
}
.point-right p {
  font-weight: 400;
  line-height: 1.5;
  width: 80%;
  margin-top: 8px;
}

.compare {
  padding: 4% 0;
  text-align: center;
}
.compare h5 {
  font-size: clamp(30px, 4vw, 80px);
  letter-spacing: 10px;
  text-align: center;
}
.compare h5 span {
  color: #195490;
}
.compare p {
  display: inline-block;
  text-align: left;
  color: #195490;
  line-height: 1.3;
}

table {
  max-width: 1000px;
  margin: 4% auto 0 auto;
  border-spacing: 35px;
}

table,
td,
th {
  border-collapse: separate;
}

td,
th {
  text-align: center;
  padding: 0 2px;
  vertical-align: middle;
  height: 80px;
}

td {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #fff;
  width: 315px;
  line-height: 1.4;
}

th {
  white-space: nowrap;
  font-size: 15px;
}

.table-blue {
  background-color: #195490;
  color: #fff;
}

.table-head1,
.table-head2,
.table-head3 {
  padding: 2% 0;
}

.table-head1::before {
  content: url(../images/table_head1.png);
  display: block;
  transform: scale(0.6);
  margin: -12% 0 -9% 0;
}

.table-head2::before {
  content: url(../images/table_head2.png);
  display: block;
  transform: scale(0.6);
  margin: -12% 0 -9% 0;
}

.table-head3::before {
  content: url(../images/table_head3.png);
  display: block;
  transform: scale(0.6);
  margin: -12% 0 -9% 0;
}

.note1 {
  position: relative;
}
.note1::after {
  content: "※1";
  display: block;
  position: absolute;
  top: 8%;
  right: 4%;
  color: #fff;
  font-size: 0.8rem;
}

.graph-scroll {
  overflow-x: scroll;
}

.movie {
  width: 1000px;
  height: 544px;
  margin: 10px auto 30px;
  position: relative;
}
@media (min-width: 1800px) {
  .movie {
    width: 1267px;
    height: 689px;
  }
}
@media (max-width: 1024px) {
  .movie {
    width: 90%;
    height: 400px;
  }
}
.movie-inner {
  display: block;
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.movie-player {
  position: relative;
  z-index: 10;
}

.thumb {
  width: 100%;
  max-width: 100%;
}

.footer {
  background-color: #101010;
  color: #fff;
  padding: 7% 0 7% 20%;
  margin-top: 5%;
}
@media (min-width: 1800px) {
  .footer {
    padding-left: 22%;
  }
}
.footer-company {
  font-size: 35px;
  letter-spacing: 4px;
}
.footer-txt {
  display: inline-block;
  font-size: 25px;
  border-top: 1px solid #fff;
  padding-top: 2%;
  margin-top: 1.5%;
  letter-spacing: 2px;
}
.footer-txt span {
  display: block;
  font-size: 16px;
  margin-top: 4%;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .for-pc {
    display: none !important;
  }
  .header-logo {
    width: 30vw;
  }
  .header-mobile {
    width: 25vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header-copy1 {
    top: 74%;
    left: 7%;
  }
  .header-copy2 {
    top: 84%;
    left: 7%;
  }
  .scroll {
    right: 5%;
  }
  .card-container {
    overflow-y: hidden;
  }
  .card {
    width: 43vw;
  }
  .card .back, .card .front {
    left: 10%;
  }
  .feature-inner {
    display: block;
    width: 600px;
  }
  .feature-left {
    width: 235px;
    height: auto;
    margin: 0 auto 13% auto;
  }
  #vertical_tab_nav .tab-ttl {
    width: 45vw;
  }
  #vertical_tab_nav ul {
    margin-right: -2px;
  }
  .point {
    margin-top: 60%;
  }
  .point-box {
    width: 600px;
    display: block;
    padding-left: 0;
    padding-bottom: 8%;
  }
  .point-left img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
  }
  .point-right p {
    line-height: 1.8;
    width: 100%;
  }
  .footer {
    padding: 7% 5% 7% 12%;
    margin-top: 15%;
  }
}
@media screen and (max-width: 480px) {
  .header-logo {
    width: 35vw;
    top: 3%;
    left: 10%;
  }
  .header-mobile {
    width: 30vw;
    top: 45%;
  }
  .header-ttl {
    top: 13%;
    left: 10%;
  }
  .header-copy1 {
    top: 66%;
    left: 4%;
    font-weight: 400;
    font-size: 14px;
  }
  .header-copy2 {
    top: 78%;
    left: 4%;
    font-weight: 400;
    font-size: 14px;
    width: 80%;
  }
  .copy-ttl {
    font-weight: 700;
    white-space: nowrap;
  }
  .scroll {
    right: 3%;
    top: 76%;
  }
  .private {
    text-align: center;
    padding: 10% 0;
  }
  .private-ttl {
    margin-left: 1rem;
    line-height: 1.2;
    display: inline-block;
    text-align: left;
  }
  .private-ttl br {
    display: none;
  }
  .card {
    width: 60vw;
    height: 35vh;
  }
  .card .front-txt {
    top: 40%;
    left: 50%;
    font-size: 14px;
    font-weight: 400;
    width: 80%;
    line-height: 1.3;
    text-align: left;
  }
  .card .front-txt span {
    margin-bottom: 0%;
    font-size: 0.9rem;
  }
  .feature {
    padding: 12% 0 8% 0;
  }
  .feature-inner {
    width: 95%;
  }
  .feature-left {
    width: 160px;
    margin: 0 auto 13% auto;
  }
  #vertical_tab_nav {
    width: 100%;
  }
  #vertical_tab_nav .tab-ttl {
    width: 75vw;
    margin-bottom: 8%;
  }
  #vertical_tab_nav li a {
    font-size: clamp(14px, 1.3vw, 20px);
    color: #fff;
    padding: 10% 5%;
    font-weight: 400;
  }
  #vertical_tab_nav ul {
    margin-right: -1.5px;
    width: 40%;
  }
  #vertical_tab_nav div {
    background: url(../images/panel-bg.png) no-repeat left center/cover;
    width: 60%;
    min-height: 340px;
    padding: 10px 3% 3% 3%;
    border-radius: 16px;
  }
  #vertical_tab_nav div article p {
    margin: 0px 0px 20px 0px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 10px;
    font-size: 15px;
  }
  #vertical_tab_nav div article p::before {
    content: "";
    top: 47%;
    left: 50%;
    width: 158px;
  }
  #vertical_tab_nav li a.selected {
    background: url(../images/tab-bg.png) no-repeat left 10%/cover;
  }
  .point {
    margin: 0 auto;
    margin-top: 400px;
    width: 90%;
  }
  .point-box {
    width: 100%;
    padding-bottom: 10%;
  }
  .point-right h4 {
    font-size: 20px;
  }
  .point-right p {
    line-height: 1.4;
    width: 100%;
  }
  table {
    border-spacing: 12px;
  }
  table,
td,
th {
    border-collapse: separate;
    font-weight: 500;
    font-size: 15px;
  }
  td {
    width: 315px;
    line-height: 1.2;
    font-size: 14px !important;
  }
  .table-head1,
.table-head2,
.table-head3 {
    padding: 1% 0;
    font-weight: 700;
  }
  .table-head1::before,
.table-head2::before,
.table-head3::before {
    transform: scale(0.5);
  }
  .compare p {
    line-height: 1.2;
    width: 90%;
    font-weight: 400;
    font-size: 15px;
    margin-top: 3%;
  }
  .movie {
    width: 95%;
    height: 220px;
  }
  .footer {
    padding: 10% 5%;
  }
  .footer-company {
    font-size: 25px;
  }
  .footer-txt {
    display: inline-block;
    font-size: 18px;
    border-top: 1px solid #fff;
    padding-top: 3%;
    margin-top: 2.5%;
    letter-spacing: 2px;
  }
  .footer-txt span {
    display: block;
    font-size: 14px;
    margin-top: 4%;
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) {
  .for-sp {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */