@charset "utf-8";

/** ***************************************************************************
 * フォント設定
 * ************************************************************************* */

/* アイコン */

@import url('../_font/icomoon/style.css');

/* ゴシック体 */

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 300;
  src: url('../_font/NotoSans/NotoSansCJKjp-Light.woff') format('woff'),
       url('../_font/NotoSans/NotoSansCJKjp-Light.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 400;
  src: url('../_font/NotoSans/NotoSansCJKjp-Regular.woff') format('woff'),
       url('../_font/NotoSans/NotoSansCJKjp-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 500;
  src: url('../_font/NotoSans/NotoSansCJKjp-Medium.woff') format('woff'),
       url('../_font/NotoSans/NotoSansCJKjp-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 700;
  src: url('../_font/NotoSans/NotoSansCJKjp-Bold.woff') format('woff'),
       url('../_font/NotoSans/NotoSansCJKjp-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 900;
  src: url('../_font/NotoSans/NotoSansCJKjp-Black.woff') format('woff'),
       url('../_font/NotoSans/NotoSansCJKjp-Black.otf') format('opentype');
}

/* 明朝体 */

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 300;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-Light.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-Light.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 400;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-Regular.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 500;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-Medium.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 600;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-SemiBold.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-SemiBold.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 700;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-Bold.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 900;
  src: url('../_font/NotoSerif/NotoSerifCJKjp-Black.woff') format('woff'),
       url('../_font/NotoSerif/NotoSerifCJKjp-Black.otf') format('opentype');
}

/** ***************************************************************************
 * 全体
 * ************************************************************************* */

html {
  font-size: 62.5%;
}

body {
  padding-top: 50px;
  color: #000;
  font: 14px/1.5 'NotoSansCJKjp', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

a[href] {
  text-decoration: underline;
}

a[href]:hover {
  text-decoration: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  body {
    padding-top: 71px;
  }

  a[href*="tel:"] {
    color: inherit;
    cursor: default;
    pointer-events: none;
    text-decoration: none !important;
  }

}

/** ***************************************************************************
 * 初回アクセス用
 */

#first-accsess {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

body.first-accsess
#first-accsess {
  animation: 4.0s ease-in-out 0.0s forwards normal firstAccsess;
}

#first-accsess div.content {
  margin-top: -7vh;
  visibility: hidden;
  opacity: 0;
}

body.first-accsess
#first-accsess div.content {
  animation: 2.0s ease-in-out 1.0s forwards normal firstAccsessContent;
}

#first-accsess div.content img {
  width: auto;
  height: 80vh;
  max-height: 332px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #first-accsess div.content img {
    max-height: 594px;
  }

}

/* :::::::: アニメーション :::::::: */

@keyframes firstAccsess {
  0% {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }
  80% {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }
  100% {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes firstAccsessContent {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

/** ***************************************************************************
 * 色設定
 */

/* 茶産地育成事業とは */
body#page-concept *[id] a[href*="concept/"],
body#page-concept #main *[id] *:not(a),
body#page-concept #main *[id] *::before,
body#page-concept #main *[id] *::after {
  border-color: #c8d59e;
}

/* 茶農業の技術開発 */
body#page-tech *[id] a[href*="tech/"],
body#page-tech #main *[id] *:not(a),
body#page-tech #main *[id] *::before,
body#page-tech #main *[id] *::after {
  border-color: #a0d4c6;
}

/* 契約栽培 */
body#page-contract *[id] a[href*="contract/"],
body#page-contract #main *[id] *:not(a),
body#page-contract #main *[id] *::before,
body#page-contract #main *[id] *::after {
  border-color: #fc0;
}

/* 新産地事業 */
body#page-cultivate *[id] a[href*="cultivate/"],
body#page-cultivate #main *[id] *:not(a),
body#page-cultivate #main *[id] *::before,
body#page-cultivate #main *[id] *::after {
  border-color: #c39d69;
}

/* 緑茶原料以外の契約栽培 */
body#page-vegetable *[id] a[href*="vegetable/"],
body#page-vegetable #main *[id] *:not(a),
body#page-vegetable #main *[id] *::before,
body#page-vegetable #main *[id] *::after {
  border-color: #fb5e45;
}

/** ***************************************************************************
 * レイアウト用
 */

div.body {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  div.body {
    padding-left: 20px;
    padding-right: 20px;
  }

}

/** ***************************************************************************
 * ヘッダー
 * ************************************************************************* */

#header {
  width: 100%;
  padding: 13px 0 11px;
  padding-right: 74px;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
}

#header div.body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:831px) {

  #header {
    padding: 0;
  }

  #header div.body {
    justify-content: space-between;
  }

}

