@charset "utf-8";
/* CSS Document */

/* 初期設定 */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,200,300,400,500,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:100,200,300,400,500,600,700,800,900&display=swap");

@font-face {
  font-family: "boritanic";
  src: url("../fonts/boritanic.woff2") format("woff2"),
    url("../fonts/boritanic.woff") format("woff"),
    url("../fonts/boritanic.eot") format("eot");
}
@font-face {
  font-family: "takahand";
  src: url("../fonts/takahandB.woff2") format("woff2"),
    url("../fonts/takahandB.woff") format("woff");
}
@font-face {
  font-family: "marufo";
  src: url("../fonts/marufo_b.woff2") format("woff2");
}

:root {
  --main: #de7a31;
  --sub: #ffeecc;
  --bg: #e1b152;
  --txt: #151515;
}

* {
  border: medium none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-style: normal;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  box-sizing: border-box;
  outline: none;
  color: #fff;
}

main footer * {
  color: var(--txt);
}

@media (max-width: 480px) {
  * {
    font-size: 14px;
  }
}

strong {
  font-weight: bold;
}
img {
  vertical-align: bottom;
}
table {
  border-collapse: collapse;
}
/*a:hover img, input[type="image"]:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
    border: none;
}*/

/* iOSでのデフォルトスタイルをリセット */
body {
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg);
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

::selection {
  background: var(--main) !important;
  color: #ffffff; /* Safari */
}
::-moz-selection {
  background: var(--main) !important;
  color: #ffffff; /* Firefox */
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.effect {
  transition: 0.5s;
  transform: translateY(40px);
}

.effect_up {
  transform: translateY(0px);
}

header {
  position: fixed;
  z-index: 10;
  left: 0px;
  top: 0px;
  width: 210px;
  height: 100vh;
  background-color: var(--sub);
}

header h1 {
  margin: 20px auto;
  width: 90%;
}

header h1 a {
  display: inline-block;
}

header h1 a img {
  width: 100%;
}

.gnav {
  display: block;
}

.gnav > ul > li > a {
  display: block;
  padding: 10px 15px;
  line-height: 1.4em;
  text-align: center;
  color: var(--txt);
}

.gnav > ul > li > a:hover,
.gnav > ul > li > a.current {
  background-color: var(--main);
  color: #fff;
}

.gnav > ul > li > a:hover + ul {
  display: block;
}

.gnav > ul > li.nolink a {
  color: #aaa;
  pointer-events: none;
}

.gnav > ul > li a > span {
  font-size: 12px;
  line-height: 1.2em;
  display: inline-block;
  color: inherit;
}

.gnav > ul > li > ul {
  position: fixed;
  z-index: 9;
  left: 210px;
  top: 0px;
  width: 210px;
  height: 100vh;
  background-color: var(--main);
  padding-top: 30px;
  display: none;
}

.gnav > ul > li > ul:hover {
  display: block;
}

.gnav > ul > li > ul > li {
  text-align: center;
}

.gnav > ul > li > ul > li:not(:first-child) {
  margin-top: 20px;
}

.gnav > ul > li > ul > li a {
  color: #fff;
  display: block;
}

.entryBtn {
  border-radius: 5px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  width: calc(100% - 40px);
  height: 50px;
  margin: 20px auto 0px;
}

/*.entryBtn:nth-of-type(1) {
  background-color: var(--main);
}*/
.entryBtn:nth-of-type(1) {
  background-color: var(--main);
}
.entryBtn:nth-of-type(2),
.entryBtn:nth-of-type(3) {
  background-color: var(--main);
}
/*.entryBtn:nth-of-type(1):hover {
  background-color: #125337;
}*/
.entryBtn:nth-of-type(1):hover {
  background-color: #b86021;
}
.entryBtn:nth-of-type(2):hover,
.entryBtn:nth-of-type(3):hover {
  background-color: #b86021;
}

.entryBtn:nth-of-type(2) {
  position: relative;
  /* margin-top: 60px; */
}
.entryBtn:nth-of-type(2) span {
  position: absolute;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: -0.05em;
  line-height: 1.4;
  background: #75b728;
  color: #fff;
  border-radius: 10px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 160px;
  top: -34px;
  animation: bound-anim 0.5s ease infinite alternate;
}
@keyframes bound-anim {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-8px);
  }
}
.entryBtn:nth-of-type(2) span:before {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 2.5px);
  border: 5px solid transparent;
  border-top: 5px solid #75b728;
}
.head_link {
  margin: 20px 20px 0px;
  padding-top: 20px;
  border-top: 1px dashed #707070;
}

.head_link ul li {
  text-align: center;
}

.head_link ul li:not(:first-child) {
  margin-top: 20px;
}

@media (min-width: 981px) and (min-height: 801px) {
  .sp_btn,
  .sp_close,
  .gnav_sns {
    display: none;
  }
}

