@charset "UTF-8";

/*共通*/
p {
    line-height: 1.6;
    word-wrap: break-word;
    font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif , 'ヒラギノ角ゴ Pro W3';
}
.contents{
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    color: #333;
    background: #fff;
}
.contents-box{
	max-width: 100%;
	margin: 0 auto;
	box-sizing:border-box;
}
a:link, a:visited, a:hover, a:active {
    color: #fff;
    text-decoration: none;
}
a:hover {
    opacity: 0.7;
}
.pc_ds{
    display: block;
}
.sp_ds{
    display: none;
}
img{
    max-width: 100%;
    max-height: 100%;
}
picture img {
    width: 100%;
    height: auto;
}

/*----------sp------------*/
@media (max-width: 767px) { 
/*共通*/
.contents{
    width: 100%;
}
.contents-box{
	max-width: 750px;
}

.sp_ds{
    display: block;
}
.pc_ds{
    display: none;
}
}


/*　ページ内　*/
header {
    max-width: 1100px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.logo{
    height: 55px;
}
.hr-r {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}
.h-cta {
    height: 55px;
    margin-right: 20px;
}
.menu {
    margin: 5px;
    border-radius: 5px;
    border: 1px solid #cfcfcf;
    padding: 10px;
}
@media (max-width: 767px) { 
header {
    height: 60px;
    padding: 5px;
}
.logo{
    height: 40px;
}
.h-cta {
    margin: 0 5px 0 10px;
    height: 40px;
}
}
/* ハンバーガーメニューボタン */
.hamburger-menu {
  /*position: fixed;*/
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  z-index: 1001;
}
@media (max-width: 1650px) { 
.hamburger-menu.active{
  position: fixed;
}
}
.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
/* アクティブ状態（Xアニメーション） */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* 3Dスライドメニュー */
.slide-menu.three-d-menu {
  position: fixed;
  top: 0;
  right: -370px;
  width: 310px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  box-shadow: -1px 0 2px rgb(0 0 0 / 11%);
  transform: perspective(800px) rotateY(45deg) translateZ(-100px);
  transform-origin: right;
  overflow-y: auto;
  overflow-x: hidden;
}
.slide-menu.three-d-menu.active {
  right: 0;
  transform: perspective(800px) rotateY(0deg) translateZ(0);
}
.menu-list {
  list-style: none;
  padding: 80px 0 0 0;
  margin: 0;
}
.menu-list li {
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateX(50px) rotateY(-30deg) translateZ(-50px);
  transition: all 0.5s ease-in-out;
}
.slide-menu.three-d-menu.active .menu-list li {
  opacity: 1;
  transform: translateX(0) rotateY(0deg) translateZ(0);
}
.slide-menu.three-d-menu.active .menu-list li:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.three-d-menu.active .menu-list li:nth-child(2) { transition-delay: 0.2s; }
.slide-menu.three-d-menu.active .menu-list li:nth-child(3) { transition-delay: 0.3s; }
.slide-menu.three-d-menu.active .menu-list li:nth-child(4) { transition-delay: 0.4s; }
.menu-list a {
  display: block;
  padding: 10px 25px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  transform: perspective(200px) rotateY(0deg);
  border-left: 3px solid transparent;
}
.menu-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: perspective(200px) rotateY(10deg) translateZ(10px);
  border-left-color: rgba(255, 255, 255, 0.5);
}