/** ***************************************************************************
 * ロゴ
 */

#header div.logo {
  width: 100%;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#header div.logo a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

#header div.logo img {
  display: block;
}

#header div.logo .itoen {
  width: 74px;
  margin-right: 10px;
}

#header div.logo .itoen + * {
  margin-top: 0;
}

#header div.logo .title {
  width: 137px;
  margin-left: auto;
  margin-right: auto;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:831px) {

  #header div.logo {
    width: auto;
    padding: 14px 0 0;
  }

  #header div.logo .itoen {
    width: auto;
  }

  #header div.logo .title {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

}

@media print, screen and (min-width:1151px) {

  #header div.logo {
    padding: 14px 0 14px;
    padding-right: 20px;
  }

}

/** ***************************************************************************
 * コンテンツ
 */

#header div.header {
  display: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:831px) {

  #header div.header {
    width: 100%;
    display: block;
  }

}

@media print, screen and (min-width:1151px) {

  #header div.header {
    width: auto;
  }

}

/** ***************************************************************************
 * グローバルナビ
 */

#global-nav ul.list,
#global-nav ul.list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#global-nav ul.list {
  display: flex;
  align-items: center;
}

#global-nav ul.list li {
  margin-left: 10px;
  margin-right: 10px;
}

#global-nav ul.list li a {
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  background: url("../_image/_common/icon-listmark-1.png") left center no-repeat;
  background-size: 6px 8px;
  display: block;
  position: relative;
  transition: color 0.3s ease-in-out 0.0s;
  color: inherit;
}

#global-nav ul.list li a:hover {
  color: #614232;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:831px) {

  #global-nav ul.list {
    justify-content: space-around;
  }

  #global-nav ul.list li a {
    padding: 15px 5px 15px 12px;
  }

}

@media print, screen and (min-width:1151px) {

  #global-nav ul.list {
    justify-content: flex-end;
  }

  #global-nav ul.list li a {
    padding: 22px 5px 23px 12px;
  }

}

/** ***************************************************************************
 * ビジュアル
 * ************************************************************************* */

body.layout-lower
#visual {
  background-color: #f3f0e8;
  position: relative;
}

body.layout-lower
#visual .title {
  width: 100%;
  padding: 20px 0.5em;
  color: #fff;
  letter-spacing: 0.125em;
  line-height: 1.5;
  font-size: 1.714em;
  font-weight: 700;
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 1.0));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  transition: opacity 0.6s ease-in-out 1.5s;
  opacity: 0;
}

body.layout-lower
#visual .title.window-in {
  opacity: 1;
}

body.layout-lower
#visual img {
  width: 100%;
  transition:
    visibility 1.0s ease-in-out 0.5s,
    opacity 1.0s ease-in-out 0.5s;
  visibility: hidden;
  opacity: 0;
}

body.layout-lower.loaded
#visual img {
  visibility: visible;
  opacity: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  body.layout-lower
  #visual .title {
    font-size: 3.429em;
    font-weight: 500;
  }

}

/** ***************************************************************************
 * メイン
 * ************************************************************************* */

#main {
  line-height: 2;
  overflow: hidden;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #main {
    font-size: 15px;
  }

}

/** ***************************************************************************
 * セクショニング
 */

#main .section {
  padding-top: 30px;
  padding-bottom: 30px;
}

#main > .section:last-child {
  padding-bottom: 55px;
}

#main .section ~ .section {
  margin-top: 10px;
}

#main .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #main .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  #main > .section:last-child {
    padding-bottom: 30px;
  }

  #main .section ~ .section {
    margin-top: 0;
  }

  #main .column ~ .column {
    margin-top: 60px;
  }

}

/** ***************************************************************************
 * メニュー
 * ************************************************************************* */

#menu {
  width: 62%;
  height: calc(100vh - 53px);
  padding-bottom: 74px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  position: fixed;
  z-index: 2;
  top: 50px;
  pointer-events: none;
  transition: right 0.3s ease-in-out 0.0s;
  right: -62%;
}

body.menu-active
#menu {
  pointer-events: auto;
  right: 0;
}

#menu div.body {
  height: 100%;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

#menu div.contents {
  width: 100%;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:831px) {

  #menu {
    display: none;
  }

}

/** ***************************************************************************
 * ハンバーガー
 */

#header div.drawer-trigger {
  width: 40px;
  height: 40px;
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: 4px;
  right: 10px;
  transition: background-color 0.3s ease-in-out 0.2s;
  background-color: transparent;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:831px) {

  #header div.drawer-trigger {
    display: none;
  }

}

