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

/*リセット
--------------------------------------------*/
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;
}

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;
  }
}

/*---------------------------------------------
background-color
---------------------------------------------*/
/*---------------------------------------------
font
---------------------------------------------*/
.eg {
  font-family: "Dosis", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.jp {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bold {
  font-weight: bold;
}

.big {
  font-size: 1.3em;
}

/*---------------------------------------------
FV
---------------------------------------------*/
.fv {
  position: relative; /* 擬似要素の基準点にする */
  height: 100dvh; /* SPでの高さを100dvhに */
}
.fv .img_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  overflow: hidden;
  will-change: transform; /* アニメーションの最適化 */
}
.fv .loop_image {
  width: auto;
  height: 100%;
  max-width: none;
}
.fv .loop_image:nth-child(odd) {
  -webkit-animation: loop3 80s -40s linear infinite;
          animation: loop3 80s -40s linear infinite;
}
.fv .loop_image:nth-child(even) {
  -webkit-animation: loop4 80s linear infinite;
          animation: loop4 80s linear infinite;
}
@-webkit-keyframes loop3 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop3 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop4 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop4 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.fv .fv_title {
  position: absolute;
  color: #A5836A;
  width: 80%;
  bottom: 10px;
  left: 10px;
  z-index: 10;
  mix-blend-mode: difference;
}
@media screen and (min-width: 769px) {
  .fv .fv_title {
    width: 360px;
    left: 3%;
    bottom: 5%;
  }
}

.fv_00, .fv_01 {
  position: relative;
  background-image: url(../images/sp_01.webp);
  background-size: cover;
  height: 100dvh;
  background-position: center 0;
}
.fv_00 .season_theme, .fv_01 .season_theme {
  display: none;
}
@media screen and (min-width: 769px) {
  .fv_00, .fv_01 {
    background-image: url(../images/pc_01.webp);
    background-position: center bottom;
  }
  .fv_00 .season_theme, .fv_01 .season_theme {
    position: absolute;
    display: block;
    top: 20px;
    left: 15px;
    width: 160px;
  }
}

.fv_01 {
  background-image: url(../images/sp_novelty.webp);
}
@media screen and (min-width: 769px) {
  .fv_01 {
    background-image: url(../images/pc_novelty.webp);
  }
}

.lead {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 50px;
}
.lead p {
  font-size: 13px;
  line-height: 2;
  width: 80%;
  text-align: center;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .lead p {
    width: 40%;
    margin: auto;
  }
}

.fair {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding-bottom: 100px;
}
.fair .inner {
  width: 90%;
  margin: auto;
  font-size: 13px;
  line-height: 2;
  text-align: center;
  border: 1px solid;
  padding: 60px 0 20px;
}
@media screen and (min-width: 769px) {
  .fair .inner {
    width: 40%;
  }
}
.fair .title {
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .fair .title {
    font-size: 16px;
  }
}
.fair .bag_img {
  width: 30%;
  margin: auto;
}
.fair .text {
  width: 86%;
  margin: 20px auto;
  font-size: 12px;
}
.fair .text .dot {
  -webkit-text-emphasis: filled dot black;
          text-emphasis: filled dot black;
  -webkit-text-emphasis-color: black;
          text-emphasis-color: black;
}
@media screen and (min-width: 769px) {
  .fair .text {
    font-size: 13px;
  }
}
.fair .text .term {
  margin-top: 5px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .fair .text .term {
    font-size: 16px;
  }
}
.fair .text .bikou {
  font-size: 0.9em;
}

.top_bnr {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.top_bnr img {
  width: 100%;
  margin: 50px auto 0;
}
@media screen and (min-width: 769px) {
  .top_bnr img {
    width: 80%;
  }
}

/*---------------------------------------------
tab
---------------------------------------------*/
.tab_wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
}
.tab_wrap.is-visible {
  opacity: 1;
  visibility: visible;
}
.tab_wrap button {
  width: calc((100% - 12px) / 3);
  border: none;
  padding: 14px 0;
  font-size: 17px;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
}
.tab_wrap button.active {
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .tab_wrap button {
    width: 120px;
    margin: 0 2px;
  }
}
.tab_wrap button.women.active {
  background-color: #F4EDE3;
  color: #E96E27;
}
.tab_wrap button.men.active {
  background-color: #DCE8E3;
  color: #5A7C95;
}
.tab_wrap button.kids.active {
  background-color: #FFFECA;
  color: #27C083;
}

@media screen and (min-width: 769px) {
  .contents_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
  }
}
/*---------------------------------------------
section
---------------------------------------------*/
.sec {
  padding-top: 50px;
  padding-bottom: 50px;
}
.sec .all_btn {
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  margin: 100px auto;
  display: block;
  background-color: #fff;
  width: 60%;
  padding: 14px 0;
  border: 1px solid;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.sec .all_btn:hover {
  background-color: #000;
  color: #fff;
}
.sec .title {
  font-family: rl-folklor, sans-serif;
  font-style: normal;
  font-weight: 900;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
}
.sec .title .number {
  font-size: 60px;
}
@media screen and (min-width: 769px) {
  .sec .title .number {
    font-size: 80px;
  }
}
.sec .title .theme {
  font-size: 30px;
}
@media screen and (min-width: 769px) {
  .sec .title .theme {
    font-size: 40px;
  }
}
.sec .title .theme_jp {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.8px;
}
@media screen and (min-width: 769px) {
  .sec .title .theme_jp {
    font-size: 13px;
    line-height: 2;
  }
}
.sec .title {
  /* タイプライターアニメーション用スタイル */
}
.sec .title.is-visible .char {
  display: inline-block; /* アニメーションのために必要 */
  -webkit-animation: fadeIn 0.8s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeIn 0.8s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  opacity: 0;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.sec .right {
  text-align: right;
  line-break: strict;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.sec .credit {
  width: 80%;
  margin: auto;
  text-align: right;
  font-size: 14px;
}
.sec .credit a {
  text-decoration: none;
  color: #000;
  display: block;
  margin-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sec .credit a .buy {
  margin-left: 14px;
  border: 0.5px solid;
  border-radius: 4px;
  padding: 0 4px;
  font-size: 12px;
}

/*---------------------------------------------
sec1
---------------------------------------------*/
#sec1 {
  background-color: #F4EDE3;
}
@media screen and (min-width: 769px) {
  #sec1 {
    margin-top: -50px;
  }
}
#sec1 .title {
  color: #E96E27;
}
#sec1 .img1 {
  width: 80%;
  margin: auto;
}
#sec1 .wave {
  margin-top: -30px;
  width: 60%;
  margin-left: auto;
}
#sec1 .img2 {
  width: 30%;
  margin-top: -100px;
  margin-left: 10px;
}
#sec1 .img3 {
  width: 53%;
  margin-left: auto;
  margin-right: 16px;
  margin-top: -60px;
}
#sec1 .img4 {
  width: 42%;
  margin-top: -100px;
  margin-left: 20px;
}
#sec1 .img6 {
  width: 37%;
  margin-left: auto;
  margin-right: 25px;
  margin-top: -50px;
}
#sec1 .img7 {
  width: 80%;
  margin: 50px auto 20px;
}

