@charset "utf-8";

/* sp - 599px */
/* tablet 560px - 959px */
/* PC 960px - */

.notes-sec {
  padding: 75px 0;
  background-color: var(--navy);
  color: var(--beige);
}
.notes-sec a {
  color: var(--beige);
}
.notes-sec-ttl {
	margin-bottom: 18px;
	padding: 0 8%;
}
.notes-sec-ttl .jpn {
	display: block;
	font-size: 1.1rem;
	line-height: 1.4;
	transform: translateY(25px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .1s;
}
.notes-sec-ttl .eng {
	display: block;
	font-family: var(--font-eng1);
	letter-spacing: 0.01em;
	font-size: 3.8rem;
	line-height: 1.4;
	transform: translateY(25px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .15s;
}
.notes-sec.scroll-in .notes-sec-ttl .jpn,
.notes-sec.scroll-in .notes-sec-ttl .eng {
	transform: translateY(0);
	opacity: 1;
}
.notes-sec-tagline {
	margin-bottom: 40px;
	padding: 0 8%;
  font-size: 1.2rem;
	transform: translateY(25px);
	opacity: 0;
	transition: all 1.0s;
	transition-delay: .3s;
}
.notes-sec.scroll-in .notes-sec-tagline {
	transform: translateY(0);
	opacity: 1;
}
.notes-sec-tagline span {
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
}
.notes-sec-tagline span::after {
	content: "";
	position: absolute;
	left: 2px;
	bottom: 0;
	width: 100%;
	height: 1px;
	margin: auto;
	background-image: linear-gradient(to right, var(--beige), var(--beige) 1px, var(--beige) 1px, var(--beige) 3px);
	background-size: 3px 1px;
	background-repeat: repeat-x;
}
.notes-sec-slide-btn {
  display: none;
}
.notes-sec-list-wrap {
	padding-left: 8%;
}
.notes-sec-list {
	margin-bottom: 50px;
}
.notes-sec-list li {
	position: relative;
	width: 250px;
  height: auto;
	margin-right: 30px;
	vertical-align: top;
	transform: translateY(28px);
	opacity: 0;
	transition: all 1.0s;
}
.notes-sec-list.scroll-in li {
	transform: translateY(0);
	opacity: 1;
}
.notes-article-img {
	margin-bottom: 20px;
}
.notes-article-info {
	position: relative;
}
.notes-article-category {
	display: inline-block;
	border: 1px solid var(--beige);
	line-height: 0.8;
}
.notes-article-category span {
	display: inline-block;
	padding: 0 5px 4px;
	font-size: 1.0rem;
	transform: scale(0.9);
	transform-origin: center center;
	letter-spacing: 0.01em;
	line-height: 0.8;
}
.notes-article-date {
	position: absolute;
	top: 6px;
	right: 0;
	font-family: var(--font-jpn2);
	letter-spacing: 0.06em;
	font-size: 1.0rem;
}
.notes-article-ttl {
	margin: 7px 0 12px;
	font-size: 1.8rem;
	line-height: 1.6;
}
.notes-list-excerpt {
	font-size: 1.2rem;
	line-height: 2.2;
}
.notes-sec-btn {
  margin-top: 55px;
	padding-right: 8%;
	text-align: right;
	transform: translateY(20px);
	opacity: 0;
	transition: all 1.0s;
}
.notes-sec-btn.scroll-in {
	transform: translateY(0);
	opacity: 1;
}










@media only screen and (min-width: 560px) {
  .notes-sec {
    padding: 100px 0;
  }
  .notes-article-category {
    line-height: 1.0;
  }
  .notes-article-category span {
    line-height: 1.0;
  }
}










@media only screen and (min-width: 960px) {
  .notes-sec {
    position: relative;
    margin-bottom: 0;
    padding-top: 170px;
    padding-bottom: 130px;
  }
  .notes-sec-ttl {
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    top: 175px;
    left: 9.4%;
    margin: 0;
    padding: 0;
  }
  .notes-sec-ttl .jpn {
    display: inline-block;
    padding-top: 3px;
    font-size: 1.2rem;
    letter-spacing: 0.25em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    vertical-align: top;
    transform: translateY(35px);
  }
  .notes-sec-ttl .eng {
    display: inline-block;
    margin-right: 8px;
    font-size: 4.2rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    vertical-align: top;
    transform: translateY(35px);
  }
  .notes-sec-tagline {
    margin-bottom: 55px;
    padding: 0 0 0 23%;
    font-size: 1.5rem;
    transform: translateY(35px);
  }
  .notes-sec-slide-btn {
    display: flex;
    position: absolute;
    top: -87px;
    right: 120px;
    width: 112px;
    margin: 0;
    text-align: right;
  }
  .notes-sec-slide-btn svg {
    display: none;
  }
  .notes-sec-slide-btn .prev-btn,
  .notes-sec-slide-btn .next-btn {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--navy);
    border-radius: 50%;
    border: 1px solid var(--beige);
    opacity: 0;
    transition: all .4s;
  }
  .notes-sec.scroll-in .notes-sec-slide-btn button {
    transform: translateY(0);
    opacity: 1;
  }
  .notes-sec-slide-btn .prev-btn:hover,
  .notes-sec-slide-btn .next-btn:hover {
    background-color: var(--beige);
  }
  .notes-sec-slide-btn .prev-btn {
    margin-right: 12px;
  }
  .notes-sec-slide-btn .prev-btn::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 15px;
    width: 17px;
    height: 5px;
    background: url(../../images/common/slide-arrow-left-beige.svg) 0 0 no-repeat;
    background-size: 17px 5px;
    transition: all .4s;
  }
  .notes-sec-slide-btn .prev-btn:hover::before {
    left: 12px;
    background: url(../../images/common/slide-arrow-left-black.svg) 0 0 no-repeat;
  }
  .notes-sec-slide-btn .next-btn::before {
    content: "";
    position: absolute;
    top: 21px;
    right: 15px;
    width: 17px;
    height: 5px;
    background: url(../../images/common/slide-arrow-right-beige.svg) 0 0 no-repeat;
    background-size: 17px 5px;
    transition: all .4s;
  }
  .notes-sec-slide-btn .next-btn:hover::before {
    right: 12px;
    background: url(../../images/common/slide-arrow-right-black.svg) 0 0 no-repeat;
  }
  .notes-sec-list-wrap {
    padding-left: 23%;
  }
  .notes-sec-list {
    margin-bottom: 60px;
  }
  .notes-sec-list li {
    width: 350px;
    margin-right: 50px;
    transform: translateY(38px);
  }
  .notes-article-img {
    margin-bottom: 25px;
    overflow: hidden;
  }
  .notes-article-img span img {
    transform: scale3d(1,1,1);
    transition: all .5s;
  }
  .notes-sec-list a:hover .notes-article-img span img {
    transform: scale3d(1.07,1.07,1.07);
  }
  .notes-article-category {
    line-height: 1.0;
  }
  .notes-article-category span {
    padding: 1px 7px 2px;
    font-size: 1.1rem;
    transform: scale(1.0);
    line-height: 1.0;
  }
  .notes-article-date {
    top: 5px;
    font-size: 1.1rem;
  }
  .notes-article-ttl {
    margin: 12px 0 15px;
    font-size: 2.1rem;
  }
  .notes-article-ttl span {
    position: relative;
    display: inline-block;
  }
  .notes-article-ttl span::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--beige);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .4s;
  }
  .notes-sec-list a:hover .notes-article-ttl span::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .notes-article-excerpt {
    font-size: 1.4rem;
  }
  .notes-sec-btn {
    margin-top: 60px;
    padding-right: 120px;
  }
}
