.swiper-container {
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
}


#one {
  padding: 0rem 0rem 0;
  height: 100%;
  position: relative;
  z-index: 9;
  background-color: #F5F0E6;
  color: #6F1315;
}

.one-circle_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.one-circle {
  content: "";
  width: 100%;
  height: 100%;
  transform: rotate(-16deg);
  top: 0;
  background-color: #a6515100;
  background-image: radial-gradient(48% 44%, rgba(242, 242, 242, 0.32), transparent);
  pointer-events: none;
}

@keyframes GradietionAnimation {
  0% {
    background-position: 0% 30%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 30%
  }
}

#one .inner {
  width: 100%;
}

.t-caution {
  width: 100%;
  margin: 0 auto;
  color: #2F2A27;
}

.t-caution p {
  width: fit-content;
  text-align: left;
  margin: 0 auto;
  max-width: 560px;
}

@media screen and (max-width:767px) {
  #one {
    text-align: left;
  }

  #one .inner {
    width: 100%;
  }
}


/* ========================================
	Campaign
======================================== */

/* ========================================
Base
======================================== */

.p-gift {
	--gift-green: #3f895b;
	--gift-beige: #ded0c0;
	--gift-gold: #a98c24;
	--gift-gray: #777;
	--gift-brown: #8d7a4e;

	width: 100%;
	color: #fff;
	overflow: hidden;
}

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

.p-gift img {
	display: block;
	max-width: 100%;
}

.p-gift__inner {
	width: min(100% - 64px, 1440px);
	margin-inline: auto;
}


/* ========================================
Header
======================================== */

.p-gift__head {
	position: relative;
	background:
		linear-gradient(
			90deg,
			#81734d 0%,
			#c6ac70 35%,
			#a18c59 70%,
			#80724b 100%
		);
	border-top: 5px solid #171207;
	border-bottom: 5px solid #33260d;
}

.p-gift__headInner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap:6px;
	width: min(100% - 64px, 1440px);
	min-height: 92px;
	margin-inline: auto;
	margin: 1.2rem 0;
}

.p-gift__headTitle {
	display: flex;
	align-items: baseline;
	gap: 30px;
}

.p-gift__headMain {
	font-family: serif;
	font-size: clamp(28px, 2.6vw, 44px);
	letter-spacing: 0.18em;
	white-space: nowrap;
}

.p-gift__headSub {
	font-family: serif;
	font-size: clamp(13px, 1.4vw, 20px);
	font-weight: 700;
	white-space: nowrap;
}

.p-gift__period {
	display: flex;
	align-items: baseline;
	gap: 4px;
	font-family: serif;
	white-space: nowrap;
}

.p-gift__period strong {
	font-size: clamp(30px, 3vw, 50px);
	font-weight: 400;
	letter-spacing: 0.05em;
}

.p-gift__period small {
	font-size: 14px;
}


/* ========================================
A course
======================================== */

.p-gift-a {
	padding: 5rem 0;
	background: var(--gift-green);
}

.p-gift-a__head {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	gap: 50px;
	align-items: center;
	padding-bottom: 28px;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
}

.p-gift-a__course {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin: 0;
	font-weight: 300;
	line-height: 1.2;
}

.p-gift-a__courseLetter {
	font-size: clamp(30px, 3.2vw, 50px);
	white-space: nowrap;
}

.p-gift-a__courseName {
	font-size: clamp(21px, 2.2vw, 34px);
}

.p-gift-a__lead {
	margin: 0;
	font-size: clamp(12px, 1vw, 16px);
	font-weight: 600;
	line-height: 1.55;
}

.p-gift-a__title {
	width: min(70%, 900px);
	margin: 52px 0 40px;
}

.p-gift-a__title img {
	width: 100%;
	height: auto;
}


/* ========================================
A course marquee
======================================== */

.catalog-marquee {
	--marquee-gap: 18px;
	--marquee-height: 170px;
	--marquee-speed: 45s;

	width: 100%;
	overflow: hidden;
}

