@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/* -----------------------------------------
 modal
------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.modal.is-open {
  display: block;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.7);
  visibility: hidden;
  opacity: 0;
  -webkit-animation: modalOvFadeIn 600ms cubic-bezier(.23, 1, .32, 1);
  animation: modalOvFadeIn 600ms cubic-bezier(.23, 1, .32, 1);
}
.modal.is-open .modal-overlay {
  visibility: visible;
  opacity: 1;
}
.modal-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 93%;
  max-width: 96rem;
  height: fit-content;
  -webkit-animation: modalCtFadeIn 1000ms cubic-bezier(.23, 1, .32, 1);
  animation: modalCtFadeIn 1000ms cubic-bezier(.23, 1, .32, 1);
  box-sizing: border-box;
}
.modal.is-open .modal-content {
  transform: translateY(0); 
}
.modal-close {
  position: absolute;
  top: -60px;
  right: -20px;
  width: 60px;
  height: 60px;
}
.modal-close.is-hide {
  display: none;
}
.modal-close::before,
.modal-close::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 2px;
  height: 30px;
  background-color: #ccc;
}
.modal-close::before {
  transform: rotate(45deg);
}
.modal-close::after {
  transform: rotate(-45deg);
}
/* movie-box */
.movie-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.movie-box::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.movie-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.movie-box2::before {
  content: "";
  display: block;
  padding-top: 63.5%;
}
.movie-box video#video2, .movie-box video#video4, .movie-box video#video5 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
}
@media screen and (max-width: 768px) {
.movie-box2::before {
  padding-top: 106.5%;
}
.movie-box video#video2, .movie-box video#video4, .movie-box video#video5 {
  width: 60%;
}
.tap-btn {
  width: 90px;
}
}
@media screen and (max-width: 559px) {
.movie-box2::before {
  padding-top: 142%;
}
.movie-box video#video2, .movie-box video#video4, .movie-box video#video5 {
  width: 80%;
}
}

.birthday_present a.tap-btn:hover{
  opacity: 1;
}
.tap-btn {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  transform: translate(-50%, -50%);
}
.info-detail {
  display: none;
}
@-webkit-keyframes modalCtFadeIn {
  from {
      opacity: 0;
      -webkit-transform: translate3d(0, 5rem, 0);
      transform:translate3d(0, 5rem, 0)
  }
  to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform:translate3d(0, 0, 0)
  }
}
@keyframes modalCtFadeIn {
  from {
      opacity: 0;
      -webkit-transform: translate3d(0, 5rem, 0);
      transform:translate3d(0, 5rem, 0)
  }
  to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0)
  }
}

/* swiper */
.birthday_present {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}
.birthday_present .swiper-custom-parent{
  width: 100%;
  max-width: 100rem;
  /*padding: 0 10rem;*/
  margin: 0 auto;
  position: relative;
}
.birthday_present .swiper-button-next,
.birthday_present .swiper-container-rtl .swiper-button-prev {
  background-image: none;
}
.birthday_present .swiper-button-prev,
.birthday_present .swiper-container-rtl .swiper-button-next {
  background-image: none;
}
.birthday_present .slider-wrap .swiper-slide {
  position: relative;
}
.birthday_present .slider-wrap .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 71%;
}

.birthday_present .slider-wrap .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.birthday_present .swiper-custom-parent .swiper-button-next:after {
  content: "";
  display: block;
  width: 14px;
  height: 37px;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -30px;
  margin-top: -18px;
  margin-right: -7px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
/*  background-image: url("../img/nav_icon.svg?$staticlink$");*/
  background-repeat: no-repeat;
  background-position: center center;
}
.birthday_present .swiper-custom-parent .swiper-button-prev:after {
  content: "";
  display: block;
  width: 14px;
  height: 37px;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -18px;
  margin-left: -7px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
/*  background-image: url("../img/nav_icon.svg?$staticlink$");*/
  background-repeat: no-repeat;
  background-position: center center;
  right: 0;
  transform: rotate(180deg);
}

.birthday_present {
  line-height: 1.5;
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}
.birthday_present p {}
.birthday_present img {
  max-width: 100%;
  vertical-align: bottom;
}
.birthday_present a {
  text-decoration: none;
  color: #333;
}
.birthday_present a:hover{
  opacity: .8;
}


