@charset "UTF-8";
.rammetto {
  font-family: "Rammetto One", sans-serif;
  font-style: normal;
}

.noto_sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.kiwi_maru {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}

.nerko {
  font-family: "Nerko One", cursive;
  font-weight: 400;
  font-style: normal;
}

img {
  pointer-events: none;
}

.l-footer {
  z-index: 3;
}

#sp_menu {
  display: block;
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  overflow: visible;
}
@media screen and (min-width: 769px) {
  #sp_menu {
    display: none;
  }
}
#sp_menu .menu {
  --menu-width: 56px;
  --menu-height: 56px;
  --menu-bg-color: #B7144F;
  --menu-bar-color: #FFF;
  --menu-bar-width: 20px;
  --menu-bar-height: 1.5px;
  --menu-bar-gap: 6px;
  background: #B7144F;
  border-radius: 50%;
  background: var(--menu-bg-color);
  width: var(--menu-width);
  height: var(--menu-height);
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
}
#sp_menu .menu .icon {
  display: block;
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: calc((var(--menu-width) - var(--menu-bar-width)) / 2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#sp_menu .menu .icon::before, #sp_menu .menu .icon::after {
  content: "";
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  border-radius: 5px;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
#sp_menu .menu .icon::before {
  top: calc(-1 * var(--menu-bar-gap));
}
#sp_menu .menu .icon::after {
  bottom: calc(-1 * var(--menu-bar-gap));
}
#sp_menu .menu.active {
  background: var(--menu-bar-color);
}
#sp_menu .menu.active .icon {
  background: transparent;
}
#sp_menu .menu.active .icon::before, #sp_menu .menu.active .icon::after {
  content: "";
  background: var(--menu-bg-color);
}
#sp_menu .menu.active .icon::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 0;
}
#sp_menu .menu.active .icon::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  bottom: 0;
}

#gnav {
  background: url(../img/sp_menu_bg.png) no-repeat center bottom/100% 61px;
  display: block;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  float: none;
  width: 100%;
  max-height: 100vh;
  padding-bottom: 60px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  -webkit-text-stroke: 0.3px currentColor;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  position: absolute;
  top: -1000px;
  left: 0;
  z-index: 10;
  overflow: auto;
}
#gnav.open {
  -webkit-transform: translateY(1000px);
          transform: translateY(1000px);
}
#gnav .contents_nav {
  background: #B7144F;
  height: 100%;
  padding: 110px 25px 71px;
}
#gnav .contents_nav li {
  border-bottom: 1px solid currentColor;
}
#gnav .contents_nav li:first-child {
  border-top: 1px solid currentColor;
}
#gnav .contents_nav li a {
  display: block;
  padding: 26px 0;
  position: relative;
}
#gnav .contents_nav li a::before {
  content: "";
  background: url(../img/arrow_wht.svg) no-repeat center/contain;
  width: 16px;
  height: 16px;
  position: absolute;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  top: 51%;
  right: 0;
}

#main {
  color: #320707;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  position: relative;
  font-size: calc(13px / 1.4);
}
@media screen and (min-width: 769px) {
  #main {
    font-size: 13px;
  }
}
@media screen and (min-width: 769px) {
  #main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 45px 0 0 0;
  }
  #main::before {
    content: "";
    background: url(../img/bg.jpg) no-repeat center/cover, fixed;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }
}

.grid_navi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
}
.grid_navi li a {
  background: url(../img/arrow.svg) no-repeat center right 10.7142857143px/auto, #fff;
  border: 1px solid currentColor;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #B7144F;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
  -webkit-text-stroke: 0.2px currentColor;
  position: relative;
  min-height: calc(73px / 1.4);
  padding-right: calc(10px / 1.4);
  font-size: calc(18px / 1.4);
}
@media screen and (min-width: 769px) {
  .grid_navi li a {
    min-height: 73px;
  }
}
@media screen and (min-width: 769px) {
  .grid_navi li a {
    padding-right: 10px;
  }
}
@media screen and (min-width: 769px) {
  .grid_navi li a {
    font-size: 18px;
  }
}
@media screen and (min-width: 769px) {
  .grid_navi li a {
    background-position: center right 15px;
  }
}

