@charset "utf-8";

/* ****************************************************************************************************
   * 共用
**************************************************************************************************** */

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

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

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

body {
  margin-bottom: 45px;
  color: #333;
  font: 14px/1.5 "Yu Gothic", YuGothic, Meiryo, sans-serif;
  position: relative;
  z-index: 1;
}

body::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

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

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

  body {
    margin-bottom: 0;
    font-size: 14px;
  }

}

/* ----------------------------------------------------------------------------------------------------
   * リンク
/* ------------------------------------------------------------------------------------------------- */

a {
  color: #23a1a1;
  transition: all 0.3s ease-in-out 0.0s;
  -webkit-tap-highlight-color: rgba( 0, 0, 0, 0 );
}

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

.body {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
}

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

.section ~ .section {
  margin-top: 30px;
}

.column ~ .column {
  margin-top: 30px;
}

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

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

  .section ~ .section {
    margin-top: 50px;
  }

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

}

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

#header {
  padding: 10px 0;
  background-color: #fff;
}

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

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

#header div.logo {
  width: 50%;
  vertical-align: top;
  display: table-cell;
}

#header div.logo a {
  height: 100%;
  display: inline-block;
}

#header div.logo img {
  max-height: 22px;
}

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

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

  #header div.logo img {
    max-height: 28px;
  }

}

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

#header div.contents {
  width: 50%;
  vertical-align: middle;
  display: table-cell;
}

/* ----------------------------------------------------------------------------------------------------
   * 伊藤園 ロゴ
/* ------------------------------------------------------------------------------------------------- */

#header div.contents .itoen {
  margin-left: auto;
  margin-right: 0;
  line-height: 1;
  display: table;
}

#header div.contents .itoen a {
  height: 100%;
  display: inline-block;
}

#header div.contents .itoen img {
  max-height: 14px;
}

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

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

  #header div.contents .itoen img {
    max-height: 22px;
  }

}

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

#global-nav {
  background-color: #4bb4b4;
  position: relative;
  z-index: 2;
  display: none;
}

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

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

  #global-nav {
    display: block;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * リスト
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#global-nav ul.list {
	margin: 0;
	padding: 0;
	list-style: none;
  letter-spacing: -0.4em;
}

#global-nav ul.list li {
  letter-spacing: normal;
}

#global-nav ul.list li a {
  color: #fff;
	display: block;
	text-decoration: none;
}

#global-nav ul.list li a img {
  opacity: 1.0;
  transition: none;
}

/* ----------------------------------------------------------------------------------------------------
   * 1階層目
/* ------------------------------------------------------------------------------------------------- */

#global-nav ul.list > li {
  width: 16.66666666666667%;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  border-left: 1px solid rgba( 255, 255, 255, 0.3 );
  border-right: 1px solid rgba( 255, 255, 255, 0.3 );
}

#global-nav ul.list > li ~ li {
  border-left: none;
}

#global-nav ul.list > li > a {
  height: 100%;
  padding: 0 5px;
  display: block;
	overflow: hidden;
  transition: all 0.3s ease-in-out 0.0s;
}

#global-nav ul.list > li.touch a,
#global-nav ul.list > li:hover a,
#global-nav ul.list > li.current a {
  background-color: #349e9e;
}

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

body.layout-lower #visual div.body {
  padding-bottom: 58.75%;
  position: relative;
}

body.layout-lower #visual div.contents {
  width: 100%;
  color: #fff;
  -webkit-transform: translate(0, -65%);
          transform: translate(0, -65%);
  position: absolute;
  top: 50%;
  left: 0;
}

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

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

  body.layout-lower #visual div.body {
    padding-bottom: 28.7037037037037%;
  }

}

/* ----------------------------------------------------------------------------------------------------
   * 各カテゴリー TOPページ
/* ------------------------------------------------------------------------------------------------- */

body.layout-category #visual div.body {
  padding-bottom: 47.33333333333333%;
}

body.layout-category #visual div.contents {
  color: #23a1a1;
}

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

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

  body.layout-category #visual div.body {
    padding-bottom: 20.37037037037037%;
  }

  body.layout-category #visual div.contents {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * アイコン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

