@charset "utf-8";

.noCopy {
	position: relative;
}
.noCopy::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0);
}
@media print {
	.noCopy {
		display: none;
	}
	.noPrint {
		display: none;
	}
}

@media screen and (max-width: 767px){
	.onlyPC {
		display: none;
	}
}
@media screen and (min-width: 768px){
	.onlySP {
		display: none;
	}
}

.dib {
	display: inline-block;
}

.mainvisual {
	margin-top: -1.5em;
}
.mainvisual img {
	vertical-align: top;
	width: 100%;
}

.mainArea {
	background: url(../../2024/images/bg_01.png) repeat 50% 0 #000;
	padding: 100px 20px 120px;
	font-family: "Shippori Mincho", serif;
	color: #fff;
	letter-spacing: 0.05em;
	overflow: hidden;
}
.mainArea > .inner {
	max-width: 1200px;
	margin: 0 auto;
}
.mainArea h2, .mainArea h3, .mainArea h4 {
	font-weight: normal;
}
@media screen and (max-width: 1000px){
	.mainArea {
		margin-bottom: 10vw;
		background-size: 100% auto;
		padding: 80px 20px 90px;
	}
}
@media screen and (max-width: 767px){
	.mainArea {
		padding: 12vw 5vw;
	}
}

.showAnime {
	position: relative;
	transition: all 0.5s;
	opacity: 0;
}
.showAnime.show {
	top: 0;
	left: 0;
	opacity: 1;
}
.anime01 {
	top: 80px;
}
.anime02 {
	top: 80px;
	left: -120px;
}
.anime03 {
	top: 80px;
	left: 120px;
}
.subAnime {
	transition: all 0.5s;
	opacity: 0;
}
.showAnime.show .subAnime {
	opacity: 1;
}
.delay1 {
	transition-delay: 0.5s;
}
.delay2 {
	transition-delay: 1.0s;
}
.delay3 {
	transition-delay: 1.5s;
}
.delay4 {
	transition-delay: 2.0s;
}
@media screen and (max-width: 767px){
	.anime02 {
		left: 0;
	}
	.anime03 {
		left: 0;
	}
}

.cmArea {
	text-align: center;
}
.cmArea h2 {
	margin-bottom: 60px;
	font-size: 50px;
}
.cmArea h3 {
	margin-bottom: 35px;
	font-size: 24px;
}
.cmArea h3 span {
	margin-left: 15px;
	display: inline-block;
	vertical-align: 2px;
	border: 1px solid #858585;
	padding: 5px 7px 3px 10px;
	font-size: 14px;
}
.cmArea .movieCol {
	margin: 60px 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 65px 3.4%;
}
.cmArea .movieCol .col {
	width: 48.3%;
}
.cmArea .movieCol .col.col1 {
	width: 60%;
}
.cmArea .movieCol .col.col1 h3 {
	font-size: 30px;
}
.movie {
	position: relative;
	max-width: 580px;
	margin: 0 auto;
}
.movie a {
	display: block;
}
.movie .btn-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2
}
.video {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}
.video::before {
	content: '';
	display: block;
	width: 100%;
	padding-top: 56.25%;
}
.video video,
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video .thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	cursor: pointer;
}
.cmArea .note {
	text-align: left;
	margin-top: 5px;
}
@media screen and (max-width: 1000px){
	.cmArea h2 {
		margin-bottom: 5vw;
		font-size: 42px;
	}
	.cmArea .movieCol {
		gap: 40px 3.4%;
	}
	.cmArea h3 {
		margin-bottom: 25px;
	}
}
@media screen and (max-width: 767px){
	.cmArea h2 {
		font-size: 6.5vw;
	}
	.cmArea h3 {
		margin-bottom: 5vw;
		font-size: 5vw;
	}
	.cmArea h3 span {
		margin-left: 3vw;
		vertical-align: 0.1em;
		padding: 1vw 2vw 1vw 3vw;
		font-size: 3.6vw;
	}
	.cmArea .movieCol {
		flex-direction: column;
		gap: 8vw;
	}
	.cmArea .movieCol .col {
		width: 100%;
	}
	.cmArea .movieCol .col.col1 {
		width: 100%;
	}
	.cmArea .movieCol .col.col1 h3 {
		font-size: 5vw;
	}
	.cmArea .note {
		font-size: 2.6vw;
	}
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 200;
	background-color: rgba(0,0,0,0.7);
	display: none;
	overflow-y: auto;
}
.modal .closeBtn {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 38px;
	right: 38px;
	mix-blend-mode: difference;
	z-index: 2;
	cursor: pointer;
}
.modal .closeBtn::before,
.modal .closeBtn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1px;
	height: 30px;
	background-color: #fff;
	transform: translateY(-15px) rotate(45deg);
	transition: transform .3s ease-out
}
.modal .closeBtn::after {
	transform: translateY(-15px) rotate(-45deg);
	transition: transform .4s ease-out
}
.modal .inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.modal .window {
	width: calc(100% - 240px);
	max-height: 95vh;
}
.modal .movie {
	position: relative;
	max-width: none;
	padding-top: 56.25%;
}
.modal .movie iframe,
.modal .movie video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media(hover: hover),(-ms-high-contrast: none) {
	.modal .closeBtn:hover:before {
		transform:translateY(-15px) rotate(135deg);
	}
	.modal .closeBtn:hover:after {
		transform: translateY(-15px) rotate(45deg);
	}
}
@media screen and (max-width: 1000px){
	.modal .window {
		width: calc(100% - 40px);
	}
}
@media screen and (max-width: 767px){
	.modal .window {
		width: 100%;
	}
}

