html, body {
  font-family: "Noto Serif JP", serif;
  font-size: 62.5%;
}

/********************************************************/
/* 追加CSS */
/********************************************************/

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#000;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 100%;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.sp {
  display: none;
}

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

  .sp {
    display: block;
  }
}


/*========= レイアウトのためのCSS ===============*/

#container{
    width:100%;
    height: 100vh;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a{
    color: #333;
}

a:hover{
    text-decoration: none;
}




body {
  width: 100%;
  min-height: 100dvh;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 56.25vw;
}
@media screen and (max-width: 739.9px) {
  body {
    scroll-padding-top: 125vw;
  }
}
body.open {
  overflow: hidden;
}

h1, h2, h3, h4, h5 {
  line-height: 1em;
}

p, a, li, button {
  line-height: 1.625;
}

p {
  text-align: justify;
}

h1, h2, h3, h4, h5, p, a, li, button, span {
  font-feature-settings: "palt";
}

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

@media (hover: hover) and (pointer: fine) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 739.9px) {
  .for-pc {
    display: none;
  }
}

.txt-pc-tate {
  /*writing-mode: vertical-rl;*/
  font-feature-settings: initial;
}
@media screen and (max-width: 1256px) {
  .txt-pc-tate.-tb-yoko {
    writing-mode: inherit;
  }
}
@media screen and (max-width: 739.9px) {
  .txt-pc-tate.-sp-yoko {
    writing-mode: inherit;
  }
}

.co-co {
  color: #eace76;
}
.co-wt {
  color: #fff;
}

.bg-black {
  background-color: #000;
}
.bg-co {
  background-color: #eace76;
}
.bg-gry {
  background-color: #242424;
}
.bg-darkgreen {
  background-color: #144631;
}
.bg-green {
  background-color: #6a8a2b;
}
.bg-beige {
  background-color: #f3f3ea;
}
.btn-link {
  font-size: 2rem;
  font-weight: 700;
  width: 15.6em;
  height: 5.3em;
  display: grid;
  padding-inline: 1em;
  grid-template-columns: 2.8em 1fr 0.5em;
  gap: 1.1em;
  line-height: 1.375;
  letter-spacing: 0.12em;
  background-color: #eace76;
  align-items: center;
  margin-inline: auto;
  border-radius: 0.6em;
  transition: all 0.3s;
}
.btn-link-green {
    margin-top: 2em;
    background-color: #7ba043;
}
.btn-link:focus {
  background-color: rgb(255, 247, 238);
}
@media (hover: hover) and (pointer: fine) {
  .btn-link:hover {
    background-color: rgb(255, 247, 238);
  }
}
@media screen and (max-width: 1256px) {
  .btn-link {
    font-size: 1.89vw;
  }
}
@media screen and (max-width: 739.9px) {
  .btn-link {
    font-size: 4vw;
    -webkit-margin-before: 20vw;
    margin-block-start: 20vw;
  }
  .btn-link.btn-link-green {
    -webkit-margin-before: 10vw;
    margin-block-start: 10vw;
  }
}

.disc-list {
    font-size: 1.6rem;
    font-weight: 600;
    /*
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6em 4em;
    */
    width: 100%;
    overflow: hidden;
}
.disc-list li {
    float: left;
    width: 50%;
    margin-bottom: 1em;
}
.disc-list li a {
  color: #fff;
}

