@charset "UTF-8";

/*
----------------------------------------------------------------- */
/*
/* Reset
/*
----------------------------------------------------------------- */

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,icenter,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  font-feature-settings: "palt";
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}

ol,ul {
  list-style: none;
}

blockquote,q {
  quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  line-height: 0;
  vertical-align: bottom;
}

strong {
  font-weight: bold;
}

sup {
  font-size: 1.2rem;
  vertical-align: top;
}

sub {
  font-size: 1.2rem;
  vertical-align: bottom;
}

del {
  font-size: 1.6rem;
  line-height: 2.6;
}


.yugo{
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.yugo_bold{
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
}
.yumin{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
}

.yumin_bold{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
}

/*
/* Clearfix
/*
----------------------------------------------------------------- */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.anchor {
	position: relative;
}

.anchor_here {
	position: absolute;
	left: 0;
	top: -30px;
	z-index: -1;
}

@media screen and (min-width: 844px) {
  .hidden__pc {
    display: none;
  }
  
  
}

@media screen and (max-width: 845px) {
  .hidden__sp {
    display: none;
  }
  
  .anchor_here {
  	top: -20px;
  }
  
}


#kirishima_no8{
  width: 100%;
  height: 100%;
  position: relative;
}
#kirishima_no8 img{
  width: 100%;
  height: auto;
  vertical-align: top;
  line-height: 1.0em;
}



/*
/* MV
/*
----------------------------------------------------------------- */


@media screen and (min-width: 844px) {
  
  #kirishima_no8 .sub_nav{
    width: 100%;
    /* background: #FFF; */
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position:relative;
    z-index: 10;
    top:0;
    left:0;
    margin-top: 0;
    height: 38px;
    display: flex;
    justify-content: center;
  }

  #kirishima_no8 .sub_nav.fixed {
      width: 100% !important;
      position:fixed;
      top:0;
      left:0;
      margin-top: 0;
      width: 100%;
      animation:fade-in 0.5s;
      z-index: 99;
  }

  @keyframes fade-in {
    0%{margin-top:-64px;}
    100%{margin-top:0;}
  }


  #kirishima_no8 .sub_nav ul{
    text-align: center;
	display: flex;
  }

  #kirishima_no8 .sub_nav ul li a {
    text-decoration: none;
    color:#000;
    font-size: 14px;
    padding: 9px 18px;
    display: block;
  }
  
  #kirishima_no8 .sub_nav h2,
  #kirishima_no8 .sub_nav .close,
  .sp_flag{
    display: none;

  }
 #kirishima_no8 .sub_nav p,
  #kirishima_no8 .sub_nav .close,
  .sp_flag{
    display: none;

  }

  /*モーダル*/

  /* モーダル全体(背景＋本体) */
  .modal{
    display: none;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 9999;
  }

  /* モーダル背景 */
  .modal-bg{
    position: absolute;
    height: 100vh;
    width: 100%;
    background: rgba(112, 112, 112, 0.85);
  }

  /* モーダル本体 */
  .modal-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 24px;
    height:calc(100% - 100px);/* これが無いと「overflow:scroll」が利かない */
    width: 775px;/* これが無いと「overflow:scroll」が利かない */
  }
  .modal-content .inner{
    padding:80px 45px;
    height:95%;/* これが無いと「overflow:scroll」が利かない */
    width:98%;/* これが無いと「overflow:scroll」が利かない */
    margin:2.5% 1%;
    overflow-y: scroll; /* はみ出た部分はスクロールさせる */
    box-sizing: border-box;
  }
  .modal-content ::-webkit-scrollbar-track {
    background: #EEE;
    border-radius:5px;
    overflow: hidden;
  }
  .modal-content ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  .modal-content ::-webkit-scrollbar-thumb {
    background: #6CBB5A;
    border-radius:5px;
    border:none;
  }
  .modal-content.thought h3{
    font-size:26px;
    line-height:44px;
    margin-bottom:45px;
    text-align: center;
  }
  .modal-content h3.one{
    width:334px;
    margin: 0 auto 55px;
  }
  .modal-content h3.two{
    width:456px;
    margin: 0 auto 55px;
  }
  .modal-content h4{
    font-size:24px;
    line-height: 48px;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 50px;
  }
  .modal-content .zairyo h5{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .modal-content.thought p{
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.1em;
    padding-bottom: 60px;
  }

  .modal-content.thought dl{
    padding-bottom:60px;
    font-size: 0;
  }
  .modal-content.thought dl dt{
    width: calc(100% - 205px);
    margin-right:40px;
    display: inline-block;
    font-size:18px;
    line-height: 32px;
    letter-spacing: 0.1em;
    vertical-align: top;
  }
  .modal-content.thought dl dd{
    width:165px;
    display: inline-block;
    vertical-align: top;
  }
  .modal-content.thought dl dd p{
    font-size: 14px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 0;
  }

  .modal-content.thought .koubo{
    width: 424px;
    margin: 0 auto;
  }
  .modal-content.thought .ajiwai_map{
    width: 100%;
    margin-bottom: 0;
  }

  .modal-content.thought span,
  .modal-content.thought .cap{
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    padding-top: 30px;
  }
  .modal-content.thought .cap{
    display: block;
  }

  .modal-content.thought .cap.center{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .modal-content .zairyo ul{
    margin-bottom: 60px;
  }
  .modal-content .zairyo ul li{
    width: 290px;
    display: inline-block;
    border-bottom: 1px solid #B9B9B9;
    padding: 15px 5px;
    margin-right: 58px;
  }
  .modal-content .zairyo ul li:nth-child(1),
  .modal-content .zairyo ul li:nth-child(2){
    border-top:1px solid #B9B9B9 ;
  }

  .modal-content .zairyo ul li:nth-child(2n){
    margin-right: 0;
  }
  .modal-content .zairyo ul li dl dt,
  .modal-content .zairyo ul li dl dd{
    font-size: 18px;
    display: inline-block;
  }
  .modal-content .zairyo ul li dl dt{
    width:195px;
  }
  .modal-content .howto ul{
    border-bottom: 1px solid #B9B9B9;
  }
  .modal-content .howto ul li{
    font-size: 18px;
    line-height: 30px;
    padding: 45px 10px;
    position: relative;
  }


  .modal-content .howto ul li:first-child{
    border-top: 1px solid #B9B9B9;
  }

  .modal-content .howto ul li:nth-child(1):after,
  .modal-content .howto ul li:nth-child(2):after{
    content: "";
    display: block;
    width: 100%;
    height: 53px;
    background: url(../images/recipe_popup_list_icon.png) no-repeat center;
    background-size: 100%;
    position: absolute;
    bottom: -28px;
    left: 0;
  }

  #modal02 .modal-content .howto ul li:nth-child(2):after{
    display:none;
  }

  .close_btn{
    width:58px;
    position: absolute;
    right: 42px;
    top: 42px;
  }


  /* モーダルウィンドウ表示中に記事本体を固定 */
  body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
  }

  /*モーダル終わり*/
  
  .mfp-container {
      text-align: center;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      padding: 0 8px;
      box-sizing: border-box;
  }
  .mfp-iframe-holder {
      padding-top: 40px;
      padding-bottom: 40px;
  }
  .mfp-container:before {
      content: '';
      display: inline-block;
      height: 100%;
      vertical-align: middle;
  }

  .mfp-content {
      position: relative;
      display: inline-block;
      vertical-align: middle;
      margin: 0 auto;
      z-index: 1045;
      line-height: 0;
      width: 100%;
      max-width: 900px;
      cursor: auto;
      text-align: center;
  }
  .mfp-iframe-scaler {
      width: 100%;
      height: 0;
      overflow: hidden;
      padding-top: 56.25%;
  }
  .mfp-iframe-scaler iframe {
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: 0 0 8px rgb(0 0 0 / 60%);
      background: #000;
  }
  .mfp-close {
      width: 44px;
      height: 44px;
      line-height: 44px;
      position: absolute;
      right: 0;
      top: 0;
      text-decoration: none;
      text-align: center;
      opacity: .65;
      padding: 0 0 18px 10px;
      font-style: normal;
      font-size: 28px;
      font-family: Arial,Baskerville,monospace;
      overflow: visible;
      cursor: pointer;
      background: transparent;
      border: 0;
      -webkit-appearance: none;
      display: block;
      outline: 0;
      padding: 0;
      z-index: 1046;
      box-shadow: none;
      touch-action: manipulation;
      color: #FFF;
      top: -40px;
      right: -6px;
      text-align: right;
      padding-right: 6px;
      width: 100%;
  }
  .mfp-close:hover, .mfp-close:focus {
      opacity: 1;
  }

  .site-header {
    position: relative !important;
  }
  
	/*
	/* main_visual
	/*
	----------------------------------------------------------------- */
	#main_visual {
		overflow: hidden;
		position: relative;
		z-index: 3;
		margin-top: -140px;
		height: 100vh;
	}

	#main_visual .swiper,
	#main_visual .swiper .swiper-wrapper,
	#main_visual .swiper .swiper-slide {
		height: 100%;
	}


	#main_visual .swiper .swiper-slide {
		position: relative;
	}

	#main_visual .swiper .swiper-slide a {
		width: 5.3125vw;
		position: absolute;
		right: 26.5625vw;
		bottom: 2.135416vw;
		z-index: 2;
	}

	#main_visual .swiper .swiper-slide a img {
		width: 100%;
	}
	
	
	/* 0628 */
	
	#main_visual .swiper .swiper-slide .image {
		position: relative;
		width: 100%;
		overflow: hidden;
		position: relative;
		height: 100%;
	}
	#main_visual .swiper .swiper-slide .image2 {
		position: relative;
		width: 100%;
		overflow: hidden;
		position: relative;
		height: 100%;
		margin-top: 44px;
	}
	
	#main_visual .swiper .swiper-slide .image .bg {
		position: relative;
		width: 100%;
		overflow: hidden;
		position: relative;
		height: 100%;
		background: #e6edfe;
	}
	
	#main_visual .swiper .swiper-slide .image .bg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	#main_visual .ob_c img {
		object-fit: contain!important;
	}
	
	#main_visual .swiper .swiper-slide .image .pc {
		display: block;
	}
	
	#main_visual .swiper .swiper-slide .image .sp {
		display: none;
	}
	
	#main_visual .swiper-button-prev,
	#main_visual .swiper-button-next,
	#main_visual .swiper-pagination {
		display: none;
	}
	
	#main_visual .image .mv_title {
		position: absolute;
		left: 50%;
		z-index: 3;
		pointer-events: none;
	}
	
	#main_visual .kv01 .image .mv_title {
		bottom: 2.135416vw;
		transform: translateX(-50%);
	}
	
	#main_visual .kv01 .image .mv_title.title01 {
		width: 35.677vw;
		margin-left: -1.5vw;
	}
	
	#main_visual .kv01 .image .mv_title.title02 {
		width: 10.46875vw;
		margin-left: 29.1666vw;
	}
	#main_visual .kv01 .image .mv_title.title03 {
		left: 15%;
        width: 37rem;
	}
	#main_visual .kv02 .image .mv_title {
		/* top: 12.03125vw; */
		top: 50%;
		/* top: 232px; */
		transform: translate(-50%,-50%);
		min-height: 413px;
	}
	
	#main_visual .kv02 .image .mv_title.title01 {
		/* width: 12.70833vw; */
		width: 264px;
		margin-left: -27.5vw;
	}
	
	#main_visual .kv02 .image .mv_title.title02 {
		/* width: 17.4479vw; */
		width: 335px;
		margin-left: 25.9586vw;
	}
  #main_visual .kv02 .image .mv_title.title03 {
		        left: 15%;
        width: 37rem;
        bottom: 5.135416vw;
        transform: translateX(-50%);
        top: auto;
        min-height: auto;
	}
  /*
  /* news
  /*
  ----------------------------------------------------------------- */
  	#kirishima_no8 .news {
  		background: #6CBB5A;
  		overflow-x: hidden;
  		position: relative;
  		padding: 8px 0;
		box-sizing: border-box;
  	}
  	
  	#kirishima_no8 .news_wrap {
  		max-width: 1050px;
  		width: 100%;
  		padding: 0 20px;
  		margin: 0 auto;
  		display: flex;
  		align-items: center;
  		box-sizing: border-box;
  	}
  	
  	#kirishima_no8 .news_wrap .news_title {
  		min-width: 82px;
  		padding: 7px 10px;
  		border: 1px solid #fff;
  		display: inline-flex;
  		align-items: center;
  		justify-content: center;
  		font-weight: 700;
  		color: #fff;
  		font-size: 20px;
  		line-height: 1;
  		margin-right: 40px;
  	}
  	
  	#kirishima_no8 .news_list {
  		width: calc(100% - 120px);
  	}
  	
  	#kirishima_no8 .news_list a {
  		font-size: 19px;
  		font-weight: 700;
  		color: #fff;
  		text-decoration: none;
  		padding: 10px 7px;
  		display: block;
  	}
	
	#kirishima_no8 .news_list a .date {
		margin-right: 20px;
	}
  	
  	#kirishima_no8 .news_list a:hover {
  		text-decoration: underline;
  	}
  	
  	#kirishima_no8 .news_list li+li {
  		border-top: 1px solid #fff;
  	}
	/*
	/* cm
	/*
	----------------------------------------------------------------- */
  	#kirishima_no8 .cm {
  		background: url(../images/cm_bg.jpg) no-repeat top center;
  		background-size: cover;
  		padding: 80px 0 75px;
  		overflow: hidden;
  		/* transform: translateY(-180px); */
  		position: relative;
  	}
  
  	#kirishima_no8 .cm_item {
		box-sizing: border-box;
  		max-width: 1390px;
  		margin: 0 auto;
  		padding: 0 20px;
  	}
	
	#kirishima_no8 .cm_title {
		max-width: 345px;
		width: 100%;
		margin: 0 auto 20px;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .cm_item .info .text {
		text-align: center;
		margin-top: 80px;
	}
	
	#kirishima_no8 .cm_item .info .text .text_image {
		max-width: 740px;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap {
		max-width: 943px;
		width: 100%;
		box-sizing: border-box;
		margin: 62px auto 0;
		display: flex;
		justify-content: space-between;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap p {
		max-width: 502px;
		width: 100%;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap span {
		display: block;
		padding-top: 64.9%;
		position: relative;
		width: 100%;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap img {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 2;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap .image01 {
		position: relative;
		z-index: 2;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap .image02 {
		margin-top: 58px;
		margin-left: -67px;
		position: relative;
		z-index: 3;
	}
	
	#kirishima_no8 .cm_mv {
		max-width: 1840px;
		width: 100%;
		margin: 117px auto 0;
		padding: 0 20px;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .cm_mv .anchor_here {
		position: absolute;
		left: 0;
		top: -70px;
		z-index: -1;
	}
	
	#kirishima_no8 .cm_mv_section .cm_mv_title {
		margin-bottom: 40px;
	}
	
	#kirishima_no8 .cm_mv_section .cm_mv_title span {
		height: 63px;
		display: block;
		text-align: center;
	}
	
	#kirishima_no8 .cm_mv_section .cm_mv_title span img {
		width: auto;
		height: 100%;
	}
	
	#kirishima_no8 .cm_mv_list {
		display: grid;
		grid-template-columns: repeat(3,1fr);
		gap: 110px 43px;
	}
	#kirishima_no8 .cm_mv_list2 {
		margin: 0 auto;
		display: block;
	}
