@charset "UTF-8";
/*reset*/
* {
  padding-left: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a img {
  display: block;
}

ul li, ol li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*common*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #d2dfe8;
  font-size: 16px;
  letter-spacing: 0.025em;
  line-height: 2;
  color: #010b12;
  scroll-behavior: smooth;
}

body h1, body h2, body h3, body h4, body h5, body p, body li {
  letter-spacing: 0.025em;
  font-weight: 300;
  font-feature-settings: "palt";
}
body p {
  line-height: 1.8;
  font-size: 14px;
}
@media print, screen and (min-width: 768px) {
  body p {
    font-size: 16px;
  }
}

a:hover {
  cursor: pointer;
}

a.line {
  position: relative;
  display: inline-block;
}
a.line::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.5px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
a.line:hover {
  opacity: 0.8;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  width: calc(100% - 20px);
}
@media print, screen and (min-width: 640px) {
  .container {
    width: calc(100% - 4vw);
  }
}
@media print, screen and (min-width: 980px) {
  .container {
    width: calc(100% - 8vw);
  }
}
@media print, screen and (min-width: 1200px) {
  .container {
    width: calc(100% - 12.15vw);
  }
}
@media print, screen and (min-width: 1366px) {
  .container {
    width: 1200px;
  }
}

/*余白*/
.mb32 {
  margin-bottom: 32px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.com-btm {
  margin-bottom: 100px;
}
@media print, screen and (max-width: 767px) {
  .com-btm {
    margin-bottom: 30px;
  }
}

.pc-view {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .pc-view {
    display: block;
  }
}

.sp-view {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp-view {
    display: none;
  }
}

.tb-view {
  display: block;
}
@media print, screen and (min-width: 640px) {
  .tb-view {
    display: none;
  }
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  overflow: hidden;
  transition: opacity 1.5s, transform 1s;
}
.fade.toleft {
  transform: translateX(30px);
}
.fade.toright {
  transform: translateX(-30px);
}
.fade.tobottom {
  transform: translateY(-30px);
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.functions, #solution2 .wrap {
  overflow: hidden;
}

/*header*/
#header {
  padding: 15px 6vw 0;
}
@media print, screen and (min-width: 768px) {
  #header {
    padding: 20px 6vw 0;
  }
}
#header .logo {
  text-align: right;
}
#header .logo a {
  display: inline-block;
}
@media print, screen and (max-width: 767px) {
  #header .logo a img {
    width: 80px;
  }
}

/**/
#mv {
  margin-bottom: 62px;
}
@media print, screen and (min-width: 768px) {
  #mv {
    margin-bottom: 60px;
  }
}

/*mainvisual*/
.swiper-wrapper {
  transition-timing-function: linear !important;
}

#mv {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 180px;
  position: relative;
}
@media print, screen and (max-width: 1199px) {
  #mv {
    padding-bottom: 13vw;
  }
}
@media print, screen and (max-width: 767px) {
  #mv {
    padding-bottom: 20vw;
  }
}
#mv .txt-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding-left: 6vw;
}
#mv .txt-wrap .txt {
  width: 62.2vw;
  max-width: 850px;
}
@media print, screen and (max-width: 767px) {
  #mv .txt-wrap {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  #mv .txt-wrap .txt {
    width: 100%;
  }
}

#mv {
  width: 100vw;
  position: relative;
}
#mv .swiper, #mv .txt-wrap {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
#mv::after {
  position: absolute;
  content: "";
  display: block;
  width: 49%;
  background-image: url(./images/mv-plane.png);
  background-repeat: no-repeat;
  background-size: contain;
  animation-name: plane;
  animation-duration: 0.6s;
}

@keyframes plane {
  0% {
    right: 0;
    bottom: 50%;
    height: 5%;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    right: 30%;
    bottom: 80%;
    height: 10%;
    opacity: 0;
  }
}
@media print, screen and (max-width: 767px) {
  @keyframes plane {
    0% {
      right: 0;
      bottom: 30%;
      height: 5%;
    }
    80% {
      opacity: 0.8;
    }
    100% {
      right: 20%;
      bottom: 85%;
      height: 15%;
      opacity: 0;
    }
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media print, screen and (min-width: 1200px) {
  .swiper .swiper-slide img {
    width: 100%;
    height: auto;
  }
}
/* MV下 */
#mv-btm p {
  color: #1b679b;
  font-size: 14px;
  line-height: 2em;
}
@media print, screen and (min-width: 768px) {
  #mv-btm p {
    font-size: 24px;
  }
}
#mv-btm p:not(:last-of-type) {
  margin-bottom: 1em;
}
#mv-btm p.intro {
  font-size: 18px;
}
@media print, screen and (min-width: 768px) {
  #mv-btm p.intro {
    font-size: 32px;
  }
}