/*ーーーー 共通　ーーーー */
.birthday_present .wrapper{
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}
.birthday_present .wrapper-inner{
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}
.birthday_present .txt{
  letter-spacing: .16em;
  line-height: 2.5;
}

/*ーーーー メイン　ーーーー */
.birthday_present .main_visual {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  margin-bottom: 7rem;
  background-color: #EFEFF1;
}
.birthday_present .main_visual .headding-1{
  max-width: 1280px;
  max-height: 600px;
  margin: 0 auto;
}

/*ーーーー 作例一覧 ーーーー*/
#example{
  margin-bottom: 13rem;
}
#example .ttl{
  width: 100%;
  max-width: 48rem;
  margin: 0 auto 4rem;
}
.imagebox{
  width: 100%;
  margin: 0 auto;
  height: 140px;
}
.auto-slide-container{
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  overflow: hidden;
}
.auto-slide-wrapper{
  display: flex;
  flex-flow: row nowrap;
  width: 1376px;
  flex: none;
}
.imagebox .auto-slide-container.anime .auto-slide-wrapper{
  -webkit-animation: loop 120s -60s linear infinite;
  animation: loop 120s -60s linear infinite;
}
.imagebox .auto-slide-container.anime .auto-slide-wrapper + .auto-slide-wrapper{
  -webkit-animation: loop2 120s linear infinite;
  animation: loop2 120s linear infinite;
}
.auto-slide-wrapper .auto-slide img{
  display: block;
  width: 100%;
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
 @-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

/*ーーーー イントロ　ーーーー */
.birthday_present .intro{
  text-align: center;
}
.birthday_present .intro .headding-2{
  font-size: 3rem;
  line-height: 2;
  margin-bottom: 7rem;
}
.birthday_present .intro p{
  font-size: 1.8rem;
  letter-spacing: .15em;
  line-height: 2.5;
}
.contents_menu_wrap{
  width: 100%;
  max-width: 100rem;
  margin: 10rem auto;
  display: flex;
  justify-content: space-between;
}
.contents_menu_layout{
  width: 45%;
  text-align: center;
}
.contents_menu_layout img{
  border-radius: 8px;
  margin-bottom: 5rem;
}
.birthday_present .intro .contents_menu_layout p.ttl{
  font-size: 2.4rem;
  font-weight: 500;
}
.birthday_present .intro .contents_menu_layout p{
  font-size: 1.6rem;
}
.contents_menu_layout a{
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
  display: block;
  border: solid 1px #707070;
  margin-top: 6rem;
  padding: 1.5rem 0;
  border-radius: 4px;
  position: relative;
}
.contents_menu_layout a::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 14px;
  height: 1px;
  background-color: #333333;
  transform:translateY(-5px) rotate(45deg);
}
.contents_menu_layout a::after{
  content: "";
  position: absolute;
  top: 50%;
  right:  1.5rem;
  width: 14px;
  height: 1px;
  background-color: #333333;
  transform:translateY(5px) rotate(-45deg);
}
.other_menu{
  width: 100%;
  max-width: 100rem;
  margin: 0 auto 15rem;
  border-top:solid 1px #CCCCCC;
  border-bottom: solid 1px #CCCCCC;
  display: flex;
  justify-content: space-around;
  padding: 2.6rem 0;
}
.other_menu li a{
  display: block;
}
.other_menu li a img{
  width: 33px;
  vertical-align: middle;
  margin-right: 1rem;
}
/*ーーーー family　ーーーー */
#family, #partner{
  margin-top: 10rem;
}
#family > .wrapper-inner, #partner > .wrapper-inner{
  background-repeat: no-repeat;
  background-position: right 3rem;
  background-size: 17px 384px;
  padding: 3rem 0;
}
#family .headding-2, #partner .headding-2{
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: .15em;
}
#family .headding-3, #partner .headding-3{
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 2.5;
  margin: 7rem 0 5rem;
}
#family .headding-4, #partner .headding-4{
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 2;
  margin: 0 0 4rem;
}
.birthday_present .special{
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: flex;
}
.birthday_present .special > div{
  width: 50%;
}
.birthday_present .special .label{
  background-color: #F2F2F2;
  padding: .5rem 2rem;
  display: inline-block;
  margin-bottom: 5rem;
  letter-spacing: .15em;
}
.birthday_present .special .headding-3{
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 2;
  margin-bottom: 4rem;
}
.birthday_present .special .txt{
  line-height: 1.8;
  margin-bottom: 3rem;
}
.birthday_present .special_photo img{
  border-radius: 8px;
  border: solid 1px #EBEBEB;
}