.mv {
  background: url(../img/bg.jpg) no-repeat center/cover;
  height: 157.7vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .mv {
    background: none;
    padding: 0 15px;
    z-index: 2;
    width: 54%;
    height: auto;
    position: static;
  }
}
.mv .sticky {
  background: url(../img/mv_img.png) no-repeat center bottom -23%/90%;
  height: 100%;
  position: relative;
}
.mv .sticky::before, .mv .sticky::after {
  content: "";
  position: absolute;
  top: 0;
}
.mv .sticky::before {
  background: url(../img/flag_left.png) no-repeat center top/contain;
  width: 38.6%;
  aspect-ratio: 1/0.52;
  left: 0;
}
.mv .sticky::after {
  background: url(../img/flag_right.png) no-repeat center top/contain;
  width: 36.4%;
  aspect-ratio: 1/0.78;
  right: 0;
}
@media screen and (min-width: 769px) {
  .mv .sticky {
    background-position: center bottom -4vw;
    background-size: 60%;
    padding-bottom: 21vw;
    height: auto;
    min-height: 100vh;
    position: sticky;
    top: 45px;
  }
  .mv .sticky::before, .mv .sticky::after {
    top: -45px;
  }
  .mv .sticky::before {
    width: 29%;
    left: -15px;
  }
  .mv .sticky::after {
    width: 27.3%;
    right: -15px;
  }
}
.mv .mv_wrap {
  padding-top: 12vw;
}
.mv .mv_wrap .ttl {
  width: 92%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.mv .mv_wrap .mv_cloud div {
  position: absolute;
}
.mv .mv_wrap .mv_cloud div:nth-of-type(1) {
  width: 35.2%;
  top: 13.5%;
  left: -7%;
}
.mv .mv_wrap .mv_cloud div:nth-of-type(2) {
  width: 25.8%;
  top: 16%;
  right: -9%;
}
.mv .mv_wrap .mv_cloud div:nth-of-type(3) {
  width: 34%;
  top: 49.5%;
  left: 0;
}
.mv .mv_wrap .mv_cloud div:nth-of-type(4) {
  width: 34.5%;
  top: 52%;
  right: 0;
}
@media screen and (min-width: 769px) {
  .mv .mv_wrap {
    padding: 0;
    position: relative;
  }
  .mv .mv_wrap .ttl {
    margin-bottom: 30px;
    width: 65.5%;
  }
  .mv .mv_wrap .mv_cloud div:nth-of-type(1) {
    width: 26.5%;
    top: 20%;
    left: -15px;
  }
  .mv .mv_wrap .mv_cloud div:nth-of-type(2) {
    width: 19.5%;
    top: 28%;
    right: -16px;
  }
  .mv .mv_wrap .mv_cloud div:nth-of-type(3) {
    width: 25.2%;
    top: auto;
    left: -15px;
    bottom: -10%;
  }
  .mv .mv_wrap .mv_cloud div:nth-of-type(4) {
    width: 25.6%;
    top: auto;
    right: -16px;
    bottom: -15%;
  }
}
.mv .grid_navi {
  display: none;
}
@media screen and (min-width: 769px) {
  .mv .grid_navi {
    display: grid;
    width: min(100%, 454px);
    gap: 10px 8px;
    margin-bottom: 30px;
  }
  .mv .grid_navi li a {
    background-size: 16px;
    padding: 0 30px 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .mv .grid_navi {
    zoom: 80%;
  }
}

.sticky, .animation_wrap, .mv_cloud {
  opacity: 0;
  -webkit-animation: fadeIn 0.8s ease forwards;
          animation: fadeIn 0.8s ease forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation_wrap, .mv_cloud {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.animation_wrap {
  display: none;
}
@media screen and (min-width: 769px) {
  .animation_wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
  }
  .animation_wrap div {
    position: absolute;
  }
  .animation_wrap div:nth-of-type(1) {
    width: 14.8%;
    top: 11%;
    right: -7%;
  }
  .animation_wrap div:nth-of-type(2) {
    width: 14.8%;
    top: 35%;
    right: -9%;
  }
  .animation_wrap div:nth-of-type(3) {
    width: 25.7%;
    top: 70%;
    right: -11%;
  }
}

.animation_wrap div, .mv_cloud div {
  animation: floating 1.8s ease-in-out infinite alternate-reverse;
}
.animation_wrap div.reverse, .mv_cloud div.reverse {
  animation: floating2 1.8s ease-in-out infinite alternate-reverse;
}

@media screen and (max-width: 768px) {
  @-webkit-keyframes floating {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(-14%);
              transform: translateY(-14%);
    }
  }
  @keyframes floating {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(-14%);
              transform: translateY(-14%);
    }
  }
  @-webkit-keyframes floating2 {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(14%);
              transform: translateY(14%);
    }
  }
  @keyframes floating2 {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(14%);
              transform: translateY(14%);
    }
  }
}
@media screen and (min-width: 769px) {
  @-webkit-keyframes floating {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px);
    }
  }
  @keyframes floating {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px);
    }
  }
  @-webkit-keyframes floating2 {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
  }
  @keyframes floating2 {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
  }
}
#wrap {
  background: #F9EFD5;
  position: relative;
  width: 100%;
  z-index: 3;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #wrap {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 30px 30px 0 0;
    width: 530px;
    z-index: 3;
  }
}

