@charset "UTF-8";
@font-face {
  font-family: "Good Pro";
  src: url("../../assets/font/ff-good-pro.woff") format("woff");
}
@font-face {
  font-family: "Good Pro bold";
  src: url("../../assets/font/ff-good-pro-Bold.woff") format("woff");
}
/* ---------------------------------------
基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
}
@media screen and (min-width: 921px) {
  html {
    font-size: 41.67%;
  }
  html.safari.mac {
    font-size: 6.67px;
  }
}
@media screen and (max-width: 920px) {
  html {
    font-size: 1.3333333333vw;
  }
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
figure,
figcaption,
form,
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  letter-spacing: 0;
  list-style-type: none;
  font-style: normal;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  word-break: break-all;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

img,
object {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

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

a:hover {
  cursor: pointer;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 921px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 920px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
body {
  color: #0054A7;
  font-size: 1rem;
  text-align: left;
}

main {
  display: block;
  overflow: hidden;
}

section {
  position: relative;
}

.wrap {
  position: relative;
  width: 68rem;
  margin: 0 auto;
}

.l-inner {
  padding: 0 4rem;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .l-inner {
    padding: 0 23px;
  }
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
  font-size: 3rem;
  line-height: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.left {
  float: left;
}

.right {
  float: right;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bold,
strong {
  font-weight: bold;
  font-weight: 700;
}

.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.en {
  font-weight: 500;
  font-family: "Good Pro", sans-serif;
}
.en.bold {
  font-weight: 700;
  font-family: "Good Pro bold", sans-serif;
}

@media screen and (min-width: 921px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
  a {
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
  }
  .img-hover img {
    transition: 0.3s;
  }
  .img-hover:hover {
    opacity: 1;
    text-decoration: none;
  }
  .img-hover:hover img {
    transform: scale(1.1);
  }
}
.section {
  position: relative;
}
.section .anchor {
  position: absolute; /* レイアウトを崩さない */
  top: 0;
  width: 1px;
  height: 1px;
  pointer-events: none; /* クリックなどを邪魔しない */
}

/* ---------------------------------------
  SP header
-----------------------------------------*/
.l-header {
  position: fixed;
  z-index: 100;
  width: 100%;
  left: 0;
  top: 0;
  height: 14rem;
  padding: 4rem 3.8rem;
  background: #fff;
  z-index: 999;
}
.l-header.is-open .h-logo .color {
  opacity: 0;
  visibility: hidden;
}
.l-header.is-open .h-logo .white {
  opacity: 1;
  visibility: visible;
}
.l-header .h-logo {
  position: relative;
  width: 45.4rem;
  z-index: 999;
}
.l-header .h-logo .color, .l-header .h-logo .white {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.4s opacity;
}
.l-header .h-logo .color {
  opacity: 1;
}
.l-header .h-logo .white {
  opacity: 0;
}
.l-header .drbtn {
  position: fixed;
  height: 4rem;
  width: 4rem;
  top: 5rem;
  right: 5.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s opacity;
  flex-wrap: wrap;
  gap: 0.8rem;
  z-index: 999;
}
.l-header .drbtn span {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 0.4rem;
  transition: transform 0.55s cubic-bezier(0.55, 0, 0.25, 1), opacity 0.5s, background-color 0.4s ease;
  position: relative;
  background: #0054A7;
}
.l-header .drbtn span:nth-of-type(5)::before, .l-header .drbtn span:nth-of-type(5)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5.3rem;
  height: 0.8rem;
  background: #fff;
  border-radius: 100vh;
  transform-origin: center;
  opacity: 0;
}
.l-header .drbtn.is-action {
  position: fixed;
  /* 上段 → 下方向へ移動して集まる */
  /* 中段 → 横・縦どちらも0へ */
  /* 下段 → 上方向へ集まる */
}
.l-header .drbtn.is-action span {
  background-color: #fff;
}
.l-header .drbtn.is-action span:nth-child(1) {
  opacity: 0;
  transform: translate(1.6rem, 1.6rem);
}
.l-header .drbtn.is-action span:nth-child(2) {
  opacity: 0;
  transform: translate(0, 1.6rem);
}
.l-header .drbtn.is-action span:nth-child(3) {
  opacity: 0;
  transform: translate(-1.6rem, 1.6rem);
}
.l-header .drbtn.is-action span:nth-child(4) {
  opacity: 0;
  transform: translate(1.6rem, 0);
}
.l-header .drbtn.is-action span:nth-child(5) {
  transform: translate(0, 0);
}
.l-header .drbtn.is-action span:nth-child(6) {
  opacity: 0;
  transform: translate(-1.6rem, 0);
}
.l-header .drbtn.is-action span:nth-child(7) {
  opacity: 0;
  transform: translate(1.6rem, -1.6rem);
}
.l-header .drbtn.is-action span:nth-child(8) {
  opacity: 0;
  transform: translate(0, -1.6rem);
}
.l-header .drbtn.is-action span:nth-child(9) {
  opacity: 0;
  transform: translate(-1.6rem, -1.6rem);
}
.l-header .drbtn.is-action span {
  background-color: #fff;
}
.l-header .drbtn.is-action span:nth-child(5) {
  transform: translate(0, 0);
}
.l-header .drbtn.is-action span:nth-child(5)::before {
  animation: cross-left 0.4s ease 0.5s forwards;
}
.l-header .drbtn.is-action span:nth-child(5)::after {
  animation: cross-right 0.4s ease 0.5s forwards;
}
.l-header .drawer {
  max-height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 23rem 4rem 0 4rem;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: 0.4s opacity;
}
.l-header .drawer.is-action {
  max-width: 100%;
  position: fixed;
  opacity: 1;
  pointer-events: all;
  z-index: 5;
  transition: 0.4s opacity;
  background: linear-gradient(191deg, #18ADC2 -4.12%, #036EB8 65.52%);
}
.l-header .drawer .l-header__menu {
  max-height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
  width: 100%;
  display: block;
  padding-bottom: 9.5rem;
  box-sizing: border-box;
}
.l-header .drawer .l-header__menu::-webkit-scrollbar { /* Chrome, Safari 対応 */
  display: none;
}
.l-header .drawer .l-header__nav .item {
  position: relative;
  padding-top: 5.6rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}
.l-header .drawer .l-header__nav .item:after {
  position: absolute;
  right: 1.6rem;
  bottom: 2.8rem;
  display: block;
  content: "";
  background: url("../img/arrow_w.svg") no-repeat center center;
  background-size: 100% auto;
  width: 2.7rem;
  height: 2.2rem;
}
.l-header .drawer .l-header__nav .item .item__inn {
  display: block;
  color: #fff;
  font-feature-settings: 3rem;
  font-weight: 700;
  line-height: 4.8rem; /* 160% */
  letter-spacing: 1.2px;
}
.l-header .drawer .nav-products {
  margin-top: 12.5rem;
}
.l-header .drawer .nav-products .products-ttl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
  margin-bottom: 3.5rem;
  color: #fff;
}
.l-header .drawer .nav-products .bnr-box .box-links {
  display: block;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.1);
  border-radius: 3rem;
  overflow: hidden;
}
.l-header .drawer .nav-products .bnr-box .box-img {
  width: 100%;
  aspect-ratio: 130/73;
}
.l-header .drawer .nav-products .bnr-box .box-txt {
  position: relative;
  background: #fff;
  padding: 4.2rem 11.8rem 4rem 5rem;
}
.l-header .drawer .nav-products .bnr-box .box-txt:after {
  position: absolute;
  right: 3.8rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  background: url("../img/ico_arrow.png") no-repeat center center;
  background-size: 100% 100%;
  width: 8rem;
  height: 8rem;
}
.l-header .drawer .nav-products .bnr-box .box-txt .ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 3.5rem; /* 87.5% */
  letter-spacing: 3.2px;
  margin-bottom: 1.5rem;
}
.l-header .drawer .nav-products .bnr-box .box-txt .text {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 3.5rem; /* 134.615% */
}
.l-header .drawer .nav-products .bnr-box + .bnr-box {
  margin-top: 4rem;
}
.l-header .drawer .nav-copy {
  margin-top: 11rem;
}
.l-header .drawer .nav-copy .logo {
  width: 36rem;
  margin: 0 auto 9rem auto;
}
.l-header .drawer .nav-copy .atten-txt li {
  position: relative;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 4rem; /* 173.913% */
  letter-spacing: 0.92px;
  padding-left: 2rem;
  color: #fff;
}
.l-header .drawer .nav-copy .atten-txt li:before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "・";
  letter-spacing: -8.28px;
}
.l-header .drawer .nav-copy .copyright {
  margin: 7rem0 0 0;
  text-align: center;
  font-weight: 700;
  line-height: 200%; /* 28px */
  font-size: 2.4rem;
  letter-spacing: 0.6px;
  color: #fff;
}
.l-header .drawer .nav-copy .txt {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 200%; /* 40px */
  letter-spacing: 1px;
  color: #fff;
}
.l-header .drawer .nav-copy .txt a {
  color: #fff;
  text-decoration: underline;
}