/*商品*/
.product_wrap{
  border: solid 1px #CCCCCC;
  padding: 6rem 5rem;
  margin-bottom: 12rem;
}
.product_inner{
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.product_img{
  width: 40%;
  max-width: 38rem;
}
.product_detail{
  width: calc((100% - 40%) - 5rem);
  max-width: 50rem;
}
.product_detail p{
  margin-top: .6rem;
  letter-spacing: .15em;
}
.product_ttl{
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .15em;
}
.product_txt{
  font-size: 1.4rem;
  line-height: 2;
}
.product_price span{
  font-size: 3.2rem;
  font-weight: bold;
}
.product_delivery{
  padding: 1rem;
  font-size: 1.4rem;
  border-bottom: solid 1px #707070;
}
.product_note{
  margin: 1rem 0 2rem; 
  font-size: 1.4rem;
  padding-left: 1rem;
  letter-spacing: .15em;
}
.product_note li{
  margin-bottom: .3rem;
}
.product_note li span.white, .product_note li span.blue, .product_note li span.black, .product_note li span.gray{
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: solid 1px #ccc;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin: 0 .1rem;
}
.product_note li span.blue{
  background-color: #1A2549;
  border: none;
}
.product_note li span.black{
  background-color: #000000;
  border: none;
}
.product_note li span.gray{
  background-color: #88888E;
  border: none;
}
#bag .product_note li:last-child{
  padding-left: 3.9em;
}
.product_link{
  display: flex;
  justify-content: space-between;
}
.product_link a{
  width: calc((100% - 3rem) / 2);
  display: block;
  padding: 1rem 0 1.2rem;
  background-color: #F8F8F8;
  border-radius: 4px;
  border: solid 1px #707070;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}
.product_link a.black{
  background-color: #333;
  color: #fff;
}
.movie-btn{
  display: block;
  width: 85%;
  margin: 0 auto;
  border: solid 1px #707070;
  border-radius: 4px;
  text-align: center;
  letter-spacing: .15em;
  padding: 1.5rem 0;
  margin-top: 2.5rem;
  position: relative;
}
.movie-btn::before{
  content: "";
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  left: 2rem;
  width: 35px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}
/*タブ*/
.tab_wrap{
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}
.tab_wrap ul{
  display: flex;
  justify-content:center;
}
.tab_wrap ul li:not(:last-child){
  margin-right: .5rem;
}
.birthday_present .tab_wrap ul li a:hover{
  opacity: 1;
}
.tab_wrap ul li a{
  display: block;
  color: #767676;
  font-size: 1.4rem;
  font-weight: bold;
  padding: .8rem 1rem .4rem;
  border-radius: 10px 10px 0 0;
}
.tab_wrap ul li a.active, .tab_wrap ul li a.active_2, .tab_wrap ul li a.active_3{
  color: #000;
  border: solid 1px #ccc;
  border-bottom: solid 2px #fff;
  position: relative;
}
.tab_wrap ul li a.active::before, .tab_wrap ul li a.active_2::before, .tab_wrap ul li a.active_3::before{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #fff;
  z-index: 10;
}
.tab_wrap ul li a span.mug, .tab_wrap ul li a span.calendar, .tab_wrap ul li a span.shuffle, .tab_wrap ul li a span.photobook, .tab_wrap ul li a span.halfsize, .tab_wrap ul li a span.shuffle_2, .tab_wrap ul li a span.walldecor{
  width: 34px;
  height: 34px;
  background-size: 204px 68px;
  background-position: 0 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: .3rem;
}
.tab_wrap ul li a span.calendar{background-position: -34px 0;}
.tab_wrap ul li a span.shuffle, .tab_wrap ul li a span.shuffle_2{background-position: -68px 0;}
.tab_wrap ul li a span.photobook{background-position: -102px 0;}
.tab_wrap ul li a span.halfsize{background-position: -136px 0;}
.tab_wrap ul li a span.walldecor{background-position: -170px 0;}

.tab_wrap ul li a.active span.mug{background-position: 0 -34px;}
.tab_wrap ul li a.active span.calendar{background-position: -34px -34px;}
.tab_wrap ul li a.active span.shuffle, .tab_wrap ul li a.active span.shuffle_2{background-position: -68px -34px;}
.tab_wrap ul li a.active span.photobook{background-position: -102px -34px;}
.tab_wrap ul li a.active span.halfsize{background-position: -136px -34px;}
.tab_wrap ul li a.active span.walldecor{background-position: -170px -34px;}

.product_block{
  display: none;
}
.product_block.active, .product_block.active_2, .product_block.active_3{
  display: block;
}

/*ーーーー partner　ーーーー */
#step .headding-2, #faq .headding-2, #voice .headding-2, #other .headding-2, #family .headding-2, #partner .headding-2{
  text-align: center;
  padding-bottom: 7rem;
  position: relative;
  margin:10rem auto 5rem;
}
#step .headding-2::before, #faq .headding-2::before, #voice .headding-2::before, #other .headding-2::before, #family .headding-2::before, #partner .headding-2::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 60px;
  background-color: #707070;
}
#step .headding-2::after, #faq .headding-2::after, #voice .headding-2::after, #other .headding-2::after, #family .headding-2::after, #partner .headding-2::after{
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 33px;
  height: 33px;
  border:solid 1px #707070;
  border-radius: 50%;
}
#partner .about .headding-2{
  font-size: 2.2rem;
  font-weight: 500;
  margin: 10rem auto 6rem;
  padding-bottom: 0;
}
#partner .about .headding-2::before, #partner .about .headding-2::after{
  display: none;
}
.about .ttl{
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  margin: 8rem 0 5rem;
  line-height: 2;
  letter-spacing: .16em;
}
.about ul{
  display: flex;
  border-right: solid 1px #707070;
  border-bottom: solid 1px #707070;
  flex-wrap: wrap;
}
.about ul li{
  width: 25%;
  text-align: center;
  border: solid 1px #707070;
  border-right: none;
  border-bottom: none;
  padding: 2rem 0 ;
}
.about ul li p.ttl{
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .1em;
}
.about ul li p.txt{
  line-height: 1.6;
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 .6rem;
}
.about ul li img{
  max-width: 180px;
}

