@charset "utf-8";
:root {
  --gift-color-main: #1d50a2;
  --gift-color-main-dark: #1d50a2;
  --gift-color-sub: #dee3f1;
  --gift-color-1: #fcf2e4;
  --gift-color-gray: #808080;
  --gift-color-black: #010002;
  --gift-color-red: #e62320;
  --gift-color-red2: #fad7d4;
  --gift-color-red3: #cc3927;
  --gift-color-white: #fff;
  --gift-color-blue: #005ead;
  --gift-color-light-blue: #ccdfef;
  --gift-color-app: #a00000;
}
* {
  box-sizing: border-box;
}
body {
  color: #010002;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-feature-settings: "palt";
  font-size: 25px;
  line-height: 40px;
}
body.fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
}
a:hover {
  opacity: 0.7;
}
img {
  max-width: 100%;
  height: auto;
}
#wrapper {
  width: 750px;
  margin: 0 auto;
  max-height: 100%; /*for android*/
}
.inner {
  padding: 0 38px;
}
.ast {
  font-size: 20px;
  vertical-align: 1.3em;
  margin-left: -15px;
}
/*=====main=====*/
.main {
  position: relative;
}
h1 {
  margin-top: 28px;
  padding: 0 30px;
  text-align: center;
}
/*=====end=====*/
.end {
  margin-top: 40px;
  font-size: 32px;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
  color: var(--gift-color-white);
  background: #3e3a3a;
  padding: 15px 0;
  margin-bottom: 100px;
}
/*==========tab===========*/
.tab {
  margin-top: 42px;
  display: flex;
  border-bottom: 2px solid var(--gift-color-black);
  gap: 0 15px;
  padding: 0 35px;
}
.tab li {
  width: 50%;
}
.tab li a {
  display: block;
  width: 100%;
  font-size: 40px;
  font-weight: 500;
  color: var(--gift-color-white);
  text-align: center;
  padding: 25px 0 35px;
  background: #c8c8c8;
  border-radius: 15px 15px 0 0;
  position: relative;
}
.tab li a::after {
  content: "";
  border-bottom: solid 3px var(--gift-color-white);
  border-right: solid 3px var(--gift-color-white);
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  position: absolute;
  bottom: 13px;
  left: calc(50% - 7.5px);
}
.tab li a::before {
  content: "";
  width: 100%;
  height: 10px;
  background: #c8c8c8;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.tab li.active a {
  color: var(--gift-color-main);
  background: var(--gift-color-white);
  border: 2px solid var(--gift-color-black);
  border-bottom: none;
}
.tab li.active a::after {
  border-bottom: solid 3px var(--gift-color-main);
  border-right: solid 3px var(--gift-color-main);
}
.tab li.active a::before {
  content: "";
  width: 100%;
  height: 10px;
  background: var(--gift-color-white);
  position: absolute;
  bottom: -5px;
  left: 0;
}
.tab li a:hover {
  opacity: 1;
}
.area {
  display: none;
  opacity: 0;
}
.area.active {
  display: block;
  opacity: 1;
}
/*=============================*/
/*shop*/
/*=============================*/
/*=====nav=====*/
#shop .nav {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7px 0;
}
#shop .nav li {
  width: 49.5%;
  position: relative;
}
#shop .nav li.full {
  width: 100%;
}
#shop .nav li.off {
  pointer-events: none;
}
#shop .nav li.off::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(000, 000, 000, 0.5);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
#shop .nav li a {
  display: block;
  width: 100%;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  color: var(--gift-color-main-dark);
  background: var(--gift-color-sub);
  border-radius: 10px;
  padding: 30px 0;
}
#shop .nav li.arrow {
  position: relative;
}
#shop .nav li.arrow::after {
  content: "";
  border-top: solid 3px var(--gift-color-main);
  border-right: solid 3px var(--gift-color-main);
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 8.5px);
  right: 5%;
}
h2 {
  margin-top: 52px;
  display: flex;
  align-items: center;
  font-size: 35px;
  font-weight: 500;
}
h2:before,
h2:after {
  content: "";
  height: 3px;
  flex-grow: 1;
  background-color: #010002;
}
h2:before {
  margin-right: 1rem;
}
h2:after {
  margin-left: 1rem;
}
.notice {
  margin-top: 20px;
  font-family: "Noto Serif CJK JP", serif;
  font-weight: bold;
  color: var(--gift-color-red);
  border: 3px solid var(--gift-color-red);
  padding: 10px;
}
.cards__note {
  margin-top: 20px;
  font-size: 23px;
}
.cards__note .red {
  color: var(--gift-color-red);
}
/*==========================*/
/*storeBox*/
/*==========================*/
#shop .storeBox {
  margin-top: 20px;
  max-width: 750px;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#shop .storeBox .storeContenets {
  position: relative;
  width: 100%;
}
#shop .storeBox.contentsOpen1 .storeContenets.contents02 {
  position: absolute;
  top: 84px;
  right: 0;
  width: 100%;
}
#shop .storeBox .storeContenets .contentsTtl {
  width: 49%;
  border: 2px solid var(--gift-color-black);
  border-radius: 10px;
  background: var(--gift-color-white);
  padding: 30px 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
#shop .storeBox .storeContenets .contentsTtl::after {
  content: "";
  border-bottom: solid 3px var(--gift-color-main);
  border-right: solid 3px var(--gift-color-main);
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 7.5px);
  right: 18%;
}
#shop .storeBox .storeContenets.contents02 .contentsTtl::after {
  border-bottom: solid 3px var(--gift-color-white);
  border-right: solid 3px var(--gift-color-white);
  /* border-bottom: solid 3px var(--gift-color-main);
  border-right: solid 3px var(--gift-color-main); */
}
#shop .storeBox .storeContenets .contentsTtl.open {
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding-bottom: 40px;
}
#shop .storeBox .storeContenets .contentsTtl.open::after {
  border-bottom: none;
  border-right: none;
  border-top: solid 3px var(--gift-color-main);
  border-left: solid 3px var(--gift-color-main);
  top: 42%;
}
#shop .storeBox .storeContenets.contents02 .contentsTtl {
  margin: -102px 0 0 auto;
  background: var(--gift-color-main);
  border: 2px solid var(--gift-color-main);
}
#shop .storeBox.contentsOpen1 .storeContenets.contents02 .contentsTtl {
  margin-top: -84px;
}
#shop .storeBox .storeContenets.contents02 .contentsTtl.open {
  border-top: 2px solid var(--gift-color-black);
  border-left: 2px solid var(--gift-color-black);
  border-right: 2px solid var(--gift-color-black);
}
#shop .storeBox .storeContenets.contents02 .contentsTtl.open::after {
  border-top: solid 3px var(--gift-color-white);
  border-left: solid 3px var(--gift-color-white);
}
#shop .storeBox .storeContenets .contentsTtl .ttl {
  font-size: 35px;
  font-weight: 500;
  color: var(--gift-color-main);
  text-align: center;
  padding-right: 30px;
  padding-left: 20px;
}
/* #shop .storeBox .storeContenets .accTrigger.contentsTtl.open {
  background-color: var(--gift-color-main);
  color: var(--gift-color-white);
} */
#shop .storeBox .storeContenets.contents02 .contentsTtl .ttl {
  color: var(--gift-color-white);
  /* color: var(--gift-color-main); */
}
#shop .storeBox .storeContenets .accTrigger.contentsTtl.open .ttl {
  /* background-color: var(--gift-color-main); */
  /* color: var(--gift-color-white); */
}
#shop .storeBox .storeContenets .accTarget {
  display: none;
  margin-top: -2px;
  border: 2px solid var(--gift-color-black);
  border-radius: 0 10px 10px 10px;
  position: relative;
  z-index: 1;
}
#shop .storeBox .storeContenets.contents02 .accTarget {
  border-radius: 10px 0 10px 10px;
}
#shop .storeBox .storeContenets .accTarget.open {
  display: block;
}