section {
  color: #fff;
  position: relative;
  z-index: 1;
  padding-top: calc(20px / 1.4);
  padding-left: calc(35px / 1.4);
  padding-right: calc(35px / 1.4);
  padding-bottom: calc(130px / 1.4);
}
@media screen and (min-width: 769px) {
  section {
    padding-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  section {
    padding-left: 35px;
  }
}
@media screen and (min-width: 769px) {
  section {
    padding-right: 35px;
  }
}
@media screen and (min-width: 769px) {
  section {
    padding-bottom: 130px;
  }
}
section .ttl_img {
  margin-bottom: calc(6px / 1.4);
  text-align: center;
}
@media screen and (min-width: 769px) {
  section .ttl_img {
    margin-bottom: 6px;
  }
}
section .inner {
  position: relative;
  z-index: 3;
}
section .grid_navi {
  width: min(100%, 460px);
  margin: 0 auto;
  gap: calc(10px / 1.4);
}
@media screen and (min-width: 769px) {
  section .grid_navi {
    gap: 10px;
  }
}
section .grid_navi li a {
  border: none;
  background-size: calc(19px / 1.4);
}
@media screen and (min-width: 769px) {
  section .grid_navi li a {
    background-size: 19px;
  }
}

.sect_mask {
  position: relative;
  z-index: 2;
  margin-top: calc(-80px / 1.4);
  padding-top: calc(80px / 1.4);
}
@media screen and (min-width: 769px) {
  .sect_mask {
    margin-top: -80px;
  }
}
@media screen and (min-width: 769px) {
  .sect_mask {
    padding-top: 80px;
  }
}
.sect_mask::before, .sect_mask::after {
  content: "";
  position: absolute;
  left: 0;
}
.sect_mask::before {
  -webkit-mask-image: url(../img/sect_mask.png);
          mask-image: url(../img/sect_mask.png);
  -webkit-mask-position: center top;
          mask-position: center top;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  height: calc(90px / 1.4);
}
@media screen and (min-width: 769px) {
  .sect_mask::before {
    height: 90px;
  }
}
.sect_mask.flip::before {
  -webkit-mask-image: url(../img/sect_mask2.png);
          mask-image: url(../img/sect_mask2.png);
}
.sect_mask:not(.bnr_area)::after {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: min(100%, 430px);
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .sect_mask:not(.bnr_area)::after {
    background-size: 100%;
  }
}

.sec_ttl {
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: calc(32px / 1.4);
  font-size: calc(32px / 1.4);
}
@media screen and (min-width: 769px) {
  .sec_ttl {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 769px) {
  .sec_ttl {
    font-size: 32px;
  }
}
.sec_ttl span {
  display: block;
  font-family: "Nerko One", cursive;
  font-weight: 400;
  text-align: center;
  font-size: calc(16px / 1.4);
}
@media screen and (min-width: 769px) {
  .sec_ttl span {
    font-size: 16px;
  }
}

.txt_center {
  text-align: center;
}

.read {
  text-align: center;
  line-height: 1.76;
  font-size: calc(17px / 1.4);
}
@media screen and (min-width: 769px) {
  .read {
    font-size: 17px;
  }
}

.grid02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(100%, 460px);
  margin: 0 auto;
}
.grid02 li a {
  display: block;
}

#concept {
  background-image: url(../img/concept_bg_left.png), url(../img/concept_bg_right.png), url(../img/cloud1.png), url(../img/cloud2.png), url(../img/concept_bg2.png);
  background-position: left top 35.7142857143px, right top 35.7142857143px, right top 16.4285714286px, left top 310.7142857143px, left 38% top 103.5714285714px;
  background-size: 121.4285714286px, 101.4285714286px, 115.4071428571px, 92.8571428571px, 193.5714285714px;
  background-repeat: no-repeat, no-repeat;
  padding-top: calc(75px / 1.4);
}
@media screen and (min-width: 769px) {
  #concept {
    padding-top: 75px;
  }
}
#concept h2 {
  text-align: center;
  margin-bottom: calc(57px / 1.4);
}
@media screen and (min-width: 769px) {
  #concept h2 {
    margin-bottom: 57px;
  }
}
#concept h2 img {
  width: calc(242px / 1.4);
}
@media screen and (min-width: 769px) {
  #concept h2 img {
    width: 242px;
  }
}
@media screen and (min-width: 769px) {
  #concept {
    background-position: left top 50px, right top 50px, right top 23px, left top 435px, left 38% top 145px;
    background-size: 170px, 142px, 161.57px, 130px, 271px;
  }
}
#concept .read {
  width: min(100%, 350px);
  margin: 0 auto;
  color: #320707;
  margin-bottom: calc(163px / 1.4);
}
@media screen and (min-width: 769px) {
  #concept .read {
    margin-bottom: 163px;
  }
}
@media screen and (min-width: 769px) {
  #concept .read {
    width: min(100%, 450px);
  }
}
#concept .video {
  margin-bottom: calc(40px / 1.4);
}
@media screen and (min-width: 769px) {
  #concept .video {
    margin-bottom: 40px;
  }
}
#concept .video video {
  width: 100%;
}
#concept .grid02 {
  -webkit-text-stroke: 0.3px currentColor;
  line-height: 1.3;
  row-gap: calc(25px / 1.4);
  -webkit-column-gap: calc(10px / 1.4);
     -moz-column-gap: calc(10px / 1.4);
          column-gap: calc(10px / 1.4);
  font-size: calc(20px / 1.4);
}
@media screen and (min-width: 769px) {
  #concept .grid02 {
    row-gap: 25px;
  }
}
@media screen and (min-width: 769px) {
  #concept .grid02 {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media screen and (min-width: 769px) {
  #concept .grid02 {
    font-size: 20px;
  }
}
#concept .grid02 li a {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1/0.9;
  text-align: center;
  row-gap: calc(6px / 1.4);
  padding-top: calc(20px / 1.4);
}
@media screen and (min-width: 769px) {
  #concept .grid02 li a {
    row-gap: 6px;
  }
}
@media screen and (min-width: 769px) {
  #concept .grid02 li a {
    padding-top: 20px;
  }
}
#concept .grid02 li a::after {
  content: "";
  display: block;
  background: url(../img/arrow_wht.svg) no-repeat center/contain;
  width: calc(22px / 1.4);
  height: calc(21px / 1.4);
}
@media screen and (min-width: 769px) {
  #concept .grid02 li a::after {
    width: 22px;
  }
}
@media screen and (min-width: 769px) {
  #concept .grid02 li a::after {
    height: 21px;
  }
}
#concept .grid02 li:nth-child(2) {
  margin-left: calc(-20px / 1.4);
}
@media screen and (min-width: 769px) {
  #concept .grid02 li:nth-child(2) {
    margin-left: -20px;
  }
}
#concept .grid02 li:nth-child(1) a {
  background-image: url(../img/concept_nav1.png);
}
#concept .grid02 li:nth-child(2) a {
  background-image: url(../img/concept_nav2.png);
}
#concept .grid02 li:nth-child(3) a {
  background-image: url(../img/concept_nav3.png);
}
#concept .grid02 li:nth-child(4) a {
  background-image: url(../img/concept_nav4.png);
}