/*solution*/
#solution1 .intro, #solution2 .intro {
  color: #c91d1d;
  margin-bottom: 32px;
}
#solution1 .intro .deco, #solution2 .intro .deco {
  background-color: #c91d1d;
  color: #fff;
  padding: 4px 8px;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  #solution1 .intro .deco, #solution2 .intro .deco {
    padding: 12px 24px;
    margin-bottom: 15px;
    font-size: clamp(16px, 2.04vw, 28px);
  }
}
#solution1 .intro h2, #solution2 .intro h2 {
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 0.5em;
  font-size: 24px;
}
@media print, screen and (min-width: 768px) {
  #solution1 .intro h2, #solution2 .intro h2 {
    font-size: clamp(32px, 4.5vw, 55px);
  }
}
#solution1 .intro p, #solution2 .intro p {
  color: #010b12;
  font-size: 14px;
  letter-spacing: 0;
}
@media print, screen and (min-width: 768px) {
  #solution1 .intro p, #solution2 .intro p {
    font-size: clamp(18px, 1.31vw, 18px);
  }
}

@media print, screen and (max-width: 767px) {
  #solution2 .intro h2 {
    margin-bottom: 16px;
  }
}

#solution2 .wrap {
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) {
  #solution2 .wrap {
    margin-bottom: 48px;
  }
}
#solution2 .wrap img {
  max-width: 100%;
  height: auto;
}
#solution2 .wrap .item {
  border: solid 1px #1c5d94;
  background: #fff;
  padding: 8px;
  max-width: 358px;
}
#solution2 .wrap h3 {
  color: #1c5d94;
  font-weight: 500;
}
#solution2 .wrap p {
  letter-spacing: 0;
  line-height: 1.5;
}
#solution2 .wrap p small {
  font-size: 0.8em;
}
#solution2 .wrap .notice {
  font-size: 0.8em;
  padding-left: 1em;
  position: relative;
}
#solution2 .wrap .notice::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (max-width: 767px) {
  #solution2 .wrap .item {
    margin: 0 auto 16px;
  }
}
@media print, screen and (min-width: 768px) {
  #solution2 .wrap {
    display: flex;
    justify-content: space-between;
  }
  #solution2 .wrap .item {
    width: 32%;
  }
}
@media print, screen and (min-width: 1200px) {
  #solution2 .wrap .item {
    width: 29.83%;
  }
}

#solution1, #solution2 {
  margin-bottom: 80px;
}
@media print, screen and (min-width: 768px) {
  #solution1, #solution2 {
    margin-bottom: 120px;
  }
}

/*@include mq(m-max){
  #solution1{
    margin-bottom: 50px;
  }
  #solution2{
    margin-bottom: 32px;
  }
}*/
#solution1 .intro, #solution2 .intro {
  background-repeat: no-repeat;
}

#mv-btm.container {
  background-image: url(./images/solution1-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  background-size: 70% auto;
  padding-bottom: 44px;
  margin-bottom: 44px;
}
@media print, screen and (min-width: 768px) {
  #mv-btm.container {
    background-size: auto 80%;
    margin-bottom: 88px;
  }
}

/*#solution2 .intro{
  background-image: url(./images/solution2-bg.png);
  background-size: 50% auto;
  @include mq(l-max){
    background-size: 25.98vw auto;
  }
  background-position: right 90%;
  @include mq(m-max){
    background-size: 55vw auto;
    background-position: right 0%;
    padding-top: 30px;
  }
}*/
#solution1 .example {
  display: flex;
  justify-content: flex-start;
}
#solution1 .example .item img {
  max-width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  #solution1 .example .item {
    margin-right: 1%;
  }
  #solution1 .example .item:nth-of-type(2) {
    margin-right: 4%;
  }
  #solution1 .example .item:last-of-type {
    margin-right: 0;
  }
  #solution1 .example .item:nth-of-type(even) {
    margin-top: 56px;
  }
}
@media print, screen and (max-width: 767px) {
  #solution1 .example {
    flex-wrap: wrap;
  }
  #solution1 .example .item {
    width: 49%;
  }
  #solution1 .example .item:nth-of-type(odd) {
    margin-right: 2%;
  }
  #solution1 .example .item:nth-of-type(even) {
    margin-top: 32px;
  }
  #solution1 .example .item:nth-of-type(-n+2) {
    margin-bottom: 24px;
  }
}
#solution1 .example a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

