@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/* 
  *** 共通スタイルに関するCSS ***
*/
body {
  margin: 0;
  padding: 0;
}

ul,ol,p,div {
  margin-block-end: 0;
}

/* --------------------
  constants
-------------------- */
:root {
  --pc_point: 1080px;
  /* ブレイクポイント(PC表示) */
  /*--- --tab_point: 1080px; ---*/
  /* ブレイクポイント(PC表示) */
  --base_color: #fff;
  /* ベースカラー */
  --main_color: #ac272d;
  /* メインカラー */
  --accent_color: #333;
  /* アクセントカラー */
  --accent2_color: #CAC7A7;
  /* アクセントカラー2 */
  --font_color: #333;
  /* ベースの文字色  */
  /* ゴシック体 */
  /* --font_family: "Helvetica Neue",
                 "Helvetica",
                 "Hiragino Sans",
                 "Hiragino Kaku Gothic ProN",
                 "Arial",
                 "Yu Gothic",
                 "Meiryo",
                 sans-serif;; */
  /* 明朝体 */
  --font_family: "Zen Old Mincho",
    "Times New Roman",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "MS PMincho",
    serif;
}


/* --------------------
  base
-------------------- */
:root {
  font-size: 62.5%;
}

* {
  margin-top: 0;
}

body {
  background-color: var(--base_color);
  color: var(--font_color);
  font-family: var(--font_family);
  font-size: 1.6rem;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3em;
  margin-top: 0;
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.6rem;
}

ul,
ol {
  padding-inline-start: 0;
  /* list-styleを設定する場合は要調整 */
  list-style: none;
}

dd {
  margin-inline-start: 0;
}

img {
  max-width: 100%;
  object-fit: contain;
}

.pc_only {
  display: none;
}

@media all and (min-width: 768px) {
  .pc_only {
    display: initial;
  }

  .sp_only {
    display: none;
  }
}

/* --------------------
  common
-------------------- */
.footer-partitionline{
  background-color: #000;
}

.kv-partitionline svg,
.top-partitionline svg,
.top-underpartitionline svg,
.footer-partitionline svg{
  position: absolute;
}

.top-partitionline svg{
  bottom: 0;
}

.footer-partitionline svg{
  bottom: 0;
}
/* FF余白対応 */
.top-partitionline .curve,
.footer-partitionline svg{
  bottom: -1px;
}
.top-partitionline.interviews-line svg,
.top-partitionline.judging-line svg,
.top-partitionline.overview-line svg{
  bottom: -2px;
}

/* ドロワーメニュー */
.navi-sp {
  margin-top: 230px;
  margin-right: 23px;
  margin-bottom: 40px;
  margin-left: 23px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.navi-sp li {
  width: 33.3%;
  text-align: center;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.navi-sp li:nth-child(3n) {
  border-right: none;
}

/* 最下段下線なし 何件目移行下線なし*/
.navi-sp li:nth-child(n + 7) {
  border-bottom: none;
}

.navi-sp li a {
  padding: 3.2rem 0;
  display: block;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  letter-spacing: -0.2rem;
}

.navi-sp li.line2 a {
  padding: 2.24rem 0;
}

.navi-sp li a:hover,
.sublink a:hover {
  text-decoration: underline;
  /* background-color: #fff; */
  /* color: var(--main_color); */
}

.navi-sp li img {
  width: 42px;
}

.navi-sp li a span,
.kv-text span {
  display: block;
}

.sublink {
  margin: 0 auto 12px;
  width: 80%;
  font-size: 1.6rem;
  line-height: 1;
}

.sublink a {
  text-decoration: none;
  color: #fff;
}

.drawer__btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10002;
  width: 90px;
  height: 80px;
  /* background-color: #555; */
  overflow: hidden;
  cursor: pointer;
}

.drawer__btn span {
  display: block;
  width: 50%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}

.drawer__btn span:nth-child(1) {
  transform: translate(-50%, -12px);
}

.drawer__btn span:nth-child(2) {
  transform: translate(-50%, 0);
}

.drawer__btn.active span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.drawer__btn.active span:nth-child(2) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.drawer__btn span:nth-child(2)::after {
  content: "メニュー";
  position: absolute;
  top: 5px;
  left: -1px;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

.drawer__btn.active span:nth-child(2)::after {
  content: "とじる";
  transform: translateY(0) rotate(45deg);
  top: 10px;
  left: -10px;
}

.drawer__menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  width: 320px;
  /* height: 100vh; */
  height: 100%;
  overflow-y: auto;
  background-color: rgba(221, 0, 46, 0.9);
  transition: 0.3s;
  transform: translateX(100%);
  opacity: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.drawer__menu.active {
  transform: translateX(0);
  opacity: 1;
  overflow-y: auto;/* Safari対策 */
  overscroll-behavior-y: contain; /* Safari対策 */
}

.drawer__btn.navi-sp-wrap.active {
  width: 60px;
  height: 90px;
  right: 34px;
}

.drawer__btn.navi-sp-wrap.active span{
  width: 100%;
}

.drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  transform: translateX(100%);
  opacity: 0;
  cursor: pointer;
}

.drawer__bg.active {
  transform: translateX(0);
  opacity: 1;
}

.drawer__btn.active,
#sp-drawer-btn.fixed-hide.active {
  /* top: 92px; */
  top: 66px;
}

