@charset "UTF-8";
:root {
  --color-red: #f37830;
  --color-brown: #55190d;
  --color-yl: #fdd300;
  --color-green: #75a52e;
  --color-blue: #242265;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
:focus {
  outline: 0 !important;
  text-decoration: none !important;
}
html,
body {
  margin: 0 !important;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
input,
textarea {
  max-width: 100%;
  font-size: inherit;
  font-family: inherit;
}
caption,
th,
td {
  text-align: left;
  padding: 5px 10px;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
a img {
  border: none;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
time {
  display: block;
}
a {
  color: #191919;
  text-decoration: none;
}
a:hover,
a:active {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
span {
  margin: 0px;
  padding: 0px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}
figure {
  max-width: 100%;
}
.color-red {
  color: var(--color-red);
}
.bg-brown {
  background: var(--color-brown);
}
.color-brown {
  color: var(--color-brown);
}
.color-blue {
  color: var(--color-blue);
}
.color-green {
  color: var(--color-green);
}
.color-yl {
  color: var(--color-yl) !important;
}
/*page
----------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  background-color: #fff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  font-weight: normal;
  color: var(--color-blue);
  text-decoration: none;
  line-height: 1.7;
  position: relative;
}
.page-curry-award-8th {
  color: var(--color-blue);
}
.fl {
  float: left;
}
.fr {
  float: right;
}

.bold {
  font-weight: bold;
}
.mobile {
  display: none;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.relative {
  position: relative;
}
table td,
table th {
  border: 1px solid #000000;
  padding: 10px;
  vertical-align: middle;
  width: auto;
}
input,
textarea {
  border: 1px solid #000000;
  padding: 3px 10px;
}
a:hover img {
  opacity: 0.8;
}
.container {
  max-width: 1000px;
  padding: 0 15px;
  margin: 0 auto;
}
.icon-dot {
  position: relative;
  padding-left: 25px;
}
.icon-dot:before {
  content: "";
  position: absolute;
  background: url(../img/icon-dot.png) center no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.icon-arrow {
  position: relative;
  padding-right: 20px;
}
.icon-arrow:before {
  content: "";
  position: absolute;
  background: url(../img/icon-arrow.png) center no-repeat;
  background-size: 23px;
  width: 23px;
  height: 23px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.bg-yellow {
  background: #fdd300;
}
.bg-black {
  background: #000;
}
.text-red {
  color: var(--color-red);
}
.d-block {
  display: block;
}
.btn-animation.btn-ft {
  background: var(--color-blue);
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  border-radius: 30px;
}
.btn-animation {
  padding: 8px 30px;
  color: var(--color-yl);
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  border: 1px solid var(--color-blue);
  background: var(--color-blue);
  border-radius: 8px;
  font-size: 18px;
}
.btn-animation:before {
  -webkit-transition: right 0.6s cubic-bezier(0.46, 0.05, 0.02, 0.99);
  display: block;
  z-index: 2;
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background-color: #32241194;
  content: "";
  pointer-events: none;
  transition: right 0.6s cubic-bezier(0.46, 0.05, 0.02, 0.99);
}
.btn-animation > .wrap-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.btn-animation span {
  z-index: 3;
  position: relative;
  overflow: hidden;
}
.btn-animation:hover span {
  color: #fff;
}
.btn-animation:hover::before {
  -webkit-transition: right 0.5s cubic-bezier(0.46, 0.05, 0.02, 0.99);
  right: 0;
  /*    border-radius: 10px;*/
  transition: right 0.5s cubic-bezier(0.46, 0.05, 0.02, 0.99);
}

/*header*/
.banner-page {
  display: block;
  margin: auto;
}
.img-wave {
  max-width: 152px;
}
.desc-award h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
}
.cnt-desc-award {
  font-size: 18px;
}
.wrap-cnt-header {
  padding: 60px 0;
  background: #fdd300;
}
.bloc-scroll {
  background: var(--color-blue);
  padding: 30px 0 20px 0;
  text-align: center;
}
.bloc-scroll .item-scroll {
  padding: 7px 0;
  background: #fff;
  color: #231f20;
  font-weight: bold;
  border-radius: 5px;
  width: 259px;
  display: inline-block;
  position: relative;
  font-size: 20px;
  margin-bottom: 10px;
}
.bloc-scroll .item-scroll:hover {
  transition: all 0.1s linear;
  opacity: 0.9;
}
.tit-header {
  font-size: 36px;
  color: #f4ecde;
  text-align: center;
}
.icon-number {
  max-width: 90px;
  position: absolute;
  top: -20px;
  left: 0;
}
.product-award {
  background: #fff;
  padding: 23px;
}
.award-1 {
  padding: 80px 35px 40px 125px;
}
.list-award-2022 .award-1 {
  padding: 35px;
}
.list-award-2022 .product-award.award-1 .l-award {
  margin-top: 0;
}
.award-1 .icon-number {
  max-width: 90px;
  position: absolute;
  top: -55px;
  left: -107px;
}
.wrap-list-product .product-award {
  padding: 43px 20px 45px 20px;
  border-radius: 8px;
}
.product-award.award-1 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  /* box-shadow: 7px 4px 17px #888888b8;*/
  justify-content: space-between;
  border-radius: 8px;
}
.product-award.award-1 .l-award {
  width: 30%;
  position: relative;
  text-align: center;
}
#sec-award-2 .product-award.award-1 .l-award {
  margin-top: 0px;
}
.list-award-2022 .product-award.award-1 .l-award {
  width: 40%;
}
.list-award-2022 .product-award.award-1 .r-award {
  width: calc(60% - 50px);
}
.product-award.award-1 .r-award {
  width: calc(70% - 20px);
  margin-top: 20px;
}
.list-note li {
  position: relative;
  padding: 0 0 4px 20px;
  border-bottom: 1px dotted var(--color-red);
}
.list-note li.no-dot {
  padding-left: 0;
  border-bottom: none;
}
.list-note li:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--color-red);
  border-radius: 50%;
  top: 8px;
  left: 5px;
}
.list-note li.no-dot:before {
  display: none;
}