/*	#kirishima_no8 .cm_mv_cont:nth-child(n+4) {
		display: none;
	}*/
	
	#kirishima_no8 .cm_mv_list.is_active .cm_mv_cont:nth-child(n+4) {
		display: flex;
		justify-content: flex-end;
		flex-direction: column;
	}
	
	#kirishima_no8 .cm_mv_list2 {
		display: inline-block;
		width: 100%;
		text-align: center;
		vertical-align: top;
	}
	
	#kirishima_no8 .cm_mv_list2 .cm_mv_cont{
		display: inline-block;
		width: 32%;
		vertical-align: top;
	}
	#kirishima_no8 .cm_mv_list2 .cm_mv_cont:nth-child(1){
		display: inline-block;
		width: 32%;
		margin-right: 40px;
		vertical-align: top;
	}
	#kirishima_no8 .cm_mv_list2.is_active .cm_mv_cont:nth-child(n+4) {
		display: flex;
		justify-content: flex-end;
		flex-direction: column;
	}
	
	#kirishima_no8 .cm_mv_cont .title {
		text-align: center;
		margin-bottom: 40px;
	}
	
	#kirishima_no8 .cm_mv_cont .title span {
		display: block;
		height: 64px;
	}
	
	#kirishima_no8 .cm_mv_cont .title span img {
		width: auto;
		height: 100%;
	}
	#kirishima_no8 .cm_mv_cont span {
		font-size: 1.9rem;
		color: #fff;
		text-align: center;
		display: block;
		margin-top: 4px;
		font-feature-settings: "palt";
	}
	
	
	#kirishima_no8 .cm_movie a {
		position: relative;
		display: block;
		padding-top: 56.16%;
		width: 100%;
	}
	
	#kirishima_no8 .cm_movie a img {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	#kirishima_no8 .cm_movie a::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: 3;
		transform: translate(-50%,-50%);
		background: url('../images/icon_play.svg') no-repeat;
		width: 74px;
		height: 74px;
		background-size: cover;
	}
	
	#kirishima_no8 .cm_movie p {
		color: #fff;
		font-size: 1.3rem;
		margin-top: 4px;
		letter-spacing: 0.1rem;
	}
	
	#kirishima_no8 .cm_link {
		text-align: right;
		margin-top: 40px;
	}
	
	#kirishima_no8 .cm_link a {
		display: inline-block;
		width: 116px;
	}
	
	/*
	/* 味わい
	/*
	----------------------------------------------------------------- */
	#kirishima_no8 .section_head {
		font-size: 45px;
		font-weight: 500;
		line-height: 1;
		color: #fff;
		text-align: center;
		margin-bottom: 60px;
	}
	
	#kirishima_no8 .section_head.green {
		color: #6CBB5A;
	}
	
	#kirishima_no8 .section_head span {
		display: inline-block;
		position: relative;
	}
	
	/*#kirishima_no8 .section_head span::before {
		content: '';
		position: absolute;
		left: 50%;
		bottom: 0;
		width: 248px;
		height: 30px;
		background: url('../images/icon_cm_title_underline.svg') no-repeat;
		background-size: 100% auto;
		transform: translate(-50%,100%);
		margin-bottom: -5px;
	}*/
	
	#kirishima_no8 .section_head.green span::before {
		width: 480px;
		background: url('../images/icon_title_underline_green.svg') no-repeat;
		background-size: 100% auto;
	}
	
	#kirishima_no8 .taste {
		background: #6CBB5A;
		background-size: cover;
		padding: 106px 0 130px;
		position: relative;
		overflow: hidden;
		background: url('../images/taste_bg02.png') center top no-repeat #6CBB5A;
		font-feature-settings: "palt";
	}
	
	/*#kirishima_no8 .taste::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: 1;
		transform: translate(-50%,-50%);
		width: 100%;
		height: 1573px;
		background: url('../images/taste_bg02.png') no-repeat;
		background-size: auto 100%;
		pointer-events: none;
	}*/
	#kirishima_no8 .taste .anchor_here {
	    top: 21px;
	}
	#kirishima_no8 .taste .wrap {
		max-width: 1100px;
		width: 100%;
		margin: 0 auto;
		position: relative;
		z-index: 3;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .taste .wrap+.wrap {
		margin-top: 167px;
	}
	
	#kirishima_no8 .taste .wrap > h2 {
		font-size: 70px;
		line-height: 1.2;
		letter-spacing: 0.1em;
		text-align: center;
		color: #fff;
		padding-bottom: 40px;
	}
	
	#kirishima_no8 .taste .wrap > h4 {
		font-size: 30px;
		line-height: 1.6;
		text-align: center;
		padding-bottom: 40px;
		letter-spacing: 0.11em;
		color: #fff;
	}
	
	#kirishima_no8 .taste .wrap > p {
	  font-size: 20px;
	  line-height: 2.5;
	  text-align: center;
	  color: #fff;
	}
	
	
	#kirishima_no8 .taste .wrap figure.img01{
	  width:284px;
	  height: 284px;
	  top:114px;
	  left: -112px;
	  background: url(../images/sec_fig_img01.jpg) no-repeat center;
	  background-size: 101%;
	  overflow: hidden;
	  border-radius: 50%;
	  position: absolute;
	}
	
	
	#kirishima_no8 .taste .wrap figure.img02{
	  width:245px;
	  height: 245px;
	  background: url(../images/sec_fig_img02.jpg) no-repeat center;
	  background-size: 101%;
	  overflow: hidden;
	  border-radius: 50%;
	  position: absolute;
	  top:428px;
	  left:16px;
	}
	
	
	#kirishima_no8 .taste .wrap figure.img03{
	  width:410px;
	  height: 410px;
	  background: url(../images/sec_fig_img03.jpg) no-repeat center;
	  background-size: 101%;
	  overflow: hidden;
	  border-radius: 50%;
	  position: absolute;
	  top: 145px;
	  right:-118px;
	}
	
	#kirishima_no8 .taste .wrap figure.img01,
	#kirishima_no8 .taste .wrap figure.img02,
	#kirishima_no8 .taste .wrap figure.img03{
	  opacity: 0;
	  transform: translateY(20px) scale(1.05);
	  transition: all ease-out 0.8s;
	}
	#kirishima_no8 .taste.action .wrap figure.img01,
	#kirishima_no8 .taste.action .wrap figure.img02,
	#kirishima_no8 .taste.action .wrap figure.img03{
	  opacity: 1;
	  transform: translateY(0) scale(1.05);
	}
	
	#kirishima_no8 .taste .wrap figure.img01{transition-delay:0.5s }
	#kirishima_no8 .taste .wrap figure.img02{transition-delay:0.7s}
	#kirishima_no8 .taste .wrap figure.img03{transition-delay:0.6s}
	
	
	
	#kirishima_no8 .taste .wrap figure.img01.move{
	    animation-name: fuwafuwa;
	    animation-timing-function: linear;
	    animation-iteration-count: infinite;
	    animation-direction: alternate;
	    animation-duration:5s;
	}
	#kirishima_no8 .taste .wrap figure.img02.move,
	#kirishima_no8 .taste .wrap figure.img03.move{
	    animation-name: fuwafuwa2;
	    animation-timing-function:  linear;
	    animation-iteration-count: infinite;
	    animation-direction: alternate;
	    animation-duration:5s;
	}
	
	#kirishima_no8 .taste .wrap .flurryelegance{
		text-align: center;
		display: block;
		margin-bottom: 30px;
		margin-top: -10px;
	}
	#kirishima_no8 .taste .wrap .flurryelegance img{
		width: 19rem;
	}
	
	@keyframes fuwafuwa {
	    0% {
	      transform: translateY(0) scale(1.05);
	    }
	    33% {
	      transform: translateY(15px) scale(1);
	    }
	    66% {
	      transform: translateY(-15px) scale(1.05);
	    }
	    100% {
	      transform: translateY(0) scale(1.05);
	    }
	}
	
	@keyframes fuwafuwa2 {
	    0% {
	      transform: translateY(0) scale(1.05);
	    }
	    33% {
	      transform: translateY(-15px) scale(1);
	    }
	    66% {
	      transform: translateY(15px) scale(1.05);
	    }
	    100% {
	      transform: translateY(0) scale(1);
	    }
	}
	
	
	#kirishima_no8 .taste_box {
		max-width: 760px;
		width: 100%;
		margin: 145px auto 0;
		padding: 50px 80px;
		background: #fff;
		position: relative;
		z-index: 1;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .taste_box::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: -1;
		transform: translate(-50%,-50%);
		width: calc(100% + 40px);
		height: calc(100% + 40px);
		background: url('../images/taste_bg03.png') no-repeat;
		background-size: cover;
	}
	
	#kirishima_no8 .taste_box h2 {
		font-size: 35px;
		line-height: 1.4;
		letter-spacing: 0.07em;
		text-align: center;
		color: #6CBB5A;
		margin-bottom: 20px;
	}
	
	#kirishima_no8 .taste_box h2 span {
		display: block;
		font-size: 20px;
		line-height: 2;
		letter-spacing: 0.07em;
		color: #6CBB5A;
	}
	
	#kirishima_no8 .taste_box p {
		color: #6CBB5A;
		text-align: center;
		font-size: 20px;
		line-height: 2;
		letter-spacing: 0.07em;
	}
	
	/*
	/* how_to_drink
	/* おすすめの飲み方
	/*
	----------------------------------------------------------------- */
	.is-hide {
		display: none;
	}
	
	#kirishima_no8 .how_to_drink .anchor_here {
		top: -80px;
	}
	
	#kirishima_no8 .how_to_drink.wrap {
		max-width: 1440px;
		width: 100%;
		padding: 0 20px;
		margin: 0 auto;
		position: relative;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .how_to_drink.wrap .drinking_02_2{
		position: absolute;
        width: 6rem;
        right: 10px;
        top: -2rem;
	}
	#kirishima_no8 .how_to_drink.wrap .section_head {
		margin-bottom: 53px;
	}
	
	#kirishima_no8 .how_to_drink.wrap .section_head span::before {
		width: 400px;
		height: 20px;
		background: url(../images/how_to_drink_underline.svg) no-repeat;
		background-size: 100% 100%;
	}
	
	#kirishima_no8 .how_to_drink .drinking_navi {
		display: flex;
		align-items: flex-end;
		height: 50px;
		overflow: hidden;
	}
	
	#kirishima_no8 .how_to_drink .drinking_navi a {
		height: 50px;
		color: #fff;
		background:  #6CBB5A;
		font-size: 28px;
		line-height: 50px;
		border: 2px solid #fff;
		border-bottom: 0;
		padding: 0 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		transition: all .3s ease;
		border-radius: 10px 10px 0 0;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .how_to_drink .drinking_navi a.is-active {
		background: #fff;
		color: #6CBB5A;
	}
	
	#kirishima_no8 .how_to_drink .drinking {
		/* width: 1035px; */
		background: #FFF;
		border-radius: 0 10px 10px 10px;
		padding: 35px 50px 50px;
		margin: 0 auto;
		box-sizing: border-box;
	}
	
	
	#kirishima_no8 .how_to_drink .drinking .drinking_title {
		text-align: center;
		color: #6CBB5A;
		font-size: 45px;
		line-height: 42px;
		margin-bottom: 18px;
		font-style: italic;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul {
		display: flex;
		width: calc(100% + 124px);
		margin-left: -62px;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li {
		width: 33.33%;
		padding: 0 62px;
		position: relative;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li+li:after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 1px;
		height: 100%;
		background: #cccccc;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li+li::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		z-index: 3;
		transform: translate(-50%,-50%);
		width: 37px;
		height: 37px;
		background: url('../images/icon_green_arrow.svg') no-repeat;
		background-size: cover;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li dl dt {
		margin-bottom: 15px;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li dl dd {
		font-size: 20px;
		color: #6cbb5a;
		line-height: 1.75;
		letter-spacing: 0.07em;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li dl dd font {
		font-size: 26px;
	}
	
	#kirishima_no8 .how_to_drink .drinking_note {
		text-align: center;
		font-size: 16px;
		color: #6cbb5a;
		margin-top: 12px;
	}
	
	#kirishima_no8 .how_to_drink .drinking_note2 {
		text-align: center;
		font-size: 17px;
		color: #fff;
		margin-top: 20px;
		display: block;
	}
	/*
	/* recipe
	/* おすすめアレンジレシピ
	/*
	----------------------------------------------------------------- */
	#kirishima_no8 .recipe {
		overflow: hidden;
		position: relative;
	}
	
	#kirishima_no8 .recipe_wrap {
		max-width: 1640px;
		width: 100%;
		margin: 0 auto;
		padding: 0 20px;
		box-sizing: border-box;
		position: relative;
		padding: 77px 0 100px;
		font-feature-settings: "palt";
	}
	
	
	
	#kirishima_no8 .recipe_wrap::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		z-index: -1;
		width: 1920px;
		height: 100%;
		background: url('../images/recipe_bg.png') center;
		background-size: cover;
	}
	
	#kirishima_no8 .recipe ul {
		max-width: 940px;
		width: 100%;
		margin: 0 auto;
		padding: 0 20px;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .recipe ul li {
		position: relative;
		display: flex;
		align-items: flex-end;
	}
	
	#kirishima_no8 .recipe ul li+li {
		margin-top: 66px;
	}
	
	#kirishima_no8 .recipe ul li:nth-child(even) {
		flex-direction: row-reverse;
	}
	
	#kirishima_no8 .recipe ul li figure {
		width: 430px;
		border-radius: 10px;
		overflow: hidden;
		margin-right: 18px;
	}
	
	#kirishima_no8 .recipe ul li:nth-child(even) figure {
		margin-right: 0;
		margin-left: 18px;
	}
	
	#kirishima_no8 .recipe ul li dl {
		width: calc(100% - 448px);
	}
	
	#kirishima_no8 .recipe ul li dl {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	
	#kirishima_no8 .recipe ul li:nth-child(1) dl dt {
		width: 316px;
		margin-bottom: 25px;
	}
	
	#kirishima_no8 .recipe ul li:nth-child(2) dl dt {
		width: 359px;
		margin-bottom: 25px;
	}
	
	#kirishima_no8 .recipe ul li dl dd a {
		width: 238px;
		font-size: 20px;
		line-height: 60px;
		height: 60px;
		display: block;
		position: relative;
		z-index: 1;
		border-radius: 60px;
		overflow: hidden;
		text-align: left;
		text-decoration: none;
		color: #fff;
		/* background: #6cbb5a; */
		padding: 0 35px;
		box-sizing: border-box;
	}
	
	
	#kirishima_no8 .recipe ul li dl dd a:before  {
		content: "";
		width: 100%;
		height: 100%;
		background: #6cbb5a;
		display: block;
		position: absolute;
		top:0;
		right:0;
		z-index: -1;
	}
	
	#kirishima_no8 .recipe ul li dl dd a span  {
		width:30px;
		height: 30px;
		display:block;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
	}
	
	#kirishima_no8 .recipe ul li dl dd a::after  {
		content: "";
		width: 100%;
		height: 100%;
		background: #6A9743;
		opacity: .5;
		position: absolute;
		top:0;
		right:0;
		z-index: -1;
		transform: scaleX(0);
		transform-origin: top right;
		transition: transform 0.3s ease;
	}
	
	#kirishima_no8 .recipe ul li dl dd a:hover:after {
		transform: scaleX(1);
		transform-origin: top left;
	}
	
	/*
	/* pearing
	/* ペアリング
	/*
	----------------------------------------------------------------- */
	
	#kirishima_no8 .pearing {
		background: #6cbb5a;
		padding: 65px 0 402px;
		position: relative;
	}
	#kirishima_no8 .pearing .anchor_here {
	    top: 21px;
	}
	
	#kirishima_no8 .pearing::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 130px;
		z-index: 1;
		transform: translateX(-50%);
		width: 100%;
		height: 100%;
		background: url(../images/pearing_bg.png);
		background-size: cover;
		pointer-events: none;
	}
	
	#kirishima_no8 .pearing::after {
		content: '';
		position: absolute;
		left: 50%;
		bottom: -2px;
		z-index: 1;
		transform: translateX(-50%);
		width: 100%;
		height: 288px;
		background: url(../images/drinking_wray_top.png) center;
		background-size: 130% 100%;
		pointer-events: none;
	}
	
	#kirishima_no8 .pearing_wrap {
		max-width: 940px;
		width: 100%;
		margin: 0 auto;
		padding: 0 20px;
		box-sizing: border-box;
		font-feature-settings: "palt";
	}
	
	#kirishima_no8 .pearing .pearing_text {
		font-size:22px;
		line-height: 38px;
		color: #FFF;
		text-align: center;
		margin-bottom: 100px;
	}
	
	#kirishima_no8  .pearing ul dl {
		display: flex;
	}
	
	#kirishima_no8  .pearing ul li+li {
		margin-top: -49px;
	}
	
	#kirishima_no8  .pearing ul li dl {
		display: flex;
	}
	
	#kirishima_no8  .pearing ul li:nth-child(even) dl {
		flex-direction: row-reverse;
	}
	
	#kirishima_no8  .pearing ul li dl dt {
		width: 502px;
	}
	
	#kirishima_no8  .pearing ul li dl dt span {
		position: relative;
		display: block;
		width: 100%;
		padding-top: 62.35%;
		border-radius: 10px;
		overflow: hidden;
	}
	
	#kirishima_no8  .pearing ul li dl dt img {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#kirishima_no8  .pearing ul li dl dd {
		width: calc(100% - 502px);
		font-size: 40px;
		line-height: 1.2;
		letter-spacing: 0.15em;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 49px 10px 0;
	}
	
	#kirishima_no8  .pearing ul li dl dd span {
		position: relative;
		display: inline-block;
	}
	#kirishima_no8  .pearing ul li dl dd span:before{
	  content: "";
	  width: 166px;
	  height: 35px;
	  background: url('../images/icon_with.svg') no-repeat;
	  background-size: 100%;
	  position: absolute;
	  top: -59px;
	  left: 50%;
	  transform: translateX(-50%);
	}
	
	/*
	/* drinking_way
	/* 飲み方広がる
	/*
	----------------------------------------------------------------- */
	#kirishima_no8 .drinking_way {
		padding: 0 0 400px;
		position: relative;
		/* overflow: hidden; */
	}
	
	#kirishima_no8 .drinking_way .anchor_here {
	    /*top: 400px;*/
	}
	
	#kirishima_no8 .drinking_way::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 0;
		z-index: 1;
		transform: translateX(-50%);
		width: 100%;
		height: 100%;
		background: url('../images/drinking_wray_bg.png')  no-repeat;
		background-size: 100% auto;
		pointer-events: none;
    }
	
	#kirishima_no8 .drinking_way::after {
		content: '';
		position: absolute;
		left: 50%;
		bottom: 0;
		z-index: 1;
		transform: translateX(-50%);
		width: 100%;
		height: 13vw;
		background: url('../images/drinking_wray_border_green.png') center;
		background-size: 110% 100%;
		pointer-events: none;
	}
	
	#kirishima_no8 .drinking_way_wrap {
		position: relative;
		/* max-width: 1840px;
		width: 100%;
		padding: 0 20px; */
		max-width: 94vw;
		width: 100%;
		padding: 0 1vw;
		box-sizing: border-box;
		margin: 0 auto;
	}
	
	#kirishima_no8 .drinking_way_images {
		position: absolute;
		top: 0;
		z-index: 1;
		width: 100%;
	}
	
	#kirishima_no8 .drinking_way_images .img {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 0;
		z-index: 1;
		border-radius: 100%;
		overflow: hidden;
	}
	
	#kirishima_no8 .drinking_way_images .image01 {
		/* top: -117px;
		width: 402px;
		height: 402px;
		margin-left: -739px; */
		top: -6vw;
		width: 21vw;
		height: 21vw;
		margin-left: -38vw;
	}
	
	#kirishima_no8 .drinking_way_images .image02 {
		/* top: -164px;
		width: 409px;
		height: 409px; */
		top: -8vw;
		width: 21vw;
		height: 21vw;
		margin-left: -14vw;
	}
	
	#kirishima_no8 .drinking_way_images .image03 {
		/* width: 313px;
		height: 313px; */
		width: 16vw;
		height: 16vw;
		margin-left: 13vw;
	}
	
	#kirishima_no8 .drinking_way_images .image04 {
		/* top: -41px;
		width: 403px;
		height: 403px;
		margin-left: 764px; */
		top: -2vw;
		width: 21vw;
		height: 21vw;
		margin-left: 36vw;
	}
	
	#kirishima_no8 .drinking_way_images .image05 {
		/* top: 276px;
		width: 426px;
		height: 426px;
		margin-left: -482px; */
		top: 15vw;
		width: 22vw;
		height: 22vw;
		margin-left: -26vw;
	}
	
	#kirishima_no8 .drinking_way_images .image06 {
		/* top: 269px;
		width: 404px;
		height: 404px; */
		top: 16vw;
		width: 21vw;
		height: 21vw;
		margin-left: -3vw;
	}
	
	#kirishima_no8 .drinking_way_images .image07 {
		/* top: 354px;
		width: 422px;
		height: 422px; */
		top: 18vw;
		width: 22vw;
		height: 22vw;
		margin-left: 19vw;
	}
	
	#kirishima_no8 .drinking_way_images .image08 {
		/* top: 649px;
		width: 402px;
		height: 402px; */
		top: 36vw;
		width: 21vw;
		height: 21vw;
		margin-left: -38vw;
	}
	
	#kirishima_no8 .drinking_way_images .image09 {
		/* top: 712px;
		width: 404px;
		height: 404px; */
		top: 37vw;
		width: 21vw;
		height: 21vw;
		margin-left: 37vw;
	}
	
	#kirishima_no8 .drinking_way_images .image10 {
		/* top: 994px;
		width: 408px;
		height: 408px; */
		top: 52vw;
		width: 21vw;
		height: 21vw;
		margin-left: 10vw;
	}
	
	#kirishima_no8 .drinking_way_images .image11 {
		/* top: 1158px;
		width: 319px;
		height: 319px; */
		top: 60vw;
		width: 16vw;
		height: 16vw;
		margin-left: 29vw;
	}
	
	#kirishima_no8 .drinking_way_item {
		/* padding-left: 25%; */
		padding-top: 37vw;
		padding-left: 24vw;
		/* margin-top: 37vw; */
		font-feature-settings: "palt";
	}
	
	#kirishima_no8 .drinking_way_item .info {
		/* max-width: 700px; */
		max-width: 37vw;
		width: 100%;
		/* margin: 0 auto; */
		box-sizing: border-box;
	}
	
	#kirishima_no8 .drinking_way_item .title {
		color: #6cbb5a;
		/* font-size: 80px; */
		line-height: 1.25;
		/* margin-bottom: 30px; */
		letter-spacing: 0.03em;
		font-size: 4.2vw;
		margin-bottom: 1.5vw;
		margin-top: 1.5vw;
	}
	
	#kirishima_no8 .drinking_way_item .text {
		color: #6cbb5a;
		font-size: 1.05vw;
		/* font-size: 20px; */
		line-height: 2;
		letter-spacing: 0.07em;
	}
	
	/*
	/* thought
	/* 開発者の想い
	/*
	----------------------------------------------------------------- */
	
	#kirishima_no8 #thought {
	  padding-top: 137px;
	  padding-bottom: 143px;
	  overflow-x: hidden;
	  font-feature-settings: "palt";
	}
	
	#kirishima_no8 #thought .wrap {
		position: relative;
	}

	#kirishima_no8 .thought_wrap .anchor_here {
	    top: 60px;
	    /* position: relative; */
	}
	#kirishima_no8 #thought .swiper {
	  position: relative;
	}
	
	/* スライド全体 */
	#kirishima_no8 #thought .swiper-slide {
	  max-width: 880px;
	  width: 100%;
	  background: #FFF;
	  border-radius: 28px;
	  box-shadow: 6px 6px 30px rgba(0,0,0,0.16);
	  padding: 65px 35px 60px 60px;
	  box-sizing: border-box;
	  font-size: 0;
	}
	
	#kirishima_no8 #thought .swiper-slide .inner {
	  position: relative;
	}
	
	#kirishima_no8 #thought .swiper-slide figure {
	  width: 420px;
	  display: inline-block;
	  margin-right: 30px;
	  vertical-align: top;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box {
	  width:300px;
	  display: inline-block;
	  vertical-align: top;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box h5 {
	  font-size: 20px;
	  line-height: 34px;
	  padding-bottom:25px;
	  border-bottom: 1px solid #707070;
	  margin-bottom: 25px;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box dl dt {
	  font-size: 32px;
	  line-height: 54px;
	  letter-spacing: 0.03em;
	  margin-bottom: 30px;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box dl dt span {
	  font-size: 14px;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box dl dd {
	  font-size: 20px;
	  letter-spacing: 0.05em;
	  line-height: 34px;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box .btn {
	  width:238px;
	  height:60px;
	  position: absolute;
	  bottom:64px;
	  right:67px;
	  overflow: hidden;
	  box-shadow: 10px 5px 5px rgba(0,0,0,0.16);
	  border-radius: 60px;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box .cap {
	  width:300px;
	  font-size: 11px;
	  position: absolute;
	  bottom:0;
	  right:35px;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box .btn a {
	  width: 100%;
	  padding: 0 35px;
	  box-sizing: border-box;
	  font-size: 20px;
	  line-height: 60px;
	  height:60px;
	  display: block;
	  text-align:left;
	  text-decoration: none;
	  color: #FFF;
	  position: relative;
	  z-index:500;
	  cursor: pointer;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box .btn a span {
	  width:30px;
	  height: 30px;
	  display:block;
	  position: absolute;
	  top: 50%;
	  right: 20px;
	  transform: translateY(-50%);
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box .btn:after {
	  content: "";
	  width: 100%;
	  height: 100%;
	  background: #6A9743;
	  display: block;
	  position: absolute;
	  top:0;
	  right:0;
	  z-index:0;
	  transform: scaleX(0);
	  transform-origin: top right;
	  transition: transform 0.3s ease;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box .btn:hover:after{
	  transform: scaleX(1);
	  transform-origin: top left;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box .btn:before{
	  content: "";
	  width: 100%;
	  height: 100%;
	  background: #6CBB5A;
	  display: block;
	  position: absolute;
	  top:0;
	  right:0;
	  z-index:0;
	}
	
	/* 左右のスライド */
	#kirishima_no8 #thought .swiper-button-prev,
	#kirishima_no8 #thought .swiper-button-next {
	  width: 90px;
	  height: 90px;
	  border-radius: 90px;
	  background: #6CBB5A;
	  box-shadow: 6px 6px 6px rgba(0,0,0,0.16);
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  transition: 0.2s all ease;
	}
	
	#kirishima_no8 #thought .swiper-button-prev:hover,
	#kirishima_no8 #thought .swiper-button-next:hover {
	  background: #6A9743;
	}
	
	#kirishima_no8 #thought .swiper-button-prev {
	  left:50%;
	  margin-left: -514px;
	}
	
	#kirishima_no8 #thought .swiper-button-next {
	  right:50%;
	  margin-right: -514px;
	}
	
	#kirishima_no8 #thought .swiper-button-prev img,
	#kirishima_no8 #thought .swiper-button-next img{
	  width:16px;
	}
	
	#kirishima_no8 #thought .swiper-pagination {
	  width: 100%;
	  text-align: center;
	  margin-top: 50px;
	  display: flex;
	  justify-content: center;
	}
	
	#kirishima_no8 #thought .swiper-pagination span {
		display: block;
	  width: 14px;
	  height: 14px;
	  background:#FFF;
	  border: #707070 1px solid;
	  border-radius: 100%;
	  margin: 0 15px;
	  box-sizing: border-box;
	  opacity: 1;
	}
	
	#kirishima_no8 #thought .swiper-pagination span.swiper-pagination-bullet-active {
	  background:#707070;
	}
	
	/*
	/* material
	/* 100%へのこだわり
	/*
	----------------------------------------------------------------- */
	
	#kirishima_no8 .material {
		background: url(../images/sec05_bg.jpg) no-repeat center;
		background-size:cover;
		padding: 100px 0 85px;
		font-feature-settings: "palt";
	}

	#kirishima_no8 .material .material_wrap {
		max-width: 1140px;
		width: 100%;
		padding: 0 0;
		box-sizing: border-box;
		margin: 0 auto;
	}
	
	#kirishima_no8 .material .material_wrap .section_head span::before {
        width: 100%;
        background: url('../images/sec05_title_underline.svg') no-repeat;
        background-size: 100% 100%;
    }

	#kirishima_no8 .material .material_wrap h3.btm {
		margin: 0 auto 5px;
		color: #fff;
		font-size: 45px;
		text-align: center;
		letter-spacing: 0.1em;
		font-style: italic;
	}
	
	#kirishima_no8 .material .material_wrap .material_list {
	  font-size: 0;
	  margin-bottom: 80px;
	  margin-left: 0;
		text-align: center;
	}
	
	#kirishima_no8 .material .material_wrap .material_list li {
	  width: 230px;
        display: inline-block;
        vertical-align: top;
        margin-right: 60px;
	}
		#kirishima_no8 .material .material_wrap .material_list li:nth-child(4) {
	  width: 230px;
        display: inline-block;
        vertical-align: top;
        margin-right: 0;
	}
	
	#kirishima_no8 .material .material_wrap .material_list li figure {
	  width:180px;
    height: 180px;
    border-radius: 180px;
    overflow: hidden;
    margin: 0 auto 35px;
	}
	
	#kirishima_no8 .material .material_wrap .material_list li dl dd {
		font-size: 16px;
		line-height: 1.56;
		letter-spacing: 0.07em;
		text-align: left;
		color: #fff;
	}
	
	#kirishima_no8 .material .material_wrap .material_list li dl dd span.cap {
		display: block;
		font-size: 11px;
		padding-top: 20px;
	}
	
	#kirishima_no8 .material .material_wrap .material_list .small_note {
		font-size: 11px;
	}
	#kirishima_no8 .material .material_wrap .small_note2 {
		font-size: 20px;
        position: relative;
        bottom: 8px;
	}
	
	#kirishima_no8 .material .material_wrap .material_ul {
		max-width: 450px;
		width: 100%;
		margin: 0 auto;
		margin-bottom: 54px;
	}
	
	#kirishima_no8 .material .material_wrap .material_ul li {
		font-size: 16px;
		line-height: 1.5;
		color: #fff;
		letter-spacing: 0.07em;
	}
	
	#kirishima_no8 .material .material_wrap .btn {
	  width: 245px;
	  height: 60px;
	  position: relative;
	  overflow: hidden;
	  /* box-shadow: 10px 5px 5px rgba(0,0,0,0.16); */
	  border-radius: 60px;
	  margin: 0 auto;
	}
	
	#kirishima_no8 .material .material_wrap .btn a {
	  width: 100%;
	  padding: 0 35px;
	  box-sizing: border-box;
	  font-size: 20px;
	  line-height: 60px;
	  height: 60px;
	  display: block;
	  text-decoration: none;
	  color: #6cbb5a;
	  position: relative;
	  z-index: 1;
	}
	
	#kirishima_no8 .material .material_wrap .btn a span {
		width:30px;
		height: 30px;
		display:block;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		background: url('../images/sec05_link_icon.svg');
	}
	
	#kirishima_no8 .material .material_wrap .btn:after {
	  content: "";
	  width: 100%;
	  height: 100%;
	  background: #E6EFDE;
	  display: block;
	  position: absolute;
	  top:0;
	  right:0;
	  z-index:0;
	  transform: scaleX(0);
	  transform-origin: top right;
	  transition: transform 0.3s ease;
	}
	
	#kirishima_no8 .material .material_wrap .btn:hover:after{
	  transform: scaleX(1);
	  transform-origin: top left;
	}
	
	#kirishima_no8 .material .material_wrap .btn:before{
	  content: "";
	  width: 100%;
	  height: 100%;
	  background: #fff;
	  display: block;
	  position: absolute;
	  top:0;
	  right:0;
	  z-index:0;
	}
	
	/*
	/* product
	/* 商品詳細
	/*
	----------------------------------------------------------------- */
	
	#kirishima_no8 .product {
		width: 100%;
		padding: 55px 0 60px;
		background: url(../images/sec06_bg.png) no-repeat center #6cbb5a;
		background-size:cover;
		position: relative;
		font-feature-settings: "palt";
	}
	#kirishima_no8 .product .anchor_here {
		top: 20px;
	}
	#kirishima_no8 .product .product_wrap {
		max-width: 970px;
		padding: 0 20px;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .product .product_item {
		display: flex;
		justify-content: space-between;
	}
	
	#kirishima_no8 .product .product_box {
		display: flex;
		align-items: center;
		width: calc(50% - 24px);
	}
	
	#kirishima_no8 .product .product_box .image {
		margin-right: 42px;
	}
	
	
	#kirishima_no8 .product .product_box .image img {
		height: 381px;
		width: auto;
	}
	
	#kirishima_no8 .product .product_wrap .product_title {
		margin-bottom: 26px;
	}
	
	#kirishima_no8 .product .product_wrap ul {
	  border-top: 1px solid #FFF;
	  padding-bottom:15px;
	}
	
	#kirishima_no8 .product .product_wrap ul li {
	  color: #FFF;
	  font-size: 16px;
	  line-height: 1.25;
	  border-bottom: 1px solid #FFF;
	  padding: 11px 0;
	}
	
	#kirishima_no8 .product .product_wrap .btn {
		width: 248px;
		height: 60px;
		position: relative;
		overflow: hidden;
		/* box-shadow: 10px 5px 5px rgba(0,0,0,0.16); */
		border-radius: 60px;
		margin: 60px auto 0;
	}
	
	#kirishima_no8 .product .product_wrap .btn a {
	  width:248px;
	  font-size: 20px;
	  line-height: 60px;
	  height:60px;
	  display: block;
	  position: relative;
	  border-radius: 60px;
	  overflow: hidden;
	  /* box-shadow: 10px 5px 5px rgba(0,0,0,0.16); */
	  text-align: left;
	  text-decoration: none;
	  color: #6cbb5a;
	  padding: 0 25px;
	  box-sizing: border-box;
	  z-index: 1;
	}
	#kirishima_no8 .product .product_wrap .btn a span {
	  width:30px;
	  height: 30px;
	  display:block;
	  position: absolute;
	  top: 50%;
	  right: 20px;
	  transform: translateY(-50%);
	}
	
	#kirishima_no8 .product .product_wrap .btn:after {
	  content: "";
	  width: 100%;
	  height: 100%;
	  background: #E6EFDE;
	  display: block;
	  position: absolute;
	  top:0;
	  right:0;
	  z-index: 0;
	  transform: scaleX(0);
	  transform-origin: top right;
	  transition: transform 0.3s ease;
	}
	
	#kirishima_no8 .product .product_wrap .btn:hover:after {
	  transform: scaleX(1);
	  transform-origin: top left;
	}
	
	#kirishima_no8 .product .product_wrap .btn:before {
		content: "";
		width: 100%;
		height: 100%;
		background: #FFF;
		display: block;
		position: absolute;
		top:0;
		right:0;
		z-index: 0;
	}
	
}

