* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  background: #fff;
  color: #4E3230;
  font-size: 14px;
  line-height: 1.7;
}

/* ========== NAV ========== */
.nav {
  background: #fff;
  border-bottom: 2px solid #E8722A;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 12px;
  font-weight: 700;
  color: #E8722A;
  line-height: 1.3;
}

.nav-logo span {
  display: block;
  font-size: 9px;
  color: #888;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 16px;
}

.nav-link {
  font-size: 11px;
  color: #6f4b48;
  cursor: pointer;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.nav-link:hover {
  border-bottom-color: #E8722A;
  color: #E8722A;
}

/* ========== HERO ========== */
.hero {
  /*background: #FFF8F3;*/
  /*padding: 0 28px 100px;*/
  text-align: center;
	
	overflow: hidden;
}

.hero .box01{
	color: #fff;
  background: #FFF8F3;
  border-bottom-left-radius: 800px 200px;
  border-bottom-right-radius: 800px 200px;
  margin-left: -80px;
  margin-right: -80px;
	padding: 80px 100px 100px;
	background-image: url(/common/img/event/anniversary15th/FV_deco_pc.webp);
    background-position: center;
	position: relative;
}


/*.hero::after{
	content: '';
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(90deg, #F8F4ED, #F8F4ED 20px, #E68327 20px, #E68327 40px);
    position: absolute;
    transform: translateX(-50%);
    bottom: 0;
}*/

@media screen and (max-width: 767px){
	.hero .box01{
		background-image: none;
		padding: 80px;
	}
	.fv-bk-sp{
		background-image: url(/common/img/event/anniversary15th/FV_deco_sp.webp);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center top;
	}
}

.hero-logo{
	max-width: 300px;
	margin: 0 auto 3rem;
}
@media screen and (max-width: 767px){
	.hero-logo{
		max-width: 210px;
	}
}

.hero-year {
  font-size: 11px;
  color: #E8722A;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.hero-h1 {
  font-size: 22px;
  font-weight: 700;
  color: #4e3230;
  line-height: 1.6;
  margin-bottom: 14px;
}

.hero-h1 em {
  font-style: normal;
  color: #E8722A;
}

.hero-concept {
  font-size: 16px;
  color: #6f4b48;
  max-width: 500px;
  margin: 0 auto;
	line-height: 2.5;
}
@media screen and (max-width: 767px){
	.hero-concept{
		line-height: 1.9;
		padding: 0 20px;
	}
}

/* ========== SECTION BASE ========== */
.section {
  padding: 85px 28px;
}
@media screen and (max-width: 767px){
	.section{
		padding: 65px 28px;
	}
}

.section-gray {
  background: #f2f1ef;
}

.section-orange{
	background: #E8722A;
	background-image:
  repeating-linear-gradient(
    90deg,
    #db8b47 ,
    #db8b47 1px,
    transparent 1px,
    transparent 25px
  ),
  repeating-linear-gradient(
    0deg,
    #db8b47 ,
    #db8b47 1px,
    #E8722A 1px,
    #E8722A 25px
  );
}


.sec-label {
    font-size: 13px;
    font-weight: 700;
    color: #E8722A;
    letter-spacing: 0.12em;
    margin: 0 auto 10px;
    text-align: center;
}

.sec-title {
  font-size: 28px;
  font-weight: 700;
  color: #4E3230;
  margin-bottom: 40px;
  line-height: 1.4;
	text-align: center;
}

.sec-desc {
  font-size: 16px;
  color: #6f4b48;
  line-height: 1.8;
  margin-bottom: 24px;
	text-align: center;
}

.divider {
  border: none;
  border-top: 1px solid #EBEBEB;
  margin: 0;
}

.section-orange .sec-label,
.section-orange .sec-title,
.section-orange .sec-desc,
.section-orange .voice-intro-body{
	color: #fff
}

/* ========== TIMELINE ========== */
.tl-wrap {
  position: relative;
  padding-bottom: 50px;
}

.tl-line {
  position: absolute;
  left: 50%;
  top: 15px;
  bottom: 0;
  width: 2px;
  background: #F0D5C5;
}

.tl-item {
  position: relative;
  margin-bottom: 22px;
	width: 40%;
	margin-left: calc(50% + 90px);
	background: #fffbf3;
	padding: 1.5rem;
	border: 2px solid #F0D5C5;
	border-radius: 10px;
}
@media screen and (max-width: 767px){
	.tl-item{
		margin-left: 0;
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-bottom: 4rem;
        padding: 1.5rem;
	}
}

.tl-item:nth-child(2n+1){
	margin-left: calc(50% - 40% - 90px);
	text-align: right;
}
@media screen and (max-width: 767px){
	.tl-item:nth-child(2n+1){
		margin-left: 0;
		text-align: left;
	}
}

.tl-dot {
  position: absolute;
  right: -165px;
  top: 5px;
  width: 150px;
}

.tl-dot.big {
    left: -165px;
}
@media screen and (max-width: 767px){
	.tl-dot,.tl-dot.big{
		left: 50%;
		transform: translateX(-50%);
		position: relative;
		margin-bottom: 1rem;
	}
}

.tl-dot img{
	width: 100%;
}

.tl-point{
	position: absolute;
    width: 90px;
    height: 2px;
    background: #F0D5C5;
    top: 30px;
}

.tl-item:nth-child(even) .tl-point{
	left: -90px;
}

.tl-item:nth-child(odd) .tl-point{
	right: -90px;
}

@media screen and (max-width: 767px){
	.tl-point{
		display: none;
	}
}

.tl-yr {
  font-size: 18px;
  color: #E8722A;
  font-weight: 700;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px){
	.tl-yr {
		text-align: center;
		margin-bottom: 1rem;
	}
}

.tl-ttl {
  font-size: 20px;
  font-weight: 700;
  color: #4E3230;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px){
	.tl-ttl{
		text-align: center;
		margin-bottom: 1rem;
	}
}

.tl-body {
  font-size: 16px;
  color: #6f4b48;
  line-height: 1.7;
}

.tl-box{
	max-width: 1000px;
	margin: 0 auto;
	background: linear-gradient(90deg, #f9e3ba, #fbc7a7);
	text-align: center;
	padding: 2rem 0;
	position: relative;
	border-radius: 15px;
}
@media screen and (min-width: 1000px){
	.tl-box::before,.tl-box::after{
		position: absolute;
        content: ' ';
		width: 300px;
		height: 300px;
		background-size: contain;
		top: -2%;
	}
	.tl-box::before{
        background-image: url(/common/img/event/anniversary15th/tl-2026-02.webp);
        left: -8%;
	}
	.tl-box::after{
        background-image: url(/common/img/event/anniversary15th/tl-2026-03.webp);
        right: -8%;
	}
}
@media screen and (max-width: 999px){
	.tl-box{
		width: 100%;
		padding: 2rem 1rem 50%;
		background-position: bottom;
		background-repeat: no-repeat;
	}
	.tl-box::after{
		position: absolute;
        content: ' ';
        background: url(/common/img/event/anniversary15th/tl-2026-04.webp) no-repeat;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: 100%;
        background-position: center bottom;
        background-size: contain;
		
}
}

.tl-box .tl-ttl{
	margin-bottom: 10px;
}

.tl-box .tl-body{
	line-height: 2.5;
}

.tl-btn{
	max-width: 80%;
	margin: 1rem auto 0;
}

@media screen and (max-width: 767px){
	.tl-btn{
		max-width: 100%;
		width: 100%;
	}
}

.tl-btn a{
	background: #fff;
}


/* ========== CAMPAIGN ========== */
.camp-wrap {
  background: #FFF8F3;
  border: 1px solid #F0D5C5;
  border-radius: 4px;
  padding: 28px 24px;
}

.camp-head {
  text-align: center;
  margin-bottom: 22px;
}

.camp-badge {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #7c7572;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
	border-radius: 50rem;
}

.camp-h {
  font-size: 28px;
  font-weight: 700;
  color: #4E3230;
}

.camp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.camp-card {
  background: #fff;
  border: 1px solid #F0D5C5;
  border-radius: 4px;
  padding: 14px 12px;
}

.camp-card.highlight {
  border-color: #E8722A;
  border-width: 2px;
}

.camp-card.coming {
  background: #F7F7F7;
  border: 1px dashed #ccc;
  opacity: 0.6;
}

.camp-num {
  font-size: 10px;
  font-weight: 700;
  color: #E8722A;
  margin-bottom: 5px;
  letter-spacing: 0.06em;
}

.camp-num.dim {
  color: #aaa;
}

.camp-title {
  font-size: 12px;
  font-weight: 700;
  color: #4E3230;
  margin-bottom: 5px;
  line-height: 1.45;
}

.camp-title.dim {
  color: #bbb;
}

.camp-body {
  font-size: 11px;
  color: #6f4b48;
  line-height: 1.65;
}

.camp-link {
  font-size: 11px;
  color: #E8722A;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.coming-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
  background: #e8e8e8;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.camp-cta {
  text-align: center;
}

.btn-orange {
  background: #E8722A;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.btn-orange:hover {
  background: #c95d1f;
}

.camp-notice{
	font-size: 30px;
	text-align: center;
	letter-spacing: 20px;
	color: #7c7572;
	text-indent: 20px;
}

/* ========== VOICE ========== */
.voice-intro {
  /*background: #fff;
  border: 1px solid #F0D5C5;
  border-radius: 4px;
  padding: 16px 18px;*/
  margin-bottom: 18px;
}

.voice-intro-title {
  font-size: 13px;
  font-weight: 700;
  color: #4E3230;
  margin-bottom: 4px;
}

.voice-intro-body {
  font-size: 16px;
  color: #6f4b48;
  line-height: 1.7;
	text-align: center;
}

.voice-tag-orange {
  font-size: 11px;
  font-weight: 700;
  color: #E8722A;
  background: #FFF8F3;
  border: 1px solid #F0D5C5;
  padding: 2px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-top: 8px;
}

.voice-label {
  font-size: 11px;
  font-weight: 700;
  color: #E8722A;
  margin-bottom: 10px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.voice-card {
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 4px;
  padding: 14px;
	margin: 0 .5rem;
}

.vtag {
  font-size: 16px;
  font-weight: 700;
  color: #E8722A;
  /*background: #FFF8F3;*/
  display: inline-block;
  margin-bottom: 8px;
}

.voice-text {
  font-size: 15px;
  color: #6f4b48;
  line-height: 1.75;
  margin-bottom: 10px;
}

.voice-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #EBEBEB;
  padding-top: 8px;
}

.voice-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F0D5C5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #E8722A;
  flex-shrink: 0;
}

.voice-name {
  font-size: 11px;
  color: #888;
  line-height: 1.4;
}

.voice-source {
  font-size: 10px;
  color: #E8722A;
  background: #FFF8F3;
  padding: 1px 6px;
  border-radius: 2px;
  display: inline-block;
  margin-top: 2px;
}

.voice-cta {
  background: #FFF8F3;
  border: 1px solid #F0D5C5;
  border-radius: 4px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.voice-cta-title {
  font-size: 13px;
  font-weight: 700;
  color: #4E3230;
}

.voice-cta-sub {
  font-size: 11px;
  color: #E8722A;
  margin-top: 2px;
}

.btn-orange-sm {
  background: #E8722A;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-orange-sm:hover {
  background: #c95d1f;
}

.voice-grid .slick-next::after,
.voice-grid .slick-prev::after{
	top: 15px;
}

.voice-grid .slick-next{
	right: -3%;
}
.voice-grid .slick-prev{
	left: -3%;
}

@media screen and (max-width: 767px){
	.voice-grid .slick-next{
		right: -9%;
	}
	.voice-grid .slick-prev{
	left: -9%;
}
}

.voice-grid .slick-dots li.slick-active button:before{
	color: #fff!important;
}

/* ========== CLOSING ========== */
.closing {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid #EBEBEB;
  background: #fff;
}

.closing-line {
  width: 32px;
  height: 2px;
  background: #E8722A;
  margin: 0 auto 16px;
}

.closing-logo{
	margin-bottom: 20px;
}

@media screen and (max-width: 767px){
	
.closing-kanri{
	width: 100%;
}
	
	.closing-kanri img{
		width: 100%;
	}
}

.closing-text {
  font-size: 16px;
  color: #6f4b48;
  line-height: 1.95;
  max-width: 1000px;
  margin: 0 auto 14px;
}

.closing-sig {
  font-size: 11px;
  color: #E8722A;
  font-weight: 700;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #4E3230;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-logo {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.footer-copy {
  font-size: 10px;
  color: #aaa;
}