/* #shop .storeBox .storeContenets .accTarget::before {
	content: '';
	position: absolute;
	left: -2px;
	top: -10px;
	width: 48.7%;
	height: 10px;
	background: var(--gift-color-white);
	border-left: 2px solid var(--gift-color-main);;
	border-right: 2px solid var(--gift-color-main);;
	z-index: 15;
}
#shop .storeBox .storeContenets.contents02 .accTarget::before {
	background: var(--gift-color-main);;
	left: auto;
	top: -12px;
	right: -2px;
}
@media (max-width: 768px) {
	#shop .storeBox .storeContenets .accTarget::before {
		top: -9.35px;
		left: -1.8px;
	}
	#shop .storeBox .storeContenets.contents02 .accTarget::before {
		top: -9.65px;
		right: -1.8px;
	}
} */
/*================================*/
/*=====accTarget inner=====*/
/*================================*/
#shop .storeBox .storeContenets .accTarget .contentsInner {
  padding: 30px 30px 50px;
}
#shop .storeBox .storeContenets .accTarget h3 {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: var(--gift-color-blue);
}
#shop .storeBox .storeContenets .accTarget h3.red {
  color: var(--gift-color-red);
}
#shop .storeBox .storeContenets .accTarget h3 .border {
  background: linear-gradient(
    transparent 60%,
    var(--gift-color-light-blue) 60%
  );
  padding: 0 15px;
}

#shop .storeBox .storeContenets .accTarget h3 .small {
  font-size: 35px;
}
#shop .storeBox .storeContenets .accTarget .storeList {
  margin-top: 24px;
  border-bottom: 2px solid var(--gift-color-black);
}
#shop .storeBox .storeContenets .accTarget .fare {
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  margin-top: 18px;
  text-align: center;
}
#shop .storeBox .storeContenets .accTarget .storeList li {
  border-top: 2px solid var(--gift-color-black);
  padding-bottom: 40px;
}
#shop .storeBox .storeContenets .accTarget .storeList li:last-child {
  padding-bottom: 15px;
}
#shop
  .storeBox
  .storeContenets
  .accTarget
  .storeList
  li:last-child
  .closed.last {
  margin-bottom: 0;
}

/* waribiki */
.waribiki {
  margin-top: 0.5em;
}
.waribiki__txt {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: var(--gift-color-red);
}
.waribiki__txt__small {
  font-size: 35px;
}
.waribiki__date {
  text-align: center;
  margin-top: 0.5em;
  font-size: 35px;
  letter-spacing: 0.1em;
  font-weight: bolder;
  color: var(--gift-color-black);
}
.waribiki__note {
  margin-top: 0.5em;
  font-size: 23px;
}

/* shoplist */
.storeList .store,
.storeList .detailLink {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: bold;
}
.storeList .store {
  padding-top: 32px;
  padding-bottom: 10px;
  color: var(--gift-color-main);
}
.storeList .name {
  font-size: 33px;
  line-height: 23px;
}
.storeList .two .name {
  margin-top: -40px;
}