.catalog-marquee__track {
	display: flex;
	width: max-content;
	gap: var(--marquee-gap);
	will-change: transform;
	animation:
		catalog-marquee
		var(--marquee-speed)
		linear
		infinite;
}

.catalog-marquee__group {
	display: flex;
	flex: 0 0 auto;
	gap: var(--marquee-gap);
}

.catalog-marquee__item {
	flex: 0 0 auto;
	height: var(--marquee-height);
	overflow: hidden;
}

.catalog-marquee__item img {
	width: auto;
	max-width: none;
	height: 100%;
	object-fit: cover;
}

@keyframes catalog-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform:
			translateX(
				calc(-50% - (var(--marquee-gap) / 2))
			);
	}
}


/* ========================================
A note
======================================== */

.p-gift-a__note {
	width: fit-content;
	max-width: 70%;
	margin: 28px 0 0 auto;
	font-size: 12px;
	line-height: 1.6;
}

.p-gift-a__note p {
	margin: 0;
}

.p-gift-a__noteMain {
	margin-bottom: 5px !important;
	padding: 2px 12px;
	border: 1px solid rgba(255, 255, 255, 0.5);
}


/* ========================================
B / C
======================================== */

.p-gift-select {
	padding: 38px 0 15px;
	background: var(--gift-beige);
	color: #fff;
}

.p-gift-select__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
	max-width: 1240px;
	margin-inline: auto;
}

.p-gift-card {
	position: relative;
	min-height: 610px;
	padding: 34px 46px 28px;
}

.p-gift-card--b {
	background:
		linear-gradient(
			135deg,
			#bea02a,
			#a2831f
		);
}

.p-gift-card--c {
	background:
		linear-gradient(
			90deg,
			#7c7c7c,
			#969696,
			#747474
		);
}


/* English SVG */

.p-gift-card__english {
	width: min(75%, 430px);
	margin: 0 auto 22px;
}

.p-gift-card__english img {
	width: 100%;
	height: auto;
}


/* Course title */

.p-gift-card__course {
	margin: 0 0 20px;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(255,255,255,.35);
	font-size: clamp(24px, 2.2vw, 38px);
	font-weight: 300;
	line-height: 1.2;
}

.p-gift-card__course span {
	font-size: 0.7em;
}


/* content */

.p-gift-card__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, 0.9fr);
	gap: 20px;
	align-items: center;
}

.p-gift-card__visual img {
	width: 100%;
	height: auto;
}

.p-gift-card__description {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.55;
}

.p-gift-card__target {
	margin: 20px 0 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.7;
	text-align: center;
}


/* C */

.p-gift-card__description--c {
	margin-bottom: 18px;
}

.p-gift-card__visual--digital {
	width: min(45%, 200px);
	margin: 0 auto 18px;
}