/*ーーーー 簡単4ステップ ーーーー*/
#step{
  margin: 15rem 0 7rem;
  padding: 6rem 0 10rem;
  background-color: #F2F2F2;
}
#step .headding-2, #faq .headding-2, #voice .headding-2, #other .headding-2{
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 2;
  margin: 0 0 5rem;
}
#step ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 2rem;
}
#step ul li{
  width: calc((100% - 7.5rem) / 4);
  font-size: 1.6rem;
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem 1rem 2rem;
}
#step ul li:not(:first-child){
  margin-left: 2.5rem;
}
#step ul li div{
  background-color: #000;
  text-align: left;
  display: inline-block;
  color: #fff;
  border-radius: 4px;
  padding: .3rem 2rem;
}
#step ul li img{
  margin-bottom: 1rem;
}
#step ul li p{
  text-align: center;
}


/*ーーーー　よくある質問　ーーーー*/
#faq{
  margin-top: 7rem;
}
#faq .fqa_block{
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  border-radius: 10px;
  padding: 1.5rem 2rem .5rem;
}
.q_block{
  padding-bottom: 2rem;
  border-bottom: solid 1px #888888;
}
.q_block, .a_block > div{
  display: flex;
}
.q_block span, .a_block span{
  flex: 1;
  padding-top: .4rem;
}
.q_block span.icon, .a_block span.icon{
  width: 3.2rem;
  margin-right: 1rem;
  flex: none;
  padding-top: 0;
}
.a_block{
  display: none;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.a_block span a{
  text-decoration: underline;
}
.a_block.active{
  display: block;
}
a.btn_faq_other{
  width: 100%;
  max-width:41.5rem; 
  display: block;
  border: solid 1px #333333;
  color: #333333;
  font-weight: 500;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 4px;
  padding: 1.6rem 0;
  margin: 3rem auto 12rem;
}

/*ーーーー 体験者の声 ーーーー*/
#voice{
  background-color: #F2F2F2;
  padding: 7rem 0;
  margin-bottom: 10rem;
}
#voice .voice_wrap{
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#voice .voice_wrap li{
  width: calc((100% - 4%) / 3);
  margin-top: 6.5rem;
  background-color: #fff;
  border-radius: 8px;
}
#voice .voice_wrap li .img{
  width: 28%;
  margin: 0 auto;
  margin-top: -5rem;
}

