@charset "UTF-8";
/*---------------------------------------------
メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
共通
---------------------------------------------*/
html {
  color: #000;
}

/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1.5;
  scroll-behavior: smooth;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

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

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

/*---------------------------------------------
font
---------------------------------------------*/
body {
  font-family: zen-kaku-gothic-antique, sans-serif;
  font-style: normal;
  font-weight: 300;
}

.eg_title {
  font-family: "artifex-hand-cf", sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing: -1px;
}

.sub {
  font-weight: 200;
}

.dot_text {
  font-family: "dotgothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* アニメーション */
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*---------------------------------------------
FV
---------------------------------------------*/
.fv {
  position: relative;
  height: 100svh;
}
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/fv/sp_bg.jpg) center/cover no-repeat;
  opacity: 0;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .fv::before {
    background: url(../images/fv/pc_bg.jpg) center/cover no-repeat;
  }
}
.fv img {
  position: absolute;
  opacity: 0; /* 初期状態は非表示 */
  width: 30%;
}
.fv.animation-start::before {
  opacity: 1;
}
.fv.animation-start .img1 {
  width: 26%;
  -webkit-animation: fade-in 1s ease-out 0.2s forwards;
          animation: fade-in 1s ease-out 0.2s forwards;
}
@media screen and (min-width: 769px) {
  .fv.animation-start .img1 {
    width: auto;
    height: 100vh;
    left: 0;
    top: 0;
  }
}
.fv.animation-start .img2 {
  width: 33%;
  top: 3%;
  right: 2%;
  -webkit-animation: fade-in 1s ease-out 0.4s forwards;
          animation: fade-in 1s ease-out 0.4s forwards;
}
@media screen and (min-width: 769px) {
  .fv.animation-start .img2 {
    width: 21%;
    top: 0;
    right: initial;
    left: 53%;
  }
}
.fv.animation-start .img3 {
  width: 34%;
  top: 16%;
  left: 34%;
  -webkit-animation: fade-in 1s ease-out 0.6s forwards;
          animation: fade-in 1s ease-out 0.6s forwards;
}
@media screen and (min-width: 769px) {
  .fv.animation-start .img3 {
    width: 22%;
    top: 13%;
    left: 29%;
  }
}
.fv.animation-start .img4 {
  width: 34%;
  bottom: 0;
  left: 10%;
  -webkit-animation: fade-in 1s ease-out 0.8s forwards;
          animation: fade-in 1s ease-out 0.8s forwards;
}
@media screen and (min-width: 769px) {
  .fv.animation-start .img4 {
    left: 15%;
    width: 16%;
    bottom: 10%;
  }
}
.fv.animation-start .img5 {
  width: 23%;
  bottom: 0;
  right: 0;
  -webkit-animation: fade-in 1s ease-out 1s forwards;
          animation: fade-in 1s ease-out 1s forwards;
}
.fv.animation-start .logo {
  width: 90%;
  top: 38%;
  left: 4%;
  -webkit-animation: fade-up 1.2s ease-out 1.5s forwards;
          animation: fade-up 1.2s ease-out 1.5s forwards;
}
@media screen and (min-width: 769px) {
  .fv.animation-start .logo {
    width: 39%;
    top: initial;
    bottom: 4%;
    left: 34%;
  }
}
.fv.animation-start .title {
  width: 65%;
  top: 55%;
  left: 4%;
  -webkit-animation: fade-in 1.2s ease-out 2s forwards;
          animation: fade-in 1.2s ease-out 2s forwards;
}
@media screen and (min-width: 769px) {
  .fv.animation-start .title {
    width: 23%;
    top: 5%;
    left: 20%;
  }
}