/*mv*/
.mv_area.pc_ds{
    position: relative;
    background-image: url('../img/mv_imgbg_pc.jpg');
    background-image: url('../img/mv_imgbg_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 1051px;
}
.mv_area.pc_ds h1{
    margin: 0 auto;
    max-width: 1090px;
    width: 100%;
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.cta-mv{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 988px;
    width: 96%;
}
@media (max-width: 1100px) { 
.mv_area.pc_ds{
    height: 931px;
}
}
@media (max-width: 910px) { 
.mv_area.pc_ds{
    height: 875px;
}
}
@media (max-width: 815px) { 
.mv_area.pc_ds{
    height: 805px;
}
}
@media (max-width: 767px) { 
.mv_area{
    position: relative;
}
.cta-mv {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    -webkit-transform: none;
    -ms-transform: unset;
    width: auto;
}
}

/*cta*/
.cta_out{
    margin: 55px 30px;
}
.cta{
    position: relative; 
    max-width: 1100px;
    margin: 0 auto;
}
.cta-btn{
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 60%;
}
@media (max-width: 767px) { 
.cta_out{
    margin: auto;
}
.cta-btn{
    position: absolute;
    top: 42%;
    bottom: 20%;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
}
/* 光 */
.shine{
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.shine::before{
    content: '';
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shine 3s ease-in-out infinite;
    position: absolute;
    top: -180px;
    left: 0;
    opacity: 0;
    transform: rotate(45deg);
}

/* 光の動き */
@keyframes shine{
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/*拡大縮小*/
div.cv_btn {
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin:center;
}
@keyframes anime1 {
  from {
    transform: scale(0.9,0.9);
  }
  to {
    transform: scale(1,1);
  }
}

/*こんな方に向いています！*/
#lis01{
    height: 877px;
}
@media (max-width: 910px) { 
#lis01{
    height: 814px;
}
}
@media (max-width: 767px) { 
#lis01{
    height: auto;
}
}
.lis01_area{
    padding: 90px 30px;
    background-image: url('../img/img_01_bg.jpg');
    background-image: url('../img/img_01_bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.lis01_box{
    margin: 0 auto;
    max-width: 965px;
}
.lis01_box h2{
    margin: 0 0 10px;
}

/*「BRAND物販PLUS」とは？*/
.lis02_area{
    position: relative;
    padding: 90px 30px;
    margin: 0 auto;
    max-width: 1100px;
}
.lis02_area h2{
    width: 40%;
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

/*「BUYMA」なのか？*/
.lis03_area .lis03_tit{
    position: relative;
    height: 228px;
    background-image: url('../img/img_03_titbk_pc.jpg');
    background-image: url('../img/img_03_titbk_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.lis03_area .lis03_tit h2{
    padding: 40px 30px;
    width: 96%;
    max-width: 659px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.lis03_box{
    height: 576px;
    background-image: url('../img/img_03_pc.jpg');
    background-image: url('../img/img_03_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.lis03_box div{
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 94%;
    max-width: 946px;
}

/*だから今、BUYMAが熱い！*/
.lis04_area .lis04_tit{
    position: relative;
    height: 172px;
    background-image: url('../img/img_04_titbg_pc.jpg');
    background-image: url('../img/img_04_titbg_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.lis04_area .lis04_tit h2{
    padding: 40px 30px;
    width: 96%;
    max-width: 663px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.lis04_box{
    height: 652px;
    background-image: url('../img/img_04_pc.jpg');
    background-image: url('../img/img_04_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.lis04_box div{
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 96%;
    max-width: 861px;
}

/*リスクと作業を最小化した仕組み*/
.lis05_area{
    position: relative;
    height: 1546px;
    background-image: url('../img/img_05_bg_pc.jpg');
    background-image: url('../img/img_05_bg_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.lis05_box{
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 1100px;
    width: 100%;
}
@media (max-width: 1100px) { 
.lis05_box{
    width: 96%;
}
}
.lis05_box h2{
    width: 100%;
    max-width: 850px;
    margin: 0 auto 75px;
}
.lis05_box div{
    width: 100%;
}
.lis05_box picture,
.lis05_box img {
  width: 100%;
  display: block;
}

/*しかし・・・*/
.lis05-02_area{
    padding: 0 30px 90px;
    margin-top: -30px;
    z-index: 10;
    position: relative;
}
.lis05-02_box{
    margin: 0 auto;
    max-width: 900px;
}
.lis05-02_box h2{
    margin: 0 auto 70px;
    max-width: 736px;
}
@media (max-width: 767px) { 
.lis05-02_area{
    padding: 0;
    margin-top: 0;
}
}

/*3つの理由*/
.lis06_area{
    position: relative;
    height: 1823px;
    background-image: url('../img/img_07_bg_pc.jpg');
    background-image: url('../img/img_07_bg_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 910px) { 
.lis06_area{
    height: 1643px;
}
}
.lis06_box{
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 1000px;
    width: 96%;
}
.lis06_box h2{
    max-width: 749px;
    width: 100%;
    margin: 0 auto 50px;
}

/*他のFC事業との比較*/
.lis07_area .lis07_tit{
    position: relative;
    height: 211px;
    background-image: url('../img/img_09_titbk_pc.jpg');
    background-image: url('../img/img_09_titbk_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.lis07_area .lis07_tit h2{
    padding: 40px 30px;
    width: 96%;
    max-width: 663px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.lis07_box{
    height: 691px;
    background-image: url('../img/img_09_pc.jpg');
    background-image: url('../img/img_09_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.lis07_box div{
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 96%;
    max-width: 861px;
}

/*サポートの充実*/
.lis08_area{
    height: 1024px;
    background-image: url('../img/img_10_bg_pc.jpg');
    background-image: url('../img/img_10_bg_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.lis08_box{
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 950px;
    width: 96%;
}
.lis08_box h2{
    margin: 0 auto 20px;
    max-width: 787px;
    width: 96%;
}

/*実績　slider*/
.merchandise_area{
    height: 404px;
    background-image: url('../img/img_11_titbk_pc.jpg');
    background-image: url('../img/img_11_titbk_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.merchandise_area h2{
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 704px;
    width: 96%;
}
.merchandise_txt{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 534px;
    width: 96%;
}
.merchandise-box{
    position: relative;
    margin: 0px auto 100px;
    max-width: 900px;
}
.merchandise-box .swiper {
  width: 100%;
  height: 100%;
}
.merchandise-box .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.merchandise-box .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merchandise-box .swiper-button-next, .swiper-button-prev {
    color: #004b89;
}
.merchandise-box .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -25px);
}
.merchandise-box .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -26px);
}
.merchandise-box .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, -39px);
}
@media (max-width: 767px) { 
.merchandise-box{
    margin: 50px 30px 100px;
}
}

/*声*/
.voice_area{
    height: 523px;
    background-image: url('../img/img_12_titbk_pc.jpg');
    background-image: url('../img/img_12_titbk_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.voice_area h2{
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 1021px;
    width: 96%;
}
.voice-box{
    position: relative;
    margin: -60px auto 100px;
    max-width: 690px;
    box-shadow: 0px 0 5px rgb(0 0 0 / 11%);
}
.txt-area {
    padding: 40px 30px;
}
.voice-box hr {
    color: #9A9B9A;
}
@media (max-width: 767px) { 
.voice-box{
    margin: 30px 30px 100px;
}
.txt-area {
    padding: 20px 30px;
}
}

/*声　slider*/
.voice-box .swiper {
  width: 100%;
  height: 100%;
}
.voice-box .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.voice-box .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-box .swiper-button-next, .swiper-button-prev {
    color: #004b89;
}
.voice-box .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -25px);
}
.voice-box .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -26px);
}
.voice .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, -39px);
    left: 0;
    top: var(--swiper-pagination-top, auto);
    width: 100%;
}

/*声　アコーディオン*/
/* 個々のアコーディオンリストを囲うタグ */
.accordion{
  font-size: 18px;
  width: 100%;
 margin: 15px auto;
}
/* アコーディオンのタイトル・内容共通 */
.accordion_header,
.accordion_content{
display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
/* アコーディオンのタイトル */
.accordion_header {
  cursor: pointer;
  color: #0036a9;
    font-weight: bold;
}
.accordion_header span{
  color: #1dc2fa;
 margin: 0 10px 0 0;
}
/* アコーディオンの内容 */
.accordion_content {
  display: none;
  color: #333;
}
.accordion_header .area {
  position: relative;
    width: 42px;
    height: 42px;
    border-radius: 100px;
    background-color: #0036a9;
    margin-left: 10px;
}
/* タイトル横のプラスマーク縦線 */
.accordion_header .area::before{
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  width: 20px;
  height: 4px;
  background-color:#fff;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
/* タイトル横のプラスマーク横線 */
.accordion_header .area::after{
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  width: 20px;
  height: 4px;
  background-color:#fff;
  transition: all .3s ease-in-out;
}
/* アコーディオンが開いたとき縦線の変化 */
.accordion_header.open .area::before {
  transform: rotate(180deg);
}
/* アコーディオンが開いたとき横線の変化 */
.accordion_header.open .area::after {
  opacity:0;
}
@media (max-width: 767px) { 
.accordion{
  font-size: 17px;
 margin: 10px auto;
}
.accordion_header div {
    max-width: 80%;
}
.accordion_header .area {
    width: 32px;
    height: 32px;
    margin-left: 0;
}
/* タイトル横のプラスマーク縦線 */
.accordion_header .area::before{
  top: 45%;
  right: 50%;
    left: 20%;
}
/* タイトル横のプラスマーク横線 */
.accordion_header .area::after{
  top: 45%;
  right: 50%;
    left: 20%;
}
}

/*流れ*/
.lis11_area{
    background-color: #fffbe3;
    padding: 90px 30px;
}
.lis11_box{
  max-width: 870px;
  width: 100%;
  margin: 0 auto;
}
.lis11_box h2{
  max-width: 796px;
  width: 100%;
  margin: 0 auto 70px;
}

/*FAQ*/
.lis12_area{
    background-color: #d9f5ff;
    padding: 0 0 90px;
}
.lis12_tit{
    height: 403px;
    background-image: url('../img/img_14_titbk_pc.jpg');
    background-image: url('../img/img_14_titbk_pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.lis12_tit h2{
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 228px;
    width: 96%;
}
.lis12_box{
  max-width: 900px;
  width: 96%;
  margin: -90px auto 0;
}

/*フォーム*/
.foam-area{
  max-width: 750px;
  margin: 0 auto;
}

/*footer*/
.footer {
  background: #0b2e6b; /* 青 */
  width: 100%;
  padding: 60px 20px;
}
.footer-inner {
  max-width: 400px;
  margin: 0 auto;
  color: #fff;
}
.footer-list {
  font-size: 16px;
  line-height: 1.3;
}
.footer-list .row {
  display: flex;
  margin-bottom: 16px;
}
.footer-list dt {
  width: 160px;
  flex-shrink: 0;
}
.footer-list dd {
  margin: 0;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 750px) {
  .footer {
    padding: 40px 15px;
  }
.footer-inner {
  max-width: 95%;
}
 .footer-list {
    font-size: 14px;
 }
  .footer-list .row {
        margin-bottom: 0;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
  }

  .footer-list dt {
    width: 100px;
    margin-bottom: 4px;
  }
}

/*追従*/
.float-area{
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 9999;
        width: 100%;
    background-color: #ffffff96;
}
.float-box{
    max-width: 400px;
    padding: 10px;
    margin: 0 auto;
}
.float {
  display: none;
}

@media (max-width: 767px) { 

}