@media screen and (max-width: 1550px) {
	#main_visual .kv02 .image .mv_title.title02 {
		width: 250px;
		margin-left: 28vw;
	}
}
@media screen and (max-width: 1300px) {
	#main_visual .kv02 .image .mv_title.title01 {
		margin-left: -30vw;
	}
	
	#main_visual .kv02 .image .mv_title.title02 {
		width: 190px;
		margin-left: 35vw;
	}
	
	/* how_to_drink */
	#kirishima_no8 .how_to_drink .drinking ul li dl dd {
		font-size: 16px;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li dl dd font {
		font-size: 20px;
	}
}

@media screen and (max-width: 1190px) {
	/* cm */
	#kirishima_no8 .cm_mv_section.section01 .cm_mv_title span {
		height: 40px;
	}
	
	#kirishima_no8 .cm_mv_cont .title span {
		height: 40px;
	}
	
	#kirishima_no8 .cm_movie a::before {
		width: 50px;
		height: 50px;
	}
		
	
	/* taste */
	#kirishima_no8 .taste .wrap figure.img01{
		width: 150px;
		height: 150px;
		top: 180px;
		left: 30px;
	}
	
	
	#kirishima_no8 .taste .wrap figure.img02{
		width: 150px;
		height: 150px;
		top: 428px;
		left: 20px;
	}
	
	
	#kirishima_no8 .taste .wrap figure.img03{
		width: 220px;
		height:  220px;
		top: 145px;
		right: -50px;
	}
	
	/* how_to_drink */
	#kirishima_no8 .how_to_drink .drinking ul {
		width: calc(100% + 60px);
		margin-left: -30px;
	}
		
	#kirishima_no8 .how_to_drink .drinking ul li {
		padding: 0 30px;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li dl dd {
		font-size: 12px;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li dl dd font {
		font-size: 16px;
	}
	
	/* 左右のスライド */
	#kirishima_no8 #thought .swiper-button-prev,
	#kirishima_no8 #thought .swiper-button-next {
	  width: 75px;
	  height: 75px;
	}
	
	#kirishima_no8 #thought .swiper-button-prev {
	  margin-left: -450px;
	}
	
	#kirishima_no8 #thought .swiper-button-next {
	  margin-right: -450px;
	}
	
	/* pearing */
	#kirishima_no8 .pearing ul li dl dd {
		font-size: 24px;
	}
	
}