#foods {
  background: url(../img/cloud3.png) no-repeat right bottom 22%/154.2857142857px, linear-gradient(180deg, transparent 0%, transparent 57.1428571429px, #F9A22C 57.1428571429px, #F9A22C 100%);
}
@media screen and (min-width: 769px) {
  #foods {
    background-image: url(../img/cloud3.png), linear-gradient(180deg, transparent 0%, transparent 80px, #F9A22C 80px, #F9A22C 100%);
    background-size: 216px;
  }
}
#foods::before {
  background: #F9A22C;
}
#foods::after {
  background-image: url(../img/decoration_foods.png);
  top: calc(-20px / 1.4);
}
@media screen and (min-width: 769px) {
  #foods::after {
    top: -20px;
  }
}
#foods .ttl_img img {
  width: calc(50px / 1.4);
}
@media screen and (min-width: 769px) {
  #foods .ttl_img img {
    width: 50px;
  }
}
#foods .foods_navi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-size: 20px;
  -webkit-text-stroke: 0.3px currentColor;
  line-height: 1.3;
  row-gap: calc(30px / 1.4);
}
@media screen and (min-width: 769px) {
  #foods .foods_navi {
    row-gap: 30px;
  }
}
#foods .foods_navi li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
#foods .grid02 {
  -webkit-text-stroke: 0.2px currentColor;
  row-gap: calc(43px / 1.4);
  -webkit-column-gap: calc(14px / 1.4);
     -moz-column-gap: calc(14px / 1.4);
          column-gap: calc(14px / 1.4);
  font-size: calc(16px / 1.4);
}
@media screen and (min-width: 769px) {
  #foods .grid02 {
    row-gap: 43px;
  }
}
@media screen and (min-width: 769px) {
  #foods .grid02 {
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
  }
}
@media screen and (min-width: 769px) {
  #foods .grid02 {
    font-size: 16px;
  }
}
#foods .grid02 li img {
  border-radius: 8px;
}
#foods .grid02 li p {
  margin-top: calc(10px / 1.4);
}
@media screen and (min-width: 769px) {
  #foods .grid02 li p {
    margin-top: 10px;
  }
}

