/*=============================
common
=============================*/
:root {
  --bg-image-1: url(../img/pc_bg_01.webp);
  --bg-image-2: url(../img/pc_bg_02.webp);
  --bg-color-2: #008930;
  --transition-duration: 0.8s;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 8px;
  font-weight: 300;
  word-break: break-all;
  scroll-behavior: smooth;
}

main {
  position: relative;
  max-width: 75rem;
  margin: auto;
}

img,video {
  display: block;
  max-width: 100%;
  height: auto;
}

.position {
  position: relative;
}

.com_txt_line {
  text-decoration: underline;
}

@media screen and (min-width: 751px) {
  a {
    transition: filter 0.3s ease;
  }

  a:hover {
    filter: brightness(1.2); /* 20%明るく */
  }
}

@media screen and (max-width: 750px) {
  html {
    font-size: 1.333vw;
  }
}


/*=============================
responsive
=============================*/
.sp-only {
  display: none;
}

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

  .sp-only {
    display: block;
  }
}


/*=============================
pc_container
=============================*/
.pc_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity var(--transition-duration) ease-in-out;
}

.bg-layer.active {
  opacity: 1;
}

/* 背景1 */
.bg-layer-1 {
  background-image: var(--bg-image-1);
}

/* 背景2 */
.bg-layer-2 {
  background-image: var(--bg-image-2);
  background-color: var(--bg-color-2);
  background-size: 100%;
}

.pc_container_left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc((100% - 75rem) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc_logo {
  max-width: 80%;
  width: 54rem;
}

.pc_container_right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc((100% - 75rem) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc_btn_wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 70%;
  max-width: 35rem;
}

@media screen and (max-width: 1200px) {
  .pc_container_left,
  .pc_container_right {
    display: none;
  }
}

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


/*=============================
sp btn
=============================*/
.sp_btn_container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  max-width: 75rem;
  background-color: rgba(0, 52, 119, 0.8);
  padding: 2.5rem 2.5rem 2rem;
}

.sp_btn_wrap {
  display: flex;
  padding-top: 2rem;
}

.sp_btn_wrap {
  display: flex;
}

@media screen and (min-width: 751px) {
  .sp_btn_container {
    display: none !important;
  }
}

/*=============================
fv
=============================*/
.fv {
  position: relative;
  background-image: url(../img/fv_bg.webp);
  background-size: cover;
  background-position: top;
  padding-bottom: 13rem;
  margin-bottom: -24rem;
  z-index: 2;
}

.fv h1 {
  width: 54.7rem;
  padding: 5rem 0 3.5rem;
  margin: auto;
}

.fv .fv_head_logo {
  position: absolute;
  top: 1.2rem;
  left: 2rem;
  width: 13rem;
}

.fv_btn_head {
  width: 40rem;
  margin: auto;
}

.fv_btn_wrap {
  display: flex;
  gap: 1rem;
  padding: 2rem 3rem 1rem;
}

.fv_txt {
  color: #fff;
  font-size: 2.3rem;
  text-align: center;
  padding: 2rem;
}

.fv_txt_head {
  font-weight: bold;
  line-height: 1.8;
}

.fv_txt_body {
  font-size: 1.8rem;
  font-weight: 500;
}

.fv_modal_link {
  cursor: pointer;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-decoration: underline;
  width: fit-content;
  margin: auto;
  padding: 3rem 0 7rem;
}

.campaign1_period {
  position: absolute;
  bottom: -21rem;
}

/*=============================
modal
=============================*/
/* モーダル背景 */
.modal_overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(99, 99, 99, 0.5);
  z-index: 1000;
}

.modal_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* モーダルコンテンツ */
.modal-content {
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(1px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  max-width: 68rem;
  padding: 6rem 2rem;
  width: 100%;
  height: 90vh;
  max-height: 83rem;
}

/* モーダルボディ */
.modal-body {
  position: relative;
  padding-right: 2rem;
  height: 100%;
  overflow-y: auto;
}

.modal-body p {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1em;
  line-height: 1.4;
}

.modal-body .modal_body_ttl {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0;
}

/* 閉じるボタン */
.modal-close {
  cursor: pointer;
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  z-index: 10;
  width: 5rem;
}

/* スクロールバー */
.modal-body::-webkit-scrollbar {
  width: 0.8rem;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0.4rem;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #808080;
  border-radius: 0.4rem;
}


/*=============================
campaign common
=============================*/
.campaign_inner {
  padding: 0 3rem;
}

.campaign h2 {
  font-size: 3.5rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  border-top: #fff solid .2rem;
  border-bottom: #fff solid .2rem;
  padding: 3rem;
  margin-bottom: 3rem;
}

.campaign h3 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  padding-bottom: .5rem;
}

.campaign_rule {
  color: #fff;
}

.campaign_rule dt {
  font-size: 3rem;
  line-height: 1.5em;
}

.campaign_rule dd {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5em;
  padding-bottom: 1.5em;
}

.campaign_rule dd a {
  display: block;
}

.campaign_note {
  background-color: #fff;
  padding: 2.5rem;
  margin: 2rem 0 4rem;
  max-height: 48rem;
  overflow-y: auto;
}

.campaign_note dt {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4em;
}

.campaign_note dd {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4em;
  padding-bottom: 1.5em;
}

