@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
  font-size: 1.8018018018vw;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

@media (min-width: 768px) {
  html {
    font-size: min(1vw, 62.5%);
    scroll-padding-top: 5rem;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: min(0.8064516129vw, 62.5%);
    scroll-padding-top: 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

:where(video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
  vertical-align: middle;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(button) {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(ul, ol) {
  list-style: none;
}

:where(a) {
  text-decoration: none;
  color: currentColor;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  text-align: center;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

img {
  max-width: 100%;
  height: auto;
}

.timerHidden {
  display: none;
}

.timerVisible {
  display: block;
}

@media screen and (min-width: 768px) {
  .xmas {
    display: flex;
    align-items: flex-start;
  }
}

#chatplusview, chat {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .heading {
    position: absolute;
    top: 5rem;
    right: 0;
    width: 42rem;
  }
}
@media screen and (min-width: 1000px) {
  .heading {
    top: 0;
    right: 30%;
  }
}
.heading .timerHidden, .heading .timerVisible {
  background-color: #FFA300;
}
.heading p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.2;
  padding-inline: 2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  height: 7rem;
}
@media screen and (min-width: 768px) {
  .heading p {
    font-size: 1.8rem;
    padding-inline: 1.5rem;
    height: 5rem;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #D8D8D8;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5rem;
    width: 42rem;
    left: auto;
    right: 0;
    position: fixed;
  }
}
@media screen and (min-width: 1000px) {
  .header {
    display: none;
  }
}
.header_logo a {
  display: block;
  padding: 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .header_logo a {
    padding: 0 1.9rem;
  }
}
.header_logo a img {
  width: 20.2rem;
}
@media screen and (min-width: 768px) {
  .header_logo a img {
    width: 15.3rem;
  }
}
.header_btn {
  width: 7rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .header_btn {
    width: 5rem;
    height: 5rem;
  }
}
.header_btn span {
  width: 3.7rem;
  height: 2px;
  background-color: #F24607;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header_btn span {
    width: 2.8rem;
  }
}
.header_btn span:nth-child(1) {
  transform: translateY(-0.9rem);
}
@media screen and (min-width: 768px) {
  .header_btn span:nth-child(1) {
    transform: translateY(-0.7rem);
  }
}
.header_btn span:nth-child(3) {
  transform: translateY(0.9rem);
}
@media screen and (min-width: 768px) {
  .header_btn span:nth-child(3) {
    transform: translateY(0.7rem);
  }
}
.header_btn.active span:nth-child(1) {
  transform: rotate(30deg) translateY(2px);
}
.header_btn.active span:nth-child(2) {
  opacity: 0;
}
.header_btn.active span:nth-child(3) {
  transform: rotate(-30deg) translateY(-2px);
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  background-color: #D8D8D8;
  padding-top: 7rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .drawer {
    width: 42rem;
    left: auto;
    right: 0;
    padding-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .drawer {
    width: 30%;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: visible !important;
    position: sticky;
  }
}
@media screen and (min-width: 768px) {
  .drawer::-webkit-scrollbar {
    width: 3px;
  }
}
@media screen and (min-width: 768px) {
  .drawer::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 3px;
  }
}
@media screen and (min-width: 768px) {
  .drawer::-webkit-scrollbar-thumb {
    background: #2b2b2b;
    border-radius: 3px;
  }
}
.drawer.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.drawer_inner {
  padding: 7.5rem 4rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .drawer_inner {
    padding: 3rem 3rem 8rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .drawer_inner {
    padding: 3rem 8.5% 8rem;
    max-width: 44rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .drawer_inner nav {
    margin-top: auto;
  }
}
.drawer_nav {
  padding-left: 6.5rem;
}
@media screen and (min-width: 768px) {
  .drawer_nav {
    padding-left: 4.9rem;
    padding-bottom: 5rem;
  }
}
.drawer_nav a {
  display: block;
  font-size: 3.1rem;
  font-weight: 500;
  color: #F24607;
  padding-block: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .drawer_nav a {
    font-size: 2.4rem;
    padding-block: 1.1rem;
  }
}
.drawer_nav a:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-color: #007B40;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 0.75rem);
  right: calc(100% + 1.5rem);
  opacity: 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .drawer_nav a:before {
    width: 1.1rem;
    height: 1.1rem;
    top: calc(50% - 0.55rem);
    right: calc(100% + 1.1rem);
  }
}
.drawer_nav a.active {
  color: #007B40;
}
.drawer_nav a.active:before {
  opacity: 1;
}
@media (hover) {
  .drawer_nav a:hover {
    color: #007B40;
    opacity: 1;
  }
  .drawer_nav a:hover:before {
    opacity: 1;
  }
}
.drawer_link {
  border-top: 2px solid #fff;
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .drawer_link {
    margin-top: auto;
  }
}
.drawer_link li {
  border-bottom: 2px solid #fff;
}
.drawer_link li a {
  display: grid;
  grid-template-columns: 9.1rem 1fr 2.7rem;
  column-gap: 2.8rem;
  align-items: center;
  padding: 2.8rem 1.3rem 2.8rem 2.1rem;
}
@media screen and (min-width: 768px) {
  .drawer_link li a {
    grid-template-columns: 6.9rem 1fr 2rem;
    column-gap: 2.1rem;
    padding: 1.6rem 1rem 1.6rem 1.6rem;
  }
}
.drawer_link li a figure img {
  width: 100%;
}
.drawer_link li a p {
  display: grid;
  row-gap: 0.8rem;
  color: #F24607;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .drawer_link li a p {
    row-gap: 0.6rem;
  }
}
.drawer_link li a p strong {
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .drawer_link li a p strong {
    font-size: 1.9rem;
  }
}
.drawer_link li a p span {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .drawer_link li a p span {
    font-size: 1.4rem;
  }
}
.drawer_link li a:after {
  content: "";
  width: 100%;
  aspect-ratio: 1;
  background: url(../img/xmas/arrow_green.svg) no-repeat center/100% auto;
  transition: 0.3s;
}
@media (hover) {
  .drawer_link li a:hover:after {
    background-image: url(../img/xmas/arrow_green-ov.svg);
  }
  .drawer_link li a:hover p {
    color: #007B40;
  }
}

.kv {
  height: calc(100dvh - 14rem);
}
@media screen and (min-width: 768px) {
  .kv {
    height: 100dvh;
    width: calc(100% - 42rem);
    position: sticky;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 1000px) {
  .kv {
    width: calc(100% - 42rem - 30%);
  }
}
.kv_wrap {
  position: relative;
  height: 100%;
}
.kv_anime {
  height: 100%;
}
.kv_anime .splide__track, .kv_anime .splide__list {
  height: 100%;
}
.kv_anime img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kv_ttl {
  position: absolute;
  bottom: 4.2rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .kv_ttl {
    bottom: 3.2rem;
    font-size: 4rem;
  }
}
.kv_logo {
  display: none;
}
@media screen and (min-width: 1000px) {
  .kv_logo {
    display: block;
    position: absolute;
    top: 2.66rem;
    left: 3.6rem;
  }
}
.kv_logo img {
  width: 21.6rem;
}

@media screen and (min-width: 768px) {
  .main {
    width: 42rem;
    padding-top: 10rem;
  }
}
@media screen and (min-width: 1000px) {
  .main {
    padding-top: 5rem;
  }
}

.lead {
  background: url(../img/xmas/main_bg.webp) no-repeat center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50.5rem;
  color: #fff;
  padding-inline: 5.7rem;
}
@media screen and (min-width: 768px) {
  .lead {
    min-height: 38.4rem;
    padding-inline: 4.3rem;
  }
}
.lead h2 {
  font-size: 4.9rem;
  font-weight: 700;
  line-height: 1.36;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lead h2 {
    font-size: 3.7rem;
  }
}
.lead p {
  font-size: 1.8rem;
  line-height: 1.88;
  margin-top: 4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .lead p {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
}

.inner {
  padding: 8rem 5.7rem 10.5rem;
}
@media screen and (min-width: 768px) {
  .inner {
    padding: 6.1rem 4.3rem 7.98rem;
  }
}

.article_ttl {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .article_ttl {
    row-gap: 0.76rem;
    margin-bottom: 3rem;
  }
}
.article_ttl span {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #F24607;
}
@media screen and (min-width: 768px) {
  .article_ttl span {
    font-size: 3.4rem;
  }
}
.article_ttl strong {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #007B40;
}
@media screen and (min-width: 768px) {
  .article_ttl strong {
    font-size: 1.8rem;
  }
}

#ranking {
  background-color: #F2F2F2;
}

.item_list li {
  position: relative;
}
.item_list li:not(:last-child) {
  padding-bottom: 8rem;
  margin-bottom: 6rem;
  border-bottom: 2px solid #007B40;
}
@media screen and (min-width: 768px) {
  .item_list li:not(:last-child) {
    padding-bottom: 6rem;
    margin-bottom: 4.5rem;
  }
}
.item_list li figure {
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .item_list li figure {
    margin-bottom: 3.4rem;
  }
}
.item_list li figure img {
  width: 100%;
}
.item_list li h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.item_list li h3 span {
  color: #F24607;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .item_list li h3 span {
    font-size: 1.8rem;
  }
}
.item_list li h3 strong {
  color: #007B40;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .item_list li h3 strong {
    font-size: 1.8rem;
  }
}
.item_list li .price {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2.7rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .item_list li .price {
    column-gap: 2rem;
    margin-bottom: 1.1;
  }
}
.item_list li .price p {
  font-size: 2.7rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .item_list li .price p {
    font-size: 2rem;
  }
}
.item_list_txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.88;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .item_list_txt {
    font-size: 1.4rem;
    margin-top: 1.9rem;
  }
}
.item_list_icon {
  position: absolute;
  top: -3.2rem;
  right: -4rem;
}
@media screen and (min-width: 768px) {
  .item_list_icon {
    top: -2.4rem;
    right: -3rem;
  }
}
.item_list_icon img {
  width: 12rem;
}
@media screen and (min-width: 768px) {
  .item_list_icon img {
    width: 9.1rem;
  }
}
.item_list dl {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .item_list dl {
    margin-top: 3rem;
  }
}
.item_list dl dt {
  position: relative;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 768px) {
  .item_list dl dt {
    margin-bottom: 0.9rem;
  }
}
.item_list dl dt::before {
  content: "";
  width: 100%;
  height: 3px;
  border-top: 3px dotted #fff;
  position: absolute;
  top: calc(50% - 1.5px);
  left: 0;
}
.item_list dl dt span {
  background-color: #007B40;
  font-size: 2.4rem;
  font-weight: 700;
  padding-inline: 2rem;
  display: inline-block;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .item_list dl dt span {
    font-size: 1.8rem;
    padding-inline: 1.5rem;
  }
}
.item_list dl dd {
  padding-inline: 2rem;
}
@media screen and (min-width: 768px) {
  .item_list dl dd {
    padding-inline: 1.5rem;
    row-gap: 1.9rem;
  }
}
.item_list dl dd div {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 3rem;
  align-items: center;
  padding-block: 1.2rem;
}
@media screen and (min-width: 768px) {
  .item_list dl dd div {
    padding-block: 0.9rem;
    column-gap: 2.2rem;
  }
}
.item_list dl dd div p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .item_list dl dd div p {
    font-size: 1.8rem;
  }
}