@media screen and (max-width: 1000px) {
	/* sub_nav */
	#kirishima_no8 .sub_nav ul li a {
		font-size: 12px;
		padding: 20px 10px;
	}
	/* news */
	#kirishima_no8 .news_list a {
		font-size: 16px;
		font-weight: 700;
		color: #fff;
		text-decoration: none;
		padding: 10px 7px;
		display: block;
	}

	/* 100％へのこだわり */
	#kirishima_no8 .material .material_wrap .material_list li figure {
		width: 150px;
		height: 150px;
		border-radius: 150px;
	}
	
}


@media screen and (max-width: 920px) {
	#kirishima_no8 #thought .swiper-slide figure {
		width: 380px;
		display: inline-block;
		margin-right: 20px;
		vertical-align: top;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box {
		width: 320px;
		display: inline-block;
		vertical-align: top;
	}
	/* 左右のスライド */
	#kirishima_no8 #thought .swiper-button-prev,
	#kirishima_no8 #thought .swiper-button-next {
	  width: 65px;
	  height: 65px;
	}
	
	#kirishima_no8 #thought .swiper-button-prev {
	  margin-left: -420px;
	}
	
	#kirishima_no8 #thought .swiper-button-next {
	  margin-right: -420px;
	}
}
/*PCおわり*/