/*---------------------------------------------
sec2
---------------------------------------------*/
#sec2 {
  background-color: #FFD8CE;
}
#sec2 .title {
  color: #319677;
}
#sec2 .img1_wrap {
  position: relative;
  height: 80vh;
}
@media screen and (min-width: 769px) {
  #sec2 .img1_wrap {
    height: 100vh;
  }
}
#sec2 .img1_wrap .img1 {
  position: absolute;
  z-index: 5;
  width: 80%;
  margin-left: 5%;
}
#sec2 .img1_wrap .img2 {
  position: absolute;
  z-index: 1;
  width: 40%;
  right: 10px;
  bottom: 11vw;
}
@media screen and (min-width: 769px) {
  #sec2 .img1_wrap .img2 {
    bottom: 0;
  }
}
#sec2 .img3_wrap {
  position: relative;
  height: 48vh;
}
@media screen and (min-width: 769px) {
  #sec2 .img3_wrap {
    height: 70vh;
    margin-top: 10%;
  }
}
#sec2 .img3_wrap .img3 {
  position: absolute;
  z-index: 5;
  width: 40%;
  margin-top: -50px;
  margin-left: 5%;
}
#sec2 .img3_wrap .img4 {
  position: absolute;
  z-index: 1;
  width: 50%;
  right: 14%;
  bottom: 0;
}
#sec2 .img5_wrap {
  position: relative;
  height: 34vh;
}
@media screen and (min-width: 769px) {
  #sec2 .img5_wrap {
    height: 46vh;
  }
}
#sec2 .img5_wrap .img6 {
  position: absolute;
  z-index: 5;
  width: 44%;
  margin-top: 50px;
  margin-left: 23%;
}
#sec2 .img5_wrap .img7 {
  position: absolute;
  z-index: 5;
  width: 22%;
  bottom: 0;
  left: 10%;
}
#sec2 .img8 {
  width: 80%;
  margin: 16% auto 30px;
}