.link_btn-orange {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.7rem 4rem 0.7rem 2.7rem;
  border-radius: 3rem;
  position: relative;
  background-color: #F24607;
  border: 1px solid #F24607;
  color: #fff;
  letter-spacing: 0.05em;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .link_btn-orange {
    font-size: 1.2rem;
    padding: 0.8rem 3rem 0.5rem 2rem;
  }
}
.link_btn-orange:after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/xmas/btn_arrow.svg) no-repeat center/100% auto;
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 1.2rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .link_btn-orange:after {
    width: 1rem;
    height: 1rem;
    top: calc(50% - 0.5rem);
    right: 0.9rem;
  }
}

.link_btn-green {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.7rem 4rem 0.7rem 2.7rem;
  border-radius: 3rem;
  position: relative;
  background-color: #fff;
  border: 1px solid #007B40;
  color: #007B40;
  letter-spacing: 0.05em;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .link_btn-green {
    font-size: 1.2rem;
    padding: 0.8rem 3rem 0.5rem 2rem;
  }
}
.link_btn-green:after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/xmas/btn_arrow_gr.svg) no-repeat center/100% auto;
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 1.2rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .link_btn-green:after {
    width: 1rem;
    height: 1rem;
    top: calc(50% - 0.5rem);
    right: 0.9rem;
  }
}