/*SP*/
@media screen and (max-width: 845px) {
	#kirishima_no8 #wrapper {
		overflow: hidden;
	}
	
	#kirishima_no8 .sub_nav{
    width: 100%;
    height: 100vh;
    background: url(../images/sp_nav_bg.jpg) no-repeat center;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
  }
  #kirishima_no8 .sub_nav ul{
    width: 60%;
    position: absolute;
    top: 40%;
    left:20%;
    transform: translate(0,-50% );
  }

  #kirishima_no8 .sub_nav ul li{
    padding-bottom:10px;
  }
  #kirishima_no8 .sub_nav ul li:last-child{
    padding-bottom: 0;
  }

  #kirishima_no8 .sub_nav ul li a{
    text-decoration: none;
    color:#FFF;
    padding:5px 0;
    display: block;
    font-size: 20px;
  }

  #kirishima_no8 .sub_nav h2{
    width: 262px;
    position: absolute;
    bottom:40px;
    left: 50%;
    transform: translateX(-50%);
  }
  #kirishima_no8 .sub_nav p{
    width: 262px;
    position: absolute;
    bottom:40px;
    left: 50%;
    transform: translateX(-50%);
  }

  #kirishima_no8 .sp_flag{
    width: 41px !important;
    position: absolute;
    top:20px;
    right: 20px;
    z-index: 99;
  }

  #kirishima_no8 .sp_flag.fixed{
      width: 41px;
      position:fixed;
      top:20px;
      right:20px;
      z-index: 99;
      width: 100%;
      animation:fade-in 0.5s;
  }

  @keyframes fade-in {
    0%{margin-top:-64px;}
    100%{margin-top:0;}
  }


  #kirishima_no8 .sub_nav .close{
    width: 41px;
    cursor: pointer;
    position: absolute;
    top:30px;
    right: 20px;
  }
	
  /*#kirishima_no8 .sub_nav {
    width: 100%;
    height: 100vh;
    background: #6CBB5A;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
  }
  
  #kirishima_no8 .sub_nav ul {
	padding: 80px 20px;
	
  }

  #kirishima_no8 .sub_nav ul li{
    padding-bottom:10px;
  }
  #kirishima_no8 .sub_nav ul li:last-child{
    padding-bottom: 0;
  }

  #kirishima_no8 .sub_nav ul li a {
    text-decoration: none;
    color:#FFF;
    padding:5px 0;
    display: block;
    font-size: 20px;
  }*/

  /* #kirishima_no8 .sub_nav h2 {
    width: 262px;
    position: absolute;
    bottom:40px;
    left: 50%;
    transform: translateX(-50%);
  } */


  /* #kirishima_no8 .sp_flag {
    width: 100%;
	height: 75px;
	background: #fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 20px;
	box-sizing: border-box;
  } */
  
  /* .btn_menu {
      display: block;
      width: 30px;
      height: 21px;
	  position: relative;
  }
  
  .btn_menu span {
      position: absolute;
      width: 30px;
      height: 2px;
      background: #6CBB5A;
      left: 0;
      transform: .6s ease;
  }
  
  .btn_menu span:first-child {
      top: 0;
  }
  
  .btn_menu span:nth-child(2) {
      top: 50%;
      margin-top: -1px;
  }
  
  .btn_menu span:last-child {
      bottom: 0;
  }
  
  .btn_menu.close span:first-child {
      transform: translateY(9px) rotate(45deg);
	  background: #fff;
  }
  
  .btn_menu.close span:nth-child(2) {
      opacity: 0;
	  background: #fff;
  }
  
  .btn_menu.close span:last-child {
      transform: translateY(-10px) rotate(-45deg);
	   background: #fff;
  }
 */
  #kirishima_no8 .sp_flag{
    width: 41px !important;
    position: absolute;
    top:20px;
    right: 20px;
    z-index: 99;
  }
  
  #kirishima_no8 .sp_flag.fixed {
      width: 41px;
      position:fixed;
      top:20px;
      right:20px;
      z-index: 9999999;
      width: 100%;
      animation:fade-in 0.5s;
  }
  

  @keyframes fade-in {
    0%{margin-top:-64px;}
    100%{margin-top:0;}
  }
  
  #kirishima_no8 .sub_nav .close{
    width: 41px;
    cursor: pointer;
    position: absolute;
    top:30px;
    right: 20px;
  }
  
  /* #kirishima_no8 .sub_nav .sub_nav_close {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: fixed;
	box-sizing: border-box;
	width: 100%;
	height: 73px;
	top: 0;
	left: 0;
	padding: 0 20px;
  } */


  /*モーダル*/

  /* モーダル全体(背景＋本体) */
  .modal{
    display: none;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 9999;
  }

  /* モーダル背景 */
  .modal-bg{
    position: absolute;
    height: 100vh;
    width: 100%;
    background: rgba(112, 112, 112, 0.85);
  }

  /* モーダル本体 */
  .modal-content{
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translate(0%, -50%);
    background: white;
    border-radius: 24px;
    height:calc(100% - 100px);/* これが無いと「overflow:scroll」が利かない */
    width: 92%;/* これが無いと「overflow:scroll」が利かない */
  }
  .modal-content .inner{
    padding:50px 25px;
    height:90%;/* これが無いと「overflow:scroll」が利かない */
    width:96%;/* これが無いと「overflow:scroll」が利かない */
    margin:6% 2% 4%;
    overflow-y: scroll; /* はみ出た部分はスクロールさせる */
    box-sizing: border-box;
  }
  .modal-content ::-webkit-scrollbar-track {
    background: #EEE;
    border-radius:5px;
    overflow: hidden;
  }
  .modal-content ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  .modal-content ::-webkit-scrollbar-thumb {
    background: #6CBB5A;
    border-radius:5px;
    border:none;
  }
  .modal-content.thought h3{
    font-size:26px;
    line-height:44px;
    margin-bottom:45px;
    text-align: center;
  }
  .modal-content h3.one{
    width:207px;
    margin: 0 auto 40px;
  }
  .modal-content h3.two{
    width:100%;
    margin: 0 auto 55px;
  }
  .modal-content h4{
    font-size:18px;
    line-height:30px;
    letter-spacing: 0.05em;
    text-align:justify;
    margin-bottom: 50px;
  }
  .modal-content h4 br{
    display: none;
  }

  .modal-content .zairyo h5{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .modal-content.thought p{
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.1em;
    padding-bottom: 30px;
  }

  .modal-content.thought dl{
    padding-top: 20px;
    font-size: 0;
  }
  .modal-content.thought dl dt{
    width:100%;
    margin-bottom:30px;
    font-size: 16px;
    line-height: 28px;
    vertical-align: top;
  }
  .modal-content.thought dl dd{
    width:165px;
    margin: 0 auto;
    vertical-align: top;
  }

  .modal-content.thought dl dd p{
    font-size: 14px;
    text-align: center;
    padding-top: 5px;
  }
  .modal-content.thought .koubo{
    width: 100%;
    margin: 0 auto;
  }
  .modal-content.thought .mta_fuyuryo{
    width:100%;
    margin: 0 auto;
  }
  .modal-content.thought .ajiwai_map{
    width: 100%;
    margin-bottom: 0;
  }


  .modal-content.thought span,
  .modal-content.thought .cap{
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    padding-top: 30px;
  }

  .modal-content.thought .cap{
    display: block;
  }


  .modal-content.thought .cap.center{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .modal-content .zairyo ul{
    margin-bottom:50px;
  }
  .modal-content .zairyo ul li{
    width:100%;
    border-bottom: 1px solid #B9B9B9;
    padding: 15px 5px;
  }

  .modal-content .zairyo ul li:nth-child(2n){
    margin-right: 0;
  }
  .modal-content .zairyo ul li dl dt,
  .modal-content .zairyo ul li dl dd{
    font-size: 16px;
    display: inline-block;
  }
  .modal-content .zairyo ul li dl dt{
    width:195px;
  }
  .modal-content .howto ul{
    border-bottom: 1px solid #B9B9B9;
  }
  .modal-content .howto ul li{
    font-size: 18px;
    line-height: 30px;
    padding: 45px 10px;
    position: relative;
  }


  .modal-content .howto ul li:first-child{
    border-top: 1px solid #B9B9B9;
  }

  .modal-content .howto ul li:nth-child(1):after,
  .modal-content .howto ul li:nth-child(2):after{
    content: "";
    display: block;
    width: 100%;
    height:0;
    padding-bottom: 17.8%;
    background: url(../images/recipe_popup_list_icon.png) no-repeat center;
    background-size:200%;
    position: absolute;
    bottom: -28px;
    left: 0;
  }
  #modal02 .modal-content .howto ul li:nth-child(2):after{
    display:none;
  }

  .close_btn{
    width:58px;
    position: absolute;
    right:-10px;
    top:-10px;
  }


  /* モーダルウィンドウ表示中に記事本体を固定 */
  body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
  }

  /*モーダル終わり*/


  .mfp-container {
      text-align: center;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      padding: 0 6px;
      box-sizing: border-box;
  }

  .mfp-iframe-holder {
      padding-top: 40px;
      padding-bottom: 40px;
  }

  .mfp-content {
      display: inline-block;
      vertical-align: middle;
      margin: 0 auto;
      z-index: 1045;
      line-height: 0;
      width:96%;
      max-width: 900px;
      cursor: auto;
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
  }
  .mfp-iframe-scaler {
      width: 100%;
      height: 0;
      overflow: hidden;
      padding-top: 56.25%;
  }
  .mfp-iframe-scaler iframe {
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: 0 0 8px rgb(0 0 0 / 60%);
      background: #000;
  }
  .mfp-close {
      width: 44px;
      height: 44px;
      line-height: 44px;
      position: absolute;
      right: 0;
      top: 0;
      text-decoration: none;
      text-align: center;
      opacity: .65;
      padding: 0 0 18px 10px;
      font-style: normal;
      font-size: 28px;
      font-family: Arial,Baskerville,monospace;
      overflow: visible;
      cursor: pointer;
      background: transparent;
      border: 0;
      -webkit-appearance: none;
      display: block;
      outline: 0;
      padding: 0;
      z-index: 1046;
      box-shadow: none;
      touch-action: manipulation;
      color: #FFF;
      top: -40px;
      right: -6px;
      text-align: right;
      padding-right: 6px;
      width: 100%;
  }
  .mfp-close:hover, .mfp-close:focus {
      opacity: 1;
  }

  .site-header {
    position: relative !important;
  }
  
  /*
	/* main_visual
	/*
	----------------------------------------------------------------- */
	#main_visual {
		overflow: hidden;
		position: relative;
		z-index: 3;
		min-height: 667px;
		height: 100vh;
	}

	#main_visual .swiper,
	#main_visual .swiper .swiper-wrapper,
	#main_visual .swiper .swiper-slide {
		height: 100%;
	}

	#main_visual .swiper .swiper-slide {
		position: relative;
	}

	#main_visual .swiper .swiper-slide a {
		display: none;
	}
	
	#main_visual .swiper .swiper-slide .image .pc {
		display: none;
	}

	#main_visual .swiper .swiper-slide .image .sp {
		display: block;
	}

	/*#main_visual .swiper .swiper-slide .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}*/

	#main_visual .swiper-button-prev,
	#main_visual .swiper-button-next,
	#main_visual .swiper-pagination {
		display: none;
	}
	
	/* 0628 */
	
	#main_visual .swiper .swiper-slide .image {
		position: relative;
		width: 100%;
		overflow: hidden;
		position: relative;
		height: 100%;
	}
	
	#main_visual .swiper .swiper-slide .image .bg {
		position: relative;
		width: 100%;
		overflow: hidden;
		position: relative;
		height: 100%;
		background: #e6edfe;
	}
	
	#main_visual .swiper .swiper-slide .image .bg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	#main_visual .ob_c img {
		object-fit: contain!important;
	}
	
	#main_visual .image .mv_title {
		position: absolute;
		left: 50%;
		z-index: 3;
		pointer-events: none;
	}
	
	#main_visual .kv01 .image .mv_title {
		bottom: auto;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	
	#main_visual .kv01 .image .mv_title.title01 {
		width: 92vw;
		margin-left: 0;
	}
	
	#main_visual .kv01 .image .mv_title.title02 {
		width: 9.855vw;
		margin-left: 41.33vw;
		margin-top: -25vw;
	}
	
	#main_visual .kv02 .image .mv_title {
		/* top: 12.03125vw;
		transform: translateX(-50%); */
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	
	#main_visual .kv02 .image .mv_title.title01 {
		top: 9.33vw;
		width: 62.26vw;
		margin-left: 0;
		/* display: none; */
		overflow: inherit!important
	}
	
	#main_visual .kv02 .image .mv_title.title02 {
		width: 36vw;
		margin-left: -23.2vw;
		top: 28.53vw;
	}
	
	#main_visual .kv02 .image .mv_title.title03 {
		width: 21.333vw;
		top: 21.13vw;
		margin-left: 33.4vw;
	}
  
  /*
  /* news
  /*
  ----------------------------------------------------------------- */
  	#kirishima_no8 .news {
  		background: #6CBB5A;
  		overflow-x: hidden;
  		position: relative;
  		padding: 4px 0 6px;
  	}
  	
  	#kirishima_no8 .news_wrap {
  		max-width: 940px;
  		width: 100%;
  		padding: 0 15px;
  		margin: 0 auto;
  		display: block;
  		align-items: center;
  		box-sizing: border-box;
  	}
  	
  	#kirishima_no8 .news_wrap .news_title {
  		display: none;
  	}
  	
  	#kirishima_no8 .news_list {
  		width: 100%;
  	}
  	
  	#kirishima_no8 .news_list a {
  		font-size: 15px;
  		color: #fff;
  		text-decoration: none;
  		padding: 5px;
  		display: flex;
  	}
  	
  	#kirishima_no8 .news_list a .date {
  		margin-right: 15px;
		display: block;
  	}
	
	#kirishima_no8 .news_list a .title {
		overflow : hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: none;
		-webkit-box-orient: vertical;
		line-height: 1.2;
	}
  	
  	#kirishima_no8 .news_list a:hover {
  		text-decoration: none;
  	}
  	
  	#kirishima_no8 .news_list li+li {
  		border-top: 1px solid #fff;
  	}
	
  	/*
  	/* cm
  	/*
  	----------------------------------------------------------------- */
  	#kirishima_no8 .cm {
  		background: url(../images/cm_bg_sp.jpg) no-repeat top center;
  		background-size: cover;
  		padding: 40px 0 66px;
  		overflow: hidden;
  		/* transform: translateY(-180px); */
  		position: relative;
  	}
  
  	#kirishima_no8 .cm_item {
  		box-sizing: border-box;
  		max-width: 1390px;
  		margin: 0 auto;
  		padding: 0 15px;
  		display: block;
  	}
  	
  	#kirishima_no8 .cm_item .info {
		width: 100%;
  		display: block;
  	}
  	
  	#kirishima_no8 .cm_item .info_cont {
		max-width: 350px;
  		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
  	}
  	
  	#kirishima_no8 .cm_title {
		max-width: 210px;
  		width: 100%;
		margin: 0 auto 35px;
  	}
  	
	#kirishima_no8 .cm_item .info .text .text_image {
		max-width: 277px;
		width: 100%;
		margin: 42px auto 0;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap {
		max-width: 350px;
		width: 100%;
		margin: 30px auto 0;
		display: block;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap p {
		max-width: 278px;
		width: 100%;
		margin: 0;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap span {
		display: block;
		padding-top: 65.1%;
		position: relative;
		width: 100%;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap img {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 2;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap .image01 {
		position: relative;
		z-index: 2;
	}
	
	#kirishima_no8 .cm_item .cm_image_wrap .image02 {
		position: relative;
		z-index: 3;
		margin-top: 0;
		margin-left: 66px;
		margin-top: -21px;
	}
	
	#kirishima_no8 .cm_item .info .text .text_image.hidden__pc {
		display: block;
	}
	
	#kirishima_no8 .cm_mv_list {
		display: block;
	}
  	
  	#kirishima_no8 .cm_mv {
  		max-width: 1840px;
  		width: 100%;
  		margin: 63px auto 0;
  		padding: 0 15px;
  		box-sizing: border-box;
  	}
  	#kirishima_no8 .cm_mv .anchor_here {
		top: 0px;
	}
	#kirishima_no8 .cm_mv_cont {
		display: block;
	}
	
	/*#kirishima_no8 .cm_mv_cont:nth-child(n+3) {
		display: none;
	}*/
	
	#kirishima_no8 .cm_mv_list.is_active .cm_mv_cont:nth-child(n+3) {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	
  	
  	#kirishima_no8 .cm_mv_cont+.cm_mv_cont {
		margin-top: 40px;
  	}
	
	#kirishima_no8 .cm_mv_wrap.wrap02 .cm_mv_cont {
		width: 100%;
		margin: 0 auto;
	}
	
	#kirishima_no8 .cm_mv_cont span {
		font-size: 1.8rem;
		color: #fff;
		text-align: center;
		display: block;
		margin-top: 4px;
		line-height: 1.4;
		font-feature-settings: "palt";
	}
	
	#kirishima_no8 .cm_movie {
		width: 100%;
	}
	
	
	#kirishima_no8 .cm_movie a {
		position: relative;
		display: block;
		padding-top: 56.23%;
		width: 100%;
	}

	#kirishima_no8 .cm_mv_wrap.wrap02 .cm_movie a {
		padding-top: 56.3%;
	}
	
	#kirishima_no8 .cm_movie a::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: 3;
		transform: translate(-50%,-50%);
		background: url('../images/icon_play.svg') no-repeat;
		width: 56px;
		height: 56px;
		background-size: cover;
	}
	
	#kirishima_no8 .cm_movie img {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 1;
		object-fit: cover;
	}
	#kirishima_no8 .cm_movie p {
		color: #fff;
		font-size: 1.3rem;
		margin-top: 1px;
		letter-spacing: 0.1rem;
		text-align: center;
	}
	
	#kirishima_no8 .cm_mv_section .cm_mv_title {
		margin-bottom: 15px;
	}
	
	#kirishima_no8 .cm_mv_section .cm_mv_title span {
		height: 38px;
		display: block;
		text-align: center;
	}
	
	#kirishima_no8 .cm_mv_section .cm_mv_title span img {
		width: auto;
		height: 100%;
	}
	
	
  	#kirishima_no8 .cm_mv_cont .title {
  		text-align: center;
  		margin-bottom: 20px;
		margin-top: 10px;
  	}
	
	#kirishima_no8 .cm_mv_cont .title span {
		display: block;
		height: 38px;
	}
	
	#kirishima_no8 .cm_mv_cont .title img {
		height: 38px;
		width: auto;
	}
  	
  	#kirishima_no8 .cm_link {
  		text-align: center;
		margin-top: 27px;
  	}
  	
  	#kirishima_no8 .cm_link a {
  		display: inline-block;
  		width: 116px;
  	}
	
	/*
	/* 味わい
	/*
	----------------------------------------------------------------- */
	#kirishima_no8 .section_head {
		margin: 0 auto;
		font-size: 30px;
		font-weight: 500;
		line-height: 1;
		color: #fff;
		text-align: center;
		margin-bottom: 40px;
		margin-top: 20px;
		width: 90%;
	}
	
	#kirishima_no8 .section_head.green {
		color: #6CBB5A;
	}
	
	#kirishima_no8 .section_head span {
		display: inline-block;
		position: relative;
	}
	
	/*#kirishima_no8 .section_head span::before {
		content: '';
		position: absolute;
		left: 50%;
		bottom: 0;
		width: 170px;
		height: 30px;
		background: url('../images/icon_cm_title_underline.svg') no-repeat;
		background-size: 100% auto;
		transform: translate(-50%,100%);
		margin-bottom: -5px;
	}*/
	
	#kirishima_no8 .section_head.green span::before {
		width: 480px;
		background: url('../images/icon_title_underline_green.svg') no-repeat;
		background-size: 100% auto;
	}
	
	#kirishima_no8 .taste {
		background: #6CBB5A;
		background-size: cover;
		padding: 46px 0 30px;
		position: relative;
		overflow: hidden;
		z-index: 1;
	}
	
	#kirishima_no8 .taste .anchor_here {
	   top: 50px;
	}
	
	#kirishima_no8 .taste .wrap {
		max-width: 1100px;
		width: 100%;
		margin: 0 auto;
		position: relative;
		z-index: 3;
		box-sizing: border-box;
		font-feature-settings: "palt";
	}
	
	#kirishima_no8 .taste .wrap+.wrap {
		margin-top: 167px;
	}
	
	#kirishima_no8 .taste .wrap > h2 {
		font-size: 40px;
		line-height: 1.2;
		letter-spacing: 0.07em;
		text-align: center;
		color: #fff;
		padding-bottom: 28px;
	}
	
	#kirishima_no8 .taste .wrap > h4 {
		font-size: 24px;
		line-height: 1.6;
		text-align: center;
		padding-bottom: 21px;
		letter-spacing: 0.07em;
		color: #fff;
	}
	
	#kirishima_no8 .taste .wrap > p {
	  font-size: 18px;
	  line-height: 2;
	  letter-spacing: 0.07em;
	  text-align: center;
	  color: #fff;
	}
	
	
	#kirishima_no8 .taste .wrap .fruit {
	  position: relative;
	  height: 226px;
	}
	
	
	#kirishima_no8 .taste .wrap figure.img01{
	  width: 118px;
	  height: 118px;
	  background: url(../images/sec_fig_img01.jpg) no-repeat center;
	  background-size: 101%;
	  overflow: hidden;
	  border-radius: 50%;
	  position: absolute;
	  top: 5px;
	  left: 14px;
	  z-index: 3;
	}
	
	
	#kirishima_no8 .taste .wrap figure.img02{
	  width: 96px;
	  height: 96px;
	  background: url(../images/sec_fig_img02.jpg) no-repeat center;
	  background-size: 101%;
	  overflow: hidden;
	  border-radius: 50%;
	  position: absolute;
	  bottom: 0;
	  top: auto;
	  left: 100px;
	  z-index: 3;
	}
	
	
	#kirishima_no8 .taste .wrap figure.img03{
	  width: 160px;
	  height: 160px;
	  background: url(../images/sec_fig_img03.jpg) no-repeat center;
	  background-size: 101%;
	  overflow: hidden;
	  border-radius: 50%;
	  position: absolute;
	  top: 0px;
	  right: 17px;
	  z-index: 3;
	}
	
	
	#kirishima_no8 .taste .wrap figure.img01,
	#kirishima_no8 .taste .wrap figure.img02,
	#kirishima_no8 .taste .wrap figure.img03{
	  opacity: 0;
	  transform: translateY(20px);
	  transition: all ease-out 0.8s;
	}
	
	#kirishima_no8 .taste.action .wrap figure.img01,
	#kirishima_no8 .taste.action .wrap figure.img02,
	#kirishima_no8 .taste.action .wrap figure.img03{
	  opacity: 1;
	  transform: translateY(0);
	}
	
	#kirishima_no8 .taste .wrap figure.img01{transition-delay:0.5s }
	#kirishima_no8 .taste .wrap figure.img02{transition-delay:0.7s}
	#kirishima_no8 .taste .wrap figure.img03{transition-delay:0.6s}
	
	#kirishima_no8 .taste .wrap figure.img01.move{
	    animation-name: fuwafuwa;
	    animation-timing-function: linear;
	    animation-iteration-count: infinite;
	    animation-direction: alternate;
	    animation-duration:3s;
	}
	
	#kirishima_no8 .taste .wrap figure.img02.move,
	#kirishima_no8 .taste .wrap figure.img03.move{
	    animation-name: fuwafuwa2;
	    animation-timing-function:  linear;
	    animation-iteration-count: infinite;
	    animation-direction: alternate;
	    animation-duration:3s;
	}
	
	#kirishima_no8 .taste .wrap .flurryelegance{
		text-align: center;
		display: inherit;
		margin-bottom: 14px;
		margin-top: -8px;
	}
	#kirishima_no8 .taste .wrap .flurryelegance img{
		width: 17rem;
	}
	
	
	@keyframes fuwafuwa {
	    0% {
	      transform: translateY(0);
	    }
	    33% {
	      transform: translateY(5px);
	    }
	    66% {
	      transform: translateY(-5px);
	    }
	    100% {
	      transform: translateY(0);
	    }
	}
	
	@keyframes fuwafuwa2 {
	    0% {
	      transform: translateY(0);
	    }
	    33% {
	      transform: translateY(-5px);
	    }
	    66% {
	      transform: translateY(5px);
	    }
	    100% {
	      transform: translateY(0);
	    }
	}
	
	
	#kirishima_no8 .taste_box {
		max-width: calc(100% - 48px);
		width: 100%;
		margin: 62px auto 56px;
		padding: 33px 16px;
		background: #fff;
		position: relative;
		z-index: 1;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .taste_box::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: -1;
		transform: translate(-50%,-50%);
		width: calc(100% + 20px);
		height: calc(100% + 20px);
		background: url('../images/taste_bg03.png') no-repeat;
		background-size: cover;
	}
	
	#kirishima_no8 .taste_box h2 {
		font-size: 25px;
		line-height: 1.4;
		letter-spacing: 0.07em;
		text-align: center;
		color: #6CBB5A;
		margin-bottom: 4px;
	}
	
	#kirishima_no8 .taste_box h2 span {
		display: block;
		font-size: 10px;
		line-height: 2;
		letter-spacing: 0.07em;
		color: #6CBB5A;
	}
	
	#kirishima_no8 .taste_box p {
		color: #6CBB5A;
		text-align: center;
		font-size: 14px;
		line-height: 1.7;
		letter-spacing: 0.07em;
	}
	
	/*
	/* how_to_drink
	/* おすすめの飲み方
	/*
	----------------------------------------------------------------- */
	.is-hide {
		display: none;
	}
	
	#kirishima_no8 .taste .how_to_drink.wrap {
		max-width: 624px;
		width: 100%;
		padding: 0 15px;
		margin: 0 auto;
		position: relative;
		box-sizing: border-box;
		margin-top: 40px;
	}
	#kirishima_no8 .how_to_drink .anchor_here {
		top: 0px;
	}
	
	#kirishima_no8 .how_to_drink.wrap .drinking_02_2{
		position: absolute;
		width: 5.4rem;
		right: -16px;
		top: 1rem;
	}
	
	#kirishima_no8 .how_to_drink.wrap .section_head {
		margin-bottom: 30px;
	}
	
	#kirishima_no8 .how_to_drink.wrap .section_head span::before {
		width: 263px;
		height: 20px;
		background: url(../images/how_to_drink_underline.svg) no-repeat;
		background-size: 100% auto;
	}
	
	#kirishima_no8 .how_to_drink .drinking_navi {
		display: flex;
		align-items: flex-end;
		height: 46px;
		overflow: hidden;
	}
	
	#kirishima_no8 .how_to_drink .drinking_navi li {
		width: 50%;
	}
	
	#kirishima_no8 .how_to_drink .drinking_navi a {
		height: 46px;
		color: #fff;
		background:  #6CBB5A;
		font-size: 24px;
		line-height: 24px;
		border: 2px solid #fff;
		border-bottom: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		transition: all .3s ease;
		border-radius: 10px 10px 0 0;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .how_to_drink .drinking_navi a.is-active {
		background: #fff;
		color: #6CBB5A;
	}
	
	#kirishima_no8 .how_to_drink .drinking {
		/* width: 1035px; */
		background: #FFF;
		border-radius: 0 0 10px 10px;
		padding: 24px 30px 35px;
		margin: 0 auto;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .how_to_drink .drinking .drinking_title {
		text-align: center;
		color: #6CBB5A;
		font-size: 30px;
		line-height: 30px;
		margin-bottom: 0;
		font-style: italic;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul {
		display: block;
		width: 100%;
		margin-left: 0;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li {
		width: 100%;
		padding: 30px 0;
		position: relative;
		margin: 0;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li+li:after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 1px;
		background: #cccccc;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li+li::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		z-index: 3;
		transform: translate(-50%,-50%);
		width: 37px;
		height: 37px;
		background: url('../images/icon_green_arrow_sp.svg') no-repeat;
		background-size: cover;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li dl dt {
		margin-bottom: 12px;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li dl dd {
		font-size: 19px;
		color: #6cbb5a;
		line-height: 1.35;
		letter-spacing: 0.07em;
	}
	
	#kirishima_no8 .how_to_drink .drinking ul li dl dd font {
		font-size: 24px;
		top: 1px;
		position: relative;
	}
	
	#kirishima_no8 .how_to_drink .drinking_note.hidden__pc {
		text-align: left;
		font-size: 13px;
		color: #6cbb5a;
		margin-top: 8px;
		display: block;
	}
	#kirishima_no8 .how_to_drink .drinking_note2 {
		text-align: center;
		font-size: 15px;
		color: #fff;
		margin-top: 14px;
		display: block;
	}
	
	/*
	/* recipe
	/* おすすめアレンジレシピ
	/*
	----------------------------------------------------------------- */
	#kirishima_no8 .recipe {
		overflow: hidden;
		position: relative;
	}
	
	#kirishima_no8 .recipe .section_head.green span::before {
		width: 170px;
		background: url(../images/icon_recipe_underline_green.svg) no-repeat;
		background-size: 100% auto;
	}
	
	#kirishima_no8 .recipe_wrap {
		max-width: 1640px;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
		position: relative;
		padding: 50px 15px 46px;
		font-feature-settings: "palt";
	}
	
	#kirishima_no8 .recipe_wrap::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		z-index: -1;
		width: 100%;
		height: 100%;
		background: url('../images/recipe_bg_sp.png') center;
		background-size: cover;
	}
	
	#kirishima_no8 .recipe ul {
		max-width: 940px;
		width: 100%;
		margin: 54px auto 0;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .recipe ul li {
		position: relative;
		display: block;
	}

	#kirishima_no8 .recipe li:nth-child(1) {
		margin-bottom: 4.4rem;
	}
	#kirishima_no8 .recipe ul li+li {
		margin-top: 25px;
	}
	
	#kirishima_no8 .recipe ul li .image {
		display: flex;
	}
	
	#kirishima_no8 .recipe ul li:nth-child(even) .image {
		justify-content: flex-end;
	}
	
	#kirishima_no8 .recipe ul li figure {
		width: calc(100% - 100px);
		display: block;
		border-radius: 10px;
		overflow: hidden;
		margin-left: -15px;
	}
	
	#kirishima_no8 .recipe ul li:nth-child(even) figure {
		margin-right: -15px;
		margin-left: 0;
	}
	
	#kirishima_no8 .recipe ul li dl {
		width: calc(100% - 448px);
	}
	
	#kirishima_no8 .recipe ul li dl {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 25px;
	}
	
	
	#kirishima_no8 .recipe ul li:nth-child(1) dl dt {
		width: 230px;
		margin-bottom: 20px;
	}
	
	#kirishima_no8 .recipe ul li:nth-child(2) dl dt {
		width: 202px;
		margin-bottom: 20px;
	}
	
	#kirishima_no8 .recipe ul li dl dd a {
		width: 150px;
		font-size: 12px;
		letter-spacing: 0.19em;
		line-height: 38px;
		height: 38px;
		display: block;
		position: relative;
		z-index: 1;
		border-radius: 60px;
		overflow: hidden;
		text-align: left;
		text-decoration: none;
		color: #fff;
		/* background: #6cbb5a; */
		padding: 0 25px;
		box-sizing: border-box;
	}
	
	
	#kirishima_no8 .recipe ul li dl dd a:before  {
		content: "";
		width: 100%;
		height: 100%;
		background: #6cbb5a;
		display: block;
		position: absolute;
		top:0;
		right:0;
		z-index: -1;
	}
	
	#kirishima_no8 .recipe ul li dl dd a span  {
		width: 19px;
		height: 19px;
		display:block;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
	}
	
	#kirishima_no8 .recipe ul li dl dd a::after  {
		content: "";
		width: 100%;
		height: 100%;
		background: #6A9743;
		opacity: .5;
		position: absolute;
		top:0;
		right:0;
		z-index: -1;
		transform: scaleX(0);
		transform-origin: top right;
		transition: transform 0.3s ease;
	}
	
	/*
	/* pearing
	/* ペアリング
	/*
	----------------------------------------------------------------- */
	
	#kirishima_no8 .pearing {
		background: #6cbb5a;
		padding: 46px 0 133px;
		position: relative;
		font-feature-settings: "palt";
	}
	
	#kirishima_no8 .pearing .anchor_here {
	    top: 60px;
	}
	
	#kirishima_no8 .pearing::after {
		content: '';
		position: absolute;
		left: 50%;
		bottom: -2px;
		z-index: 1;
		transform: translateX(-50%);
		width: 100%;
		height: 56px;
		background: url(../images/drinking_wray_top_sp.png) center;
		background-size: 100% 100%;
		pointer-events: none;
	}
	
	#kirishima_no8 .pearing_wrap {
		padding: 0 15px;
		box-sizing: border-box;
	}
	
	#kirishima_no8 .pearing .pearing_text {
		max-width: 430px;
		width: 100%;
		margin: 0 auto;
		font-size: 18px;
		line-height: 2;
		letter-spacing: 0.07em;
		color: #FFF;
		text-align: center;
		margin-bottom: 70px;
	}
	
	#kirishima_no8  .pearing ul li dl {
		display: flex;
		flex-direction: column-reverse;
	}
	
	#kirishima_no8  .pearing ul li+li {
		margin-top: 60px;
	}
	
	#kirishima_no8  .pearing ul li dl dt {
		width: 100%;
		display: flex;
		margin-top: 16px;
	}
	
	#kirishima_no8  .pearing ul li:nth-child(even) dl dt {
		justify-content: flex-end;
	}
	
	#kirishima_no8  .pearing ul li dl dt p {
		margin-left: -15px;
		max-width: calc(100% - 57px);
		width: 100%;
	}
	
	#kirishima_no8  .pearing ul li:nth-child(even) dl dt p {
		margin-left: 0;
		margin-right: -15px;
	}
	
	#kirishima_no8  .pearing ul li dl dt span {
		position: relative;
		display: block;
		width: 100%;
		padding-top: 62.35%;
		border-radius: 10px;
		overflow: hidden;
	}
	
	#kirishima_no8  .pearing ul li dl dt img {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#kirishima_no8  .pearing ul li dl dd {
		font-size: 25px;
		line-height: 1.2;
		letter-spacing: 0.15em;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 10px 10px 0;
	}
	
	#kirishima_no8  .pearing ul li dl dd span {
		position: relative;
		display: inline-block;
	}
	#kirishima_no8  .pearing ul li dl dd span:before{
	  content: "";
	  width: 100px;
	  height: 21px;
	  background: url('../images/icon_with.svg') no-repeat;
	  background-size: 100%;
	  position: absolute;
	  top: -5px;
	  left: 50%;
	  transform: translate(-50%,-100%);
	}
	
	/*
	/* drinking_way
	/* 飲み方広がる
	/*
	----------------------------------------------------------------- */
	#kirishima_no8 .drinking_way {
		padding: 0 0 280px;
		position: relative;
	}
	#kirishima_no8 .drinking_way .anchor_here {
	   /* top: 10px;*/
	}
	#kirishima_no8 .drinking_way::after {
		content: '';
		position: absolute;
		left: 50%;
		bottom: 0;
		z-index: 1;
		transform: translateX(-50%);
		width: 100%;
		height: 50px;
		background: url('../images/drinking_wray_border_green_sp.png') center;
		background-size: 110% 100%;
		pointer-events: none;
	}
	
	#kirishima_no8 .drinking_way_wrap {
		position: relative;
		max-width: 430px;
		width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
		margin: 0 auto;
	}
	
	#kirishima_no8 .drinking_way_images {
		position: absolute;
		top: 0;
		z-index: 1;
		width: 100%;
	}
	
	#kirishima_no8 .drinking_way_images .img {
		position: absolute;
		z-index: 1;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 100%;
		overflow: hidden;
	}
	
	#kirishima_no8 .drinking_way_images .image01 {
		top: -36px;
		width: 203px;
		height: 203px;
		margin-left: -111px;
	}
	
	#kirishima_no8 .drinking_way_images .image02 {
		top: 0;
		width: 128px;
		height: 128px;
		margin-left: 70px;
	}
	
	#kirishima_no8 .drinking_way_images .image03 {
		display: none;
	}
	
	#kirishima_no8 .drinking_way_images .image04 {
		display: none;
	}
	
	#kirishima_no8 .drinking_way_images .image05 {
		top: 177px;
		width: 121px;
		height: 121px;
		margin-left: -117px;
	}
	
	#kirishima_no8 .drinking_way_images .image06 {
		display: none;
	}
	
	#kirishima_no8 .drinking_way_images .image07 {
		top: 540px;
		width: 179px;
		height: 179px;
		margin-left: -107px;
	}
	
	#kirishima_no8 .drinking_way_images .image08 {
		top: 372px;
		width: 146px;
		height: 146px;
		margin-left: 140px;
	}
	
	#kirishima_no8 .drinking_way_images .image09 {
		top: 134px;
		width: 186px;
		height: 186px;
		margin-left: 50px;
	}
	
	#kirishima_no8 .drinking_way_images .image10 {
		display: none;
	}
	
	#kirishima_no8 .drinking_way_images .image11 {
		top: 542px;
		width: 211px;
		height: 211px;
		margin-left: 92px;
	}
	
	#kirishima_no8 .drinking_way_item {
		/* padding: 309px 35px 0; */
		padding-top: 305px;
	}
	
	#kirishima_no8 .drinking_way_item .info {
		max-width: 100%;
		width: 100%;
		/* margin: 0 auto; */
		box-sizing: border-box;
		position: relative;
		left: 20px;
		font-feature-settings: "palt";
	}
	
	#kirishima_no8 .drinking_way_item .title {
		color: #6cbb5a;
		/* font-size: 80px; */
		line-height: 1.25;
		/* margin-bottom: 30px; */
		letter-spacing: 0.1em;
		font-size: 21px;
		margin-bottom: 7px;
		margin-top: 7px;
	}
	
	#kirishima_no8 .drinking_way_item .text {
		color: #6cbb5a;
		font-size: 13px;
		line-height: 2;
		letter-spacing: 0.07em;
	}
	
	/*
	/* 開発者の想い
	/* thought
	/*
	----------------------------------------------------------------- */
	#kirishima_no8 #thought {
	  padding-top: 84px;
	  padding-bottom: 120px;
	  overflow-x: hidden;
	}
	
	
	#kirishima_no8 #thought .section_head {
		margin: 0 auto;
		margin-bottom: 33px;
		width: 70%;
	}
	
	#kirishima_no8 #thought .section_head span::before {
		width: 170px;
		background: url(../images/icon_recipe_underline_green.svg) no-repeat;
		background-size: 100% auto;
	}
		
	#kirishima_no8 #thought .swiper{
	  position: relative;
	
	}
	
	/* スライド全体 */
	#kirishima_no8 #thought .swiper-slide {
	/*  width:85%;*/
	  width:85vw;/*←%をvwに変更*/
	  background: #FFF;
	  border-radius: 28px;
	  box-shadow: 6px 6px 30px rgba(0,0,0,0.16);
	  padding: 30px 25px 0;
	  box-sizing: border-box;
	  font-size: 0;
	}
	
	#kirishima_no8 #thought .swiper-slide .inner{
	  min-height: 680px;
	  position: relative;
	}
	
	#kirishima_no8 #thought .swiper-slide figure{
	  width: 100%;
	  margin-bottom:25px;
	  vertical-align: top;
	}
	#kirishima_no8 #thought .swiper-slide .txt_box{
	  width:100%;
	  display: inline-block;
	  vertical-align: top;
	  position: relative;
	  padding-bottom: 60px;
	}
	#kirishima_no8 #thought .swiper-slide .txt_box h5{
	  font-size:16px;
	  line-height:28px;
	  padding-bottom:15px;
	  border-bottom: 1px solid #707070;
	  margin-bottom: 15px;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box dl {
		min-height: 200px;
	}
	#kirishima_no8 #thought .swiper-slide .txt_box dl dt{
	  font-size: 28px;
	  line-height:44px;
	  letter-spacing: 0.03em;
	  margin-bottom:15px;
	}
	#kirishima_no8 #thought .swiper-slide .txt_box dl dt span{
	  font-size: 14px;
	}
	#kirishima_no8 #thought .swiper-slide .txt_box dl dd{
	  font-size: 20px;
	  letter-spacing: 0.05em;
	  line-height: 34px;
	}
	
	
	#kirishima_no8 #thought .swiper-slide .txt_box .btn {
	 /* position: absolute;
	  bottom: 80px;
	  left:50%; */
	  /* margin-left: -119px; */
	 
	  /* transform: translateY(100%); */
	  display: flex;
	  justify-content: center;
	  margin-top: 10px;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box .cap {
	  width:100%;
	  font-size: 11px;
	  margin-top: 10px;
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box .btn a{
	  display: block;
	  max-width:238px;
	  width: 100%;
	  height:60px; 
	  border-radius: 60px;
	  padding: 0 35px;
	  box-sizing: border-box;
	  font-size: 20px;
	  line-height: 60px;
	  height:60px;
	  display: block;
	  text-align:left;
	  text-decoration: none;
	  color: #FFF;
	  position: relative;
	  z-index: 1;
	  background: #6cbb5a;
	  box-shadow: 10px 5px 5px rgba(0,0,0,0.16);
	}
	
	#kirishima_no8 #thought .swiper-slide .txt_box .btn a span{
	  width:30px;
	  height: 30px;
	  display:block;
	  position: absolute;
	  top: 50%;
	  right: 20px;
	  transform: translateY(-50%);
	}
	
	
	/* 左右のスライド */
	#kirishima_no8 #thought .swiper-button-prev,
	#kirishima_no8 #thought .swiper-button-next{
	  width:40px;
	  height:40px;
	  border-radius: 90px;
	  background: #6cbb5a;
	  box-shadow: 6px 6px 6px rgba(0,0,0,0.16);
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  transition: 0.2s all ease;
	}
	
	#kirishima_no8 #thought .swiper-button-prev{
	  left:1%;
	  margin-left: 0;
	}
	
	#kirishima_no8 #thought .swiper-button-next{
	  right:1%;
	  margin-right: 0;
	}
	
	#kirishima_no8 #thought .swiper-button-prev img,
	#kirishima_no8 #thought .swiper-button-next img{
	  width:10px;
	}
	
	#kirishima_no8 #thought .wrap {
		position: relative;
		font-feature-settings: "palt";
	}
	
	#kirishima_no8 .thought_wrap .anchor_here {
	     top: 60px;
	     /* position: relative; */
	}
	
	#kirishima_no8 #thought .swiper-pagination{
	  width: 100%;
	  text-align: center;
	  margin-top: 50px;
	}
	
	#kirishima_no8 #thought .swiper-pagination span{
	  width: 18px;
	  height: 18px;
	  background:#FFF;
	  border: #707070 1px solid;
	  margin: 0 10px;
	  box-sizing: border-box;
	  opacity: 1;
	}
	#kirishima_no8 #thought .swiper-pagination span.swiper-pagination-bullet-active{
	  background:#707070;
	}
	
	/*
	/* material
	/* 100%へのこだわり
	/*
	----------------------------------------------------------------- */
	
	#kirishima_no8 .material {
		background: url(../images/sec05_bg_sp.jpg) no-repeat center;
		background-size:cover;
		padding: 40px 0;
		font-feature-settings: "palt";
	}
	
	#kirishima_no8 .material .material_wrap {
		max-width: 1140px;
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
		margin: 0 auto;
	}
	
	
	#kirishima_no8 .material .material_wrap .section_head span::before {
	    width: 169px;
	    background: url('../images/sec05_title_underline_sp.svg') no-repeat;
	    background-size: 100% 100%;
	}
	
	#kirishima_no8 .material .material_wrap h3.btm {
		margin: 0 auto 5px;
		color: #fff;
		font-size: 26px;
		text-align: center;
		letter-spacing: 0.1em;
		font-style: italic;
	}
	
	#kirishima_no8 .material .material_wrap .material_list {
	  font-size: 0;
	  margin-bottom: 40px;
	}
	
	#kirishima_no8 .material .material_wrap .material_list li {
	  width: 100%;
	}
	
	#kirishima_no8 .material .material_wrap .material_list li+li {
		margin-top: 23px;
	}
	
	#kirishima_no8 .material .material_wrap .material_list li figure {
	  width: 100px;
	  height: 100px;
	  border-radius: 100%;
	  overflow: hidden;
	}
	
	#kirishima_no8 .material .material_wrap dl {
		display: flex;
		align-items: center;
	}
	
	#kirishima_no8 .material .material_wrap .material_list li dl dd {
		font-size: 16px;
		line-height: 1.56;
		letter-spacing: 0.07em;
		text-align: left;
		color: #fff;
		margin-left: 15px;
		width: calc(100% - 115px);
	}
	
	#kirishima_no8 .material .material_wrap .material_list li dl dd span.cap {
		display: block;
		font-size: 11px;
		padding-top: 10px;
	}
	#kirishima_no8 .material .material_wrap .material_list .small_note {
		font-size: 11px;
	}
	#kirishima_no8 .material .material_wrap .small_note2 {
		font-size: 15px;
        position: relative;
        bottom: 4px;
	}
	
	#kirishima_no8 .material .material_wrap .material_ul {
		max-width: 246px;
		width: 100%;
		margin: 0 auto 24px;
	}
	
	#kirishima_no8 .material .material_wrap .material_ul li {
		font-size: 14px;
		line-height: 1.5;
		color: #fff;
		padding-left: 2em;
		letter-spacing: 0.07em;
		position: relative;
	}
	
	#kirishima_no8 .material .material_wrap .material_ul li font {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 3;
	}
	
	#kirishima_no8 .material .material_wrap .btn {
	  width: 245px;
	  height: 60px;
	  position: relative;
	  overflow: hidden;
	  /* box-shadow: 10px 5px 5px rgba(0,0,0,0.16); */
	  border-radius: 60px;
	  margin: 0 auto;
	}
	
	#kirishima_no8 .material .material_wrap .btn a {
	  width: 100%;
	  padding: 0 35px;
	  box-sizing: border-box;
	  font-size: 20px;
	  line-height: 60px;
	  height: 60px;
	  display: block;
	  text-decoration: none;
	  color: #6cbb5a;
	  position: relative;
	  z-index: 1;
	}
	
	#kirishima_no8 .material .material_wrap .btn a span {
		width:30px;
		height: 30px;
		display:block;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		background: url('../images/sec05_link_icon.svg');
	}
	
	#kirishima_no8 .material .material_wrap .btn:after {
	  content: "";
	  width: 100%;
	  height: 100%;
	  background: #E6EFDE;
	  display: block;
	  position: absolute;
	  top:0;
	  right:0;
	  z-index:0;
	  transform: scaleX(0);
	  transform-origin: top right;
	  transition: transform 0.3s ease;
	}
	
	#kirishima_no8 .material .material_wrap .btn:before{
	  content: "";
	  width: 100%;
	  height: 100%;
	  background: #fff;
	  display: block;
	  position: absolute;
	  top:0;
	  right:0;
	  z-index:0;
	}
	
	/*
	/* product
	/* 商品詳細
	/*
	----------------------------------------------------------------- */
	
	#kirishima_no8 .product {
		padding: 40px 0 110px;
		background: #6cbb5a;
		position: relative;
		font-feature-settings: "palt";
	}
	#kirishima_no8 .product .anchor_here {
		top: 60px;
	}
	
	#kirishima_no8 .product .product_wrap {
		max-width: 970px;
		padding: 0 20px;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
	}
	
	    #kirishima_no8 #product .section_head {
        margin: 0 auto;
        font-size: 30px;
        font-weight: 500;
        line-height: 1;
        color: #fff;
        text-align: center;
        margin-bottom: 26px;
        margin-top: 20px;
        width: 62%;
    }
	
	#kirishima_no8 .product .product_item {
	}
	
	#kirishima_no8 .product .product_box {
		display: flex;
		align-items: center;
		padding: 25px 10px 25px 10px;
	}
	
	#kirishima_no8 .product .product_box + .product_box {
		border-top: 2px solid #fff;
	}
	
	#kirishima_no8 .product .product_box .image {
		margin-right: 20px;
	}
	#kirishima_no8 .product .product_box .p_l {
		position: relative;
		right: 2.4px;
	}
	
	#kirishima_no8 .product .product_box .image img {
		height: 146px;
		width: auto;
	}
	
	#kirishima_no8 .product .product_wrap .product_title {
		margin-bottom: 15px;
	}
	
	#kirishima_no8 .product .product_wrap ul li {
	  color: #FFF;
	  font-size: 16px;
	  line-height: 1.25;
	  letter-spacing: 0.07em;
	  padding: 3.5px 0;
	}
	
	#kirishima_no8 .product .product_wrap .btn {
		width: 238px;
		height: 60px;
		position: relative;
		overflow: hidden;
		/* box-shadow: 10px 5px 5px rgba(0,0,0,0.16); */
		border-radius: 60px;
		margin: 30px auto 0;
	}
	
	#kirishima_no8 .product .product_wrap .btn a {
	  width:238px;
	  font-size: 20px;
	  line-height: 60px;
	  height:60px;
	  display: block;
	  position: relative;
	  border-radius: 60px;
	  overflow: hidden;
	  /* box-shadow: 10px 5px 5px rgba(0,0,0,0.16); */
	  text-align: left;
	  text-decoration: none;
	  color: #6cbb5a;
	  padding: 0 25px;
	  box-sizing: border-box;
	  z-index: 1;
	}
	#kirishima_no8 .product .product_wrap .btn a span {
	  width:30px;
	  height: 30px;
	  display:block;
	  position: absolute;
	  top: 50%;
	  right: 20px;
	  transform: translateY(-50%);
	}
	
	#kirishima_no8 .product .product_wrap .btn:after {
	  content: "";
	  width: 100%;
	  height: 100%;
	  background: #E6EFDE;
	  display: block;
	  position: absolute;
	  top:0;
	  right:0;
	  z-index: 0;
	  transform: scaleX(0);
	  transform-origin: top right;
	  transition: transform 0.3s ease;
	}
	
	#kirishima_no8 .product .product_wrap .btn:before {
		content: "";
		width: 100%;
		height: 100%;
		background: #FFF;
		display: block;
		position: absolute;
		top:0;
		right:0;
		z-index: 0;
	}
	
}

