@charset "UTF-8";
/* *,
*::before,
*::after{
outline: 1px solid red;
} */
/*================================================================
# メインビジュアル
================================================================ */
.mv {
  position: relative;
  z-index: 1;
  margin-top: -65px;
}

@media screen and (min-width: 768px) {
  .mv{
    margin-top: 65px;
  }
  .slick-slider .slick-list::after{
    content: "";
    position: absolute;
    display: block;
    width: 89.32vw;
    height: auto;
    background:url(../images/top/slide_line.png) no-repeat right bottom 100%;
    background-size: contain;
    bottom: 0;
    right: 0;
    aspect-ratio: 343 / 30;
    z-index: 4;
  }
}
@media screen and (min-width: 1001px) {
  .mv{
    margin-top: 85px;
  }
}

.mv__inner {
  position: relative;
  height: inherit;
  min-height: inherit;
  height: 448px;
}

@media screen and (min-width: 600px) {
  .mv__inner {
    height: 100%;
  }
}


/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: auto;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
  background:url(../images/top/slide_sp_1.png);
}

.slider-item02 {
  background:url(../images/top/slide_sp_2.png);
}

.slider-item03 {
  background:url(../images/top/slide_sp_3.png);
}

.slider-item04 {
  background:url(../images/top/slide_sp_4.png);
}

.slider-item05 {
  background:url(../images/top/slide_sp_5.png);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:auto;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center bottom;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
    aspect-ratio: 150 / 209;
    object-fit: cover;
}

/*矢印の設定*/

.slick-prev, 
.slick-next{
  display: none !important;
  opacity: 0;
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
  text-align:center;
	margin: 15px 0 0 0;/*ドットの位置*/
}

.slick-dots li {
  display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 10px;/*ドットボタンのサイズ*/
    height: 10px;/*ドットボタンのサイズ*/
    display:block;
    background:var(--yellow);/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background: var(--brown);/*ドットボタンの現在地表示の色*/
}

.main-title {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 50%;
  width: 80%;
  transform: translateX(-50%);
}
.main-title img{
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .slider-item01 {
    background:url(../images/top/slide_1.jpg);
  }

  .slider-item02 {
    background:url(../images/top/slide_2.jpg);
  }

  .slider-item03 {
    background:url(../images/top/slide_3.jpg);
  }

  .slider-item04 {
    background:url(../images/top/slide_4.jpg);
  }

  .slider-item05 {
    background:url(../images/top/slide_5.jpg);
  }

  .slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:auto;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center right;/*背景画像の位置を中央に*/
    background-size: contain;
    aspect-ratio: 192 / 83;
    object-fit: cover;
  }

  .slick-dots {
    margin: 50px 0 0 0;/*ドットの位置*/
 }

  .slick-dots button {
    width:18px;/*ドットボタンのサイズ*/
    height:18px;/*ドットボタンのサイズ*/
  }
  
  .main-title {
    top: 36%;
    left: 4%;
    transform: translateX(0);
  }

  .main-title img{
    width: 30vw;
    max-width: 750px;
    height: auto;
  }
}



/*================================================================
# トリビア
================================================================ */
#toribia{
  position: relative;
  background: url(../images/top/trivia_bg.png) 80%;
  background-size: cover;
  padding-block: 3% 12%;
}

#toribia > .inner{
  position: relative;
}

#toribia > .inner h2{
    padding-left: 3%;
}

#toribia > .inner .btn_wrap{
  width: 80%;
  margin: 100px auto 0;

}

#toribia > .inner .btn_wrap a{
  display: flex;
  justify-content: center;
}

#toribia > .inner .btn_wrap a{
  width: 33%;
  height: fit-content;
  transform: scale(1.4);
}

#toribia > .inner .btn_wrap a:nth-child(2){
  transform: translate(14%, -132%) scale(1.4);
}
#toribia > .inner .btn_wrap a:nth-child(3){
  transform: scale(1.3);
}

#toribia > .inner div.img img{
  position: absolute;
  width: 13%;
  max-width: 112px;
  height: auto;
}