#original_item {
  background: url(../img/cloud4.png) no-repeat left bottom 15%/121.4285714286px, linear-gradient(180deg, transparent 0%, transparent 57.1428571429px, #A63A55 57.1428571429px, #A63A55 100%);
  padding-bottom: calc(222px / 1.4);
}
@media screen and (min-width: 769px) {
  #original_item {
    padding-bottom: 222px;
  }
}
@media screen and (min-width: 769px) {
  #original_item {
    background-image: url(../img/cloud4.png), linear-gradient(180deg, transparent 0%, transparent 80px, #A63A55 80px, #A63A55 100%);
    background-size: 170px;
  }
}
#original_item::before {
  background: #A63A55;
}
#original_item::after {
  background-image: url(../img/decoration_item.png);
  top: calc(-23px / 1.4);
}
@media screen and (min-width: 769px) {
  #original_item::after {
    top: -23px;
  }
}
#original_item .ttl_img img {
  width: calc(360px / 1.4);
}
@media screen and (min-width: 769px) {
  #original_item .ttl_img img {
    width: 360px;
  }
}
#original_item .grid_navi li a {
  background-image: url(../img/arrow_red.svg);
}

#about {
  background: url(../img/about_bg.jpg) no-repeat center top/cover;
  background-position: center top 103.5714285714px;
  padding-top: calc(90px / 1.4);
  margin-top: calc(-145px / 1.4);
}
@media screen and (min-width: 769px) {
  #about {
    padding-top: 90px;
  }
}
@media screen and (min-width: 769px) {
  #about {
    margin-top: -145px;
  }
}
@media screen and (min-width: 769px) {
  #about {
    background-position: center top 145px;
  }
}
#about::before {
  background: url(../img/about_bg.jpg) no-repeat center top/100%;
  -webkit-mask-image: url(../img/sect_mask3.png);
          mask-image: url(../img/sect_mask3.png);
  top: 0;
  height: calc(150px / 1.4);
}
@media screen and (min-width: 769px) {
  #about::before {
    height: 150px;
  }
}
#about::after {
  background-image: url(../img/decoration_about.png);
  top: calc(25px / 1.4);
}
@media screen and (min-width: 769px) {
  #about::after {
    top: 25px;
  }
}
#about .ttl_img img {
  width: calc(71px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .ttl_img img {
    width: 71px;
  }
}
#about h3 {
  margin-top: calc(10px / 1.4);
  margin-left: calc(-35px / 1.4);
  margin-right: calc(-35px / 1.4);
}
@media screen and (min-width: 769px) {
  #about h3 {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  #about h3 {
    margin-left: -35px;
  }
}
@media screen and (min-width: 769px) {
  #about h3 {
    margin-right: -35px;
  }
}
#about h3 + .read {
  margin-bottom: calc(0 / 1.4);
}
@media screen and (min-width: 769px) {
  #about h3 + .read {
    margin-bottom: 0;
  }
}
#about .read {
  margin-bottom: calc(55px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .read {
    margin-bottom: 55px;
  }
}
#about .about_item .item {
  width: min(100%, 460px);
  margin: 0 auto;
  position: relative;
  font-size: calc(16px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .about_item .item {
    font-size: 16px;
  }
}
#about .about_item .item::before {
  content: "";
  position: absolute;
}
#about .about_item .item:not(:last-of-type) {
  margin-bottom: calc(50px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .about_item .item:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
#about .about_item .item .img {
  margin-bottom: calc(20px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .about_item .item .img {
    margin-bottom: 20px;
  }
}
#about .about_item .item .img img {
  border-radius: calc(20px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .about_item .item .img img {
    border-radius: 20px;
  }
}
#about .about_item .item .fukidashi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #981309;
  -webkit-text-stroke: 0.16px currentColor;
  line-height: 1.21;
  text-align: center;
  position: absolute;
  padding-bottom: calc(5px / 1.4);
  font-size: calc(14px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .about_item .item .fukidashi {
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 769px) {
  #about .about_item .item .fukidashi {
    font-size: 14px;
  }
}
#about .about_item .item p {
  text-align: center;
}
#about .about_item .item:nth-of-type(1)::before {
  background: url(../img/decoration.png) no-repeat center/contain;
  width: calc(104px / 1.4);
  height: calc(88.5px / 1.4);
  top: calc(-67px / 1.4);
  left: calc(37px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(1)::before {
    width: 104px;
  }
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(1)::before {
    height: 88.5px;
  }
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(1)::before {
    top: -67px;
  }
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(1)::before {
    left: 37px;
  }
}
#about .about_item .item:nth-of-type(1) .fukidashi {
  background: url(../img/fukidashi.png) no-repeat center/contain;
  width: calc(231px / 1.4);
  height: calc(110px / 1.4);
  top: calc(-55px / 1.4);
  right: calc(-18px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(1) .fukidashi {
    width: 231px;
  }
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(1) .fukidashi {
    height: 110px;
  }
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(1) .fukidashi {
    top: -55px;
  }
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(1) .fukidashi {
    right: -18px;
  }
}
#about .about_item .item:nth-of-type(2)::before {
  display: none;
}
#about .about_item .item:nth-of-type(2) .fukidashi {
  background: url(../img/fukidashi2.png) no-repeat center/contain;
  width: calc(231px / 1.4);
  height: calc(125.2px / 1.4);
  top: calc(-43px / 1.4);
  left: calc(-20px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(2) .fukidashi {
    width: 231px;
  }
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(2) .fukidashi {
    height: 125.2px;
  }
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(2) .fukidashi {
    top: -43px;
  }
}
@media screen and (min-width: 769px) {
  #about .about_item .item:nth-of-type(2) .fukidashi {
    left: -20px;
  }
}
#about .about_bnr {
  width: min(100%, 460px);
  margin: 0 auto;
  margin-top: calc(30px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .about_bnr {
    margin-top: 30px;
  }
}
#about .about_bnr li:not(:last-child) {
  margin-bottom: calc(20px / 1.4);
}
@media screen and (min-width: 769px) {
  #about .about_bnr li:not(:last-child) {
    margin-bottom: 20px;
  }
}