/*---------------------------------------------
sec3
---------------------------------------------*/
#sec3 {
  background-color: #D5E9FF;
}
#sec3 .title {
  color: #E76737;
}
#sec3 .img1_wrap {
  position: relative;
}
#sec3 .img1_wrap .img1 {
  width: 80%;
  margin: auto;
}
#sec3 .img1_wrap .leaf {
  position: absolute;
  width: 24%;
  top: -1%;
  left: 4%;
}
#sec3 .img2_wrap {
  height: 81vh;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #sec3 .img2_wrap {
    height: 110vh;
  }
}
#sec3 .img2_wrap .img2 {
  position: absolute;
  width: 46%;
  z-index: 5;
  right: -2%;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation: swing 4s ease-in-out infinite;
          animation: swing 4s ease-in-out infinite;
}
#sec3 .img2_wrap .img3 {
  position: absolute;
  width: 56%;
  top: 41%;
  left: 8%;
}
#sec3 .img2_wrap .img4 {
  position: absolute;
  width: 34%;
  bottom: 0;
  right: 4%;
}
#sec3 .gif_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  margin-left: 5%;
}
#sec3 .gif_wrap .gif {
  width: 24%;
}
#sec3 .gif_wrap .gif2 {
  margin-left: 8px;
}
#sec3 .img13 {
  width: 80%;
  margin: 16% auto 30px;
}

@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}

@keyframes swing {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
/*---------------------------------------------
sec4
---------------------------------------------*/
#sec4 {
  background-color: #F4EDE3;
  background-image: url(../images/parasol.webp);
  background-size: 68%;
  background-repeat: no-repeat;
}
#sec4 .title {
  color: #E96E27;
}
#sec4 .parasol {
  position: absolute;
  top: 0;
  left: 0;
}
#sec4 .img1_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 50px auto 0;
}
#sec4 .img1_wrap .img1 {
  width: 53%;
}
#sec4 .img1_wrap .img2 {
  width: 86%;
  margin-left: auto;
}
#sec4 .img1_wrap .img3 {
  width: 100%;
  margin-left: auto;
}
#sec4 .img4 {
  width: 53%;
  margin-left: auto;
  margin-top: 50px;
  margin-right: 6%;
}
#sec4 .img5 {
  width: 38%;
  margin-left: 6%;
  margin-top: -22%;
}
#sec4 .img6_wrap {
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}
#sec4 .img6_wrap .sun {
  width: 40%;
  position: absolute;
  top: 0;
  right: -5%;
  z-index: 5;
  -webkit-animation: spin 40s linear infinite;
          animation: spin 40s linear infinite;
}
#sec4 .img6_wrap .img6 {
  width: 80%;
  margin: 0 auto 30px;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/*---------------------------------------------
sec5
---------------------------------------------*/
#sec5 {
  background-color: #F9DEE9;
}
#sec5 .title {
  color: #319677;
}
#sec5 .img1_wrap {
  position: relative;
  height: 78vh;
}
@media screen and (min-width: 769px) {
  #sec5 .img1_wrap {
    height: 97vh;
  }
}
#sec5 .img1_wrap .img1 {
  width: 80%;
  position: absolute;
  z-index: 5;
  left: 5%;
}
#sec5 .img1_wrap .img3 {
  position: absolute;
  width: 40%;
  right: 5%;
  bottom: 0;
}
#sec5 .img4_wrap {
  position: relative;
  height: 59vh;
}
@media screen and (min-width: 769px) {
  #sec5 .img4_wrap {
    height: 76vh;
  }
}
#sec5 .img4_wrap .img4 {
  width: 40%;
  position: absolute;
  z-index: 5;
  left: 5%;
}
#sec5 .img4_wrap .img5 {
  position: absolute;
  width: 50%;
  right: 10%;
  bottom: 0;
}
#sec5 .img6_wrap {
  position: relative;
  height: 35vh;
}
@media screen and (min-width: 769px) {
  #sec5 .img6_wrap {
    height: 43vh;
  }
}
#sec5 .img6_wrap .img6 {
  width: 40%;
  position: absolute;
  left: 25%;
  top: 20%;
}
#sec5 .img6_wrap .img7 {
  position: absolute;
  width: 20%;
  left: 10%;
  bottom: 0;
}
#sec5 .img8 {
  width: 80%;
  margin: 20% auto 30px;
}