@keyframes cross-left {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scaleX(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
  }
}
@keyframes cross-right {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-45deg) scaleX(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
  }
}
/* ---------------------------------------
  contents_wrap
-----------------------------------------*/
.contents_wrap {
  position: relative;
  width: 100%;
}

.contents {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #fff;
}

@media screen and (min-width: 921px) {
  .bg_main {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: url("../img/bg.jpg") no-repeat center top/cover;
    padding: 40px;
    box-sizing: border-box;
  }
  .contents {
    max-width: 440px;
    background: #fff;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
  }
  .cnt_l,
  .cnt_r {
    width: calc((100% - 520px) / 2);
    height: calc(100% - 80px);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background: url("../img/bg02.png") no-repeat center top/102% 102%;
  }
  .cnt_l {
    left: 40px;
    border-radius: 40px 0 0 40px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .cnt_l .pc-logo {
    position: relative;
    width: 255px;
    margin: 30px auto 32px auto;
    z-index: 2;
  }
  .cnt_l .pc-nav {
    position: relative;
    z-index: 2;
  }
  .cnt_l .pc-nav ul li {
    position: relative;
    line-height: 1;
  }
  .cnt_l .pc-nav ul li + li {
    margin-top: 9px;
  }
  .cnt_l .pc-nav ul li a {
    position: relative;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.48px;
    padding-left: 18px;
    opacity: 0.6;
  }
  .cnt_l .pc-nav ul li a:before {
    position: absolute;
    left: 0;
    top: 6px;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: linear-gradient(180deg, #CDEDF2 -0.81%, #E7F4F6 14.37%, #ECF4F5 80.32%, #CDEDF2 89.43%);
    opacity: 0.2;
    box-sizing: border-box;
    transition: 0.1s;
  }
  .cnt_l .pc-nav ul li a:hover, .cnt_l .pc-nav ul li a.active {
    opacity: 1;
  }
  .cnt_l .pc-nav ul li a:hover:before, .cnt_l .pc-nav ul li a.active:before {
    opacity: 1;
    background: #0054A7;
  }
  .cnt_l .deco {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
    width: 421px;
    z-index: 1;
  }
  .cnt_r {
    right: 40px;
    border-radius: 0 40px 40px 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  .cnt_r .slide-wrap {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin-top: 103px;
  }
  .cnt_r .slide-wrap .ttl-products {
    color: #fff;
    font-size: 16px;
    line-height: 58.667px; /* 366.667% */
    letter-spacing: 2.24px;
  }
  .cnt_r .slide-wrap .pc-slider {
    position: relative;
  }
  .cnt_r .slide-wrap .pc-slider:after {
    position: absolute;
    right: 0;
    top: -98px;
    display: block;
    content: "";
    background: url("../img/deco_slide_pc.png") no-repeat center center;
    background-size: 100% 100% !important;
    width: 145px;
    height: 175px;
    z-index: 1;
    animation: bounce 1.5s infinite;
  }
  .cnt_r .slide-wrap .pc-slider .slide {
    position: relative;
    z-index: 2;
  }
  .cnt_r .slide-wrap .pc-slider .slide .slick-item {
    width: 100%;
    aspect-ratio: 130/73;
    border-radius: 15px;
    overflow: hidden;
  }
  .cnt_r .slide-wrap .pc-slider .slide .slick-item .item-img {
    opacity: 1 !important;
  }
  .cnt_r .slide-wrap .pc-slider .slide .slick-item img {
    width: 100%;
  }
  .cnt_r .slide-wrap .pc-slider .pc-arrow_box .pc-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/arrow_slide.svg") no-repeat center center;
    background-size: 100% 100% !important;
    width: 30px;
    height: 30px;
    z-index: 3;
    transition: 0.4s;
    cursor: pointer;
  }
  .cnt_r .slide-wrap .pc-slider .pc-arrow_box .pc-slide-arrow:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    background: url("../img/arrow_slide_blue.svg") no-repeat center center;
    background-size: 100% 100% !important;
    opacity: 0;
    transition: opacity 0.3s ease; /* 透明度だけを変化させる */
    z-index: -1; /* テキストの下に配置 */
  }
  .cnt_r .slide-wrap .pc-slider .pc-arrow_box .pc-slide-arrow.prev-arrow {
    left: -15px;
    transform: scale(-1, 1) translateY(-50%);
  }
  .cnt_r .slide-wrap .pc-slider .pc-arrow_box .pc-slide-arrow.next-arrow {
    right: -15px;
  }
  .cnt_r .slide-wrap .pc-slider .pc-arrow_box .pc-slide-arrow:hover:before {
    opacity: 1;
  }
  .cnt_r .famipay-wrap {
    margin-top: 96px;
  }
  .cnt_r .famipay-wrap p {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 170%; /* 34px */
    letter-spacing: 1.6px;
    margin-bottom: 27px;
  }
  .cnt_r .famipay-wrap .btn-wrap {
    position: relative;
  }
  .cnt_r .famipay-wrap .btn-wrap:after {
    position: absolute;
    right: -20px;
    top: -170px;
    display: block;
    content: "";
    background: url("../img/deco_famipay.png") no-repeat center center;
    background-size: 100% auto;
    width: 210px;
    height: 222px;
    z-index: 1;
  }
  .cnt_r .famipay-wrap .btn-wrap .btn {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 360px;
    height: 96px;
    font-size: 14px;
    line-height: 150%; /* 21px */
    letter-spacing: 1.12px;
    font-weight: 700;
    color: #fff;
    padding-left: 165px;
    border-radius: 16px;
    background: #0054A7;
    box-shadow: 0 0.935px 1.869px -3.739px rgba(22, 143, 255, 0.63), 0 0 5.608px 0 #FFF inset, 0 -11.216px 14.955px 0 rgba(255, 255, 255, 0.22) inset, 0 3.739px 11.216px -7.477px rgba(255, 255, 255, 0.24) inset;
    margin: 0 auto;
    z-index: 2;
    transition: 0.4s;
  }
  .cnt_r .famipay-wrap .btn-wrap .btn:before, .cnt_r .famipay-wrap .btn-wrap .btn:after {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    background-size: 100% auto !important;
    width: 135px;
    height: 64px;
    z-index: 1;
    transition: 0.4s;
  }
  .cnt_r .famipay-wrap .btn-wrap .btn:before {
    opacity: 1;
    background: url("../img/qr_pc.png") no-repeat center center;
  }
  .cnt_r .famipay-wrap .btn-wrap .btn:after {
    opacity: 0;
    background: url("../img/qr_pc_color.png") no-repeat center center;
  }
  .cnt_r .famipay-wrap .btn-wrap .btn:hover {
    opacity: 1;
    color: #0054A7;
    background: #fff;
    box-shadow: 0 0.935px 1.869px -3.739px rgba(22, 143, 255, 0.63), 0 0 5.608px 0 #FFF inset, 0 -11.216px 14.955px 0 rgba(255, 255, 255, 0.22) inset, 0 3.739px 11.216px -7.477px rgba(255, 255, 255, 0.24) inset;
  }
  .cnt_r .famipay-wrap .btn-wrap .btn:hover:before {
    opacity: 0;
  }
  .cnt_r .famipay-wrap .btn-wrap .btn:hover:after {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@media screen and (min-width: 921px) and (max-width: 1366px) {
  .bg_main {
    padding: 1.4641288433vw;
  }
  .cnt_l,
  .cnt_r {
    width: calc((100% - 436px - 2.9282576866vw) / 2);
    height: calc(100% - 2.9282576866vw);
    padding: 0 2.9282576866vw;
  }
  .cnt_l {
    left: 1.4641288433vw;
    border-radius: 2.9282576867vw 0 0 2.9282576867vw;
  }
  .cnt_l .pc-logo {
    width: 18.6676427526vw;
    margin: 2.196193265vw auto 2.3426061493vw auto;
  }
  .cnt_l .pc-nav ul li:before {
    top: 0.8052708638vw;
    width: 0.5856515373vw;
    height: 0.5856515373vw;
  }
  .cnt_l .pc-nav ul li + li {
    margin-top: 0.6588579795vw;
  }
  .cnt_l .pc-nav ul li a {
    font-size: 0.878477306vw;
    padding-left: 1.317715959vw;
  }
  .cnt_l .deco {
    bottom: -5.8565153734vw;
    width: 30.8199121523vw;
  }
  .cnt_l .contact {
    width: 25.1830161054vw;
    padding: 0.878477306vw;
  }
  .cnt_l .contact .box {
    padding: 0.2928257687vw 1.0248901903vw 1.317715959vw;
  }
  .cnt_l .contact .logo {
    width: 21.2298682284vw;
  }
  .cnt_l .contact .ttl {
    font-size: 2.196193265vw;
    margin-top: 0.7320644217vw;
  }
  .cnt_l .contact .txt {
    font-size: 1.4641288433vw;
  }
  .cnt_l .contact .cta_btn {
    width: 21.2298682284vw;
    margin-top: 0.7320644217vw;
  }
  .cnt_l .contact .cta_btn a {
    height: 5.5636896047vw;
    padding: 0.7320644217vw 1.0980966325vw;
    border-radius: 0.7320644217vw;
    box-shadow: 0 0 0.3660322108vw rgba(176, 30, 88, 0.2);
  }
  .cnt_l .contact .cta_btn a::before {
    width: 4.9048316252vw;
    height: 3.6603221083vw;
    left: 0.9516837482vw;
    top: calc(50% - 1.6vw);
  }
  .cnt_l .contact .cta_btn a p {
    font-size: 1.8301610542vw;
  }
  .cnt_l .contact .cta_btn a p .time {
    font-size: 1.0614934114vw;
  }
  .cnt_l .contact .tel {
    width: 17.6427525622vw;
    padding-bottom: 0.7320644217vw;
    margin: 1.0980966325vw auto 0;
  }
  .cnt_l .contact .tel .ttl_s {
    font-size: 1.2445095168vw;
  }
  .cnt_l .contact .tel .num {
    font-size: 2.4890190337vw;
    margin-top: 0.2928257687vw;
  }
  .cnt_l .contact .tel .num::before {
    width: 2.0497803807vw;
    height: 2.0497803807vw;
    margin-right: 0.2196193265vw;
  }
  .cnt_l .contact .tel .time {
    font-size: 0.9516837482vw;
    margin-top: 0.3660322108vw;
  }
  .cnt_l .contact .txt02 {
    font-size: 1.2445095168vw;
    margin-top: 0.3660322108vw;
  }
  .cnt_r {
    right: 1.4641288433vw;
    border-radius: 0 2.9282576867vw 2.9282576867vw 0;
  }
  .cnt_r .slide-wrap {
    width: 90%;
    max-width: 23.4260614935vw;
    margin: 7.5402635432vw auto 0 auto;
  }
  .cnt_r .slide-wrap .ttl-products {
    font-size: 1.1713030747vw;
  }
  .cnt_r .slide-wrap .pc-slider:after {
    top: -7.1742313324vw;
    width: 10.6149341142vw;
    height: 12.8111273792vw;
  }
  .cnt_r .slide-wrap .pc-slider .slide .slick-item {
    border-radius: 1.0980966325vw;
  }
  .cnt_r .slide-wrap .pc-slider .pc-arrow_box .pc-slide-arrow {
    width: 2.196193265vw;
    height: 2.196193265vw;
  }
  .cnt_r .slide-wrap .pc-slider .pc-arrow_box .pc-slide-arrow.prev-arrow {
    left: -1.0980966325vw;
  }
  .cnt_r .slide-wrap .pc-slider .pc-arrow_box .pc-slide-arrow.next-arrow {
    right: -1.0980966325vw;
  }
  .cnt_r .famipay-wrap {
    margin-top: 7.027818448vw;
  }
  .cnt_r .famipay-wrap p {
    font-size: 1.4641288433vw;
    margin-bottom: 1.9765739385vw;
  }
  .cnt_r .famipay-wrap .btn-wrap:after {
    right: -1.4641288433vw;
    top: -12.4450951684vw;
    max-width: 15.3733528551vw;
    max-height: 16.2518301611vw;
  }
  .cnt_r .famipay-wrap .btn-wrap .btn {
    width: 100%;
    max-width: 26.3543191801vw;
    max-height: 7.027818448vw;
    font-size: 1.0248901903vw;
    padding-left: 12.0790629575vw;
    padding-right: 2.196193265vw;
    border-radius: 1.1713030747vw;
  }
  .cnt_r .famipay-wrap .btn-wrap .btn:after {
    left: 1.0980966325vw;
    width: 42%;
    max-width: 9.8828696925vw;
    max-height: 4.6852122987vw;
  }
}
/* ---------------------------------------
  main
-----------------------------------------*/
/* animation
--------------------------------*/
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 20px);
  transition: 2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* common
--------------------------------*/
.c-title .en-ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 10rem; /* 277.778% */
  letter-spacing: 5.04px;
  opacity: 0.5;
}
@media screen and (min-width: 921px) {
  .c-title .en-ttl {
    font-size: 22px;
    line-height: 58.667px; /* 266.667% */
    letter-spacing: 3.08px;
  }
}
.c-title .ttl {
  text-align: center;
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 10rem; /* 185.185% */
}
@media screen and (min-width: 921px) {
  .c-title .ttl {
    font-size: 36px;
    line-height: 60px; /* 166.667% */
  }
}

.cta {
  text-align: center;
  margin-top: 4.5rem;
}
.cta .txt {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.cta_btn {
  margin-top: 4.5rem;
}
.cta_btn a {
  position: relative;
  height: 14.5rem;
  display: flex;
  align-items: center;
  padding: 1rem 2.8rem;
  background: linear-gradient(0deg, rgb(214, 103, 103) 9.71%, rgb(186, 60, 60) 48%, rgb(214, 103, 103) 51%, rgb(214, 103, 103) 100%);
  border-radius: 1rem;
  box-shadow: 0 0 0.5rem rgba(176, 30, 88, 0.2);
}
.cta_btn a p {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.3888888889;
}
.cta_btn a p .small {
  font-size: 80%;
}
.cta_btn a p .time {
  display: block;
  font-size: 2.7rem;
  margin-top: 0.5rem;
}
.cta_btn a .arw {
  width: 2.8rem;
  height: 2.8rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 2.5rem;
  top: calc(50% - 1.4rem);
}
.cta_btn a .arw::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.8rem 0px 0.8rem 1.3rem;
  border-color: transparent transparent transparent #A52020;
  position: absolute;
  right: 0.6rem;
  top: calc(50% - 0.8rem);
}

/* sec-fv
--------------------------------*/
.sec-fv {
  position: relative;
  z-index: 2;
}
.sec-fv .fv-ttl {
  width: 100%;
}
.sec-fv .fv-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8rem;
  margin: 0 auto;
  width: 57.1rem;
}
@media screen and (min-width: 921px) {
  .sec-fv .fv-img {
    bottom: -10px;
    width: 338px;
  }
}