.storeList .name a {
  display: block;
}
.storeList .name a > span {
  vertical-align: middle;
}
.storeList .name a > span.small {
  font-size: 22px;
  margin-right: 0.25em;
}
.storeList .name a > span:last-child {
  border-bottom: 2px solid var(--gift-color-main);
}
.storeList .name.unlink a > span:last-child {
  border: none;
}
.storeList .floor {
  margin-left: 0.5em;
  font-size: 33px;
  font-weight: bold;
  text-align: left;
  color: var(--gift-color-main);
}
.storeList .two .floor {
  margin-left: 0;
  margin-right: 0.5em;
}
.storeList .yonago .floor {
  margin-top: 0;
  margin-left: 0;
  padding-bottom: 0.5em;
}
.storeList .period {
  font-size: 29px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
.storeList .otaka .floor {
  margin-left: 0;
  padding-top: 10px;
  padding-bottom: 0.5em;
}

/* .storeList .period.last {
	margin-bottom: 15px;
} */
.storeList .period > span {
  color: var(--gift-color-red);
}
.storeList .period .new {
  display: inline;
  color: #000;
  border: solid 2px var(--gift-color-red);
  border-radius: 15px;
  padding: 5px;
  background: var(--gift-color-white);
}
.storeList .period .new > span {
  font-size: 32px;
  font-weight: bold;
}
.storeList .period .new > span:last-child {
  font-size: 27px;
  font-weight: bold;
}
.storeList .closed {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  color: var(--gift-color-red);
  margin-top: 10px;
  line-height: 1.2;
}
.storeList .closed.last {
  margin-bottom: 15px;
  line-height: 1.5;
}
.storeList .yoyaku {
  margin-top: 15px;
  background: var(--gift-color-sub);
  border-radius: 10px;
  padding: 10px 0;
}
.storeList .yoyaku .yoyakuTtl {
  font-size: 29px;
  font-weight: bold;
  text-align: center;
  color: var(--gift-color-main-dark);
}
.storeList .yoyaku .df {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
}
.storeList .yoyaku .df .yoyakuTxt {
  font-size: 25px;
  font-weight: bold;
}
.storeList .yoyaku .df .btn {
  width: 200px;
}
.storeList .yoyaku .df .btn a {
  display: block;
  border-radius: 10px;
  background: var(--gift-color-white);
  border: 2px solid #000;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  padding: 13px 30px 13px 10px;
  position: relative;
}
.storeList .yoyaku .df .btn a[href=""] {
  background-color: var(--gift-color-gray);
  pointer-events: none;
}
.storeList .yoyaku .df .btn a::after {
  content: "";
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 9px);
  right: 8%;
}
.storeList .yoyaku .df .btn.off {
  position: relative;
}
.storeList .yoyaku .df .btn.off::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(000, 000, 000, 0.5);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.storeList .detail {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.storeList .detail .time {
  width: 38.5%;
  font-size: 29px;
  font-weight: bold;
  text-align: center;
  background: var(--gift-color-sub);
  border-radius: 10px;
  padding: 25px 10px 15px;
}
.storeList .detail .time span {
  display: inline-block;
  margin-top: 20px;
  font-size: 40px;
}
.storeList .detail .btnBlock {
  width: 60%;
  background: var(--gift-color-sub);
  border-radius: 10px;
  padding: 10px 10px 15px;
}
.storeList .detail .btnBlock .btnTxt {
  font-size: 29px;
  font-weight: bold;
  text-align: center;
  color: var(--gift-color-main);
}
.storeList .detail .btnBlock .btnBox {
  margin-top: 5px;
  display: flex;
  /* justify-content: space-between; */
  column-gap: 8px;
}
.storeList .detail .btnBlock .btnBox > p {
  width: 48%;
}
.storeList .detail .btnBlock .btnBox > p a {
  display: block;
  border-radius: 10px;
  background: var(--gift-color-white);
  border: 2px solid #000;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  padding: 19px 30px 14px 10px;
  position: relative;
}
.storeList .detail .btnBlock .btnBox > p a::after {
  content: "";
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 9px);
  right: 8%;
}
.storeList .detail .btnBlock .btnBox > p:first-child a::after {
  right: 25%;
}
.storeList .detail.end {
  justify-content: center;
}
.storeList .detail.end .period {
  font-size: 29px;
  font-weight: bold;
}
.storeList .btnCenter.off {
  position: relative;
}
.storeList .btnCenter.off::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(000, 000, 000, 0.5);
  border-radius: 14px;
  position: absolute;
  top: 0;
  left: 0;
}
.storeList .btnCenter a {
  display: block;
  padding: 5px 40px;
  background: #fbdede;
  border-radius: 14px;
  font-size: 26px;
  font-weight: bold;
  line-height: 30px;
  position: relative;
}
.storeList .btnCenter a::after {
  content: "";
  border-top: solid 2px #010002;
  border-right: solid 2px #010002;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 9px);
  right: 8%;
}
.storeList .address {
  margin-left: 0.5em;
  font-size: 20px;
  line-height: 1.3;
  text-align: left;
}
.storeList .store .note {
  width: 100%;
  margin-top: 2px;
  font-size: 18px;
  font-weight: normal;
  color: #1c1c1c;
}
.storeList .detail .note {
  margin-left: 0.5em;
  font-size: 17px;
  font-weight: normal;
}
.storeList .detailLink {
  padding-bottom: 0.5em;
  padding-left: 1em;
  font-size: 20px;
  color: var(--gift-color-red);
}
.storeList .store + .note {
  color: initial;
  font-size: 18px;
}
.storeList .store + .note > span {
  color: var(--gift-color-red);
}
.storeList .storeEnd {
  margin: 15px 0;
  font-size: 35px;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
}
.storeList .detail .startDay {
  display: none;
}
.storeList .detail.comming-soon .startDay {
  display: flex;
  justify-content: end;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
}
.storeList .detail.comming-soon {
  display: block;
}
.storeList .detail.comming-soon .btnBlock {
  width: 100%;
}
.storeList .detail.comming-soon .time {
  display: none;
}
.storeList .detail.comming-soon .btnBox .today {
  display: none;
}

.storeList .detail.comming-soon .btnBox .calendar > a {
  background-color: var(--gift-color-gray);
  pointer-events: none;
  user-select: none;
}

