@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/

/* ------------------------------
共通
------------------------------*/
:root {
  --view-size: 1600;
}

@media screen and (max-width: 768px) {
  :root {
    --view-size: 375;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-size: calc(16 / var(--view-size) * 100vw);
   font-family: "Zen Kaku Gothic New", sans-serif;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}
.inner {
  margin: 0 auto;
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* display */
@media (max-width: 768px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

/* slick */
.slick-prev, .slick-next {
  top: 50%;
  transform: translateY(-50%);
  width: calc(40 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  z-index: 100;
}
.slick-prev::before, .slick-next::before {
  content: "";
  width: calc(40 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  padding: 0;
  display: block;
  border-radius: 0;
}
.slick-prev {
  left: calc(-20 / var(--view-size) * 100vw);
}
.slick-next {
  right: calc(-20 / var(--view-size) * 100vw);
}

.eventinfo .slick-prev::before {
  background: url(../images/arrow_left_green.png) center / cover no-repeat;
}
.eventinfo .slick-next::before {
  background: url(../images/arrow_right_green.png) center / cover no-repeat;
}
.newshop .slick-prev::before {
  background: url(../images/arrow_left_pink.png) center / cover no-repeat;
}
.newshop .slick-next::before {
  background: url(../images/arrow_right_pink.png) center / cover no-repeat;
}
.expedition .slick-prev::before {
  background: url(../images/arrow_left_orange.png) center / cover no-repeat;
}
.expedition .slick-next::before {
  background: url(../images/arrow_right_orange.png) center / cover no-repeat;
}

/* cat-top */
#cat-top {
    position: fixed;
    right: calc(10 / var(--view-size) * 100vw);
    bottom: calc(-300 / var(--view-size) * 100vw);
    transition: .3s;
    z-index: 600;
}
#cat-top.active {
  bottom: calc(10 / var(--view-size) * 100vw);
}
#cat-top a {
    width: calc(64 / var(--view-size) * 100vw);
    display: block;
    text-align: center;
    font-size: calc(13 / var(--view-size) * 100vw);
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    line-height: 1;
    transition: 1s;
}
#cat-top a:hover {
  color: #111;
  opacity: 1;
}
#cat-top a:hover span {
  background: #f998a4;
}
#cat-top span {
    padding-top: calc(2 / var(--view-size) * 100vw);
    width: calc(64 / var(--view-size) * 100vw);
    height: calc(64 / var(--view-size) * 100vw);
    display: block;
    background: #c30d23;
    -webkit-border-radius: calc(2 / var(--view-size) * 100vw);
    -moz-border-radius: calc(2 / var(--view-size) * 100vw);
    border-radius: calc(2 / var(--view-size) * 100vw);
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}
#cat-top img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #cat-top a {
    width: calc(48 / var(--view-size) * 100vw);
    font-size: calc(10 / var(--view-size) * 100vw);
  }
  #cat-top span {
    width: calc(48 / var(--view-size) * 100vw);
    height: calc(48 / var(--view-size) * 100vw);
  }
}

#top_menu_area{
  margin-top: calc(-80 / var(--view-size) * 100vw);
  padding-top: calc(80 / var(--view-size) * 100vw);
}


/* ------------------------------
end 共通
------------------------------*/

/* ------------------------------
header
------------------------------*/

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: .3s;
}
.headerlogo {
  width: calc(300 / var(--view-size) * 100vw);
  margin: 0 auto;
  padding: calc(6 / var(--view-size) * 100vw) 0;
  transition: .3s;
}
header.active {
  background-color: rgba(255, 255, 255, 0.7);
}
header.active .headerlogo {
  width: calc(200 / var(--view-size) * 100vw);
  padding: calc(11 / var(--view-size) * 100vw) 0;
}
.headerlogo img {
  vertical-align: baseline;
}
.headerlogo h1 {
  line-height: 1;
}