.link_btn-white {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.7rem 4rem 0.7rem 2.7rem;
  border-radius: 3rem;
  position: relative;
  background-color: #fff;
  border: 1px solid #F24607;
  color: #F24607;
  letter-spacing: 0.05em;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .link_btn-white {
    font-size: 1.2rem;
    padding: 0.8rem 3rem 0.5rem 2rem;
  }
}
.link_btn-white:after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/xmas/btn_arrow_og.svg) no-repeat center/100% auto;
  position: absolute;
  top: calc(50% - 0.7rem);
  right: 1.2rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .link_btn-white:after {
    width: 1rem;
    height: 1rem;
    top: calc(50% - 0.5rem);
    right: 0.9rem;
  }
}

@media (hover) {
  a.link_btn-orange:hover {
    color: #F24607;
    background-color: #fff;
  }
  a.link_btn-orange:hover:after {
    background-image: url(../img/xmas/btn_arrow_og.svg);
  }
}
@media (hover) {
  a.link_btn-green:hover {
    color: #fff;
    background-color: #007B40;
    border-color: #fff;
  }
  a.link_btn-green:hover:after {
    background-image: url(../img/xmas/btn_arrow.svg);
  }
}
@media (hover) {
  a.link_btn-white:hover {
    color: #fff;
    background-color: #F24607;
    border-color: #fff;
  }
  a.link_btn-white:hover:after {
    background-image: url(../img/xmas/btn_arrow.svg);
  }
}
@media (hover) {
  a:hover .link_btn-orange {
    color: #F24607;
    background-color: #fff;
  }
  a:hover .link_btn-orange:after {
    background-image: url(../img/xmas/btn_arrow_og.svg);
  }
  a:hover .link_btn-green {
    color: #fff;
    background-color: #007B40;
    border-color: #fff;
  }
  a:hover .link_btn-green:after {
    background-image: url(../img/xmas/btn_arrow.svg);
  }
  a:hover .link_btn-white {
    color: #fff;
    background-color: #F24607;
    border-color: #fff;
  }
  a:hover .link_btn-white:after {
    background-image: url(../img/xmas/btn_arrow.svg);
  }
}