#shop .storeBox .storeContenets .accTarget .closeBtn {
  position: relative;
}
#shop .storeBox .storeContenets .accTarget .closeBtn::after {
  content: "";
  border-top: solid 3px var(--gift-color-black);
  border-left: solid 3px var(--gift-color-black);
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  position: absolute;
  bottom: -40px;
  left: calc(50% - 7.5px);
  cursor: pointer;
}
#shop .storeBox .storeContenets .storeBtn {
  padding: 55px 0;
  border-bottom: 2px solid var(--gift-color-black);
}
#shop .storeBox .storeContenets .storeBtn a {
  display: block;
  width: 532px;
  margin: 0 auto;
  font-size: 35px;
  font-weight: 500;
  color: var(--gift-color-white);
  text-align: center;
  background: var(--gift-color-main);
  border-radius: 10px;
  padding: 30px 50px;
  position: relative;
}
#shop .storeBox .storeContenets .storeBtn a span {
  position: relative;
  padding-left: 20px;
  padding-right: 57px;
  word-wrap: break-word;
  display: block;
}
#shop .storeBox .storeContenets .storeBtn a span::after {
  content: "";
  border-top: solid 3px var(--gift-color-white);
  border-right: solid 3px var(--gift-color-white);
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 8.5px);
  right: 8px;
}
#shop .storeBox .storeContenets.contents02 .storeBtn a {
  color: var(--gift-color-main);
  background: var(--gift-color-white);
  border: 2px solid var(--gift-color-black);
}
#shop .storeBox .storeContenets.contents02 .storeBtn a span {
  position: relative;
  padding-left: 38px;
  padding-right: 80px;
}
#shop .storeBox .storeContenets.contents02 .storeBtn a span::after {
  border-top: solid 3px var(--gift-color-black);
  border-right: solid 3px var(--gift-color-black);
  right: 52px;
}
#shop .storeBox .storeContenets.contents02 .accTarget h3 .border:last-child {
  padding: 0 0.85em;
}
#shop .yoyakuBtn a {
  margin-top: 10px;
  display: block;
  width: 100%;
  font-size: 35px;
  font-weight: bold;
  color: var(--gift-color-main-dark);
  text-align: center;
  background: var(--gift-color-sub);
  border-radius: 10px;
  padding: 30px 120px;
  position: relative;
}
#shop .yoyakuBtn a span {
  transform: translateX(-18px);
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
#shop .yoyakuBtn a::after {
  content: "";
  border-top: solid 3px var(--gift-color-main);
  border-right: solid 3px var(--gift-color-main);
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 8.5px);
  right: 107px;
}
/*================================*/
/*present*/
/*================================*/
#present .accordionArea {
  margin-top: 24px;
  border: 2px solid var(--gift-color-main);
  border-radius: 10px;
  padding: 24px 26px 71px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
  overflow: hidden;
}
#present .accordionArea.open {
  padding: 24px 26px 75px;
}
#present .accordionArea::after {
  content: "";
  width: 15px;
  height: 15px;
  border-bottom: solid 3px var(--gift-color-black);
  border-right: solid 3px var(--gift-color-black);
  transform: rotate(45deg);
  position: absolute;
  bottom: 40px;
  left: calc(50% - 7px);
}
#present .accordionArea.open::after {
  border-bottom: none;
  border-right: none;
  border-top: solid 3px var(--gift-color-main);
  border-left: solid 3px var(--gift-color-main);
}
#present .accordionArea.off {
  pointer-events: none;
  position: relative;
  overflow: hidden;
}
#present .accordionArea.off::after {
  display: none;
}
/* #present .accordionArea.off::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(000, 000, 000, 0.5);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}
#present .accordionArea.off::after {
  content: "終了いたしました";
  width: 100%;
  height: 100%;
  font-size: 50px;
  text-align: center;
  color: var(--gift-color-white);
  bottom: -46%;
  left: 0;
  border-bottom: none;
  border-right: none;
  transform: rotate(0);
} */
#present .accordionArea .closingMessage {
  display: none;
}
#present .accordionArea.off .closingMessage {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: rgba(000, 000, 000, 0.5);
  color: var(--gift-color-white);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  font-size: 50px;
}
#present h3 {
  font-size: 38px;
  font-weight: 600;
  line-height: 55px;
  color: var(--gift-color-main);
}
#present .contentBox {
  display: flex;
  justify-content: space-between;
}
#present .lead {
  margin-top: 2px;
  padding-left: 6px;
  padding-right: 12px;
  width: 75%;
  font-size: 35px;
  font-weight: 500;
  line-height: 50px;
}
#present .lead .blue {
  color: var(--gift-color-blue);
}
#present .lead .note {
  display: inline-block;
  font-size: 25px;
  font-weight: 400;
  line-height: 40px;
}
#present .lead .bold {
  font-weight: 900;
}
#present .bag {
  width: 25%;
  position: relative;
}
#present .bag .pic {
  width: 386px;
  position: absolute;
  top: -26px;
  left: -158px;
}
#present .bag .bagTxt {
  font-size: 22px;
  display: block;
  position: absolute;
  left: -80px;
  top: 300px;
  white-space: nowrap;
  font-weight: 200;
  line-height: 1.3;
}
#present .accordionBox {
  margin-top: 35px;
  display: none;
}
#present .accordionBox ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 500;
}
#present .accordionBox ul li.red {
  color: var(--gift-color-blue);
}

#shop #support.support {
  margin-top: 13px;
  /* margin-bottom: 54px; */
}
#shop #support.support > .leadImage {
  height: auto;
  transition: height 0.6s;
  overflow: hidden;
  margin-top: 23px;
}
#shop #support.support > .leadImage > div {
  overflow: hidden;
}
#shop #support.support > .leadImage img {
  width: 100%;
}
#shop #support.support > .contentBox .lead {
  color: var(--gift-color-blue);
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 39px;
  margin-top: 6px;
}
#shop #support.support .supportAccordion {
  display: none;
  position: relative;
}

#shop #support.support .grid-list {
  display: grid;
  max-width: 100%;
  gap: 16px 20px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 37px;
  position: relative;
}

#shop #support.support .grid-list__itemImage {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}
#shop #support.support .grid-list__itemImage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
  object-position: center;
}
#shop #support.support .itemData {
  margin-top: 10px;
}
#shop #support.support .itemData .brand,
#shop #support.support .itemData .name,
#shop #support.support .itemData .price {
  font-size: 25px;
  font-weight: 400;
  line-height: 40px;
}
#shop #support.support .itemData .code {
  font-size: 21px;
  font-weight: 400;
  line-height: 36px;
  display: flex;
  column-gap: 14px;
}
#shop #support.support .itemData .code.blue {
  color: var(--gift-color-light-blue);
}
#shop #support.support .itemData .code .icon {
  position: relative;
  height: 100%;
  width: 120px;
}
#shop #support.support .itemData .code .icon img {
  position: absolute;
  top: 5px;
  left: 0;
}
#shop #support.support .openButton {
  position: relative;
  width: fit-content;
  margin-top: 51px;
  padding-left: 10px;
  padding-right: 45px;
  margin-left: auto;
  margin-right: auto;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--gift-color-blue);
  display: block;
  background: transparent;
  border: none;
  letter-spacing: -0.1em;
  cursor: pointer;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#shop #support.support .openButton::after {
  content: "";
  display: block;
  border-top: solid 2px var(--gift-color-blue);
  border-left: solid 2px var(--gift-color-blue);
  width: 20px;
  height: 20px;
  transform: rotate(-135deg);
  position: absolute;
  cursor: pointer;
  top: 3px;
  right: 10px;
}
#shop #support.support .closeButton {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 60px;
  margin-top: 38px;
}
#shop #support.support .closeButton span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#shop #support.support .closeButton::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 30px;
  width: calc(100% - 60px);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 2px;
  background-color: var(--gift-color-black);
}
#shop #support.support .closeButton::after {
  content: "";
  border-top: solid 3px var(--gift-color-black);
  border-left: solid 3px var(--gift-color-black);
  width: 20px;
  height: 20px;
  transform: rotate(45deg) translateX(calc(-50% - 7px));
  position: absolute;
  cursor: pointer;
  top: 38px;
  left: 50%;
}
#shop #support.support > .supportAccordion .annotation {
  font-size: 22px;
  font-weight: 400;
  line-height: 40px;
  padding-left: 3px;
  padding-right: 3px;
}