/* sec-concept
--------------------------------*/
.sec-concept {
  position: relative;
  margin-top: -8rem;
  padding: 18rem 0 60.3rem 0;
  background: url("../img/bg_concept.png") no-repeat center top;
  background-size: cover;
  box-sizing: border-box;
  z-index: 1;
}
@media screen and (min-width: 921px) {
  .sec-concept {
    margin-top: -70px;
    padding: 100px 0 330px 0;
  }
}
.sec-concept .ttl {
  text-align: center;
  font-size: 6.4rem;
  font-weight: 600;
  line-height: 9.6rem; /* 150% */
  letter-spacing: 5.12px;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 921px) {
  .sec-concept .ttl {
    font-size: 38px;
    line-height: 58px; /* 152.632% */
    letter-spacing: 3.04px;
    margin-bottom: 50px;
  }
}
.sec-concept .txt {
  text-align: center;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 8rem; /* 222.222% */
  letter-spacing: 1.44px;
}
@media screen and (min-width: 921px) {
  .sec-concept .txt {
    font-size: 20px;
    line-height: 42px; /* 210% */
    letter-spacing: 0.8px;
  }
}
.sec-concept .txt + .txt {
  margin-top: 4rem;
}
@media screen and (min-width: 921px) {
  .sec-concept .txt + .txt {
    margin-top: 30px;
  }
}
.sec-concept .atten {
  text-align: center;
  margin-top: 3rem;
  color: #828282;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 7rem; /* 291.667% */
}
@media screen and (min-width: 921px) {
  .sec-concept .atten {
    margin-top: 20px;
    font-size: 12px;
    line-height: 40px; /* 333.333% */
  }
}