/* SPメニューボタンスクロール */
#top #sp-drawer-btn{
  background-color: rgb(221,0,46,0.4);
}

#sp-drawer-btn{
  background-color: rgb(172,39,45,0.4);
  position: fixed;
  z-index: 10002;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-out;
}

#sp-drawer-btn.fixed-hide{
  top: -80px;
}

#top #sp-drawer-btn.active,
#sp-drawer-btn.active{
  background-color: unset;
}

/* ドロワーメニューおわり */

/*アニメーション要素のスタイル*/
.loaded {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s;
  transform: translateY(30px);
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-wrap {
  background-color:var(--main_color);
  padding: 16px 50px 16px 20px;
  overflow: hidden;
}

#top .header-wrap {
  background-color:#dd002e;
}

.main-wrap-inner {
  overflow: hidden;
}

footer {
  background-color: #000;
  padding-bottom: 12px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

.navi-pc {
  display: none;
}

#toppage h2 {
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.75;
  margin-bottom: 50px;
}

#toppage h2:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: calc(50% - 40px);
  width: 83px;
  height: 2px;
  background-color: #fff;
}

/* 画像下の余白対策 */
div img{vertical-align: top;}

/* KV　区切り */
.kv-partitionline {
  position: relative;
  margin: 0;
  z-index: 1;
}

/* トップ汎用　区切り */
.top-partitionline {
  position: relative;
  margin: 0;
  /* height: 20px; */
}

/* フッター　区切り */
.footer-partitionline {
  position: relative;
  margin: 0;
  /* height: 20px; */
}

/* 区切りの背景色 */
.bgc-base {
  background-color: var(--base_color);
  /*直前の背景色を指定*/
}

.bgc-main {
  background-color: var(--main_color);
  /*直前の背景色を指定*/
}

.bgc-accent {
  background-color: var(--accent_color);
  /*直前の背景色を指定*/
}

.bgc-accent2 {
  background-color: var(--accent2_color);
  /*直前の背景色を指定*/
}

/*ここから*/
.header-logo {
  display: inline;
  position: absolute;
  color: #fff;
  top: 16px;
  left: 20px;
  width: 61px;
}

/* ファーストビュー表示 */
/* html,
body,
.kv {
  height: 100%;
} */

/* ロゴ大 */
.kv {
  /* background-color: var(--main_color); */
  /* background: linear-gradient(var(--main_color),#FF5F26); */
  background-color: #dd002e;
  color: #fff;
  overflow: hidden;
}

.kv-logo {
  margin: 132px 20px 40px;
  text-align: center;
}

.kv-logo img{
  width: 100%;
}

.kv-text {
  margin: 0 20px 118px;
  text-align: center;
  font-size: 1.5rem;
}

/* 汎用インナー */
.innner-generic {
  margin-right: 20px;
  margin-left: 20px;
  padding-top: 56px;
  padding-bottom: 82px;
  overflow: hidden;
  /* border: 1px solid #000; */
}

/* トップご縁 */
.wrap-kv {
  background-color: #F4ECD9;
  overflow: hidden;
  background: url(../../common/image/top_goen_back_2.jpg);
  background-size: 10px;
}

.innner-generic.impression-wrap{
  padding-top: 0;
  margin-right:auto;
  margin-left:auto;
  position: relative;
  padding-bottom: 60px;
  width: 420px;
}