/*================================*/
/*online*/
/*================================*/
#online {
  margin-top: 30px;
}
#online h5 {
  margin-top: 10px;
  font-size: 46px;
  font-weight: 500;
  text-align: center;
  color: var(--gift-color-main);
}
#online h5 span {
  display: inline-block;
  font-size: 23px;
  font-weight: bold;
  position: relative;
}
#online h5 span::before {
  content: "";
  width: 3px;
  height: 27px;
  border-right: 3px solid var(--gift-color-main);
  position: absolute;
  bottom: 6px;
  left: -0.7em;
  rotate: -30deg;
}
#online h5 span::after {
  content: "";
  width: 3px;
  height: 27px;
  border-right: 3px solid var(--gift-color-main);
  position: absolute;
  bottom: 6px;
  right: -0.5em;
  rotate: 30deg;
}
#online .period {
  margin-top: 15px;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.04em;
}
#online .period .border {
  background: var(--gift-color-sub);
  padding: 5px 25px;
  display: block;
}
#online .periodNote {
  font-size: 25px;
  line-height: 40px;
  font-weight: 500;
  text-align: center;
  margin-top: 14px;
}
#online .fareContents {
  padding-top: 20px;
  padding-bottom: 20px;
}
#online .fareContents h3 {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: var(--gift-color-blue);
  margin-right: auto;
  margin-left: auto;
}
#online .fareContents h3 .border {
  background: linear-gradient(
    transparent 60%,
    var(--gift-color-light-blue) 60%
  );
  padding: 0 15px;
}
#online .fareContents h3 .border:first-child {
  background: linear-gradient(
    transparent 60%,
    var(--gift-color-light-blue) 60%
  );
  padding: 0 0.6em;
}

#online .red {
  color: var(--gift-color-red);
}
#online .fareContents h3 .small {
  font-size: 35px;
  vertical-align: text-bottom;
}
#online .fareContents .fare {
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  margin-top: 18px;
  text-align: left;
}
/*=====special=====*/
#online .special {
  margin-top: 17px;
}
#online .special h2 {
  margin-top: 15px;
}
#online .special .accordion {
  margin-top: 60px;
  border: 2px solid var(--gift-color-main);
  border-radius: 10px;
  position: relative;
}
#online .special .accordion.present01::before {
  content: "";
  width: 572px;
  height: 71px;
  background: url(/base/pc/store/special/wintergift/2023/img/top/present01.png)
    no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  left: 25px;
}
#online .special .accordion.present02::before {
  content: "";
  width: 460px;
  height: 71px;
  background: url(/base/pc/store/special/wintergift/2023/img/top/present02.png)
    no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  left: 25px;
}
#online .special .accordion.off {
  pointer-events: none;
  position: relative;
}
#online .special .accordion.off::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(000, 000, 000, 0.5);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
#online .special .accordion.off::after {
  content: "終了いたしました";
  width: 100%;
  height: 100%;
  font-size: 50px;
  text-align: center;
  color: var(--gift-color-white);
  position: absolute;
  bottom: -46%;
  left: 0;
  z-index: 10;
}
#online .special .specialInner {
  margin-top: 66px;
  border: 2px solid var(--gift-color-black);
  border-radius: 10px;
  position: relative;
}
#online .special .presentBox {
  padding: 40px 34px 38px;
  position: relative;
}
#online .special .presentBox .titleImg {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(calc(-50% - 5px));
  width: 572px;
}
#online .special .presentBox.open {
  padding: 40px 20px 0;
}
#online .special .finishCampaign {
  width: 100%;
  margin-top: 60px;
}
#online .special .finishCampaign img {
  width: 100%;
}
/* #online .special .presentBox::after {
  content: "";
  width: 15px;
  height: 15px;
  border-bottom: solid 3px var(--gift-color-main);
  border-right: solid 3px var(--gift-color-main);
  transform: rotate(45deg);
  position: absolute;
  bottom: 20px;
  left: calc(50% - 10px);
  cursor: pointer;
} */
#online .special .presentBox.open::after {
  content: none;
}
#online .special .presentBox .presentSubTtl {
  font-weight: 600;
  text-align: center;
  color: var(--gift-color-main);
}
#online .special .presentBox .presentTtl {
  margin-top: 8px;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: var(--gift-color-main);
  position: relative;
}
#online .special .presentBox .presentPeriod {
  margin-top: 11px;
  font-size: 26px;
  font-weight: bold;
  color: var(--gift-color-main-dark);
  text-align: center;
  background: var(--gift-color-sub);
}
#online .special .presentBox .presentImage {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
#online .special .presentAccordionBox {
  display: none;
  padding: 20px 25px 20px;
}
#online .special .presentContent {
  display: flex;
  justify-content: space-between;
}
#online .special .presentContent .presentTxtBox {
  width: 465px;
}
#online .special .presentTxt {
  margin-top: 20px;
  font-weight: 400;
  text-align: justify;
}
#online .special .accordion.present02 .presentTxt {
  margin-top: 15px;
}
#online .special .presentLink {
  text-align: right;
  line-height: 1;
  margin-top: 16px;
}
#online .special .presentLink a {
  margin-top: 10px;
  /* display: block; */
  font-weight: 500;
  color: var(--gift-color-main);
  position: relative;
  padding-right: 15px;
}
#online .special .presentLink a::after {
  content: "";
  border-top: solid 2px var(--gift-color-main);
  border-right: solid 2px var(--gift-color-main);
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: -3px;
}
#online .special .presentPic01 {
  text-align: center;
}
#online .special .presentContent .presentPic02 {
  margin-top: 25px;
  width: 140px;
}
#online .special .presentBox .df {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#online .special .btnClose {
  margin-top: 30px;
  text-align: center;
  cursor: pointer;
}
/*=====limit=====*/
#online .limit {
  margin-top: 48px;
}
#online h6 {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
}
#online .headingBlack {
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  line-height: 50px;
  color: var(--gift-color-black);
}
#online h2.headingMainColor {
  margin-top: 35px;
  font-size: 50px;
  font-weight: 500;
  text-align: center;
  color: var(--gift-color-main);
  display: block;
}
#online h2.headingMainColor::before,
#online h2.headingMainColor::after {
  display: none;
}
#online .subTitle {
  display: block;
  font-size: 25px;
  position: relative;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
}
#online .title {
  display: block;
  margin-top: 10px;
}
#online .subTitle::before {
  content: "";
  width: 3px;
  height: 27px;
  border-right: 3px solid var(--gift-color-main);
  position: absolute;
  bottom: 6px;
  left: 5px;
  rotate: -30deg;
}
#online .subTitle::after {
  content: "";
  width: 3px;
  height: 27px;
  border-right: 3px solid var(--gift-color-main);
  position: absolute;
  bottom: 6px;
  right: 6px;
  rotate: 30deg;
}
#online .limit .limitBnr {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 25px 10px;
  flex-wrap: wrap;
}
#online .limit .limitBnr > p {
  width: 328px;
  display: flex;
  flex-direction: column;
}
#online .limit .limitBnr > p.comming {
  pointer-events: none;
  position: relative;
  display: flex;
}
#online .limit .limitBnr > p.comming::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(000, 000, 000, 0.5);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
#online .limit .limitBnr > p.comming::after {
  content: "Coming soon";
  width: 100%;
  height: 100%;
  font-size: 35px;
  text-align: center;
  color: var(--gift-color-white);
  position: absolute;
  bottom: -42%;
  left: 0;
  border-bottom: none;
  border-right: none;
  transform: rotate(0);
  z-index: 10;
}
#online .limit .limitBnr > p a {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#online .limit .limitBnr > p a .red {
  margin-top: -33px;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  color: var(--gift-color-white);
  background: var(--gift-color-main);
  border-radius: 0 0 10px 10px;
  padding: 8px;
  flex-grow: 1;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#online .limit .limit__txt {
  font-size: 25px;
  font-weight: 1.6;
  margin-top: 1em;
}