.p-gift-card__points {
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.p-gift-card__points p {
	margin: 7px 0;
}

.p-gift-card__points strong {
	font-size: 15px;
	font-weight: 400;
}


/* ========================================
Target vehicles
======================================== */

.p-gift-target {
	display: flex;
	align-items: stretch;
	width: min(100%, 1120px);
	margin: 32px auto 0;
	color: #3c352e;
	background: #fff;
}

.p-gift-target__label {
	display: flex;
	flex: 0 0 70px;
	justify-content: center;
	align-items: center;
	padding: 12px 8px;
	background: #766348;
	color: #fff;
	font-family: serif;
	font-size: 18px;
	line-height: 1.3;
	text-align: center;
}

.p-gift-target__scroll {
	flex: 1;
	min-width: 0;
}

.p-gift-target__table {
	width: 100%;
}

.p-gift-target__row {
	display: flex;
	min-height: 35px;
	border-bottom: 1px solid #ccc;
}

.p-gift-target__row:last-child {
	border-bottom: 0;
}

.p-gift-target__type {
	flex: 0 0 180px;
	padding: 8px 12px;
	background: #eee9df;
	font-size: 11px;
	font-weight: 700;
}

.p-gift-target__models {
	padding: 8px 12px;
	font-size: 1rem;
}

.p-gift__imageNote {
	width: min(100%, 1240px);
	margin: 10px auto 0;
	color: #5b5045;
	font-size: 9px;
	text-align: right;
}


/* ========================================
Contact
======================================== */

.p-gift-contact {
	padding: 22px 0 28px;
	background: #f3ece4;
	color: #302b26;
}

.p-gift-contact__main {
	margin: 0 0 8px;
	font-size: 1rem;
}

.p-gift-contact__main strong {
	font-size: 0.95rem;
}

.p-gift-contact__text {
	margin: 0 0 8px;
	font-size: 0.85rem;
}

.p-gift-contact__legal {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.6;
}


/* ========================================
SP
======================================== */

@media screen and (max-width: 767px) {

	.pc {
		display: none;
	}

	.p-gift__inner {
		width: calc(100% - 32px);
	}


	/* header */

	.p-gift__headInner {
		display: block;
		width: calc(100% - 32px);
		padding: 18px 0 15px;
	}

	.p-gift__headTitle {
		display: block;
	}

	.p-gift__headMain {
		display: block;
		margin-bottom: 5px;
		font-size: 25px;
	}

	.p-gift__headSub {
		display: block;
		font-size: 11px;
		white-space: normal;
	}

	.p-gift__period {
		justify-content: flex-start;
		margin-top: 12px;
		flex-wrap: wrap;
	}
	.p-gift__period > :first-child {
	flex-basis: 100%;}

	.p-gift__period strong {
		font-size: 28px;
	}


	/* A */

	.p-gift-a {
		padding: 28px 0 38px;
	}

	.p-gift-a__head {
		display: block;
		padding-bottom: 20px;
	}

	.p-gift-a__course {
		display: block;
	}

	.p-gift-a__courseLetter {
		display: block;
		font-size: 30px;
	}

	.p-gift-a__courseName {
		display: block;
		margin-top: 4px;
		font-size: 20px;
	}

	.p-gift-a__lead {
		margin-top: 22px;
		font-size: 11px;
	}

	.p-gift-a__title {
		width: 95%;
		margin: 38px 0 30px;
	}


	/* marquee */

	.catalog-marquee {
		--marquee-height: 120px;
		--marquee-gap: 10px;
		--marquee-speed: 35s;
	}

	.p-gift-a__note {
		width: 100%;
		max-width: none;
		margin-top: 22px;
		font-size: 10px;
	}


	/* B/C */

	.p-gift-select {
		padding-top: 25px;
	}

	.p-gift-select__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.p-gift-card {
		min-height: 0;
		padding: 28px 20px 25px;
	}

	.p-gift-card__english {
		width: 75%;
		margin-bottom: 18px;
	}

	.p-gift-card__course {
		font-size: 28px;
	}

	.p-gift-card__content {
		grid-template-columns: 1fr;
	}

	.p-gift-card__description {
		font-size: 12px;
	}

	.p-gift-card__target {
		font-size: 1rem;
		text-align: left;
	}

	.p-gift-card__visual--digital {
		width: 45%;
	}


	/* Target */

	.p-gift-target {
		width: 100%;
		margin-top: 25px;
	}

	.p-gift-target__label {
		flex-basis: 56px;
		font-size: 14px;
	}

	.p-gift-target__scroll {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}

	.p-gift-target__table {
		width: max-content;
		min-width: 900px;
	}

	.p-gift-target__row {
		flex-wrap: nowrap;
	}

	.p-gift-target__models {
		white-space: nowrap;
	}


	/* contact */

	.p-gift-contact {
		padding: 20px 0;
	}

	.p-gift-contact__main {
		font-size: 11px;
		line-height: 1.7;
	}

	.p-gift-contact__main strong {
		font-size: 11px;
	}

}


/* ========================================
Reduced motion
======================================== */

@media (prefers-reduced-motion: reduce) {

	.catalog-marquee__track {
		animation-play-state: paused;
	}

}