#event {
  background: url(../img/mv_img.png) no-repeat center bottom -21.4285714286px/min(78.8%, 296px), url(../img/cloud6.png) no-repeat left top 65%/112.8571428571px, linear-gradient(180deg, transparent 0%, transparent 57.1428571429px, #E6D22D 57.1428571429px, #E6D22D 100%);
  padding-bottom: calc(345px / 1.4);
}
@media screen and (min-width: 769px) {
  #event {
    padding-bottom: 345px;
  }
}
@media screen and (min-width: 769px) {
  #event {
    background-image: url(../img/mv_img.png), url(../img/cloud6.png), linear-gradient(180deg, transparent 0%, transparent 80px, #E6D22D 80px, #E6D22D 100%);
    background-size: 415px, 158px;
  }
}
#event::before {
  background: #E6D22D;
}
#event::after {
  background-image: url(../img/decoration_event.png);
  top: 0;
}
#event .sec_ttl {
  margin-bottom: 0;
}
#event .ttl_img img {
  width: calc(66px / 1.4);
}
@media screen and (min-width: 769px) {
  #event .ttl_img img {
    width: 66px;
  }
}
#event .read {
  margin-bottom: calc(34px / 1.4);
}
@media screen and (min-width: 769px) {
  #event .read {
    margin-bottom: 34px;
  }
}
#event .grid_navi li a {
  background-image: url(../img/arrow_grn.svg);
  color: #A89607;
}