#online .linkList {
  margin-top: 35px;
}
#online .linkList li + li {
  margin-top: 20px;
}
#online .linkList li.comming {
  pointer-events: none;
  position: relative;
}
#online .linkList li.comming::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(000, 000, 000, 0.5);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
#online .linkList li.comming::after {
  content: "Coming soon";
  width: 100%;
  height: 100%;
  font-size: 35px;
  text-align: center;
  color: var(--gift-color-white);
  position: absolute;
  bottom: -25%;
  left: 0;
  border-bottom: none;
  border-right: none;
  transform: rotate(0);
  z-index: 10;
}
#online .linkList li a {
  display: block;
  width: 100%;
  font-size: 35px;
  font-weight: bold;
  color: var(--gift-color-main);
  text-align: center;
  border: 2px solid var(--gift-color-main);
  border-radius: 10px;
  padding: 20px 0;
  position: relative;
}
#online .linkList li a::after {
  content: "";
  border-top: solid 3px var(--gift-color-main);
  border-right: solid 3px var(--gift-color-main);
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 8.5px);
  right: 5%;
}
#online .linkList li:nth-child(even) a {
  background: var(--gift-color-sub);
}
#online .linkList li a span {
  font-size: 28px;
}
/*=====registration=====*/
#online .registration {
  margin-top: 63px;
}
#online .registration .registrationBtn a {
  margin-top: 15px;
  display: block;
  width: 100%;
  font-size: 35px;
  font-weight: bold;
  color: var(--gift-color-main);
  text-align: center;
  border: 2px solid var(--gift-color-main);
  border-radius: 10px;
  padding: 30px;
  position: relative;
}
#online .registration .registrationBtn a span {
  display: block;
  padding-right: 40px;
  padding-left: 40px;
  position: relative;
}
#online .registration .registrationBtn a span::after {
  content: "";
  border-top: solid 3px var(--gift-color-main);
  border-right: solid 3px var(--gift-color-main);
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 8.5px);
  right: 25px;
}
#online .registration .registrationBox {
  margin-top: 60px;
  background: var(--gift-color-1);
  padding: 25px 30px;
}
#online .registration .registrationTxt {
  margin-top: 15px;
  font-weight: 500;
  padding-left: 8px;
}
#online .registration .registrationLink {
  text-align: right;
  margin-top: 10px;
}
#online .registration .registrationLink a {
  /* display: block; */
  font-weight: 500;
  color: var(--gift-color-blue);
  text-align: right;
  position: relative;
  padding-right: 20px;
}
#online .registration .registrationLink a::after {
  content: "";
  border-top: solid 2px var(--gift-color-blue);
  border-right: solid 2px var(--gift-color-blue);
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
}
/*=====registration=====*/
#online .addressImport {
  margin-top: 70px;
  position: relative;
}
#online .addressImport::before {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--gift-color-1);
  width: calc(100% + 38px * 2);
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  z-index: -1;
}
#online .addressImport__inner {
  padding: 25px 10px;
}
#online .addressImport__headingWrap {
  position: relative;
}
#online .addressImport__subHeading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -41px;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 400;
  padding: 0px 10px;
  text-align: center;
  color: var(--gift-color-white);
  background-color: var(--gift-color-red3);
  min-width: 75%;
  border-radius: 20px;
}
#online .addressImport__headingImg {
  display: block;
  width: 51%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
}
#online .addressImport__heading {
  font-size: 35px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
.addressImport__img {
  margin-top: 15px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#online .addressImport__list {
  margin-top: 8px;
}

#online .addressImport__item {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#online .addressImport__item span {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  padding-left: 27px;
  position: relative;
}
#online .addressImport__item span::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("/base/pc/store/special/summergift/2026/img/top/icon-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 25.2353/16.8593;
  width: 25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#online .addressImport__note {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
}
#online .addressImport__link {
  margin-top: 13px;
  text-align: right;
}
#online .addressImport__link a {
  position: relative;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 400;
  padding-right: 40px;
  margin-top: 5px;
  color: var(--gift-color-red3);
}
#online .addressImport__link a:after {
  content: "";
  border-top: solid 2px var(--gift-color-red3);
  border-right: solid 2px var(--gift-color-red3);
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: 21px;
}
/*================================*/
/*catalog*/
/*================================*/
#catalog h3 {
  margin-top: 30px;
  text-align: center;
}
#catalog .catalogList {
  width: 595px;
  margin: 38px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 29px 74px;
}
#catalog .catalogList .catalogBox {
  width: 243px;
}
#catalog .catalogList .catalogBox.big {
  width: 100%;
  margin: 0 auto;
}
#catalog .catalogList .catalogBox .catalogTtl {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
#catalog .catalogList .catalogBox .catalogTtl a {
  display: inline-block;
  position: relative;
  padding-left: 35px;
}
#catalog .catalogList .catalogBox .catalogTtl a::before {
  content: "";
  width: 29px;
  height: 29px;
  background: url(/base/pc/store/special/summergift/2026/img/top/icn.svg)
    no-repeat;
  /* background: url(../img/top/icn.svg) no-repeat; */

  background-size: contain;
  position: absolute;
  top: calc(50% - 14.5px);
  left: 0;
}
#catalog .catalogList .catalogBox .catalogPic {
  margin-top: 5px;
  box-shadow: 2px 2px 12px 0px #777777;
  overflow: hidden;
}
#catalog .catalogList .catalogBox.big .catalogPic {
  width: 339px;
  margin: 15px auto 0;
}
#catalog .catalogList .catalogBox .catalogPic img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
#catalog .catalogList .catalogBox .catalogPic img:hover {
  transform: scale(1.1);
}
#catalog .catalogTxt {
  margin-top: 23px;
  margin-left: 43px;
  font-weight: 500;
}
/*=====modal=====*/
#catalog .modalContents {
  display: none;
  position: fixed;
  z-index: 10001;
  width: 100%;
  max-width: 750px;
  max-height: 100%;
  /* background: #808080; */
  font-feature-settings: "palt";
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#catalog .modalContents .modalInner {
  width: 340px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}
