@charset "utf-8";
/* CSS Document */
/* reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
}
address, caption, cite, code, dfn, em, var {
  font-style: normal;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
caption, th {
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
q:before, q:after {
  content: '';
}
abbr, acronym {
  border: 0;
}
section, article {
  display: block;
}
/* reset for iOS */
input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}
/* base */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  font-feature-settings: "palt";
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-kerning: normal;
  -webkit-font-kerning: normal;
  font-size: 15px;
  /*font-family: "A1明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;*/
  font-family: 'Noto Serif JP', serif;
  /*font-family: メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0px;
  box-sizing: border-box;
  background-color: #000;
  color: #FFF;
  padding: 0em;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
img {
  vertical-align: bottom;
  height: auto;
  width: 100%;
}
::selection {
  background: #0f0f0f;
  color: #FFF;
}
::-moz-selection {
  background: #0f0f0f;
}
/* link */
a:link, a:visited, a:active {
  color: #FFFFFF;
  text-decoration: none;
}
a:hover {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.05s linear;
  -webkit-transition: color 0.05s linear;
  transition: border-color 0.05s linear;
  -webkit-transition: border-color 0.05s linear;
  transition: background-color 0.05s linear;
  -webkit-transition: background-color 0.05s linear;
}
a:link img {
  transition: 0.2s linear;
}
a:hover img {
  -webkit-filter: brightness(110%);
  -moz-filter: brightness(110%);
  -o-filter: brightness(110%);
  -ms-filter: brightness(110%);
  filter: brightness(110%);
}
.fa-arrow-right {
  padding-left: 10px;
}
.link_line {
  background: linear-gradient(transparent 80%, #ff6 80%);
}
.link_line a {
  color: #000000;
}
#lp_wrapper {
  width: 100%;
  margin: auto;
  max-width: 1800px;
}
.contents {
  width: 80%;
  margin: 2.5% auto;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .contents {
    width: 90%;
  }
}
/*=========================
	header
==========================*/
.header {
  padding: 20px;
  height: 70px;
}
.header h1 {
  width: 65%;
  display: inline-block;
  text-align: left;
}
.h_logo img {
  width: 200px;
  text-align: left;
}
.header p {
  width: 30%;
  display: inline-block;
  text-align: right;
}
.header p img {
  width: 45px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .header h1 {
    width: 20%;
  }
  .header p {
    width: 70%;
  }
  .header h1 img {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .header {
    padding: 10px;
    height: 50px;
  }
  .header h1 {
    width: 45%;
  }
  .header p {
    width: 50%;
  }
}
/*=========================
	main
==========================*/
.lp_main {
  width: 100%;
  position: relative;
}
.lp_main a {
  font-size: .9em;
  font-weight: bold;
  osition: absolute;
  bottom: 100px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -390%);
  text-decoration: none;
}
.lp_main a span {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}
@media screen and (max-width: 768px) {
  .lp_main a {
    font-size: 0.8em;
    transform: translate(0, -280%);
  }
  .lp_main a span {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 481px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .sp-none {
    display: none;
  }
  /*.lp_main {
    position: relative;
    width: 100vw;
    height: auto;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-image: url("../lp/images/main_sp.jpg");
  }
  .lp_main a {
    transform: translate(0, 72vh);
  }
  .lp_main a span {
    top: 3vh;
  }*/
}
/*=========================
	mie_description
==========================*/
.mie_contents {
  margin-top: 5%;
  margin-bottom: 15%;
}
.mie_description {
  display: flex;
}
.mie_description_left {
  width: 50%;
  margin-right: 5%;
}
.mie_description_left dl {
  margin-bottom: 13%;
  text-align: left;
}
.mie_description_left dl dt {
  font-size: 1.8em;
  padding-bottom: 10px;
}
.mie_description_left dl dd {
  font-size: 1em;
  line-height: 2.5;
}
.mie_description_right {
  width: 45%;
}
.mie_description_right img {
  width: 100%;
  margin-top: -7%;
}
@media screen and (max-width: 768px) {
  .tb-none {
    display: none;
  }
  .mie_description {
    display: block;
  }
  .mie_description_left {
    width: 100%;
    margin-right: 5%;
    background: url("../lp/images/mie_map.png") no-repeat center 70%;
    background-size: 70%;
  }
  .mie_description_left dl:first-child {
    margin-bottom: 45%;
  }
}
@media screen and (max-width: 480px) {
  .mie_contents {
    margin-top: 10%;
    margin-bottom: 20%;
  }
  .mie_description_left {
    background: url("../lp/images/mie_map.png") no-repeat center;
    background-size: contain;
  }
  .mie_description_left dl {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .mie_description_left dl:first-child {
    margin-bottom: 80%;
  }
  .mie_description_left dl dt {
    font-size: 1.5em;
  }
  .mie_description_left dl dd {
    font-size: .9em;
    height: 280px;
    overflow-y: scroll;
  }
  /* scroll bar */
  .mie_description_left dl dd::-webkit-scrollbar {
    width: 5px;
  }
  .mie_description_left dl dd::-webkit-scrollbar-track {
    background: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: inset 0 0 2px #777;
  }
  .mie_description_left dl dd::-webkit-scrollbar-thumb {
    background: #e70012;
    border-radius: 10px;
    box-shadow: none;
  }
}
/*=========================
	tea selection
==========================*/
.section_ttl {
  width: 30%;
}
.tea_selection_area {
  margin-top: -3%;
}
.tea_selection_area img {
  width: 85%;
}
.tea_selection_area ul {
  display: flex;
}
.tea_selection_area ul li {
  width: 24%;
  margin: 0 3%;
}
.tea_selection_area ul li dl dd {
  font-size: 1em;
  margin-top: 10%;
}
@media screen and (max-width: 768px) {
  .section_ttl {
    width: 48%;
    margin-top: 15%;
  }
  .tea_selection_area ul {
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: -10%;
  }
  .tea_selection_area ul li {
    width: 45%;
    padding: 5%;
    margin: 0 2.5%;
  }
  .tea_selection_area ul li dl dd {
    margin-bottom: 15%;
  }
}
@media screen and (max-width: 480px) {
  .tea_selection_area ul {
    margin-top: -12%;
  }
  .tea_selection_area ul li dl dd {
    font-size: .6em;
  }
  .section_ttl {
    width: 80%;
  }
}
/*=========================
	tea selection
==========================*/
.movie_area {
  display: flex;
}
.icon {
  width: 45px;
  margin: 0 auto;
}
.photo_line {
  width: 90%;
  max-width: 1680px;
  margin: 5% auto 23%;
}
.photo_line img {
  width: 150px;
  height: auto;
}
@media screen and (max-width: 768px) {
  iframe {
    width: 45%;
  }
  .photo_line img {
    width: 90px;
  }
}
@media screen and (max-width: 480px) {
  .movie_area {
    display: block;
  }
  iframe {
    width: 45%;
  }
  .icon {
    width: 40px;
  }
  .photo_line img {
    width: 90%;
  }
}
/*=========================
	more infomation
==========================*/
.info_area {
  display: flex;
  margin-bottom: 10%;
}
.more-info {
  padding-bottom: 12%;
}
.info_photo {
  width: 320px;
  margin-left: 5%;
}
.ex_area {
  width: 90%;
  margin-left: 5%;
  text-align: left;
}
.en_ex, .en_jp {
  margin-bottom: 5%;
}
.en_ex_ttl {
  font-size: 2em;
  margin-bottom: 2%;
}
.tea_category {
  border: 1px #FFF dotted;
  padding: 1% 0;
}
.tea_category ul {
  display: flex;
}
.tea_category ul li {
  margin: 0 3%;
}
.tea_category ul li:first-child {
  width: 30%;
}
.tea_category ul li:nth-child(2) {
  width: 40%;
}
.tea_category ul li:last-child {
  width: 25%;
}
.tea_category ul li dl {
  display: flex;
}
.tea_category ul li dl dt {
  width: 30px;
}
.tea_category ul li dl dd {
  margin-left: 20px;
  font-size: 0.85em;
}
@media screen and (max-width: 768px) {
  .info_photo {
    margin-left: 0;
    width: 30%;
  }
  .en_ex_ttl {
    font-size: 1.5em;
  }
  .en_ex_txt {
    font-size: .9em;
  }
  .tea_category ul li dl dt {
    width: 30px;
  }
  .tea_category ul li dl dd {
    margin-left: 5px;
    font-size: 0.5em;
  }
}
@media screen and (max-width: 480px) {
  .tea_category ul {
    display: block;
  }
  .tea_category ul li:first-child, .tea_category ul li:nth-child(2), .tea_category ul li:last-child {
    width: 90%;
    margin: 2% 5% 3%;
  }
  .tea_category ul li dl dd {
    margin-left: 20px;
  }
  .tea_category ul li dl dt {
    width: 20px;
  }
  .info_area {
    display: block;
    margin-bottom: 20%;
  }
  .info_photo {
    width: 60%;
    margin: 0 auto 8%;
  }
}
/*=========================
	distribution
==========================*/
.location_area {
  width: 100%;
  color: #000;
  background-color: #FFF;
  padding: 5% 0 3%;
  margin-bottom: 5%;
  overflow: auto;
  background-image: url("../lp/images/location_bk.jpg");
}
.location_area .contents {
  text-align: left;
  margin-top: 0;
}
.hotel_ttl {
  font-size: 1.5em;
  padding-bottom: 20px;
}
.hotel_url a {
  color: #000 !important;
  padding-left: 15px;
  font-size: .6em
}
.rural {
  border-bottom: 1px solid #000;
  display: inline-block;
  margin-bottom: 10px;
}
.hotel_left {
  width: 45%;
  float: left;
  margin-left: 10%;
  margin-bottom: 5%;
}
.hotel_left ul {
  margin-bottom: 5%;
}
.hotel_right {
  width: 45%;
  float: right;
}
@media screen and (max-width: 768px) {
  .location_area .section_ttl {
    margin-top: 8%;
  }
  .hotel_left {
    margin-left: 3%;
  }
}
@media screen and (max-width: 480px) {
  .location_area .contents {
    margin-top: 8%;
  }
  .location {
    padding-bottom: 15%;
  }
  .hotel_ttl {
    font-size: 1.1em;
  }
  .hotel_left, .hotel_right {
    width: 100%;
    float: none;
  }
  .hotel_left {
    margin-left: 0;
  }
  .hotel_right {
    margin-top: 13%;
  }
  .hotel_left ul {
    font-size: .8em;
  }
  .hotel_url a {
    font-size: .5em;
    padding-left: 8px;
  }
}
/*=========================
	AboutUs
==========================*/
.aboutus_area {
  display: flex;
  margin-bottom: 10%
}
.aboutus_area li:first-child {
  width: 20%;
  max-width: 250px;
  margin-left: 10%;
}
.aboutus_area li:first-child a {
  text-decoration: underline;
}
.aboutus_area li:last-child {
  width: 50%;
  text-align: left;
  margin-left: 10%;
}
.aboutus_area li dl {
  font-size: 1em;
  line-height: 2.5;
}
.aboutus_area li dl dt {
  margin-bottom: 5%;
}
@media screen and (max-width: 768px) {
  .aboutus_area li:first-child {
    width: 35%;
    margin-left: 5%;
  }
  .aboutus_area li:last-child {
    width: 60%;
    margin-left: 5%;
  }
}
@media screen and (max-width: 480px) {
  .aboutus_area {
    display: block;
    margin-bottom: 20%;
  }
  .aboutus_area li:first-child {
    width: 80%;
    margin: 0 10%;
  }
  .aboutus_area li:first-child {
    max-width: 100%;
  }
  .aboutus_area li:last-child {
    width: 100%;
    margin: 10% 0 5%;
  }
  .aboutus_area li dl dt:first-child {
    margin-bottom: 13%;
  }
  .aboutus_area li dl dt {
    font-size: .9em;
  }
  #page_top {
    right: 5px !important;
  }
}
/*=========================
	copy
==========================*/
.copy_area {
  width: 100%;
  background-color: #333;
  padding: 2%;
  font-size: .8em;
  line-height: 2;
}
#page_top {
  right: 30px;
}
@media screen and (max-width: 480px) {
  .copy_area {
    padding: 5% 1%;
    font-size: .5em;
  }
}
#page_top a {
  font-size: 3em;
}