/*---------------------------------------------
mens sec6
---------------------------------------------*/
#sec6 {
  background-color: #DCE8E3;
}
@media screen and (min-width: 769px) {
  #sec6 {
    margin-top: -50px;
  }
}
#sec6 .title {
  color: #5A7C95;
}
#sec6 .img1 {
  width: 80%;
  margin: auto;
}
#sec6 .img3_wrap {
  position: relative;
  margin-top: 15%;
  height: 50vh;
}
@media screen and (min-width: 769px) {
  #sec6 .img3_wrap {
    height: 78vh;
  }
}
#sec6 .img3_wrap .img3 {
  position: absolute;
  width: 40%;
  left: 5%;
  z-index: 5;
}
#sec6 .img3_wrap .img4 {
  position: absolute;
  width: 50%;
  right: 8%;
  bottom: 0;
}
#sec6 .img5_wrap {
  position: relative;
  margin-top: 10%;
  height: 25vh;
}
#sec6 .img5_wrap .img5 {
  position: absolute;
  width: 40%;
  left: 23%;
}
#sec6 .img5_wrap .img6 {
  position: absolute;
  width: 20%;
  left: 8%;
  bottom: 0;
}
#sec6 .img7 {
  width: 80%;
  margin: 20% auto 30px;
}

/*---------------------------------------------
sec7
---------------------------------------------*/
#sec7 {
  background-color: #FFE8CB;
  background-image: url(../images/men/2_1.webp);
  background-size: 68%;
  background-repeat: no-repeat;
}
#sec7 .title {
  color: #D1729A;
}
#sec7 .img1_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 50px auto 0;
}
#sec7 .img1_wrap .img1 {
  width: 53%;
}
#sec7 .img1_wrap .img2 {
  width: 86%;
  margin-left: auto;
}
#sec7 .img1_wrap .img3 {
  width: 100%;
  margin-left: auto;
}
#sec7 .img5_wrap {
  position: relative;
  height: 58vh;
}
@media screen and (min-width: 769px) {
  #sec7 .img5_wrap {
    height: 70vh;
  }
}
#sec7 .img5_wrap .img5 {
  position: absolute;
  width: 53%;
  left: 30%;
  z-index: 5;
}
#sec7 .img5_wrap .img6 {
  position: absolute;
  width: 38%;
  left: 5%;
  bottom: 0;
}
#sec7 .img5 {
  width: 53%;
  margin-left: auto;
  margin-top: 50px;
  margin-right: 20%;
}
#sec7 .img6 {
  width: 38%;
  margin-left: 6%;
  margin-top: -22%;
}
#sec7 .img7_wrap {
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}
#sec7 .img7_wrap .img7 {
  width: 80%;
  margin: 0 auto 30px;
}

/*---------------------------------------------
sec8
---------------------------------------------*/
#sec8 {
  background-color: #9ab1b3;
}
#sec8 .title {
  color: #FBF3DE;
}
#sec8 .img1 {
  width: 80%;
  margin: auto;
}
#sec8 .img2_wrap {
  position: relative;
  height: 106vh;
  margin-top: -15%;
}
@media screen and (min-width: 769px) {
  #sec8 .img2_wrap {
    height: 134vh;
  }
}
#sec8 .img2_wrap .img2 {
  position: absolute;
  width: 56%;
  left: 6%;
  top: 25%;
}
#sec8 .img2_wrap .img3 {
  position: absolute;
  width: 40%;
  z-index: 5;
  right: 5%;
}
#sec8 .img2_wrap .img4 {
  position: absolute;
  width: 39%;
  left: 20%;
  bottom: 0;
}
#sec8 .img5 {
  width: 80%;
  margin: 20% auto 30px;
}

/*---------------------------------------------
sec9
---------------------------------------------*/
#sec9 {
  background-color: #FDE8D6;
}
#sec9 .title {
  color: #c1a112;
}
#sec9 .shadow_title {
  position: relative;
  overflow: hidden;
}
#sec9 .shadow_title .shadow1 {
  position: absolute;
  width: 105%;
  right: -3%;
  top: 5%;
  z-index: 5;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-animation: swing1 5s ease-in-out alternate infinite;
          animation: swing1 5s ease-in-out alternate infinite;
}
#sec9 .shadow_title .img1 {
  width: 80%;
  margin: auto;
}
#sec9 .img2_wrap {
  position: relative;
  height: 86vh;
  overflow: hidden;
}
#sec9 .img2_wrap .shadow2 {
  position: absolute;
  width: 72%;
  left: -2%;
  z-index: 5;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-animation: swing1 5s ease-in-out alternate infinite;
          animation: swing1 5s ease-in-out alternate infinite;
}
#sec9 .img2_wrap .img2 {
  position: absolute;
  width: 45%;
  right: 6%;
  top: 19%;
}
#sec9 .img2_wrap .img3 {
  position: absolute;
  width: 53%;
  bottom: 0;
  left: 7%;
}
#sec9 .img4 {
  width: 80%;
  margin: 20% auto 30px;
}