.menu_btn {
  display: block;
  width: calc(54 / var(--view-size) * 100vw);
  height: calc(54 / var(--view-size) * 100vw);
  position: absolute;
  top: 0;
  right: 0;
  background-color: #cd0080;
  z-index: 4000;
  cursor: pointer;
}
.menu_btn span {
  display: inline-block;
  height: calc(2 / var(--view-size) * 100vw);
  width: calc(28 / var(--view-size) * 100vw);
  background-color: #fff;
  border-radius: calc(10 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(8 / var(--view-size) * 100vw);
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.menu_btn span:nth-child(1) {
  top: calc(15 / var(--view-size) * 100vw);
}
.menu_btn span:nth-child(2) {
  top: calc(25 / var(--view-size) * 100vw);
}
.menu_btn span:nth-child(3) {
  top: calc(35 / var(--view-size) * 100vw);
}


.nav_sp {
  right: -100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 30%;
  height: 100%;
  background-color: #f7e1ba;
  z-index: 500;
  transition: 500ms ease-out;
  padding: calc(160 / var(--view-size) * 100vw) 0 0;
  text-align: center;
}
.nav_sp li {
  border-bottom: calc(1 / var(--view-size) * 100vw) dashed #231815;
  padding: calc(16 / var(--view-size) * 100vw) 0;
}
.nav_sp a {
  font-size: calc(22 / var(--view-size) * 100vw);
  color: #111;
  font-weight: bold;
}

.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .nav_sp {
  opacity: 1 !important;
  right: 0 !important;
}

@media (max-width: 768px) {
  .headerlogo {
    width: calc(220 / var(--view-size) * 100vw);
    padding: calc(7 / var(--view-size) * 100vw) 0;
  }
  header.active .headerlogo {
    width: calc(180 / var(--view-size) * 100vw);
    padding: calc(7 / var(--view-size) * 100vw) 0;
  }

  .menu_btn {
    width: calc(46 / var(--view-size) * 100vw);
    height: calc(46 / var(--view-size) * 100vw);
  }
  .menu_btn span {
    width: calc(22 / var(--view-size) * 100vw);
  }
  .menu_btn span:nth-child(1) {
    top: calc(15 / var(--view-size) * 100vw);
  }
  .menu_btn span:nth-child(2) {
    top: calc(24 / var(--view-size) * 100vw);
  }
  .menu_btn span:nth-child(3) {
    top: calc(33 / var(--view-size) * 100vw);
  }

  .nav_sp {
    width: 100%;
    padding-top: calc(120 / var(--view-size) * 100vw);
  }
  .nav_sp a {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}

/* ------------------------------
end header
------------------------------*/

/* ------------------------------
animation
------------------------------*/

/* デフォルトアニメ */
.fadein {
  opacity: 0;
}
.fadein.active {
  animation: 0.3s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: 1.4s forwards 0.2s fadein;
}

.fadein3 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein3.active {
  animation: 0.3s forwards 0.4s fadein;
}

.fadein4 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein4.active {
  animation: 0.4s forwards 0.6s fadein;
}

.fadein5 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein5.active {
  animation: 0.4s forwards 1.8s fadein;
}

/* flipLeft */
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@keyframes flipLeftAnime {
  from {
      transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
      opacity: 0;
  }

  to {
      transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
      opacity: 1;
  }
}

/* flipRight */
.flipRight {
  animation-name: flipRightAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  perspective-origin: right center;
  opacity: 0;
}

@keyframes flipRightAnime {
  from {
      transform: perspective(600px) translate3d(0, 0, 0) rotateY(-50deg);
      opacity: 0;
  }

  to {
      transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
      opacity: 1;
  }
}

/* flipRightTop */
.flipRightTop {
  animation-name: flipRightTopAnime;
  animation-duration: .8s;
  animation-delay: 1.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipRightTopAnime {
  from {
      transform: translate(-40px, 40px) rotate(18deg);
      opacity: 0;
  }

  to {
      transform: translate(0, 1) rotate(0deg);
      opacity: 1;
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.flipLeftTrigger,
.flipRightTrigger,
.flipRightTop,
.flipRightTopTrigger {
    opacity: 0;
}


.leftin {
  transform: translateX(-100%);
  overflow: hidden;
  opacity:0;
}
.leftin.active {
  animation: 0.5s forwards leftin;
  opacity:1;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

.scale {
  opacity: 0;
  transform: scale(0.5);
}
.scale.active {
  animation: 0.5s forwards scale;
}

.scale2 {
  opacity: 0;
  transform: scale(0.5);
}

.scale2.active {
  animation: 0.4s forwards .8s scale;
}


/* end デフォルトアニメ */



/* 文字が滑らかに表示される */
.smooth {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  font-weight: bold;
  transition: .6s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  line-height: 1;
  height: 100%;
}
.smooth.active {
  clip-path: inset(0);
  transition-delay: 1.4s;
}

.smooth2 {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  font-weight: bold;
  transition: .6s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  line-height: 1;
  height: 100%;
}
.smooth2.active {
  clip-path: inset(0);
}





@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ------------------------------
end animation
------------------------------*/

/* ------------------------------
top
------------------------------*/
.top {
  background: #f7e1ba;
  height: calc(2510 / var(--view-size) * 100vw);
  margin-top: calc(53 / var(--view-size) * 100vw);
  position: relative;
}
.top_bg_frame {
  width: calc(1300 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(122 / var(--view-size) * 100vw);
  left: calc(150 / var(--view-size) * 100vw);
}

.top_ribbon {
  width: calc(237 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(122 / var(--view-size) * 100vw);
  left: calc(192 / var(--view-size) * 100vw);
}

.top_light {
  width: calc(171 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(185 / var(--view-size) * 100vw);
  left: calc(737 / var(--view-size) * 100vw);
}

.top_thatsit {
  width: calc(238 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(288 / var(--view-size) * 100vw);
  left: calc(701 / var(--view-size) * 100vw);
}

.top_title {
  width: calc(923 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(358 / var(--view-size) * 100vw);
  left: calc(400 / var(--view-size) * 100vw);
}

.top_txt {
  width: calc(410 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(118 / var(--view-size) * 100vw);
  left: calc(1037 / var(--view-size) * 100vw);
}

.top_date {
  width: calc(1083 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(820 / var(--view-size) * 100vw);
  left: calc(257 / var(--view-size) * 100vw);
}


.top_leaf {
  width: calc(1291 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(1142 / var(--view-size) * 100vw);
  left: calc(71 / var(--view-size) * 100vw);
}




.top_cordinate_01 {
  width: calc(389 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(1143 / var(--view-size) * 100vw);
  left: calc(70 / var(--view-size) * 100vw);
}
.top_cordinate_02 {
  width: calc(324 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(1145 / var(--view-size) * 100vw);
  right: calc(112 / var(--view-size) * 100vw);
}
.top_cordinate_03 {
  width: calc(398 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(2095 / var(--view-size) * 100vw);
  left: calc(52 / var(--view-size) * 100vw);
}
.top_cordinate_04 {
  width: calc(394 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(1771 / var(--view-size) * 100vw);
  right: calc(49 / var(--view-size) * 100vw);
}


#toplink01, #toplink02, #toplink03, #toplink04 {
  position:relative;
}




.top_menu_btns {
  width: calc(660 / var(--view-size) * 100vw);
  position: absolute;
    left: calc(510 / var(--view-size) * 100vw);
    top: calc(1350 / var(--view-size) * 100vw);
}

.top_menu_btn_wrap{
  position:relative;
  pointer-events: auto;
    cursor: pointer;
    margin-bottom:calc(72 / var(--view-size) * 100vw);
    width: calc(617 / var(--view-size) * 100vw);
    height: calc(167 / var(--view-size) * 100vw);
}



.menu01{
  width: calc(485 / var(--view-size) * 100vw);
  position:absolute;
  left: calc(93 / var(--view-size) * 100vw);
  top: calc(-14 / var(--view-size) * 100vw);
}
.menu02{
  width: calc(592 / var(--view-size) * 100vw);
  position:absolute;
  left: calc(42 / var(--view-size) * 100vw);
  top: calc(-16 / var(--view-size) * 100vw);
}
.menu03{
  width: calc(433 / var(--view-size) * 100vw);
  position:absolute;
  left: calc(117 / var(--view-size) * 100vw);
  top: calc(-19 / var(--view-size) * 100vw);
}
.menu04{
  width: calc(520 / var(--view-size) * 100vw);
  position:absolute;
  left: calc(81 / var(--view-size) * 100vw);
  top: calc(-28 / var(--view-size) * 100vw);
}



.link-button {
  pointer-events: auto;
  cursor: pointer;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
}


.link-button--pandora {
  background: #fff;
  font-weight: 400;
  font-size: 1.2rem;
  padding: 0;
  width:100%;
  height:100%;
}

.link-button--pandora span {
  display: block;
  background: #fff;
  position:relative;
  padding: 1rem 0;
  width:100%;
  height:100%;
  transform: translate3d(calc(-12 / var(--view-size) * 100vw), calc(-12 / var(--view-size) * 100vw), 0);
  transition: transform 0.2s cubic-bezier(0.7, 0, 0.2, 1);
}

.link-button--pandora:hover span {
  transform: translate3d(0px, 0px, 0);
  color: #000;
}

.top_menu_btn_wrap a:hover{
  opacity: 1;
}

.link-button--pandora span::before {
  position: absolute;
  content:"";
  background: url(../images/top_btn_tap.png) no-repeat;
  background-size:contain;
  top: calc(-40 / var(--view-size) * 100vw);
  left: calc(-40 / var(--view-size) * 100vw);
  width: calc(90 / var(--view-size) * 100vw);
  height: 100%;
}

.link-button--pandora span::after{
  position: absolute;
  content:"";
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(-45deg, #000 calc(30 / var(--view-size) * 100vw), transparent 0);
}

.link-button--pandora span.menu01_bg{
  background: #eec2ae;
}
.link-button--pandora span.menu02_bg{
  background: #c4c8a3;
}
.link-button--pandora span.menu03_bg{
  background: #dfc880;
}
.link-button--pandora span.menu04_bg{
  background: #b1d3d5;
}




@media (max-width: 768px) {
  
  .top {
    background: #f7e1ba;
    height: calc(588 / var(--view-size) * 100vw);
    margin-top: calc(46 / var(--view-size) * 100vw);
  }

  .top_bg_frame {
    width: calc(304 / var(--view-size) * 100vw);
    top: calc(28 / var(--view-size) * 100vw);
    left: calc(35 / var(--view-size) * 100vw);
  }

  .top_ribbon {
    width: calc(60 / var(--view-size) * 100vw);
    top: calc(28 / var(--view-size) * 100vw);
    left: calc(45 / var(--view-size) * 100vw);
  }

  .top_light {
    width: calc(40 / var(--view-size) * 100vw);
    position: absolute;
    top: calc(43 / var(--view-size) * 100vw);
    left: calc(172 / var(--view-size) * 100vw);
  }

  .top_thatsit {
    width: calc(56 / var(--view-size) * 100vw);
    position: absolute;
    top: calc(62 / var(--view-size) * 100vw);
    left: calc(164 / var(--view-size) * 100vw);
  }

  .top_title {
    width: calc(216 / var(--view-size) * 100vw);
    position: absolute;
    top: calc(84 / var(--view-size) * 100vw);
    left: calc(94 / var(--view-size) * 100vw);
  }

  .top_txt {
    width: calc(96 / var(--view-size) * 100vw);
    position: absolute;
    top: calc(28 / var(--view-size) * 100vw);
    left: calc(243 / var(--view-size) * 100vw);
  }

  .top_date {
    width: calc(254 / var(--view-size) * 100vw);
    position: absolute;
    top: calc(192 / var(--view-size) * 100vw);
    left: calc(60 / var(--view-size) * 100vw);
  }

  .top_leaf {
    width: calc(302 / var(--view-size) * 100vw);
    position: absolute;
    top: calc(266 / var(--view-size) * 100vw);
    left: calc(17 / var(--view-size) * 100vw);
  }


.top_cordinate_01 {
  width: calc(91 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(268 / var(--view-size) * 100vw);
  left: calc(16 / var(--view-size) * 100vw);
}
.top_cordinate_02 {
  width: calc(76 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(268 / var(--view-size) * 100vw);
  right: calc(26 / var(--view-size) * 100vw);
}
.top_cordinate_03 {
  width: calc(93 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(491 / var(--view-size) * 100vw);
  left: calc(12 / var(--view-size) * 100vw);
}
.top_cordinate_04 {
  width: calc(92 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(415 / var(--view-size) * 100vw);
  right: calc(11 / var(--view-size) * 100vw);
}






.top_menu_btns {
  width: calc(151 / var(--view-size) * 100vw);
  position: absolute;
    left: calc(117 / var(--view-size) * 100vw);
    top: calc(306 / var(--view-size) * 100vw);
}
.top_menu_btn_wrap{
  position:relative;
  pointer-events: auto;
    cursor: pointer;
    margin-bottom:calc(23 / var(--view-size) * 100vw);
    width: calc(144 / var(--view-size) * 100vw);
    height: calc(39 / var(--view-size) * 100vw);

}

.menu01{
  width: calc(113 / var(--view-size) * 100vw);
  position:absolute;
  left: calc(24 / var(--view-size) * 100vw);
  top: calc(-3 / var(--view-size) * 100vw);
}
.menu02{
  width: calc(138 / var(--view-size) * 100vw);
  position:absolute;
  left: calc(10 / var(--view-size) * 100vw);
  top: calc(-3 / var(--view-size) * 100vw);
}
.menu03{
  width: calc(101 / var(--view-size) * 100vw);
  position:absolute;
  left: calc(27 / var(--view-size) * 100vw);
  top: calc(-4 / var(--view-size) * 100vw);
}
.menu04{
  width: calc(121 / var(--view-size) * 100vw);
  position:absolute;
  left: calc(19 / var(--view-size) * 100vw);
  top: calc(-7 / var(--view-size) * 100vw);
}



.link-button--pandora span {
  transform: translate3d(calc(-3 / var(--view-size) * 100vw), calc(-3 / var(--view-size) * 100vw), 0);
}

.link-button--pandora span::before {
  top: calc(-7 / var(--view-size) * 100vw);
  left: calc(-7 / var(--view-size) * 100vw);
  width: calc(22 / var(--view-size) * 100vw);
}

.link-button--pandora span::after{
  width: 60px;
  height: 60px;
  background-image: linear-gradient(-45deg, #000 calc(8 / var(--view-size) * 100vw), transparent 0);
}


}
/* ------------------------------
end top
------------------------------*/



/* ------------------------------
dull color
------------------------------*/
.dullcolor {
  padding: calc(136 / var(--view-size) * 100vw) 0 calc(154 / var(--view-size) * 100vw);
  background:#eec2ae;
  transform: translateY(calc(-1 / var(--view-size) * 100vw));
}
.dullcolor .inner {
  width: calc(1200 / var(--view-size) * 100vw);
}

.dullcolor_box {
  background-color: #f5dbcf;
  position: relative; z-index: 1; overflow: hidden; width: 100%; 
}

.box-block { position: relative; width: auto; }

.circle {
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 100;
  display:block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}

.top-left { left: -41px; top: -41px; }
.top-rigt { right: -41px; top: -41px; }
.btm-left { left: -41px; bottom: -41px; }
.btm-rigt { right: -41px; bottom: -41px; }

.dullcolor_box .circle {
  background: #eec2ae;
  border: 8px solid #231815;
}

.dullcolor_box .box-block {
  background: #f5dbcf;
  border: 8px solid #231815;
  padding-bottom: calc(68 / var(--view-size) * 100vw);
}

.dullcolor_box_ttl {
  width: calc(1000 / var(--view-size) * 100vw);
  padding-top: calc(80 / var(--view-size) * 100vw);
  margin-left:auto;
  margin-right:auto;
  margin-bottom: calc(40 / var(--view-size) * 100vw);
  padding-bottom: calc(60 / var(--view-size) * 100vw);
  position:relative;
  border-bottom:1px solid #000;
}

.dullcolor_box_ttl:before {
  position:absolute;
  content:"";
  background:#000;
  
width:100%;
height:2.5px;
left:0;
bottom:.1rem;
}


.dullcolor_box_cont {
  width: calc(1000 / var(--view-size) * 100vw);
  margin: 0 auto;
}

.dullcolor_box_img {
  margin-bottom: calc(34 / var(--view-size) * 100vw);
  padding-bottom: calc(40 / var(--view-size) * 100vw);
  background-image: repeating-linear-gradient(120deg, #333333, #333333 1.5px, transparent 1.5px, transparent 5px, #333333 5px);
    background-size: 100% 10px;
    background-position: center bottom;
    background-repeat: no-repeat;  
    text-align: center;
}



.dullcolor_box_img img {
  width: calc(960 / var(--view-size) * 100vw);
  margin: 0 auto;
}

.dullcolor_box_img img.except01 {
  margin-left:calc(-40 / var(--view-size) * 100vw);
}
.dullcolor_box_img img.except01 {
  width: calc(1000 / var(--view-size) * 100vw);
}

.dullcolor_box_img:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  background-image:none;
  
}

@media (max-width: 768px) {
  .dullcolor {
    padding: calc(30 / var(--view-size) * 100vw) 0 calc(36 / var(--view-size) * 100vw);
  }
  .dullcolor .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }

  .circle { width: 30px; height: 30px; position: absolute; z-index: 2; -webkit-border-radius: 100%; -moz-border-radius: 100%; -ms-border-radius: 100%; -o-border-radius: 100%; border-radius: 100%; }
.top-left { left: -15px; top: -15px; }
.top-rigt { right: -15px; top: -15px; }
.btm-left { left: -15px; bottom: -15px; }
.btm-rigt { right: -15px; bottom: -15px; }

.dullcolor_box .circle {
  background: #eec2ae;
  border: 3px solid #231815;
}

.dullcolor_box .box-block {
  background: #f5dbcf;
  border: 3px solid #231815;
  padding-bottom: calc(20 / var(--view-size) * 100vw);
}

.dullcolor_box_ttl {
  width: calc(290 / var(--view-size) * 100vw);
  padding-top: calc(22 / var(--view-size) * 100vw);
  margin-bottom: calc(10 / var(--view-size) * 100vw);
  padding-bottom: calc(18 / var(--view-size) * 100vw);
}
  

  .dullcolor_box_cont {
    width: calc(300 / var(--view-size) * 100vw);
  margin: 0 auto;

  }
  .dullcolor_box_img {
    margin-bottom: calc(10 / var(--view-size) * 100vw);
    padding-bottom: calc(5 / var(--view-size) * 100vw);
    background-image: repeating-linear-gradient(120deg, #333333, #333333 1px, transparent 1px, transparent 3px, #333333 3px);
      background-size: 100% 5px;
  }

  .dullcolor_box_img img {
    width: calc(290 / var(--view-size) * 100vw);
    margin: 0 auto;
  }


.dullcolor_box_img img.except01 {
  margin-left:calc(-18 / var(--view-size) * 100vw);
}
.dullcolor_box_img img.except01 {
  width: calc(308 / var(--view-size) * 100vw);
}


}

/* ------------------------------
end dull color
------------------------------*/





/* ------------------------------
cute_and_baggy
------------------------------*/

.cuteandbaggy {
  padding: calc(136 / var(--view-size) * 100vw) 0 calc(154 / var(--view-size) * 100vw);
  background:#c4c8a3;
  transform: translateY(calc(-1 / var(--view-size) * 100vw));
}
.cuteandbaggy .inner {
  width: calc(1200 / var(--view-size) * 100vw);
}

.cuteandbaggy_box {
  background-color: #dbdec8;
  position: relative; z-index: 1; overflow: hidden; width: 100%; 
}

.cuteandbaggy_box .circle {
  background: #c4c8a3;
  border: 8px solid #231815;
}

.cuteandbaggy_box .box-block {
  background: #dbdec8;
  border: 8px solid #231815;
  padding-bottom: calc(68 / var(--view-size) * 100vw);
}

.cuteandbaggy_box_ttl {
  width: calc(1040 / var(--view-size) * 100vw);
  padding-top: calc(80 / var(--view-size) * 100vw);
  margin-left:auto;
  margin-right:auto;
  margin-bottom: calc(40 / var(--view-size) * 100vw);
  padding-bottom: calc(60 / var(--view-size) * 100vw);
  position:relative;
  border-bottom:1px solid #000;
}


.cuteandbaggy_box_ttl:before {
  position:absolute;
  content:"";
  background:#000;
  
width:100%;
height:2.5px;
left:0;
bottom:.1rem;
}

.cuteandbaggy_box_cont {
  width: calc(1000 / var(--view-size) * 100vw);
  margin: 0 auto;
}

.cuteandbaggy_box_img {
  margin-bottom: calc(34 / var(--view-size) * 100vw);
  padding-bottom: calc(40 / var(--view-size) * 100vw);
  background-image: repeating-linear-gradient(120deg, #333333, #333333 1.5px, transparent 1.5px, transparent 5px, #333333 5px);
    background-size: 100% 10px;
    background-position: left 0 bottom 0;
    background-repeat: no-repeat;
    text-align: center;
}

.cuteandbaggy_box_img img {
  width: calc(960 / var(--view-size) * 100vw);
  margin: 0 auto;
}

.cuteandbaggy_box_img img.except02 {
  margin-right:calc(-50 / var(--view-size) * 100vw);
}
.cuteandbaggy_box_img img.except02 {
  width: calc(1010 / var(--view-size) * 100vw);
}
.cuteandbaggy_box_img img.except03 {
  margin-left:calc(-22 / var(--view-size) * 100vw);
}
.cuteandbaggy_box_img img.except03 {
  width: calc(982 / var(--view-size) * 100vw);
}
.cuteandbaggy_box_img img.except04 {
  margin-left:calc(-30 / var(--view-size) * 100vw);
}
.cuteandbaggy_box_img img.except04 {
  width: calc(990 / var(--view-size) * 100vw);
}

.cuteandbaggy_box_img img.except08 {
  margin-left:calc(-55 / var(--view-size) * 100vw);
}
.cuteandbaggy_box_img img.except08 {
  width: calc(1015 / var(--view-size) * 100vw);
}


.cuteandbaggy_box_img:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  background-image:none;
  
}

@media (max-width: 768px) {
  .cuteandbaggy {
    padding: calc(30 / var(--view-size) * 100vw) 0 calc(36 / var(--view-size) * 100vw);
  }
  .cuteandbaggy .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }

.cuteandbaggy_box .circle {
  border: 3px solid #231815;
}

.cuteandbaggy_box .box-block {
  border: 3px solid #231815;
  padding-bottom: calc(20 / var(--view-size) * 100vw);
}

.cuteandbaggy_box_ttl {
  width: calc(300 / var(--view-size) * 100vw);
  padding-top: calc(22 / var(--view-size) * 100vw);
  margin-bottom: calc(10 / var(--view-size) * 100vw);
  padding-bottom: calc(20 / var(--view-size) * 100vw);
}
  
  .cuteandbaggy_box_cont {
    width: calc(300 / var(--view-size) * 100vw);
  }
  .cuteandbaggy_box_img {
    margin-bottom: calc(10 / var(--view-size) * 100vw);
    padding-bottom: calc(5 / var(--view-size) * 100vw);
    background-image: repeating-linear-gradient(120deg, #333333, #333333 1px, transparent 1px, transparent 3px, #333333 3px);
    background-size: 100% 5px;
    background-position: left 0 bottom 0;
    background-repeat: no-repeat;
    text-align: center;
  }

  .cuteandbaggy_box_img img {
    width: calc(290 / var(--view-size) * 100vw);
    margin: 0 auto;
  }


.cuteandbaggy_box_img img.except02 {
  margin-right:calc(-15 / var(--view-size) * 100vw);
}
.cuteandbaggy_box_img img.except02 {
  width: calc(305 / var(--view-size) * 100vw);
}

.cuteandbaggy_box_img img.except03 {
  margin-left:calc(-8 / var(--view-size) * 100vw);
}
.cuteandbaggy_box_img img.except03 {
  width: calc(298 / var(--view-size) * 100vw);
}

.cuteandbaggy_box_img img.except04 {
  margin-left:calc(-10 / var(--view-size) * 100vw);
}
.cuteandbaggy_box_img img.except04 {
  width: calc(300 / var(--view-size) * 100vw);
}

.cuteandbaggy_box_img img.except08 {
  margin-left:calc(-18 / var(--view-size) * 100vw);
}
.cuteandbaggy_box_img img.except08 {
  width: calc(308 / var(--view-size) * 100vw);
}



}

/* ------------------------------
end cute_and_baggy
------------------------------*/





/* ------------------------------
warmpile
------------------------------*/

.warmpile {
  padding: calc(136 / var(--view-size) * 100vw) 0 calc(154 / var(--view-size) * 100vw);
  background:#dfc880;
  transform: translateY(calc(-1 / var(--view-size) * 100vw));
}
.warmpile .inner {
  width: calc(1200 / var(--view-size) * 100vw);
}

.warmpile_box {
  position: relative; z-index: 1; overflow: hidden; width: 100%; 
}

.warmpile_box .circle {
  background: #dfc880;
  border: 8px solid #231815;
}

.warmpile_box .box-block {
  background: #ecdeb2;
  border: 8px solid #231815;
  padding-bottom: calc(68 / var(--view-size) * 100vw);
}

.warmpile_box_ttl {
  width: calc(1025 / var(--view-size) * 100vw);
  padding-top: calc(80 / var(--view-size) * 100vw);
  margin-left:auto;
  margin-right:auto;
  margin-bottom: calc(40 / var(--view-size) * 100vw);
  padding-bottom: calc(60 / var(--view-size) * 100vw);
  position:relative;
  border-bottom:1px solid #000;
}

.warmpile_box_ttl:before {
  position:absolute;
  content:"";
  background:#000;
  
width:100%;
height:2.5px;
left:0;
bottom:.1rem;
}


.warmpile_box_cont {
  width: calc(1000 / var(--view-size) * 100vw);
  margin: 0 auto;
}


.warmpile_box_img {
  margin-bottom: calc(34 / var(--view-size) * 100vw);
  padding-bottom: calc(40 / var(--view-size) * 100vw);
  background-image: repeating-linear-gradient(120deg, #333333, #333333 1.5px, transparent 1.5px, transparent 5px, #333333 5px);
    background-size: 100% 10px;
    background-position: center bottom;
    background-repeat: no-repeat;
    text-align: center;
}

.warmpile_box_img img {
  width: calc(960 / var(--view-size) * 100vw);
  margin: 0 auto;
}


.warmpile_box_img img.except05 {
  margin-left:calc(-72 / var(--view-size) * 100vw);
}
.warmpile_box_img img.except05 {
  width: calc(1032 / var(--view-size) * 100vw);
}

.warmpile_box_img img.except06 {
  margin-right:calc(-45 / var(--view-size) * 100vw);
}
.warmpile_box_img img.except06 {
  width: calc(1005 / var(--view-size) * 100vw);
}



.warmpile_box_img:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  background-image:none;
  
}

@media (max-width: 768px) {
  .warmpile {
    padding: calc(30 / var(--view-size) * 100vw) 0 calc(36 / var(--view-size) * 100vw);
  }
  .warmpile .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }

.warmpile_box .circle {
  border: 3px solid #231815;
}

.warmpile_box .box-block {
  border: 3px solid #231815;
  padding-bottom: calc(20 / var(--view-size) * 100vw);
}

.warmpile_box_ttl {
  width: calc(290 / var(--view-size) * 100vw);
  padding-top: calc(22 / var(--view-size) * 100vw);
  margin-bottom: calc(10 / var(--view-size) * 100vw);
  padding-bottom: calc(18 / var(--view-size) * 100vw);
}

  .warmpile_box_cont {
    width: calc(300 / var(--view-size) * 100vw);
  }
  .warmpile_box_img {
    margin-bottom: calc(10 / var(--view-size) * 100vw);
    padding-bottom: calc(5 / var(--view-size) * 100vw);
    background-image: repeating-linear-gradient(120deg, #333333, #333333 1px, transparent 1px, transparent 3px, #333333 3px);
      background-size: 100% 5px;
  }

  .warmpile_box_img img {
    width: calc(290 / var(--view-size) * 100vw);
    margin: 0 auto;
  }


.warmpile_box_img img.except05 {
  margin-left:calc(-18 / var(--view-size) * 100vw);
}
.warmpile_box_img img.except05 {
  width: calc(313 / var(--view-size) * 100vw);
}

.warmpile_box_img img.except06 {
  margin-right:calc(-15 / var(--view-size) * 100vw);
}
.warmpile_box_img img.except06 {
  width: calc(305 / var(--view-size) * 100vw);
}


}

/* ------------------------------
end warmpile
------------------------------*/





/* ------------------------------
higyquality
------------------------------*/

.highquality {
  padding: calc(136 / var(--view-size) * 100vw) 0 calc(154 / var(--view-size) * 100vw);
  background:#b1d3d5;
  transform: translateY(calc(-1 / var(--view-size) * 100vw));
}
.highquality .inner {
  width: calc(1200 / var(--view-size) * 100vw);
}

.highquality_box {
  
  position: relative; z-index: 1; overflow: hidden; width: 100%; 
}

.highquality_box .circle {
  background: #b1d3d5;
  border: 8px solid #231815;
}

.highquality_box .box-block {
  background: #d0e5e6;
  border: 8px solid #231815;
  padding-bottom: calc(68 / var(--view-size) * 100vw);
}

.highquality_box_ttl {
  width: calc(1000 / var(--view-size) * 100vw);
  padding-top: calc(80 / var(--view-size) * 100vw);
  margin-left:auto;
  margin-right:auto;
  margin-bottom: calc(40 / var(--view-size) * 100vw);
  padding-bottom: calc(60 / var(--view-size) * 100vw);
  position:relative;
  border-bottom:1px solid #000;
}


.highquality_box_ttl:before {
  position:absolute;
  content:"";
  background:#000;
  
width:100%;
height:2.5px;
left:0;
bottom:.1rem;
}

.highquality_box_cont {
  width: calc(1000 / var(--view-size) * 100vw);
  margin: 0 auto;
}


.highquality_box_img {
  margin-bottom: calc(34 / var(--view-size) * 100vw);
  padding-bottom: calc(40 / var(--view-size) * 100vw);
  background-image: repeating-linear-gradient(120deg, #333333, #333333 1.5px, transparent 1.5px, transparent 5px, #333333 5px);
    background-size: 100% 10px;
    background-position: center bottom;
    background-repeat: no-repeat;
    text-align: center;
}

.highquality_box_img img {
  width: calc(960 / var(--view-size) * 100vw);
  margin: 0 auto;
}


.highquality_box_img img.except07 {
  margin-left:calc(-25 / var(--view-size) * 100vw);
}
.highquality_box_img img.except07 {
  width: calc(985 / var(--view-size) * 100vw);
}
.highquality_box_img img.except09 {
  margin-left:calc(-35 / var(--view-size) * 100vw);
}
.highquality_box_img img.except09 {
  width: calc(995 / var(--view-size) * 100vw);
}


.highquality_box_img:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  background-image:none;
  
}

@media (max-width: 768px) {
  .highquality {
    padding: calc(30 / var(--view-size) * 100vw) 0 calc(36 / var(--view-size) * 100vw);
  }
  .highquality .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }

.highquality_box .circle {
  border: 3px solid #231815;
}

.highquality_box .box-block {
  border: 3px solid #231815;
  padding-bottom: calc(20 / var(--view-size) * 100vw);
}

.highquality_box_ttl {
  width: calc(290 / var(--view-size) * 100vw);
  padding-top: calc(22 / var(--view-size) * 100vw);
  margin-bottom: calc(10 / var(--view-size) * 100vw);
  padding-bottom: calc(18 / var(--view-size) * 100vw);
}
  .highquality_box_cont {
    width: calc(300 / var(--view-size) * 100vw);
  }
  .highquality_box_img {
    margin-bottom: calc(10 / var(--view-size) * 100vw);
    padding-bottom: calc(5 / var(--view-size) * 100vw);
    background-image: repeating-linear-gradient(120deg, #333333, #333333 1px, transparent 1px, transparent 3px, #333333 3px);
    background-size: 100% 5px;
  }

  .highquality_box_img img {
    width: calc(290 / var(--view-size) * 100vw);
    margin: 0 auto;
  }


.highquality_box_img img.except07 {
  margin-left:calc(-8 / var(--view-size) * 100vw);
}
.highquality_box_img img.except07 {
  width: calc(298 / var(--view-size) * 100vw);
}
.highquality_box_img img.except09 {
  margin-left:calc(-13 / var(--view-size) * 100vw);
}
.highquality_box_img img.except09 {
  width: calc(303 / var(--view-size) * 100vw);
}


}

/* ------------------------------
end higyquality
------------------------------*/







/* ------------------------------
cooldown
------------------------------*/
.cooldown {
  padding: calc(88 / var(--view-size) * 100vw) 0 calc(146 / var(--view-size) * 100vw);
  background: url(../images/cooldown_bg.png) center / cover no-repeat;
  transform: translateY(calc(-1 / var(--view-size) * 100vw));
}
.cooldown .inner {
  width: calc(1200 / var(--view-size) * 100vw);
}
.cooldown_ttl {
  margin-bottom: calc(64 / var(--view-size) * 100vw);
  width: calc(1097 / var(--view-size) * 100vw);
  margin-left: auto;
}
.cooldown_box {
  background-color: #d4f0ff;
  border-radius: calc(60 / var(--view-size) * 100vw);
  padding-bottom: calc(132 / var(--view-size) * 100vw);
}
.cooldown_box_ttl {
  width: calc(1160 / var(--view-size) * 100vw);
  padding-top: calc(16 / var(--view-size) * 100vw);
}
.cooldown_box_cont {
  width: calc(820 / var(--view-size) * 100vw);
  margin: 0 auto;
}
.cooldown_box_img {
  margin-bottom: calc(64 / var(--view-size) * 100vw);
}
.cooldown_box_img:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {

  .cooldown {
    padding: calc(32 / var(--view-size) * 100vw) 0 calc(56 / var(--view-size) * 100vw);
  }
  .cooldown .inner {
    width: calc(335 / var(--view-size) * 100vw);
  }
  .cooldown_ttl {
    margin-bottom: calc(32 / var(--view-size) * 100vw);
    width: calc(300 / var(--view-size) * 100vw);
  }
  .cooldown_box {
    border-radius: calc(32 / var(--view-size) * 100vw);
    padding-bottom: calc(48 / var(--view-size) * 100vw);
  }
  .cooldown_box_ttl {
    width: calc(320 / var(--view-size) * 100vw);
  }
  .cooldown_box_cont {
    width: calc(300 / var(--view-size) * 100vw);
  }
  .cooldown_box_img {
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}

/* ------------------------------
end cooldown
------------------------------*/



/* ------------------------------
cinema
------------------------------*/
.cinema {
  background-color: #d4d7da;
  padding: calc(56 / var(--view-size) * 100vw) 0 calc(72 / var(--view-size) * 100vw);
  border-top: calc(12 / var(--view-size) * 100vw) solid #000;
  border-bottom: calc(12 / var(--view-size) * 100vw) solid #000;
  transform: translateY(calc(-1 / var(--view-size) * 100vw));
}
.cinema_ttl {
  width: calc(985 / var(--view-size) * 100vw);
  margin: 0 auto calc(40 / var(--view-size) * 100vw);
}
.cinema_row {
  width: calc(900 / var(--view-size) * 100vw);
  margin: 0 auto;
}
.cinema_img {
  width: calc(407 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .cinema {
    padding: calc(48 / var(--view-size) * 100vw) 0 calc(40 / var(--view-size) * 100vw);
    border-top: calc(8 / var(--view-size) * 100vw) solid #000;
    border-bottom: calc(8 / var(--view-size) * 100vw) solid #000;
  }
  .cinema_ttl {
    width: calc(335 / var(--view-size) * 100vw);
  }
  .cinema_row {
    width: calc(240 / var(--view-size) * 100vw);
  }
  .cinema_img {
    width: 100%;
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
  .cinema_img:last-child {
    margin-bottom: 0;
  }
}
/* ------------------------------
end cinema
------------------------------*/



/* ------------------------------
clear
------------------------------*/
.clear {
  padding: calc(64 / var(--view-size) * 100vw) 0;
  background: url(../images/clear_bg.png) center / cover no-repeat;
}
.clear_cont {
  width: calc(1012 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .clear {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
  .clear_cont {
    width: calc(330 / var(--view-size) * 100vw);
  }
}
/* ------------------------------
end clear
------------------------------*/