.bnr_area {
  padding: 71px 25px 20px;
}
@media screen and (min-width: 769px) {
  .bnr_area {
    padding: 100px 35px 20px;
  }
}
.bnr_area::before {
  background: #F9EFD5;
}
.bnr_area .bnr_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(100%, 460px);
  margin: 0 auto;
  gap: calc(10px / 1.4);
  margin-bottom: calc(26px / 1.4);
}
@media screen and (min-width: 769px) {
  .bnr_area .bnr_list {
    gap: 10px;
  }
}
@media screen and (min-width: 769px) {
  .bnr_area .bnr_list {
    margin-bottom: 26px;
  }
}
.bnr_area .bnr_list li {
  border-radius: 8px;
  overflow: hidden;
}
.bnr_area .bnr_list li a {
  display: block;
}
.bnr_area .copyright {
  text-align: center;
  font-size: calc(10px / 1.4);
}
@media screen and (min-width: 769px) {
  .bnr_area .copyright {
    font-size: 10px;
  }
}

.logo2 {
  background: #fff;
  text-align: center;
  padding-bottom: 20px;
}
.logo2 img {
  width: 85%;
}

.finished {
  background: #D10000;
  width: min(100%, 309px);
  padding: 12px 0;
  margin: 10px auto 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 769px) {
  .finished {
    width: 100%;
    margin: 0 auto 10px;
    position: static;
  }
}

#cboxOverlay {
  background: rgba(0, 0, 0, 0.45);
}