body.layout-lower #visual div.icon {
  margin-bottom: 10px;
  text-align: center;
}

body.layout-lower #visual div.icon img {
  max-height: 32px;
}

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

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

  body.layout-lower #visual div.icon img {
    max-height: 46px;
  }

}

/* ----------------------------------------------------------------------------------------------------
   * 各カテゴリー TOPページ
/* ------------------------------------------------------------------------------------------------- */

body.layout-category #visual div.icon {
  margin-bottom: 20px;
}

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

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

  body.layout-category #visual div.icon {
    margin-bottom: 40px;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * タイトル
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

body.layout-lower #visual .title {
  font-weight: bold;
  text-align: center;
}

body.layout-lower #visual .title .category {
  display: block;
  font-size: 16px;
  text-shadow: 0 0 16px rgba( 0, 0, 0, 1.0 );
}

body.layout-lower #visual .title .pagename {
  display: block;
  font-size: 20px;
  text-shadow: 0 0 16px rgba( 0, 0, 0, 1.0 );
}

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

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

  body.layout-lower #visual .title .category {
    font-size: 28px;
  }

  body.layout-lower #visual .title .pagename {
    font-size: 36px;
  }

}

/* ----------------------------------------------------------------------------------------------------
   * 各カテゴリー TOPページ
/* ------------------------------------------------------------------------------------------------- */

body.layout-category #visual .title .pagename {
  text-shadow: none;
}

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

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

  body.layout-category #visual div.body {
    padding-bottom: 20.37037037037037%;
  }

}

/* ****************************************************************************************************
   * パンくず
**************************************************************************************************** */

#breadcrumb ol,
#breadcrumb ol li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#breadcrumb ol {
  margin-bottom: 20px;
  letter-spacing: -0.4em;
}

#breadcrumb ol li {
  line-height: 1.2;
  letter-spacing: normal;
  font-size: 12px;
  vertical-align: top;
  display: inline-block;
}

#breadcrumb ol li:after {
  content: '>';
  margin: 0 0.5em 0 0.125em;
}

#breadcrumb ol li:last-child:after {
  content: none;
}

#breadcrumb ol li a {
  color: inherit;
  text-decoration: none;
}

#breadcrumb ol li a:hover {
  text-decoration: underline;
}

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

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

  #breadcrumb ol {
    margin-bottom: 50px;
  }

  #breadcrumb ol li {
    font-size: 12px;
  }
  
  /* 各カテゴリー TOPページ */
  
  body.layout-category #breadcrumb ol {
    margin-bottom: 20px;
  }

}

/* ****************************************************************************************************
   * カテゴリー ナビ（各カテゴリー TOPページ）
**************************************************************************************************** */

#category-nav {
  margin-top: -5px;
}

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

#category-nav ul.list {
  max-width: 500px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.4em;
  text-align: center;
  position: relative;
  z-index: 20;
}

#category-nav ul.list li {
  width: 33.333%;
  padding: 5px;
  max-width: 154px;
  letter-spacing: normal;
  vertical-align: top;
  display: inline-block;
}

/* ****************************************************************************************************
   * 関連ページナビ（各カテゴリー TOPページ）
**************************************************************************************************** */

#relation-nav {
  margin-top: 30px;
  padding: 20px 0;
  background-color: #f0f0f0;
  position: relative;
  z-index: 1;
}

#relation-nav::before {
  content: '';
  width: 100%;
  height: 6px;
  display: block;
  background: url(../../_images/_common/relation-nav-top-2.png) center top no-repeat;
  background-size: 100% 6px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#relation-nav::after {
  content: '';
  width: 100%;
  height: 6px;
  display: block;
  background: url(../../_images/_common/relation-nav-bottom-2.png) center top no-repeat;
  background-size: 100% 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

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

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

  #relation-nav {
    margin-top: 50px;
    padding: 40px 0;
  }

  #relation-nav::before {
    height: 17px;
    background: url(../../_images/_common/relation-nav-top-1.png) center top no-repeat;
    background-size: 100% 17px;
  }

  #relation-nav::after {
    height: 17px;
    background: url(../../_images/_common/relation-nav-bottom-1.png) center top no-repeat;
    background-size: 100% 17px;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 一覧
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

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