#catalog .modalContents .modalBox {
  background: var(--gift-color-white);
  border: 2px solid var(--gift-color-main);
  border-radius: 10px;
  padding: 40px 20px 70px;
}
#catalog .modalContents .modalTtl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
#catalog .modalContents .modalTxt {
  margin-top: 30px;
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}
#catalog .modalContents .catalogBtn {
  width: 185px;
  margin: 15px auto 0;
  position: relative;
}
#catalog .modalContents .catalogBtn + .catalogBtn {
  margin-top: 15px;
}
#catalog .modalContents .catalogBtn a {
  display: block;
  width: 100%;
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  color: var(--gift-color-main);
  border: 2px solid var(--gift-color-main);
  border-radius: 10px;
  padding: 10px 0;
  position: relative;
}
#catalog .modalContents .catalogBtn.red a {
  color: var(--gift-color-white);
  background: var(--gift-color-main);
  border: none;
}
#catalog .modalContents .catalogBtn a::after {
  content: "";
  border-top: solid 3px var(--gift-color-main);
  border-right: solid 3px var(--gift-color-main);
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 7.5px);
  right: 8%;
}
#catalog .modalContents .catalogBtn.red a::after {
  border-top: solid 3px var(--gift-color-white);
  border-right: solid 3px var(--gift-color-white);
}
#catalog .modalContents .catalogBtn.off {
  pointer-events: none;
}
#catalog .modalContents .catalogBtn.off::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(000, 000, 000, 0.5);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
#catalog .modalContents .modalClose {
  position: absolute;
  top: 50px;
  right: 0;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
#catalog .modalContents .modalClose::before,
#catalog .modalContents .modalClose::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 5;
}
#catalog .modalContents .modalClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#catalog .modalContents .modalClose::before,
#catalog .modalContents .modalClose::after {
  background: var(--gift-color-white);
}
.modalBg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
/*=====modalここまで=====*/
#catalog .catalogApply {
  margin-top: 60px;
}
#catalog .catalogApply .catalogApplyTtl {
  font-size: 35px;
  font-weight: 500;
  text-align: center;
}
#catalog .catalogApply .catalogApplyBtn a {
  margin-top: 22px;
  display: block;
  width: 100%;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  color: var(--gift-color-main);
  border: 2px solid var(--gift-color-main);
  border-radius: 10px;
  padding: 30px;
  position: relative;
}
#catalog .catalogApply .catalogApplyBtn a span {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-left: 30px;
  padding-right: 70px;
  width: fit-content;
}
#catalog .catalogApply .catalogApplyBtn a span::after {
  content: "";
  border-top: solid 3px var(--gift-color-main);
  border-right: solid 3px var(--gift-color-main);
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 8.5px);
  right: 10px;
}
#catalog .catalogApply .catalogApplyTxt {
  margin-top: 12px;
  font-weight: 500;
  text-align: center;
}
#catalog .catalogApply .catalogApplyTxt .red {
  font-weight: 500;
  display: block;
  color: var(--gift-color-red);
}
#catalog .catalogApply .catalogApplyTxt .note {
  font-weight: 500;
  margin-top: 10px;
  display: block;
}
/*=====delivery=====*/
.delivery .deliveryPic {
  margin: 30px auto 0;
  width: 637px;
}
.delivery .deliveryTxt {
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
}
.delivery .deliveryTxt + .deliveryTxt {
  margin-top: 0;
}
.delivery .deliveryTxt.red {
  color: var(--gift-color-red);
  text-align: center;
}
.delivery .deliveryNote {
  width: 636px;
  margin: 30px auto 0;
  background: var(--gift-color-sub);
  padding: 20px 30px;
}
.delivery .deliveryNote .deliveryNotettl {
  font-size: 24px;
  font-weight: bold;
  color: var(--gift-color-main-dark);
  text-align: center;
}
.delivery .deliveryNote .deliveryNoteTxt,
.delivery .deliveryNoteTxt,
.delivery .carbonNeutralTxt {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.delivery .deliveryNote .deliveryNoteTxt {
  margin-top: 10px;
}
.delivery .carbonNeutralTxt {
  margin-top: 32px;
}
.delivery .deliveryNoteTxt .blue {
  color: var(--gift-color-blue);
}
.delivery .carbonNeutralImage {
  display: block;
  text-align: center;
  margin-top: 17px;
}
.delivery .deliveryImage {
  margin-top: 33px;
  width: 655px;
  margin-left: auto;
  margin-right: auto;
}
/*================================*/
/*おすすめコンテンツ*/
/*================================*/
.recommended {
}
.recommended .recommended__inner {
  margin-top: 24px;
}
.recommended .recommended__inner .recommendedBanner {
}
.recommended__movies {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}
/*======app=====*/
.app {
}
.appHeading {
  display: flex;
  column-gap: 20px;
  .appBox__img {
    width: 117px;
    height: auto;
    object-fit: contain;
  }
  .appHeading__text {
    text-align: center;
  }
}
.appBox {
  display: flex;
  gap: 18px;
  background: var(--gift-color-app);
  width: 636px;
  margin: 30px auto 0;
  padding: 20px;
  line-height: 1.45;
}
.appBox__txt {
  font-weight: 600;
  color: #fff;
  font-size: 33px;
  padding-top: 0.1em;
}
.appTxt {
  margin-top: 26px;
  font-size: 35px;
  font-weight: 500;
  max-width: 636px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.4;
  letter-spacing: -0.05em;
}
.app__note {
  margin-top: 26px;
  max-width: 636px;
  margin-right: auto;
  margin-left: auto;
  font-size: 25px;
  line-height: 1.6;
  font-weight: 500;
}
.app__btn {
  margin-top: 46px;
  display: block;
  width: 100%;
  max-width: 532px;
  margin-right: auto;
  margin-left: auto;
  font-size: 35px;
  color: var(--gift-color-app);
  text-align: center;
  border: 2px solid var(--gift-color-app);
  border-radius: 10px;
  padding: 30px 5%;
  position: relative;
  font-weight: 500;
}
.app__btnBox a::after {
  content: "";
  border-top: solid 3px var(--gift-color-app);
  border-right: solid 3px var(--gift-color-app);
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 8.5px);
  right: 11%;
}
/*======point=====*/
.point__title {
  text-align: center;
}
.point {
  background: url(/base/pc/store/special/summergift/2025/img/pointhaikei.jpg);
  padding: 20px;
  /* margin-top: 46px; */
  margin-top: 43px;
  margin-right: auto;
  margin-left: auto;
  width: 636px;
  background-size: cover;
}
.point__bnr {
  background: #fff;
  padding: 15px 30px;
  line-height: 1.45;
  border-radius: 20px;
}
.point__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.point__note {
  margin-top: 17px;
  max-width: 636px;
  margin-right: auto;
  margin-left: auto;
  font-size: 25px;
  line-height: 1.6;
  font-weight: 500;
}
.point__btn {
  margin-top: 17px;
  display: block;
  width: 100%;
  max-width: 532px;
  margin-right: auto;
  margin-left: auto;
  font-size: 35px;
  color: #e50012;
  text-align: center;
  border: 2px solid #e50012;
  border-radius: 10px;
  padding: 30px 5%;
  position: relative;
  font-weight: 500;
}
.point__btnBox a::after {
  content: "";
  border-top: solid 3px #e50012;
  border-right: solid 3px #e50012;
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 8.5px);
  right: 11%;
}
/*==========mainVisual=========*/
#mainVisual {
  margin-top: 80px;
  margin-bottom: 40px;
}
#mainVisual .mainVisual__head {
  display: flex;
}
#mainVisual .mainPic {
  margin-top: 29px;
  text-align: center;
  width: 47.5%;
  margin-left: 13px;
}
#mainVisual .genga {
  text-align: center;
  font-size: 21px;
  line-height: 30px;
  margin-top: 24px;
  letter-spacing: 0.05em;
}
#mainVisual .mainDoc {
  /* width: 65%; */
}
#mainVisual .mainPicTxt {
  margin-top: 24px;
  text-align: center;
  padding-left: 26px;
}
#mainVisual .mainVisualNote {
  margin-top: 106px;
  font-size: 25px;
  line-height: 38px;
  /* padding: 0 30px; */
  padding-left: 41px;
  text-align: justify;
  font-weight: 500;
}
#mainVisual .profTtl {
  margin-top: 15px;
  font-size: 25px;
  font-weight: bolder;
  /* font-family: "Noto Sans CJK JP", sans-serif; */
  font-feature-settings: "palt";
  font-weight: 600;
  padding: 0 3px;
}
#mainVisual .profTtl span {
  font-size: 29px;
  font-family: "Noto Serif CJK JP", serif;
  font-feature-settings: "palt";
  font-weight: 600;
  margin-left: 10px;
}
#mainVisual .profTxt {
  font-size: 25px;
  line-height: 41px;
  text-align: justify;
  padding: 1px 3px 0 3px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