/*---------------------------------------------
event
---------------------------------------------*/
.event {
  width: 76%;
  margin: 100px auto;
  border: 1px solid #000;
  padding: 30px;
}
@media screen and (min-width: 769px) {
  .event {
    width: 44%;
    padding: 50px 50px 70px;
  }
}
.event .title {
  font-size: 26px;
  text-align: center;
  margin: 0 auto 30px;
}
.event .sub_title {
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.event .link {
  color: #7fa9ff;
  text-align: center;
  display: block;
}
.event .text {
  font-size: 14px;
  text-align: center;
}
.event .text2 {
  line-height: 2;
}

/*---------------------------------------------
main_index
---------------------------------------------*/
@media screen and (min-width: 769px) {
  .pc_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.pc_flex .main_index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 100px;
  padding-top: 50px;
}
@media screen and (min-width: 769px) {
  .pc_flex .main_index {
    width: 32%;
    padding: 50px;
    position: sticky;
    top: 20%;
    left: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.pc_flex .main_index .each_index {
  width: 45%;
  margin: 0 10px 20px;
}
.pc_flex .main_index .each_index a {
  color: #000;
  text-decoration: none;
}
.pc_flex .main_index .each_index .title_img {
  height: 20px;
  margin: auto;
}
.pc_flex .main_index .each_index .title {
  font-size: 11px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: auto;
}
.pc_flex .main_index .each_index .arrow-down {
  display: block;
  text-align: center;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
  -webkit-animation: arrowMove 1.5s ease-in-out infinite;
          animation: arrowMove 1.5s ease-in-out infinite;
  font-variation-settings: "wght" 100;
}
@-webkit-keyframes arrowMove {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    opacity: 0;
  }
}
@keyframes arrowMove {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    opacity: 0;
  }
}

/*---------------------------------------------
occasion
---------------------------------------------*/
@-webkit-keyframes slideAnimation {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes slideAnimation {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.top_title .title {
  font-size: 60px;
  text-align: center;
  line-height: 1;
}
.top_title .title_img {
  width: 60%;
  margin: auto;
}
.top_title .sub {
  font-size: 12px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 10px;
}
.lead {
  font-size: 14px;
  width: 80%;
  margin: 40px auto;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .lead {
    margin: 80px auto;
  }
}

@media screen and (min-width: 769px) {
  .right_wrap {
    position: relative;
    width: 64%;
    overflow: visible;
  }
}

#occasion {
  overflow: visible;
  padding-top: 80px;
  background-color: #EBF0E8;
  /* #item7の音符アニメーション */
  /* .onpu2のアニメーション開始を2秒遅らせる */
}
#occasion .occasion_inner {
  overflow: hidden;
}
#occasion .slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 600%;
  -webkit-animation: slideAnimation 60s linear infinite;
          animation: slideAnimation 60s linear infinite;
}
#occasion .index {
  position: relative;
  height: 70vh;
  margin-bottom: 100px;
}
@media screen and (min-width: 769px) {
  #occasion .index {
    height: 70vh;
    max-width: 50%;
    margin: auto;
  }
}
#occasion .index a .index_img {
  position: absolute;
  width: 20%;
  z-index: 5;
}
#occasion .index a .img1 {
  top: 0;
  left: 24%;
  width: 19%;
}
#occasion .index a .img2 {
  top: 13%;
  left: 4%;
}
@media screen and (min-width: 769px) {
  #occasion .index a .img2 {
    top: 4%;
    left: 0;
  }
}
#occasion .index a .img3 {
  top: 5%;
  left: 46%;
  width: 25%;
}
#occasion .index a .img4 {
  top: 10%;
  left: 68%;
  width: 28%;
}
@media screen and (min-width: 769px) {
  #occasion .index a .img4 {
    top: 3%;
    left: 72%;
  }
}
#occasion .index a .img5 {
  top: 55%;
  left: 15%;
  width: 17%;
}
@media screen and (min-width: 769px) {
  #occasion .index a .img5 {
    top: 36%;
  }
}
#occasion .index a .img6 {
  top: 50%;
  left: 37%;
  width: 17%;
}
@media screen and (min-width: 769px) {
  #occasion .index a .img6 {
    top: 35%;
  }
}
#occasion .index a .img7 {
  top: 57%;
  left: 60%;
  width: 20%;
}
@media screen and (min-width: 769px) {
  #occasion .index a .img7 {
    top: 37%;
  }
}
#occasion .sec {
  padding-bottom: 80px;
}
#occasion .sec .titles {
  width: 80%;
  margin: 50px auto 0;
  color: #6D9170;
}
@media screen and (min-width: 769px) {
  #occasion .sec .titles {
    width: 60%;
    margin-top: 0;
    padding-top: 80px;
  }
}
#occasion .sec .titles .sub_title {
  font-size: 12px;
  letter-spacing: 0 !important;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  #occasion .sec .titles .sub_title {
    font-size: 18px;
  }
}
#occasion .sec .titles .main {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  #occasion .sec .titles .main {
    font-size: 50px;
    margin-bottom: 20px;
  }
}
#occasion .sec .titles a {
  text-decoration: none;
  color: #000;
}
#occasion .sec .titles .item_tab {
  position: relative;
}
#occasion .sec .titles .item_tab .tab {
  position: absolute;
  z-index: 1;
  width: 70px;
  top: 20px;
  right: 20px;
  opacity: 0;
  -webkit-transform: translateY(20px) rotateY(360deg);
          transform: translateY(20px) rotateY(360deg);
  -webkit-transition: opacity 1.6s ease, -webkit-transform 1.6s ease;
  transition: opacity 1.6s ease, -webkit-transform 1.6s ease;
  transition: opacity 1.6s ease, transform 1.6s ease;
  transition: opacity 1.6s ease, transform 1.6s ease, -webkit-transform 1.6s ease;
}
@media screen and (min-width: 769px) {
  #occasion .sec .titles .item_tab .tab {
    width: 100px;
  }
}
#occasion .sec .titles .item_tab .tab.is_show {
  opacity: 1;
  -webkit-transform: translateY(0) rotateY(0deg);
          transform: translateY(0) rotateY(0deg);
}
#occasion .sec .titles .setsumei {
  font-size: 11px;
  width: 96%;
  margin: 15px auto;
  color: #000;
}
@media screen and (min-width: 769px) {
  #occasion .sec .titles .setsumei {
    font-size: 12px;
    line-height: 2;
  }
}
#occasion .sec .titles .item_credit {
  color: #000;
  font-size: 14px;
  width: 96%;
  margin: auto;
}
#occasion .sec .titles .item_credit .item_name {
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  #occasion .sec .titles .item_credit .item_name {
    font-size: 16px;
  }
}
#occasion .sec .titles .item_credit .check_link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  text-align: right;
  margin-left: auto;
  margin-top: -22px;
}
#occasion .sec .line {
  display: block;
  height: 1px;
  width: 100%;
  border-bottom: 1px solid #F7FFF2;
  position: relative;
}
#occasion .sec .line::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  border-bottom: 1px solid #C3D2BA;
}
#occasion .sec .line2 {
  display: block;
  height: 1px;
  width: 100%;
  border-bottom: 1px solid #F7E7DE;
  position: relative;
}
#occasion .sec .line2::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  border-bottom: 1px solid #D5C1B6;
}
#occasion .image_wrap {
  margin-top: 80px;
}
@media screen and (min-width: 769px) {
  #occasion .image_wrap {
    width: 60%;
    margin: 100px auto 0;
  }
}
#occasion .image_wrap .img1 {
  width: 74%;
  margin: auto;
}
#occasion .image_wrap .img2 {
  width: 62%;
  margin-top: -45px;
  margin-left: 20px;
}
#occasion .image_wrap .slide1 {
  width: 50%;
  margin-left: auto;
  margin-right: 10px;
}
#occasion .image_wrap .image_credit {
  width: 78%;
  margin: 30px auto 0;
}
@media screen and (min-width: 769px) {
  #occasion .image_wrap .image_credit {
    margin: 80px auto 0;
  }
}
#occasion .image_wrap .image_credit .credit_wrap {
  margin-bottom: 100px;
}
#occasion .image_wrap .image_credit .credit_wrap .main_item {
  margin: 30px 0 10px;
}
@media screen and (min-width: 769px) {
  #occasion .image_wrap .image_credit .credit_wrap .main_item {
    margin-bottom: 20px;
  }
}
#occasion .image_wrap .image_credit .credit_wrap .main_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  #occasion .image_wrap .image_credit .credit_wrap .main_item a {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#occasion .image_wrap .image_credit .credit_wrap .main_item a .left_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#occasion .image_wrap .image_credit .credit_wrap .main_item a img {
  width: 19%;
}
#occasion .image_wrap .image_credit .credit_wrap .main_item a .main_name {
  font-size: 12px;
  margin-left: 10px;
  margin-right: 10px;
}
#occasion .image_wrap .image_credit .credit_wrap .main_item a .buy_btn {
  font-size: 12px;
  background-color: #6D9170;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  line-height: 1;
}
#occasion .image_wrap .image_credit .credit_wrap .single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  text-decoration: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
#occasion .image_wrap .image_credit .credit_wrap .single .main_name {
  font-size: 12px;
}
#occasion .image_wrap .image_credit .credit_wrap .single .buy_btn {
  font-size: 12px;
  background-color: #6D9170;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  line-height: 1;
}
#occasion #item2 .slide1 {
  width: 74%;
  margin: auto;
}
#occasion #item2 .slide2 {
  width: 70%;
  margin-top: 80px;
  margin-left: 7px;
}
#occasion #item2 .img5 {
  width: 70%;
  margin-left: auto;
  margin-right: 20px;
  margin-top: -28px;
  margin-bottom: 50px;
}
#occasion #item3 .img1 {
  width: 80%;
  margin-bottom: 40px;
}
#occasion #item3 .slide1 {
  width: 55%;
}
#occasion #item3 .img2 {
  width: 65%;
  margin-bottom: 30px;
}
#occasion #item4 .slide1 {
  width: 80%;
  margin: auto;
}
#occasion #item4 .slide2 {
  width: 52%;
  margin-left: auto;
  margin-top: 40px;
  margin-right: 30px;
}
#occasion #item4 .img1 {
  width: 63%;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 80px;
}
#occasion #item5, #occasion #item6, #occasion #item7 {
  background-color: #E8D5CA;
}
#occasion #item5 .titles, #occasion #item6 .titles, #occasion #item7 .titles {
  color: #EA8383;
}
#occasion #item5 .image_wrap .image_credit .credit_wrap, #occasion #item6 .image_wrap .image_credit .credit_wrap, #occasion #item7 .image_wrap .image_credit .credit_wrap {
  margin-bottom: 0;
}
#occasion #item5 .image_wrap .image_credit .credit_wrap .main_item a .buy_btn, #occasion #item6 .image_wrap .image_credit .credit_wrap .main_item a .buy_btn, #occasion #item7 .image_wrap .image_credit .credit_wrap .main_item a .buy_btn {
  background-color: #EA8383;
}
#occasion #item5 .image_wrap .image_credit .credit_wrap .single .buy_btn, #occasion #item6 .image_wrap .image_credit .credit_wrap .single .buy_btn, #occasion #item7 .image_wrap .image_credit .credit_wrap .single .buy_btn {
  background-color: #EA8383;
}
#occasion #item5 .image_wrap {
  position: relative;
}
#occasion #item5 .img1 {
  width: 80%;
}
#occasion #item5 .img2 {
  position: absolute;
  width: 30%;
  z-index: 5;
  margin: 0;
  top: 17%;
  left: 58%;
}
#occasion #item5 .slide1 {
  width: 62%;
  margin: 0;
  margin-left: 20px;
  margin-top: 200px;
}
#occasion #item5 .img5 {
  width: 40%;
  margin-top: 20px;
  margin-left: 80px;
}
#occasion #item5 .img6 {
  width: 40%;
  margin-top: -38%;
  margin-left: 50%;
}
#occasion #item5 .slide2 {
  margin: 80px auto 0;
}
#occasion #item6 .image_wrap {
  position: relative;
}
#occasion #item6 .img1 {
  width: 88%;
}
#occasion #item6 .img2 {
  margin-left: auto;
  margin-right: 20px;
  margin-top: -30px;
}
#occasion #item6 .img3 {
  width: 80%;
  margin: 100px auto 0;
}
#occasion #item6 .img4 {
  width: 70%;
  margin-left: auto;
  margin-right: 10px;
  margin-top: -30px;
  margin-bottom: 80px;
}
#occasion #item6 .heart {
  position: absolute;
  width: 20%;
  top: -10px;
  left: 20px;
}
#occasion #item7 .slide1 {
  width: 90%;
  margin: auto;
}
#occasion #item7 .position {
  position: relative;
}
#occasion #item7 .position .onpu1 {
  position: absolute;
  z-index: 5;
  top: 3%;
  left: 20%;
  width: 10%;
}
@media screen and (min-width: 769px) {
  #occasion #item7 .position .onpu1 {
    width: 7%;
    top: 1%;
    left: 17%;
  }
}
#occasion #item7 .position .onpu2 {
  position: absolute;
  z-index: 5;
  top: -5%;
  left: 10%;
  width: 10%;
}
@media screen and (min-width: 769px) {
  #occasion #item7 .position .onpu2 {
    width: 7%;
  }
}
#occasion #item7 .position .butterfly {
  position: absolute;
  top: -8%;
  right: 9%;
  width: 13%;
  z-index: 5;
  -webkit-animation: fluffy-float 4s ease-in-out infinite;
          animation: fluffy-float 4s ease-in-out infinite;
}
@media screen and (min-width: 769px) {
  #occasion #item7 .position .butterfly {
    width: 9%;
    top: -1%;
    right: 2%;
  }
}
#occasion #item7 .position .img1 {
  width: 70%;
  margin: 100px auto;
}
#occasion #item7 .img4 {
  width: 60%;
  margin-left: auto;
  margin-right: 30px;
}
#occasion #item7 .slide2 {
  width: 70%;
  margin-left: 30px;
}
#occasion #item7 .slide3 {
  margin: 100px auto 0;
}
#occasion #item7 .onpu1,
#occasion #item7 .onpu2 {
  -webkit-animation-name: fade-switch;
          animation-name: fade-switch;
  -webkit-animation-duration: 4s;
          animation-duration: 4s; /* アニメーションの合計時間 (表示2s + 非表示2s) */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