/* デバイス別表示・非表示 SP時 */
.impression-line-pc{
  display: none;
}

.impression-line-sp{
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 403px;
}

/* 装飾　雲 */
.impression-cloud{
  position: relative;
  width: 420px;
  margin: 0 auto;
}
.impression-cloud-up{
  position: absolute;
  top:96px;
  right:-90px;
  width: 240px;
}

.impression-cloud-down{
  position: absolute;
  top:859px;
  left:-73px;
  width: 217px;
}
/* 装飾　太陽 */
.impression-sun{
  position: absolute;
  top:875px;
  width: 234px;
  left: 50%;
  transform: translateX(-50%);
}

/* ご縁 */
.impression-textarea{
  position: absolute;
  top:127px;
  left: 91px;
}

.impression-textarea2{
  position: absolute;
  top:283px;
  left: 225px;
}

.impression-textarea3{
  position: absolute;
  top:496px;
  left: 55px;
}

.impression-textarea4{
  position: absolute;
  top:658px;
  left:181px;
}

.impression-tit{
  color: var(--main_color);
  border-bottom: solid 2px #AC272D;
  font-size: 19px;
  font-weight: 700;
  padding-bottom: 9px;
  padding-left: 8px;
  margin-bottom: 7px;
  line-height: 1.448;
  width: 134px;
}

.impression-txt{
  color: var(--main_color);
  font-size: 15px;
  padding-left: 8px;
  line-height: 1.667;
}

.impression-txt span{
  display: block;
}


/* 概要 */
.overview {
  background-color: #FCF5E4;
  background-image: url(../../common/image/top_washi.jpg);
  background-size: cover;
}

.overview .innner-generic{
  padding-top: 29px;
}

.overview img {
  max-width: 100%;
}

.overview .pic-illust {
  text-align: center;
  margin-top:0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 21px;
  width: 234px;
}

.overview .pic-mark {
  text-align: center;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.pic-mark .pic-mark-img{
  position: relative;
  max-width: 140px;
}

.overview .pic-mark-bg{
  width: 224px;
  height: auto;
  z-index: 0;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.overview p{
  text-align: center;
}

.overview p span{
  display: block;
}

.overview p span.overview-textline{
  display: inline;
}

#toppage h2.overview-headline{
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.overview-text{
  font-size: 1.5rem;
}

#toppage .overview h2:after {
  /* background-color: var(--font_color); */
  content: none;
}

/* 特集 */

.features-bnr img,
.features_thumb img,
.interviews-list img{
  cursor: pointer;
  transition-duration: 0.5s;
}

.features-bnr a:hover img,
.features_thumb a:hover img,
.interviews-list a:hover img{
  opacity: 0.8;
  transition-duration: 0.5s;
}

.features{
  background-color: var(--main_color);
  padding: 47px 0;
}

.features-bnr{
  margin:0 auto 48px;
  text-align: center;
  width: 80%;
  max-width: 700px;
}

.features-bnr a {
  text-decoration: none;
  color: #ac272d;
  font-size: 24px;
  line-height: 1em;
}

.features-bnr img{
  max-width:100%;
  margin-bottom: 32px;
}

ul.features_thumb{
  align-items: center;
  justify-content: center;
  margin:0 auto;
  display: flex;
  flex-wrap:wrap;
  gap: 20px;
  max-width: 674px;
}

ul.features_thumb li{
  width: calc(50% - 10px);
}

.features_link {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 50%;
  width: 100%;
  padding-top: 100%;
}

.features_btn{
  margin:35px 40px 0;
  padding-bottom: 60px;
}

.features .button {
  display: block;
  position: relative;
  background: #fff;
  width: auto;
  padding: 2.2rem;
  /* border-radius: 100px; */
  color: var(--main_color);
  text-align: center;
  text-decoration: none;
  /* letter-spacing: .1rem; */
  line-height: 1;
  transition: .5s;
  margin: 0 auto;
  /* box-shadow: 2px 8px rgba(0, 0, 0, 0.2); */
  font-size: 1.6rem;
  font-weight: 700;
}

.features .button::after {
  content: '';
  border: 0;
  border-top: solid 1px var(--main_color);
  border-right: solid 1px var(--main_color);
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
}

.features .button:hover {
  background-color: #000;
  color: #fff;
}

.default_banner {
  font-weight: 900;
  width: 100%;
  height: 100%;
  padding: .25em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../image/features/tokusyu_bunner_base.png");
  background-size: cover;
}

.default_banner.top_banner {
  height: auto;
  min-height: 130px;
  margin-bottom: 32px;
  font-size: 2.4rem;
  line-height: 1.2;
}

@media all and (min-width: 865px) {
  .features-bnr,
  .features_thumb {
    max-width: 650px;
  }

  .default_banner.top_banner {
    font-size: 3.6rem;
  }

  ul.features_thumb li {
    width: calc(24% - 10px);
  }
}

/* インスタ */
.insta {
  background-color: #FFEFE6;
}

.insta .innner-generic{
  padding-top: 47px;
  padding-bottom: 76px;
}

.insta .innner-generic h3{
  text-align: center;
}

#toppage h2.insta-headline{
  color: var(--main_color);
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  line-height: 1.75;
  /* margin-bottom: 88px; */
  margin-bottom: 10px;
}