@-webkit-keyframes swing1 {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  50% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes swing1 {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  50% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
/*---------------------------------------------
sec10 kids
---------------------------------------------*/
#sec10 {
  background-color: #FFFECA;
}
@media screen and (min-width: 769px) {
  #sec10 {
    margin-top: -50px;
  }
}
#sec10 .title {
  color: #27C083;
}
#sec10 .img1_wrap {
  position: relative;
  height: 82vh;
}
@media screen and (min-width: 769px) {
  #sec10 .img1_wrap {
    height: 100vh;
  }
}
#sec10 .img1_wrap .img1 {
  position: absolute;
  width: 80%;
  margin-left: 5%;
  z-index: 5;
}
#sec10 .img1_wrap .img4 {
  position: absolute;
  bottom: 0;
  width: 40%;
  right: 5%;
}
#sec10 .img5_wrap {
  position: relative;
  height: 86vh;
}
@media screen and (min-width: 769px) {
  #sec10 .img5_wrap {
    height: 112vh;
  }
}
#sec10 .img5_wrap .img5 {
  position: absolute;
  width: 44%;
  margin-left: 5%;
  z-index: 5;
}
#sec10 .img5_wrap .img6 {
  position: absolute;
  width: 50%;
  right: 5%;
  top: 22%;
}
#sec10 .img5_wrap .img7 {
  position: absolute;
  bottom: 0;
  width: 37%;
  left: 20%;
}
#sec10 .img8 {
  width: 80%;
  margin: 30% auto 30px;
}

/*---------------------------------------------
sec11
---------------------------------------------*/
#sec11 {
  background-color: #E69998;
}
#sec11 .title {
  color: #f4e088;
}
#sec11 .img1_wrap {
  position: relative;
  height: 93vh;
}
@media screen and (min-width: 769px) {
  #sec11 .img1_wrap {
    height: 57vw;
  }
}
#sec11 .img1_wrap .img1 {
  width: 80%;
  margin: auto;
}
#sec11 .img1_wrap .img3 {
  position: absolute;
  width: 30%;
  margin-left: 5%;
  margin-top: -9%;
  bottom: 0;
}
#sec11 .img4 {
  width: 45%;
  margin-left: auto;
  margin-right: 5%;
  margin-top: -10%;
}
#sec11 .img5 {
  width: 58%;
  margin-left: 5%;
  margin-top: -20%;
}
#sec11 .img6 {
  width: 80%;
  margin: 20% auto 30px;
}

/*---------------------------------------------
sec12
---------------------------------------------*/
#sec12 {
  background-color: #FDF5E4;
}
#sec12 .title {
  color: #eb73cb;
}
#sec12 .saturn_img {
  position: relative;
}
#sec12 .saturn_img .saturn {
  position: absolute;
  width: 33%;
  z-index: 5;
  top: -11%;
}
#sec12 .saturn_img .img1 {
  width: 80%;
  margin: auto;
}
#sec12 .stop_step {
  position: relative;
  height: 108vh;
  margin-top: 15%;
}
@media screen and (min-width: 769px) {
  #sec12 .stop_step {
    height: 64vw;
  }
}
#sec12 .stop_step .stop {
  width: 20%;
}
#sec12 .stop_step .step {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 5;
}
@media screen and (min-width: 769px) {
  #sec12 .stop_step .step {
    width: 100%;
  }
}
#sec12 .stop_step .step img {
  width: 20%;
}
#sec12 .stop_step .step .img3 {
  margin-top: 10%;
}
#sec12 .stop_step .step .img4 {
  margin-top: 20%;
}
#sec12 .stop_step .img5 {
  position: absolute;
  width: 70%;
  left: 5%;
  bottom: 14%;
  z-index: 4;
}
#sec12 .stop_step .img6 {
  position: absolute;
  width: 30%;
  right: 8%;
  bottom: 0;
}
#sec12 .img7 {
  width: 80%;
  margin: 20% auto 30px;
}
#sec12 .rabbit_wrap {
  position: relative;
}
#sec12 .rabbit_wrap .rabbit {
  position: absolute;
  width: 18%;
  bottom: -10%;
  z-index: 5;
  right: 13%;
}