#cake {
  background-color: #F24607;
  color: #fff;
}
#cake .article_ttl span, #cake .article_ttl strong {
  color: #fff;
}
#cake .item_list li h3 span, #cake .item_list li h3 strong {
  color: #fff;
}
#cake .item_list li {
  border-bottom-color: #fff;
}

.article_img img {
  width: 100%;
}

.bnr_btn {
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .bnr_btn {
    margin-top: 4.2rem;
  }
}
.bnr_btn a {
  display: grid;
  grid-template-columns: 11.1rem 1fr 3.5rem;
  align-items: center;
  padding-right: 2.5rem;
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .bnr_btn a {
    grid-template-columns: 8.43rem 1fr 2.66rem;
    padding-right: 1.9rem;
    border-radius: 0.76rem;
  }
}
.bnr_btn a:after {
  content: "";
  width: 100%;
  aspect-ratio: 1;
  background: url(../img/xmas/arrow_orange.svg) no-repeat center/100% auto;
  transition: 0.3s;
}
.bnr_btn a p {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.66;
  padding-left: 3rem;
}
@media screen and (min-width: 768px) {
  .bnr_btn a p {
    font-size: 1.6rem;
    padding-left: 2.3rem;
  }
}
@media (hover) {
  .bnr_btn a:hover {
    filter: drop-shadow(0 4px 5px rgba(150, 39, 9, 0.45));
  }
  .bnr_btn a:hover:after {
    background-image: url(../img/xmas/arrow_orange-ov.svg);
  }
}