/* sec-about
--------------------------------*/
.sec-about {
  margin-top: -7.2rem;
  padding: 18rem 0 12rem 0;
  background: #F8F8F8;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-about {
    margin-top: -45px;
    padding: 105px 0 47px 0;
  }
}
.sec-about .c-title {
  margin-bottom: 5.8rem;
}
@media screen and (min-width: 921px) {
  .sec-about .c-title {
    margin-bottom: 48px;
  }
}
.sec-about .c-title .ttl {
  width: 65.9rem;
  margin: 0 auto;
}
@media screen and (min-width: 921px) {
  .sec-about .c-title .ttl {
    width: 387px;
  }
}
.sec-about .txt {
  text-align: center;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 7rem; /* 218.75% */
}
@media screen and (min-width: 921px) {
  .sec-about .txt {
    font-size: 18px;
    font-weight: 500;
    line-height: 41.067px; /* 228.148% */
  }
}
.sec-about .txt + .txt {
  margin-top: 4rem;
}
@media screen and (min-width: 921px) {
  .sec-about .txt + .txt {
    margin-top: 30px;
  }
}
.sec-about .slider-container {
  width: 100%;
  margin-top: 9.7rem;
  display: flex;
  overflow: hidden;
}
@media screen and (min-width: 921px) {
  .sec-about .slider-container {
    margin-top: 56px;
  }
}
.sec-about .slider-container .slider-wrapper {
  display: flex;
  animation: horizontal-animation 30s linear infinite;
}
.sec-about .slider-container .slide {
  width: 187.6rem;
}
@media screen and (min-width: 921px) {
  .sec-about .slider-container .slide {
    width: 1103px;
  }
}