/*=====specialContents=====*/
.specialContents {
  margin-top: 80px;
}
.specialContents .specialContentsBnr {
  margin: 35px auto 40px;
  width: 673px;
}

/*=====receiptBtn=====*/
.receiptBtn a {
  margin-top: 80px;
  display: block;
  width: 100%;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  color: var(--gift-color-main);
  border: 2px solid var(--gift-color-main);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  margin-bottom: 40px;
}
.receiptBtn a span {
  /* transform: translateX(10px); */
  padding-right: 46px;
  position: relative;
  padding-left: 44px;
  padding-right: 70px;
  display: block;
  width: fit-content;
}
.receiptBtn a span::after {
  content: "";
  border-top: solid 3px var(--gift-color-main);
  border-right: solid 3px var(--gift-color-main);
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 8.5px);
  right: 36px;
}
/* btnOnline
----------------*/
.btnWrap {
  height: 101px;
}
.btnWrap.off {
  display: none;
}
.btnOnline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gift-color-white);
}
.btnOnline.fixed {
  position: fixed;
  z-index: 999;
  left: calc(50% - 750px / 2);
  bottom: 0;
}
.btnOnline a {
  display: block;
}
.btnOnline .close {
  position: absolute;
  top: calc(50% - 25px);
  right: 3%;
  width: 30px;
  height: 31px;
  cursor: pointer;
}
/*=====footer=====*/
#footer {
  margin-top: 60px;
}
/* ------movie----------------*/
.movie__menu {
  margin-top: 25px;
  display: none;
}

.movie__wrap {
  width: 100%;
  margin: auto;
  position: relative;
  height: 846px;
  /* margin-top: 50px; */
}

.movie__width {
  position: absolute;
  width: 1040px;
  left: -27%;
  margin-left: 0;
  margin-right: 0;
}

.movie__items {
  display: flex;
  gap: 10px;
}
.movie__items p {
  text-align: center;
  /* background: var(--gift-color-sub); */
  padding: 20px 0;
  margin: 30px auto 0px;
  line-height: 1.6;
  font-size: 20px;
  font-weight: bold;
  color: var(--gift-color-main-dark);
}

.movie__btn {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  max-width: 690px;
  background-color: #005ead;
  color: #fff;
  padding: 30px 0;
  border: solid var(--gift-color-main);
  border-radius: 10px;
}
.movie__btn span {
  font-weight: bolder;
  font-size: 32px;
}

.movie__btn.open {
  background-color: #fff;
  color: #005ead;
  border-radius: 10px;
  transition: 0.4s ease;
}

.movie__btn::after {
  content: "";
  border-bottom: solid 3px #fff;
  border-right: solid 3px #fff;
  height: 15px;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 7.5px);
  right: 7%;
  width: 15px;
}

.movie__btn.open::after {
  border-bottom: none;
  border-right: none;
  border-top: solid 3px var(--gift-color-main);
  border-left: solid 3px var(--gift-color-main);
}

.movie__item__btn {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 25px;
  margin-top: 0;
  padding-bottom: 50px;
  font-weight: bolder;
}
.movie__item__btn::after {
  top: calc(81% - 7.5px);
  right: 48%;
  width: 15px;
}

.btn__space {
  letter-spacing: -0.8px;
}

.movie__item iframe {
  display: block;
  overflow: hidden;
  margin: auto;
}

@media (max-width: 1280px) {
  .movie__wrap {
    width: 690px;
    position: inherit;
    height: auto;
  }

  .movie__width {
    position: inherit;
    width: 100%;
    left: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .movie__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* margin-top: 50px; */
  }
  .movie__items p {
    width: 610px;
    font-size: 32px;
  }
  .calpis__space {
    letter-spacing: -0.1px;
  }
  .movie__item iframe {
    width: 610px;
    height: 1089px;
  }
  /* .movie__item__btn {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: 0;
  } */
}
.green {
  color: #00b050;
}
#calpis .red {
  color: var(--gift-color-red);
}
/* ------movie end----------------*/