#toppage .insta h2:after {
  background-color: var(--main_color);
}

.insta .innner-generic h3{
  /* margin-top: 56px; */
  margin-top: 73px;
  margin-bottom: 27px;
}

.insta .insta-subtext{
  color: var(--main_color);
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 56px;
}

.insta .insta-subtext span{
  display: block;
}

/* Instagram埋め込み部分 */
.pos_wrap{
  flex-wrap: wrap;
  flex-direction: column;
}

.pos_wrap p{
  color: var(--main_color);
  padding-top: 44px;
  padding-bottom: 44px;
  margin-right: auto;
  margin-left: auto;
}

.post_item{
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 865px) {
  .pos_wrap{
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
  }

  .pos_wrap p{
    padding-top: 114px;
    padding-bottom: 114px;
  }

  .post_item {
    margin: 0;
  }

  .insta .insta-subtext span{
    display: inline;
  }
}

@media screen and ( min-width:1068px) {
  .pos_wrap {
    justify-content: start;
  }
}

/* 生産者インタビュー */
.interviews .innner-generic{
  margin-right: 0;
  margin-left: 0;
}


.interviews {
  background-color: #EFEFEF;
  background-image: url(../../common/image/top_washi.jpg);
  background-size: cover;
}

#toppage .interviews h2:after {
  background-color: var(--font_color);
}

.interviews-link {
  display: block;
  background-color:#FFF;
  padding-bottom: 1px;
  text-decoration: none;
  margin-bottom: 16px;
  color: var(--font_color);
}

.interviews-link:hover{ text-decoration: underline;}

.interviews-list{
  display: flex;
  margin-bottom: 20px;
  margin-left: 12px;
  width: 100%;
  height: 100%;
}

.interviews-list .img-area{
  width:160px;
  flex-shrink: 0;
}

.interviews-list .img-area img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* 左上に表示 */
.bookmark {
  position: relative;
}

.bookmark::after {
  content: "";
  top: 0;
  left:-5px;
  border-left: 15px solid #c12748;
  position: absolute;
  z-index: 100;
  width: 20px;
  height: 24px;
}

.interviews-list .about-area{
  padding: 28px 10px 28px 22px;
}

.about-area_date{
 font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.0;
  margin-bottom: 16px;
}

.about-area_tit{
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 28px;
  line-break: strict;
}

.about-area_corp{
  font-size: 1.2rem;
}

.about-area_position{
  font-size: 1.2rem;
}

.about-area_name{
  font-size: 1.8rem;
  font-weight: 700;
}

.interviews_btn{
  margin:23px 42px 0;padding-bottom: 60px;
}

.interviews_btn a{
  border: 1px solid var(--main_color);
}

.interviews .button {
  display: block;
  position: relative;
  background: #fff;
  width: auto;
  padding: 2.2rem;
  /* border-radius: 100px; */
  color: var(--main_color);
  text-align: center;
  text-decoration: none;
  /* letter-spacing: .1rem; */
  line-height: 1;
  transition: .5s;
  margin: 0 auto;
  /* box-shadow: 2px 8px rgba(0, 0, 0, 0.2); */
  font-size: 1.6rem;
  font-weight: 700;
}

.interviews .button::after {
  content: '';
  border: 0;
  border-top: solid 1px var(--main_color);
  border-right: solid 1px var(--main_color);
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
}