/* sec-products
--------------------------------*/
.sec-products {
  padding: 3rem 0 28.2rem 0;
  background: #F8F8F8;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-products {
    padding: 40px 0 158px 0;
  }
}
.sec-products .c-title {
  margin-bottom: 8.7rem;
}
@media screen and (min-width: 921px) {
  .sec-products .c-title {
    margin-bottom: 50px;
  }
}
.sec-products .bnr-box .box-links {
  display: block;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.1);
  border-radius: 3rem;
  overflow: hidden;
}
@media screen and (min-width: 921px) {
  .sec-products .bnr-box .box-links {
    box-shadow: 0 2.347px 35.2px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
  }
}
@media screen and (min-width: 921px) {
  .sec-products .bnr-box .box-links:hover .box-txt:before {
    opacity: 0;
  }
  .sec-products .bnr-box .box-links:hover .box-txt:after {
    opacity: 1;
  }
}
.sec-products .bnr-box .box-img {
  width: 100%;
  aspect-ratio: 130/73;
}
@media screen and (min-width: 921px) {
  .sec-products .bnr-box .box-img {
    aspect-ratio: 393/223;
  }
}
.sec-products .bnr-box .box-txt {
  position: relative;
  background: #fff;
  padding: 4.2rem 11.8rem 4rem 5rem;
}
@media screen and (min-width: 921px) {
  .sec-products .bnr-box .box-txt {
    padding: 24px 70px 23px 30px;
  }
}
.sec-products .bnr-box .box-txt:before, .sec-products .bnr-box .box-txt:after {
  position: absolute;
  right: 3.8rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  background-size: 100% 100% !important;
  width: 8rem;
  height: 8rem;
  transition: 0.4s;
}
@media screen and (min-width: 921px) {
  .sec-products .bnr-box .box-txt:before, .sec-products .bnr-box .box-txt:after {
    right: 22px;
    width: 48px;
    height: 48px;
  }
}
.sec-products .bnr-box .box-txt:before {
  opacity: 1;
  background: url("../img/ico_arrow.png") no-repeat center center;
}
.sec-products .bnr-box .box-txt:after {
  opacity: 0;
  background: url("../img/ico_arrow_b.png") no-repeat center center;
}
.sec-products .bnr-box .box-txt .ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 3.5rem; /* 87.5% */
  letter-spacing: 3.2px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 921px) {
  .sec-products .bnr-box .box-txt .ttl {
    font-size: 24px;
    line-height: 20.533px; /* 87.5% */
    letter-spacing: 1.877px;
  }
}
.sec-products .bnr-box .box-txt .text {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 3.5rem; /* 134.615% */
}
@media screen and (min-width: 921px) {
  .sec-products .bnr-box .box-txt .text {
    font-size: 15px;
    line-height: 20.533px; /* 134.615% */
  }
}
.sec-products .bnr-box + .bnr-box {
  margin-top: 4rem;
}
@media screen and (min-width: 921px) {
  .sec-products .bnr-box + .bnr-box {
    margin-top: 25px;
  }
}