/*---------------------------------------------
sec13
---------------------------------------------*/
#sec13 {
  background-color: #FCE7EF;
}
#sec13 .title {
  color: #7BAC9D;
}
#sec13 .img1_wrap {
  position: relative;
  height: 79vh;
}
@media screen and (min-width: 769px) {
  #sec13 .img1_wrap {
    height: 47vw;
  }
}
#sec13 .img1_wrap .img1 {
  position: absolute;
  width: 80%;
  margin-left: 5%;
  z-index: 5;
}
#sec13 .img1_wrap .img2 {
  position: absolute;
  bottom: 0;
  width: 40%;
  right: 5%;
}
#sec13 .img3_wrap {
  position: relative;
  height: 63vh;
}
@media screen and (min-width: 769px) {
  #sec13 .img3_wrap {
    height: 37vw;
  }
}
#sec13 .img3_wrap .img3 {
  position: absolute;
  width: 44%;
  margin-left: 5%;
  z-index: 5;
}
#sec13 .img3_wrap .img4 {
  position: absolute;
  width: 48%;
  right: 5%;
  bottom: 0;
}
#sec13 .img5_wrap {
  position: relative;
  margin-top: 15%;
  height: 25vh;
}
@media screen and (min-width: 769px) {
  #sec13 .img5_wrap {
    height: 15vw;
  }
}
#sec13 .img5_wrap .img5 {
  position: absolute;
  width: 40%;
  left: 23%;
}
#sec13 .img5_wrap .img6 {
  position: absolute;
  width: 20%;
  left: 8%;
  bottom: 0;
}
#sec13 .img7 {
  width: 80%;
  margin: 20% auto 30px;
}

/*---------------------------------------------
bnr
---------------------------------------------*/
.bnr_wrap img {
  width: 80%;
  margin: 5% auto;
  border: 4px solid #fff;
}

@media screen and (min-width: 769px) {
  .fv {
    position: relative;
    z-index: 1;
  }
  .main_contents {
    width: 37.5%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background-color: transparent;
  }
  .pc_bg {
    display: block;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: background-image 0.5s ease-in-out;
    transition: background-image 0.5s ease-in-out; /* 背景の切り替えを滑らかに */
  }
  .pc_bg.pc_bg_left {
    width: 100%;
    left: 0;
  }
  .pc_bg.pc_bg_right {
    display: none; /* 右側の背景は使用しない */
  }
}
/*---------------------------------------------
footer
---------------------------------------------*/
.footer {
  background-image: url(../images/footer.webp);
  background-size: cover;
  height: 36vh;
  padding-top: 30%;
  padding-bottom: 30%;
}
@media screen and (min-width: 769px) {
  .footer {
    height: 20vw;
  }
}
.footer .sns a {
  display: block;
  text-align: center;
  margin: 0 auto 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .footer .sns a {
    margin-bottom: 60px;
  }
}
.footer .sns a img {
  height: 18px;
  width: auto;
}
@media screen and (min-width: 769px) {
  .footer .sns a img {
    height: 20px;
  }
}
.footer .typy_link {
  width: 40%;
  margin: 80px auto 0;
}
.footer small {
  text-align: center;
  margin: auto;
  font-size: 13px;
  display: block;
  margin-top: 14px;
}
@media screen and (min-width: 769px) {
  .footer small {
    font-size: 14px;
    margin-top: 24px;
  }
}

/*---------------------------------------------
slick
---------------------------------------------*/
.slides img {
  width: 100%;
  height: auto;
}
.slides .slick-arrow {
  display: none !important;
}

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

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

.flex-control-paging li a {
  width: 8px;
  height: 8px;
}

@media screen and (min-width: 769px) {
  .main_contents {
    position: relative;
  }
  .tab_wrap {
    position: sticky;
    top: 0;
    margin-left: calc(100% + 49px);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 20;
    background-color: transparent;
  }
  .tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .tab button {
    width: 160px;
    white-space: nowrap;
  }
}
:root {
  --tab-bg: #000;
  --tab-text: #fff;
}

.tab button {
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab button.active {
  background-color: var(--tab-bg);
  color: var(--tab-text);
}/*# sourceMappingURL=style.css.map */