.interviews .button:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}


/* 新着情報 */

.news {
  color: #fff;
  background-color:var(--main_color);
}

.news .innner-generic{
  padding-top: 37px;
}

.news a{
  color: #fff;
  text-decoration: none;
}

.news a:hover{
  text-decoration: underline;
}

.news-list{
  margin-bottom: 50px;
  font-size: 1.5rem;
  line-height: 2.6;
}

.news-list li a{
  display: flex;
  align-items:stretch;
  justify-content:flex-start;
  line-height: 2.6;
}

.news-list li span.news-date{
  width: 25%;
}

.news-list li span.news-text{
  width: 75%;
}

.news-toall{
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
  vertical-align: middle;
  line-height: 1;
}
.news-toall a{
  vertical-align: middle;
  line-height: 1;
}
.news-toall-arrow{
  font-size: 23px;
  font-family:monospace;
  vertical-align: middle;
  line-height: 1;
  margin-left: 2px;
}

/* 特典 */

/* .benefits {
  color: #fff;
  background-color: var(--accent_color);
  background-image: url(../../common/image/top_curtain.jpg);
  background-size: cover;
}

.benefits .innner-generic{
  padding-top: 56px;
}

.benefits ol {
  list-style: none;
  padding-left: 1.5rem;
  color: #fff;
}

.benefits li{
  line-height: 2.6;
} */

/* 審査リスト */

.judging {
  background-color: #EFEFEF;
  background-image: url(../../common/image/top_washi.jpg);
  background-size: cover;
}

.judging .innner-generic{
  padding-top: 37px;
  padding-bottom: 31px;
}

#toppage .judging h2:after {
  background-color: var(--font_color);
}

.judging-list li{
  margin-bottom: 36px;
  position: relative;
  padding-left: 3.5rem;
  font-size: 15px;
  line-height: 2.267;
}

.judging-list li::before {
  content: url(../../common/image/top_nintei_icon.svg);
  transform: scale(1);
  position: absolute;
  top: 5px;
  left: 0px;
  width: 24px;
}

/* 詳しくみる */
.more {
  color: #fff;
  background-color: var(--main_color);
  text-align: center;
}

.more .innner-generic{
  padding-top: 37px;
  padding-bottom: 84px;
}

#toppage h2.more-headline {
  text-align: left;
  margin: 0 auto 40px;
  line-height: 1.448;
  width: 11em;
}

#toppage h2.more-headline:after {
  content: none;
}

.break {
  display: block;
}

.more .button {
  display: block;
  position: relative;
  background: #fff;
  width: auto;
  padding: 2.5rem;
  border-radius: 100px;
  color: var(--main_color);
  text-align: center;
  text-decoration: none;
  letter-spacing: .1rem;
  transition: .5s;
  margin: 0 auto;
  box-shadow: 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 2.1rem;
  font-weight: 700;
}

.more .button::after {
  content: '';
  border: 0;
  border-top: solid 2px var(--main_color);
  border-right: solid 2px var(--main_color);
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%) rotate(45deg);
}

.more .button:hover {
  background-color: #000;
  color: #fff;
}

/* フッター SP */
.footer-area-wrap {
  display: flex;
  flex-direction: column;
  /* justify-content:space-between; */
  /* align-items:flex-end; */
  margin-right: 20px;
  margin-left: 20px;
  padding-top: 56px;
}

.footer-area-navi {
  width: 100%;
}

.footer-area-panf {
  display: none;
}

.footer-area-link {
  color: #fff;
  width: 100%;
}

/* フッターナビ SP */