@media screen and (max-width: 1256px) {
  .disc-list {
    font-size: 1.51vw;
  }
}
@media screen and (max-width: 739.9px) {
  .disc-list {
    font-size: 3.8vw;
    grid-template-columns: 1fr;
    -webkit-margin-before: 1.5em;
            margin-block-start: 1.5em;
  }
}
.disc-list li:not(:last-of-type) {
  display: grid;
  grid-template-columns: 1em 1fr;
  gap: 0.5em;
}
.disc-list li:not(:last-of-type)::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #eace76;
  -webkit-margin-before: 0.3em;
          margin-block-start: 0.3em;
}
.section__1 {
  -webkit-padding-after: 230px;
          padding-block-end: 230px;
}
@media screen and (max-width: 739.9px) {
  .section__1 {
    -webkit-padding-after: 40vw;
            padding-block-end: 40vw;
  }
}
.section__2 {
  padding-block: 130px 170px;
}
@media screen and (max-width: 739.9px) {
  .section__2 {
    padding-block: 20vw;
  }
}
.section__3 {
  width: 100vw;
  padding-block: 140px 120px;
}
@media screen and (max-width: 739.9px) {
  .section__3 {
    padding-block: 20vw;
  }
}
.section__4 {
  padding-block: 80px 115px;
}
@media screen and (max-width: 739.9px) {
  .section__4 {
    padding-block: 20vw;
  }
}
.section__5 {
  padding-block: 80px 120px;
}
@media screen and (max-width: 739.9px) {
  .section__5 {
    padding-block: 15vw 20vw;
  }
}
.section__6 {
  padding-block: 80px 100px;
}
@media screen and (max-width: 739.9px) {
  .section__6 {
    padding-block: 20vw 40vw;
  }
}