#toribia > .inner div.img img:nth-child(1){
  top: 65%;
  left: 7%;
}
#toribia > .inner div.img img:nth-child(2){
  top: 10%;
  right: 25%;
  transform: rotate(22deg);
}
#toribia > .inner div.img img:nth-child(3){
  display: none;
}
#toribia > .inner div.img img:nth-child(4){
  top: 73%;
  right: 3%;
  max-width: 132px;
}
@media screen and (max-width: 640px) {
  #toribia .btn_wrap.dNone{
  display: flex;
  }
}
@media screen and (min-width: 1140px) {
  #toribia{
    position: relative;
    background: url(../images/top/trivia_bg.png) 100%;
    background-size: cover;
    padding-block: 50px 150px;
  }

  #toribia > .inner h2{
    padding-left: 50px;
  }
  
  #toribia > .inner .btn_wrap{
    position: absolute;
    max-width: 900px;
    width: 100%;
    bottom: -77px;
    right: 50%;
    transform: translateX(50%);
    padding-inline: 15px;
  }

  #toribia > .inner .btn_wrap a:nth-child(2),
  #toribia > .inner .btn_wrap a:nth-child(3){
    transform: translate(0) scale(1);
  }

  #toribia > .inner .btn_wrap a{
    width: 100%;
    transform: scale(1);
  }

  #toribia > .inner div.img img{
    width: auto;
  }

  #toribia > .inner div.img img:nth-child(1){
    top: 35%;
    left: -2%;
  }
  #toribia > .inner div.img img:nth-child(2){
    top: 18%;
    right: 7%;
  }
  #toribia > .inner div.img img:nth-child(3){
    display: block;
    right: 1%;
    bottom: 10%;
  }
  #toribia > .inner div.img img:nth-child(4){
    top: 55%;
    right: 3%;
  }
}

/* #toribia > .inner .btn_wrap {
    margin: 50% auto 0;
}
#toribia .cs_comment{
  position: absolute;
  width: 100%;
  right: 50%;
  bottom: 36%;
  transform: translateX(50%);
}

@media screen and (min-width: 1140px) {
  #toribia{
    padding-block: 50px 220px;
  }
  #toribia > .inner .btn_wrap{
    bottom: -150px;
  }
  #toribia .cs_comment {
    bottom: 46px;
  }
}
@media screen and (min-width: 520px) {
  #toribia > .inner .btn_wrap {
      margin: 300px auto 0;
  }
} */

/*================================================================
# 首長リレーインタビュー
================================================================ */

.relaybnr_wrap .pc_bnr{
  display: none;
}

.relaybnr_wrap .sp_bnr{
  display: block;
}