/* フッターナビ SP 2列　二次*/
.footer-navi{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-navi li {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-bottom: 10px;
  width:50%;
}

/* フッター複数行を回避 */
.footer-navi li.ls{
  letter-spacing: -0.1em;
}

.footer-navi li:before {
  border-top: 1px solid #fff;
  /* 線 */
  content: "";
  width: 25px;
  /* 線の長さ */
  margin-right: 7px;
}

.footer-navi li a:hover {
  text-decoration: underline;
}

/* SNSアイコン */
.snslink {
  display: flex;
  color: #fff;
  width: auto;
  margin-top: 50px;
}

.snslink li {
  margin-right: 20px;
  width: 40px;
}

/* フッター情報 */
.footer-name{
  font-size: 17px;
  margin-top: 12px;
  margin-bottom: 18px;
}

.footer-subname{
  font-size: 13px;
  line-height: 1.4;
}

.footer-add{
  font-size: 13px;
  line-height: 1.4;
}

.footer-tel{
  font-size: 13px;
  line-height: 1.4;
}

.footer-tel a{
  color: #00FFFF;
}

address{
  display: inline;
  font-style: normal;
}

/* コピーライト */
.license {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 12px;
  display: block;
}

.license span{
  display: block;
  line-height: 1;
}

/* モーダル */
/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10;
  /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
  position: fixed;
  opacity: .6;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 500px;
  padding: 10px 30px;
  background-color: #fff;
  height: 80%;
  /*お好みの高さで固定*/
  overflow: auto;
  /*状況に応じて縦スクロールバーが出現*/
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
  font-size: 42px;
  border: #4D4D4D 1px solid;
  border-radius: 50%;
  padding: 4px 6px;
}

/* モーダルおわり */
/* 380px以下 調整 */
@media screen and (max-width: 380px) {
  .more .button {
    font-size: 1.6rem;
  }
}

/* 390px以下 調整 */
@media screen and (max-width: 390px) {
  .news-list li a{
    flex-direction: column;
  }

  .news-list li span.news-date{
    width: 100%;
    display: block;
    line-height: 1;
  }

  .news-list li span.news-text{
    width: 100%;
    display: block;
    margin-bottom: 1rem;
  }

  .more .button::after {
    border-top: solid 2px var(--main_color);
    border-right: solid 2px var(--main_color);
    width: 20px;
    height: 20px;
    top: 50%;
    right: 25px;
  }

  .interviews-list{
    display: block;
    width: 100%;
  }

  .interviews-list .img-area{
    width:100%;
  }

  .interviews-list .about-area {
    padding: 16px;
    padding-left: 4px;
  }
}
/* 440px以下 調整 */
@media screen and (max-width: 440px) {
  .news-list li a{
    flex-direction: column;
  }

  .news-list li span.news-date{
    width: 100%;
    display: block;
    line-height: 1;
  }
}

@media all and (min-width: 768px) {
  .footer-navi li {
    font-size: 14px;
  }
}