.grid__two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  aspect-ratio: 2/1;
}
.grid__two-col-item {
  padding-inline: 4.2%;
  display: grid;
  width: 100%;
  place-items: center;
  line-height: 2.6;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 1256px) {
  .grid__two-col-item {
    font-size: 2.83vw;
  }
}
@media screen and (max-width: 739.9px) {
  .grid__two-col.-sp-type1 {
    display: flex;
    flex-direction: column-reverse;
  }
  .grid__two-col.-sp-type1 .grid__two-col-item {
    font-size: 5vw;
    /*padding-inline: 18.75vw;*/
    padding-inline: 4.2%;
    line-height: 2.2em;
    padding-block: 2em 2.4em;
  }
}
@media screen and (max-width: 739.9px) {
  .grid__two-col.-sp-type2 {
    display: flex;
    flex-direction: column;
  }
  .grid__two-col.-sp-type2 .grid__two-col-item {
    font-size: 5vw;
    padding-inline: 4.2%;
    line-height: 2.2em;
    padding-block: 2em 2.3em;
  }
  .grid__two-col.-sp-type2.sp-reverse {
    flex-direction: column-reverse;
  }
}
/* 抹茶 */
.section_matcha .bg-darkgreen {
    padding: 80px 0 60px 0;
    text-align: center;
}
.section__head1.bg-darkgreen {
    background-image: none;
}
.section_matcha .bg-darkgreen p {
    text-align: center;
}
.section_matcha .bg-darkgreen h2 {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.section_matcha .bg-darkgreen .-txt1 {
    font-size: 5rem;
    margin-bottom: 0.5em;
    font-weight: bold;
}
.section_matcha .bg-darkgreen .-txt2 {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    padding: 0 4%;
}
.img_main_matcha img {
    width: 100%;
    }
.img_main_matcha .img_matcha_sp {
    display: none;
    }
.img_main_matcha .img_matcha_pc {
    position: relative;
    min-height: 100vh; /* カスタムプロパティ未対応ブラウザ用のフォールバック */
    min-height: calc(var(--vh, 1vh) * 100);
    background-image: url("../images/bg-parall3.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    }
@media screen and (max-width: 739.9px){
.section_matcha .bg-darkgreen h2 {
    font-size: 1.35rem;
}
.section_matcha .bg-darkgreen .-txt1 {
    font-size: 6vw;
    margin-bottom: 0.5em;
}
.section_matcha .bg-darkgreen .-txt2 {
    font-size: 1.5rem;
}
.img_main_matcha .img_matcha_pc {
    display: none;
    }
.img_main_matcha .img_matcha_sp {
    display: inline;
    }
}
/* recipe */
.set_recipe {
    margin-bottom: 55px;
}
.flame_recipe {
    padding: 30px;
    background-color: #FFF;
}
.item_recipe {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-between;
}
.img_recipe {
    flex-basis: 31%;
}
.img_recipe img {
    width: 100%;
}
.tit_recipe {
    flex-basis: 63%;
}
.tit_recipe h3 {
    background-color: #000;
    color: #FFF;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    padding: 0.5em 0.5em 0.5em 1.5em;
    font-weight: bold;
}
.tit_recipe p {
    font-size: 1.6rem;
    line-height: 2;
}
.block_recipe {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-between;
    margin-top: 30px;
}
.recipe_ingredient {
    flex-basis: 31%;
}
.recipe_howto {
    flex-basis: 63%;
}
.block_recipe dt {
    font-size: 1.8rem;
    align-items: center;
    display: flex
}
.block_recipe dt::after {
    background-color: #e2c775;
    content: "";
    flex-grow: 1;
    height: 1px;
}
.block_recipe dt::after {
    margin-left: 15px;
}
.block_recipe dd,
.block_recipe dd li {
    font-size: 1.4rem;
}
.recipe_ingredient ul,
.recipe_howto dd {
    margin-top: 1.5rem;
}
.recipe_ingredient li {
    padding-left: 1.3em;
    text-indent: -1.3em;
}
.recipe_ingredient li::before {
     content: "\30fb";
     margin-right: 0.2em;
}
.recipe_howto dd p {
    line-height: 2;
}
.btn_recipe {
    font-size: 1.8rem;
    background-color: #e6e6e6;
    padding: 1.8rem;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
}
.btn_recipe span {
    background-image: url("../images/ico_plus.svg");
    background-repeat: no-repeat;
    background-position: center right;
    padding-right: 2em;
}
.btn_recipe.on span {
    background-image: url("../images/ico_minus.svg");
    background-repeat: no-repeat;
    background-position: center right;
}
/* レシピを見る ※文字化け回避のためUnicode変換 */
.btn_recipe span::before {
    content:"See recipe";
}
/* 閉じる */
.btn_recipe.on span::before {
    content:"Close";
}
.recipe_check {
    margin-top: 20px;
}
.recipe_check h4 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.3em;
}
.recipe_check h4 br {
    display: none;
}
.recipe_check dt {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.5em;
}
.recipe_check dd {
    font-size: 1.4rem;
    line-height: 1.7;
}
@media screen and (min-width : 768px){
  .btn_recipe:hover{
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .btn_recipe:hover:hover{
    opacity: .8;
    text-decoration: none;
  }
}
.tit_arrange {
    text-align: center;
}
.tit_arrange h3 {
    font-size: 3.8rem;
    font-weight: bold;
    margin: 2em auto 0;
    text-align: center;
    position: relative;
    padding: 1rem 2rem;
    display: inline-block;
}
.tit_arrange h3::before,
.tit_arrange h3::after {
    position: absolute;
    top: 0.8rem;
    height: 1.3em;
    content: '';
}
.tit_arrange h3::before {
    border-left: solid 3px;
    left: 0;
    transform: rotate(-40deg);
}
.tit_arrange h3::after {
    border-right: solid 3px;
    right: 0;
    transform: rotate(30deg);
}
@media screen and (max-width: 739.9px){
.set_recipe {
    margin-bottom: 35px;
}
.flame_recipe {
    padding: 15px;
}
.item_recipe {
    display: block;
}
.tit_recipe h3 {
    font-size: 5vw;
    margin-bottom: 1.5rem;
    padding: 0.5em 0.3em;
    text-align: center;
}
.tit_recipe p {
    font-size: 1.4rem;
    line-height: 1.7;
}
.block_recipe {
    display: block;
    margin-top: 30px;
}
/*
.block_recipe dt {
    font-size: 1.8rem;
    align-items: center;
    display: flex
}
.block_recipe dd,
.block_recipe dd li {
    font-size: 1.4rem;
}
*/
.recipe_howto {
    margin-top: 30px;
    padding-bottom: 20px;
}
.recipe_ingredient ul,
.recipe_howto dd {
    margin-top: 1rem;
}
.recipe_howto dd p {
    line-height: 1.7;
}
.btn_recipe {
    font-size: 1.6rem;
    padding: 1.6rem;
}
.recipe_check {
    margin-top: 20px;
}
.recipe_check h4 {
    font-size: 4.8vw;
    line-height: 1.5;
    margin-bottom: 1em;
    text-align: center;
}
.recipe_check h4 br {
    display: block;
}
.recipe_check dt {
    font-size: 1.6rem;
    margin-bottom: 0.5em;
}
.recipe_check dd {
    font-size: 1.4rem;
    line-height: 1.7;
}
.tit_arrange h3 {
    font-size: 5vw;
    margin: 3em auto 0;
    padding: 0.5rem 1rem;
}
.tit_arrange h3::before {
    border-left: solid 2px;
}
.tit_arrange h3::after {
    border-right: solid 2px;
}
}

.grid__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-size: 3rem;
  font-weight: 700;
  gap: 2em 2.5em;
  margin-bottom: 100px;
}
@media screen and (max-width: 1256px) {
  .grid__cards {
    font-size: 2.83vw;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 739.9px) {
  .grid__cards {
    font-size: 4.22vw;
    gap: 9.38vw;
    margin-bottom: 50px;
  }
}
.grid__cards .card {
  display: grid;
  grid-template-columns: 1.8666666667em 1fr;
  position: relative;
  z-index: 1;
  width: 13.1666666667em;

  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width: 1256px) {
  .grid__cards .card {
    justify-self: center;
  }
}
.grid__cards .card:nth-of-type(odd) {
  -webkit-padding-after: 4.0666666667em;
          padding-block-end: 4.0666666667em;
}
@media screen and (max-width: 1256px) {
  .grid__cards .card:nth-of-type(odd) {
    -webkit-padding-after: 0;
            padding-block-end: 0;
  }
}
.grid__cards .card:nth-of-type(even) {
  -webkit-margin-before: 4.0666666667em;
          margin-block-start: 4.0666666667em;
}
@media screen and (max-width: 1256px) {
  .grid__cards .card:nth-of-type(even) {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}
.grid__cards .card p {
  color: #fff;
  background-color: #000;
  text-align: center;
  line-height: 1.9;
}
.grid__cards .card p .-space-large {
  /*letter-spacing: 0.4em;*/
}
.grid__cards .card .arrange-txt {
  position: absolute;
}
.grid__cards .card .arrange-txt.-coffee {
  width: 4.85em;
  top: -0.6666666667em;
  right: -0.8833333333em;
}
.grid__cards .card .arrange-txt.-milk {
  width: 4.1333333333em;
  top: -0.7666666667em;
  right: -0.62em;
}
.grid__cards .card .arrange-txt.-wine {
  width: 4.0833333333em;
  top: -0.7666666667em;
  right: -0.62em;
}
.grid__cards .card .arrange-txt.-greentea {
  width: 7.5em;
  top: -0.6666666667em;
  right: -1.1666666667em;
}
.grid__head-left {
  display: grid;
  grid-template-columns: 172px 1fr;
  gap: 6%;
  width: 100vw;
  -webkit-padding-start: min(78px, 5vw);
          padding-inline-start: min(78px, 5vw);
}
@media screen and (max-width: 1256px) {
  .grid__head-left {
    grid-template-columns: 16.23vw 1fr;
  }
}
@media screen and (max-width: 739.9px) {
  .grid__head-left {
    display: block;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
.grid__head-left2 {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 4%;
}
@media screen and (max-width: 1256px) {
  .grid__head-left2 {
    grid-template-columns: 10.38vw 1fr;
  }
}
@media screen and (max-width: 739.9px) {
  .grid__head-left2 {
    display: block;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
.grid__head-left3 {
  display: grid;
  grid-template-columns: 172px 1fr;
  gap: 6%;
  width: 100vw;
  -webkit-padding-start: min(78px, 5vw);
          padding-inline-start: min(78px, 5vw);
}
@media screen and (max-width: 1256px) {
  .grid__head-left3 {
    grid-template-columns: 16.23vw 1fr;
  }
}
@media screen and (max-width: 739.9px) {
  .grid__head-left3 .section__head2 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: -webkit-sticky;
    position: sticky;
    top: 10vw;
  }
}

.sticky__wrap1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 739.9px) {
  .sticky__wrap1 {
    display: flex;
    flex-direction: column-reverse;
    gap: 20vw;
  }
}
.sticky__wrap1-content {
  justify-self: end;
  width: min(514px, 95%);
}
.sticky__wrap1-content .box__head1 {
  margin-inline: auto 0;
}
@media screen and (max-width: 739.9px) {
  .sticky__wrap1-content .box__head1 {
    width: 70vw;
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
}
@media screen and (max-width: 739.9px) {
  .sticky__wrap1-content {
    width: 90vw;
    margin-inline: auto;
  }
}
.sticky__wrap1-sticky {
  position: -webkit-sticky;
  position: sticky;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 60px;
  overflow-x: hidden;
}
@media screen and (max-width: 739.9px) {
  .sticky__wrap1-sticky {
    position: relative;
    top: auto;
  }
}
.sticky__wrap1-sticky img {
  width: min(90%, 640px);
  margin-inline: auto -26px;
}
.sticky__wrap1 .step {
  font-size: 2.2rem;
  font-weight: 700;
  width: min(100%, 326px);
  margin-inline: auto;
  -webkit-padding-end: 1.1363636364em;
          padding-inline-end: 1.1363636364em;
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
}
.sticky__wrap1 .step:last-of-type {
  -webkit-margin-after: 2.2727272727em;
          margin-block-end: 2.2727272727em;
}
@media screen and (max-width: 1256px) {
  .sticky__wrap1 .step {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 739.9px) {
  .sticky__wrap1 .step {
    font-size: 4.8vw;
  }
}
.sticky__wrap1 .step span {
  color: #fff;
  text-align: center;
  display: block;
  -webkit-margin-before: 0.6em;
          margin-block-start: 0.6em;
}
@media screen and (max-width: 739.9px) {
  .sticky__wrap1 .step span {
    -webkit-padding-start: 1em;
            padding-inline-start: 1em;
  }
}

.sticky__wrap2 {
  display: grid;
  grid-template-columns: 172px 1fr;
  width: min(100%, 1262px);
  gap: 11%;
  margin-inline: auto;
}
@media screen and (max-width: 1256px) {
  .sticky__wrap2 {
    gap: 1vw;
    padding-inline: 5vw;
  }
}
@media screen and (max-width: 739.9px) {
  .sticky__wrap2 {
    grid-template-columns: auto 1fr;
    padding-inline: 5vw;
    gap: 2vw;
  }
}
.sticky__wrap2-sticky {
  position: -webkit-sticky;
  position: sticky;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 60px;
}
@media screen and (max-width: 739.9px) {
  .sticky__wrap2-sticky {
    top: 10vw;
  }
}

.sticky__wrap-common {
  height: 100%;
}
.sticky__wrap-common-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}
@media screen and (max-width: 739.9px) {
  .sticky__wrap-common-sticky {
    position: inherit;
  }
}

@media screen and (max-width: 739.9px) {
  .fukidashi-area {
    overflow: hidden;
    /*padding-block: 10vw;*/
  }
}

.flex__fukidashi {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 60px;
  align-items: flex-start;
  -webkit-padding-end: min(78px, 5vw);
          padding-inline-end: min(78px, 5vw);
  font-weight: 400;
  flex-direction: column;
}
@media screen and (max-width: 1356px) {
  .flex__fukidashi {
    gap: 2px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 739.9px) {
  .flex__fukidashi {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 9.38vw;
    justify-content: flex-start;
  }
}

.fukidashi {
  font-size: 2.5rem;
  display: block;
  padding: 1em;
  /*height: 12.96em;*/
  background-color: #fff;
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
}
@media screen and (max-width: 1256px) {
  .fukidashi {
    font-size: 2.36vw;
  }
}
@media screen and (max-width: 739.9px) {
  .fukidashi {
    font-size: 3.8vw;
  }
}
.fukidashi::after {
  content: "";
  display: block;
  width: 1.16em;
  height: 1.36em;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
  position: absolute;
  bottom: -1.36em;
  left: calc(50% - 0.58em);
  background-color: #fff;
}

/* supporter */
.section_supporter {
  padding: 3vw 0 5vw;
}
.block_supporter p{
    text-align: center;
}
.block_supporter h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}
.tit_supporter {
    font-size: 3.5rem;
    font-weight: bold;
    margin-top: 0.5em;
    margin-bottom: 1em;
}
.list_supporter {
/*
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-between;
    */
    width: 1100px;
    margin: 10px auto 0 auto;
    overflow: hidden;
    font-size:0;
    text-align: center;
}
.list_supporter li {
    margin-bottom: 50px;
    width: 130px;
    display: inline-block;
    vertical-align: top;
    margin: 0px 10px 50px 10px;
}
.list_supporter li img {
    width: 100%;
    background:#fff;
    width:130px;
    height:130px;
    object-fit:contain;
    }
/*
.list_supporter::after{
  content:"";
  display: block;
  width:30%;
}
*/
.list_supporter li {
    font-size: 20px;
    margin-top: 0.5em;
    text-align: center;
}
@media screen and (min-width : 768px){
.list_supporter li a:hover{
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
  }
.list_supporter li a:hover:hover{
    opacity: .8;
    text-decoration: none;
  }
}
@media screen and (max-width: 1280px) {
.list_supporter {
    width: 880px;
}
.list_supporter li {
    margin-top: 0.5em;
    margin-bottom: 1em;
}
}
@media screen and (max-width: 930px) {
.list_supporter {
    width: 660px;
}
}
@media screen and (max-width: 739.9px) {
.section_supporter {
    padding: 10vw 5% 15vw;
}
.block_supporter h2 {
    font-size: 1.35rem;
}
.tit_supporter {
    font-size: 6vw;
}
.list_supporter {
    width: 100%;
}
.list_supporter li {
    margin-bottom: 15px;
    width: 40%;
    margin-left: 2%;
    margin-right: 2%;
    font-size: 1.5rem;
    margin-top: 0.3em;
}
.list_supporter li img{
  width: 30vw;
 height: 30vw;
 display: inline-block;
}
}

.wrapper {
  width: min(90%, 880px);
  margin-inline: auto;
}

.area__1 {
  font-size: 3rem;
  padding-block: 3.3333333333em;
  padding-inline: min(5vw, 40px);
}
@media screen and (max-width: 1256px) {
  .area__1 {
    font-size: 2.83vw;
  }
}
@media screen and (max-width: 739.9px) {
  .area__1 {
    font-size: 5vw;
    padding-block: 2em 2.3em;
  }
  .area__1 p {
    line-height: 2.2em;
  }
}
.area__1 p {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-block: auto;
  line-height: 2.6;
  font-weight: 700;
}
.area__1 .mark-tokugi {
  width: 1.3666666667em;
  aspect-ratio: 1/1;
  display: block;
  margin-inline: auto 0;
}
.area__2 {
  font-size: 3rem;
  padding-block: 2em 2.3em;
  padding-inline: min(5vw, 40px);
}
@media screen and (max-width: 1256px) {
  .area__2 {
    font-size: 2.83vw;
  }
}
@media screen and (max-width: 739.9px) {
  .area__2 {
    font-size: 5vw;
  }
}
.area__2 p {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-block: auto;
  line-height: 2.6;
  font-weight: 700;
  text-align: center;
  margin-inline: auto;
}

.carousel {
  width: 104.4em;
  font-size: 1.5rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.9%;
  -webkit-padding-start: 3.3333333333em;
          padding-inline-start: 3.3333333333em;
  -webkit-padding-after: 3.3333333333em;
          padding-block-end: 3.3333333333em;
}
@media screen and (max-width: 739.9px) {
  .carousel {
    padding-inline: 5vw;
    font-size: 3.6vw;
  }
}

.carousel__wrap::-webkit-scrollbar{
  display:none;
}

.carousel__wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-padding-before: 60px;
          padding-block-start: 60px;
}
@media screen and (max-width: 739.9px) {
  .carousel__wrap {
    -webkit-margin-before: 10vw;
            margin-block-start: 10vw;
  }
}
.carousel__txt {
  display: block;
  font-weight: 400;
  text-align: center;
  line-height: 1.97;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
}

.section__head1 {
  font-size: 5rem;
  padding-block: 5.2em 4.4em;
  background-image: url(../images/acce-spoon.png);
  background-repeat: no-repeat;
  background-size: 4.84em;
  background-position: top 4.4em left calc(50vw + 8.68em);
}
.section__head1.section__head1_green {
    padding-block: 2.2em 4.4em;
    background-image:none;
}
@media screen and (max-width: 1256px) {
  .section__head1 {
    font-size: 4.72vw;
    background-position: top 0.8em right 0;
    background-size: 3em;
  }
}
@media screen and (max-width: 739.9px) {
  .section__head1 {
    font-size: 6vw;
    padding-block: 2em;
  }
}
.section__head1 h2, .section__head1 p {
  text-align: center;
}
.section__head1 h2 {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  font-size: 0.44em;
  letter-spacing: 0.12em;
  font-weight: 700;
}
@media screen and (max-width: 739.9px) {
  .section__head1 h2 {
    font-size: 0.6em;
  }
}
.section__head1 .-txt1 {
  display: block;
  font-weight: 700;
}
.section__head1 .-txt2 {
  display: block;
  font-size: 0.7em;
  font-weight: 600;
}
.section__head2 {
  font-size: 1.8rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5em;
}
@media screen and (max-width: 1256px) {
  .section__head2 {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 739.9px) {
  .section__head2 {
    font-size: 2.81vw;
  }
  .section__head2.sp-row-head {
    flex-flow: column-reverse;
    height: auto;
    padding: 0 4.2%;
  }
  .sp-row {
    writing-mode: initial!important;
  }
}
.section__head2-ja {
  font-size: 2.5em;
  line-height: 1.33;
  font-weight: 700;

  writing-mode: vertical-rl;
}
.section__head2 h2 {
  writing-mode: vertical-rl;
  display: grid;
  grid-template-columns: auto 7.6111111111em;
  gap: 1em;
  justify-content: start;
  align-items: center;
}
.section__head2 h2::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #000;
}
@media screen and (max-width: 1256px) {
  .section__head2 h2.-tb-yoko::after {
    width: 100%;
    height: 1px;
  }
}
@media screen and (max-width: 739.9px) {
  .section__head2 h2.-sp-yoko::after {
    width: 100%;
    height: 1px;
  }
}
.section__head3 {
  font-size: 2rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5em;
  color: #fff;
}
@media screen and (max-width: 1256px) {
  .section__head3 {
    font-size: 1.89vw;
  }
}
@media screen and (max-width: 739.9px) {
  .section__head3 {
    font-size: 3.8vw;
    flex-direction: column-reverse;
    gap: 1em;
  }
}
.section__head3-ja {
  font-size: 1.75em;
  line-height: 1.33;

  writing-mode: vertical-rl;
}
@media screen and (max-width: 739.9px) {
  .section__head3-ja {
    font-size: 4.8vw;
  }
}
.section__head3 h2 {
  display: grid;
  grid-template-columns: auto 3.6em;
  gap: 1em;
  justify-content: start;
  align-items: center;

  writing-mode: vertical-rl;
}
.section__head3 h2::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #eace76;
}
@media screen and (max-width: 739.9px) {
  .section__head3 h2 {
    grid-template-columns: auto 6.6em;
  }
  .section__head3 h2.-sp-yoko::after {
    width: 100%;
    height: 1px;
  }
}

.special-head {
  font-size: 2.8rem;
  font-weight: bold;
  width: 4.4642857143em;
}
@media screen and (max-width: 1256px) {
  .special-head {
    font-size: 2.64vw;
  }
}
@media screen and (max-width: 739.9px) {
  .special-head {
    font-size: 3.8vw;
  }
}
.special-head .-upper {
  color: #fff;
  background-color: #000;
  width: 100%;
  padding-inline: 1em;
  display: flex;
  align-items: center;
  line-height: 1.6;
  white-space: nowrap;

  writing-mode: vertical-rl;
}
@media screen and (max-width: 1256px) {
  .special-head .-upper {
    padding-block: 0.5em;
  }
}
.special-head .-lower {
  background-color: #fff;
  font-size: 1.7857142857em;
  width: 100%;
  padding-inline: 0.4em;
  display: flex;
  align-items: center;
  white-space: nowrap;

  writing-mode: vertical-rl;
}
@media screen and (max-width: 1256px) {
  .special-head .-lower {
    padding-block: 0.5em;
    justify-content: center;
  }
}
@media screen and (max-width: 739.9px) {
  .special-head .-lower {
    font-size: 5vw;
  }
}

.parallax {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 739.9px) {
  .parallax {
    aspect-ratio: 160 / 211;
  }
}

.header {
  width: 100vw;
  height: 56.25vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 739.9px) {
  .header {
    height: auto;
    background-color: #000;
    width: 100vw;
    overflow: hidden;
  }
}
.header__inner {
  width: 19.07vw;
  height: 10.29vw;
  position: absolute;
  bottom: 3.75vw;
  left: 3.75vw;
  z-index: 3;
}
.header__bg {
  position: relative;
  z-index: 2;
}

.header__video {
  width: 100%;
  height: 100%;
}

.header__play__btn,
.header__pause__btn {
  position: absolute;
  z-index: 5;
  right: 5%;
  bottom: 5%;
  width: 10%;
}

.header__play__btn img,
.header__pause__btn img {
  width: 100%;
}

/* 初期状態で非表示にする */
.header__pause__btn {
  display: none;
}

/* active クラスがついたときに表示する */
.header__play__btn.active {
  display: block;
}

.header__pause__btn.active {
  display: block;
}


.header h1 {
  aspect-ratio: 89 / 48;
}
.header h1 img {
  height: 100%;
}

.footer {
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #000;
  text-align: center;
  -webkit-padding-after: 70px;
          padding-block-end: 70px;
}
@media screen and (max-width: 739.9px) {
  .header__btn {
    width: 25%;
  }

  .header__play__btn {
    width: 15%;
  }

  .header__pause__btn {
    width: 15%;
  }

  .footer {
    font-size: 3.2vw;
    -webkit-padding-after: 10vw;
            padding-block-end: 10vw;
  }
}
.footer__dish {
  width: min(30vw, 170px);
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  margin-inline: auto;
}
.footer__txt-img {
  width: min(16vw, 95px);
  transform: translateY(-50%);
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
  margin-inline: auto;
}
.footer__heading {
  font-size: 1.125em;
  display: grid;
  grid-template-rows: 2em 1px;
  justify-content: center;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
.footer__heading::after {
  content: "";
  display: block;
  width: 3.3333333333em;
  height: 1px;
  background-color: #fff;
  margin-inline: auto;
}
.footer__data li {
  -webkit-margin-after: 0.4em;
          margin-block-end: 0.4em;
}
.footer small {
  display: block;
  font-size: 0.75em;
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
}
/* SNS */
.list_ft_sns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap:0px 30px;
    margin-top: 50px;
}
@media screen and (min-width : 768px){
.list_ft_sns a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
  }
.list_ft_sns a:hover{
    opacity: .7;
    text-decoration: none;
  }
}
/*# sourceMappingURL=style.css.map */

.outside {
    padding: 60px 0 0;
    text-align: center;
}
.outside a {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: bold;
    padding: 1.5rem 6.5rem 1.8rem;
    color: #242424;
    border-radius: 5px;
    transition: .3s ease-in-out;
    position: relative;
    z-index: 1;

    background: #242424;
}
.outside a::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: solid 3px #242424;
    position: absolute;
    border-radius: 5px;
    top: -2px;
    left: -2px;
    z-index: -1;
    transition: .3s ease-in-out;
}
.outside a:hover {
    color: #fff;
}
.outside a:hover::before {
    top: 0;
    left: 0;
    background-color: #242424;
}

@media screen and (max-width : 768px) {
    .outside {
        padding-top: 30px;
    }
    .outside a {
        font-size: 1.4rem;
        padding: 1.4rem;
        display: block;
    }
}

/* 右下に固定表示します */
.lang-switch {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 5px;
  z-index: 9999;
}

/* ボタンデザインです */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 12px;
  opacity: 0.75;
}

/* ホバー時の演出です */
.lang-btn:hover {
  opacity: 1;
}

/* 旗サイズです */
.lang-btn img {
  width: 16px;
  height: 12px;
  object-fit: cover;
}