#project {
  background-color: #F24607;
}

.project_inner {
  background-color: #F0F0F0;
  border-top-left-radius: 6.5rem;
  border-top-right-radius: 6.5rem;
}
@media screen and (min-width: 768px) {
  .project .article_ttl span {
    font-size: 3rem;
  }
}
.project_lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.88;
  margin-bottom: 6.5rem;
}
@media screen and (min-width: 768px) {
  .project_lead {
    font-size: 1.4rem;
    margin-bottom: 5rem;
  }
}
.project dl {
  margin-bottom: 9rem;
}
@media screen and (min-width: 768px) {
  .project dl {
    margin-bottom: 6.8rem;
  }
}
.project dl dt {
  font-size: 2.4rem;
  font-weight: 700;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  column-gap: 1rem;
  align-items: center;
  color: #F24607;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .project dl dt {
    font-size: 1.8rem;
    grid-template-columns: 1.7rem 1fr;
    column-gap: 0.76rem;
    margin-bottom: 3rem;
  }
}
.project dl dt::before {
  content: "";
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
}
.project dl dd {
  display: grid;
  row-gap: 3rem;
}
@media screen and (min-width: 768px) {
  .project dl dd {
    row-gap: 2.3rem;
  }
}
.project dl dd a {
  display: grid;
  grid-template-columns: 11.8rem 1fr 3rem;
  background-color: #fff;
  align-items: center;
  border-radius: 1rem;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .project dl dd a {
    grid-template-columns: 9rem 1fr 2.2rem;
    border-radius: 0.76rem;
  }
}
.project dl dd a figure img {
  width: 100%;
}
.project dl dd a p {
  font-size: 2.2rem;
  font-weight: 700;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .project dl dd a p {
    font-size: 1.7rem;
    padding-left: 1.5rem;
  }
}
.project dl dd a p small {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .project dl dd a p small {
    font-size: 1.6rem;
  }
}
.project dl dd a span {
  background-color: #007B40;
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.project dl dd a span img {
  width: 1.6rem;
}
@media screen and (min-width: 768px) {
  .project dl dd a span img {
    width: 1.2rem;
  }
}
@media (hover) {
  .project dl dd a:hover {
    filter: drop-shadow(0 4px 5px rgba(147, 147, 147, 0.25));
  }
  .project dl dd a:hover span {
    background-color: #F24607;
  }
}
.project h3 {
  text-align: center;
  color: #007B40;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .project h3 {
    font-size: 1.7rem;
    margin-bottom: 1.8rem;
  }
}
.project figure a {
  display: block;
  position: relative;
  transition: 0.3s;
}
@media (hover) {
  .project figure a:hover {
    filter: drop-shadow(0 4px 5px rgba(147, 147, 147, 0.25));
  }
  .project figure a:hover figcaption {
    background-color: #007B40;
  }
}
.project figure img {
  width: 100%;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .project figure img {
    border-top-left-radius: 0.76rem;
    border-bottom-left-radius: 0.76rem;
  }
}
.project figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #F24607;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .project figure figcaption {
    padding: 0.8rem 1.1rem;
    font-size: 1.6rem;
    border-bottom-left-radius: 0.76rem;
    border-bottom-right-radius: 0.76rem;
  }
}
.project figure figcaption:after {
  content: "";
  width: 2.4rem;
  aspect-ratio: 1;
  background: url(../img/xmas/arrow_white.svg) no-repeat center/100% auto;
}
@media screen and (min-width: 768px) {
  .project figure figcaption:after {
    width: 1.8rem;
  }
}