#relation-nav ul.list {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  letter-spacing: -0.4em;
  overflow: hidden;
}

#relation-nav ul.list li {
  max-width: 490px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  letter-spacing: normal;
}

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

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

  #relation-nav ul.list {
    text-align: center;
  }

  #relation-nav ul.list li {
    width: 50%;
    max-width: 100%;
    padding: 0;
    text-align: center;
    vertical-align: top;
    display: inline-block;
  }

  #relation-nav ul.list li img {
    width: 490px;
  }

}

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

body.layout-lower #main {
  padding-top: 10px;
  padding-bottom: 30px;
  background-color: #fff;
  position: relative;
}

body.layout-lower #main::before {
  content: '';
  width: 100%;
  height: 6px;
  display: block;
  background: url(../../_images/_common/main-top-2.png) center top no-repeat;
  background-size: 100% 6px;
  position: absolute;
  top: -6px;
  left: 0;
  z-index: 2;
}

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

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

  body.layout-lower #main {
    padding-top: 5px;
    padding-bottom: 50px;
  }

  body.layout-lower #main::before {
    height: 17px;
    background: url(../../_images/_common/main-top-1.png) center top no-repeat;
    background-size: 100% 17px;
    top: -17px;
  }

  body.layout-lower #main div.body {
    letter-spacing: -0.4em;
  }

  body.layout-lower #main div.body > * {
    letter-spacing: normal;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン コンテンツ
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#main-contents {
  margin-bottom: 30px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

p + #main-contents * { margin-top:1.8em; }

#main-contents * + p { margin-top:1.8em; }

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

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

  #main-contents {
    width: 100%;
    margin-right: -23%;
    margin-bottom: 0;
    padding-right: 30%;
    vertical-align: top;
    display: inline-block;
  }

}

/* ----------------------------------------------------------------------------------------------------
   * 1 カラム
/* ------------------------------------------------------------------------------------------------- */

body.layout-onecolumn #main-contents {
  margin-bottom: 0;
}

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

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

  body.layout-onecolumn #main-contents {
    margin-right: auto;
    padding-right: 0;
  }

}

/* ----------------------------------------------------------------------------------------------------
   * 各カテゴリー TOPページ
/* ------------------------------------------------------------------------------------------------- */

body.layout-category #main-contents div.main-contents-body {
  padding-top: 30px;
}

body.layout-category #main::before {
  content: none;
}

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

#main-contents .category-header {
  padding: 40px 0;
  color: #fff;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#main-contents .category-header ~ .category-header {
  margin-top: 40px;
}

#main-contents .category-header a {
  color: inherit;
  text-decoration: none;
}

#main-contents .category-header::before {
  content: '';
  width: 100%;
  height: 6px;
  display: block;
  background: url(../../_images/growing_regions/category-header-top-2.png) center top no-repeat;
  background-size: 100% 6px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#main-contents .category-header::after {
  content: '';
  width: 100%;
  height: 6px;
  display: block;
  background: url(../../_images/growing_regions/category-header-bottom-2.png) center top no-repeat;
  background-size: 100% 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/* * ブレイクポイント（スマホ表示時） ･････････････････ */

@media screen and (max-width:736px) {

  #main-contents .category-header {
    background-position: center top !important;
  }

}

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

@media screen and (min-width:737px) {
  
  #main-contents .category-header {
    min-height: 260px;
    padding: 80px 0;
    background-attachment: fixed;
  }
  
  #main-contents .category-header::before {
    height: 17px;
    background: url(../../_images/growing_regions/category-header-top-1.png) center top no-repeat;
    background-size: 100% 17px;
  }
  
  #main-contents .category-header::after {
    height: 17px;
    background: url(../../_images/growing_regions/category-header-bottom-1.png) center top no-repeat;
    background-size: 100% 17px;
  }
  
}

/* タイトル :::::::::::::::::::::::::::::::::::::::::::::::::: */

#main-contents .category-header .title {
  margin-bottom: 1em;
  line-height: 1.3;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 16px rgba( 0, 0, 0, 1.0 );
}