.snsArea {
	margin: 80px 0 120px;
	border-top: 1px solid rgba(255,255,255,0.2);
	border-bottom: 1px solid rgba(255,255,255,0.2);
	padding: 30px 0;
}
.snsArea ul {
	display: flex;
	justify-content: center;
	gap: 30px;
}
.snsArea li {
	width: 40px;
}
@media screen and (max-width: 767px){
	.snsArea {
		margin: 40px 0 60px;
		padding: 15px 0;
	}
	.snsArea ul {
		gap: 20px;
	}
}

.fullImg img {
	width: 100%;
	vertical-align: top;
}

.smartaccess {
	margin: 120px 0 55px;
}
.smartaccess .titleArea {
	margin-bottom: 70px;
	text-align: center;
}
.smartaccess .lead {
	margin-bottom: 20px;
	font-size: 24px;
}
.smartaccess .visual {
	margin-bottom: 40px;
	position: relative;
}
.smartaccess .visual div{
  position: absolute;
  top: 316px;
  z-index: 1;
}
.smartaccess .visual div.popup01{
  left: 315px;
}
.smartaccess .visual div.popup02{
  right: 390px;
}
.smartaccess .visual div span{
  width: 23px;
  height: 23px;
  display: block;
  border-radius: 50%;
  background-image: linear-gradient(180deg, rgba(246, 226, 123, 1), rgba(179, 145, 41, 1) 70%);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.smartaccess .visual div::before,
.smartaccess .visual div::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(246, 226, 123, 1), rgba(179, 145, 41, 1) 70%);
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: pulsate 2s linear infinite;
  z-index: -1;
}
.smartaccess .visual div::after {
  animation-delay: 1s;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
.smartaccess .textArea {
	margin: 30px 0 40px;
}
.smartaccess .detail {
	margin: 0 0 10px;
	display: flex;
	align-items: center;
}
.smartaccess .detail p {
	line-height: 2;
}
.smartaccess .note {
	font-size: 14px;
	opacity: 0.6;
	letter-spacing: 0.08em;
}
.smartaccess .popup{
  width: 500px;
  color: #000;
  padding: 40px 0;
  background: rgba(255,255,255,.9);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-45%);
  z-index: 102;
  display: none;
}
.smartaccess .popup section{
  display: none;
}
.smartaccess .popup > div{
  width: 100%;
  max-height: 70vh;
  padding: 0 50px;
  box-sizing: border-box;
  overflow: auto;
}
.smartaccess .popup h2{
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 10px;
  padding-left: 5px;
  border-left: 4px solid #000;
}
.smartaccess .popup .popup01 h2:first-of-type{
  color: #548234;
  border-left-color: #548234;
}
.smartaccess .popup .popup01 h2:nth-of-type(2){
  color: #8e2e33;
  border-left-color: #8e2e33;
}
.smartaccess .popup .popup01 h2:last-of-type(){
  color: #0e4e6e;
  border-left-color: #0e4e6e;
}
.smartaccess .popup p{
  font-size: 12px;
  line-height: 1.7;
  font-weight: 400;
  margin-top: 5px;
}
.smartaccess .popup p + h2{
  margin-top: 35px;
}
.smartaccess .popup .p_close{
  width: 40px;
  position: absolute;
  top: -40px;
  right: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px){
	.smartaccess {
		margin: 60px 0 10vw;
	}
	.smartaccess .visual {
		margin: 0 -19vw 20px;
	}
	.smartaccess .visual div{
		top: 46%;
	}
	.smartaccess .visual div.popup01{
		left: 22%;
	}
	.smartaccess .visual div.popup02{
		right: 24%;
	}
	.smartaccess .visual div span{
		width: 5vw;
		height: 5vw;
	}
	.smartaccess .titleArea {
		margin-bottom: 8vw;
	}
	.smartaccess .lead {
		margin-bottom: 3vw;
		font-size: 3vw;
	}
	.smartaccess .textArea {
		margin: 15px 0 40px;
	}
	.smartaccess .detail {
		margin: 5vw 0;
		flex-direction: column;
		gap: 5vw;
	}
	.smartaccess .detail p {
		font-size: 3.4vw;
	}
	.smartaccess .note {
		margin-bottom: 5vw;
		font-size: 2.8vw;
	}
	.smartaccess .popup{
		width: 90vw;
		padding: 5vw 0;
		transform: translate(-50%,-40%);
	}
	.smartaccess .popup section{
		display: none;
	}
	.smartaccess .popup > div{
		width: 100%;
		max-height: 70vh;
		padding: 0 5vw;
		box-sizing: border-box;
		overflow: auto;
	}
	.smartaccess .popup h2{
		font-size: 4vw;
		line-height: 1;
		margin-bottom: 2vw;
		padding-left: 2vw;
		border-left: 1.5vw solid #000;
	}
	.smartaccess .popup p{
		font-size: 2.8vw;
		line-height: 1.6;
		font-weight: 400;
		margin-top: 1vw;
	}
	.smartaccess .popup p + h2{
		margin-top: 8vw;
	}
	.smartaccess .popup .p_close{
		width: 8vw;
		top: -8vw;
	}
}