#terico, #gift {
  background-color: #007B40;
  color: #fff;
}
#terico .article_ttl span, #terico .article_ttl strong, #gift .article_ttl span, #gift .article_ttl strong {
  color: #fff;
}
#terico .item_list li h3 span, #terico .item_list li h3 strong, #gift .item_list li h3 span, #gift .item_list li h3 strong {
  color: #fff;
}
#terico .item_list li + li, #gift .item_list li + li {
  border-top-color: #fff;
}

#calendar {
  background-color: #F24607;
  color: #fff;
}
#calendar .article_ttl span, #calendar .article_ttl strong {
  color: #fff;
}
#calendar .item_list li h3 span, #calendar .item_list li h3 strong {
  color: #fff;
}
#calendar .item_list li + li {
  border-top-color: #fff;
}

#gift .item_list li {
  border-bottom-color: #fff;
}
#gift .item_list li:last-child {
  border-bottom: 2px solid #fff;
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  #gift .item_list li:last-child {
    padding-bottom: 4.5rem;
  }
}

#sweets {
  background-color: #F2F2F2;
}

.porduct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.8rem 2.8rem;
}
@media screen and (min-width: 768px) {
  .porduct {
    gap: 4.4rem 2.1rem;
  }
}
.porduct li {
  display: grid;
  row-gap: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .porduct li {
    row-gap: 1.1rem;
  }
}
.porduct li h3 {
  font-size: 2rem;
  color: #007B40;
  line-height: 1.45;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .porduct li h3 {
    font-size: 1.5rem;
  }
}
.porduct li p {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .porduct li p {
    font-size: 2rem;
  }
}
.porduct .link_btn-orange {
  font-size: 1.8rem;
  padding: 1.4rem 4rem 1.4rem 2.7rem;
}
@media screen and (min-width: 768px) {
  .porduct .link_btn-orange {
    font-size: 1.4rem;
    padding: 1.2rem 3rem 1rem 2rem;
  }
}

.footer {
  background-color: #674C3B;
  color: #fff;
  text-align: center;
  padding: 7.5rem 2rem 3rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 5.7rem 1.5rem 2.3rem;
  }
}
.footer_logo {
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .footer_logo {
    margin-bottom: 4.56rem;
  }
}
.footer_logo img {
  width: 28.4rem;
}
@media screen and (min-width: 768px) {
  .footer_logo img {
    width: 21.6rem;
  }
}
.footer_sns {
  display: flex;
  justify-content: center;
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .footer_sns {
    margin-bottom: 6rem;
  }
}
.footer_sns a {
  padding: 2rem 0.9rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .footer_sns a {
    padding: 1.5rem 0.7rem;
  }
}
.footer_sns a img {
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .footer_sns a img {
    width: 3.8rem;
  }
}
@media (hover) {
  .footer_sns a:hover {
    opacity: 0.7;
  }
}
.footer_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 10rem;
  column-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer_link a {
    font-size: 2rem;
    margin-bottom: 7.6rem;
    column-gap: 1.1rem;
  }
}
.footer_link a:after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/xmas/btn_arrow.svg) no-repeat center/100% auto;
}
@media screen and (min-width: 768px) {
  .footer_link a:after {
    width: 1.2rem;
    height: 1.2rem;
  }
}
@media (hover) {
  .footer_link a:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
  }
}
.footer_copyright {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer_copyright {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=xmas.css.map */