#occasion #item7 .onpu2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@-webkit-keyframes fade-switch {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes fade-switch {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes fluffy-float {
  0% {
    -webkit-transform: translateY(0) rotate(-2deg);
            transform: translateY(0) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(3deg);
            transform: translateY(-20px) rotate(3deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-2deg);
            transform: translateY(0) rotate(-2deg);
  }
}
@keyframes fluffy-float {
  0% {
    -webkit-transform: translateY(0) rotate(-2deg);
            transform: translateY(0) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(3deg);
            transform: translateY(-20px) rotate(3deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-2deg);
            transform: translateY(0) rotate(-2deg);
  }
}
#occasion .daily_wrap {
  position: relative;
  background-image: radial-gradient(#FFDFCB 2px, transparent 1px);
  background-size: 20px 20px; /* ← これが等間隔 */
  width: 95%;
  margin: auto;
  background-color: #fff;
  border-radius: 20px;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media screen and (min-width: 769px) {
  #occasion .daily_wrap {
    width: 60%;
    margin: auto;
  }
}
#occasion .daily_wrap .blue_arrow {
  width: 70px;
  position: absolute;
  z-index: 5;
  top: -45px;
  left: 39%;
}
#occasion .daily_wrap .off_title {
  font-size: 18px;
  text-align: center;
}
#occasion .daily_wrap .daily_title {
  width: 40%;
  margin: 20px auto;
}
#occasion .daily_wrap .daily_code {
  width: 57%;
  margin: auto;
}
#occasion .daily_wrap .daily_credit {
  width: 78%;
  margin: 20px auto;
}
#occasion .daily_wrap .daily_credit a {
  color: #000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