.campaign .campaign_star_wrap {
  font-size: 3rem;
  font-weight: bold;
}

.campaign .campaign_star {
  color: #fff462;
}

.campaign .campaign_annotation {
  display: block;
  font-size: 2rem;
  line-height: 1.5em;
}

/*=============================
campaign1
=============================*/
.campaign1 {
  background-image: url(../img/campaign1_bg.webp);
  background-repeat: repeat-y;
  background-size: 100%;
  padding-top: 52rem;
  padding-bottom: 42rem;
}

.campaign1_check_wrap {
  padding-bottom: 10rem;
}

.campaign1_check_wrap .ownly_ugc_paging {
  width: 100%;
  font-size: 4rem;
  font-weight: bold;
  border-radius: 10rem;
  padding: 2.8rem;
}

.campaign1_check_wrap .ownly_ugc_widget_slider .ownly_ugc * {
  color: #fff;
}

.campaign_sns .campaign_sns_btn {
  display: inline-block;
  width: 40rem;
}

.campaign_sns .campaign_sns_btn.--01 {
  margin-left: -4rem;
}

.campaign_sns .campaign_sns_btn.--02 {
  margin-right: -4rem;
  margin-left: -5rem;
}


/*=============================
.campaign1_spot
=============================*/
.campaign1_spot_wrap {
  position: relative;
  margin-bottom: 8rem;
}

.campaign1_spot_list {
  position: absolute;
  bottom: 6rem;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 60rem;
  margin: 0 auto;
  background-color: rgba(0, 52, 119, 0.7);
  border: 0.2rem solid #fff;
  overflow: hidden;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.15);
}

.select-wrapper {
  background-color: rgba(0, 52, 119, 0.7);
  border-bottom: 0.2rem solid #fff;
  position: relative;
}

.area-select {
  width: 100%;
  background: transparent;
  border: none;
  color: #dca00a;
  font-size: 3.5rem;
  font-weight: bold;
  font-family: inherit;
  text-align-last: center;
  padding: 2rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.area-select option {
  cursor: pointer;
  padding: 1rem;
  background-color: rgba(0, 52, 119, 1);
  border-bottom: 0.2rem solid #fff;
  text-align: center;
}

.select-wrapper::after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 3rem;
  border-left: 0.2rem solid #fff;
  background-color: #003477;
  height: 100%;
  padding: 2rem 2.2rem;
  pointer-events: none;
}

.address-list {
  background-color: rgba(0, 52, 119, 0.7);
  max-height: 52rem;
  padding: 2rem;
  overflow-y: auto;
}

.address-item {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  color: white;
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease;
}

.address-item:last-child {
  border-bottom: none;
}

.address-item.hidden {
  display: none;
}

.address-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 2.5rem;
  margin-right: 1.5rem;
  min-width: 3rem;
}

.address-text {
  flex: 1;
  font-size: 2.5rem;
  line-height: 1.4;
}

/* カスタムスクロールバー */
.scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.8rem;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.4rem;
}

.scroll-thumb {
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.4rem;
  transition: background-color 0.2s ease;
}

.address-list::-webkit-scrollbar {
  width: 0.8rem;
}

.address-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.4rem;
}

.address-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.4rem;
}

.address-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.no-results {
  padding: 3rem 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

/*=============================
campaign2
=============================*/
.campaign2 {
  position: relative;
  background-image: url(../img/campaign2_bg.webp);
  background-size: 100%;
  width: 100%;
  margin-top: -41rem;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.campaign_scroll_wrap {
  width: 14rem;
  margin: auto;
  padding-bottom: 8rem;
}

.campaign_scroll_wrap .campaign_scroll {
  padding-top: 6rem;
  padding-bottom: 2rem;
}

@keyframes scroll_move {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(1rem); }
}

.campaign_scroll_wrap svg {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  width: 100%;
  animation: scroll_move 2s infinite ease-in-out both;
}

@keyframes infinity-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.campaign2_img_container {
  position: relative;
  margin-bottom: 5rem;
}

.campaign2_img_wrap {
  display: flex;
  overflow: hidden;
}

.campaign2_img_wrap ul {
  display: flex;
  list-style: none;
  padding: 0;
  animation: infinity-scroll-left 40s infinite linear 0.5s both;
}

.campaign2_img_wrap ul li {
  width: 34.5rem;
}

.campaign2_img_txt {
  position: absolute;
  bottom: -15rem;
  right: 0;
  width: 24rem;
}

.campaign2_winning {
  width: 100%;
}

.campaign2_cta_wrap {
  width: 100%;
  overflow-x: hidden;
}
.campaign2_cta {
  display: block;
  width: 74rem;
  margin: 2rem -2.5rem 0;
}

/*=============================
footer
=============================*/
footer {
  background-color: #fff;
  padding: 5rem 0 3rem;
}

footer .footer__bottom__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 2rem;
}

footer .footer__bottom__nav ul li {
  font-size: 2.5rem;
  font-weight: 400;
}

footer .footer__bottom__nav ul li {
  display: flex;
  align-items: center;
  margin-right: 1em;
}

footer .footer__bottom__nav ul li::after {
  content: "";
  display: block;
  margin-left: 1em;
  height: 1em;
  width: 1px;
  background-color: #000
}

footer .footer__bottom__nav ul li:last-of-type::after {
  content: none;
}


footer .footer__bottom__copy {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}