.fixed_banner {
	 position: fixed;
	z-index: 99999;
	bottom: 3%;
    right: 2%;
	width: 100px;
	background-color: inherit;
	border: none; 
	display: block;
}
.fixed_banner_event {
	 position: fixed;
	z-index: 99999;
	bottom: 3%;
    right: 2%;
	width: 11vw;
	background-color: inherit;
	border: none; 
	display: block;
}

.floating-banner:hover {
/*opacity: .8; */ /* マウスが重なった時に少し透過させます */
}

@media screen and (max-width: 845px) {
	.fixed_banner {
		position: fixed;
		z-index: 100;
		bottom: 2%;
		right: 2%;
		width: 100px;
		display: block;
		background-color: inherit;
		border: none;
	}
	.fixed_banner_event {
		position: fixed;
		z-index: 100;
		bottom: 2%;
		right: 2%;
		width: 100px;
		display: block;
		background-color: inherit;
		border: none;
	}
}

#page-top a{
  position: absolute;
  right: 2vw;
  bottom: 1vw;
  width: 100px;
}
@media screen and (max-width: 845px) {
	#page-top a{
  position: absolute;
  left: 3vw;
  bottom: 2vw;
  width: 80px;
}
}


/*イベントモーダル*/
#modal_event .bg_green{
	background: #E1F0D9;
}
#modal_event .inner{
	padding: 80px 10%;
	background: #E1F0D9;
	font-feature-settings: "palt";
}
#modal_event h3{
	text-align: center;
	font-weight: 600;
	margin-bottom: 20px;
}
#modal_event span{
	font-size: 19px;
}
#modal_event h3 img{
	width: 90%;
	margin: 20px 0;
}
#modal_event .wrap_event .event_fv{
	width: 100%;
	margin: 0 auto;
}
#modal_event .wrap_event .event_fv p{
	margin-top: 20px;
	padding-bottom: 0;
}
#modal_event .wrap_event h4{
	text-align: left;
	color: #6cbb5a;
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 50px;
	font-weight: 600;
}
#modal_event .wrap_event .event_gaiyo p{
	padding-bottom: 10px;
}
#modal_event .wrap_event .event_gaiyo dl{
	padding-bottom:20px;
}
#modal_event .wrap_event .event_gaiyo dl dt {
        width: calc(100% - 507px);
        margin-right: 30px;
        display: inline-block;
        font-size: 19px;
        line-height: 32px;
        letter-spacing: 0.1em;
        vertical-align: top;
        margin-bottom: 10px;
        text-align: right;
    }