/* sec-point
--------------------------------*/
.sec-point {
  margin-top: -8rem;
  padding: 20rem 0 21rem 0;
  background: url("../img/bg_point.png") no-repeat center top;
  background-size: cover;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-point {
    margin-top: -40px;
    padding: 90px 0 95px 0;
  }
}
.sec-point .c-title {
  margin-bottom: 15.4rem;
}
@media screen and (min-width: 921px) {
  .sec-point .c-title {
    margin-bottom: 93px;
  }
}
.sec-point .point-box {
  text-align: center;
}
.sec-point .point-box + .point-box {
  margin-top: 11rem;
}
@media screen and (min-width: 921px) {
  .sec-point .point-box + .point-box {
    margin-top: 60px;
  }
}
.sec-point .point-box .box-num {
  text-align: center;
  margin-bottom: 4.2rem;
}
@media screen and (min-width: 921px) {
  .sec-point .point-box .box-num {
    margin-bottom: 24px;
  }
}
.sec-point .point-box .box-num span {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.6px;
  padding: 1.1rem 2.8rem;
  box-sizing: border-box;
  border-radius: 4.2rem;
}
@media screen and (min-width: 921px) {
  .sec-point .point-box .box-num span {
    font-size: 20px;
    line-height: 21.12px; /* 105.6% */
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 25.907px;
  }
}
.sec-point .point-box .box-img {
  width: 56rem;
  height: 56rem;
  border-radius: 100%;
  background: #fff;
  overflow: hidden;
  margin: 0 auto 3rem auto;
}
@media screen and (min-width: 921px) {
  .sec-point .point-box .box-img {
    width: 329px;
    height: 329px;
    margin: 0 auto 18px auto;
  }
}
.sec-point .point-box .box-ttl {
  display: inline-block;
  text-align: center;
  font-size: 5rem;
  font-weight: 700;
  line-height: 8.4rem; /* 168% */
  margin: 0 auto 2.8rem auto;
}
@media screen and (min-width: 921px) {
  .sec-point .point-box .box-ttl {
    font-size: 30px;
    line-height: 49.867px; /* 166.222% */
    margin: 0 auto 20px auto;
  }
}
.sec-point .point-box .box-ttl span {
  display: inline-block;
  padding: 0 1.2rem 1.2rem 1.2rem;
  background-image: radial-gradient(circle, #0054A7 0.2rem, transparent 0.2rem);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 1.6rem 0.4rem;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-point .point-box .box-ttl span {
    padding: 0 8px 10px 8px;
    background-image: radial-gradient(circle, #0054A7 2px, transparent 2px);
    background-size: 14px 4px;
  }
}
.sec-point .point-box .box-txt {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 7rem; /* 218.75% */
}
@media screen and (min-width: 921px) {
  .sec-point .point-box .box-txt {
    font-size: 18px;
    line-height: 40px; /* 222.222% */
  }
}
.sec-point .point-box .box-note {
  color: #828282;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 7rem; /* 291.667% */
}
@media screen and (min-width: 921px) {
  .sec-point .point-box .box-note {
    font-size: 14px;
    line-height: 40px; /* 285.714% */
  }
}
.sec-point .point-box.box01 .box-num span {
  background: rgba(0, 84, 167, 0.1);
}
.sec-point .point-box.box02 .box-num span {
  background: #F9EFF0;
}
.sec-point .point-box.box03 .box-num span {
  background: #FCFCE9;
}
.sec-point .point-box.box04 .box-num span {
  background: #E8F2D9;
}

/* sec-recommended
--------------------------------*/
.sec-recommended {
  margin-top: -11rem;
  padding: 19rem 0 23rem 0;
  background: url("../img/bg_recommended.png") no-repeat center top;
  background-size: cover;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-recommended {
    margin-top: -92px;
    padding: 110px 0 140px 0;
  }
}
.sec-recommended .c-title {
  margin-bottom: 7.2rem;
}
@media screen and (min-width: 921px) {
  .sec-recommended .c-title {
    margin-bottom: 25px;
  }
}
.sec-recommended .recommend-slider .slick-item {
  border-radius: 2.6rem;
  overflow: hidden;
  box-shadow: 0 3.475px 34.754px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  margin: 0 1.4rem;
}
@media screen and (min-width: 921px) {
  .sec-recommended .recommend-slider .slick-item {
    border-radius: 26px;
    margin: 0 9px;
  }
}
.sec-recommended .recommend-slider .slick-item .item-img {
  aspect-ratio: 584/480;
  width: 100%;
  overflow: hidden;
}
.sec-recommended .recommend-slider .slick-item .item-txt {
  padding: 2.5rem 4.6rem 2.8rem 4.6rem;
  min-height: 15rem;
  background: #fff;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-recommended .recommend-slider .slick-item .item-txt {
    padding: 15px 27px 17px 27px;
    min-height: 88px;
  }
}
.sec-recommended .recommend-slider .slick-item .item-txt p {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 4.8rem; /* 171.429% */
}
@media screen and (min-width: 921px) {
  .sec-recommended .recommend-slider .slick-item .item-txt p {
    font-size: 16px;
    line-height: 28px; /* 175% */
  }
}
.sec-recommended .arrow_box .slide-arrow {
  position: absolute;
  top: calc(50% + 5rem);
  background: url("../img/arrow_slide.svg") no-repeat center center;
  background-size: 100% 100% !important;
  width: 8rem;
  height: 8rem;
  z-index: 3;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transform-origin: center;
  transition: 0.4s;
  cursor: pointer;
}
@media screen and (min-width: 921px) {
  .sec-recommended .arrow_box .slide-arrow {
    top: calc(50% + 36px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 921px) {
  .sec-recommended .arrow_box .slide-arrow:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    background: url("../img/arrow_slide_blue.svg") no-repeat center center;
    background-size: 100% 100% !important;
    opacity: 0;
    transition: opacity 0.3s ease; /* 透明度だけを変化させる */
    z-index: -1; /* テキストの下に配置 */
  }
}
.sec-recommended .arrow_box .slide-arrow.prev-arrow {
  left: 3.6rem;
  transform: scale(-1, 1);
}
@media screen and (min-width: 921px) {
  .sec-recommended .arrow_box .slide-arrow.prev-arrow {
    left: 26px;
  }
}
.sec-recommended .arrow_box .slide-arrow.next-arrow {
  right: 3.6rem;
}
@media screen and (min-width: 921px) {
  .sec-recommended .arrow_box .slide-arrow.next-arrow {
    right: 26px;
  }
}
@media screen and (min-width: 921px) {
  .sec-recommended .arrow_box .slide-arrow:hover:before {
    opacity: 1;
  }
}
.sec-recommended .dots-box {
  margin-top: 5rem;
}
@media screen and (min-width: 921px) {
  .sec-recommended .dots-box {
    margin-top: 36px;
  }
}
.sec-recommended .dots-box .dots-wrap {
  display: flex;
  justify-content: center;
}
.sec-recommended .dots-box .dots-wrap li {
  position: relative;
  width: 2rem;
  height: 2rem;
  margin: 0 1rem;
  background: #0054A7;
  border-radius: 50%;
  opacity: 0.1;
  cursor: pointer;
}
@media screen and (min-width: 921px) {
  .sec-recommended .dots-box .dots-wrap li {
    width: 10px;
    height: 10px;
    margin: 0 8px;
  }
}
.sec-recommended .dots-box .dots-wrap li:hover, .sec-recommended .dots-box .dots-wrap li.slick-active {
  opacity: 1;
}
.sec-recommended .dots-box .dots-wrap li button {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  visibility: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

/* sec-buy
--------------------------------*/
.sec-buy {
  position: relative;
  z-index: 2;
  margin-top: -6.5rem;
  padding: 17rem 0 22.2rem 0;
  background: url("../img/bg_buy.png") no-repeat center top;
  background-size: 100% auto;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-buy {
    margin-top: -42px;
    padding: 100px 0 130px 0;
  }
}
.sec-buy .c-title {
  margin-bottom: 9rem;
}
@media screen and (min-width: 921px) {
  .sec-buy .c-title {
    margin-bottom: 50px;
  }
}
.sec-buy .logo {
  width: 52.6rem;
  margin: 0 auto 9.9rem auto;
}
@media screen and (min-width: 921px) {
  .sec-buy .logo {
    width: 316px;
    margin: 0 auto 54px auto;
  }
}
.sec-buy .txt {
  width: 40rem;
}
@media screen and (min-width: 921px) {
  .sec-buy .txt {
    width: 222px;
  }
}
.sec-buy .txt p {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 170%; /* 61.2px */
  letter-spacing: 2.16px;
}
@media screen and (min-width: 921px) {
  .sec-buy .txt p {
    font-size: 21px;
    letter-spacing: 1.26px;
  }
}
.sec-buy .btn-wrap {
  position: relative;
  margin-top: 8.1rem;
}
@media screen and (min-width: 921px) {
  .sec-buy .btn-wrap {
    margin-top: 47px;
  }
}
.sec-buy .btn-wrap:after {
  position: absolute;
  right: -5rem;
  top: -32rem;
  display: block;
  content: "";
  background: url("../img/deco_famipay.png") no-repeat center center;
  background-size: 100% auto;
  width: 38rem;
  height: 44.3rem;
  z-index: 1;
}
@media screen and (min-width: 921px) {
  .sec-buy .btn-wrap:after {
    right: -34px;
    top: -190px;
    width: 223px;
    height: 260px;
  }
}
.sec-buy .btn-wrap .btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 64rem;
  height: 12rem;
  font-size: 3.5rem;
  line-height: 4rem; /* 114.286% */
  font-weight: 700;
  color: #fff;
  padding-left: 13.8rem;
  border-radius: 2.4rem;
  background: #0054A7;
  box-shadow: 0 2px 4px -8px rgba(22, 143, 255, 0.63), 0 0 12px 0 #FFF inset, 0 -24px 32px 0 rgba(255, 255, 255, 0.22) inset, 0 8px 24px -16px rgba(255, 255, 255, 0.24) inset;
  margin: 0 auto;
  z-index: 2;
  transition: 0.4s;
}
@media screen and (min-width: 921px) {
  .sec-buy .btn-wrap .btn {
    width: 376px;
    height: 70px;
    font-size: 21px;
    line-height: 23.467px; /* 111.746% */
    padding-left: 77px;
    border-radius: 20px;
    box-shadow: 0 1.173px 2.347px -4.693px rgba(22, 143, 255, 0.63), 0 0 7.04px 0 #FFF inset, 0 -14.08px 18.773px 0 rgba(255, 255, 255, 0.22) inset, 0 4.693px 14.08px -9.387px rgba(255, 255, 255, 0.24) inset;
  }
}
.sec-buy .btn-wrap .btn:after {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  background: url("../img/logo_famipay.png") no-repeat center center;
  background-size: 100% auto;
  width: 8rem;
  height: 8rem;
  z-index: 1;
}
@media screen and (min-width: 921px) {
  .sec-buy .btn-wrap .btn:after {
    left: 15px;
    width: 48px;
    height: 48px;
  }
}
@media screen and (min-width: 921px) {
  .sec-buy .btn-wrap .btn:hover {
    opacity: 1;
    color: #0054A7;
    background: #fff;
    box-shadow: 0 1.173px 2.347px -4.693px rgba(22, 143, 255, 0.63), 0 0 7.04px 0 #FFF inset, 0 -14.08px 18.773px 0 rgba(255, 255, 255, 0.22) inset, 0 4.693px 14.08px -9.387px rgba(255, 255, 255, 0.24) inset;
  }
}

/* sec-faq
--------------------------------*/
.sec-faq {
  position: relative;
  margin-top: -8rem;
  background: #F8F8F8;
  padding: 20rem 0 12.2rem 0;
  z-index: 1;
}
@media screen and (min-width: 921px) {
  .sec-faq {
    margin-top: -40px;
    padding: 100px 0 72px 0;
  }
}
.sec-faq .c-title {
  margin-bottom: 4.2rem;
}
@media screen and (min-width: 921px) {
  .sec-faq .c-title {
    margin-bottom: 24px;
  }
}
.sec-faq .acd .box-q {
  position: relative;
  padding: 4.5rem 6.7rem 2.6rem 11rem;
  border-bottom: 1px solid #0054A7;
  cursor: pointer;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-faq .acd .box-q {
    padding: 26px 45px 15px 70px;
    transition: 0.4s;
  }
  .sec-faq .acd .box-q:hover {
    opacity: 0.7;
  }
}
.sec-faq .acd .box-q:before, .sec-faq .acd .box-q:after {
  position: absolute;
  right: 2.2rem;
  top: 6rem;
  display: block;
  content: "";
  background: #0054A7;
  border-radius: 35%;
}
@media screen and (min-width: 921px) {
  .sec-faq .acd .box-q:before, .sec-faq .acd .box-q:after {
    right: 13px;
    top: 33px;
  }
}
.sec-faq .acd .box-q:before {
  margin-right: 0.8rem;
  width: 0.4rem;
  height: 2rem;
}
@media screen and (min-width: 921px) {
  .sec-faq .acd .box-q:before {
    margin-right: 5px;
    width: 2px;
    height: 12px;
  }
}
.sec-faq .acd .box-q:after {
  margin-top: 0.8rem;
  width: 2rem;
  height: 0.4rem;
}
@media screen and (min-width: 921px) {
  .sec-faq .acd .box-q:after {
    margin-top: 5px;
    height: 2px;
    width: 12px;
  }
}
.sec-faq .acd .box-q .num {
  position: absolute;
  left: 0;
  top: 2rem;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 10rem; /* 277.778% */
  letter-spacing: 2.88px;
}
@media screen and (min-width: 921px) {
  .sec-faq .acd .box-q .num {
    font-size: 21px;
    line-height: 58.667px; /* 279.365% */
    letter-spacing: 1.68px;
  }
}
.sec-faq .acd .box-q .txt {
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 4.8rem; /* 171.429% */
  letter-spacing: 1.12px;
}
@media screen and (min-width: 921px) {
  .sec-faq .acd .box-q .txt {
    font-size: 16px;
    line-height: 28.16px; /* 176% */
    letter-spacing: 0.64px;
  }
}
.sec-faq .acd .box-q.open:before {
  display: none;
}
.sec-faq .acd .box-a {
  position: relative;
  display: none;
  padding: 2.5rem 0 4rem 8.5rem;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-faq .acd .box-a {
    padding: 14px 0 40px 50px;
  }
}
.sec-faq .acd .box-a .num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 10rem; /* 277.778% */
  letter-spacing: 2.88px;
}
@media screen and (min-width: 921px) {
  .sec-faq .acd .box-a .num {
    font-size: 21px;
    line-height: 58.667px; /* 279.365% */
    letter-spacing: 1.68px;
  }
}
.sec-faq .acd .box-a .txt {
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 5.6rem; /* 200% */
  letter-spacing: 1.12px;
}
@media screen and (min-width: 921px) {
  .sec-faq .acd .box-a .txt {
    font-size: 16px;
    line-height: 32px; /* 200% */
    letter-spacing: 0.64px;
  }
}