#occasion .daily_wrap .daily_credit a .item_name {
  font-size: 12px;
}
#occasion .daily_wrap .daily_credit a .buy_link {
  font-size: 12px;
  text-decoration: underline;
}

/*---------------------------------------------
newlife
---------------------------------------------*/
#newlife {
  padding-top: 80px;
  background-image: url(../images/newlife_grbg.png);
  overflow-x: hidden;
}
@media screen and (min-width: 769px) {
  #newlife .top_title .title_img {
    width: 200px;
    margin-bottom: 10px;
  }
}
#newlife .bg_grid {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
  background-image: linear-gradient(#7fa9ff 1px, transparent 1px), linear-gradient(90deg, #7fa9ff 1px, transparent 1px), linear-gradient(#7fa9ff 1px, transparent 1px), linear-gradient(90deg, #7fa9ff 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
}
@media screen and (min-width: 769px) {
  #newlife .bg_grid .bg_grid_inner {
    width: 60%;
    margin: auto;
  }
}
#newlife .bg_grid .bg_grid_inner .title_img {
  width: 38%;
  margin: auto;
}
#newlife .bg_grid .bg_grid_inner .title_img2 {
  width: 60%;
}
#newlife .bg_grid .bg_grid_inner .title_img3 {
  width: 50%;
}
#newlife .bg_grid .bg_grid_inner .item_name {
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #newlife .bg_grid .bg_grid_inner .item_name {
    font-size: 18px;
  }
}
#newlife .bg_grid .bg_grid_inner .item_kids {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 30px;
  margin-bottom: 100px;
}
#newlife .bg_grid .bg_grid_inner .item_kids .left_box {
  width: 40%;
  margin-top: 50px;
  margin-left: 20px;
}
#newlife .bg_grid .bg_grid_inner .item_kids .left_box a {
  text-decoration: none;
  color: #000;
}
#newlife .bg_grid .bg_grid_inner .item_kids .left_box .credit {
  text-align: center;
}
#newlife .bg_grid .bg_grid_inner .item_kids .left_box .credit .item {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  #newlife .bg_grid .bg_grid_inner .item_kids .left_box .credit .item {
    font-size: 16px;
  }
}
#newlife .bg_grid .bg_grid_inner .item_kids .left_box .credit .item .buy {
  font-size: 12px;
  background-color: #F8E62B;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 2px 10px;
  line-height: 1;
  display: block;
  width: 40%;
  margin: 10px auto 0;
}
#newlife .bg_grid .bg_grid_inner .item_kids .right_box {
  position: relative;
  width: 40%;
}
#newlife .bg_grid .bg_grid_inner .item_kids .right_box .variations {
  width: 150%;
  margin-left: -50px;
}
#newlife .bg_grid .bg_grid_inner .item_kids .right_box .variations2 {
  width: 100%;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  margin-left: 30px;
}
#newlife .bg_grid .bg_grid_inner .item_kids .right_box .variations3 {
  width: 100%;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  margin-top: 50px;
}
#newlife .bg_grid .bg_grid_inner .item_kids .right_box .code_link {
  position: absolute;
  z-index: 100;
  width: 48%;
  top: 42%;
  right: 0;
}
#newlife .bg_grid .bg_grid_inner .item_kids .right_box .code_link2 {
  top: 47%;
  right: initial;
}
#newlife .bg_grid .bg_grid_inner .item_kids .right_box .code_link3 {
  top: 51%;
}
#newlife .bg_grid .bg_grid_inner .item_kids .right_box .attention {
  position: absolute;
  width: 24%;
  top: 38%;
  z-index: 100;
  left: -23%;
}
#newlife .bg_grid .bg_grid_inner .item_kids .right_box .red_arrow {
  position: absolute;
  z-index: 100;
  width: 24%;
  left: 100%;
  top: 37%;
}
#newlife .bg_grid .bg_grid_inner .item_kids .right_box .star {
  position: absolute;
  z-index: 100;
  width: 32%;
  top: 27%;
  left: 75%;
}
#newlife .bg_grid .bg_grid_inner .item_kids .left_box {
  position: relative;
}
#newlife .bg_grid .bg_grid_inner .item_kids .left_box .dog {
  position: absolute;
  width: 46%;
  z-index: 100;
  top: -9%;
  left: 52%;
}
#newlife .bg_grid .bg_grid_inner .item_kids2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
#newlife .speechBubble {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  padding: 16px;
  border: 1px solid #000000;
  border-radius: 8px;
  background-color: #ecf6cf;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 20px;
}
#newlife .speechBubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #000000 transparent transparent;
  translate: -50% 100%;
}
#newlife .speechBubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 13.2px 8.8px 0 8.8px;
  border-color: #ecf6cf transparent transparent;
  translate: -50% 100%;
}
#newlife .kid_sec2 .item_kids {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#newlife .walk .walk_img {
  width: 70%;
  margin: auto;
}

