@charset "utf-8";
html, body {
	overflow-x: hidden;
  }

body {
    font-family: 'ヒラギノ角ゴ', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif ;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	scroll-behavior: smooth; /* スムーススクロール */
}

a {
  color: #63461b;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

#body_wrap{
	background-color: #FFFFFF;
	margin: 0;
	width: 100%;
	height: 100%;
	padding: 200px 0 0;
  margin-top: -200px; /* リンク位置上昇分 */
}
p {
    line-height: 1.8em;
}
h2{
	font-size: 32px;
	color: #63461b;
	font-weight: 600;
	text-align: center;
	margin:40px 20px;
}

h3{
	font-size: 28px;
	text-align: center;
}

h4{
	font-size: 24px;
    text-align: center;
    margin: 0 0 12px;
    font-weight: 600;
    color: #63461b;
}
h4.beauty {
    background-color: #C5B182;
}
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}
.space {
	margin-top: 100px;
}
.center {
	text-align: center;
}
.backtotop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
}
.subttl{
	font-weight: bold;
    font-size: 24px;
    color: #63461b;
	margin: 10px 0;
}
.spbr {
	display: none;
}

#sec1 {
margin-bottom: 120px;
padding-top: 70px;
margin-top: -70px;
}
#sec2 {
	margin-bottom: 120px;
	padding-top: 70px;
    margin-top: -70px;
	}
#sec3 {
margin-bottom: 120px;
padding-top: 70px;
margin-top: -70px;
}
#sec4 {
	margin-bottom: 120px;
	padding-top: 70px;
    margin-top: -70px;
	}
#nominate  {
		padding-top: 70px;
		margin-top: -70px;
		margin-bottom: 120px;
		}
#movie  {
	padding-top: 70px;
	margin-top: -70px;
	margin-bottom: 120px;
	}
#movie2  {
		padding-top: 70px;
		margin-top: -70px;
		margin-bottom: 120px;
		}
#lastmessage {
	padding-top: 70px;
	margin-top: -70px;
	margin-bottom: 120px;
	}

#day {
	padding-top: 70px;
	margin-top: -70px;
	margin-bottom: 120px;
	}
#past{
		margin-top: -400px;
		padding-top: 400px;
		margin-bottom: 100px;
	}

@media screen and (max-width: 768px) {
	.subttl{
		font-size: 18px;
	}
	.spbr {
		display: block;
	}
	h2{
		margin: 0 0 10px 0;
		font-size: 24px;
	}
	#sec1 {
	margin-bottom: 70px !important;
	}
	#sec2 {
	margin-bottom: 70px !important;
	}
	#sec3 {		margin-bottom: 70px !important;
	}
	#sec4 {
	margin-bottom: 30px !important;
}
	#nominate {
	margin-bottom: 70px !important;
	}
	#day {
	margin-bottom: 70px !important;
	}
	#lastmessage {
	margin-bottom: 70px !important;
	}
	#movie {
	margin-bottom: 70px !important;
	}
	#movie2 {
		margin-bottom: 70px !important;
		}
	.space {
	margin-top: 40px;
	}
}

/* header
-----------------------------------------------------------*/

header {
	min-width: 100%;
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 16px;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	z-index: calc(infinity);
	}

#header_wrap {
		width: 100%;
}

  .header-container {
	max-width: 1024px;;
	margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-height: 31px;
  }

  .header-logo img {
	max-width:120px;
	display: table-cell;
	vertical-align: middle;
	margin-right: 24px;
  }

  @media (max-width: 1024px) {
	header{
	  top: 0;
	  left: 0;
	  width: 100%;
	  z-index: calc(infinity);
	}
	.header-logo img {
	  max-width: 120px;
	}
	.header-container {
		margin: 0 ;
	  width: 92%;
	  }
  }