#voice .voice_wrap li .txt{
  padding: 2.4rem;
  position: relative;
  line-height: 1.8;
}

#voice .voice_wrap li .txt:nth-child(odd){
  margin-right: 3%;
}

/*ーーーー その他の写真プレゼント特集 ーーーー*/
#other{
  margin-bottom: 10rem;
}
#other .ttl{
  width: 44rem;
  margin: 0 auto 5rem;
}
#other ul {
  width: 100%;
  max-width: 87rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
#other ul li{
  width: calc((100% - 10rem) / 3);
  margin-bottom: 5rem;
  text-align: center;
}
#other ul li:not(:nth-child(3n)){
  margin-right: 5rem;
}
#other ul li a img{
  border-radius: 20px;
}
#other ul li a span{
  margin-top: 1rem;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-right: 2.4rem;
}
#other ul li a span::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 16px;
  height: 16px;
  border: solid 1px #707070;
  border-radius: 50%;
}
#other ul li a span::after{
  content: "";
  position: absolute;
  top: 50%;
  right: .6rem;
  width: 5px;
  height: 5px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 1280px) {
  .fun_wrap{
    max-width: 128rem;
    margin: 0 auto 12rem;
  }

}
@media screen and (max-width: 1080px) {
  .contents_menu_wrap{
    padding: 0 2rem;
    justify-content:space-around;
  }
  .birthday_present .intro .contents_menu_layout p{
    font-size: 1.4rem;
  }
  #family > .wrapper-inner, #partner > .wrapper-inner{
    padding: 0 3rem ;
    background-position:98% 0;
    background-size: contain;
  }
  #family > .headding-3, #partner > .headding-3{
    margin: 5rem 0 3rem;
  }
  .birthday_present .special{
    padding: 0 3rem;
  }
  .birthday_present .about ul.wrapper{
    max-width: 85rem;
  }
  #voice .voice_wrap{
    padding: 0 3rem;
  }
  #voice .voice_wrap li{
    width: calc((100% - 5%) / 3);
  }
  .birthday_present .product_wrap.wrapper{
    width: 94%;
  }
}
@media screen and (max-width: 960px) {
  .birthday_present .intro .contents_menu_layout p{
    font-size: 1.4rem;
  }
  .contents_menu_layout a{
    margin-top: 4rem;
  }
  .other_menu li a{
    font-size: 1.4rem;
  }
  .birthday_present .special{
    margin-bottom: 5rem;
  }
  .birthday_present .special .label{
    margin-bottom: 3rem;
  }
  .birthday_present .special .txt{
    margin-bottom: 1.5rem;
  }
  #family .headding-4, #partner .headding-4{
    font-size: 2rem;
    margin: 0 0 3rem;
  }
  .birthday_present .special{
    margin-bottom: 5rem;
  }
  /*ーーーー 商品　ーーーー */
  .product_wrap{
    padding: 3rem 3rem 3rem 5rem;
  }
  .product_img{
    width: 40%;
    align-self: center;
  }
  .product_ttl{
    font-size: 2.2rem;
  }
  .product_detail{
    width: calc((100% - 40%) - 5rem);
  }
  .product_txt{
    line-height: 1.8;
  }
  .product_txt br{
    display: none;
  }
  .product_price span{
    font-size: 2.8rem;
  }
  .product_detail p{
    font-size: 1.4rem;
  }
  .product_link a{
    width: calc((100% - 2rem) / 2);
    padding: .8rem 0 1rem;
    font-size:1.6rem;
  }
  .tab_wrap ul{
    margin-left: 1rem;
  }
  .tab_wrap::before {
    bottom: -2rem;
    right: 2rem;
    width: 12.8rem;
    height: 10.1rem;
  }
  .tab_wrap ul li a{
    padding: .8rem .6rem .4rem
  }
  .movie-btn{
    padding: 1rem 0;
  }
  .movie-btn::before{
    width: 30px;
    height: 18px;
  }
  .birthday_present .about ul.wrapper{
    width: 94%;
  }
  .about ul li{
    padding: 1.5rem 0 2rem;
  }
  .about ul li img{
    max-width: 180px;
  }
  .about ul li p.ttl{
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
  .about ul li p.txt{
    font-size: 1.2rem;
    line-height: 1.6;
  }
  /*ーーーー 簡単4ステップ ーーーー*/
  #step .ttl{
    max-width: 64.8rem;
  }
  #step ul li{
  width: calc((95% - 7rem) / 4);
  font-size: 1.6rem;
  }
  #step ul li:not(:first-child){
    margin-left: 2.5rem;
  }
  
  /*ーーーー　よくある質問　ーーーー*/
  #faq{
    padding: 0 2rem;
  }
  #faq .fqa_block{
    margin-bottom: 0;
  }
  /*ーーーー　体験者の声　ーーーー*/
  #voice .voice_wrap{
    padding: 0 2rem;
  }
  #voice .voice_wrap li .txt{
    font-size: 1.4rem;
    letter-spacing: .1em;
    line-height: 1.6;
    padding: 2rem;
  }
  /*ーーーー　その他の写真プレゼント特集　ーーーー*/
  #other ul {
    padding: 0 2rem;
  }
  #other ul li{
    width: calc((100% - 6rem) / 3);
    margin-bottom: 3rem;
  }
  #other ul li:not(:nth-child(3n)){
    margin-right: 3rem;
  }
}