@media screen and (min-width: 769px) {
  .footer {
    margin-top: 200px;
  }
}
.footer .footer_bnr {
  width: 90%;
  margin: 80px auto 0;
}
@media screen and (min-width: 769px) {
  .footer .footer_bnr {
    width: 40%;
  }
}
.footer .sns {
  margin: 80px auto 60px;
  text-align: center;
  line-height: 2.5;
}
@media screen and (min-width: 769px) {
  .footer .sns {
    font-size: 20px;
  }
}
.footer .sns .insta_link,
.footer .sns .youtube_link {
  display: block;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
.footer .footer_gif {
  width: 40%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .footer .footer_gif {
    width: 10%;
  }
}
.footer .typy_link {
  width: 40%;
  margin: 40px auto 10px;
}
@media screen and (min-width: 769px) {
  .footer .typy_link {
    width: 15%;
  }
}
.footer .copy {
  font-size: 10px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .footer .copy {
    font-size: 12px;
  }
}

.to_top {
  position: fixed;
  bottom: 30px;
  right: 10px;
  width: 80px; /* アイコンサイズ */
  height: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 1500;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .to_top {
    width: 110px;
    bottom: 20px;
    right: 20px;
  }
}

.to_top.show {
  opacity: 1;
  pointer-events: auto;
}

/*---------------------------------------------
Side Pager
---------------------------------------------*/
.side-pager {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  left: 6px !important;
}
@media screen and (min-width: 769px) {
  .side-pager {
    left: initial !important;
    right: 20px;
  }
}
.side-pager.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.side-pager ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-pager li {
  margin-bottom: 8px;
}
.side-pager a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  font-size: 12px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 768px) {
  .side-pager {
    left: 10px;
  }
}
@media screen and (min-width: 769px) {
  .side-pager {
    left: calc(50vw - 640px + 819.2px + 20px);
  }
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
}

[data-aos=fade-down] {
  -webkit-transform: translate3d(0, -20px, 0);
          transform: translate3d(0, -20px, 0);
}

[data-aos=fade-right] {
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
}

.flexslider {
  border: none;
  margin: 0;
}

.flex-control-nav li {
  width: 8px;
}

.flex-control-paging li a {
  width: 8px;
  height: 8px;
}/*# sourceMappingURL=style.css.map */