@media (max-width: 980px) {
  header {
    width: 100%;
    height: 80px;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
  }
  header h1 {
    display: none;
  }
  .gnav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: var(--main);
    padding-top: 50px;
    z-index: 50;
    display: none;
  }
  .sp_close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    cursor: pointer;
  }
  .sp_close::before {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    left: 0px;
    top: 18px;
  }
  .sp_close::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 0px;
    top: 18px;
  }
  .gnav > ul.gnav_sns {
    display: flex;
    flex-flow: wrap;
  }
  .gnav > ul.gnav_sns li {
    width: 50%;
  }
  .gnav > ul > li > a {
    color: #fff;
    transition: 0.2s all ease-out;
  }
  .gnav > ul > li > a:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--main);
  }
  .gnav > ul > li > a:hover + ul {
    display: none;
  }
  .gnav > ul > li > a br {
    display: none;
  }
  .head_link {
    margin: 0;
    border-top: none;
    padding-top: 0px;
    margin-left: 10px;
  }
  .head_link ul {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 35% 33% 32%;
    -ms-grid-columns: 35% 33% 32%;
    grid-template-rows: auto auto;
    -ms-grid-rows: auto auto;
    width: 340px;
  }
  .head_link ul li {
    text-align: left;
    display: inline-flex;
    flex-flow: wrap;
    align-items: center;
  }
  .head_link ul li:first-child {
    grid-row: 1/3;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .head_link ul li:nth-of-type(2) {
    grid-row: 1/2;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .head_link ul li:nth-of-type(3) {
    grid-row: 1/2;
    grid-column: 3/4;
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .head_link ul li:nth-of-type(4) {
    grid-row: 2/3;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .head_link ul li:nth-of-type(5) {
    grid-row: 2/3;
    grid-column: 3/4;
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .head_link ul li:not(:first-child) {
    margin-top: 0px;
  }
  .head_link ul li:nth-of-type(1) a img {
    width: 100px;
  }
  .head_link ul li:nth-of-type(2) a img {
    width: 100px;
  }
  .head_link ul li:nth-of-type(3) a img {
    width: 100px;
  }
  .head_link ul li:nth-of-type(4) a img {
    width: 100px;
  }
  .head_link ul li:nth-of-type(5) a img {
    width: 100px;
  }

  .head_link ul li a {
    display: inline-flex;
    flex-flow: wrap;
    align-items: center;
  }
  .sp_btn {
    width: 80px;
    height: 80px;
    background-color: var(--main);
    position: relative;
    cursor: pointer;
  }

  .sp_btn span {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #fff;
    position: absolute;
  }

  .sp_btn span:nth-of-type(1) {
    left: 15px;
    top: 23px;
  }
  .sp_btn span:nth-of-type(2) {
    left: 15px;
    top: 38px;
  }
  .sp_btn span:nth-of-type(3) {
    left: 15px;
    top: 53px;
  }

  /*.entryBtn:nth-of-type(1) {
    background-color: #fff;
    color: var(--main);
  }*/
  .entryBtn:nth-of-type(1) {
    background-color: var(--main);
    color: #fff;
  }
}
@media (max-height: 800px) {
  .entryBtn:nth-of-type(1) {
    background-color: #fff;
    color: var(--main);
  }
}

@media (max-height: 800px) {
  header {
    width: 100%;
    height: 80px;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
  }
  header h1 {
    display: none;
  }
  .gnav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: var(--main);
    padding-top: 50px;
    z-index: 50;
    display: none;
  }
  .sp_close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    cursor: pointer;
  }
  .sp_close::before {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    left: 0px;
    top: 18px;
  }
  .sp_close::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 0px;
    top: 18px;
  }
  .gnav > ul.gnav_sns {
    display: flex;
    flex-flow: wrap;
  }
  .gnav > ul.gnav_sns li {
    width: 50%;
  }
  .gnav > ul > li > a {
    color: #fff;
    transition: 0.2s all ease-out;
  }
  .gnav > ul > li > a:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--main);
  }
  .gnav > ul > li > a:hover + ul {
    display: none;
  }
  .gnav > ul > li > a br {
    display: none;
  }
  .head_link {
    margin: 0;
    border-top: none;
    padding-top: 0px;
    margin-left: 10px;
  }
  .head_link ul {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 35% 33% 32%;
    -ms-grid-columns: 35% 33% 32%;
    grid-template-rows: auto auto;
    -ms-grid-rows: auto auto;
    width: 340px;
  }
  .head_link ul li {
    text-align: left;
    display: inline-flex;
    flex-flow: wrap;
    align-items: center;
  }
  .head_link ul li:first-child {
    grid-row: 1/3;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .head_link ul li:nth-of-type(2) {
    grid-row: 1/2;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .head_link ul li:nth-of-type(3) {
    grid-row: 1/2;
    grid-column: 3/4;
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .head_link ul li:nth-of-type(4) {
    grid-row: 2/3;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .head_link ul li:nth-of-type(5) {
    grid-row: 2/3;
    grid-column: 3/4;
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .head_link ul li:not(:first-child) {
    margin-top: 0px;
  }
  .head_link ul li:nth-of-type(1) a img {
    width: 100px;
  }
  .head_link ul li:nth-of-type(2) a img {
    width: 100px;
  }
  .head_link ul li:nth-of-type(3) a img {
    width: 100px;
  }
  .head_link ul li:nth-of-type(4) a img {
    width: 100px;
  }
  .head_link ul li:nth-of-type(5) a img {
    width: 100px;
  }

  .head_link ul li a {
    display: inline-flex;
    flex-flow: wrap;
    align-items: center;
  }
  .sp_btn {
    width: 80px;
    height: 80px;
    background-color: var(--main);
    position: relative;
    cursor: pointer;
  }

  .sp_btn span {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #fff;
    position: absolute;
  }

  .sp_btn span:nth-of-type(1) {
    left: 15px;
    top: 23px;
  }
  .sp_btn span:nth-of-type(2) {
    left: 15px;
    top: 38px;
  }
  .sp_btn span:nth-of-type(3) {
    left: 15px;
    top: 53px;
  }
}

@media (max-width: 480px) {
  header {
    height: 60px;
  }
  .head_link ul {
    width: 220px;
    grid-template-columns: 40% 30% 30%;
    -ms-grid-columns: 40% 30% 30%;
  }
  .head_link ul li:last-child {
    margin-left: 5px;
  }
  .head_link ul li:nth-of-type(1) a img {
    width: 80px;
  }
  .head_link ul li:nth-of-type(2) a img {
    width: 60px;
  }
  .head_link ul li:nth-of-type(3) a img {
    width: 70px;
  }
  .head_link ul li:nth-of-type(4) a img {
    width: 65px;
  }
  .head_link ul li:nth-of-type(5) a img {
    width: 70px;
  }

  .sp_btn {
    width: 60px;
    height: 60px;
  }

  .sp_btn span {
    width: 40px;
  }

  .sp_btn span:nth-of-type(1) {
    left: 10px;
    top: 17px;
  }
  .sp_btn span:nth-of-type(2) {
    left: 10px;
    top: 30px;
  }
  .sp_btn span:nth-of-type(3) {
    left: 10px;
    top: 43px;
  }
}

p.contest-contact {
  background-color: var(--main);
}

.download {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
  display: flex;
  flex-flow: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.2s opacity ease-out;
}

.download.open {
  opacity: 1;
}

.download_close {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 510;
}

.download_box {
  background-color: #fff;
  padding: 30px;
  position: relative;
  z-index: 520;
  max-width: 96%;
  height: auto;
}

.download_box h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--main);
  text-align: center;
  margin-bottom: 30px;
}

.download_box div {
  display: flex;
  flex-flow: column;
}

.download_box div ul {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 30px;
}

.download_box div ul li:not(:first-child) {
  margin-left: 20px;
}

.download_box div ul li a {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  width: 190px;
  height: 65px;
  border-width: 2px;
  border-style: solid;
  padding: 0px 20px;
  transition: 0.1s background-color ease-out;
}

.download_box div ul li a span {
  font-size: 16px;
  transition: 0.1s color ease-out;
}

.download_box div ul li a i {
  font-size: 24px;
  transition: 0.1s color ease-out;
}
.download_box div ul li a i.fa-file-word {
  color: #1775c6;
}
.download_box div ul li a i.fa-file-pdf {
  color: #e50d18;
}

.download_box div p {
  text-align: center;
}

.download_box div p a {
  position: relative;
  font-size: 16px;
}

.download_box div p a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.download_box div ul li a {
  border-color: var(--main);
}
.download_box div ul li a span,
.download_box div p a {
  color: var(--main);
}

.download_box div ul li a:hover {
  background-color: var(--main);
}

.download_box div ul li a:hover span,
.download_box div ul li a:hover i {
  color: #fff;
}

.download_box div a::after {
  background-color: var(--main);
}

@media (max-width: 980px) {
  .download_box div ul li a {
    width: 160px;
    padding: 0px 10px;
  }
}

@media (max-width: 850px) {
  .download_box div {
    display: block;
  }
}

@media (max-width: 440px) {
  .download_box h2 {
    font-size: 24px;
    margin-bottom: 0px;
  }
  .download_box div {
    margin-top: 10px;
  }
  .download_box div ul {
    flex-flow: column;
    align-items: center;
    margin-bottom: 10px;
  }
  .download_box div ul li:not(:first-child) {
    margin-left: 0px;
    margin-top: 10px;
  }
  .download_box div ul li a {
    height: 40px;
  }
}

main {
  margin-left: 210px;
  overflow-x: hidden;
}

@media (max-width: 980px) {
  main {
    margin-left: 0px;
    margin-top: 80px;
  }
}
@media (max-height: 800px) {
  main {
    margin-left: 0px;
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  main {
    margin-top: 60px;
  }
}
.mainvisual {
  height: 100vh;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 980px) {
  .mainvisual {
    height: calc(100vh - 80px);
  }
}
@media (max-height: 800px) {
  .mainvisual {
    height: calc(100vh - 80px);
  }
}

.mainLogo {
  max-width: 800px;
  width: 45%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.mainLogo__img--wrap {
  position: relative;
}

@keyframes mainLogo {
  0% {
    transform: scale(1.2);
    filter: blur(30px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}

.mainLogo__img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.2);
  filter: blur(30px);
  opacity: 0;
  animation: mainLogo 1s ease-out 1s forwards;
}

@keyframes mainLogoEgao {
  0% {
    transform: rotate(-14deg) translate(-20%, -30%);
    opacity: 0;
  }
  100% {
    transform: rotate(0deg) translate(0%, 0%);
    opacity: 1;
  }
}

.mainLogo__egao {
  position: absolute;
  top: -58px;
  left: -125px;
  transform: rotate(-10deg) translate(-20%, -30%);
  opacity: 0;
  animation: mainLogoEgao 0.5s ease-out 2s forwards;
}

@keyframes mainLogoDate {
  0% {
    transform: rotate(-30deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}

.mainLogo__date {
  position: absolute;
  right: -124px;
  bottom: -68px;
  transform: rotate(-30deg);
  opacity: 0;
  animation: mainLogoDate 0.5s ease-out 2.5s forwards;
}

.mainvisual ul {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.mainvisual ul li {
  position: absolute;
  opacity: 0;
}

.mainvisual ul li:nth-of-type(1) {
  left: 4% !important;
  top: -2% !important;
  width: 30%;
  animation: fade 1s ease-out 0.2s forwards;
}
.mainvisual ul li:nth-of-type(2) {
  top: auto !important;
  left: auto !important;
  right: -2% !important;
  bottom: 0% !important;
  width: 30%;
  animation: fade 1s ease-out 0.3s forwards;
}
.mainvisual ul li:nth-of-type(3) {
  top: auto !important;
  left: 3% !important;
  bottom: 1% !important;
  width: 28%;
  animation: fade 1s ease-out 0.4s forwards;
}
.mainvisual ul li:nth-of-type(4) {
  left: 21% !important;
  top: auto !important;
  bottom: 2% !important;
  width: 21%;
  animation: fade 1s ease-out 0.5s forwards;
}
.mainvisual ul li:nth-of-type(5) {
  left: auto !important;
  right: -3%;
  top: 30% !important;
  width: 20%;
  z-index: -1;
  animation: fade 1s ease-out 0.6s forwards;
}
.mainvisual ul li:nth-of-type(6) {
  left: auto !important;
  right: 25% !important;
  top: auto !important;
  bottom: 5% !important;
  width: 19%;
  z-index: -1;
  animation: fade 1s ease-out 0.7s forwards;
}
.mainvisual ul li:nth-of-type(7) {
  left: auto !important;
  right: -2% !important;
  top: -5% !important;
  width: 20%;
  z-index: -1;
  animation: fade 1s ease-out 0.8s forwards;
}

.mainvisual ul li:nth-of-type(8) {
  top: -10% !important;
  left: 37% !important;
  width: 19%;
  z-index: -1;
  animation: fade 1s ease-out 1s forwards;
}
.mainvisual ul li:nth-of-type(9) {
  left: auto !important;
  right: 23% !important;
  top: -5% !important;
  width: 10%;
  z-index: -1;
  animation: fade 1s ease-out 1.1s forwards;
}
.mainvisual ul li:nth-of-type(10) {
  top: 12% !important;
  left: auto !important;
  right: 20% !important;
  width: 18%;
  z-index: -1;
  animation: fade 1s ease-out 1.2s forwards;
}
.mainvisual ul li:nth-of-type(11) {
  top: auto !important;
  left: 42% !important;
  bottom: 7% !important;
  width: 10%;
  z-index: -1;
  animation: fade 1s ease-out 1.3s forwards;
}

.mainvisual ul li img {
  width: 100%;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.16));
}

.mainvisual ul li:nth-of-type(5) img,
.mainvisual ul li:nth-of-type(6) img,
.mainvisual ul li:nth-of-type(7) img,
.mainvisual ul li:nth-of-type(8) img,
.mainvisual ul li:nth-of-type(9) img,
.mainvisual ul li:nth-of-type(10) img,
.mainvisual ul li:nth-of-type(11) img,
.mainvisual ul li:nth-of-type(12) img {
  width: 100%;
  filter: blur(5px) drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.16));
}

@media (max-width: 1650px) and (max-height: 800px) {
  .mainLogo__egao {
    width: 25.21vw;
    top: -13%;
    left: -18%;
  }
  .mainLogo__date {
    width: 13.93vw;
    right: -16%;
    bottom: -16%;
  }
}

@media (max-width: 1850px) and (min-height: 801px) {
  .mainLogo__egao {
    width: 22.48vw;
    top: -14%;
    left: -18%;
  }
  .mainLogo__date {
    width: 12.43vw;
    right: -16%;
    bottom: -20%;
  }
}

@media (max-width: 700px) and (max-height: 800px) {
  .mainLogo {
    width: 70%;
  }
  .mainLogo__egao {
    width: 22.48vw;
  }
  .mainLogo__date {
    width: 12.43vw;
  }
}

@media (max-width: 980px) and (min-height: 801px) {
  .mainLogo {
    width: 45%;
  }
  .mainLogo__egao {
    width: 25.21vw;
    top: -13%;
    left: -18%;
  }
  .mainLogo__date {
    width: 13.93vw;
    right: -16%;
    bottom: -16%;
  }
}
@media (max-width: 700px) {
  .mainLogo {
    width: 70%;
  }
  .mainLogo__egao {
    width: 38.21vw;
  }
  .mainLogo__date {
    width: 20.93vw;
  }
}

@media (max-width: 980px) {
  .mainvisual {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .mainvisual {
    height: 78.2268vw;
  }
}

.section_01 {
  padding: 0px 30px 70px;
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  position: relative;
  background: url("../images/bg_01.svg") no-repeat left 10% top 10%/20% auto,
    url("../images/bg_02.svg") no-repeat left 40% top 60%/30% auto,
    url("../images/bg_03.svg") no-repeat left 2% bottom 10%/25% auto;
}

.line {
  width: 94%;
  margin: 0 auto 70px;
  display: block;
}

.line path {
  fill-opacity: 0; /*透過0で塗りの色が見えない状態*/
  transition: fill-opacity 0.5s; /*0.5秒で色が付くアニメーション*/
  fill: none; /*塗りの色*/
  stroke: #fff; /*線の色*/
}
.line .done path {
  fill: #fff; /*塗りの色*/
  fill-opacity: 1; /*透過1で塗りの色が見える状態*/
  stroke: none; /*線の色*/
}

.happyeating {
  width: 48%;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 70px;
  font-family: "marufo", sans-serif;
  line-height: 1.4em;
}

.happyeating__txt {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 384px;
}

.section_01_txt {
  font-size: 24px;
  width: 40%;
  position: relative;
  z-index: 2;
  text-align: justify;
}

.h2_title {
  font-family: "marufo", sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
  letter-spacing: 0.2em;
}

.h2_title.orange {
  color: var(--main);
}

@media (max-width: 1400px) {
  .section_01_txt {
    font-size: 18px;
  }
  .happyeating {
    font-size: 50px;
  }
}

@media (max-width: 1200px) {
  .section_01 {
    flex-flow: column;
    align-items: center;
  }
  .happyeating {
    width: 80%;
  }
  .section_01_txt {
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 980px) {
  .h2_title {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .happyeating {
    font-size: 30px;
  }
  .section_01_txt {
    margin-top: 0px;
    padding: 30px 0px;
    font-size: 14px;
  }
  .h2_title {
    font-size: 30px;
  }
}

footer {
  background: var(--main);
}

footer .content_wrap {
  padding: 50px 0 30px;
  text-align: center;
  width: 96%;
  margin: 0 auto;
}

footer .content_wrap p {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  line-height: 2em;
}

footer .content_wrap p span {
  color: inherit;
  font-size: inherit;
  display: inline-block;
}

footer .content_wrap a {
  text-decoration: underline;
  color: #fff;
}

footer .content_wrap .copyright {
  font-size: 12px;
  margin-top: 20px;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}

.pagetop a {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  display: -ms-flex;
  -ms-flex-flow: wrap;
  -ms-align-items: center;
  -ms-justify-content: center;
  display: -webkit-flex;
  -webkit-flex-flow: wrap;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  border-radius: 4px;
  width: 57px;
  height: 57px;
  background-color: #000;
}

.pagetop a i {
  color: #fff;
  font-size: 23px;
}

.pagetop a:hover {
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

.section_02 {
  position: relative;
  background: url("../images/bg_04.svg") no-repeat right 10% top 10%/35% auto,
    url("../images/bg_05.svg") no-repeat left -5% bottom 20%/45% auto;
}

.section_02 h2 {
  text-align: center;
  margin-bottom: 30px;
}

.section_02 > p {
  text-align: center;
  margin-bottom: 100px;
  color: #fff;
  font-size: 24px;
}

.section_02_inner {
  width: 94%;
  margin: 0 0 120px;
  padding: 30px;
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 20px;
  border: 3px solid #fff;
}

.section_02_01 {
}

.section_02_01 .section_02_inner {
  max-width: 1100px;
  margin-left: 3%;
  position: relative;
}

.requirement__1 {
  position: absolute;
  top: -80px;
  left: 30px;
  height: 80px;
  z-index: 2;
}

.section_02_01 .condition_detail {
  width: 55%;
}

.section_02_02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.section_02_02 .section_02_inner {
  max-width: 1200px;
  margin-right: 3%;
  position: relative;
}

.requirement__2 {
  position: absolute;
  top: -80px;
  right: 30px;
  height: 80px;
  z-index: 2;
}

.section_02_02 .condition_detail {
  width: 36%;
}

.condition_detail h3 {
  display: flex;
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
}

.condition_detail h3 > span {
  margin-right: 10px;
}

.condition_detail h3 p {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4em;
}

.condition_detail h3 p span {
  font: inherit;
  line-height: inherit;
}

.condition_detail h3 p b {
  font: inherit;
  position: relative;
  display: inline-block;
}

.condition_detail h3 p b::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0.6em;
  left: 0px;
  bottom: 0px;
  background-color: #e8ef10;
  z-index: -1;
}

.condition_detail aside {
  font-size: 14px;
  position: relative;
  z-index: 3;
  background-color: #fee9f8;
  padding: 15px;
  margin-bottom: 10px;
}

.condition_detail aside span {
  color: #ec1111;
  font-weight: 700;
  line-height: 1.4em;
  display: inline-block;
}

.condition_detail aside p {
  font-size: 13px;
  text-indent: -6em;
  margin-left: 6em;
  margin-bottom: 1em;
}

.condition_detail h3 p span {
  font-size: inherit;
  display: inline-block;
}

.condition_detail > p {
  color: #ec1111;
  font-size: 14px;
}

.section_02_inner h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0px auto 30px;
  text-align: center;
}

.item_box {
  background-color: #a77f2d;
  border-radius: 30px;
  padding: 20px;
}

.section_02_01 .item_box {
  width: 42%;
}

.section_02_02 .item_box {
  width: 63%;
}

.item_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  width: 100%;
  z-index: 3;
}

.item_list li {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin: 0px 5px 10px;
}

.item_list li img {
  width: 65px;
  margin-bottom: 5px;
}

.item_list li p {
  font-size: 10px;
  text-align: center;
  line-height: 1.1em;
  color: var(--txt);
}

@media (max-width: 1400px) {
  .title_theme img {
    width: 56vw;
  }
  .section_02 > p {
    font-size: 20px;
  }
}

@media (max-width: 1300px) {
  .section_02_inner {
    display: block;
  }
  .section_02_01 .condition_detail,
  .section_02_02 .condition_detail {
    width: 100%;
  }
  .section_02_01 .item_box,
  .section_02_02 .item_box {
    width: 100%;
    margin-top: 30px;
  }
  .section_02_inner h3 p {
    font-size: 20px;
  }
}

@media (max-width: 980px) {
  .section_02 h2 {
    margin-bottom: 0px;
  }
  .section_02 > p {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

@media (max-width: 700px) {
  .title_theme img {
    width: 80vw;
  }
  .section_02 > p {
    margin-bottom: 100px;
  }
}

@media (max-width: 480px) {
  .section_02_inner {
    padding: 20px;
  }
  .section_02_inner h3 {
    margin-bottom: 10px;
  }
  .section_02_inner h3 > span {
    margin-right: 10px;
  }
  .section_02_inner h3 p {
    font-size: 16px;
  }
  .section_02_inner h4 {
    font-size: 20px;
    margin: 40px auto 20px;
  }
  .item_box {
    padding: 20px;
  }
  .item_list li {
    width: 85px;
    height: 85px;
  }

  .item_list li img {
    width: 60px;
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .section_02 > p {
    font-size: 14px;
  }
}

.section_03 {
  background: url("../images/bg_06.svg") no-repeat right 2% top 20%/35% auto,
    url("../images/bg_07.svg") no-repeat left -5% bottom 20%/40% auto;
}

.section_03_inner h2 {
  margin-bottom: 50px;
  text-align: center;
}

.section_03_inner div {
  margin-bottom: 40px;
}

.section_03_inner div p {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section_03_inner div p span {
  display: inline-block;
}
.section_03_inner div aside ul li {
  text-indent: -1em;
  margin-left: 1em;
  text-align: center;
}

.section_03_inner div aside ul li span {
  display: inline-block;
  text-indent: 0em;
  margin-left: 0em;
}

@media (max-width: 1250px) {
  .section_03 {
    display: block;
    margin-bottom: 120px;
  }
  .section_03_inner {
    width: auto;
    display: block;
    margin-left: 20px;
  }
  .section_03_inner div {
    text-align: center;
    width: calc(100% - 20px);
    margin-bottom: 40px;
  }
}

@media (max-width: 980px) {
  .section_03_inner {
    margin-left: 0px;
  }
}

@media (max-width: 640px) {
  .section_03 {
    margin-bottom: 70px;
  }
  .section_03_inner div p {
    font-size: 20px;
  }
}

.bumonList {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-around;
}

.bumonList__content {
  width: 45%;
  max-width: 500px;
}

.bumonList__txt {
  text-align: center;
  font-family: "marufo", sans-serif;
  font-size: 40px;
  margin-bottom: 30px;
}

.bumonList__img {
  width: 100%;
}

@media (max-width: 1300px) {
  .bumonList__txt {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .bumonList {
    flex-flow: column;
  }
  .bumonList__content {
    width: 92%;
  }
  .bumonList__content + .bumonList__content {
    margin-top: 30px;
  }
  .bumonList__txt {
    font-size: 22px;
  }
}

.section_03_title {
  color: var(--main);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.ouboList {
  text-align: center;
}

.ouboList__content {
  font-size: 20px;
  font-weight: 700;
  color: #444;
}

.ouboList__content span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  display: inline-block;
}

@media (max-width: 640px) {
  .ouboList__content {
    font-size: 16px;
  }
}

.section_04 {
  max-width: 1160px;
  width: 92%;
  margin: 0 auto 70px;
  position: relative;
  text-align: center;
  background: url("../images/bg_08.svg") no-repeat right 0% top 10%/35% auto;
}

.section_04 h2 {
  margin-bottom: 40px;
}

.kijunList {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  gap: 4%;
  margin-bottom: 50px;
}

.kijunList__content {
  position: relative;
  max-width: 224px;
  width: 22%;
}

.kijunList__img {
  width: 100%;
}

.kijunList__img--new {
  position: absolute;
  width: 49%;
  top: -14%;
  left: -14%;
}

.kijun__aside {
  font-size: 26px;
  font-weight: 700;
}

@media (max-width: 600px) {
  .kijunList {
    gap: 4vw 4%;
  }
  .kijunList__content {
    width: 46%;
  }
  .kijun__aside {
    font-size: 18px;
  }
}

.section_05 {
  padding-bottom: 200px;
  background: url("../images/bg_09.svg") no-repeat left 10% top 10%/35% auto,
    url("../images/bg_10.svg") no-repeat right 10% bottom 10%/35% auto;
}

.section_05 h2 {
  text-align: center;
  margin-bottom: 40px;
}

.section_05_content {
  max-width: 1160px;
  width: 94%;
  margin: 0 auto;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
}

.prize__txt {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.prize__aside {
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.prizeList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4%;
  margin: 0 auto;
}

.prizeList__content {
  width: 30%;
  max-width: 258px;
  position: relative;
  text-align: center;
}

.prizeList__img {
  width: 100%;
}

@media (max-width: 767px) {
  .section_05 {
    padding-bottom: 100px;
  }
  .prize__txt {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .prizeList {
    gap: 6vw 10%;
  }
  .prizeList__content {
    width: 45%;
  }
}

.section_06 {
  width: 92%;
  margin: 0 auto 200px;
}

.section_06 > p {
  text-align: center;
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.section_06 > p strong {
  color: #ed2e2e;
  font-size: 24px;
}

.section_06 > a {
  max-width: 730px;
  width: 92%;
  height: 100px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.section_06 > a.applyBtn_01 {
  background-color: var(--main);
  margin-bottom: 50px;
}
.section_06 > a.applyBtn_02 {
  background-color: var(--main);
}
/* .section_06 > a.applyBtn_02 {
  opacity: 0.3;
} */
.section_06 > a.applyBtn_01:hover,
.section_06 > a.applyBtn_02:hover {
  background-color: #b96223;
}
/*.section_06 > a.applyBtn_02:hover {
  background-color: #b86021;
}*/

.end-btn-before {
  text-align: center;
  line-height: 1.5em !important;
  margin-bottom: 15px;
}
.end-btn-before span {
  font-weight: bold;
  line-height: 1.5em !important;
  font-size: 150%;
}
@media (max-width: 980px) {
  .section_06 > p {
    font-size: 24px;
  }
  .section_06 > p strong {
    font-size: 20px;
  }
  .section_06 > a {
    height: 80px;
    font-size: 26px;
  }
}
@media (max-width: 580px) {
  .section_06 {
    margin-bottom: 100px;
  }
  .section_06 > p {
    font-size: 20px;
  }
  .section_06 > p strong {
    font-size: 18px;
  }
  .section_06 > a {
    height: 80px;
    font-size: 20px;
  }
}

.section_07 {
  background-color: #fff;
  padding: 150px 0px;
}

.section_07 .content_inner {
  max-width: 1160px;
  width: 96%;
  margin: 0 auto;
}

.section_07 h2 {
  text-align: center;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}

.section_07 ul {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  display: -ms-flex;
  -ms-flex-flow: wrap;
  -ms-justify-content: space-between;
  display: -webkit-flex;
  -webkit-flex-flow: wrap;
  -webkit-justify-content: space-between;
}

.section_07 ul li {
  width: 18%;
  border-radius: 15px;
  box-sizing: border-box;
  padding: 30px 15px;
  position: relative;
  display: flex;
  flex-flow: wrap;
  display: -ms-flex;
  -ms-flex-flow: wrap;
  display: -webkit-flex;
  -webkit-flex-flow: wrap;
  background-color: #fff;
  border: 1px solid var(--txt);
}

.section_07 ul li:nth-of-type(1)::after,
.section_07 ul li:nth-of-type(2)::after,
.section_07 ul li:nth-of-type(3)::after,
.section_07 ul li:nth-of-type(4)::after {
  content: url("../images/arrow_right.svg");
  position: absolute;
  right: -13px;
  top: calc(50% - 0.5em);
}

.section_07 ul li dl {
  width: 100%;
}

.section_07 ul li dl dt {
  text-align: center;
  font-size: 24px;
  color: var(--main);
  font-weight: 700;
}

.section_07 ul li dl dd {
  height: calc(100% - 50px);
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}

.section_07 ul li dl dd p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4em;
  color: var(--txt);
}

.section_07 ul li dl dd p.center {
  text-align: center;
}

.section_07 ul li dl dd aside {
  font-size: 14px;
  margin-top: 10px;
  color: var(--txt);
}

.section_07 ul li dl dd aside span {
  display: inline-block;
  font-size: inherit;
}

@media (max-width: 800px) {
  .section_07 {
    padding: 70px 0px;
  }
  .section_07 h2 {
    font-size: 32px;
  }
  .section_07 ul {
    display: block;
  }
  .section_07 ul li {
    width: 100%;
  }
  .section_07 ul li:not(:first-child) {
    margin-top: 30px;
  }
  .section_07 ul li:nth-of-type(1)::after,
  .section_07 ul li:nth-of-type(2)::after,
  .section_07 ul li:nth-of-type(3)::after,
  .section_07 ul li:nth-of-type(4)::after {
    transform: rotate(90deg);
    bottom: -20px;
    top: auto;
    right: calc(50% - 0.5em);
  }
  .section_07 ul li dl dd {
    display: block;
  }
  .section_07 ul li dl dd p {
    text-align: center;
  }
  .section_07 ul li dl dd aside {
    text-align: center;
  }
}

.section_08 {
}

.section_08 .content_inner {
  padding: 100px 0px;
}

.section_08 .content_inner > aside {
  text-align: center;
  font-size: 12px;
  margin-bottom: 40px;
}

.section_08 table {
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
}

.section_08 table tr {
  border-bottom: 1px dotted #fff;
}

.section_08 table th,
.section_08 table td {
  padding: 7px 0px;
}

.section_08 table th {
  width: 130px;
}

.section_08 table th span {
  display: block;
  width: 100px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: var(--main);
}

.section_08 table td {
  font-size: 16px;
}

.section_08 table td:nth-of-type(1) {
  width: 130px;
}

@media (max-width: 750px) {
  .section_08 .content_inner {
    padding: 13.33vw 0px;
  }
  .section_08 h2 {
    font-size: 32px;
  }
  .section_08 .content_inner > aside {
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .section_08 table tr {
    display: block;
  }
  .section_08 table th {
    display: block;
    width: 100%;
  }
  .section_08 table th span {
    width: 100%;
    margin-top: 30px;
  }
}

.content_sns {
  background: #f8f6ed;
  overflow: hidden;
  padding: 50px 0;
}

.content_sns .cinner {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  max-width: 890px;
  width: 98%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}

.facebook_wid {
  width: 420px;
  background-color: #f7f7f7;
}

.facebook_wid p {
  background-color: #3b589e;
  width: 100px;
  text-align: center;
  font-size: 0.9em;
  color: #fff;
}

.twitter_wid {
  width: 420px;
  background-color: #f7f7f7;
  display: flex;
  flex-flow: column;
}

.twitter_wid p {
  background-color: #000000;
  width: 100px;
  text-align: center;
  font-size: 0.9em;
  color: #fff;
}

.twitter_wid iframe {
  height: auto !important;
  display: flex;
  flex-grow: 1;
}

.instagram_wid {
  width: 420px;
  background-color: #f7f7f7;
}

.instagram_wid p {
  background-color: #ce2929;
  width: 100px;
  text-align: center;
  font-size: 0.9em;
  color: #fff;
}

.facebook_wid .inner,
.twitter_wid .inner,
.instagram_wid .inner {
  padding: 10px;
  display: flex;
  flex-grow: 1;
}

@media (max-width: 1100px) {
  .content_sns .cinner {
    flex-flow: column;
    align-items: center;
  }
  .facebook_wid {
    margin: 0 auto 20px;
  }
  .twitter_wid {
    margin: 0 auto 30px;
    height: 500px;
  }
}

@media (max-width: 980px) {
  .facebook_wid {
    float: left;
    margin: 0;
  }
  .twitter_wid {
    float: right;
    margin: 0;
  }
}

@media (max-width: 940px) {
  .facebook_wid {
    float: none;
    margin: 0 auto 20px;
  }
  .twitter_wid {
    float: none;
    margin: 0 auto;
  }
}

@media (min-width: 641px) {
  .sns_sp {
    display: none;
  }
}
@media (max-width: 640px) {
  .sns_sp {
    background-color: #eee;
    overflow: hidden;
    display: block;
  }

  .sns_sp li {
    display: block;
    width: 50%;
    padding: 20px 0;
    text-align: center;
    float: left;
  }
  .content_sns {
    display: none;
  }
}

.mainvisual2 {
  height: 400px;
  display: flex;
  flex-flow: wrap;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  margin-bottom: 80px;
}

.mainLogoSub {
  max-width: 400px;
  width: 30.76%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  opacity: 0;
  animation: fade 1s ease-out 0.6s forwards;
}

.mainLogoSub__img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.2);
  filter: blur(30px);
  opacity: 0;
  animation: mainLogo 1s ease-out 1s forwards;
}

.mainLogoSub__egao {
  position: absolute;
  top: -11%;
  left: -10%;
  width: 46%;
  transform: rotate(-10deg) translate(-20%, -30%);
  opacity: 0;
  animation: mainLogoEgao 0.5s ease-out 2s forwards;
}
.mainLogoSub__date {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 25%;
  transform: rotate(-30deg);
  opacity: 0;
  animation: mainLogoDate 0.5s ease-out 2.5s forwards;
}

.mainvisual2 ul {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.mainvisual2 ul li {
  position: absolute;
  opacity: 0;
}

.mainvisual2 ul li:nth-of-type(1) {
  left: 82% !important;
  top: -3% !important;
  width: 18%;
  animation: fade 1s ease-out 0.2s forwards;
}
.mainvisual2 ul li:nth-of-type(2) {
  top: auto !important;
  left: auto !important;
  bottom: 1% !important;
  right: -3% !important;
  width: 16%;
  animation: fade 1s ease-out 0.3s forwards;
}
.mainvisual2 ul li:nth-of-type(3) {
  top: auto !important;
  left: 1% !important;
  bottom: 1% !important;
  width: 19%;
  animation: fade 1s ease-out 0.4s forwards;
}
.mainvisual2 ul li:nth-of-type(4) {
  left: 15% !important;
  top: auto !important;
  bottom: -3%;
  width: 15%;
  animation: fade 1s ease-out 0.5s forwards;
}
.mainvisual2 ul li:nth-of-type(5) {
  left: 31% !important;
  top: -10% !important;
  width: 13%;
  z-index: -1;
  animation: fade 1s ease-out 0.6s forwards;
}
.mainvisual2 ul li:nth-of-type(6) {
  left: 24% !important;
  top: 34% !important;
  width: 11%;
  z-index: -1;
  animation: fade 1s ease-out 0.7s forwards;
}
.mainvisual2 ul li:nth-of-type(7) {
  left: auto !important;
  right: 21% !important;
  top: -13% !important;
  width: 15%;
  z-index: -1;
  animation: fade 1s ease-out 0.8s forwards;
}
.mainvisual2 ul li:nth-of-type(8) {
  top: -13% !important;
  left: 12% !important;
  width: 13%;
  z-index: -1;
  animation: fade 1s ease-out 0.9s forwards;
}
.mainvisual2 ul li:nth-of-type(9) {
  top: 14% !important;
  left: auto !important;
  right: 38% !important;
  width: 8%;
  z-index: -1;
  animation: fade 1s ease-out 1s forwards;
}
.mainvisual2 ul li:nth-of-type(10) {
  left: auto !important;
  right: 17% !important;
  top: 32% !important;
  width: 11%;
  z-index: -1;
  animation: fade 1s ease-out 1.1s forwards;
}
.mainvisual2 ul li:nth-of-type(11) {
  top: auto !important;
  left: auto !important;
  right: 24% !important;
  bottom: 4% !important;
  width: 7%;
  z-index: -1;
  animation: fade 1s ease-out 1.2s forwards;
}
.mainvisual2 ul li:nth-of-type(12) {
  top: auto !important;
  left: 32% !important;
  bottom: 3% !important;
  width: 15%;
  z-index: -1;
  animation: fade 1s ease-out 1.3s forwards;
}

.mainvisual2 ul li img {
  width: 100%;
}

.mainvisual2 ul li:nth-of-type(5) img,
.mainvisual2 ul li:nth-of-type(6) img,
.mainvisual2 ul li:nth-of-type(7) img,
.mainvisual2 ul li:nth-of-type(8) img,
.mainvisual2 ul li:nth-of-type(9) img,
.mainvisual2 ul li:nth-of-type(10) img,
.mainvisual2 ul li:nth-of-type(11) img,
.mainvisual2 ul li:nth-of-type(12) img {
  width: 100%;
  filter: blur(5px) drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.16));
}

@media (max-width: 1800px) {
  .mainvisual2 {
    height: 22.22vw;
  }
}

@media (max-width: 1300px) {
}

@media (max-width: 980px) {
}

@media (max-width: 767px) {
  .mainvisual2 {
    height: 50vw;
    margin-bottom: 15vw;
  }
  .mainLogoSub {
    width: 50%;
  }
  .mainvisual2 ul li:nth-of-type(1) {
    left: 69% !important;
    width: 33%;
  }
  .mainvisual2 ul li:nth-of-type(2) {
    width: 24%;
    bottom: -17% !important;
  }
  .mainvisual2 ul li:nth-of-type(3) {
    width: 27%;
  }
  .mainvisual2 ul li:nth-of-type(4) {
    left: 17% !important;
    bottom: -13%;
  }
  .mainvisual2 ul li:nth-of-type(5) {
    left: 26% !important;
    top: -4% !important;
    width: 18%;
  }
  .mainvisual2 ul li:nth-of-type(6) {
    left: 16% !important;
    top: 25% !important;
    width: 17%;
  }
  .mainvisual2 ul li:nth-of-type(7) {
    right: 34% !important;
    top: 0% !important;
    width: 13% 95.5469px;
  }
  .mainvisual2 ul li:nth-of-type(8) {
    top: -3% !important;
    left: 3% !important;
    width: 16%;
  }
  .mainvisual2 ul li:nth-of-type(9) {
    top: 24% !important;
    right: 35% !important;
    width: 11%;
  }
  .mainvisual2 ul li:nth-of-type(10) {
    right: 9% !important;
    top: 46% !important;
    width: 16%;
  }
  .mainvisual2 ul li:nth-of-type(11) {
    right: 5% !important;
    bottom: 18% !important;
  }
}

@media (max-width: 580px) {
}

.section_09 {
  padding: 100px 0px 180px;
}

.section_09 h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.4em;
}

.section_09 h2 span {
  font: inherit;
  color: inherit;
  display: inline-block;
}

.section_09 > p {
  text-align: center;
  margin-bottom: 70px;
  font-size: 24px;
}

.section_09 > p span {
  display: inline-block;
  font-size: inherit;
}

.section_09_list {
  width: 96%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 2%;
}

.section_09_list li {
  width: 18%;
}

.section_09_list li a {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.section_09_list li a::before {
  content: "";
  background-color: var(--main);
  opacity: 0.3;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: 0.2s all ease-out;
}

.section_09_list li a:hover::before {
  opacity: 0;
}

.section_09_list li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: 0.2s all ease-out;
}
.section_09_list li:nth-of-type(10) a::after {
  background: url("../images/award_movie_01.jpg") no-repeat center/cover;
}
.section_09_list li:nth-of-type(9) a::after {
  background: url("../images/award_movie_02.jpg") no-repeat center/cover;
}
.section_09_list li:nth-of-type(8) a::after {
  background: url("../images/award_movie_03.jpg") no-repeat center/cover;
}
.section_09_list li:nth-of-type(7) a::after {
  background: url("../images/award_movie_04.jpg") no-repeat center/cover;
}
.section_09_list li:nth-of-type(6) a::after {
  background: url("../images/award_movie_05.jpg") no-repeat center/cover;
}
.section_09_list li:nth-of-type(5) a::after {
  background: url("../images/award_movie_06.jpg") no-repeat center/cover;
}
.section_09_list li:nth-of-type(4) a::after {
  background: url("../images/award_movie_07.jpg") no-repeat center/cover;
}
.section_09_list li:nth-of-type(3) a::after {
  background: url("../images/award_movie_08.jpg") no-repeat center/cover;
}
.section_09_list li:nth-of-type(2) a::after {
  background: url("../images/award_movie_09.jpg") no-repeat center/cover;
}

.section_09_list li a:hover:after {
  transform: scale(1.1);
}

.section_09_list li a.nolink {
  pointer-events: none;
}

.section_09_list li a.nolink::before {
  opacity: 0.9;
}

.section_09_list li a p {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  line-height: 1.4em;
  z-index: 2;
  transition: 0.2s all ease-out;
}

.section_09_list li a:hover p {
}

@media (max-width: 1500px) {
  .section_09_list li {
    width: 23%;
  }
}
@media (max-width: 1200px) {
  .section_09_list li {
    width: 31%;
  }
}

@media (max-width: 980px) {
  .section_09_list li a p {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .section_09 {
    padding: 50px 0px 100px;
  }
  .section_09 h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .section_09 > p {
    margin-bottom: 40px;
    font-size: 18px;
  }
  .section_09_list {
    justify-content: space-around;
  }
  .section_09_list li {
    width: 49%;
    margin: 0;
  }
  .section_09_list li a {
    height: 200px;
  }
}

@media (max-width: 520px) {
  .section_09 h2 {
    font-size: 22px;
  }
  .section_09_list li a {
    height: 120px;
  }
  .section_09_list li a p {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  .section_09_list li a p {
    font-size: 14px;
  }
}

.section_10 {
  padding: 90px 0px;
  background-color: var(--main);
}

.section_10 h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0px 10px 40px;
  line-height: 1.4em;
}

.section_10 h2 span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  display: inline-block;
}

.section_10 > p {
  color: #fff;
  text-align: center;
  margin-bottom: 70px;
  font-size: 24px;
}

.section_10 > p span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
}

.section_10 ul {
  max-width: 1160px;
  width: 94%;
  margin: 0 auto;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 20px 2%;
}

.section_10 ul li {
  width: 31%;
}

.section_10 ul li a {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.section_10 ul li a::before {
  content: "";
  background-color: #000;
  opacity: 0.3;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  transition: 0.2s all ease-out;
}

.section_10 ul li a:hover::before {
  opacity: 0.8;
}

.section_10 ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: 0.2s all ease-out;
}
.section_10 ul li:nth-of-type(1) a:after {
  background: url("../images/recipe_img_09.png") no-repeat center/cover;
}
.section_10 ul li:nth-of-type(2) a:after {
  background: url("../images/recipe_img_08.png") no-repeat center/cover;
}
.section_10 ul li:nth-of-type(3) a:after {
  background: url("../images/recipe_img_07.png") no-repeat center/cover;
}
.section_10 ul li:nth-of-type(4) a:after {
  background: url("../images/recipe_img_06.png") no-repeat center/cover;
}
.section_10 ul li:nth-of-type(5) a:after {
  background: url("../images/recipe_img_05.png") no-repeat center/cover;
}
.section_10 ul li:nth-of-type(6) a:after {
  background: url("../images/recipe_img_04.png") no-repeat center/cover;
}
.section_10 ul li:nth-of-type(7) a:after {
  background: url("../images/recipe_img_03.png") no-repeat center/cover;
}
.section_10 ul li:nth-of-type(8) a:after {
  background: url("../images/recipe_img_02.png") no-repeat center/cover;
}
.section_10 ul li:nth-of-type(9) a:after {
  background: url("../images/recipe_img_01.png") no-repeat center/cover;
}

.section_10 ul li a:hover:after {
  transform: scale(1.1);
}

.section_10 ul li a p {
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  line-height: 1.4em;
  z-index: 3;
  transition: 0.2s all ease-out;
}

.section_10 ul li a p span {
  font: inherit;
  color: inherit;
  display: inline-block;
}

.section_10__btn {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 400px;
  height: 80px;
  background-color: #fff;
  font-size: 14px;
  color: var(--main);
  transition: 0.2s background-color ease-out, 0.2s color ease-out;
  margin: 50px auto 0;
}

.section_10__btn:hover {
  opacity: 1;
}

.section_10__btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 7px;
  border-bottom: 1px solid var(--main);
  border-right: 1px solid var(--main);
  transform: skewX(45deg);
  margin-left: 20px;
  transition: 0.2s border-color ease-out;
}

.section_10__btn:hover::after {
  border-color: var(--main);
}

@media (max-width: 980px) {
  .section_10__btn::after {
    font-size: 24px;
  }
}

@media (max-width: 1100px) {
  .section_10 ul li {
    width: 31%;
  }
}

@media (max-width: 767px) {
  .section_10 h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .section_10 > p {
    margin-bottom: 40px;
  }
  .section_10 ul li {
    width: 48%;
  }
}

@media (max-width: 520px) {
  .section_10 h2 {
    font-size: 22px;
  }
  .section_10 ul {
    justify-content: space-between;
  }
  .section_10 ul li a {
    height: 160px;
  }
  .section_10 > p {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .section_10 ul li a {
    height: 120px;
  }
  .section_10__btn {
    font-size: 12px;
  }
}

.section_11 {
  padding: 90px 0px;
}

.section_11 h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0px 10px 40px;
  line-height: 1.4em;
}

.section_11 h2 span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  display: inline-block;
}

.section_11 > p {
  text-align: center;
  margin-bottom: 70px;
  font-size: 24px;
}

.section_11 ul {
  max-width: 1160px;
  width: 94%;
  margin: 0 auto;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.section_11 ul li {
  width: 32%;
}

.section_11 ul li a {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 230px;
  position: relative;
  overflow: hidden;
}

.section_11 ul li a::before {
  content: "";
  background-color: var(--main);
  opacity: 0.3;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: 0.2s all ease-out;
}

.section_11 ul li a:hover::before {
  opacity: 0.8;
}

.section_11 ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: 0.2s all ease-out;
}
.section_11 ul li:nth-of-type(1) a:after {
  background: url("../images/tsukurioki_01@2x.jpg") no-repeat center/cover;
}
.section_11 ul li:nth-of-type(2) a:after {
  background: url("../images/tsukurioki_02@2x.jpg") no-repeat center/cover;
}
.section_11 ul li:nth-of-type(3) a:after {
  background: url("../images/tsukurioki_03@2x.jpg") no-repeat center/cover;
}

.section_11 ul li a:hover:after {
  transform: scale(1.1);
}

.section_11 ul li a p {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  line-height: 1.4em;
  z-index: 2;
  transition: 0.2s all ease-out;
}

@media (max-width: 767px) {
  .section_11 h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .section_11 > p {
    margin-bottom: 40px;
  }
  .section_11 ul li a {
    height: 180px;
  }
  .section_11 ul li a p {
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .section_11 {
    padding: 30px 0px;
  }
  .section_11 h2 {
    font-size: 22px;
  }
  .section_11 ul li {
    width: 100%;
  }
  .section_11 ul li:not(:first-child) {
    margin-top: 20px;
  }
  .section_11 ul li a {
    height: 120px;
  }
  .section_11 > p {
    font-size: 16px;
  }
}

.section_12 {
}

.section_12.searchSite h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0px 10px 40px;
  line-height: 1.4em;
}

.section_12 .content_inner {
  display: flex;
  flex-flow: row-reverse;
  align-items: center;
  /*justify-content: space-around;*/
  display: -ms-flex;
  -ms-flex-flow: row-reverse;
  -ms-align-items: center;
  /*-ms-justify-content: space-around;*/
  display: -webkit-flex;
  -webkit-flex-flow: row-reverse;
  -webkit-align-items: center;
  /*-webkit-justify-content: space-around;*/
  padding-top: 100px;
  margin: 0 auto;
  max-width: 1400px;
  width: 94%;
}

.section_12.searchSite .content_inner {
  padding-top: 0px;
  justify-content: space-between;
}

.section_12 .content_inner img {
  max-width: 400px;
  width: 46%;
}

.section_12 .content_inner div {
  /*max-width: 700px;
	width: 50%;*/
}

.section_12.section_case .content_inner div {
  max-width: 1400px;
  width: 100%;
}

.section_12.searchSite .content_inner > div {
  max-width: 50%;
}

.section_12 .content_inner div h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

.section_12 .content_inner div > p {
  font-size: 24px;
  margin-bottom: 80px;
}

.section_12 .content_inner div a {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  height: 80px;
  background-color: var(--main);
  color: #fff;
  transition: 0.2s background-color ease-out, 0.2s color ease-out;
}

.section_12 .content_inner div a:hover {
  opacity: 1;
}

.section_12 .content_inner div a::after {
  content: "";
  display: block;
  width: 20px;
  height: 7px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: skewX(45deg);
  margin-left: 20px;
  transition: 0.2s border-color ease-out;
}

.section_12 .content_inner div a:hover::after {
  border-color: #fff;
}

@media (max-width: 980px) {
  .section_12 .content_inner div a::after {
    font-size: 24px;
  }
}

@media (min-width: 751px) {
  .section_12 .sp {
    display: none;
  }
}

@media (max-width: 750px) {
  .section_12.searchSite {
    margin-top: 70px;
  }
  .section_12 .content_inner div h2,
  .section_12.searchSite h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .section_12 .content_inner div > p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .section_12 .pc {
    display: none;
  }
  .section_12 .content_inner div,
  .section_12.searchSite .content_inner > div {
    width: 94%;
    margin: 0 auto;
    max-width: none;
  }
  .section_12 .content_inner div h2 {
    text-align: center;
  }
  .section_12 .content_inner img.sp {
    display: block;
    margin: 0 auto 20px;
    width: 90%;
  }
  .section_12 .content_inner div a {
    margin: 0 auto;
  }
}

.section_13 .content_inner {
  padding: 100px 0px 30px;
}

.section_13 h2 {
  color: var(--main);
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.section_13 ul.link_list {
  max-width: 960px;
  width: 94%;
  margin: 0 auto 70px;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  display: -ms-flex;
  -ms-flex-flow: wrap;
  -ms-justify-content: space-between;
  display: -webkit-flex;
  -webkit-flex-flow: wrap;
  -webkit-justify-content: space-between;
}

.section_13 ul.link_list li {
  width: 32%;
  display: flex;
  flex-flow: wrap;
  display: -ms-flex;
  -ms-flex-flow: wrap;
  display: -webkit-flex;
  -webkit-flex-flow: wrap;
}

.section_13 ul.link_list li a {
  display: block;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--main);
}

.section_13 ul.link_list li img {
  margin-bottom: 20px;
  width: 100%;
  max-width: 262px;
}

.section_13 ul.link_list li dl {
}

.section_13 ul.link_list li dl dt {
  font-family: NotoSansMedium, sans-serif;
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.section_13 ul.link_list li dl dt i {
  color: #fff;
  font-size: 18px;
}

.section_13 ul.link_list li dl dd {
  font-size: 16px;
  color: #fff;
}

.section_13 .download_link a {
  color: #111;
}

@media (max-width: 980px) {
  .section_13 ul.link_list li dl dt {
    font-size: 16px;
  }
  .section_13 ul.link_list li dl dd {
    font-size: 14px;
  }
}

@media (max-width: 750px) {
  .section_13 ul.link_list {
    display: block;
    margin-bottom: 0px;
  }
  .section_13 ul.link_list li {
    width: 100%;
  }
  .section_13 ul.link_list li:not(:first-child) {
    margin-top: 20px;
  }
  .section_13 ul.link_list li a {
    width: 100%;
    text-align: center;
  }
}

.result_content {
  max-width: 1200px;
  width: 96%;
  margin: 0 auto 50px;
}

.result_content#dessert {
  padding-top: 60px;
}

@media (max-width: 980px) {
  .result_content#dessert {
    padding-top: 140px;
  }
}

.result_content h3 {
  text-align: center;
  margin-bottom: 100px;
}

.result_content h3 span {
  font-family: "boritanic", sans-serif;
  color: var(--main);
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.result_content h3 div {
  display: flex;
  flex-flow: wrap;
  align-content: center;
  justify-content: center;
  position: relative;
}

.result_content h3 div::before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  border-top: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
  position: absolute;
  left: 0px;
  top: calc(50% - 3px);
  z-index: 1;
}

.result_content h3 div svg {
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 0px 20px;
  font-size: 14px;
}

.result_content#meal h3 div svg {
  max-width: 485px;
  width: 64vw;
}
.result_content#dessert h3 div svg {
  width: 810px;
}

.result_content h3 div svg text.in_txt {
  fill: #fff;
  font-weight: 700;
  font-size: 13.5px;
}
.result_content h3 div svg text.out_txt {
  stroke: var(--main);
  stroke-width: 1;
  stroke-linejoin: round;
  font-weight: 700;
  font-size: 13.5px;
}

.award_list {
  margin-bottom: 200px;
}

#meal .award_list:last-child {
  margin-bottom: 100px;
}

.award_list li {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.award_list li:not(:first-child) {
  margin-top: 50px;
}

.award_list.excellence li:not(:first-child) {
  margin-top: 160px;
}

.award_list li .medal {
  position: absolute;
  left: -15px;
  top: -57px;
  max-width: 393px;
  width: 28%;
}

.award_list li .medal img {
  width: 100%;
}

.award_list li .element_01,
.award_list li .element_03 {
  position: absolute;
  left: 47%;
  top: -2%;
}
.award_list li .element_02,
.award_list li .element_04 {
  position: absolute;
  left: 1%;
  top: 18%;
}

@media (max-width: 1480px) {
  .award_list li .element_01,
  .award_list li .element_03 {
    width: 6%;
  }
  .award_list li .element_02,
  .award_list li .element_04 {
    width: 5%;
  }
}

@media (max-width: 850px) {
  .award_list li .element_01,
  .award_list li .element_03 {
    left: 91%;
    top: -2vw;
    width: 10%;
  }
  .award_list li .element_02,
  .award_list li .element_04 {
    left: 1%;
    top: 20vw;
    width: 10%;
  }
}

.award_list li .cuisine {
  max-width: 470px;
  width: 40%;
}

.award_list.excellence li .cuisine {
  max-width: 620px;
  width: 52%;
}

.award_list li > div {
  max-width: 700px;
  width: 58%;
}

.award_list.excellence li > div {
  max-width: 560px;
  width: 46%;
}

.award_list li > div > span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  padding: 10px;
  line-height: 1em;
  border-radius: 40px;
  background-color: var(--main);
  margin-bottom: 10px;
  min-width: 160px;
  text-align: center;
}

.award_list li > div h5 {
  font-size: 24px;
  font-weight: 700;
  color: var(--main);
  letter-spacing: 0.05em;
}

.award_list li > div h5 span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  display: inline-block;
}
.award_list li > div > span > span.dots {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: inline;
  padding: 0;
  line-height: 0;
  margin: 0;
  background-image: radial-gradient(
    circle at center,
    #fff 20%,
    transparent 20%
  ); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.5em; /* 点の間隔とサイズ調整 */
  padding-top: 0.2em; /* 縦方向の位置調整 */
}
.award_list li > div p {
  font-size: 16px;
  margin-top: 10px;
}

.award_list li > div dl.episode {
  background-color: var(--main);
  padding: 15px;
  margin-top: 20px;
}

.award_list li > div dl.episode dt {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.award_list li > div dl.episode dd {
  font-size: 14px;
  color: #fff;
  line-height: 2em;
}

.award_list li > div dl.comment {
  border: 1px dotted var(--main);
  padding: 15px;
  margin-top: 20px;
}

.award_list li > div dl.comment dt {
  font-size: 16px;
  font-weight: 700;
  color: var(--main);
}

.award_list li > div dl.comment dd {
  font-size: 14px;
  line-height: 2em;
}

.special_award_name {
  margin-bottom: 70px;
  display: flex;
  flex-flow: column;
  align-items: center;
  color: var(--main);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.special_award_name::before {
  content: "";
  display: block;
  background: url("../images/crown.svg") no-repeat center;
  width: 50px;
  height: 32px;
}

.award_name {
  text-align: center;
  margin-bottom: 70px;
  color: var(--main);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 850px) {
  .result_content h3 div svg {
    width: 400px;
    padding: 0px 10px;
  }
  .award_list {
    margin-bottom: 100px;
  }
  .award_list.excellence li {
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 620px;
    margin: 0 auto;
  }
  .award_list li .medal {
    width: 50%;
    left: 0px;
  }
  .award_list.excellence li .cuisine {
    width: 100%;
    max-width: none;
    margin-bottom: 30px;
  }
  .award_list.excellence li > div {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .section_16 {
    margin-bottom: 50px;
  }
  .section_16 h2 {
    margin-bottom: 0px;
    margin-top: 30px;
  }
  .section_16 .localnav ul {
    justify-content: space-between;
  }
  .section_16 .localnav ul li {
    margin: 0;
  }
  .award_list li {
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
  }
  .award_list li .cuisine {
    width: 100%;
    max-width: none;
    margin-bottom: 30px;
  }
  .special_award_name,
  .award_name {
    margin-bottom: 30px;
  }
  .award_list li:not(:first-child),
  .award_list.excellence li:not(:first-child) {
    margin-top: 100px;
  }
  .award_list li > div {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 580px) {
  .result_content h3 {
    margin-bottom: 17.2413vw;
  }
  .award_list li .medal {
    top: -7.2413vw;
  }
}

@media (max-width: 460px) {
  .section_16 {
    margin-bottom: 20px;
  }
  .section_16 h2 {
    font-size: 6.956vw;
  }
  .award_list li .cuisine {
    margin-bottom: 20px;
  }
  .award_list li > div h5 {
    font-size: 20px;
  }
}

.result_content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 70px;
  text-align: center;
  line-height: 1.4em;
}

@media (max-width: 767px) {
  .result_content h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media (max-width: 520px) {
  .result_content h2 {
    font-size: 22px;
  }
}

.js-clingify-placeholder {
  margin-bottom: 70px;
}

.localnav ul {
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

.localnav li {
  width: 22%;
  margin: 0px 20px;
}

.localnav li:first-child {
  min-width: 120px;
}
.localnav li:last-child {
  min-width: 210px;
}
@media (max-width: 480px) {
  .localnav li:first-child {
    margin: 0px 5px 0px 0px;
    min-width: 90px;
  }
  .localnav li:last-child {
    margin: 0px 0px 0px 5px;
    min-width: 170px;
  }
}

.localnav li:nth-of-type(n + 5) {
  margin-top: 15px;
}

.localnav li a {
  font-family: NotoSansMedium, sans-serif;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--main);
  height: 2.5em;
  width: 100%;
  padding: 3px;
  position: relative;
  box-sizing: border-box;
  border-radius: 40px;
  color: var(--main);
  transition: 0.2s color ease-out, 0.1s background-color ease-out;
}

.localnav li a:hover,
.localnav li a.current {
  background-color: var(--main);
  color: #fff;
  opacity: 1;
}

.js-clingify-locked .localnav {
  margin-bottom: 0px;
}

.js-clingify-locked .localnav ul {
  max-width: 100%;
  width: 100%;
  justify-content: space-around;
  padding: 10px 0px;
}

.js-clingify-locked .localnav ul li {
  width: 25%;
  margin-bottom: 0px;
}

.js-clingify-locked .localnav ul li:first-child {
  min-width: 120px;
}

.js-clingify-locked .localnav ul li:last-child {
  min-width: 210px;
}

.js-clingify-locked .localnav ul li:nth-of-type(n + 5) {
  margin-top: 0px;
}

.js-clingify-locked .localnav ul li a {
}

.js-clingify-locked .localnav ul li a::after {
  content: none;
}

.js-clingify-locked .localnav ul::before,
.js-clingify-locked .localnav ul::after {
  content: none;
}

@media (max-width: 980px) {
  .js-clingify-locked .localnav ul li {
    width: 24%;
    margin: 0 auto;
  }
  .js-clingify-locked .localnav ul li:nth-of-type(n + 5) {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .js-clingify-locked .localnav ul li:first-child {
    margin: 0px 5px 0px 0px;
    min-width: 90px;
  }
  .js-clingify-locked .localnav ul li:last-child {
    margin: 0px 0px 0px 5px;
    min-width: 170px;
  }
}

/*@media (max-width: 420px) {
	.localnav li, .localnav ul::before, .localnav ul::after {
		margin: 0px 5px 10px;
		width: 140px;
	}
}*/

.apply {
  max-width: 1100px;
  width: 92%;
  margin: 0 auto;
}

.apply h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.4em;
}

.apply > p {
  text-align: center;
  margin-bottom: 70px;
  font-size: 24px;
}

.apply > p span {
  font-size: inherit;
  font-weight: 700;
  color: #d51919;
}

.applyList {
  margin-bottom: 70px;
}

.applyList__content {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.applyList__content:not(:first-child) {
  margin-top: 70px;
}

.applyList__inner {
  width: 60%;
}

.applyList__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.applyList__txt {
  font-size: 16px;
}

.applyList__txtB {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.applyList__list {
  margin-bottom: 1em;
}

.applyList__list--txt {
  font-size: 16px;
  line-height: 1.6em;
  text-indent: -1em;
  margin-left: 1em;
}

.applyList__img {
  max-width: 400px;
  width: 35%;
}

.applyList__img img {
  max-width: 100%;
  border: 1px solid #707070;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
}

.applyList__img img:not(:first-child) {
  margin-top: 20px;
}

.applyBtn {
  width: 300px;
  height: 80px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  border-radius: 5px;
  font-size: 18px;
  color: #fff;
  margin: 0 auto;
  /* opacity: 0.3; */
}
/*.applyBtn {
  width: 300px;
  height: 80px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  border-radius: 5px;
  font-size: 18px;
  color: #fff;
  margin: 0 auto;
}*/
/* .applyBtn:hover {
  background-color: var(--main);
} */
.applyBtn:hover {
  background-color: #b86021;
}
.applyAttend {
  background-color: #f8f6ed;
  padding: 40px 20px;
  margin: 140px 0px;
}

.applyAttend__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--txt);
}

.applyAttend__list--content {
  font-size: 20px;
  text-indent: -1em;
  margin-left: 1em;
  color: var(--txt);
}

@media (max-width: 767px) {
  .apply h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .section_09 > p {
    font-size: 18px;
  }
  .applyList__title {
    font-size: 20px;
  }
  .applyList__txt {
    font-size: 14px;
  }
  .applyList__txtB {
    font-size: 16px;
  }
  .applyAttend__title {
    font-size: 20px;
  }
  .applyAttend__list--content {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .apply h2 {
    font-size: 22px;
  }
  .apply > p {
    font-size: 18px;
  }
  .applyList__content {
    flex-flow: column;
    align-items: center;
  }
  .applyList__inner {
    margin-bottom: 20px;
  }
  .applyList__inner,
  .applyList__img {
    width: 100%;
  }
}