/* pc */
@media screen and (min-width: 769px) {
  .birthday_present .sp-only {
    display: none;
  }
  .birthday_present .sp-only.tb-only {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .birthday_present .pc-only {
    display: none;
  }
  .birthday_present .sp-only {
    display: block;
  }
  .birthday_present .txt{
    line-height: 2;
  }
  .birthday_present .main_visual {
    margin-bottom: 3rem;
  }
  /*ーーーー イントロ　ーーーー */
  .birthday_present .intro .headding-2{
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .birthday_present .intro p{
    font-size: 1.4rem;
  }
  .contents_menu_wrap{
    margin: 5rem auto;
    padding: 0 1rem;
  }
  .contents_menu_layout{
    width: 47%;
    display: flex;
    flex-direction: column;
  }
  .contents_menu_layout img{
    margin-bottom: 1rem;
  }
  .birthday_present .intro .contents_menu_layout p.ttl{
    font-size: 1.6rem;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-self: center;
    align-content: center;
    margin-bottom: .8rem;
    text-align: center;
    letter-spacing: .1em;
  }
  .birthday_present .intro .contents_menu_layout p{
    font-size: 1.2rem;
    text-align: left;
    flex-grow: 1;
    line-height: 1.7;
    letter-spacing: .1em;
  }
  .contents_menu_layout a{
    width: 96%;
    margin-top: 1.5rem;
    padding: .6rem 0;
    font-size: 1.4rem;
  }
  .contents_menu_layout a::before{
    width: 10px;
  }
  .contents_menu_layout a::after{
    width: 10px;
    transform: translateY(2px) rotate(-45deg);
  }
  .other_menu{
    display: block;
    text-align: left;
    margin-bottom: 6rem;
    padding: 1.6rem 1.5rem;
  }
  .other_menu li:not(:first-child){
    margin-top: 1.5rem;
  }
  /*ーーーー family partner　ーーーー */
  #family, #partner{
    margin-top: 0;
  }
  #family > .wrapper-inner, #partner > .wrapper-inner{
    background-image: none;
    padding: 0;
  }
  #family .headding-2, #partner .headding-2{
  font-size: 2.2rem;
  padding-bottom: 4.5rem;
  }
  #family .headding-2::before, #partner .headding-2::before{
    height: 35px;
  }
  #family .headding-2::after, #partner .headding-2::after{
    bottom: -12px;
    width: 25px;
    height: 25px;
  }
  #family .headding-3, #partner .headding-3{
    padding: 0 1.5rem;
    font-size: 1.8rem;
    margin: 3rem 0;
    line-height: 2;
  }
  #family .read_txt, #partner .read_txt{
    padding: 0 2.5rem 0 1.5rem;
    font-size: 1.4rem;
    letter-spacing: .12em;
  }
  .birthday_present .special{
    margin-top: 5rem;
    margin-bottom: 2rem;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0;
  }
  .birthday_present .special > div{
    width: 100%;
    order: 1;
  }
  .birthday_present .special > div.special_layout{
    order: 2;
    margin-top: 3rem;
  }
  .birthday_present .special .label{
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .birthday_present #family .special .headding-4, .birthday_present #partner .special .headding-4{
    font-size: 1.8rem;
    padding-left: 1.8rem;
    margin: 0 0 2rem;
  }
  .birthday_present .special .txt{
    padding-left: 2.2rem;
    padding-right: 1.5rem;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .birthday_present .special_photo img{
    border-radius: 0;
  }
  /*ーーーー 商品　ーーーー */
  .birthday_present .product_wrap.wrapper{
    width: 90%;
    margin: 3rem auto 6rem;
  }
  .product_wrap{
    margin-bottom: 8rem;
    padding: 0;
    border:none;
  }
  .product_wrap:last-child{
    margin-bottom: 5rem;
  }
  .product_inner{
    display: block;
  }
  .product_img{
    width: 88%;
    margin: 0 auto 3rem;
    max-width: none;
  }
  .product_detail{
    width: 100%;
  }
  .product_ttl{
    font-size: 2rem;
  }
  .product_detail p{
    line-height: 1.6;
    margin-top: 1.5rem;
  }
  p.product_price{
    margin-top: 1.5rem;
  }
  .product_price span {
    font-size: 2.6rem;
  }
  .product_delivery{
    padding-top: 0;
    font-size: 1.2rem;
  }
  .product_note{
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
  .product_link a{
    width: calc((100% - 1.5rem) / 2);
    font-size: 1.6rem;
  }
  .movie-btn{
    padding: .9rem 0;
    font-size: 1.4rem;
  }
  .movie-btn::before{
    width: 31px;
    height: 22px;
  }
  .tab_wrap{
    padding: 0 1rem;
    border-bottom: solid 1px #ccc;
  }
  .tab_wrap li{
    width: calc(100% / 4);
  }
  .tab_wrap ul li a{
    font-size: 1rem;
    text-align: center;
    line-height: 1.2;
  }
  .tab_wrap ul li a span.mug, .tab_wrap ul li a span.photobook, .tab_wrap ul li a span.shuffle, .tab_wrap ul li a span.calendar, .tab_wrap ul li a span.halfsize, .tab_wrap ul li a span.shuffle_2, .tab_wrap ul li a span.walldecor{
    display: block;
    margin: 0 auto;
  }
  .tab_wrap::before{
    content:"";
    position: absolute;
    bottom: 8rem;
    right: 0;
    width: 9.8rem;
    height: 7rem;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  /*ーーーー 作例一覧 ーーーー*/
  #example {
    margin-bottom: 6rem;
}
  #example .ttl{
    width: 90%;
    margin: 0 auto 2rem;
  }
  /*ーーーー partner　ーーーー */
  #step .headding-2, #faq .headding-2, #voice .headding-2, #other .headding-2{
    font-size: 1.8rem;
    padding-bottom: 4rem;
    margin:0 auto 3rem;
  }
  #step .headding-2::before, #faq .headding-2::before, #voice .headding-2::before, #other .headding-2::before, #family .headding-2::before, #partner .headding-2::before{
    height: 35px;
  }
  #step .headding-2::after, #faq .headding-2::after, #voice .headding-2::after, #other .headding-2::after, #family .headding-2::after, #partner .headding-2::after{
    bottom: -12px;
    width: 25px;
    height: 25px;
  }

  /*ーーーー about ーーーー*/
  .birthday_present .about{
    margin-bottom: 3rem;
  }
  .about .ttl{
    text-align: center;
    font-size: 1.6rem;
    margin: 5rem 0 3rem;
  }
  .birthday_present .about ul.wrapper{
    width: 90%;
    margin: 0 auto;
  }
  .about ul li{
    width: 50%;
    padding: 1rem 0 2rem;
  }
  .about ul li p.ttl{
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .about ul li p.txt{
    font-size: 1.2rem;
  }
  .about ul li img{
    max-width: 163px;
  }
  
  /*ーーーー 簡単4ステップ ーーーー*/
  #step{
    margin: 6rem 0 0;
    padding: 4rem 0;
  }
  #step .ttl{
    margin-bottom: 2rem;
  }
  #step ul{
    margin-bottom: 0;
  }
  #step ul li{
    width: calc((100% - 1.5rem) / 2);
    padding: 1rem;
  }
  #step ul li:not(:first-child){
    margin-left: 0;
  }
  #step ul li:nth-child(even){
    margin-left: 1.5rem;
  }
  #step ul li:nth-child(n+3){
    margin-top: 1.5rem;
  }
  #step ul li p{
    font-size: 1.4rem;
  }
  
  
  /*ーーーー　よくある質問　ーーーー*/
  #faq .ttl{
    max-width: 18rem;
    margin: 0 auto 5rem;
  }
  #faq .fqa_block{
    width: 100%;
    max-width: 91rem;
    margin: 0 auto 0;
    padding: 1rem 0;
  }
  .q_block span.icon, .a_block span.icon{
    width: 2.6rem;
    margin-right: .6rem;
    flex: none;
    padding-top: 0;
  }
  .q_block span, .a_block span {
    padding-top: 0.2rem;
  }
  a.btn_faq_other{
    width: 90%;
    font-size: 1.4rem;
    padding: 1.6rem ;
    margin: 3rem auto 6rem;
  }
  /*ーーーー 体験者の声 ーーーー*/
  #voice{
    padding: 3.5rem 0 6rem;
    margin-bottom: 5rem;
  }
  #voice .ttl{
    width: 100%;
    max-width: 18rem;
    margin: 0 auto 3rem;
  }
  #voice .voice_wrap{
    display:block;
    padding: 0 2.5rem;
  }
  #voice .voice_wrap li{
    width: 100%;
    font-size: 1.4rem;
    margin-top: 5rem;
    padding-top: 1.5rem;
  }
  #voice .voice_wrap li:first-child{
    margin-top: 7rem;
  }
  #voice .voice_wrap li .img{
    width: 22%;
  }
  #voice .voice_wrap li .txt{
    width: 100%;
    padding:.8rem 1.8rem 1.5rem;
    letter-spacing: .1em;
  }
  /*ーーーー　その他の写真プレゼント特集　ーーーー*/
  #other {
    margin-bottom: 6rem;
}
  #other .ttl{
    width: 23rem;
    margin: 0 auto 5rem;
  }
  #other ul {
    padding: 0 2rem;
  }
  #other ul li{
    width: calc((100% - 2.5rem) / 2);
    margin-bottom: 2.5rem;
  }
  #other ul li:not(:nth-child(3n)){
    margin-right: 0;
  }
  #other ul li:not(:nth-child(2n)){
    margin-right: 2.5rem;
  }
}
/* SP用 */
@media screen and (max-width: 559px) {

  .birthday_present .sp-nowrap {
    white-space: nowrap;
  }
  .contents_menu_wrap{
    justify-content:space-between;
    padding: 0 1.8rem;
  }
  .birthday_present .intro_layout p {
    font-size: 4.10vw;
  }
  .q_block span, .a_block span{
    font-size: 4.10vw;
  }
  #other ul li a span{
    font-size: 4.10vw;
  }
  #step ul li{
    font-size: 4.10vw;
  }

}