/* ---------------------------------------
footer
-----------------------------------------*/
#footer {
  position: relative;
  padding: 13rem 4rem 8.8rem;
  background-color: #fff;
}
@media screen and (min-width: 921px) {
  #footer {
    padding: 76px 23px 46px;
  }
}
#footer .f-logo {
  width: 36rem;
  margin: 0 auto 8.4rem auto;
}
@media screen and (min-width: 921px) {
  #footer .f-logo {
    width: 211px;
    margin: 0 auto 50px auto;
  }
}
#footer .atten-txt li {
  position: relative;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 4rem; /* 173.913% */
  letter-spacing: 0.92px;
  padding-left: 2rem;
}
@media screen and (min-width: 921px) {
  #footer .atten-txt li {
    font-size: 13px;
    line-height: 23.467px; /* 180.513% */
  }
}
#footer .atten-txt li:before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "・";
  letter-spacing: -8.28px;
}
@media screen and (min-width: 921px) {
  #footer .atten-txt li:before {
    letter-spacing: -4.68px;
  }
}
#footer .copyright {
  margin: 7rem 0 0 0;
  text-align: center;
  font-weight: 700;
  line-height: 200%; /* 28px */
  font-size: 2.4rem;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 921px) {
  #footer .copyright {
    margin: 42px 0 0 0;
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}
#footer .txt {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 200%; /* 40px */
  letter-spacing: 1px;
}
@media screen and (min-width: 921px) {
  #footer .txt {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}
#footer .txt a {
  text-decoration: underline;
}

/* ---------------------------------------
clearfix
-----------------------------------------*/
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* ---------------------------------------
animation
-----------------------------------------*/
@keyframes horizontal-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* End Hack */