@media screen and (min-width: 768px) {  
  .relaybnr_wrap .pc_bnr{
    position: relative;
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    aspect-ratio: 60 / 19;
    object-fit: contain;
    background: url(../images/top/relay_bnr_bg.jpg) no-repeat center center;
    background-size: contain;
  }
  .relaybnr_wrap .pc_bnr > .city{
    position: absolute;
    display: flex;
    transform: scale(.65);
    width: 15%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(1) {
    bottom: 9.5%;
    left: -1.2%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(2) {
    bottom: 19.1%;
    left: 11.5%;
    transform: scale(.8);
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(3) {
    bottom: 6.5%;
    left: 16.5%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(4) {
    bottom: 21.8%;
    left: 41.5%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(5) {
    bottom: 13.8%;
    right: 19%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(6) {
    bottom: 1.2%;
    right: 9%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(7) {
    bottom: 7%;
    right: -1.8%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(8) {
    bottom: 12.4%;
    right: 8.5%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(9) {
    bottom: 21.7%;
    right: 3.2%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(10) {
    bottom: 24.3%;
    right: 20.1%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(11) {
    bottom: 33.8%;
    right: 15.3%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(12) {
    top: 40.3%;
    right: 3.7%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(13) {
    top: 28.85%;
    right: -.7%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(14) {
    top: 15.65%;
    right: -.6%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(15) {
    top: 44.85%;
    left: 33%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(16) {
    top: 49.85%;
    left: 13.8%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(17) {
    top: 19%;
    left: 11.3%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(18) {
    top: 11%;
    left: 25.6%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(19) {
    top: .75%;
    left: 32.3%;
  }
  .relaybnr_wrap .pc_bnr > a,
  .relaybnr_wrap .pc_bnr > .section__footer__link .more{
    transition: all 0.3s ease 0s;
  }
  .relaybnr_wrap .pc_bnr > a:hover{
    opacity: .5;
  }
  .relaybnr_wrap .pc_bnr > .city img{
    width: 100%;
  }
  .relaybnr_wrap .pc_bnr > .section__footer__link {
    position: absolute;
    display: block;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, 0) scale(.6);
  }
  .relaybnr_wrap .pc_bnr > .section__footer__link .more:hover{
    background: var(--brown);
    color: #fff;
  }
  .relaybnr_wrap .pc_bnr > .section__footer__link .more:hover span > svg{
    fill: #fff;
  }
  .relaybnr_wrap .sp_bnr{
    display: none;
  }
}

@media screen and (min-width: 1001px) {
  .relaybnr_wrap .pc_bnr > .section__footer__link {
    transform: translate(-50%, 0) scale(.8);
  }
}

@media screen and (min-width: 1140px) {
  .relaybnr_wrap .pc_bnr{
    position: relative;
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    aspect-ratio: 60 / 19;
    object-fit: contain;
    background: url(../images/top/relay_bnr_bg.jpg) no-repeat center center;
    background-size: contain;
  }
  .relaybnr_wrap .pc_bnr > .city{
    position: absolute;
    display: flex;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(1) {
    bottom: 9.5%;
    left: -1.2%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(2) {
    bottom: 19.1%;
    left: 11.5%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(3) {
    bottom: 6.5%;
    left: 16.7%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(4) {
    bottom: 21.8%;
    left: 41%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(5) {
    bottom: 14.2%;
    right: 19.2%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(6) {
    bottom: 1.5%;
    right: 9%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(7) {
    bottom: 8%;
    right: -2.1%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(8) {
    bottom: 12.4%;
    right: 8.3%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(9) {
    bottom: 22.4%;
    right: 4.2%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(10) {
    bottom: 24.3%;
    right: 20.1%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(11) {
    bottom: 34.8%;
    right: 15.8%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(12) {
    top: 38.3%;
    right: 4.2%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(13) {
    top: 28.85%;
    right: -1.2%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(14) {
    top: 15.65%;
    right: -1%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(15) {
    top: 44.85%;
    left: 32.7%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(16) {
    top: 49.85%;
    left: 13.3%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(17) {
    top: 18.85%;
    left: 10.8%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(18) {
    top: 10.95%;
    left: 25.4%;
  }
  .relaybnr_wrap .pc_bnr > .city:nth-child(19) {
    top: 0.75%;
    left: 31.8%;
  }
  .relaybnr_wrap .pc_bnr > .city img{
    width: 100%;
    height: auto;
  }
  .relaybnr_wrap .pc_bnr > .section__footer__link {
    transform: translate(-50%, -37%) scale(1);
  }
}
/*================================================================
# 市町村カテゴリ
================================================================ */

.area_box {
  padding: 17px 20px 20px;
  /* width: 98%;
  margin-left: auto; */
}

.area_box+.area_box {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .area_box {
    padding: 25px 30px 30px;
    width: 100%;
  }
  .area_box+.area_box{
    margin-top: 30px;
  }
}

.accordion_ttl{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: all;
}

.accordion_ttl .title-circle2{
  font-size: 1rem;
  margin-bottom: 0;
}

.accordion_ttl .title-circle2::before{
  width: 16px;
  height: 16px;
}

.accordion_icon{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.accordion_icon::before,
.accordion_icon::after{
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 3px;
  border-radius: 3px;
  background: var(--brown);
}
.accordion_icon::before{
  top: 50%;
  right: 0;
  transform: rotate(90deg) translate(0%, 50%);
  transition: all .4s;
}
.accordion_icon::after{
  top: 50%;
  right: 50%;
  transform: translate(50%, 0);
}
.open .accordion_icon::before{
  right: 50%;
  transform: rotate(0deg) translate(50%, 0);
}

@media screen and (min-width: 768px) {
  .accordion_ttl{
    display: contents;
    pointer-events: none;
  }
  .accordion_ttl .title-circle2{
    margin-bottom: 10px;
  }
  .accordion_icon{
    display: none;
  }
}

.shichoson_lists {
  display: none;
}
.shichoson_lists ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin-top: 15px;
  transition: max-height 0.3s ease;
}

@media screen and (min-width: 768px) {
  .shichoson_lists{
    display: contents;
  }
  .shichoson_lists ul{
    grid-template-columns: repeat(3, 1fr);
    transition: none;
  }
}

@media screen and (min-width: 960px) {
  .shichoson_lists ul {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 28px 32px;
    margin-top: 18px;
  }
}

.shichoson_lists ul li {
  position: relative;
  width: 100%;
}

.shichoson_lists ul li::after {
  content: "";
  background-image: url(../images/common/icon_arrow5_r.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 9.6px;
  height: 16px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 16px;
}

.shichoson_link {
  width: 100%;
  font-size: .9rem;
  /* font-size: 1.125rem; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* padding-block: 10px; */
  transition: background-color 0.4s, color 0.4s;
}

.shichoson_link:hover {
  background: #abdad1;
}

.shichoson_link.util-link2 {
  min-width: auto;
}

@media screen and (min-width: 768px){
  .shichoson_link.util-link {
    min-width: auto;
  }
}

/*================================================================
# スピンオフ
================================================================ */
#spin-off{
  position: relative;
  overflow-x: hidden;
}

#spin-off::before,
#spin-off::after{
  content: "";
  position: absolute;
  display: block;
}

#spin-off::before{
  width: 190px;
  height: 168px;
  background: url(../images/top/spin-off_img_1.png) no-repeat center center;
  background-size: contain;
  top: 8%;
  right: calc(50% - 844px);
}

#spin-off::after{
  width: 152px;
  height: 164px;
  background: url(../images/top/spin-off_img_2.png) no-repeat center center;
  background-size: contain;
  bottom: 4%;
  left: calc(50% - 802px);
}

#spin-off h2{
  width: fit-content;
  margin: 0 auto 35px;
}

@media screen and (max-width: 600px) {
  #spin-off .spin-off_article:nth-of-type(2),
  #spin-off .spin-off_article:nth-of-type(3){
    display: none;
  }
}

/*================================================================
# 地産地消のウラ側ブログ
================================================================ */
#blog > .blog_bg{
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 60 / 19;
  object-fit: contain;
  background: url(../images/top/blog_bnr_bg_2.jpg) no-repeat center center;
  background-size: contain;
}
#blog .section__footer__link{
  position: absolute;
  right: 1em;
  bottom: 1em;
}
#blog .section__footer__link .more{
  transition: all 0.3s ease 0s;
}
#blog .section__footer__link .more:hover{
    background: var(--brown);
    color: #fff;
}
#blog .section__footer__link .more:hover svg{
  fill: #fff;
}
@media screen and (min-width: 1001px) {
#blog .section__footer__link{
  right: 25px;
  bottom: 25px;
}
}
@media screen and (max-width: 768px) {
  #blog{
    margin-bottom: 50px;
  }
#blog > .blog_bg{
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 67 / 53;
  object-fit: contain;
  background: url(../images/top/blog_bnr_sp_3.jpg) no-repeat center center;
  background-size: contain;
}
#blog .section__footer__link {
    position: absolute;
    right: 50%;
    bottom: 4%;
    transform: translateX(50%);
}
#blog .section__footer__link .more:hover{
    background: var(--green);
    color: var(--brown);
}
#blog .section__footer__link .more:hover svg{
  fill: var(--brown);
}
}

/*================================================================
# EVENT&NEWS
================================================================ */
#news ul li{
  border-bottom: solid 1px var(--green);
}

@media screen and (min-width: 768px) {
  .fukidashi {
    padding: 18px 56px;
    font-size: 2.375rem;
  }
}

.news__list {
  padding: 30px 20px 20px;
}

@media screen and (min-width: 768px) {
  .news__list {
    padding: 55px 60px 30px;
  }
}

.news__list__item {
  border-bottom: 1px solid #1a1a1a;
}

.news__list__item a {
  padding: 20px 0;
  display: block;
}

@media screen and (min-width: 768px) {
  .news__list__item a {
    display: flex;
    align-items: flex-start;
  }
}

.news__list__item-meta {
  display: flex;
  align-items: center;
}

.news__list__item-date {
  font-size: 1rem;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .news__list__item-date {
    padding-top: 5px;
  }
}

.news__list__item-title {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .news__list__item-title {
    margin-top: 0;
    margin-left: 60px;
  }
}

/*================================================================
# 山口県の魅力
================================================================ */
#about{
  background: url(../images/top/about_bg_sp.jpg) no-repeat center top 100%;
  background-size: cover;
}

#about .shadow_white{
  text-shadow: 2px 2px 3px #fff;
}

#about .section__footer__link .more{
  transition: all 0.3s ease 0s;
}
#about .section__footer__link .more:hover{
    background: var(--brown);
    color: #fff;
}
#about .section__footer__link .more:hover svg{
  fill: #fff;
}

@media screen and (min-width: 768px) {
  #about{
    background: url(../images/top/about_bg.jpg) no-repeat center top 100%;
    background-size: cover;
  }
}



/*================================================================
# 援むすび山口とは
================================================================ */
.about-enmusubi {
  background-image: url(../images/top/bg_enmusubi-toha_sp.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .about-enmusubi {
    background-image: url(../images/top/bg_enmusubi-toha_pc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 80px;
  }
}

.about-enmusubi .section__footer__link {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .about-enmusubi .section__footer__link {
    margin-top: 30px;
  }
}

.about-enmusubi__inner {
  padding-block: 30px;
}

@media screen and (min-width: 768px) {
  .about-enmusubi__inner {
    padding-block: 70px;
  }
}

.about-enmusubi__content {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.about-enmusubi__content.box {
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.85);
}

@media screen and (min-width: 768px) {
  .about-enmusubi__content.box {
    padding: 40px;
  }
}

.about-enmusubi__ttl__wrap {
  box-shadow: 6px 6px 0 #ffec6b;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.about-enmusubi__ttl__wrap.box {
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.85);
}

@media screen and (min-width: 768px) {
  .about-enmusubi__ttl__wrap.box {
    width: fit-content;
    padding: 10px;
  }
}

.about-enmusubi__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-left: 40px;
  line-height: 1;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (min-width: 400px) {
  .about-enmusubi__ttl {
    font-size: 1.75rem;
    padding-left: 50px;
  }
}

.about-enmusubi__ttl::before {
  content: "";
  background-image: url(../images/top/icon_hatena.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 400px) {
  .about-enmusubi__ttl::before {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 768px) {
  .about-enmusubi__ttl {
    font-size: 2rem;
  }
}

.about-enmusubi__text {
  line-height: 1.7;
}

/*================================================================
# プロダクションノート
================================================================ */
.production-notes {
  padding-block: 40px;
}

@media screen and (min-width: 768px) {
  .production-notes {
    padding-block: 80px;
  }
}

@media screen and (min-width: 768px) {
  .production-notes__inner .box {
    padding: 40px 60px 60px;
  }
}

.production-notes__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  flex-direction: column;
}

@media screen and (min-width: 600px) {
  .production-notes__list {
    gap: 40px;
    flex-direction: row;
  }
}

@media screen and (max-width: 599px) {
  .production-notes__list article:nth-child(n+5) {
    display: none;
  }
}

.spin-off_article {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .spin-off_article {
    width: calc((100% - 40px) / 2);
  }
}

@media screen and (min-width: 980px) {
  .spin-off_article {
    width: calc((100% - 80px) / 3);
  }
}

.production-notes__title {
  font-size: 1.125rem;
  font-weight: 700;
}

.spin-off_text {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.thumbs img {
  width: calc(100% - 4px);
  aspect-ratio: 338/250;
  object-fit: cover;
}

/*================================================================
# プロダクションカテゴリー
================================================================ */
.production-category {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .production-category {
    margin-top: 60px;
  }
}

.production-category .util-link {
  max-width: 300px;
  width: 100%;
}

@media screen and (min-width: 649px) {
  .production-category .util-link {
    max-width: 285px;
    font-size: 1.125rem;
    letter-spacing: normal;
  }
}

.production-category__ttl {
  font-size: 1.125rem;
  font-weight: 700;
  width: 100%;
  position: relative;
  padding-left: 56px;
  margin-bottom: 30px;
}

@media screen and (min-width: 375px) {
  .production-category__ttl {
    font-size: 1.375rem;
  }
}

@media screen and (min-width: 768px) {
  .production-category__ttl {
    font-size: 1.75rem;
    padding-left: 63px;
  }
}

.production-category__ttl::before {
  content: "";
  background-color: #1a1a1a;
  width: calc(100% - 56px);
  height: 3px;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .production-category__ttl::before {
    width: calc(100% - 63px);
    bottom: 1px;
  }
}

.production-category__ttl::after {
  content: "";
  background-image: url(../images/top/icon_mushi-megane.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 56px;
  height: 34px;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .production-category__ttl::after {
    width: 63px;
    height: 39px;
  }
}

.production-category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-around;
}

@media screen and (max-width: 600px) {
  .production-category__list {
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .production-category__list {
    gap: 18px;
  }
}

.production-category__list__item {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.production-category__list__item.production-category-1 .util-link:hover {
  background-color: #f8b62d;
}

.production-category__list__item.production-category-2 .util-link {
  background-color: #1a1a1a;
  color: #fff;
}

.production-category__list__item.production-category-2 .util-link:hover {
  background-color: #f8b62d;
  color: #1a1a1a;
}

@media screen and (max-width: 648px) {
  .first {
    margin-top: 8px;
  }
}

/*================================================================
# コラム
================================================================ */
.columns__inner {
  padding-block: 40px;
}

@media screen and (min-width: 768px) {
  .columns__inner {
    padding-block: 50px 80px;
  }
}

.columns__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 40px;
}

@media screen and (min-width: 1200px) {
  .columns__list {
    flex-direction: row;
    gap: 40px;
  }
}

.columns__list__item {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  line-height: 1;
}

@media screen and (min-width: 1200px) {
  .columns__list__item {
    width: calc((100% - 40px) / 2);
  }
}

@media screen and (max-width: 490px) {
  .columns__list__item {
    flex-direction: column;
    align-items: flex-end;
  }
}

.columns__list__item.box {
  padding: 10px;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .columns__list__item.box {
    padding: 18px 18px 16px;
  }
}

.columns__list__item-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 490px) {
  .columns__list__item-meta {
    gap: 10px;
  }
}

.columns__list__item-img {
  flex: 0 0 160px;
}

@media screen and (max-width: 375px) {
  .columns__list__item-img {
    width: 100px;
    flex: 0 0 100px;
  }
}

.columns__list__item-title {
  font-size: 1rem;
  font-weight: 700;
  flex: 0 1 100%;
}

@media screen and (min-width: 768px) {
  .columns__list__item-title {
    font-size: 1.25rem;
  }
}

.columns__list__item__link {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.columns__list__item__link .link-more {
  font-weight: 700;
  position: relative;
  padding-right: 50px;
  line-height: 1;
  overflow: hidden;
  display: inline-flex;
  justify-content: flex-end;
}

.columns__list__item__link .link-more::after {
  content: "";
  background-image: url(../images/top/icon_arrow2_r.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 118px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

/*================================================================
# スポンサー&サポーター紹介
================================================================ */
.pick-up__inner {
  padding-block: 40px;
}

@media screen and (min-width: 768px) {
  .pick-up__inner {
    padding-block: 50px 80px;
  }
}

.pick-up__ttl {
  margin-bottom: 40px;
}

.swiper-img {
  height: auto;
  width: 100%;
}

.swiper-img.box {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .swiper-img.box {
    padding: 0;
  }
}

.pick-up__item__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
}

.pick-up__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  gap: 15px;
}

.pick-up__item-text {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* ブラウザがサポートしていない場合のフェールセーフ */
}

/* pick-up用スライダー
------------------------------------------------------ */
.swiper-button-next,
.swiper-button-prev {
  color: #1a1a1a !important;
  background-color: #ffec6b;
  border-radius: 50px;
  width: 52px;
  height: 52px;
  border: 2px solid #1a1a1a;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-weight: 700;
  font-size: 1.875rem;
}

.swiper-button-next {
  right: 5%;
}

.swiper-button-next::after {
  padding-left: 2px;
}

.swiper-button-prev {
  left: 5%;
}

.swiper-button-prev::after {
  padding-right: 2px;
}

/*================================================================
# アンバサダー紹介
================================================================ */
#ambassadors {
  position: relative;
  background: url(../images/top/ambassador_bg.png) repeat-x center bottom 100%;
  background-size: auto;
}
.ambassadorList li.w100{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ambassadorList li .img{
  width: min(100%, 570px);
}
.ambassadorList li .text{
  width: calc(100% - 600px);
  height: auto;
  margin-top: 121px;
}
.ambassadorList li.w100:nth-of-type(3) .text{
  margin-top: 94px;
}
@media screen and (max-width: 1300px) {
  .ambassadorList li .img{
    width: min(60%, calc(570px * .6));
  }
  .ambassadorList li .text{
    width: calc(100% - ((570px * .6) + 30px));
    margin-top: calc(121px * .6);
  }
  .ambassadorList li.w100:nth-of-type(3) .text{
    margin-top: calc(94px * .6);
  }
}
@media screen and (max-width: 768px) {
  .ambassadorList li.w100 {
    display: block;
  }
  .ambassadorList li .img{
    width: 100%;
    text-align: center;
  }
  .ambassadorList li .text,
  .ambassadorList li.w100:nth-of-type(3) .text{
    width: 100%;
    margin-top: 25px;
  }
}
#ambassadors .bgStripe{
  padding: 0.6em;
  background: -webkit-repeating-linear-gradient(-45deg, #fff, #fff 4px, var(--yellow) 3px, var(--yellow) 8px);
  background: repeating-linear-gradient(-45deg, #fff, #fff 4px,var(--yellow) 3px, var(--yellow) 8px);
  border-radius: 7px;
}
#ambassadors .comment{
  outline: solid 1px var(--orange);
  padding: 19px 14px;
  border-radius: 15px;
}
#ambassadors .ambassadorList li .text > ul li{
  position: relative;
  padding-left: 1em;
}
#ambassadors .ambassadorList li .text > ul li::before{
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  top: .8em;
  left: 0;
  background: var(--orange);
  transform: translateY(-50%);
}
.ambassadors .section__footer__link {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  #ambassadors {
    position: relative;
    background: url(../images/top/ambassador_bg.png) repeat-x center bottom 100%;
    background-size: contain;
  }
  .ambassadors .section__footer__link {
    padding-top: 20px;
  }
}

/* .ambassadors__inner {
  max-width: 1020px;
  width: 100%;
} */

/* .ambassadors__ttl.section__ttl {
  margin-bottom: 30px;
} */

.ambassadors__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.ambassadors__photo.no_comment{
  width: 72.72%;
  margin: 3rem auto 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .ambassadors__photo {
    margin-left: 110px;
  }
  .ambassadors__photo.no_comment{
    width: 100%;
  }
}

.ambassadors__text {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .ambassadors__text {
    font-size: 1.125rem;
  }
}
/* 
@media screen and (min-width: 768px) {
  .custom-shape-divider-bottom-1756410782 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1756410782 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 81px;
}

.custom-shape-divider-bottom-1756410782 .shape-fill {
    fill: #FFF;
}
} */

/*================================================================
# 山口県地産地消おすすめサイト
================================================================ */
/* .recommend {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .recommend {
    padding-top: 60px;
    padding-bottom: 80px;
  }
} */

.recommend .section__footer__link {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .recommend .section__footer__link {
    margin-top: 40px;
  }
}

.recommend__list li{
  width: calc((100% - 95px) / 2);
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 0px 5px 2px rgba(147, 147, 147, 0.2);
}

@media screen and (max-width: 767px) {
  .recommend__ttl img {
    width: 70%;
    text-align: center;
  }
}

@media screen and (max-width: 560px) {
  .recommend__list li {
    display: inline-flex;
    justify-content: center;
    width: calc((100% - 30px) / 2);
    padding: 10px;
  }
}

@media screen and (min-width: 768px) {
  .recommend__list li {
    width: calc((100% - 60px) / 3);
  }
}

@media screen and (min-width: 1001px) {
  .recommend__list li {
    width: calc((100% - 200px) / 5);
  }
}

.recommend__list li:nth-last-of-type(1){
  box-shadow: none;
  padding: 30px 0 20px;
}

.recommend__list li:nth-last-of-type(1) img{
  aspect-ratio: 109 / 103;
  object-fit: contain;
}

.recommend__list li a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}

.recommend__item__link>.hidden-sp {
  display: none;
}

@media screen and (max-width: 530px) {
  .recommend__item__link>.hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .recommend__item__link>.hidden-sp {
    display: block;
  }
}

/*================================================================
# リンク
================================================================ */
.link__area {
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .link__area {
    padding-top: 80px;
  }
}

.link__area__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .link__area__list {
    gap: 40px;
  }
}

.link__area__item {
  position: relative;
  width: fit-content;
}

@media screen and (min-width: 768px) {
  .link__area__item {
    width: calc((100% - 80px) / 3);
  }
}

@media screen and (max-width: 767px) {
  .link__area__item .link__area__button {
    max-width: 360px;
    height: 100px;
    margin: 0 auto;
  }
}

/*================================================================
# サポーター
================================================================ */
#supporter{
  position: relative;
}
.supporter__area__list.grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  grid-gap: 10px;
  margin: 20px auto;
}
.supporter__area__list.list3.grid{
  grid-template-columns: repeat(2, 1fr);
}
.supporter__area__list.list4.grid{
  grid-template-columns: repeat(3, 1fr);
}
.supporter__area__list li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  background: #fff;
}
.supporter__area__list li.color.sss{
  background: #e61374;
}
.supporter__area__list li.color.senkei{
  background: #003352;
}
.supporter__area__list li img{
  width: 80%;
  height: auto;
}
.supporter__area .link-button img{
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  .custom-shape-divider-top-1755810448,
  .custom-shape-divider-top-1755810448 svg,
  .custom-shape-divider-top-1755810448 .shape-fill{
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .custom-shape-divider-top-1755810448 {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }

  .custom-shape-divider-top-1755810448 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
  }

  .custom-shape-divider-top-1755810448 .shape-fill {
    fill: #fff;
  }
  #supporter h3{
    position: relative;
    line-height: 1;
  }
  #supporter h3::after{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: calc(7em + 30px);
    width: calc(100% - (7em + 30px));
    height: 1lh;
    background: url(../images/top/ss_line.png) no-repeat right 100%;
    background-size: contain;
  }
}
.supporter__area__list.grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  grid-gap: 15px;
  margin: 30px auto;
}
.supporter__area__list.list3.grid{
  grid-template-columns: repeat(3, 1fr);
}
.supporter__area__list.list4.grid{
  grid-template-columns: repeat(4, 1fr);
}
.supporter__area .link-button img{
  max-width: 300px;
}

@media screen and (max-width: 360px) {
.supporter__area__list.list4.grid li,
.supporter__area__list.list4.grid li img{
  max-width: 86px;
}
}

.sns__area{
  margin-top: 0;
}


/*================================================================
# プレスリリース　メディア情報
================================================================ */
#media{
  background: radial-gradient(#fff 30%, transparent 30%), var(--yellow);
  background-size: 25px 25px;
  background-position: 10px 10px;
}
.comment_btn{
  display: flex;
  flex-direction: column;
  width: calc((100% - 60px) / 2);
}
#media .comment {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
#media .comment::before,
#media .comment::after {
  display: block;
  content: "";
  width: 15px;
  height: 1px;
  background: var(--brown);
}
#media .comment::before{
  transform: rotate(60deg);
}
#media .comment::after{
  transform: rotate(120deg);
}
@media screen and (max-width: 640px) {
.comment_btn{
  width: 100%;
}
}