.list-note li:not(:last-child) {
  margin-bottom: 10px;
}
.product-award .l-award {
  position: relative;
}
.cate {
  font-size: 18px;
}
.tit-award {
  font-size: 28px;
  line-height: 1.5;
}
.desc-product {
  font-size: 18px;
  margin-top: 10px;
}
.tit-bloc-note {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.bloc-note {
  padding: 15px 20px;
  background: #fff7d2;
  border-radius: 10px;
  margin: 25px 0 34px 0;
}
.wrap-list-product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wrap-list-product > div {
  width: calc(100% / 2 - 10px);
  background: #fff;
  border-radius: 8px;
  /* box-shadow: 7px 4px 17px #888888b8;*/
}

.wrap-list-product .r-award {
  margin-top: 15px;
  margin-bottom: 20px;
}
.wrap-list-product .r-award .bloc-note {
  margin-bottom: 0;
}
.item-product .wrap-btn-award {
  /*position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);*/
  text-align: center;
}
.item-product {
  position: relative;
}
.thumb-main {
  max-width: 100%;
}
.thumb-child {
  max-width: 223px;
}

.img-product-2 {
  max-width: 168px;
}
.img-product-3 {
  max-width: 186px;
}

.img-product-5 {
  max-width: 159px;
}
.img-product-6 {
  max-width: 184px;
}
.img-product-8 {
  max-width: 200px;
}
.img-product-9 {
  max-width: 197px;
}
/*

.product-award.award-1 .l-award .img-product-1 {
    max-width: 115px;
}
.wrap-list-product .l-award .img-product-2{
	max-width: 110px;
}
.wrap-list-product .l-award .img-product-3{
	max-width: 61px;
}
.img-product-4{
	max-width: 144px;
}
.img-product-5{
	max-width: 88px;
}
.img-product-6{
	max-width: 98px;
}
.img-product-7{
	max-width: 165px;
}
.img-product-8{
	max-width: 101px;
}
.img-product-9{
	max-width: 111px;
}*/
.footer-lp-6th-curry {
  background: var(--color-yl);
  padding: 60px 25px 40px 25px;
}
.wrap-cnt-ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright {
  font-size: 12px;
}
.box-tit-sec {
  padding: 90px 0 160px 0;
}
.wrap-cnt-sec {
  margin-top: -120px;
}

#sec-award-1 .box-tit-sec {
  background: var(--color-green);
}
#sec-award-2 .box-tit-sec {
  background: var(--color-red);
}
#sec-award-3 .box-tit-sec {
  background: var(--color-blue);
}
.tit-sec-product {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.pd-section {
  padding-bottom: 120px;
}
#sec-award-2022 {
  padding-bottom: 1px;
  background: var(--color-yl);
}
.box-thum {
  max-width: 176px;
  margin-bottom: 25px;
  position: relative;
}
.thumb-product-2022 {
  max-width: 176px;
}
.list-award-2022 .award-1 .icon-number {
  max-width: 156px;
  top: -14px;
  left: -14px;
}
.list-award-2022 .product-award.award-1 {
  margin-bottom: 40px;
}
.icon-product-child {
  position: absolute;
  top: 50%;
  right: -330px;
  transform: translateY(-50%);
  max-width: 360px;
}
.list-award-2022 .wrap-btn-award {
  margin-top: 32px;
}
.product-award.award-1 {
  margin-bottom: 20px;
}
.box-tit-2022 {
  background: #802588;
}
.box-tit-2022 img {
  display: block;
  margin: auto;
}
.sec-intro {
  background: var(--color-brown);
  padding: 90px 0 120px 0;
}
.wrap-pro-intro {
  margin-top: 50px;
  background: #fff;
  padding: 25px 40px 45px 40px;
  border-radius: 10px;
}
.box-pro-intro {
  display: flex;
  gap: 35px;
}
.item-pro-intro {
  width: 50%;
}
.item-pro-intro.cont {
  margin-top: 30px;
}
.note-text {
  font-size: 12px !important;
  margin-top: 35px;
}
.item-pro-intro p {
  font-size: 18px;
  color: var(--color-brown);
}
.btn-popup-intro{
    margin-top: 55px;
}
.btn-curry{
    margin-top: 10px;
}
.btn-curry:hover img{
    opacity: 1 !important;
}
.btn-popup-intro,
.btn-curry {
  font-size: 18px;
  font-weight: bold;
  background: #fff;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  color: #191919 !important;
  width: 560px;
}
.btn-popup-intro img,
.btn-curry img {
  width: 25px;
  position: relative;
  top: -2px;
}
.box-popup-intro {
  position: fixed;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.9s ease;
  max-width: 1000px;
  width: 100%;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}