#modal_event .wrap_event .event_gaiyo dd {
        font-size: 19px;
        width: calc(100% - 200px);
    }

#modal_event .wrap_event .annotation {
        font-size: 12px;
        display: block;
    }
#modal_event .wrap_event .event_menu p{
        font-size: 16px;
        padding-bottom: 10px;
        font-weight: 600;
    }
#modal_event .wrap_event .event_menu .menu p{
        font-size: 16px;
        font-weight: 500;
        line-height: 1.4;
    }
#modal_event .wrap_event .event_menu .menu img{
	margin-bottom: 50px;
	}
#modal_event .wrap_event .event_menu .annotation {
    margin-top: -60px;
    }

#modal_event .wrap_event .event_menu .event_drink .menu p{
        font-size: 16px;
        font-weight: 500;
        line-height: 1.8;
    }
#modal_event .wrap_event .event_menu .event_drink{
        margin-top: 30px;
    }
#modal_event .wrap_event .event_chef dl {
        padding-bottom: 0;
        font-size: 0;
    }
#modal_event .wrap_event .event_chef dl dt {
        padding-bottom: 60px;
        font-size: 0;
    }
#modal_event .wrap_event .event_chef dl dt {
        width: calc(100% - 205px);
        margin-right: 40px;
        display: inline-block;
        font-size: 18px;
        line-height: 32px;
        letter-spacing: 0.1em;
        vertical-align: top;
    }