#main-contents .category-header .title .jp {
  font-size: 14px;
}

#main-contents .category-header .title + * {
  margin-top: 0;
}

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

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

  #main-contents .category-header .title {
    font-size: 27px;
  }

  #main-contents .category-header .title .jp {
    font-size: 18px;
  }

}

/* メッセージ :::::::::::::::::::::::::::::::::::::::::::::::::: */

#main-contents .category-header .message {
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 4px rgba( 0, 0, 0, 1.0 );
}

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

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

  #main-contents .category-header .message {
    font-size: 18px;
  }

}

/* * セクション ナビ
/* ･････････････････････････････････････････････････････････････････････････････････････････････････ */

#main-contents .category-header .section-nav ul.list,
#main-contents .category-header .section-nav ul.list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#main-contents .category-header .section-nav ul.list {
  max-width: 494px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.4em;
  text-align: center;
}

#main-contents .category-header .section-nav ul.list li {
  width: 50%;
  max-width: 247px;
  letter-spacing: normal;
  text-align: left;
  vertical-align: top;
  display: inline-block;
}

#main-contents .category-header .section-nav ul.list li.middle {
  width: 100%;
  max-width: 494px;
}

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

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

  #main-contents .category-header .section-nav ul.list {
    max-width: 740px;
  }

  #main-contents .category-header .section-nav ul.list li {
    width: 33.333%;
  }

  #main-contents .category-header .section-nav ul.list li.middle {
    width: 66.666%;
  }

}

/* ----------------------------------------------------------------------------------------------------
   * SNS ボタン
/* ------------------------------------------------------------------------------------------------- */

/* * 一覧
/* ･････････････････････････････････････････････････････････････････････････････････････････････････ */

#main-contents div.sns ul.list,
#main-contents div.sns ul.list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#main-contents div.sns ul.list {
  padding: 10px 0;
  letter-spacing: -0.4em;
  text-align: center;
  background-color: #f5f5ed;
}

#main-contents div.sns ul.list li {
  width: calc( 100% / 4 );
  letter-spacing: normal;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}

#main-contents div.sns ul.list li img {
  width: 30px;
}

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

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

  #main-contents div.sns ul.list li {
    width: calc( 100% / 3 );
  }

  #main-contents div.sns ul.list li.line {
    display: none;
  }

  #main-contents div.sns ul.list li img {
    width: 30px;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン アサイド
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

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

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

  #main-aside {
    width: 23%;
    vertical-align: top;
    display: inline-block;
    position: relative;
    z-index: 1;
  }

}

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

/* * タイトル
/* ･････････････････････････････････････････････････････････････････････････････････････････････････ */

#main-nav .nav-title {
  margin-bottom: 5px;
  color: #23a1a1;
  font-size: 18px;
  font-weight: bold;
}

#main-nav .nav-title a {
  min-height: 22px;
  padding-left: 30px;
  color: inherit;
  text-decoration: none;
  display: inline-block;
  background-image: url(../../_images/_common/icon-category-2.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 22px;
}

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

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

  #main-nav .nav-title {
    margin-bottom: 10px;
    font-size: 20px;
  }

  #main-nav .nav-title a {
    min-height: 24px;
    padding-left: 35px;
    background-size: auto 24px;
  }

}

/* * リスト
/* ･････････････････････････････････････････････････････････････････････････････････････････････････ */

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

#main-nav ul.list ul {
  margin: 0;
  padding: 0;
}

#main-nav ul.list {
  max-width: none;
  width: calc( 100% + 20px );
  margin-left: -10px;
  margin-right: -10px;
}

#main-nav ul.list li {
  border-top: 1px dotted #999;
  background-color: #f5f5ed;
}

#main-nav ul.list li a {
  padding: 0.5em 2em;
  color: inherit;
  text-decoration: none;
  display: block;
  background: url(../../_images/_common/icon-arrow-1-right.png) 98% center no-repeat;
  background-size: 10px auto;
}