.box-popup-intro.show {
  opacity: 1;
  z-index: 99999;
  animation: anishowpopup 0.5s ease forwards;
}
.box-cont-popup {
  position: relative;
  background: #fff;
  padding: 40px 40px 10px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
.box-cont-popup::after {
  content: "";
  display: block;
  height: 20px;
}
.cont-popup .cont-dt {
  margin-top: 25px;
  font-size: 18px;
  text-align: left;
}

.tit-popup-intro {
  font-size: 25px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 25px;
}
.close-popup {
  max-width: 25px;
  position: absolute;
  right: 35px;
  top: 36px;
  cursor: pointer;
}
.bg-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  z-index: -1;
  opacity: 0.8;
  cursor: pointer;
  opacity: 0;
  transform: 0.5s;
}
.bg-popup.show {
  z-index: 999;
  opacity: 0.3;
}

@media screen and (max-width: 1000px) {
  .box-popup-intro {
    width: calc(100% - 30px);
  }
}

@media screen and (max-width: 991px) {
  .icon-product-child {
    max-width: 225px;
    right: -170px;
  }
}
@media screen and (max-width: 980px) {
  .tit-award {
    font-size: 21px;
  }
  .desc-product {
    font-size: 15px;
  }
  .cate {
    font-size: 16px;
  }
  /*.product-award.award-1 .l-award{
		width: 40%;
	}
	.product-award.award-1 .r-award {
	    width: 60%;
	}*/
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  .product-award.award-1,
  .wrap-list-product,
  .wrap-cnt-ft {
    flex-direction: column;
  }
  .product-award.award-1 > div,
  .wrap-list-product > div {
    width: 100% !important;
  }
  .wrap-list-product > div:not(:last-child) {
    margin-bottom: 20px;
  }
  .tit-header {
    font-size: 30px;
  }
  .bloc-note {
    padding: 10px;
    margin: 25px 0 20px 0;
  }
  .icon-number {
    max-width: 70px;
  }
  .header-sec {
    padding: 40px 0 150px 0;
  }
  .tit-award {
    font-size: 18px;
  }
  .cate {
    font-size: 15px;
  }
  .product-award.award-1 .l-award {
    margin-bottom: 15px;
    margin-top: 0;
  }
  #sec-award-2 .product-award.award-1 .l-award {
    margin-top: 0;
  }
  #sec-award-2 .award-1 .icon-number {
    top: -20px;
  }
  .award-1 .wrap-btn-award.text-right {
    text-align: center;
  }
  .wrap-cnt-ft .copyright {
    margin-bottom: 10px;
  }
  .desc-product.desc-product-6 {
    margin-top: 15px;
  }
  .thumb-main {
    max-width: 185px;
  }
  .award-1 .icon-number {
    max-width: 70px;
    left: 0;
    top: -20px;
  }
  .award-1 {
    padding: 40px 20px 40px 20px;
  }
  .box-tit-sec {
    padding: 45px 0 160px 0;
  }
  #sec-award-3 {
    padding-bottom: 80px;
  }
  .list-award-2022 .award-1 .icon-number {
    max-width: 90px;
  }
  .product-award.award-1 {
    margin-bottom: 20px;
  }
  #sec-award-1 .wrap-list-product .item-product:nth-child(2) .r-award,
  #sec-award-2 .wrap-list-product .item-product:nth-child(1) .r-award,
  #sec-award-3 .wrap-list-product .item-product:nth-child(2) .r-award {
    margin-bottom: 20px;
  }
  .cnt-desc-award {
    font-size: 16px;
  }
  .desc-award h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .wrap-cnt-header {
    padding: 30px 0;
  }
  .tit-sec-product {
    font-size: 30px;
  }
  .footer-lp-6th-curry {
    padding: 40px 15px;
  }
  .box-pro-intro {
    flex-direction: column;
    gap: 20px;
  }
  .item-pro-intro {
    width: 100%;
  }
  .wrap-pro-intro {
    padding: 25px 15px;
  }
  #header-lp-curry .logo {
    right: 20px;
  }

  .product-award.award-1 .r-award,
  .item-pro-intro.cont {
    margin-top: 0;
  }
  .cont-popup {
    flex-direction: column;
  }
  .cont-popup .thumb,
  .cont-popup .cont-dt {
    width: 100%;
  }
  .cont-popup .thumb img {
    max-width: 400px;
    width: 100%;
  }
  .tit-popup-intro {
    font-size: 20px;
    margin-right: 30px;
  }
  .cont-dt {
    height: auto;
    overflow-y: visible;
    padding-right: 15px;
  }
  .box-cont-popup {
    padding: 15px;
  }
  .box-cont-popup::after {
    height: 30px;
  }
  .btn-popup-intro,
  .btn-curry {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .close-popup{
    top: 20px;
    right: 20px;
  }
}
/*end 767*/
@media screen and (max-width: 475px) {
  .icon-product-child {
    max-width: 120px;
    right: -57px;
  }
}