/* メニュー
-----------------------------------------------------------*/
  .menu {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  }

  .menu ul {
  display: flex;
  list-style: none;
  margin-left: 40px;
  }

  .menu li {
  margin-right: 40px;
  }

  .menu a {
	color: #63471b;
    font-weight: bold;
  }

  .button a {
	font-size: 16px;
	padding: 5px 20px;
	background-color: #186CFF;
	color: white;
	text-decoration: none;
	border-radius: 9999px;
	max-width: 200px;
  }
  
  .button a:hover {
	background-color: #0056b3;
  }
  
  /* ハンバーガーメニュー */
  .hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  }

  .hamburger-icon {
  width: 30px;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
  }

  .hamburger-icon:before,
  .hamburger-icon:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #000;
  transition: 0.3s ease-in-out;
  }

  /* 開閉 */
  .hamburger-icon:before {
  top: -8px;
  }

  .hamburger-icon:after {
  top: 8px;
  }

  .hamburger-icon.middle {
  top: 0;
  }

  .hamburger.active .hamburger-icon {
  background-color: transparent;
  }

  .hamburger.active .hamburger-icon:before {
  transform: rotate(45deg);
  top: 0;
  }

  .hamburger.active .hamburger-icon:after {
  transform: rotate(-45deg);
  top: 0;
  }

  .mobile-menu {
	display: none;
	position: absolute;
	top: 57px;
	right: 0;
	background-color: #f8f8f8;
	width: 100%;
	text-align: center;
	padding: 20px 0;
	box-shadow: 0px 2px 5px #00000033;
  }

  .mobile-menu ul {
  padding: 0 20px;
  list-style: none;
  }

  /* スマホメニュー */
  .mobile-menu li {font-weight: bold;text-align: left;margin-bottom: 10px;}

  @media (max-width: 768px) {
  .menu, .button {
	display: none;
  }

  .hamburger {
	display: block;
  }

  .mobile-menu.active {
	display: block;
  }
  }
  @media (max-width: 1024px) {
	.header-logo img {
		margin-right: 5px;
	}
	.menu li {
	  margin-right: 20px;
	  font-size: 15px;
	  }
	}


/* main-visual
----------------------------------------------*/
.main-visual {
	background-image: url('../img/summit_img.png');
	background-size: cover;
	background-position: center;
	height: 450px;
	position: relative;
  }
  .main-visual img.center-image {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 540px;
  }
  @media (max-width: 768px) {
	.main-visual {
		height: 290px;
	  }
	  .main-visual img.center-image {
		top: 60%;
		max-width: 280px;
	  }
  }

 /* container
----------------------------------------------*/
  .container {
	max-width: 1024px;
	margin: 50px auto;
  }
  #intro {
	margin: 60px 0 80px;
  }

@media (max-width: 768px) {
	.container {
		margin: 50px 20px;
	  }
  }

  /* intro
----------------------------------------------*/
.intro_wrap {
	display: flex;
	align-items: stretch;
	margin: 0 auto 50px;
	background-color: #f7f3ec;
    padding: 34px;
    border-radius: 10px;
  }
  .image-box {
	flex: 1;
  }
  .text-box {
	flex: 1;
  }
  .text-box-long {
	flex: 1;
  }
  .image-box {
	padding-right: 20px;
  }
  .image-box img {
	max-width: 100%;
	height: 100%;
    object-fit: cover;
    display: block;
	border-radius: 10px;
  }
  .text-box {
	border-radius: 10px;
	padding: 0 0 0 20px;
    background-color: #f7f3ec;
  }
  .text-box-long {
	border-radius: 10px;
	padding: 34px;
    background-color: #f7f3ec;
  }
  .info-list {
	max-width: 600px;
	margin: 0 auto;
  }

  .info-item {
	display: flex;
	margin-bottom: 12px;
  }

  .label {
	width: 100px;
	font-weight: bold;
	flex-shrink: 0;
	color: #63461b;
  }

  .value {
	flex-grow: 1;
  }

  @media (max-width: 768px) {
	#intro {
		margin-top: 30px;
	}
	.intro_wrap {
	  flex-direction: column;
	  padding: 10px;
	}
	.image-box {
	  padding-right: 0;
	  margin-bottom: 20px;
	}

  }


/* flexbox
----------------------------------------------*/