.productCode {
	margin-top: 20px;
	display: inline-block;
	border: 1px solid #858585;
	padding: 2px 10px;
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.18em;
}
@media screen and (max-width: 767px){
	.productCode {
		margin-top: 3vw;
		padding: 1vw 4vw;
		font-size: 2.8vw;
	}
}

.btnArea {
	margin-top: 30px;
}
@media screen and (max-width: 767px){
	.btnArea {
		margin-top: 6vw;
	}
}

.linkBtn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 200px;
	height: 50px;
	background-color: #00442d;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	transition: all 0.2s;
}
.linkBtn:hover {
	opacity: 0.7;
}
.linkBtn::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform-origin: right top;
	transform: rotate(45deg);
}
@media screen and (max-width: 767px){
	.linkBtn {
		width: 55vw;
		height: 12vw;
		font-size: 3.4vw;
	}
	.linkBtn::after {
		right: 5vw;
		width: 2.5vw;
		height: 2.5vw;
	}
}

.features {
	margin-bottom: 100px;
}
.features h2 {
	margin-bottom: 20px;
	text-align: center;
	font-size: 36px;
	line-height: 1.6;
}
.features ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px 3.4%;
}
.features li {
	width: 48.3%;
}
.features a {
	position: relative;
	display: block;
	padding: 20px 35px 20px 39%;
	background-color: #141414;
	min-height: 158px;
	transition: all 0.2s;
}
.features a:hover {
	opacity: 0.7;
}
.features a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 12px;
	height: 12px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform-origin: right top;
	transform: rotate(45deg);
}
.features a img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto 0;
	width: 34.48%;
}
.features h3 {
	margin-bottom: 12px;
	font-size: 24px;
}
.features p {
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.08em;
}
.features .note {
	margin-top: 10px;
	padding-left: 1em;
	text-indent: -1em;
	font-size: 12px;
	color: #ccc;
	line-height: 1.3;
}
.features .note + .note {
	margin-top: 0;
}
@media screen and (max-width: 1280px){
	.features h2 {
		margin-bottom: 2vw;
		font-size: 3vw;
	}
	.features ul {
		gap: 3.5vw 3.4%;
	}
	.features a {
		padding: 1.5vw 2.8vw 1.5vw 39%;
		min-height: 13vw;
	}
	.features a::after {
		right: 1.5vw;
		width: 1vw;
		height: 1vw;
	}
	.features h3 {
		margin-bottom: 1vw;
		font-size: 2vw;
	}
	.features p {
		font-size: 1.4vw;
	}
}
@media screen and (max-width: 767px){
	.features {
		margin-bottom: 15vw;
	}
	.features h2 {
		margin-bottom: 4vw;
		font-size: 4.2vw;
	}
	.features ul {
		gap: 4vw 0;
	}
	.features li {
		width: 100%;
	}
	.features a {
		padding: 3vw 5.6vw 3vw 39%;
		min-height: 26vw;
	}
	.features a::after {
		right: 3vw;
		width: 2vw;
		height: 2vw;
	}
	.features h3 {
		margin-bottom: 2vw;
		font-size: 4vw;
	}
	.features p {
		font-size: 2.8vw;
	}
	.features .note {
		margin-top: 2vw;
		font-size: 2.6vw;
	}
}

