@charset "utf-8";
/* =============
  theme original
================ */
.h_bar {
    display: none
}
#beltbnr {
    display: none
}


/* =======
  common
========== */

html {
  font-size: 62.5%;
  scroll-padding-top: 100px;
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

 main {
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
  }
body{
	font-family: futura-pt, dnp-shuei-gothic-gin-std, sans-serif;
}
ul,li {
  list-style: none;
}

/* 不要箇所 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
}
svg {
    overflow: visible;
    width: 100%
}
.en{
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
text-orientation: upright;
}

/* ==========
  contents　共通
=========== */
.pc-img {
  display: block;
}
.sp-img {
  display: none;
}
/* 変更しない */
.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.l-content__header {
  width: 900px;
  margin-inline: auto;
}
.lead {
  margin: 0px 0 20px;
  text-align: center;
}

.p-article-vis__img {
  /* padding-top: 10px; */
}



.area{
	/* width: 900px; */
	margin: 0px auto;
	padding-bottom: 100px;
}

.slide-items{
	border-radius: 32.5px;
	margin: 5px 0;
}

.slidenone-items{
	border-radius: 0 32.5px 0 0;
	margin: 20px;
}
.slidenone-guide2{
	border-radius: 0  0 0 32.5px;
	background-color: #fff;
	border: solid 1px #000;
	margin: 20px 0 30px;
}
.slidenone-items2{
	border-radius: 0 32.5px 0 0;
	margin: 20px;
}

/* sliderをカスタマイズするCSS */
.slick-dots {
	/* bottom: -20px!important; */
	width: initial;
	left: auto;
	right: 0;
}
.slick-dots li button:before{
	font-size: 8px!important;
}

.slick-dotted.slick-slider {
    margin-bottom: 20px!important;
}





/*--------------------SP-----------------------------*/
@media screen and (max-width: 767px) {
	html {
    scroll-padding-top: 0;
  }
  .pc-img {
    display: none;
  }
  .sp-img {
    display: block;
  }
  .font-ja {
  color: #484848;
  font-feature-settings: "palt"; /* 句読点を詰める */
  
   /* 両橋を揃える */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

  .column {
    display: block;
  }
  .l-content__header,
  .section-container {
    width: 100%;
  }
.p-article__vis{
  position: relative;
  width: 100%;
  display: inline-block;
 }
.p-article__header {
  position: relative;
  max-width: 960px;
  margin: -5px auto;
  padding: 10px 0;
  background-color: #ffeb80;
}

/* SVGを背景として配置 */
.p-article__header .marker {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}



/* テキスト */
.p-article__header .lead {
  position: relative;
  z-index: 2;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.05em;
}




	

	
	
	
	
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
	
  main {
    padding: 0 0px;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
  }

 main h2, main h3, main h4 {
    margin: 0 auto;
    letter-spacing: 1px;
    color: #000;
  }
  .lead {
    width: 100%;
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
  }
  .lead br {
    /* display: none; */
  }
	

	
	
.area{
	border: none;
	margin: 0 auto;
	width: 100%;
	padding: 0px 0 0px 0;
}
	

	.subtitle{
		border-top: solid 1px #000;
		align-items: anchor-center;
		margin-top: -3px;
	}	
	.subtitle p{
	font-family: "dnp-shuei-gothic-gin-std", sans-serif;
	font-weight: 500;
	font-style: normal;
	}
	.subtitle_p{
		font-size: 17px;
		margin: -3px auto;
	}

/* SVG を画像の上に重ねて中央配置 */

.fv_title2_1 {
  position: absolute;
  top: 50%;               /* ← 画像の真ん中あたりに配置（調整可能） */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 143%;
  pointer-events: none;   /* クリックをブロックしない */
}
.fv_title2 {
  position: absolute;
  top: 50%;               /* ← 画像の真ん中あたりに配置（調整可能） */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 143%;
  pointer-events: none;   /* クリックをブロックしない */
}


/* SVGフェードインアニメーション */
.fv_title2_1 span svg {
  width: 70%;             /* SVGの大きさ（調整OK） */
  opacity: 0;
  animation: fadeIn 2.2s ease-in-out forwards;
}
.fv_title2 span svg {
  width: 70%;             /* SVGの大きさ（調整OK） */
  opacity: 0;
  animation: fadein 0.8s ease-in-out forwards;
}

/* アニメーション定義 */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);  /* 下からふわっと */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(0px);  /* 下からふわっと */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



	
	
/*-------------------------商品レイアウト--------------------*/	
	
.flyingAce{
    max-width:420px;
    margin:auto;
}

.flyingAce__title{
    margin:0 0 30px;
    text-align:center;
    font-size: 25px;
    letter-spacing:.04em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-style: normal;
    transform: scale(0.8, 1);
}

.flyingAce__image{
    border-radius:24px 24px 0 0;
    overflow:hidden;
}

.flyingAce__image img{
    width:100%;
    display:block;
}

.flyingAce__content{background: #ffeb80;padding: 15px 15px;border-radius:0 0 24px 24px;}
.flyingAce__content2{background: #7acf7f;padding: 15px 15px;border-radius: 0 0 24px 24px;}
.flyingAce__content3{background: #f597c0;padding:15px 15px;border-radius:0 0 24px 24px;}
.flyingAce__content4{background: #9ccaf1;padding:15px 15px;border-radius:0 0 24px 24px;}

.flyingAce__head{display:flex;align-items:center;margin-bottom: 10px;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 700;font-style: normal;}

.flyingAce__head .num{font-size: 30px;font-weight:700;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 700;font-style: normal;}

.flyingAce__head .line{width:2px;height: 30px;background:#000;margin: 0 18px;}

.flyingAce__head h3{font-size: 28px;font-weight:700;margin:0;text-align: left;line-height: 27px;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 700;font-style: normal;}

.flyingAce__text{font-size: 13px;line-height:2;margin-bottom:32px;color: #484848;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 500;font-style: normal;text-align: justify;letter-spacing: 1px;}

.flyingAce__price{list-style:none;padding:0;margin:0;}

.flyingAce__price li{display:flex;align-items:center;margin-bottom:16px;justify-content: space-between;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 500;font-style: normal;font-size: 13px;color: #484848;}

.flyingAce__price span:first-child{/* width:180px; */font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 700;font-style: normal;}

.flyingAce__price span:nth-child(2){flex:1;font-weight:700;}

.flyingAce__price a{width: 40px;height: 18px;line-height: 18px;border-radius: 50px;background:#000;color:#fff;text-decoration:none;display:flex;align-items:center;justify-content:center;font-size: 12px;transition:.3s;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 500;font-style: normal;}

.flyingAce__price a:hover{

    transform:scale(1.08);
	opacity: 0.5;

}
	
/*-------------------------バックプリント　吹き出し--------------------*/	
	.backPrint{
    margin: 60px auto 50px;
    width: 100%;
}

.backPrint__image{
    position:relative;
}

.backPrint__image img:first-child{
    width:100%;
    display:block;
}

.backPrint__balloon{position:absolute;width: 62%;top:-7%;right:4%;animation:balloonPop 2.4s ease-in-out infinite;transform-origin:center bottom;}

.backPrint__text{margin: 20px auto;width: 90%;}

.backPrint__text .lead{

    font-weight:700;
    margin-bottom:20px;

}

.backPrint__text p{line-height:2;font-size: 13px;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 500;font-style: normal;text-align: justify;}
	
/*吹き出しアニメーション*/
	@keyframes balloonPop{

    0%{
        transform:translateY(0) scale(1);
    }

    8%{
        transform:translateY(-8px) scale(1.06);
    }

    16%{
        transform:translateY(0) scale(.98);
    }

    24%{
        transform:translateY(-4px) scale(1.02);
    }

    32%{
        transform:translateY(0) scale(1);
    }

    100%{
        transform:translateY(0) scale(1);
    }

}
	.backPrint__balloon{
    animation:
        balloonFloat 2.8s ease-in-out infinite,
        balloonRotate 4s ease-in-out infinite;
}

@keyframes balloonFloat{

    0%,100%{
        transform:translateY(0);
    }

    15%{
        transform:translateY(-10px);
    }

    25%{
        transform:translateY(2px);
    }

    35%{
        transform:translateY(-5px);
    }

}

@keyframes balloonRotate{

    0%,100%{
        rotate:-2deg;
    }

    50%{
        rotate:2deg;
    }

}
	
/* =====================
  共通（ベース）
===================== */


	
.button_lg {
    width: 88%;
    height: 28px;
    line-height: 28px;
    text-align: center;
    transition: 0.3s;
    display: block;
    color: #272727;
    text-decoration: none;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 1px;
    margin: 0 auto;
    border-radius: 50px;
    background-color: #ffeb80;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
 }


  section {
    width: 95%;
    margin: 0px auto 40px;
    position: relative;
  }

  
  .section01 .content01, 
  .section02 .content01,
  .section03 .content01 {
    padding: 0 0 0px;
  }

	

  /*--related link--*/
 

.btn2 {
  text-decoration: none;
  margin: 0 auto;
  padding: 30px 30px 30px;
}
.btn2 a:hover{
    color:  #000;
	opacity: 0.5;
    transition: all 0.5s ease;
  }

}


/*------------------------PC----------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }

 
 ul, li {
    list-style: none;
    font-size: 1.3rem;
    text-align: left;
    padding-left: 0px;
}


  main {
    /* width: 900px; */
    overflow: hidden;
    margin: 30px auto;
    text-align: center;
    font-weight: 500;
  }

.font-ja {
  color: #484848;
  font-feature-settings: "palt"; /* 句読点を詰める */
  
   /* 両橋を揃える */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}


.p-article__vis{
  position: relative;
  width: 100%;
  display: inline-block;
 }
.p-article__header {
  position: relative;
  max-width: 900px;
  margin: -30px auto;
  padding: 10px 0;
  background-color: #ffeb80;
}

/* SVGを背景として配置 */
.p-article__header .marker {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}



/* テキスト */
.p-article__header .lead {
  position: relative;
  z-index: 2;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}

	

	
h3 img {
      width: 17%;
      margin: 0 0 0 0;
      padding: 85px 0 0px 0;
}	
	.p-article__vis{
  position: relative;
  width: 100%;
  display: inline-block;
 }
	
/* SVG を画像の上に重ねて中央配置 */
.fv_title_1 {
  position: absolute;
  top: 50%;               /* ← 画像の真ん中あたりに配置（調整可能） */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 142%;
  pointer-events: none;   /* クリックをブロックしない */
}
.fv_title {
  position: absolute;
  top: 50%;               /* ← 画像の真ん中あたりに配置（調整可能） */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 142%;
  pointer-events: none;   /* クリックをブロックしない */
}


/* SVGフェードインアニメーション */
.fv_title_1 span svg {
  width: 70%;             /* SVGの大きさ（調整OK） */
  opacity: 0;
  animation: fadeIn 2.2s ease-in-out forwards;
}
.fv_title span svg {
  width: 70%;             /* SVGの大きさ（調整OK） */
  opacity: 0;
  animation: fadein 0.8s ease-in-out forwards;
}

/* アニメーション定義 */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);  /* 下からふわっと */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(0px);  /* 下からふわっと */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

	
/*-------------------------商品レイアウト--------------------*/	
	
/* ---------- PC ---------- */

/* PC */

@media screen and (min-width:769px){
.flyingAce__title{
    margin: 0px 0 70px;
    text-align:center;
    font-size: 27px;
    letter-spacing:.04em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-style: normal;
    transform: scale(0.8, 1);
}
.flyingAce{
    display:flex;
    align-items:stretch;
    max-width:1280px;
    margin:0 auto;
    border-radius:30px;
    overflow:hidden;
}

.flyingAce__image{
    width: 65%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.flyingAce__image img{
    width:100%;
    height:100%;
    object-fit:contain; /* 全体表示 */
    display:block;
}

.flyingAce__content{
    width:50%;
    background: #ffeb80;
    padding: 35px 15px;
    display:flex;
    flex-direction:column;
}
.flyingAce__content2{
    width:50%;
    background:#7dc97a;
    padding: 35px 15px;
    display:flex;
    flex-direction:column;
}
.flyingAce__content3{
    width:50%;
    background: #f597c0;
    padding: 35px 15px;
    display:flex;
    flex-direction:column;
}
.flyingAce__content4{
    width:50%;
    background: #9ccaf1;
    padding: 35px 15px;
    display:flex;
    flex-direction:column;
}

.flyingAce__head{
    display:flex;
    align-items:center;
    margin-bottom: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.flyingAce__head .num{
    font-size: 35px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.flyingAce__head .line{
    width:2px;
    height: 35px;
    background:#000;
    margin:0 16px;
}

.flyingAce__head h3{
    margin:0;
    font-size: 35px;
    font-weight:700;
    letter-spacing:.02em;
    text-align: left;
    line-height: 37px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.flyingAce__text{
    flex:1;
    font-size: 13px;
    line-height:2.1;
    letter-spacing:.03em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: justify;
    color: #484848;
    /* padding-bottom: 55px; */
}

.flyingAce__price{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.flyingAce__price li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom: 10px;
}

.flyingAce__price span{
    font-size: 14px;
    color: #484848;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.flyingAce__price a{
    width: 40px;
    height: 22px;
    line-height: 22px;
    border-radius: 50px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#000;
    color:#fff;
    text-decoration:none;
    font-size: 13px;
    transition:.3s;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.flyingAce__price a:hover{
    transform:translateY(-3px);
}

}
	
/*-------------------------バックプリント　吹き出し--------------------*/	
	.backPrint{
    margin: 100px auto 100px;
    width: 100%;
    max-width: 900px;
}

.backPrint__image{
    position:relative;
}

.backPrint__image img:first-child{
    width: 50%;
    display:block;
    margin: 0 auto;
}

.backPrint__balloon{position:absolute;width: 33%;top: -7%;right: 22%;animation:balloonPop 2.4s ease-in-out infinite;transform-origin:center bottom;}

.backPrint__text{margin: 20px auto;width: 90%;}

.backPrint__text .lead{

    font-weight:700;
    margin-bottom:20px;

}

.backPrint__text p{line-height:2;font-size: 13px;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 500;font-style: normal;text-align: justify;width: 55%;margin: 0 auto;}
	
/*吹き出しアニメーション*/
	@keyframes balloonPop{

    0%{
        transform:translateY(0) scale(1);
    }

    8%{
        transform:translateY(-8px) scale(1.06);
    }

    16%{
        transform:translateY(0) scale(.98);
    }

    24%{
        transform:translateY(-4px) scale(1.02);
    }

    32%{
        transform:translateY(0) scale(1);
    }

    100%{
        transform:translateY(0) scale(1);
    }

}
	.backPrint__balloon{
    animation:
        balloonFloat 2.8s ease-in-out infinite,
        balloonRotate 4s ease-in-out infinite;
}

@keyframes balloonFloat{

    0%,100%{
        transform:translateY(0);
    }

    15%{
        transform:translateY(-10px);
    }

    25%{
        transform:translateY(2px);
    }

    35%{
        transform:translateY(-5px);
    }

}

@keyframes balloonRotate{

    0%,100%{
        rotate:-2deg;
    }

    50%{
        rotate:2deg;
    }

}

	
.button_lg {
    width: 33%;
    height: 28px;
    line-height: 28px;
    text-align: center;
    transition: 0.3s;
    display: block;
    color: #272727;
    text-decoration: none;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 1px;
    margin: 0 auto;
    border-radius: 50px;
    background-color: #ffeb80;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
 }

  section {
    width: 800px;
    margin: 0px auto 50px;
    display: block;
    justify-content: center;
  }


  .section01 .content01, 
  .section02 .content01,
  .section03 .content01{
    padding: 0 0 0px;
  }
  .section01 .slide-area, 
  .section02 .slide-area,
  .section03 .slide-area {
    width: 55%;
    order: 0;
    position: relative;
 }
  
  



  /*--related link--*/

.btn2 {
  text-decoration: none;
  margin: 0 auto;
  padding: 30px 30px 80px;
}
.btn2 a:hover{
    color:  #000;
	opacity: 0.5;
    transition: all 0.5s ease;
  }

}





/*--slick カスタマイズ--*/
.content01 .slick-dots li {
  margin: 0;
}
.content01 .slick-dots li button:before {
  opacity: 1;
  color: #333;
}
.content01 .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #848484;
}
.content02 .slick-dots li {
  margin: 0;
}
.content02 .slick-dots li button:before {
  opacity: 1;
  color: #333;
}
.content02 .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #cccccc;
}


/*--スクロール　アニメーション--*/
.fade-in {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.fade-in.on {
  opacity: 1;
}
.fade-up {
  opacity: 0;
  /* transform: translate(0, 30px); */
  transition: all 1.5s;
  /* transform: scale(0.8, 1); */
}
.fade-up.on {
  opacity: 1;
  transform: translateX(0);
  transform: scale(0.8, 1);
}


.fade-left {
  opacity: 0;
  transform: translateX(-50px); 
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-left.on {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(50px); 
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-right.on {
  opacity: 1;
  transform: translateX(0);
}