.flex_container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

  /* report_wrap
----------------------------------------------*/
.report_wrap {
    display: flex;
    align-items: stretch;
    margin: 70px auto 0;
}

  .text-box2 {
	flex:5;
	padding-left: 36px;
  }
  .image-box2 {
	flex: 5;
	display: flex;
	align-items: flex-start;
  }
  .image-box2 img {
	max-width: 100%;
	height: auto;
    object-fit: cover;
    display: block;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 横, 縦, ぼかし, 色 */
  }

  @media (max-width: 768px) {
	.report_wrap {
	  flex-direction: column;
	  margin: 40px auto 0;
	}
	.image-box2 {
	  padding-right: 0;
	  margin-bottom: 40px;
	}
	.text-box {
		padding: 10px;
	  }
	.text-box2 {
		padding-left: 0;
	  }
  }

/* 年間表彰
-----------------------------------------------------------*/
.note {
    font-size: 14px;
    color: #999;
	text-align: right;
    display: block;
    clear: both;
}
.nominate_list .flex_container li:nth-child(1){
	margin-right: 0;
}

.mvp_block .nominate_list.box{
	width: 86%;
}
.award_block .nominate_list.box{
	width: 86%;
}

.nominate_list .flex_container{
	justify-content: space-around;
}

.nominate_list ul li{
	width: 280px;
	text-align: center;
	font-size: 14px;
	margin-bottom: 20px;
}

.nominate_list ul li:first-child{
	font-weight: 600;
}

.nominate_list ul li:last-child{
	margin-bottom: 0;
}

.nominate_list ul:last-child{
	border:none;
	margin-right: 0;
	padding-right: 0;
}

.nominate_list　.flex_container{
	text-align: center;
}

#nominate .mvp_block_container h4{
	height: auto;
	font-size: 18px;
	color: #FFFFFF;
	text-align: center;
	line-height: 35px;
	clear: both;
	font-weight:bold;
}

#nominate .box {
	text-align: center;
}
.lead {
	padding: 20px 50px;
}

.title_decoration{
	display: flex;
	justify-content: center;
	text-align: center;
}

.title_decoration img{
	margin: 0 20px;
	width: 40px;
	height: 102px;
}

.title_decoration h3{
	font-size: 36px;
    text-align: center;
}

.title_decoration span{

    display: block;
}

.award_block .title_decoration h3{
	font-size: 36px;
    text-align: center;
	padding-top: 20px;
}

.box{
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 1px 1px 4px rgba(238, 238, 238, .5);
}

.box_title{
	font-weight: 600;
	text-align: center;
	border-bottom: 1px dotted #cccccc;
	padding-bottom: 10px;
	margin-bottom: 10px;
}


/*flex*/

.mvp .title_decoration{
	margin: 30px 0 20px;
}

.mvp_block{
	background-color: #eee;
	background-image: url(../img/background_yellow2.png);
	background-size: 100%;
	background-repeat: no-repeat;
	border-radius: 10px;
	padding: 40px 20px 20px;
	background-color: #f7f3ec;
	margin-bottom: 40px;
}

.mvp_block h5{
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin:10px 0;
}

.mvp_block_container h4{
	font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    display: block;
    text-align: center;
    width: 460px;
    padding: 10px 0;
    margin: 0 auto;
    position: relative;
	top: 30px;
	box-shadow: 3px 3px 10px rgba(51,51,51,0.2);
}
.mvp_block .box{
	width: 40%;
	margin: 10px;
}

.mvp_block .box p{
	text-align: center;
}

.award .title_decoration{
	margin: 30px 0 20px;
}

.award_block{
	background-color: #eee;
	background-image: url(../img/background_yellow2.png);
	background-size: 100%;
	background-repeat: no-repeat;
	border-radius: 10px;
	padding: 40px 20px 20px;
	background-color: #f7f3ec;
	margin-bottom: 40px;
}

.award_block h5{
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin:10px 0;
}

.award_block_container h4{
	font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    display: block;
    text-align: center;
    width: 460px;
    padding: 10px 0;
    margin: 0 auto;
    position: relative;
	top: 30px;
	box-shadow: 3px 3px 10px rgba(51,51,51,0.2);
}