/** :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 * ライン
 */

#header div.drawer-trigger i.icon {
  width: 30px;
  height: 0;
  display: block;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  position: absolute;
  top: calc(50% - 1px);
  left: 5px;
  z-index: 1;
}

#header div.drawer-trigger i.icon::before,
#header div.drawer-trigger i.icon::after {
  content: '';
  width: 30px;
  height: 0;
  display: block;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  position: absolute;
  top: 50%;
}

/* 上 */

#header div.drawer-trigger i.icon::before {
  margin-top: -10px;
  transition:
    all 0.4s ease-in-out 0.0s,
    margin-left 0.4s ease-in-out 0.0s;
  margin-left: 0;
}

body.menu-active
#header div.drawer-trigger i.icon::before {
  -webkit-transform: translateY(9px) rotate(-315deg);
          transform: translateY(9px) rotate(-315deg);
  margin-left: -100px;
}

/* 中 */

#header div.drawer-trigger i.icon {
  transition:
    all 0.4s ease-in-out 0.0s,
    margin-left 0.4s ease-in-out 0.0s;
  margin-left: 0;
}

body.menu-active
#header div.drawer-trigger i.icon {
  margin-left: 100px;
}

/* 下 */

#header div.drawer-trigger i.icon::after {
  margin-top: 8px;
  transition:
    all 0.4s ease-in-out 0.0s,
    margin-left 0.4s ease-in-out 0.0s;
  margin-left: 0;
}

body.menu-active
#header div.drawer-trigger i.icon::after {
  -webkit-transform: translateY(-9px) rotate(315deg);
          transform: translateY(-9px) rotate(315deg);
  margin-left: -100px;
}

/** ***************************************************************************
 * ナビ
 */

#menu ul,
#menu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#menu ul.list li a {
  padding: 1em 0.75em;
  color: inherit;
  text-decoration: none;
  display: block;
}

#menu ul.list > li {
  letter-spacing: 1px;
  font-size: 1.143em;
  font-weight: 400;
}

body.menu-active
#menu ul.list > li {
  border-bottom: 1px solid #fff;
}

#menu ul.list li a {
  padding: 1em 0.75em 1em 30px;
  background: url("../_image/_common/icon-listmark-1.png") 12px center no-repeat;
  background-size: 6px 6px;
}

#menu ul.list li.current a {
  background-color: rgba(0, 0, 0, 0.5);
}

/** ***************************************************************************
 * フッター
 * ************************************************************************* */

#footer {
  color: #fff;
  font-weight: 400;
  background-color: #1d7a40;
  position: relative;
  z-index: 1;
}

#footer div.body {
  padding: 0;
}

#footer a {
  color: inherit;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #footer {
    padding-top: 30px;
  }

  #footer div.body {
    padding: 0 20px;
  }

}

/** ***************************************************************************
 * ナビ
 */

#footer-nav ul.list,
#footer-nav ul.list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer-nav ul.list {
  font-size: 0.75em;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

#footer-nav ul.list li {
  width: 50%;
  border: 0.5px solid #77af8c;
}

#footer-nav ul.list li a {
  height: 100%;
  padding: 1em 1em;
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #footer-nav {
    margin-bottom: 10px;
  }

  #footer-nav ul.list {
    font-size: 1em;
  }

  #footer-nav ul.list li {
    width: 25%;
    margin-bottom: 1em;
    border: none;
    border-left: 1px dotted #fff;
    flex-shrink: 0;
  }

  #footer-nav ul.list li:nth-child(4n),
  #footer-nav ul.list li:last-child {
    border-right: 1px dotted #fff;
  }

  #footer-nav ul.list li a {
    padding: 0.125em 1em;
    justify-content: center;
  }

}

/** ***************************************************************************
 * ページトップ
 */

#footer div.pagetop {
  width: 35px;
  position: fixed;
  right: 12px;
  transition: all 0.5s ease-in-out 0.0s;
  bottom: 12px;
  opacity: 0;
}

#footer div.pagetop a {
  text-decoration: none;
  display: block;
}

body.scroll-active
#footer div.pagetop {
  position: fixed;
  top: auto;
  bottom: 12px;
  opacity: 1;
}

body.scroll-active
#footer.window-in div.pagetop {
  position: absolute;
  top: -45px;
  bottom: auto;
  opacity: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #footer div.pagetop {
    display: none;
  }

}

/** ***************************************************************************
 * コピーライト
 */

#footer div.copyright {
  padding: 1em;
  letter-spacing: 1px;
  font-size: 0.714em;
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #footer div.copyright {
    font-size: 0.857em;
  }

}
