@charset "UTF-8";

/*------------------------------------------------------------
  Common
------------------------------------------------------------ */
html {
  overflow-y: scroll;
}

html *{
	transition: all 0.2s ease;
	box-sizing: border-box;
}

html *:hover{
	transition: all 0.2s ease;
}


#suntory_contents *{
	font-weight: bold;
}

.s_pc {
	display: block;
}
.s_sp {
	display: none;
}


@media screen and (max-width: 767px){
	#suntory_contents img{
		width: 100%;
	}
	.s_pc {
		display: none;
	}
	.s_sp {
		display: block;
	}

}


/* js_scAnime */
.js_scAnime1,
.js_scAnime2 {
	opacity: 0;
}
.js_scAnime1.anime1 {
	animation-name: fadeup;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.js_scAnime2.anime2 {
	animation-name: fadein;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeup{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadein{
	0% {
		opacity: 0;
		transform: translateX(150px);
	}
	40% {
		opacity: 0;
		transform: translateX(150px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}


/* slide */
#slide_voice_wrap,#slide_column_wrap{
	background-color: #fff;
}

#slide_column_wrap .check{
	margin-top: 0;
}

#slide_column_wrap .pickup01{
	padding-top: 0;
}

.slick-dots li button {
    background: transparent !important;
    border: none !important;
    opacity: 1 !important;
}
.slick-dots li button:before {
    opacity: 1 !important;
    color: #ccc !important;
}
.slick-dots li.slick-active button:before {
    color: #011A5D !important;
    opacity: 1 !important;
}




/* modal */
.modal {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.modal-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  white-space: nowrap;
}
.modal-wrap::-webkit-scrollbar {
  display: none;
}
.modal-wrap:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;
}
.modal-bg {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(51, 51, 51, 0.8);
  width: 100%;
  height: 100%;
}
.modal-box {
  width: 100%;
  max-width: 960px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.modal-box .inner {
  padding: 0;
  text-align: left;
}
.modal-box .inner > :first-child {
  margin-top: 0;
}
.modalimgWrap {
	display: flex;
	justify-content: space-between;
}
.modalimgWrap img {
	width: 49%;
}
@media screen and (min-width: 768px) and ( max-width: 1164px) {
  .modal-box {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
	.modal-box {
		width: 80%;
	}
	.modalimgWrap img {
		width: 100%;
	}
	.modalimgWrap img:first-child {
		margin-bottom: 20px;
	}
	.modal-wrap {
		white-space: inherit;
	}
	.modalimgWrap {
		display: contents;
	}
}
.modal-close-btn {
	position: absolute;
	right: 0;
	top: -65px;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.modal-close-btn {
		top: -45px;
	}
}
.modal-close-btn:hover {
	opacity: 0.8;
}
.modal-close {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  border: 2px solid #333;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 767px) {
	.modal-close {
		width: 30px;
		height: 30px;
	}
}
.modal-close::before, .modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 34px;
  background: #333;
}
@media screen and (max-width: 767px) {
	.modal-close::before, .modal-close::after {
		height: 22px;
	}
}
.modal-close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}