.itemArea {
	margin-bottom: 110px;
}
.itemArea h2 {
	margin-bottom: 50px;
	text-align: center;
	font-size: 50px;
}
.itemArea ul {
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.itemArea li {
	width: 48.33%;
}
.itemArea .logo {
	display: flex;
	justify-content: center;
	max-width: 80%;
	margin: 0 auto;
}
.itemArea .logo img {
	max-width: 50%;
}
@media screen and (max-width: 1000px){
	.itemArea {
		margin-bottom: 10vw;
	}
	.itemArea h2 {
		margin-bottom: 4vw;
		font-size: 5vw;
	}
	.itemArea ul {
		margin-bottom: 4vw;
	}
	.itemArea li {
	width: 48.33%;
	}
}
@media screen and (max-width: 767px){
	.itemArea {
		margin-bottom: 15vw;
	}
	.itemArea h2 {
		margin-bottom: 6vw;
	}
	.itemArea ul {
		margin-bottom: 6vw;
		flex-direction: column;
		gap: 8vw;
	}
	.itemArea li {
		width: 100%;
	}
	.itemArea .logo {
		flex-wrap: wrap;
		gap: 5vw;
		max-width: 70%;
	}
	.itemArea .logo img {
		max-width: 100%;
	}
}

.highreso {
	position: relative;
	margin-bottom: 120px;
	padding: 60px 0 70px;
}
.highreso::before {
	content: '';
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
	right: 18%;
	bottom: 0;
	background-color: #141414;
}
.highreso .inner {
	position: relative;
}
.highreso h2 {
	margin-bottom: 50px;
	font-size: 42px;
}
.highreso .lead {
	margin-bottom: 10px;
	font-size: 18px;
}
.highreso h3 {
	margin-bottom: 30px;
	font-size: 30px;
	line-height: 1.6;
}
.highreso h3 .icon {
	margin-right: 15px;
	display: inline-block;
	border: 1px solid #fff;
	padding: 0 8px;
	font-size: 20px;
	vertical-align: 2px;
}
.highreso .main {
	position: relative;
	margin-bottom: 60px;
	padding-right: 68%;
	min-height: min(510px, 42vw);
}
.highreso .img {
	position: absolute;
	top: 6px;
	right: -14.47%;
	width: 80%;
}
.highreso p {
	line-height: 2;
}
.highreso .logo {
	margin: 30px 0;
}
.highreso .colArea {
	display: flex;
	justify-content: space-between;
}
.highreso .col {
	width: 47.1%;
}
.highreso .col + .col {
	margin-top: 110px;
}
.highreso .col > img {
	margin-bottom: 35px;
}
.highreso .imgCol {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.highreso .imgCol p {
	width: 58%;
}
.highreso .imgCol img {
	width: 38.9%;
	padding-top: 6px;
}
.highreso h4 {
	margin-bottom: 20px;
	font-size: 24px;
}
.highreso h4 sup {
	font-size: 15px;
}
.highreso .note {
	margin-top: 20px;
	font-size: 14px;
	opacity: 0.6;
	letter-spacing: 0.08em;
}
.highreso .note li {
	padding-left: 2em;
	text-indent: -2em;
}
.highreso .note li + li {
	margin-top: 8px;
}
@media screen and (max-width: 1000px){
	.highreso {
		padding: 40px 0 50px;
	}
	.highreso h2 {
		margin-bottom: 40px;
		font-size: 36px;
	}
	.highreso h3 {
		font-size: 24px;
	}
	.highreso .main {
		padding-right: 0;
	}
	.highreso .img {
		position: static;
		width: 100%;
		margin: 0 auto 30px;
	}
}
@media screen and (max-width: 767px){
	.highreso {
		margin-bottom: 15vw;
		padding: 8vw 0 12vw;
	}
	.highreso h2 {
		margin-bottom: 6vw;
		font-size: 8vw;
	}
	.highreso h3 {
		margin-bottom: 6vw;
		font-size: 5vw;
	}
	.highreso .main {
		margin-bottom: 8vw;
	}
	.highreso .img {
		margin: 0 auto 4vw;
	}
	.highreso p {
		font-size: 3.4vw;
	}
	.highreso .logo {
		margin: 8vw 0;
	}
	.highreso .colArea {
		flex-direction: column;
	}
	.highreso .col {
		width: 100%;
	}
	.highreso .col + .col {
		margin-top: 10vw;
	}
	.highreso .col > img {
		margin-bottom: 5vw;
	}
	.highreso h4 {
		margin-bottom: 4vw;
		font-size: 4.2vw;
	}
	.highreso h4 sup {
		font-size: 3vw;
	}
	.highreso .note {
		font-size: 3vw;
	}
}

.sound {
	margin-bottom: 120px;
	position: relative;
	padding: 60px 0 70px;
}
.sound::before {
	content: '';
	position: absolute;
	top: 0;
	left: 18%;
	right: calc(50% - 50vw);
	bottom: 0;
	background-color: #141414;
}
.sound .inner {
	position: relative;
}
.sound h2 {
	margin-bottom: 50px;
	text-align: center;
	font-size: 42px;
}
.sound .lead {
	margin-bottom: 30px;
	text-align: center;
	font-size: 30px;
}
.sound .imgCol {
	position: relative;
	padding-left: 51.7%;
}
.sound .imgCol h3 {
	margin-bottom: 20px;
}
.sound .imgCol .img {
	position: absolute;
	top: 0;
	left: -14.2%;
	width: 62.5%;
}
.sound .imgCol p {
	line-height: 2;
}
.sound .itemCol {
	margin-top: 25px;
	display: flex;
	justify-content: space-between;
}
.sound .itemCol .col {
	width: 48.3%;
}
.sound .icon {
	margin: 0 0 10px;
	display: inline-block;
	border: 1px solid #fff;
	padding: 0px 8px;
	font-size: 14px;
}
.sound h4 {
	font-size: 18px;
	letter-spacing: 0.08em;
}
.sound h4 + .productCode {
	margin: 10px 0 15px;
}
.sound .spec {
	margin: 15px 0 20px;
	min-height: 104px;
}
.sound .spec img {
	vertical-align: top;
}
.sound .note {
	margin-top: 20px;
	padding-left: 1em;
	text-indent: -1em;
	font-size: 14px;
	opacity: 0.6;
	letter-spacing: 0.08em;
	line-height: 1.3 !important;
}
@media screen and (max-width: 1000px){
	.sound {
		padding: 40px 0 50px;
	}
	.sound h2 {
		margin-bottom: 40px;
		font-size: 36px;
	}
	.sound .lead {
		font-size: 24px;
	}
	.sound .imgCol {
		padding-left: 0;
		max-width: 580px;
		margin: 0 auto;
	}
	.sound .imgCol h3 {
		text-align: center;
	}
	.sound .imgCol .img {
		position: static;
		width: 100%;
		margin: 0 auto 20px;
	}
	.sound .itemCol {
		max-width: 580px;
		margin: 40px auto 0;
	}
}
@media screen and (max-width: 767px){
	.sound {
		margin-bottom: 12vw;
		padding: 8vw 0;
	}
	.sound h2 {
		margin-bottom: 6vw;
		font-size: 8vw;
	}
	.sound .lead {
		margin-bottom: 5vw;
		font-size: 5vw;
	}
	.sound .imgCol h3 {
		margin-bottom: 5vw;
	}
	.sound .imgCol .img {
		margin: 0 auto 5vw;
	}
	.sound .imgCol p {
		font-size: 3.4vw;
	}
	.sound .itemCol {
		flex-direction: column;
		gap: 8vw;
		margin: 8vw auto 0;
	}
	.sound .itemCol .col {
		width: 75vw;
		margin: 0 auto;
	}
	.sound .itemCol img {
		width: 100%;
	}
	.sound h4 {
		font-size: 5vw;
	}
	.sound h4 + .productCode {
		margin: 3vw 0 5vw;
	}
	.sound .spec {
		margin: 3vw 0 5vw;
		min-height: 0;
	}
	.sound .note {
		font-size: 3vw;
	}
}

.movieArea {
	max-width: 580px;
	margin: 120px auto 0;
}
.movieArea h3 {
	margin-bottom: 35px;
	text-align: center;
	font-size: 24px;
}
@media screen and (max-width: 767px){
	.movieArea {
		margin: 15vw auto 0;
	}
	.movieArea h3 {
		margin-bottom: 5vw;
		font-size: 5vw;
	}
}

.campaignBanner {
	margin-bottom: 90px;
	text-align: center;
}
@media screen and (max-width: 767px){
	.campaignBanner {
		margin-bottom: 15vw;
	}
}

.itemLink {
	max-width: 1220px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.itemLink .col {
	width: 48.9%;
}
.itemLink a {
	display: block;
}
.itemLink img {
	vertical-align: top;
}
.itemLink .title {
	margin: 20px 0 10px;
	color: #00442d;
	font-size: 20px;
	font-weight: bold;
}
@media screen and (max-width: 1000px){
	.itemLink .title {
		font-size: 2vw;
	}
}
@media screen and (max-width: 767px){
	.itemLink {
		flex-direction: column;
		gap: 8vw;
	}
	.itemLink .col {
		width: 100%;
	}
	.itemLink .title {
		font-size: 20px;
	}
}

.footerNote {
	max-width: 1240px;
	margin: 30px auto 50px;
	text-align: right;
	font-size: 14px;
}
@media screen and (max-width: 767px){
	.footerNote {
		margin: 6vw auto 10vw;
		font-size: 3vw;
	}
}

.add110vArea {
	margin-bottom: 120px;
}
.add110vArea h2 {
	margin-bottom: 50px;
	text-align: center;
	font-size: 50px;
}
@media screen and (max-width: 1000px){
	.add110vArea h2 {
		margin-bottom: 6vw;
		font-size: 5vw;
	}
}
@media screen and (max-width: 767px){
	.add110vArea {
		margin-bottom: 10vw;
	}
	.add110vArea h2 {
		font-size: 7vw;
	}
}

.bannerArea {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 3.4%;
}
.bannerArea a {
	transition: opacity 0.2s;
}
.bannerArea a:hover {
	opacity: 0.8;
}
@media screen and (max-width: 767px){
	.bannerArea {
		justify-content: center;
		gap: 6vw;
	}
}

.functionArea {
	position: relative;
	margin-bottom: 125px;
	padding-bottom: 70px;
}
.functionArea::before {
	content: '';
	position: absolute;
	top: 160px;
	left: calc(50% - 50vw);
	right: 20%;
	bottom: 0;
	background-color: #141414;
}
.functionArea h2 {
	margin-bottom: 160px;
	text-align: center;
	font-size: 50px;
}
.functionArea .inner {
	position: relative;
}
.functionArea .lead {
	margin-bottom: 25px;
	font-size: 30px;
}
.functionArea h3 {
	margin-bottom: 45px;
	font-size: 42px;
}
.functionArea p {
	margin-top: 12px;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0;
}
.functionArea .note {
	margin-top: 5px;
	font-size: 14px;
	opacity: 0.6;
}
.functionArea .imgArea {
	margin-top: 35px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.functionArea .imgArea .col1 {
	width: 40%;
}
.functionArea .imgArea .col2 {
	width: 55%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px 9%;
}
.functionArea .imgArea .col {
	position: relative;
	width: 45.5%;
}
.functionArea .imgArea .col::before {
	content: '';
	position: absolute;
	top: 83px;
	left: -13%;
	border-left: 20px solid #fff;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
}
.functionArea .update {
	margin-top: 40px;
	width: 100%;
	border-top: 1px solid #a1a1a1;
	border-bottom: 1px solid #a1a1a1;
	padding: 15px 0;
	text-align: center;
}
.functionArea .update p {
	margin-top: 0;
}
@media screen and (max-width: 1000px){
	.functionArea {
		margin-bottom: 80px;
		padding-bottom: 50px;
	}
	.functionArea::before {
		top: 100px;
	}
	.functionArea h2 {
		margin-bottom: 100px;
		font-size: 42px;
	}
	.functionArea .lead {
		margin-bottom: 15px;
		font-size: 24px;
	}
	.functionArea h3 {
		margin-bottom: 30px;
		font-size: 36px;
	}
	.functionArea p {
		font-size: 16px;
		line-height: 1.6;
	}
	.functionArea .note {
		font-size: 12px;
	}
}
@media screen and (max-width: 767px){
	.functionArea {
		margin-bottom: 50px;
		padding-bottom: 40px;
	}
	.functionArea::before {
		top: 22vw;
	}
	.functionArea h2 {
		margin-bottom: 10vw;
		font-size: 6.8vw;
		line-height: 1.4;
	}
	.functionArea .lead {
		margin-bottom: 3vw;
		font-size: 3vw;
	}
	.functionArea h3 {
		margin-bottom: 5vw;
		font-size: 5.6vw;
	}
	.functionArea p {
		margin-top: 2vw;
		font-size: 3.4vw;
		line-height: 1.5;
	}
	.functionArea .note {
		margin-top: 1vw;
		font-size: 2.4vw;
	}
	.functionArea .imgArea {
		margin: 6vw 0;
		flex-direction: column;
		gap: 12vw;
	}
	.functionArea .imgArea .col1 {
		width: 100%;
	}
	.functionArea .imgArea .col2 {
		width: 100%;
		flex-direction: column;
		gap: 12vw 0;
	}
	.functionArea .imgArea .col {
		width: 85%;
		margin: 0 auto;
	}
	.functionArea .imgArea .col::before {
		top: -9vw;
		left: 0;
		right: 0;
		width: 0;
		margin: 0 auto;
		border-left: 5vw solid #fff;
		border-top: 4vw solid transparent;
		border-bottom: 4vw solid transparent;
		transform: rotate(90deg);
	}
	.functionArea .update {
		padding: 3vw 0;
	}
}

.aiArea {
	position: relative;
	margin-bottom: 120px;
	padding: 70px 0;
}
.aiArea::before {
	content: '';
	position: absolute;
	top: 0;
	left: 20%;
	right: calc(50% - 50vw);
	bottom: 0;
	background-color: #141414;
}
.aiArea .main {
	display: flex;
	flex-direction: row-reverse;
	gap: 0 2.9%;
	margin-left: max(-170px, calc(50% - 50vw));
}
.aiArea .main > div {
	position: relative;
}
.aiArea .img {
	position: relative;
	width: 54.74%;
	flex-shrink: 0;
}
.aiArea .img p {
	margin-top: 25px;
	max-width: 580px;
	margin-left: auto;
}
.aiArea .img .note {
	font-size: 14px;
	opacity: 0.6;
	letter-spacing: 0;
}
.aiArea .lead {
	margin-bottom: 25px;
	font-size: 30px;
}
.aiArea h2 {
	margin-bottom: 50px;
	font-size: 42px;
}
.aiArea p {
	font-size: 18px;
	line-height: 2;
}
.aiArea .colArea {
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
}
.aiArea .colArea .col {
	width: 30%;
}
.aiArea .colArea .col p {
	margin-top: 10px;
}
@media screen and (max-width: 1000px){
	.aiArea {
		margin-bottom: 80px;
		padding: 50px 0;
	}
	.aiArea .main {
		flex-direction: column;
		gap: 40px;
		margin-left: 0;
	}
	.aiArea .img {
		width: 80%;
	}
}
@media screen and (max-width: 767px){
	.aiArea {
		margin-bottom: 50px; 
		padding: 40px 0;
	}
	.aiArea .main {
		gap: 8vw;
	}
	.aiArea .img {
		width: 100%;
	}
	.aiArea .lead {
		margin-bottom: 3vw;
		font-size: 4vw;
	}
	.aiArea h2 {
		margin-bottom: 8vw;
		font-size: 6.5vw;
	}
	.aiArea p {
		font-size: 3.4vw;
		line-height: 1.5;
	}
	.aiArea .colArea {
		margin-top: 40px;
		flex-direction: column;
		gap: 30px;
		align-items: center;
	}
	.aiArea .colArea .col {
		width: 80%;
	}
}

.listeningArea {
	position: relative;
	margin-bottom: 100px;
	padding: 60px 0 70px;
}
.listeningArea::before {
	content: '';
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
	right: 20%;
	bottom: 0;
	background-color: #141414;
}
.listeningArea .inner {
	position: relative;
}
.listeningArea .lead {
	margin-bottom: 25px;
	font-size: 30px;
}
.listeningArea h2 {
	margin-bottom: 50px;
	font-size: 42px;
}
.listeningArea p {
	font-size: 18px;
	line-height: 2;
}
.listeningArea .img {
	position: relative;
	margin: 70px 0 25px;
}
.listeningArea .img img + img {
	position: absolute;
	top: 0;
	left: 0;
}
.listeningArea .note {
	margin-top: 20px;
	font-size: 14px;
	opacity: 0.6;
	letter-spacing: 0;
}
@media screen and (max-width: 1000px){
	.listeningArea {
		margin-bottom: 50px;
		padding: 50px 0;
	}
}
@media screen and (max-width: 767px){
	.listeningArea {
		margin-bottom: 30px;
		padding: 40px 0;
	}
	.listeningArea .lead {
		margin-bottom: 3vw;
		font-size: 4vw;
	}
	.listeningArea h2 {
		margin-bottom: 8vw;
		font-size: 6.5vw;
	}
	.listeningArea p {
		font-size: 3.4vw;
		line-height: 1.5;
	}
	.listeningArea .img {
		margin: 6vw 0 3vw;
	}
}

.anchorBtn {
	max-width: 410px;
	margin: 0 auto;
}
.anchorBtn a {
	position: relative;
	display: block;
	border: 1px solid #fff;
	padding: 15px 30px 15px 40px;
	text-align: center;
	transition: opacity 0.3s;
	letter-spacing: 0;
}
.anchorBtn a:hover {
	opacity: 0.7;
}
.anchorBtn a::after {
	content: '';
	position: absolute;
	top: 20px;
	left: 15px;
	width: 9px;
	height: 9px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: rotate(-45deg);
}
@media screen and (max-width: 767px){
	.anchorBtn a {
		padding: 12px 20px 12px 30px;
		font-size: 14px;
	}
	.anchorBtn a::after {
		top: 15px;
	}
}

.product {
	margin: 120px 0 100px;
}
.product h2 {
	margin-bottom: 60px;
	text-align: center;
	font-size: 50px;
}
.productArea {
	margin: 0 calc(50% - 48vw) 120px;
}
.productArea ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px 0;
	max-width: 1460px;
	margin: 0 auto;
}
.productArea li {
	width: 48.6%;
	background-color: #141414;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	gap: 0 6%;
}
.productArea .textArea {
	width: 43%;
	display: flex;
	flex-direction: column;
}
.productArea p {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.5;
}
.productArea h3 {
	margin-bottom: 15px;
	font-size: 20px;
}
.productArea h3 strong {
	font-size: 250%;
	font-weight: normal;
}
.productArea h3 small {
	font-size: 55%;
}
.productArea a {
	margin-top: auto;
	display: block;
	border-radius: 5px;
	background-color: #daac3a;
	padding: 8px;
	text-align: center;
	color: #000;
	font-family: sans-serif;
	font-size: 16px;
}
.productArea .img {
	width: 51%;
	flex-shrink: 0;
}
.product .lineup {
	margin-bottom: 60px;
	display: flex;
	justify-content: space-between;
	padding-bottom: 65px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.product .lineup li {
	width: 48.3%;
	font-size: 24px;
}
.product .lineup .img {
	position: relative;
	margin-bottom: 20px;
}
.product .lineup .img::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 50px;
	height: 50px;
	background-color: #00442d;
}
.product .lineup .img::after {
	content: '';
	position: absolute;
	right: 21px;
	bottom: 20px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}
.product .lineup .img img {
	vertical-align: top;
}
.shop {
	margin-bottom: 70px;
	font-size: 24px;
}
.shop .logo {
	margin-top: 25px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 2.84%;
}
.shop .logo a {
	width: 14.3%;
	padding: 10px 5px;
	background-color: #fff;
}
.shop .logo img {
	vertical-align: top;
}
.cashback {
	margin-bottom: 100px;
	text-align: center;
}
.bannerList {
	margin-bottom: 100px;
	text-align: center;
}
.bannerList li + li {
	margin-top: 40px;
}
@media screen and (max-width: 1360px) and (min-width: 1024px){
	.productArea li {
		padding: 20px;
	}
	.productArea .textArea {
		width: 55%;
	}
	.productArea p {
		font-size: 16px;
	}
	.productArea .img {
		width: 40%;
	}
}
@media screen and (max-width: 1023px){
	.productArea li {
		width: 100%;
		max-width: 730px;
		margin: 0 auto;
	}
	.shop .logo {
		gap: 20px 2.66%;
	}
	.shop .logo a {
		width: 23%;
	}
}
@media screen and (max-width: 767px){
	.product {
		margin-bottom: 80px;
	}
	.product h2 {
		margin-bottom: 6vw;
		font-size: 8vw;
	}
	.productArea {
		margin: 0 0 10vw;
	}
	.productArea li {
		padding: 5vw;
		flex-direction: column-reverse;
		gap: 5vw;
	}
	.productArea .textArea {
		width: 100%;
		display: block;
	}
	.productArea p {
		margin-bottom: 2vw;
		font-size: 4vw;
		line-height: 1.5;
	}
	.productArea h3 {
		margin-bottom: 4vw;
		font-size: 5.5vw;
	}
	.productArea h3 strong {
		font-size: 200%;
	}
	.productArea a {
		padding: 2vw;
		font-size: 3.4vw;
	}
	.productArea .img {
		width: 100%;
	}
	.productArea .img img {
		width: 100%;
	}
	.product .lineup {
		margin-bottom: 8vw;
		flex-direction: column;
		gap: 8vw;
		padding-bottom: 8vw;
	}
	.product .lineup li {
		width: 100%;
		font-size: 4.2vw;
	}
	.product .lineup .img {
		margin-bottom: 3vw;
	}
	.product .lineup .img::before {
		width: 10vw;
		height: 10vw;
	}
	.product .lineup .img::after {
		right: 4.2vw;
		bottom: 4vw;
		width: 2vw;
		height: 2vw;
	}
	.shop {
		margin-bottom: 50px;
		font-size: 4.3vw;
	}
	.shop .logo {
		margin-top: 5vw;
		gap: 4vw 5%;
	}
	.shop .logo a {
		width: 30%;
		padding: 2vw 1vw;
	}
	.cashback {
		margin-bottom: 60px;
	}
	.bannerList {
		margin-bottom: 60px;
	}
	.bannerList li + li {
		margin-top: 30px;
	}
}

.noteArea {
	background-color: #000;
	padding: 70px 20px;
}
.noteArea .inner {
	max-width: 1200px;
	margin: 0 auto;
	color: #fff;
}
.noteArea li {
	padding-left: 1em;
	text-indent: -1em;
}
@media screen and (max-width: 767px){
	.noteArea {
		padding: 8vw 5vw 2vw;
		font-size: 3vw;
	}
}

footer {
	padding-top: 0;
}