.award_block .box{
	width: 40%;
	margin: 10px;
}

.award_block .box p{
	text-align: center;
}
@media (max-width: 768px) {
	#nominate .mvp_block_container h4{
	height: 46px;
    width: 90%;
    font-size: 15px;
	line-height: 24px;
	}
	.nominate_list ul li{
		width: 100%;
	}
	
	.nominate_list ul {
		border:none;
		margin:0 0 20px 0;
		width:100%;
	}
	.nominate_list ul:last-child{
		margin-right: 0;
		margin-bottom: 0;
	}
	.lead {
		padding: 30px 0;
	}
	.award_block .title_decoration h3{
		font-size: 17px;
	}
	.title_decoration h3 {
		font-size: 17px;
	}
	.mvp_block .box{
		width: 260px;
		margin: 10px;
	}
	.mvp_block_container h4{
		width: 80%;
		font-size: 20px;
	}
	.award_block .box{
		width: 260px;
		margin: 10px;
	}
	.award_block_container h4{
		width: 80%;
		font-size: 20px;
	}
	}

/* eventreport
-----------------------------------------------------------*/

.eventreport_content{
	text-align: center;
}

.eventreport_photo{
	margin: 30px 0;
	width: 70%;
}
.eventreport_photo_p{
	margin: 50px 0 30px;
	width: 50%;
	border-radius: 10px;
}

.photo-grid-event {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2列 */
	gap: 30px;
	margin: 70px auto 50px;
  }

  .photo-grid-event img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 10px;
  }

  @media (max-width: 768px) {
	.eventreport_photo{
		width: 100%;
	}
	.eventreport_photo_p{
		margin: 20px 0 20px;
		width: 100%;
	}
	.photo-grid-event {
	  grid-template-columns: 1fr; /* スマホでは1列表示 */
	  margin: 40px auto 40px;
	}
  }

/* 視聴申込をする
-----------------------------------------------------------*/
 .reserve {
    background-color: #f7f3ec;
    padding: 60px 34px;
    border-radius: 10px;
}
.reserve p {
	text-align: center;
	margin-bottom: 30px;
}
.btn-movie {
	width: 20em;
    display: block;
    text-align: center;
    padding: 26px 12px;
    font-size: 20px;
    color: #fff;
    background-color: #63471b;
    border-radius: 10px;
    margin: 20px auto 0px;
}
@media (max-width: 768px) {
.reserve {
	padding: 30px;
}
.btn-movie {
    width: auto;
    display: block;
    padding: 16px 32px 13px;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    background-color: #63461b;
    border-radius: 10px;
    margin: 10px auto 20px;
}
}

/* 当日の様子
-----------------------------------------------------------*/
.photo-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2列 */
	gap: 30px;
	margin: 50px auto;
  }

  .photo-grid img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 10px;
  }

  @media (max-width: 600px) {
	.photo-grid {
	  grid-template-columns: 1fr; /* スマホでは1列表示 */
	}
  }

/* footer
-----------------------------------------------------------*/

#footer {
	margin: 20px auto;
	text-align: center;
	height: 30px;
	padding: 20px 0;
  }

 /* .backtotop
  -----------------------------------------------------------*/
  .backtotop {
	  position: fixed;
	  bottom: 40px;
	  right: 20px;
	  z-index: 10;
	 }

  .backtotop a {
	  display: inline-block;
	  width: 56px;
	  height: 56px;
	  padding: 0;
	  margin: 0;
	  font-size: 98%;
	  color: #fff;
	  line-height: 62px;
	  text-align: center;
	  background-color: #63461b;
	  border-radius: 50%;
  }

  .backtotop a:hover {
	  opacity: .3;
  }
  .backtotop a::before {
	  position: absolute;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  left: 0;
	  display: block;
	  width: 14px;
	  height: 14px;
	  margin: auto;
	  content: '';
	  transform: rotate(-45deg);
	  border-top: 3px solid #FFF;
	  border-right: 3px solid #FFF;
  }