/* 1080px以上 PC */
@media screen and (min-width: 1080px) {
  .navi-sp-wrap,
  .drawer__bg,
  .drawer__menu,
  #sp-drawer-btn {
    display: none;
  }

  /* デバイス別表示・非表示 PC時 */
  .impression-line-pc{
    display:block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 65px;
    width: 802px;
  }

  .impression-line-sp{
    display: none;
  }

  .innner-generic.impression-wrap{
    padding-top: 0;
    margin-right:auto;
    margin-left:auto;
    position: relative;
    padding-bottom: 60px;
    width: 802px;
  }
  
  /* 装飾　雲 */
  .impression-cloud{
    position: relative;
    width: 802px;
    margin: 0 auto;
  }
  .impression-cloud-up{
    position: absolute;
    top:171px;
    right:86.42px;
    width: 240px;
  }
  
  .impression-cloud-down{
    position: absolute;
    top:1158px;
    left:108px;
    width: 217px;
  }
  /* 装飾　太陽 */
  .impression-sun{
    position: absolute;
    top:1163px;
    width: 234px;
  }
  
  /* ご縁 PC */
  .impression-textarea{
    position: absolute;
    top:219px;
    left: 134px;
  }
  
  .impression-textarea2{
    position: absolute;
    top:381px;
    left: 426px;
  }
  
  .impression-textarea3{
    position: absolute;
    top:693px;
    left:134px;
  }
  
  .impression-textarea4{
    position: absolute;
    top:854px;
    left:392px;
  }
  
  .impression-tit{
    color: var(--main_color);
    border-bottom: solid 2px #AC272D;
    font-size: 43px;
    font-weight: 700;
    padding-bottom: 9px;
    padding-left: 0;
    margin-bottom: 7px;
    line-height: 1.448;
    /* letter-spacing: -0.04em; */
    width: auto;
  }
  
  .impression-txt{
    color: var(--main_color);
    font-size: 19px;
    padding-left: 8px;
    line-height: 1.1.632;
  }

  /* ナビメニュー PC */
  .navi-pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 8px;
  }

  .navi-pc li {
    margin-right: 38px;
    font-size: 1.6rem;
  }

  .navi-pc li:last-child {
    margin-right: 0;
  }

  .navi-pc a {
    position: relative;
    color: #fff;
    text-decoration: none;
  }

  .navi-pc a:hover {
    color: #fff;
  }

  .navi-pc a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70%;
    height: 2px;
    background-color: #fff;
    transform: translateX(25%) scaleX(1);
    transition: transform 0.3s;
  }

  .navi-pc a:hover::after {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%) scaleX(1);
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
  }

  .kv-logo {
    margin: 95px 20px 40px;
    text-align: center;
  }

  /* 汎用 PC */
  .innner-generic {
    margin-right: auto;
    margin-left: auto;
    padding-top: 56px;
    padding-bottom: 100px;
    width: 660px;
  }

  .insta .innner-generic {
    /* width: 940px; */
    width: 1034px;
    padding-top: 17px;
    padding-bottom: 106px;
  }

  /* ロゴ大 PC */
  .kv-logo {
    width: 467px;
    height: auto;
    margin-right: auto;
    margin-left:auto;
  }

  .kv-text {
    margin: 0 20px 78px;
  }

  .overview .innner-generic {
    padding-top: 56px;
    padding-bottom: 126px;
    width: 750px;
  }

  .overview p{
    text-align: center;
  }

  .overview p span{
    display: inline;
  }

  .overview p span.overview-textline{
    display: block;
  }

  .news .innner-generic {
    padding-top: 0;
    padding-bottom: 130px;
  }

  .news-list {
    margin-bottom: 37px;
    width: 540px;
    margin-right: auto;
    margin-left: auto;
  }

  .benefits .innner-generic {
    padding-top: 56px;
    padding-bottom: 103px;
  }

  .benefits li{
    letter-spacing: -0.03em;
  }

  .judging .innner-generic {
    padding-top: 0;
    padding-bottom: 97px;
  }

  .more .innner-generic {
    padding-top: 0;
    padding-bottom: 135px;
  }
  /* ボタン横幅 PC */
  .more .innner-generic div {
    width:354px;
    margin: 0 auto;
  }

  /* フッター PC */
  .footer-area-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    padding-top: 48px;
    margin-right: 20px;
    margin-left: 20px;
  }

  .footer-area-navi {
    width: 50%;
  }

  .footer-area-panf {
    display: block;
    color: #fff;
    margin-top: 50px;
  }

  .footer-area-panf p {
    margin-bottom: 10px;
  }

  .footer-area-panf li {
    padding-bottom: 10px;
  }

  .footer-area-panf li img {
    width: 20px;
    margin: 5px 5px 0 0;
  }

  .footer-area-panf li a:hover {
    text-decoration: underline!important;
  }

  .footer-area-link {
    color: #fff;
    text-align: right;
  }

  /* フッターナビ */
  .footer-navi {
    /* display: flex; */ /*2列*/
    /* flex-wrap: wrap; */ /*2列*/
    /* width: 242px; */
    width: 420px;
    margin: 0 0 auto auto;
  }

  .footer-navi li {
    display: flex;
    width: 50%; /*2列*/
    /* width: 100%; */
  }

  .license .lastline{
    display:inline
  }

  .snslink {
    justify-content: end;
    margin: 0 0 0 20px;
  }

}

/* 820px以上 */
@media screen and (min-width: 820px) {
  /* 生産者の想い　横幅調整 */
  .interviews .innner-generic{
    padding-top: 37px;
    padding-bottom: 31px;
    margin-left: auto;
    margin-right: auto;
    width: 660px;
  }
  /* 特集　サムネイル並び調整 */
  ul.features_thumb{
    width: 100%;
  }
}

/* 890px以上 PC */
@media screen and (min-width: 890px) {
  .features_btn{
    padding-bottom: 120px;
    width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .interviews_btn {
    padding-bottom: 120px;
  }
}

/* 1240px以上 PC */
@media screen and (min-width: 1240px) {
  .benefits .innner-generic {
    padding-bottom: 143px;
  }
  .more .innner-generic {
    padding-bottom: 155px;
  }
}

/* 1580px以上 PC */
@media screen and (min-width: 1580px) {
  .kv-text {
    margin: 0 20px 57px;
  }
}

/* PCここまで */