#main-nav ul.list li > a:hover,
#main-nav ul.list li.touch > a,
#main-nav ul.list li.current-target > a {
  background-color: #fff;
}

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

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

  #main-nav ul.list {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  #main-nav ul.list li {
    font-size: 14px;
    background-color: #fff;
  }

  #main-nav ul.list li a {
    padding: 0.75em 2em;
    padding-left: 1em;
    background-size: 12px auto;
  }

  #main-nav ul.list li > a:hover,
  #main-nav ul.list li.touch > a,
  #main-nav ul.list li.current-target > a {
    background-color: #f5f5ed;
  }

}

/* 1 階層目 :::::::::::::::::::::::::::::::::::::::::::::::::: */

#main-nav ul.list > li {
  border-top: 1px solid #4bb4b4;
  border-bottom: 1px solid #4bb4b4;
}

#main-nav ul.list > li ~ li {
  border-top: none;
}

#main-nav ul.list > li > a {
  padding-left: 1em;
  font-weight: bold;
  background-size: 12px auto;
}

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

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

  #main-nav ul.list > li {
    font-size: 14px;
  }

  #main-nav ul.list > li > a {
    padding-left: 0;
  }

}

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

#footer {
  background-color: #fff;
}

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

#pagetop {
  margin-bottom: 20px;
  color: #fff;
  line-height: 1;
  text-align: center;
}

#pagetop a {
  width: calc( 100% / 2 );
  max-width: 160px;
  padding: 5px 20px;
  color: inherit;
  text-decoration: none;
  display: inline-block;
  border-radius: 100px;
  background-color: #4bb4b4;
  background-image: url(../../_images/_common/icon-arrow-2-up.png);
  background-position: 12px center;
  background-repeat: no-repeat;
  background-size: 10px auto;
}

#pagetop .content.touch a,
#pagetop .content a:hover {
  background-color: #349e9e;
}

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

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

  #pagetop {
    margin-bottom: 40px;
    font-size: 16px;
  }

  #pagetop .content {
    width: 700px;
  }

  #footer .content a {
    width: calc( 100% / 3 );
    max-width: 220px;
    padding: 10px 40px;
    background-position: 16px center;
    background-size: 16px auto;
  }

}

/* * 1 カラム
/* ･････････････････････････････････････････････････････････････････････････････････････････････････ */

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

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

  body.layout-onecolumn #pagetop .content {
    width: 100%;
  }

}

/* ----------------------------------------------------------------------------------------------------
   * リンク
/* ------------------------------------------------------------------------------------------------- */

#footer div.link {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* * 一覧
/* ･････････････････････････････････････････････････････････････････････････････････････････････････ */

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

#footer div.link ul.list {
  width: calc( 100% + 10px );
  max-width: none;
  margin-left: -5px;
  margin-right: -5px;
  letter-spacing: -0.4em;
}

#footer div.link ul.list li {
  width: 50%;
  padding: 5px;
  letter-spacing: normal;
  vertical-align: top;
  display: inline-block;
}

#footer div.link ul.list li a {
  padding: 10px 5px;
  padding-left: 25px;
  line-height: 1;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid #6ebebe;
  display: block;
  background-image: url(../../_images/_common/icon-blank-1.png);
  background-position: 8px 9px;
  background-repeat: no-repeat;
  background-size: 12px auto;
}

#footer div.link ul.list li.touch a,
#footer div.link ul.list li:hover a {
  color: #fff;
  border-color: #349e9e;
  background-color: #349e9e;
  background-image: url(../../_images/_common/icon-blank-2.png);
}

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

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

  #footer div.link ul.list li {
    width: 25%;
    padding: 5px;
    letter-spacing: normal;
    vertical-align: top;
    display: inline-block;
  }

  #footer div.link ul.list li a {
    padding: 10px;
    padding-left: 32px;
    font-size: inherit;
    background-position: 12px 11px;
  }

}

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

#footer-nav {
  padding: 5px 0;
  color: #fff;
  background-color: #4bb4b4;
}

#footer-nav a {
  color: inherit;
}

/* * リスト
/* ･････････････････････････････････････････････････････････････････････････････････････････････････ */

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

#footer-nav ul.list {
  width: calc( 100% + 10px );
  max-width: none;
  margin-left: -5px;
  margin-right: -5px;
  letter-spacing: -0.4em;
}