#modal_event .wrap_event .event_chef dl dd {
        /* width: 165px; */
        display: inline-block;
        vertical-align: top;
    }
#modal_event .wrap_event .event_chef .menu_name {
        padding-bottom: 10px;
        font-size: 14px;
        margin-top: 30px;
        color: #666;
    }
#modal_event .wrap_event .event_chef .chef_name {
        padding-bottom: 16px;
        font-weight: 600;
    }

@media screen and (max-width: 845px) {
#modal_event .inner{
	padding: 30px 5% 80px 5%;
	background: #E1F0D9;
	overflow-x: hidden;
	font-feature-settings: "palt";
}
#modal_event h3{
	text-align: center;
	font-weight: 600;
	margin-bottom: 20px;
}
#modal_event span{
	font-size: 16px;
	line-height: 2.4rem;
	display: block;
	padding-top: 10px;
	text-align: center;
}
#modal_event h3 img{
	width: 100%;
	margin: 24px 0 10px 0;
}
#modal_event .wrap_event .event_fv{
	width: 100%;
	margin: 0 auto;
}
#modal_event .wrap_event .event_fv p{
	margin-top: 20px;
	padding-bottom: 0;
}
#modal_event .wrap_event h4{
	text-align: left;
	color: #6cbb5a;
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 50px;
}
#modal_event .wrap_event .event_gaiyo p{
	padding-bottom: 3px;
}
#modal_event .wrap_event .event_gaiyo dl{
	padding-bottom:0;
}
#modal_event .wrap_event .event_gaiyo dl dt {
        width: 100%;
        margin-right: 40px;
        display: inline-block;
        font-size: 14px;
        line-height: 32px;
        letter-spacing: 0.1em;
        vertical-align: top;
        margin-bottom: 0;
        font-weight: 600;
        text-align: left;
    }
#modal_event .wrap_event .event_gaiyo dd {
        font-size: 14px;
        width: 100%;
        margin-bottom: 10px;
    }

#modal_event .wrap_event .annotation {
        font-size: 13px;
        display: block;
        line-height: 1.6;
        text-align: left;
    }
#modal_event .wrap_event .event_menu p{
        font-size: 14px;
        padding-bottom: 10px;
        font-weight: 600;
    }
#modal_event .wrap_event .event_menu .menu p{
        font-size: 16px;
        font-weight: 500;
    }
#modal_event .wrap_event .event_menu .menu img{
	margin-bottom: 30px;
	}
#modal_event .wrap_event .event_menu .annotation {
    margin-top: -30px;
    }

#modal_event .wrap_event .event_menu .event_drink .menu p{
        font-size: 14px;
        font-weight: 500;
        line-height: 1.6;
        margin-bottom: 6px;
    }
#modal_event .wrap_event .event_menu .event_drink{
        margin-top: 30px;
    }
#modal_event .wrap_event .event_chef dl {
        padding-bottom: 0;
        font-size: 0;
    }
#modal_event .wrap_event .event_chef dl dt {
        padding-bottom: 60px;
        font-size: 0;
    }
#modal_event .wrap_event .event_chef dl dt {
        width: 100%;
        margin-right: 40px;
        display: inline-block;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.1em;
        vertical-align: top;
        padding-bottom: 0;
        margin-top: 20px;
    }
#modal_event .wrap_event .event_chef dl dd {
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }
#modal_event .wrap_event .event_chef .menu_name {
        padding-bottom: 10px;
        font-size: 14px;
        line-height: 1.4;
        margin-top: 0;
        color: #666;
    }
#modal_event .wrap_event .event_chef .chef_name {
        padding-bottom: 16px;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.6;
    }
}

/*0212追加ここから*/
#kirishima_no8 .awardsLi{
    display: flex;
    text-align: center;
    margin-top: 5em;
    margin-bottom: 5em;
}

#kirishima_no8 .awardsLi li{
	background: #B1D5A9;
	padding: 2em 1em;
	margin: 1em;
	border-radius: 2.5rem;
	width: 100%;
	display: flex;
	justify-content: center;     /* 横中央 */
	align-items: center;         /* 縦中央 */
}

#kirishima_no8 .awardsLi
    img{
 height: 200px;
 width: auto;
}

#kirishima_no8 .awardsLi li:nth-child(1) {
	min-height: 100%;           /* 画面全高 */
  display: flex;
  justify-content: center;     /* 横中央 */
  align-items: center;         /* 縦中央 */
}

#kirishima_no8 .awardsLi
    li:nth-child(2) img{}

#kirishima_no8 .awardsLi
    li:nth-child(3) img{}

#kirishima_no8 .awardsLi
    li p{
     font-weight: 700;
     font-size: 23px;
     line-height: 1.4;
     margin: auto 0;
}

#kirishima_no8 .awardsLi li font{
 font-size: 0.8vw;
    display: block;
}

#kirishima_no8 .research{
    text-align: center;
    color: white;
}

#kirishima_no8 .researchTit
    img{
 max-width: 800px;
    margin: 0 auto;
    width: auto;
}

#kirishima_no8 .researchTit {
    text-align: center;
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 18px;
    font-style: italic;
}


#kirishima_no8 .researchNote{
    font-size: 2rem;
    font-weight: 600;
    margin: 1rem auto 2rem;
}

#kirishima_no8 .research
    img{
 max-width: 650px;
}


#kirishima_no8 .comment {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 3rem auto 1rem;
    max-width: 800px;
}

#kirishima_no8 .comment
    li {
    width: 44%;
    background-color: #B1D5A9;
    padding: 2rem 2rem 2rem 1.8rem;
    margin-bottom: 2rem;
    list-style: none;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    text-align: left;
    color: black;
    display: flex;
}

/*#kirishima_no8 .comment li {
    width: 44%;
    background-color: #B1D5A9;
    padding: 16px 16px 16px 24px;
    margin-bottom: 18px;
    list-style: none;
    font-size: 19px;
    line-height: 1.5;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    text-align: left;
    color: black;
 display: flex;
}*/

#kirishima_no8 .comment
    li div{
    display: flex;
    width: 100%;
}
#kirishima_no8 .comment
    li div p{
     margin: auto 0;
}
#kirishima_no8 .comment
    li span {
    display: block;
    text-align: right;
    font-size: 14px;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

#kirishima_no8 .cmtNote {
    font-size: 14px;
    font-weight: 300;
    margin-top: 10px;
    color: black;
    text-align: right;
    width: -webkit-fill-available;
}

 #kirishima_no8 .awardsLi
    li div{
 height: 120px;
    margin-top: 1rem;
    display: inline-flex;
}

#kirishima_no8 .awardsLi
    li span{
     font-size: 1.5vw;
}
    @media screen and (min-width: 1500px) {
 #kirishima_no8 .awardsLi li font {
    font-size: 12px;
}
 #kirishima_no8 .awardsLi li span{
    font-size: 1.4rem;
 }
#main_visual .kv01 .image .mv_title.title03 {
		left: 17%;
        width: 24rem;
	}
	
	#main_visual .kv02 .image .mv_title.title03 {
		        left: 17%;
        width: 24rem;
        bottom: 4.4vw;
        transform: translateX(-50%);
        top: auto;
        min-height: auto;
	}
}
@media screen and (max-width: 1100px) {
			#main_visual .kv01 .image .mv_title.title03 {
	bottom: 2vw;
        top: auto;
        left: 140px;
        max-width: 250px;
	}
	
	#main_visual .kv02 .image .mv_title.title03 {
	bottom: 2vw;
        top: auto;
        left: 140px;
        max-width: 250px;
    transform: translate(-50%, -50%);
    margin-left: 0;
    width: auto;
	}
	
}
    @media screen and (max-width: 845px) {
 #kirishima_no8 .awardsLi {
  display: block;
    margin-top: 3em;
 }
 
 #kirishima_no8 .awardsLi li {
    padding: 1em;
    margin: 1em auto;
    width: 60%;
    display: flex;
    justify-content: space-around;
    border-radius: 1.5rem;
}
 #kirishima_no8 .awardsLi img {
    height: auto;
    width: 100px;
    margin: auto 0;
}
 #kirishima_no8 .awardsLi li font {
    font-size: 10px;
}
 #kirishima_no8 .awardsLi li p {
    margin: auto 0;
    font-size: 1.8rem;
}
 #kirishima_no8 .awardsLi li:first-child p {
    /*margin-top: 0.5rem;*/}
 #kirishima_no8 .awardsLi li span{
    font-size: 1.8rem;
}
 #kirishima_no8 .research img {
    max-width: 600px;
}
 #kirishima_no8 .researchNote {
    font-size: 12px;
}
 #kirishima_no8 .comment {
    display: block;
    margin: 2rem 1rem 1rem;
 }
 #kirishima_no8 .comment li {
    width: 89%;
    margin: 1.5rem auto;
    font-size: 1.7rem;
    display: block;
    height: 65px;
 }
 #kirishima_no8 .cmtNote {
    font-size: 12px;
    margin-right: 1.4rem;
}
 #kirishima_no8 .awardsLi li div{
    display: grid;
    width: 90%;
    margin-top: 0;
}
 #kirishima_no8 .awardsLi li:first-child img{
  margin-left: 3px;
 }
 #kirishima_no8 .comment li div {
    height: 100%;
}
 #main_visual .kv01 .image .mv_title.title03,
	#main_visual .kv02 .image .mv_title.title03{
	bottom: -5vw;
        top: auto;
        left: 220px;
        max-width: 400px;
	}
}
    @media screen and (max-width: 700px) {
  #kirishima_no8 .research img {
    max-width: 350px;
}
 #kirishima_no8 .cmtNote {
    margin-right: 0;
}
 #kirishima_no8 .awardsLi li {
    width: 90%;
    padding: 1rem 0.5rem;
 }
 #kirishima_no8 .researchTit {
    font-size: 22px;
}
 #kirishima_no8 .comment li {
    height: 110px;
 }
 #kirishima_no8 .comment li{
    height: 90px;
 }
 #kirishima_no8 .comment li:nth-child(1){
    height: 110px;
 }
		#main_visual .kv02 .image .mv_title.title03,
	#main_visual .kv01 .image .mv_title.title03 {
	bottom: -6vw;
        top: auto;
        left: 34vw;
        max-width: 62vw;
	}
}

/*日経バナー追加*/
	
 #main_visual .title03_box a{
		width: 5.3125vw!important;
        position: absolute!important;
        right: 26.5625vw!important;
        bottom: 2.135416vw!important;
        z-index: 100!important;
	 	display: block!important;
	}

	 #main_visual .title03_box{
		position: relative;
    left: 0;
    transform: translateX(-50%);
	}

	 #main_visual .title03_box2{
		bottom: 6vh;
	}
 #main_visual .title03{
		width: 25vw!important;
    transform: translateX(-60%);
    min-height: auto;
	}
	
/*@media screen and (min-width: 1500px) {
	
	#main_visual .title03 {
		        left: 17%;
        width: 24rem;
        bottom: 4.4vw;
        transform: translateX(-50%);
        top: auto;
        min-height: auto;
	}
}
@media screen and (max-width: 1100px) {
	
	#main_visual .title03 {
	bottom: 2vw;
        top: auto;
        left: 140px;
        max-width: 250px;
    transform: translate(-50%, -50%);
    margin-left: 0;
    width: auto;
	}
	
}
@media screen and (max-width: 845px) {
	#main_visual .title03{
	bottom: -5vw;
        top: auto;
        left: 220px;
        max-width: 400px;
	}
}*/

@media screen and (max-width: 845px) {
	
	#main_visual .title03 {
	width: 66vw !important;
        transform: translateX(-23%);
	}
	
	 #main_visual .title03_box2{
		bottom: 0;
	}
}
	
	#main_visual .title03 .pc {
		display: none;
	}

	#main_visual .title03 .sp {
		display: block;
	}
	
	@media screen and (max-width: 845px) {
	#main_visual .title03 .pc {
		display: block;
	}

	#main_visual .title03 .sp {
		display: none;
	}
	}
/*日経バナー追加*/