footer {
  background: #fff;
  padding: 32px 0;
  text-align: center;
}
footer a {
  color: #1c5d94;
}
@media print, screen and (min-width: 768px) {
  footer {
    padding: 60px 0;
  }
}

#select-item .ttl-recomend {
  text-align: center;
  margin-bottom: 64px;
  padding: 96px 0 44px;
  position: relative;
}
@media print, screen and (max-width: 767px) {
  #select-item .ttl-recomend {
    margin-bottom: 30px;
  }
}
#select-item .ttl-recomend img {
  width: 80%;
  max-width: 589px;
}
@media print, screen and (max-width: 767px) {
  #select-item .ttl-recomend img {
    max-width: 100%;
  }
}
#select-item .ttl-recomend::before, #select-item .ttl-recomend::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  height: 30vw;
  width: 200px;
}
@media print, screen and (max-width: 1199px) {
  #select-item .ttl-recomend::before, #select-item .ttl-recomend::after {
    width: 30vw;
  }
}
#select-item .ttl-recomend::before {
  background-image: url(./images/recommend-ttl-bg-left.png);
  left: 0;
  top: 0;
}
@media print, screen and (min-width: 768px) {
  #select-item .ttl-recomend::before {
    width: 10.32vw;
    height: 12.84vw;
  }
}
#select-item .ttl-recomend::after {
  background-image: url(./images/recommend-ttl-bg-right.png);
  right: 0;
  bottom: 0;
}
@media print, screen and (min-width: 768px) {
  #select-item .ttl-recomend::after {
    width: 11.6vw;
    height: 11.63vw;
  }
}
#select-item .tab-wrap {
  display: flex;
  border-bottom: solid 1px #d2dfe8;
}
#select-item .tab-wrap .tab {
  width: 25%;
  align-items: center;
  border-radius: 8px 8px 0 0;
  color: #8bb4d1;
  background-color: #fff;
  border-right: 1px solid #d2dfe8;
  font-weight: 400;
  color: #8bb4d1;
  line-height: 1.2;
  font-size: 10px;
  padding-bottom: 16px;
}
@media print, screen and (min-width: 768px) {
  #select-item .tab-wrap .tab {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-radius: 32px 32px 0 0;
    padding: 0 16px;
  }
}
@media print, screen and (min-width: 768px) {
  #select-item .tab-wrap .tab {
    font-size: clamp(12px, 1.5vw, 21px);
  }
}
@media print, screen and (max-width: 767px) {
  #select-item .tab-wrap .tab {
    padding-bottom: 4px;
    text-align: center;
  }
}
#select-item .tab-wrap .tab.view {
  background-color: #8bb4d1;
  color: #fff;
}
#select-item .tab-wrap .tab .txt {
  padding-bottom: 8px;
}
#select-item .tab-wrap .tab::before {
  display: block;
  content: "";
  width: 100%;
  height: 70px;
  margin: 4px 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media print, screen and (min-width: 768px) {
  #select-item .tab-wrap .tab::before {
    margin: 8px;
    width: 30%;
  }
}
@media print, screen and (min-width: 768px) {
  #select-item .tab-wrap .tab:nth-of-type(4)::before {
    width: 20%;
  }
}
#select-item .tab-wrap .tab:nth-of-type(2)::before {
  background-image: url(./images/ico-180.png);
}
#select-item .tab-wrap .tab:nth-of-type(1)::before {
  background-image: url(./images/ico-194.png);
}
#select-item .tab-wrap .tab:nth-of-type(4)::before {
  background-image: url(./images/ico-phone.png);
}
#select-item .tab-wrap .tab:nth-of-type(3)::before {
  background-image: url(./images/ico-luna.png);
}
#select-item .tab-wrap .tab:not(.view):hover {
  cursor: pointer;
  transition: 0.2s;
  background: #8bb4d1;
}
#select-item .tab-wrap .tab:not(.view):hover .txt, #select-item .tab-wrap .tab:not(.view):hover:before {
  transform: translateY(-10px);
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  #select-item .tab-wrap .tab:nth-of-type(3)::before {
    background-size: 90%;
  }
}
@media print, screen and (min-width: 768px) {
  #select-item .tab-wrap .tab:nth-of-type(3)::before {
    width: 40%;
  }
}