#footer-nav ul.list li {
  width: 50%;
  letter-spacing: normal;
  vertical-align: top;
  display: inline-block;
}

#footer-nav ul.list a {
  padding: 10px 5px;
  padding-left: 25px;
  line-height: 1;
  font-size: 12px;
  text-decoration: none;
  display: block;
  background-image: url(../../_images/_common/icon-arrow-2-right.png);
  background-position: 8px 9px;
  background-repeat: no-repeat;
  background-size: 12px auto;
}

#footer-nav ul.list a[target='_blank'] {
  background-image: url(../../_images/_common/icon-blank-2.png);
}

#footer-nav ul.list li.touch a,
#footer-nav ul.list li:hover a {
  background-color: #349e9e;
}

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

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

  #footer-nav ul.list {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    letter-spacing: -0.4em;
  }

  #footer-nav ul.list li {
    width: auto;
    margin-right: 1em;
  }

  #footer-nav ul.list a {
    padding: 10px;
    padding-left: 32px;
    font-size: inherit;
    background-position: 12px 11px;
  }

}

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

#footer div.copyright {
  padding: 10px 0;
  color: #999;
  line-height: 1.2;
  font-size: 10px;
}

#footer div.copyright .logo img {
  height: 19px;
}

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

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

  #footer div.copyright {
    font-size: 10px;
  }

  #footer div.copyright .logo {
    margin-right: 1em;
    vertical-align: middle;
    display: inline-block;
  }

  #footer div.copyright .content {
    margin-top: 0;
    vertical-align: middle;
    display: inline-block;
  }

  #footer div.copyright .logo img {
    height: 22px;
  }

}

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

#menu {
  padding-left: 47px;
  letter-spacing: -0.4em;
  color: #fff;border-top: 1px solid #fff;
  background-color: #4bb4b4;
  transition: height 0.5s ease-in-out 0.0s;
  position: fixed;
  height: 45px;
  left: 0;
  bottom: 0;
  z-index: 99;
}

#menu.active {
  height: 126px;
}

#menu > * {
  letter-spacing: normal;
}

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

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

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

  #menu {
    display: none;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ボタン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu div.menu-trigger {
  width: 47px;
  height: 46px;
  margin: auto;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 2;
}

#menu div.menu-trigger i.icon {
  width: 47px;
  height: 46px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  overflow: hidden;
}

#menu div.menu-trigger i.icon span {
  width: 24px;
  height: 0;
  margin: 0 auto;
  display: block;
  border-bottom: 2px solid #fff;
  transition:
    all 0.3s ease-out 0.3s,
    left 0.0s ease-out 0.3s;
  position: relative;
  left: 0;
}

#menu div.menu-trigger i.icon span ~ span {
  margin-top: 5px;
}

#menu.active div.menu-trigger i.icon span {
  width: 29px;
  left: 5px;
}

#menu.active div.menu-trigger i.icon span:nth-of-type(1) {
  top: -3px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
}

#menu div.menu-trigger i.icon span:nth-of-type(2) {
  transition: left 0.3s ease-out 0.3s;
}

#menu.active div.menu-trigger i.icon span:nth-of-type(2) {
  left: 200%;
}

#menu.active div.menu-trigger i.icon span:nth-of-type(3) {
  bottom: -3px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
}

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

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

  #menu div.menu-trigger {
    display: none;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * リスト
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

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

#menu ul.list {
  letter-spacing: -0.4em;
}

#menu ul.list li {
  width: calc( 100% / 3 - 1px );
  height: 46px;
  line-height: 1;
  text-align: center;
  letter-spacing: normal;
  border-left: 1px solid rgba( 255, 255, 255, 0.3 );
  border-bottom: 1px solid rgba( 255, 255, 255, 0.3 );
  vertical-align: top;
  display: inline-block;
}

#menu ul.list li.home {
  width: 100%;
  height: 35px;
}

#menu ul.list li a {
  height: 100%;
  display: block;
}

#menu ul.list li.touch a,
#menu ul.list li:hover a {
  background-color: #349e9e;
}

#menu ul.list li img {
  height: 100%;
}