#cboxContent {
  border-radius: 20px;
  overflow: visible;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
}
#cboxContent #cboxLoadedContent {
  margin: 0;
}
#cboxContent #cboxClose {
  background: #fff;
  border: 1px solid #D5D5D5;
  border-radius: 50%;
  cursor: pointer;
  height: 44px;
  width: 44px;
  top: calc(-20px / 1.4);
  right: calc(-20px / 1.4);
}
@media screen and (min-width: 769px) {
  #cboxContent #cboxClose {
    top: -20px;
  }
}
@media screen and (min-width: 769px) {
  #cboxContent #cboxClose {
    right: -20px;
  }
}
#cboxContent #cboxClose::before {
  content: "×";
  color: #232323;
  text-indent: 0;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 45%;
  left: 50%;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  line-height: 1;
  font-size: 28px;
}

.popup_box {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 28.5714285714px 21.4285714286px;
  max-width: 100%;
  overflow-x: hidden;
  font-size: calc(16px / 1.4);
}
@media screen and (min-width: 769px) {
  .popup_box {
    font-size: 16px;
  }
}
.popup_box .img {
  margin-bottom: calc(17px / 1.4);
}
@media screen and (min-width: 769px) {
  .popup_box .img {
    margin-bottom: 17px;
  }
}
.popup_box .ttl {
  color: #DD7F00;
  -webkit-text-stroke: 0.2px currentColor;
  text-align: center;
  font-size: calc(20px / 1.4);
}
@media screen and (min-width: 769px) {
  .popup_box .ttl {
    font-size: 20px;
  }
}
.popup_box .ttl2 {
  color: #B7144F;
  text-align: center;
  line-height: 1.19;
  -webkit-text-stroke: 0.2px currentColor;
  margin-bottom: calc(30px / 1.4);
  font-size: calc(32px / 1.4);
}
@media screen and (min-width: 769px) {
  .popup_box .ttl2 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 769px) {
  .popup_box .ttl2 {
    font-size: 32px;
  }
}
.popup_box .txt .sp_block {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .popup_box .txt .sp_block {
    display: contents;
  }
}
.popup_box .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-text-stroke: 0.2px currentColor;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-column-gap: calc(16px / 1.4);
     -moz-column-gap: calc(16px / 1.4);
          column-gap: calc(16px / 1.4);
  row-gap: calc(25px / 1.4);
}
@media screen and (min-width: 769px) {
  .popup_box .list {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
@media screen and (min-width: 769px) {
  .popup_box .list {
    row-gap: 25px;
  }
}
.popup_box .list img {
  display: block;
  max-width: 100%;
  margin-bottom: calc(10px / 1.4);
}
@media screen and (min-width: 769px) {
  .popup_box .list img {
    margin-bottom: 10px;
  }
}
.popup_box .list span {
  background: #CC768C;
  border-radius: 3px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 0.4em 0.5em;
  text-align: center;
  margin-bottom: calc(8px / 1.4);
  font-size: calc(14px / 1.4);
}
@media screen and (min-width: 769px) {
  .popup_box .list span {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 769px) {
  .popup_box .list span {
    font-size: 14px;
  }
}
.popup_box .list p {
  color: #A63A55;
  line-height: 1.38;
}
.popup_box .list + .popup_close {
  margin-top: calc(45px / 1.4);
}
@media screen and (min-width: 769px) {
  .popup_box .list + .popup_close {
    margin-top: 45px;
  }
}
.popup_box .popup_close {
  border: 1px solid #D5D5D5;
  border-radius: 8px;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
  height: calc(40px / 1.4);
  width: calc(160px / 1.4);
  line-height: calc(38px / 1.4);
  margin-top: calc(20px / 1.4);
}
@media screen and (min-width: 769px) {
  .popup_box .popup_close {
    height: 40px;
  }
}
@media screen and (min-width: 769px) {
  .popup_box .popup_close {
    width: 160px;
  }
}
@media screen and (min-width: 769px) {
  .popup_box .popup_close {
    line-height: 38px;
  }
}
@media screen and (min-width: 769px) {
  .popup_box .popup_close {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .popup_box {
    width: 480px;
    padding: 40px 30px;
  }
}