@charset "UTF-8";
/* Scss Document */
/* フォント */
/* 色の設定 */
:root {
  --font-jp: noto-sans-cjk-jp, sans-serif;
  --font-en: baskerville-display-pt, sefif;
  --font-min: Noto Serif JP, serif;
  --color-base: #333;
  --color-main: #b28618;
  --c-main-lighter: #e5a71c;
  --color-content-primary: #efedea;
  --color-content-secondary: #e2dbd7;
  --color-lightest: #fff;
  --color-darkest: #000;
  --color-footer: #a5681e;
  --color-rank-first: #e7c100;
  --color-rank-second: #a1a1a1;
  --color-rank-third: #bc8b4b;
  --color-rank-fourth: #34b8bf;
  --color-corp: #ea5b06;
}

@-webkit-keyframes mv-loop {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes mv-loop {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes mv-loop-reverse {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mv-loop-reverse {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes text-move-odd {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes text-move-odd {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes text-move-even {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes text-move-even {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@-webkit-keyframes bg-move {
  0% {
    background-position: -200px center;
  }
  100% {
    background-position: -822px center;
  }
}
@keyframes bg-move {
  0% {
    background-position: -200px center;
  }
  100% {
    background-position: -822px center;
  }
}
@-webkit-keyframes bg-move-sp {
  0% {
    background-position: -50vw center;
  }
  100% {
    background-position: -120vw center;
  }
}
@keyframes bg-move-sp {
  0% {
    background-position: -50vw center;
  }
  100% {
    background-position: -120vw center;
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate-center-normal {
  0% {
    rotate: 0;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes rotate-center-normal {
  0% {
    rotate: 0;
  }
  100% {
    rotate: 360deg;
  }
}
@-webkit-keyframes shine-run {
  0% {
    -webkit-transform: scale(0) rotate(50deg);
            transform: scale(0) rotate(50deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1) rotate(50deg);
            transform: scale(1) rotate(50deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(250) rotate(50deg);
            transform: scale(250) rotate(50deg);
    opacity: 0;
  }
}
@keyframes shine-run {
  0% {
    -webkit-transform: scale(0) rotate(50deg);
            transform: scale(0) rotate(50deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1) rotate(50deg);
            transform: scale(1) rotate(50deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(250) rotate(50deg);
            transform: scale(250) rotate(50deg);
    opacity: 0;
  }
}
a:hover {
  color: var(--color-lightest);
  text-decoration: none;
}

.hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  top: 0;
}
.hover:hover {
  text-decoration: none;
  opacity: 0.75;
}

.anchor {
  position: relative;
  top: -50px;
}
@media screen and (max-width: 1150px) {
  .anchor {
    top: -13vw;
  }
}

.pc {
  display: block !important;
}
@media screen and (max-width: 1150px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 1150px) {
  .sp {
    display: block !important;
  }
}

span.pc {
  display: inline-block !important;
}
@media screen and (max-width: 1150px) {
  span.pc {
    display: none !important;
  }
}

span.sp {
  display: none !important;
}
@media screen and (max-width: 1150px) {
  span.sp {
    display: inline-block !important;
  }
}

.fade {
  position: relative;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  top: -30px;
}
@media screen and (max-width: 1150px) {
  .fade {
    top: -3vw;
  }
}
.fade.scroll {
  top: 0;
  opacity: 1;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb15 {
  padding-bottom: 15px !important;
}
@media screen and (max-width: 1150px) {
  .pb15 {
    padding-bottom: 3vw !important;
  }
}

.pb30 {
  padding-bottom: 30px !important;
}
@media screen and (max-width: 1150px) {
  .pb30 {
    padding-bottom: 5vw !important;
  }
}

.pb45 {
  padding-bottom: 45px !important;
}
@media screen and (max-width: 1150px) {
  .pb45 {
    padding-bottom: 7vw !important;
  }
}

.pb90 {
  padding-bottom: 90px !important;
}
@media screen and (max-width: 1150px) {
  .pb90 {
    padding-bottom: 10vw !important;
  }
}

.pt90 {
  padding-top: 90px !important;
}
@media screen and (max-width: 1150px) {
  .pt90 {
    padding-top: 10vw !important;
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 1150px) {
  .mb15 {
    margin-bottom: 3vw !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 1150px) {
  .mb30 {
    margin-bottom: 5vw !important;
  }
}

.mb45 {
  margin-bottom: 45px !important;
}
@media screen and (max-width: 1150px) {
  .mb45 {
    margin-bottom: 7vw !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 1150px) {
  .mb90 {
    margin-bottom: 10vw !important;
  }
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.min {
  font-family: var(--font-min);
  font-weight: 700;
  font-style: normal;
}

.en {
  font-family: var(--font-en);
  font-weight: 400;
  font-style: italic;
}

.modaal-overlay {
  z-index: 2000;
}

.modaal-close:focus,
.modaal-close:hover {
  outline: 0;
  background: none;
}

#modaal-close {
  background: url("../img/ico-close.png") no-repeat;
  background-size: 100% 100%;
  border-radius: 0;
}

.modaal-close::after,
.modaal-close::before {
  display: none;
}

.pageHeader {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media screen and (max-width: 1150px) {
  .pageHeader {
    padding: 2vw 3vw;
    height: 9vw;
  }
}
@media screen and (max-width: 1150px) {
  .pageHeader__amiamiImage {
    height: 5vw;
    width: auto;
  }
}
.pageHeader__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pageHeader__lang {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
}
@media screen and (max-width: 1150px) {
  .pageHeader__lang {
    gap: 1.4vw;
  }
}
.pageHeader__langList a {
  background: var(--color-lightest);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  display: block;
  border-radius: 24px;
  padding: 0 10px;
  color: var(--color-main);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1150px) {
  .pageHeader__langList a {
    font-size: 3.1vw;
    line-height: 4.2vw;
    border-radius: 2.6vw;
    padding: 0 2.2vw;
  }
}
.pageHeader__langList a:hover {
  background: var(--color-main);
  color: var(--color-lightest);
}
.pageHeader__langList:not(.current) a {
  opacity: 0.5;
}
.pageHeader__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0 0 0 24px;
}
@media screen and (max-width: 1150px) {
  .pageHeader__sns {
    gap: 2.8vw;
    padding: 0 0 0 3.2vw;
  }
}
@media screen and (max-width: 1150px) {
  .pageHeader__snsList {
    height: 5vw;
    width: 5vw;
  }
}
.pageHeader__snsList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1150px) {
  .pageHeader__snsList img {
    width: 100%;
  }
}

.wrapper {
  width: 100%;
  height: auto;
  line-height: 1.7;
  font-family: var(--font-jp);
  font-weight: 500;
  padding: 0;
  position: relative;
  color: var(--color-base);
}

.bg {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  overflow-x: clip;
  position: fixed;
  width: 100%;
  z-index: -1;
}
.bg__imageArea {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/bg-mainvisual.jpg) no-repeat center/cover;
  z-index: 0;
}
.bg__imageArea::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, var(--overlay-opacity, 0.2));
  z-index: 1;
}

.mainVisual {
  width: 100%;
  height: 130vh;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.mainVisual__wrap {
  width: 100%;
  height: 100%;
}
.mainVisual__title {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  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;
}
.mainVisual__titleLogo {
  width: min(45.1vw, 866px);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .mainVisual__titleLogo {
    width: 106.2%;
    margin: 0 auto 0 -3.1%;
  }
}
.mainVisual__titleLogoMain {
  width: 100%;
}
.mainVisual__titleLogoSub {
  position: absolute;
  width: min(15.1vw, 291px);
  left: min(9.8vw, 188px);
  top: min(1.8vw, 35px);
}
@media screen and (max-width: 1150px) {
  .mainVisual__titleLogoSub {
    width: 36vw;
    left: 23.2vw;
    top: 4.1vw;
  }
}
.mainVisual__titleCatch {
  color: var(--color-lightest);
  text-align: center;
  margin: 0;
  line-height: 1.5;
  font-size: min(1.7vw, 34px);
  text-shadow: 0 0 10px var(--color-darkest), 0 0 10px var(--color-darkest);
  margin: min(-1.25vw, -24px) 0 0;
}
@media screen and (max-width: 1150px) {
  .mainVisual__titleCatch {
    font-size: 4.2vw;
    margin: 2.6vw 0 0;
  }
}
.mainVisual__loop {
  position: absolute;
  top: 0;
  width: 14.8%;
}
@media screen and (max-width: 1150px) {
  .mainVisual__loop {
    width: 28.1vw;
  }
}
.mainVisual__loop.left {
  left: 115px;
}
@media screen and (max-width: 1150px) {
  .mainVisual__loop.left {
    left: 5.6vw;
  }
}
.mainVisual__loop.left .mainVisual__loopWrap.is-show {
  -webkit-animation: mv-loop 50s linear infinite;
          animation: mv-loop 50s linear infinite;
}
.mainVisual__loop.right {
  right: 115px;
}
@media screen and (max-width: 1150px) {
  .mainVisual__loop.right {
    right: 5.6vw;
  }
}
.mainVisual__loop.right .mainVisual__loopWrap.is-show {
  -webkit-animation: mv-loop-reverse 50s linear infinite;
          animation: mv-loop-reverse 50s linear infinite;
}
.mainVisual__loopList {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 24px;
}
@media screen and (max-width: 1150px) {
  .mainVisual__loopList {
    border-radius: 2.6vw;
    margin: 0 0 2.4vw;
  }
}
.mainVisual__loopList img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.section {
  position: relative;
  /*
  &.lead {
      padding: 140px 0 148px;
      overflow: hidden;

      @include mq() {
          padding: 10vw 0;
      }
  }

  &.about {
      padding: 100px 0;

      @include mq() {
          padding: 10vw 0;
      }

      .section__blockText {
          font-size: 24px;

          @include mq() {
              font-size: 3.5vw;
          }
      }
  }*/
}
.section.intro {
  padding: 120px 0;
}
@media screen and (max-width: 1150px) {
  .section.intro {
    padding: 14vw 0;
  }
}
.section.intro .section__inner {
  width: 100% !important;
}
.section.intro .section__block {
  position: relative;
}
@media screen and (max-width: 1150px) {
  .section.intro .section__block + .section__block {
    width: 90vw;
    margin: 7vw auto 0;
  }
}
.section.intro .section__blockTitle {
  text-align: center;
  margin: 0 0 48px;
}
@media screen and (max-width: 1150px) {
  .section.intro .section__blockTitle {
    margin: 0 0 6.4vw;
  }
}
.section.intro .section__blockTitleText {
  color: var(--color-lightest);
  font-size: 40px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  margin: 0;
}
@media screen and (max-width: 1150px) {
  .section.intro .section__blockTitleText {
    font-size: 6.4vw;
  }
}
.section.intro .section__blockText {
  color: var(--color-lightest);
  margin: 0 0 64px;
  text-align: center;
  font-size: 28px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  line-height: 2;
}
@media screen and (max-width: 1150px) {
  .section.intro .section__blockText {
    margin: 0 0 5.3vw;
    font-size: 3.2vw;
    text-align: left;
    padding: 0 5vw;
    line-height: 1.6;
  }
}
.section.intro .section__notes {
  width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 1150px) {
  .section.intro .section__notes {
    width: 90vw;
  }
}
.section.intro .section__loop {
  position: absolute;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.section.intro .section__loopText {
  font-size: 263px;
  display: inline-block;
  color: var(--color-rank-first);
  opacity: 0.25;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  padding: 0 0 0 58px;
}
@media screen and (max-width: 1150px) {
  .section.intro .section__loopText {
    font-size: 24.6vw;
    padding: 0 0 0 8.7vw;
  }
}
.section.intro .section__loopText:nth-child(odd) {
  -webkit-animation: text-move-odd 64s -32s infinite linear;
          animation: text-move-odd 64s -32s infinite linear;
}
.section.intro .section__loopText:nth-child(even) {
  -webkit-animation: text-move-even 64s infinite linear;
          animation: text-move-even 64s infinite linear;
}
.section.grand {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1150px) {
  .section.grand {
    height: auto;
  }
}
.section.grand .section__inner {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 1150px) {
  .section.grand .section__inner {
    margin: 0 auto;
    display: block;
  }
}
.section.grand .section__block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 940px;
          flex: 0 0 940px;
  margin: auto 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 85vh;
  height: 100%;
}
@media screen and (max-width: 1150px) {
  .section.grand .section__block {
    margin: 0;
    max-height: initial;
    height: auto;
    padding: 17.5vw 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section.grand .section__blockList {
  color: var(--color-lightest);
  margin: 0;
  display: grid;
}
.section.grand .section__blockTitleDeco {
  color: var(--c-main-lighter);
}
@media screen and (min-width: 1151px) {
  .section.grand .section__blockTitleDeco {
    width: min(11.3vw, 216px);
    margin: 0 auto 0.8vw;
  }
}
@media screen and (min-width: 1151px) {
  .section.grand .section__blockTitle {
    margin: 0 0 1.8vw;
  }
}
.section.grand .section__blockTitleText {
  color: var(--c-main-lighter);
}
@media screen and (min-width: 1151px) {
  .section.grand .section__blockTitleText {
    font-size: min(5vw, 40px) !important;
    margin: 0 0 0.8vw;
  }
}
.section.grand .section__blockTitleSubEdge {
  color: var(--color-lightest);
}
.section.grand .section__blockTitleSubLine {
  background: var(--color-lightest);
}
.section.grand .section__blockTitleSubText {
  color: var(--color-lightest);
}
@media screen and (min-width: 1151px) {
  .section.grand .section__blockListImageAreaRank {
    width: 108px;
    left: 30px;
    top: 30px;
  }
}
@media screen and (min-width: 1151px) {
  .section.grand .section__blockListImageAreaRank span {
    font-size: 38px;
    top: 42px;
  }
}
@media screen and (min-width: 1151px) {
  .section.grand .section__blockListImageArea {
    padding: 48.8vh 0 0;
    margin: 0 0 1vw;
  }
}
@media screen and (max-width: 1150px) {
  .section.grand .section__blockListImageArea {
    aspect-ratio: 16/9;
  }
}
.section.grand .section__blockListImageArea img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1151px) {
  .section.grand .section__blockListTitle {
    font-size: min(1.3vw, 28px);
    margin: 0 0 0.8vw;
  }
}
.section.grand .section__blockListmaker {
  color: var(--color-lightest) !important;
}
@media screen and (min-width: 1151px) {
  .section.grand .section__blockListmaker {
    font-size: clamp(14px, 0.8vw, 18px);
  }
}
.section.grand .section__notes {
  margin: 8vw 0 0;
}
@media screen and (min-width: 1151px) {
  .section.grand .section__notes {
    margin: auto 0 0;
  }
}
@media screen and (min-width: 1151px) {
  .section.grand .section__notesItem {
    font-size: clamp(12px, 0.7vw, 16px);
  }
}
.section.feature, .section.about {
  padding: 120px 0;
  background: var(--color-content-secondary);
}
@media screen and (max-width: 1150px) {
  .section.feature, .section.about {
    padding: 14vw 0;
  }
}
.section.feature::before, .section.feature::after, .section.about::before, .section.about::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-lightest);
  position: absolute;
  left: 0;
}
.section.feature::before, .section.about::before {
  top: 8px;
}
.section.feature::after, .section.about::after {
  bottom: 8px;
}
.section.feature .section__inner {
  width: 1040px;
}
.section.feature .section__blockText {
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1150px) {
  .section.feature .section__blockText {
    font-size: 3vw;
  }
}
.section.about .section__blockText {
  font-size: 24px;
  margin: 0;
}
@media screen and (max-width: 1150px) {
  .section.about .section__blockText {
    font-size: 3.5vw;
  }
}
.section.content {
  padding: 120px 0;
  background: url(../img/bg-content.png) repeat, var(--color-content-primary);
}
@media screen and (max-width: 1150px) {
  .section.content {
    padding: 14vw 0;
    background-size: 10.7vw;
  }
}
.section.dairy-ranking {
  margin: 0 auto;
  padding: 90px 0;
  background: url(../img/bg-ranking.png);
  width: 100%;
  -webkit-animation: bg-move 10s linear 0s infinite;
  animation: bg-move 10s linear 0s infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media screen and (max-width: 1150px) {
  .section.dairy-ranking {
    padding: 10vw 0;
    background: url(../img/bg-ranking.png) repeat left top/70vw auto;
    -webkit-animation: bg-move-sp 10s linear 0s infinite;
    animation: bg-move-sp 10s linear 0s infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}
.section.dairy-ranking::after {
  content: "";
  background: rgba(234, 91, 6, 0.85);
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.section.dairy-ranking .section__blockTitle {
  font-size: 32px;
  text-shadow: none;
  padding: 0;
  color: var(--color-lightest);
  line-height: 1.3;
}
.section.dairy-ranking .section__blockTitle::before {
  content: none;
}
@media screen and (max-width: 1150px) {
  .section.dairy-ranking .section__blockTitle {
    font-size: 6vw;
  }
}
.section.dairy-ranking .section__blockList {
  width: 600px;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 1150px) {
  .section.dairy-ranking .section__blockList {
    width: 100%;
  }
}
.section.dairy-ranking .section__blockList.en {
  width: 100%;
}
.section.dairy-ranking .section__blockListArrow {
  color: var(--color-corp);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.section.dairy-ranking .section__blockListLink {
  font-size: 34px;
  line-height: 90px;
  height: 90px;
  border-radius: 45px;
  color: var(--color-corp);
  background: radial-gradient(circle at 50% -120%, #fff, #f2f2f2 70%);
}
@media screen and (max-width: 1150px) {
  .section.dairy-ranking .section__blockListLink {
    font-size: 4vw;
    position: static;
    margin: 0 auto;
    height: 12vw;
    line-height: 12vw;
    border-radius: 6vw;
  }
}
.section__inner {
  width: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1150px) {
  .section__inner {
    width: 90vw !important;
  }
}
.section__block + .section__block {
  margin: 75px 0 0;
}
@media screen and (max-width: 1150px) {
  .section__block + .section__block {
    margin: 7vw 0 0;
  }
}
.section__blockWrap {
  margin: 0;
}
.section__blockWrap.two-column, .section__blockWrap.three-column, .section__blockWrap.four-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 1150px) {
  .section__blockWrap.two-column, .section__blockWrap.three-column, .section__blockWrap.four-column {
    gap: 0 5vw;
  }
}
.section__blockWrap.one-column {
  margin: 0 auto 45px;
}
@media screen and (max-width: 1150px) {
  .section__blockWrap.one-column {
    margin: 0 auto;
  }
}
.section__blockWrap.two-column .section__blockList {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 1150px) {
  .section__blockWrap.two-column .section__blockList {
    width: calc((100% - 5vw) / 2);
    position: relative;
  }
}
.section__blockWrap.two-column .section__blockList.center {
  margin: 0 auto 45px;
}
@media screen and (max-width: 1150px) {
  .section__blockWrap.two-column .section__blockList.center {
    margin: 0 0 7vw;
  }
}
@media screen and (max-width: 1150px) {
  .section__blockWrap.two-column.sp-two-column {
    width: calc(100% - 10vw);
  }
}
.section__blockWrap.three-column .section__blockList {
  width: calc((100% - 60px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1150px) {
  .section__blockWrap.three-column .section__blockList {
    width: calc((100% - 10vw) / 3);
  }
}
.section__blockWrap.three-column .section__blockList.sp {
  display: none !important;
}
@media screen and (max-width: 1150px) {
  .section__blockWrap.three-column .section__blockList.sp {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media screen and (max-width: 1150px) {
  .section__blockWrap.three-column.ichioshi .section__blockList {
    width: calc((100% - 10vw) / 3);
  }
}
@media screen and (max-width: 1150px) {
  .section__blockWrap.three-column.sp-two-column .section__blockList {
    width: calc((100% - 5vw) / 2);
  }
}
.section__blockWrap.four-column .section__blockList {
  width: calc((100% - 90px) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1150px) {
  .section__blockWrap.four-column .section__blockList {
    width: calc((100% - 10vw) / 3);
  }
}
@media screen and (max-width: 1150px) {
  .section__blockWrap.four-column.sp-two-column .section__blockList {
    width: calc((100% - 5vw) / 2);
  }
}
.section__blockWrap.four-column .section__blockListImageAreaRank {
  left: 12px;
  top: 12px;
}
.section__blockWrap.four-column .section__blockListImageAreaRank.prize {
  width: 51px;
}
.section__blockWrap.four-column .section__blockListImageAreaRank.prize span {
  font-size: 16px;
}
.section__blockWrap.four-column .section__blockListImageAreaRank.prize.en {
  width: 67px;
}
.section__blockWrap.four-column .section__blockListImageAreaRank.prize.en span {
  font-size: 14px;
}
.section__blockList {
  margin: 0 0 45px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--color-base);
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
}
.section__blockList:not(.nolink):hover {
  color: var(--color-main) !important;
}
.section__blockList:not(.nolink):hover .section__blockListImage {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 1150px) {
  .section__blockList {
    margin: 0 0 7vw;
    width: 100%;
  }
}
.section__blockList.pc {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 1150px) {
  .section__blockList.pc {
    display: none !important;
  }
}
.section__blockList.other {
  margin: 0 auto;
  width: 600px;
}
@media screen and (max-width: 1150px) {
  .section__blockList.other {
    width: 100% !important;
  }
}
.section__blockList.other.en {
  width: 940px;
}
@media screen and (max-width: 1150px) {
  .section__blockList.other.en .section__blockListLink {
    line-height: 6vw;
    height: 18vw;
    border-radius: 9vw;
  }
}
.section__blockList.other .section__blockListLink {
  font-size: 34px;
  line-height: 90px;
  height: 90px;
  border-radius: 45px;
  border: none;
}
@media screen and (max-width: 1150px) {
  .section__blockList.other .section__blockListLink {
    font-size: 4vw;
    position: static;
    margin: 0 auto;
    height: 12vw;
    line-height: 12vw;
    border-radius: 6vw;
  }
}
.section__blockList.other .section__blockListLink:focus {
  outline: none;
}
.section__blockList.active .section__blockListArrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.section__blockTitle {
  text-align: center;
  position: relative;
  margin: 0 0 64px;
  line-height: 1;
}
@media screen and (max-width: 1150px) {
  .section__blockTitle {
    margin: 0 0 7vw;
  }
}
.section__blockTitle span {
  font-size: 50%;
  margin: 0 0.5em;
  font-weight: normal;
  text-shadow: none;
}
.section__blockTitle.primary .section__blockTitleText {
  font-size: 40px;
}
@media screen and (max-width: 1150px) {
  .section__blockTitle.primary .section__blockTitleText {
    font-size: 5.2vw;
  }
}
.section__blockTitle.secondary .section__blockTitleText {
  font-size: 34px;
}
@media screen and (max-width: 1150px) {
  .section__blockTitle.secondary .section__blockTitleText {
    font-size: 4.3vw;
  }
}
.section__blockTitleDeco {
  color: var(--color-main);
  width: 216px;
  height: auto;
  margin: 0 auto 16px;
}
@media screen and (max-width: 1150px) {
  .section__blockTitleDeco {
    width: 22.7vw;
    margin: 0 auto 1.8vw;
  }
}
.section__blockTitleText {
  color: var(--color-main);
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin: 0 0 16px;
}
@media screen and (max-width: 1150px) {
  .section__blockTitleText {
    margin: 0 0 1.8vw;
  }
}
.section__blockTitleSub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0.5;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section__blockTitleSubEdge {
  width: 14px;
  height: auto;
}
@media screen and (max-width: 1150px) {
  .section__blockTitleSubEdge {
    width: 1.8vw;
  }
}
.section__blockTitleSubEdge svg {
  display: block;
}
.section__blockTitleSubEdge.left {
  margin: 0 6px 0 0;
}
@media screen and (max-width: 1150px) {
  .section__blockTitleSubEdge.left {
    margin: 0 1vw 0 0;
  }
}
.section__blockTitleSubEdge.right {
  margin: 0 0 0 6px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 1150px) {
  .section__blockTitleSubEdge.right {
    margin: 0 0 0 1vw;
  }
}
.section__blockTitleSubLine {
  width: 100px;
  height: 1px;
  background: var(--color-base);
}
@media screen and (max-width: 1150px) {
  .section__blockTitleSubLine {
    width: 11.2vw;
  }
}
.section__blockTitleSubText {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0 12px;
}
@media screen and (max-width: 1150px) {
  .section__blockTitleSubText {
    font-size: 2.5vw;
    margin: 0 1.6vw;
  }
}
.section__blockListImageArea {
  margin: 0 0 24px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1150px) {
  .section__blockListImageArea {
    margin: 0 0 4.5vw;
    border-radius: 2.6vw;
  }
}
.section__blockListImageAreaRank {
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 16px;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 1150px) {
  .section__blockListImageAreaRank {
    left: 1.8vw !important;
    top: 1.8vw !important;
  }
}
.section__blockListImageAreaRank.first svg {
  color: var(--color-rank-first);
}
.section__blockListImageAreaRank.second svg {
  color: var(--color-rank-second);
}
.section__blockListImageAreaRank.third svg {
  color: var(--color-rank-third);
}
.section__blockListImageAreaRank.fourth svg {
  color: var(--color-rank-fourth);
}
.section__blockListImageAreaRank.prize {
  width: 64px;
}
@media screen and (max-width: 1150px) {
  .section__blockListImageAreaRank.prize {
    width: 8.3vw !important;
  }
}
.section__blockListImageAreaRank.prize.en {
  width: 88px;
}
@media screen and (max-width: 1150px) {
  .section__blockListImageAreaRank.prize.en {
    width: 8.8vw !important;
  }
}
.section__blockListImageAreaRank.prize.en span {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 1150px) {
  .section__blockListImageAreaRank.prize.en span {
    font-size: 1.7vw !important;
  }
}
.section__blockListImageAreaRank.prize span {
  font-size: 20px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  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;
}
@media screen and (max-width: 1150px) {
  .section__blockListImageAreaRank.prize span {
    font-size: 3vw !important;
  }
}
.section__blockListImageAreaRank:not(.prize) {
  width: 90px;
}
@media screen and (max-width: 1150px) {
  .section__blockListImageAreaRank:not(.prize) {
    width: 12vw;
  }
}
.section__blockListImageAreaRank:not(.prize) span {
  font-size: 32px;
  top: 34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1150px) {
  .section__blockListImageAreaRank:not(.prize) span {
    font-size: 3.8vw;
    top: 5vw;
  }
}
.section__blockListImageAreaRank span {
  color: var(--color-lightest);
  position: absolute;
  line-height: 1;
}
.section__blockListImage {
  width: 100%;
  height: auto;
  -webkit-transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.section__blockListTitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 16px;
  word-break: break-all;
}
@media screen and (max-width: 1150px) {
  .section__blockListTitle {
    font-size: 4vw;
    margin: 0 0 3vw;
  }
}
.section__blockListmaker {
  display: block;
  font-weight: 400;
  color: var(--color-base) !important;
  opacity: 0.7;
  line-height: 1.2;
}
@media screen and (max-width: 1150px) {
  .section__blockListmaker {
    font-size: 3vw;
  }
}
.section__blockListArrow {
  width: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 27px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  color: var(--color-lightest);
  z-index: 1;
}
@media screen and (max-width: 1150px) {
  .section__blockListArrow {
    width: 3.5vw;
    right: 4.3vw;
  }
}
.section__blockListArrow svg {
  display: block;
}
.section__blockListLink {
  background: var(--color-main);
  width: 100%;
  line-height: 60px;
  border-radius: 30px;
  height: 60px;
  text-align: center;
  font-size: 20px;
  color: var(--color-lightest);
  font-weight: bold;
  display: block;
  overflow: hidden;
  /*&::after {
      content: "";
      display: block;
      position: absolute;
      right: 30px;
      top: calc(50% - 5px);
      width: 10px;
      height: 10px;
      border-right: solid 2px #333;
      border-bottom: solid 2px #333;
      transform: rotate(-45deg);
      @include mq() {
          right: 5vw;
          width: 2vw;
          height: 2vw;
          top: calc(50% - 1vw);
      }
  }*/
}
@media screen and (max-width: 1150px) {
  .section__blockListLink {
    line-height: 4vw;
    border-radius: 6vw;
    font-size: 4vw;
    height: 12vw;
    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;
    padding: 0 10.1vw;
  }
}
.section__blockYoutube {
  width: 100%;
  aspect-ratio: 1040/638;
  position: relative;
  margin: 0 0 32px;
}
@media screen and (max-width: 1150px) {
  .section__blockYoutube {
    margin: 0 0 3.9vw;
  }
}
.section__blockYoutube::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg-youtube.png) no-repeat center/contain;
}
.section__blockYoutubeWrap {
  width: 100%;
  height: 100%;
  padding: 60px;
}
@media screen and (max-width: 1150px) {
  .section__blockYoutubeWrap {
    padding: 5.2vw;
  }
}
.section__blockYoutubeWrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
@media screen and (max-width: 1150px) {
  .section__blockYoutubeWrap iframe {
    border-radius: 2.6vw;
  }
}
.section__blockYear {
  text-align: center;
  display: none;
  padding: 45px 0 0;
}
@media screen and (max-width: 1150px) {
  .section__blockYear {
    padding: 5.3vw 0 0;
  }
}
.section__blockYear a {
  color: var(--color-lightest);
  font-size: 24px;
  display: inline-block;
  text-decoration: underline;
}
@media screen and (max-width: 1150px) {
  .section__blockYear a {
    font-size: 4vw;
  }
}
.section__blockYear a + a {
  margin: 0 0 0 1em;
}
.section__notes {
  padding: 0 0 0 1em;
  text-indent: -1em;
  list-style: none;
  margin: 0;
  opacity: 0.7;
}
.section__notes.asterisk {
  padding: 0 0 0 1.25em;
  text-indent: -1.25em;
}
.section__notes.en {
  padding: 0 0 0 0.5em;
  text-indent: -0.5em;
  font-family: var(--font-jp);
  font-style: normal;
}
.section__notesItem {
  color: var(--color-lightest);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 1150px) {
  .section__notesItem {
    font-size: 3vw;
  }
}

.pageFooter {
  background: var(--color-footer);
  padding: 90px 0;
  text-align: center;
  color: var(--color-lightest);
}
@media screen and (max-width: 1150px) {
  .pageFooter {
    padding: 10vw 0;
  }
}
.pageFooter__banner {
  margin: 0 0 60px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  gap: 30px;
}
@media screen and (max-width: 1150px) {
  .pageFooter__banner {
    margin: 0 0 10vw;
    gap: 5vw;
  }
}
.pageFooter__bannerList {
  width: 300px;
}
@media screen and (max-width: 1150px) {
  .pageFooter__bannerList {
    width: 42.5vw;
  }
}
.pageFooter__bannerList img {
  max-width: 100%;
  height: auto;
}
.pageFooter__snsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
@media screen and (max-width: 1150px) {
  .pageFooter__snsList {
    margin: 0 0 5vw;
  }
}
.pageFooter__snsListItem {
  width: 40px;
  height: 40px;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 1150px) {
  .pageFooter__snsListItem {
    width: 10vw;
    height: 10vw;
    margin: 0 0 0 5vw;
  }
}
.pageFooter__snsListItem:first-child {
  margin: 0;
}
.pageFooter__snsListImage {
  width: 100%;
  height: 100%;
}
.pageFooter__amiamiLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1150px) {
  .pageFooter__amiamiLink {
    gap: 5vw;
    margin: 0 0 10vw;
  }
}
@media screen and (max-width: 1150px) {
  .pageFooter__amiamiImage {
    height: 5vw;
  }
}
.pageFooter__copy {
  font-size: 0.8em;
  margin: 0 auto;
  text-align: center;
  width: 950px;
}
@media screen and (max-width: 1150px) {
  .pageFooter__copy {
    width: 90%;
    font-size: 3vw;
  }
}
.pageFooter__copy span {
  display: inline-block;
  margin: 0 1em 0 0;
}

/* pagetop */
.pagetop {
  width: 100px;
  height: 100px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 200;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1150px) {
  .pagetop {
    width: 15vw;
    height: 15vw;
  }
}
.pagetop:hover {
  opacity: 0.5;
}
.pagetop__image {
  width: 100%;
  height: 100%;
}

.loader-wrapper {
  width: 100vw;
  height: 100vh;
  background: var(--color-main);
  position: fixed;
  z-index: 10000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loader-wrapper .loader {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: var(--color-lightest);
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, var(--color-lightest)), color-stop(42%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, var(--color-lightest) 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.loader-wrapper .loader:before {
  width: 50%;
  height: 50%;
  background: var(--color-lightest);
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.loader-wrapper .loader:after {
  background: var(--color-main);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}