.wrap-item {
  display: none;
}

.wrap-item.view {
  display: block;
  background: rgba(255, 255, 255, 0.8);
  padding: 16px 4.88% 32px;
  margin-bottom: 80px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .wrap-item.view {
    padding: 38px 4.88% 120px;
    margin-bottom: 60px;
  }
}
.wrap-item.view::after {
  content: "";
  display: block;
  height: 160px;
  max-height: 91px;
  width: 160px;
  max-width: 163px;
  bottom: -70px;
  right: -5px;
  background: url(./images/img-hat.png) no-repeat;
  background-size: contain;
  position: absolute;
}
@media print, screen and (min-width: 768px) {
  .wrap-item.view::after {
    right: -15px;
    bottom: -15px;
    width: 11.96vw;
    height: 6.69vw;
  }
}

.wrap-item .item-mv {
  margin-bottom: 24px;
}
@media print, screen and (max-width: 767px) {
  .wrap-item .item-mv {
    margin-bottom: 16px;
  }
}
.wrap-item .item-mv .ttl a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.wrap-item .item-mv-btm {
  margin-bottom: 40px;
}
.wrap-item .item-mv-btm p, .wrap-item .item-mv-btm li {
  font-size: clamp(14px, 1.46vw, 20px);
  letter-spacing: 0.025em;
}
.wrap-item .item-mv-btm ul li {
  list-style: none;
  padding-left: 1.5em;
  position: relative;
}
.wrap-item .item-mv-btm ul li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(./images/check-mark.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.5em;
  left: 0;
}
@media print, screen and (min-width: 768px) {
  .wrap-item .item-mv-btm ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .wrap-item .item-mv-btm ul li {
    width: calc(50% - 24px);
  }
  .wrap-item .item-mv-btm ul li:nth-of-type(odd) {
    margin-right: 24px;
  }
  .wrap-item .item-mv-btm ul li:nth-of-type(even) {
    margin-left: 24px;
  }
}
@media print, screen and (min-width: 768px) {
  .wrap-item .item-mv-btm {
    margin-bottom: 60px;
  }
}

.wrap-item {
  margin-bottom: 40px;
}
.wrap-item .item-function .ttl {
  color: #c91d1d;
  font-size: clamp(24px, 3.51vw, 48px);
  text-align: center;
  margin-bottom: 20px;
}
.wrap-item .item-function .img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .wrap-item {
    margin-bottom: 60px;
  }
}

.wrap-item .item-function .functions {
  counter-reset: func-no;
}
.wrap-item .item-function .functions .item {
  margin-bottom: clamp(24px, 4.09vw, 64px);
  max-width: 521px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  .wrap-item .item-function .functions {
    display: flex;
    flex-wrap: wrap;
  }
  .wrap-item .item-function .functions .item {
    width: calc((100% - 30px) / 2);
  }
  .wrap-item .item-function .functions .item:nth-of-type(odd) {
    margin-right: 30px;
  }
}
.wrap-item .item-function .functions .item .caption h5 {
  color: #010b12;
  font-size: clamp(16px, 1.8vw, 24px);
  position: relative;
  padding-left: 2.2em;
  line-height: 1.4;
  margin: 10px 0;
}
.wrap-item .item-function .functions .item .caption h5::before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: func-no;
  content: "#" counter(func-no, decimal-leading-zero);
  margin-right: 0.5em;
}
.wrap-item .item-function .functions .item .caption h5 p {
  font-size: clamp(12px, 1.46vw, 18px);
  color: #010b12;
  line-height: 2;
}
.wrap-item .item-function .functions .item .caption h5 p small {
  font-size: 0.75em;
  line-height: 1.2;
}

.cv a {
  line-height: 1.5;
  text-align: center;
  border: solid #1c5d94 1px;
  background: #1c5d94;
  color: #fff;
  font-size: clamp(18px, 2.34vw, 32px);
  letter-spacing: 0.05em;
  display: block;
  padding: 16px 0;
  margin: 2px;
}
@media print, screen and (min-width: 768px) {
  .cv a {
    padding: 32px 0;
  }
}
.cv a:hover {
  transition: all 0.5s;
  background: #fff;
  color: #1c5d94;
  border: solid 1px #1c5d94;
}

@media print, screen and (min-width: 768px) {
  .flex_pc {
    display: flex;
  }
  .flex_pc .item {
    width: 50%;
  }
}
.slide-in {
  overflow: hidden;
  display: block;
}

.slide-in_inner {
  display: block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */