@charset "UTF-8";
@-webkit-keyframes Shake {
  0% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
            transform: translate(0px, 0px) rotateZ(0deg); }
  25% {
    -webkit-transform: translate(0px, -5px) rotateZ(5deg);
            transform: translate(0px, -5px) rotateZ(5deg); }
  50% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
            transform: translate(0px, 0px) rotateZ(0deg); }
  75% {
    -webkit-transform: translate(0px, -5px) rotateZ(-5deg);
            transform: translate(0px, -5px) rotateZ(-5deg); } }
@keyframes Shake {
  0% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
            transform: translate(0px, 0px) rotateZ(0deg); }
  25% {
    -webkit-transform: translate(0px, -5px) rotateZ(5deg);
            transform: translate(0px, -5px) rotateZ(5deg); }
  50% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
            transform: translate(0px, 0px) rotateZ(0deg); }
  75% {
    -webkit-transform: translate(0px, -5px) rotateZ(-5deg);
            transform: translate(0px, -5px) rotateZ(-5deg); } }

@keyframes Shake {
  0% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
            transform: translate(0px, 0px) rotateZ(0deg); }
  25% {
    -webkit-transform: translate(0px, -5px) rotateZ(5deg);
            transform: translate(0px, -5px) rotateZ(5deg); }
  50% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
            transform: translate(0px, 0px) rotateZ(0deg); }
  75% {
    -webkit-transform: translate(0px, -5px) rotateZ(-5deg);
            transform: translate(0px, -5px) rotateZ(-5deg); } }

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-open {
  overflow: hidden !important; }

.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  overflow: hidden;
  width: 26.25rem;
  height: 100%;
  color: #222;
  background-color: #fff; }

.drawer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3.75rem;
  display: block;
  padding-right: .75rem;
  padding-left: .75rem;
  text-decoration: none;
  color: #222; }

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none; }

.drawer-menu-item {
  font-size: 1rem;
  display: block;
  padding: .75rem;
  text-decoration: none;
  color: #222; }

.drawer-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent; }

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); }
  @media screen and (max-width: 640px) {
    .drawer-overlay {
      background-color: rgba(0, 0, 0, 0.6); } }

.drawer-open .drawer-overlay {
  display: block; }

/*!------------------------------------*\
    Top
\*!------------------------------------*/
.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1); }

.drawer--top.drawer-open .drawer-nav {
  top: 0; }

.drawer--top .drawer-hamburger,
.drawer--top.drawer-open .drawer-hamburger {
  right: 0; }

/*!------------------------------------*\
    Left
\*!------------------------------------*/
.drawer--left .drawer-nav {
  left: -16.25rem;
  -webkit-transition: left 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.3s cubic-bezier(0.19, 1, 0.22, 1); }

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0; }

.drawer--left.drawer-open .drawer-hamburger {
  left: 16.25rem; }

/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -26.25rem;
  -webkit-transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1); }

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0; }

.drawer--right.drawer-open .drawer-hamburger {
  right: 26.25rem; }

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 0;
  display: block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 10rem;
  padding: 0;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: .75rem;
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: transparent; }
  @media screen and (max-width: 640px) {
    .drawer-hamburger {
      width: 7rem;
      -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
      transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); } }

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent; }

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 30px; }

.drawerSubHeader .drawer-hamburger {
  padding-top: 20px; }
  @media screen and (max-width: 640px) {
    .drawerSubHeader .drawer-hamburger {
      padding-top: 5px;
      padding-right: 15px; } }

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  -webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #fff; }
  @media screen and (max-width: 640px) {
    .drawer-hamburger-icon,
    .drawer-hamburger-icon:before,
    .drawer-hamburger-icon:after {
      -webkit-transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
      transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1); } }

.drawerSubHeader .drawer-hamburger-icon,
.drawerSubHeader .drawer-hamburger-icon:before,
.drawerSubHeader .drawer-hamburger-icon:after {
  background-color: #ca4024; }

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -15px;
  left: 0;
  content: ' '; }

.drawer-hamburger-icon:after {
  top: 15px; }

.drawer-open .drawer-hamburger-icon {
  background-color: transparent; }

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0; }

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg); }

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0; }

/*!------------------------------------*\
    Sidebar
\*!------------------------------------*/
.drawer--sidebar {
  background-color: #fff; }

.drawer--sidebar .drawer-contents {
  background-color: #fff; }

@media (min-width: 64em) {
  .drawer--sidebar .drawer-hamburger {
    display: none;
    visibility: hidden; }
  .drawer--sidebar .drawer-nav {
    display: block;
    -webkit-transform: none;
    -ms-transform: none;
        transform: none;
    position: fixed;
    width: 12.5rem;
    height: 100%; }
  /*! Left */
  .drawer--sidebar.drawer--left .drawer-nav {
    left: 0;
    border-right: 1px solid #ddd; }
  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 12.5rem; }
  /*! Right */
  .drawer--sidebar.drawer--right .drawer-nav {
    right: 0;
    border-left: 1px solid #ddd; }
  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 12.5rem; }
  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 48rem; } }

@media (min-width: 75em) {
  .drawer--sidebar .drawer-nav {
    width: 16.25rem; }
  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 16.25rem; }
  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 16.25rem; }
  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 60rem; } }

/*!------------------------------------*\
    Navbar
\*!------------------------------------*/
.drawer--navbarTopGutter {
  padding-top: 3.75rem; }

.drawer-navbar .drawer-navbar-header {
  border-bottom: 1px solid #ddd;
  background-color: #fff; }

.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%; }

/*! .drawer-navbar modifier */
.drawer-navbar--fixed {
  position: fixed; }

.drawer-navbar-header {
  position: relative;
  z-index: 102;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 3.75rem;
  padding: 0 .75rem;
  text-align: center; }

.drawer-navbar .drawer-brand {
  line-height: 3.75rem;
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none; }

.drawer-navbar .drawer-brand:hover {
  background-color: transparent; }

.drawer-navbar .drawer-nav {
  padding-top: 3.75rem; }

.drawer-navbar .drawer-menu {
  padding-bottom: 7.5rem; }

@media (min-width: 64em) {
  .drawer-navbar {
    height: 3.75rem;
    border-bottom: 1px solid #ddd;
    background-color: #fff; }
  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0; }
  .drawer-navbar .drawer-menu--right {
    float: right; }
  .drawer-navbar .drawer-menu li {
    float: left; }
  .drawer-navbar .drawer-menu-item {
    line-height: 3.75rem;
    padding-top: 0;
    padding-bottom: 0; }
  .drawer-navbar .drawer-hamburger {
    display: none; }
  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
    padding-top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .drawer-navbar .drawer-menu {
    padding: 0; }
  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 16.25rem;
    border: 1px solid #ddd; }
  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: .75rem; } }

/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/
.drawer-dropdown-menu {
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff; }

.drawer-dropdown-menu > li {
  width: 100%;
  list-style: none; }

.drawer-dropdown-menu-item {
  line-height: 3.75rem;
  display: block;
  padding: 0;
  padding-right: .75rem;
  padding-left: 1.5rem;
  text-decoration: none;
  color: #222; }

.drawer-dropdown-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent; }

/*! open */
.drawer-dropdown.open > .drawer-dropdown-menu {
  display: block; }

/*! drawer-caret */
.drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, opacity .2s ease;
  transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

/*! open */
.drawer-dropdown.open .drawer-caret {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
      transform: rotate(180deg); }

/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-container {
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 64em) {
  .drawer-container {
    max-width: 60rem; } }

@media (min-width: 75em) {
  .drawer-container {
    max-width: 70rem; } }

/*====================
 *   Base
 *====================*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0;
  font-family: "Shuei MaruGo L", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 62.5%;
  background: #fff;
  color: #000; }

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

div, h1, h2, h3, h4, h5, p, a, hr, dl, dt, dd, img, video, article, ul, li, section {
  margin: 0;
  padding: 0; }

h1, h2, h3, h4 {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.35rem;
  line-height: 2.0;
  font-family: "Shuei MaruGo L", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic"; }
  @media screen and (max-width: 640px) {
    h1, h2, h3, h4 {
      letter-spacing: 0.03em; } }

h2 {
  letter-spacing: 0.20rem; }

p {
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
  line-height: 2.0;
  font-weight: normal; }

.noHide {
  display: block; }

.pcHide {
  display: none; }
  @media screen and (max-width: 768px) {
    .pcHide {
      display: block; } }

.tbpcHide {
  display: none; }
  @media screen and (max-width: 640px) {
    .tbpcHide {
      display: block; } }

.sptbHide {
  display: block; }
  @media screen and (max-width: 768px) {
    .sptbHide {
      display: none; } }

.spHide {
  display: block; }
  @media screen and (max-width: 640px) {
    .spHide {
      display: none; } }

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  a:hover {
    opacity: 0.5; }

img {
  width: 100%;
  height: auto;
  vertical-align: bottom; }

.en {
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 0.15rem; }

p.en {
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 0.05rem; }

section {
  padding: 160px 0; }
  @media screen and (max-width: 768px) {
    section {
      padding: 150px 0; } }
  @media screen and (max-width: 640px) {
    section {
      padding: 50px 0; } }

.sectionTitle {
  padding: 0 0 0 0;
  font-size: 2.8rem;
  line-height: 1.0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-weight: normal; }
  @media screen and (max-width: 768px) {
    .sectionTitle {
      font-size: 2.2rem; } }
  @media screen and (max-width: 640px) {
    .sectionTitle {
      font-size: 1.8rem;
      line-height: 1.0; } }

.sectionTitleSmall {
  font-size: 1.8rem;
  line-height: 1.8;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: sideways;
          text-orientation: sideways;
  border-top: 1px solid #ad2a25;
  border-bottom: 1px solid #ad2a25;
  padding: 10px 0 10px 0;
  margin: 20px 0 0 0;
  width: 30px; }
  @media screen and (max-width: 640px) {
    .sectionTitleSmall {
      font-size: 1.4rem;
      line-height: 1.0;
      width: 18px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; } }

.Heading {
  font-size: 2.8rem;
  line-height: 1.5; }
  @media screen and (max-width: 768px) {
    .Heading {
      font-size: 2.4rem; } }
  @media screen and (max-width: 640px) {
    .Heading {
      font-size: 2.2rem; } }

.sentenceBox {
  padding: 10px 0 0 0; }

.sentence {
  padding: 30px 0 0 0;
  text-align: justify; }
  @media screen and (max-width: 768px) {
    .sentence {
      padding: 20px 0 0 0;
      font-size: 1.4rem; } }
  @media screen and (max-width: 640px) {
    .sentence {
      font-size: 1.2rem;
      width: 90%; } }

/*====================
 *   COMMON
 *====================*/
@-webkit-keyframes delay {
  100% {
    opacity: 1; } }
@keyframes delay {
  100% {
    opacity: 1; } }

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
      -ms-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 1s;
  transition: all 1s; }

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0); }

.allContainer {
  position: relative;
  width: 100%; }

.headerLogoBox {
  width: 7%;
  position: absolute;
  left: 2.5%;
  top: 25px;
  z-index: 100; }
  @media screen and (max-width: 768px) {
    .headerLogoBox {
      width: 12%; } }
  @media screen and (max-width: 640px) {
    .headerLogoBox {
      width: 30%;
      left: 50%;
      top: 43vh;
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
      /*要素の大きさの半分ずつを戻す*/
      -webkit-transform: translateY(-50%) translateX(-50%); } }

.contentWrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }

.titleWrapper {
  width: 18%;
  padding: 0 0 0 7.7%; }
  @media screen and (max-width: 768px) {
    .titleWrapper {
      width: 10%;
      padding: 0 0 0 1.5%; } }
  @media screen and (max-width: 640px) {
    .titleWrapper {
      width: 15%;
      padding: 0 0 0 1.5%; } }

.mainWrapper {
  width: 82%; }
  @media screen and (max-width: 768px) {
    .mainWrapper {
      width: 90%; } }
  @media screen and (max-width: 640px) {
    .mainWrapper {
      width: 85%; } }

.drawer-menu {
  padding: 30px 0  0 30px; }

.menuText {
  padding: 20px 0  0 0;
  font-size: 2.4rem;
  color: #333;
  list-style: none; }
  .menuText a {
    color: #333; }

.menuTextRed {
  padding: 40px 0  0 0; }
  .menuTextRed a {
    color: #ca4024; }

.subHeaderBox {
  position: fixed;
  width: 100%;
  height: 110px;
  background: #fff;
  z-index: 50; }
  @media screen and (max-width: 640px) {
    .subHeaderBox {
      height: 70px; } }
  .subHeaderBox .headerLogoBox {
    top: 20px; }
    @media screen and (max-width: 640px) {
      .subHeaderBox .headerLogoBox {
        width: 17%;
        left: 4%;
        top: 13px;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; } }

/*====================
 *   FOOTER
 *====================*/
.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
  margin: 0 auto;
  padding: 40px 0 40px 0;
  color: #333;
  background: #fff; }
  @media screen and (max-width: 640px) {
    .footer {
      display: block;
      width: 85%;
      margin: 0;
      padding: 20px 0 0 15%; } }

.footerLeft {
  width: 70%; }
  @media screen and (max-width: 640px) {
    .footerLeft {
      width: 100%; } }

.footerRight {
  width: 30%; }
  @media screen and (max-width: 640px) {
    .footerRight {
      width: 100%; } }

.footerMenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.footerMenuTextBox {
  width: 35%; }
  @media screen and (max-width: 640px) {
    .footerMenuTextBox {
      width: 50%; } }

.footerMenuText {
  padding: 20px 0 0 0;
  font-size: 1.6rem;
  list-style: none; }
  @media screen and (max-width: 768px) {
    .footerMenuText {
      padding: 20px 0 0 0;
      font-size: 1.4rem; } }
  @media screen and (max-width: 640px) {
    .footerMenuText {
      padding: 10px 0 0 0;
      font-size: 1.2rem; } }
  .footerMenuText a {
    color: #333;
    text-decoration: none; }

.footerMenuTextJp {
  padding: 50px 0 0 0;
  font-size: 1.6rem;
  list-style: none; }
  @media screen and (max-width: 768px) {
    .footerMenuTextJp {
      font-size: 1.4rem; } }
  @media screen and (max-width: 640px) {
    .footerMenuTextJp {
      padding: 20px 0 0 0;
      font-size: 1.2rem; } }
  .footerMenuTextJp a {
    color: #333;
    text-decoration: none; }

.footerLogo {
  width: 48%; }
  @media screen and (max-width: 768px) {
    .footerLogo {
      width: 65%; } }
  @media screen and (max-width: 640px) {
    .footerLogo {
      width: 45%;
      padding: 20px 0 0 0; } }

.footerName {
  padding: 40px 0 0 0;
  font-size: 1.3rem; }
  @media screen and (max-width: 768px) {
    .footerName {
      padding: 20px 0 0 0; } }
  @media screen and (max-width: 640px) {
    .footerName {
      font-size: 1.2rem;
      line-height: 1.5; } }

.footerCopyright {
  padding: 60px 0 0 0;
  font-size: 1.2rem; }
  @media screen and (max-width: 768px) {
    .footerCopyright {
      padding: 30px 0 0 0; } }

/*====================
 *   TOP PAGE
 *====================*/
/*====================
 *   FIRST VIEW
 *====================*/
.topFirstview {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0; }

.videoWrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0; }
  @media screen and (max-width: 640px) {
    .videoWrapper {
      display: none; } }

.videoInner {
  min-width: 100vw;
  min-height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 5; }

.topSlideBox {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative; }

.topSlideInner {
  display: none; }
  @media screen and (max-width: 640px) {
    .topSlideInner {
      display: block;
      z-index: 10;
      opacity: 0;
      width: 100%;
      height: 100%;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      position: absolute;
      left: 0;
      top: 0;
      -webkit-animation: anime 30s 0s infinite;
      animation: anime 30s 0s infinite; } }

.topSlideInner:nth-of-type(1) {
  background-image: url("../images/topSp01.jpg");
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

.topSlideInner:nth-of-type(2) {
  background-image: url("../images/topSp02.jpg");
  -webkit-animation-delay: 5s;
  animation-delay: 5s; }

.topSlideInner:nth-of-type(3) {
  background-image: url("../images/topSp03.jpg");
  -webkit-animation-delay: 10s;
  animation-delay: 10s; }

.topSlideInner:nth-of-type(4) {
  background-image: url("../images/topSp04.jpg");
  -webkit-animation-delay: 15s;
  animation-delay: 15s; }

.topSlideInner:nth-of-type(5) {
  background-image: url("../images/topSp05.jpg");
  -webkit-animation-delay: 20s;
  animation-delay: 20s; }

.topSlideInner:nth-of-type(6) {
  background-image: url("../images/topSp06.jpg");
  -webkit-animation-delay: 25s;
  animation-delay: 25s; }

@-webkit-keyframes anime {
  0% {
    opacity: 0; }
  8% {
    opacity: 1; }
  16% {
    opacity: 1; }
  32% {
    opacity: 0;
    z-index: 9; }
  100% {
    opacity: 0; } }

@keyframes anime {
  0% {
    opacity: 0; }
  8% {
    opacity: 1; }
  16% {
    opacity: 1; }
  32% {
    opacity: 0;
    z-index: 9; }
  100% {
    opacity: 0; } }

.topshopBtn {
  width: 7.0%;
  position: absolute;
  right: 2.9%;
  bottom: 30px;
  -webkit-animation: anim-scale  2.5s ease-out infinite;
          animation: anim-scale  2.5s ease-out infinite;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  z-index: 10000; }
  @media screen and (max-width: 768px) {
    .topshopBtn {
      width: 13.0%;
      right: 5.0%; } }
  @media screen and (max-width: 640px) {
    .topshopBtn {
      width: 20.0%;
      bottom: 120px; } }

.soundSwitch {
  font-size: 1.4rem;
  position: absolute;
  left: 2.9%;
  bottom: 30px;
  color: #fff;
  z-index: 10;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl; }
  @media screen and (max-width: 640px) {
    .soundSwitch {
      bottom: 120px; } }

.on, .off {
  padding: 8px 0 5px 0;
  font-size: 1.8rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .on:hover, .off:hover {
    opacity: 0.5; }

.off {
  border-top: 1px solid #fff; }

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes anim-scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  20% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25); }
  35% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  45% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  55% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  65% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  75% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  85% {
    -webkit-transform: scale(1.025);
            transform: scale(1.025); }
  90% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes anim-scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  20% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25); }
  35% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  45% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  55% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  65% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  75% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  85% {
    -webkit-transform: scale(1.025);
            transform: scale(1.025); }
  90% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

/*====================
 *   TOP CONCEPT
 *====================*/
.topConcept {
  width: 100%;
  background-color: #f8ede7;
  color: #ca4024; }
  .topConcept .contentWrapper {
    padding: 150px 0 0 0; }
    @media screen and (max-width: 640px) {
      .topConcept .contentWrapper {
        padding: 50px 0 0 0; } }
    .topConcept .contentWrapper .mainWrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%; }
      @media screen and (max-width: 640px) {
        .topConcept .contentWrapper .mainWrapper {
          display: block; } }

.topConceptCopy {
  width: 50%;
  margin: 0 -5% 0 0; }
  @media screen and (max-width: 768px) {
    .topConceptCopy {
      width: 75%; } }
  @media screen and (max-width: 640px) {
    .topConceptCopy {
      width: 85%; } }

.topConceptTextBox {
  width: 45%; }
  @media screen and (max-width: 768px) {
    .topConceptTextBox {
      width: 55%; } }
  @media screen and (max-width: 640px) {
    .topConceptTextBox {
      width: 95%; } }

.topConceptCapBox {
  width: 100%;
  margin: 70px 0 0 0;
  padding: 35px 0 0 0;
  border-top: 1px solid #ca4024; }
  @media screen and (max-width: 768px) {
    .topConceptCapBox {
      margin: 40px 0 0 0;
      padding: 15px 0 0 0; } }
  @media screen and (max-width: 640px) {
    .topConceptCapBox {
      margin: 30px 0 0 0;
      padding: 15px 0 0 0; } }

.topConceptCap {
  font-size: 1.4rem;
  text-align: justify; }
  @media screen and (max-width: 768px) {
    .topConceptCap {
      font-size: 1.2rem; } }
  @media screen and (max-width: 640px) {
    .topConceptCap {
      font-size: 1.0rem; } }

.topConceptTextBoxEn {
  padding: 160px 0 0 0; }
  @media screen and (max-width: 768px) {
    .topConceptTextBoxEn {
      padding: 100px 0 0 0; } }
  @media screen and (max-width: 640px) {
    .topConceptTextBoxEn {
      padding: 50px 0 0 0; } }

.topConceptImageBox {
  width: 55%; }
  @media screen and (max-width: 768px) {
    .topConceptImageBox {
      width: 45%; } }
  @media screen and (max-width: 640px) {
    .topConceptImageBox {
      width: 95%; } }

.topConceptImage01 {
  width: 90%;
  padding: 150px 0 0 17%; }
  @media screen and (max-width: 768px) {
    .topConceptImage01 {
      width: 95%;
      padding: 150px 0 0 5%; } }
  @media screen and (max-width: 640px) {
    .topConceptImage01 {
      width: 80%;
      padding: 50px 0 0 0; } }

.topConceptImage02 {
  width: 45%;
  padding: 120px 0 0 0;
  margin-left: auto; }
  @media screen and (max-width: 768px) {
    .topConceptImage02 {
      width: 60%;
      padding: 40px 0 0 0; } }
  @media screen and (max-width: 640px) {
    .topConceptImage02 {
      width: 50%;
      padding: 30px 0 0 0; } }

.topConceptImage03 {
  width: 76%;
  padding: 65px 0 0 17%; }
  @media screen and (max-width: 768px) {
    .topConceptImage03 {
      width: 85%; } }
  @media screen and (max-width: 640px) {
    .topConceptImage03 {
      width: 75%;
      padding: 30px 0 0 15%; } }

.topConceptBottomBox {
  position: relative; }

.topConceptImage04 {
  width: 86%;
  padding: 160px 0 0 16%; }
  @media screen and (max-width: 768px) {
    .topConceptImage04 {
      width: 80%;
      margin: 0 auto;
      padding: 60px 0 0 0%; } }
  @media screen and (max-width: 640px) {
    .topConceptImage04 {
      width: 95%;
      margin: 0; } }

.topConceptIll01 {
  width: 50%;
  position: absolute;
  top: 100px;
  right: 0; }
  @media screen and (max-width: 768px) {
    .topConceptIll01 {
      top: 20px; } }
  @media screen and (max-width: 640px) {
    .topConceptIll01 {
      width: 70%;
      top: 40px; } }

.topConceptmovieBtn {
  width: 260px;
  margin: 60px 0 0 0; }
  @media screen and (max-width: 768px) {
    .topConceptmovieBtn {
      margin: 60px 0 0 0; } }
  @media screen and (max-width: 640px) {
    .topConceptmovieBtn {
      margin: 30px 0 0 0; } }
  .topConceptmovieBtn a {
    display: block;
    position: relative;
    width: 100%;
    height: 55px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    text-indent: 30px;
    padding: 11px;
    font-size: 2.0rem;
    color: #ca4024;
    border: 2px solid #ca4024;
    background-color: #ca4024;
    color: #f8ede7;
    border-radius: 30px; }
    @media screen and (max-width: 640px) {
      .topConceptmovieBtn a {
        width: 80%;
        height: 50px;
        padding: 12px;
        line-height: 22px;
        font-size: 1.6rem;
        text-align: center; } }
    .topConceptmovieBtn a::before {
      position: absolute;
      left: 23px;
      content: "";
      display: inline-block;
      width: 30px;
      height: 30px;
      background: url(../images/topFullMovieBtn.png) no-repeat;
      background-size: contain; }
      @media screen and (max-width: 640px) {
        .topConceptmovieBtn a::before {
          width: 25px;
          height: 25px;
          top: 10px;
          left: 20px; } }

/*====================
 *   TOP BEER
 *====================*/
.topBeer {
  width: 100%;
  background-color: #ecf2ec;
  color: #577e59; }

.topBeerBox {
  position: relative; }

.topBeerIll01 {
  position: absolute;
  width: 16%;
  right: 0;
  top: 400px; }
  @media screen and (max-width: 640px) {
    .topBeerIll01 {
      width: 25%; } }

.topBeerImage {
  width: 68%; }
  @media screen and (max-width: 768px) {
    .topBeerImage {
      width: 75%; } }
  @media screen and (max-width: 640px) {
    .topBeerImage {
      width: 85%; } }

.topBeerHeading {
  padding: 30px 0 0 0;
  font-size: 2.8rem;
  line-height: 1.0; }
  @media screen and (max-width: 768px) {
    .topBeerHeading {
      font-size: 2.4rem; } }
  @media screen and (max-width: 640px) {
    .topBeerHeading {
      font-size: 2.2rem; } }

.topBeerHeadingEn {
  padding: 20px 0 0 0;
  font-size: 2.0rem;
  line-height: 1.0; }
  @media screen and (max-width: 768px) {
    .topBeerHeadingEn {
      padding: 15px 0 0 0;
      font-size: 1.8rem; } }
  @media screen and (max-width: 640px) {
    .topBeerHeadingEn {
      font-size: 1.6rem; } }

.topBeerText {
  width: 45%;
  padding: 30px 0 0 0;
  text-align: justify; }
  @media screen and (max-width: 768px) {
    .topBeerText {
      width: 60%;
      font-size: 1.4rem; } }
  @media screen and (max-width: 640px) {
    .topBeerText {
      width: 70%;
      font-size: 1.2rem; } }

.topBeerBtn {
  width: 260px;
  margin: 30px 0 0 0; }
  @media screen and (max-width: 768px) {
    .topBeerBtn {
      margin: 30px 0 0 0; } }
  .topBeerBtn a {
    display: block;
    position: relative;
    width: 100%;
    height: 55px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    padding: 11px;
    font-size: 2.0rem;
    color: #ecf2ec;
    border: 2px solid #577e59;
    background-color: #577e59;
    border-radius: 30px; }
    @media screen and (max-width: 640px) {
      .topBeerBtn a {
        width: 80%;
        height: 50px;
        padding: 12px;
        line-height: 22px;
        font-size: 1.6rem;
        text-align: center; } }

/*====================
 *   ABOUT ABOUT
 *====================*/
.aboutAbout {
  width: 100%;
  background-color: #f5f2e9;
  color: #754c24; }
  .aboutAbout .contentWrapper {
    padding: 30px 0 0 0; }
    @media screen and (max-width: 768px) {
      .aboutAbout .contentWrapper {
        padding: 60px 0 0 0; } }
    @media screen and (max-width: 640px) {
      .aboutAbout .contentWrapper {
        padding: 100px 0 0 0; } }
  .aboutAbout .titleWrapper {
    position: relative; }
    .aboutAbout .titleWrapper .aboutAboutIll02 {
      position: absolute;
      width: 50%;
      left: 0;
      margin: 1800px 0 0 0; }
      @media screen and (max-width: 768px) {
        .aboutAbout .titleWrapper .aboutAboutIll02 {
          width: 80%; } }

.aboutAboutBottomBox {
  width: 100%;
  position: relative; }

.aboutAboutImage01 {
  width: 90%;
  padding: 50px 0 0 40%; }
  @media screen and (max-width: 640px) {
    .aboutAboutImage01 {
      padding: 50px 0 0 0; } }

.aboutAboutIll01 {
  position: absolute;
  width: 12%;
  top: 0;
  right: 0; }

.aboutAboutTextBoxWrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 160px 0 0 0; }
  @media screen and (max-width: 768px) {
    .aboutAboutTextBoxWrapper {
      display: block;
      padding: 100px 0 0 0; } }

.aboutAboutTextBox02 {
  width: 70%; }
  @media screen and (max-width: 768px) {
    .aboutAboutTextBox02 {
      width: 100%; } }

.aboutAboutImage02 {
  width: 28%;
  margin: 200px 0 0 auto; }
  @media screen and (max-width: 768px) {
    .aboutAboutImage02 {
      width: 40%;
      margin: 50px 0 0 auto; } }
  @media screen and (max-width: 640px) {
    .aboutAboutImage02 {
      width: 60%;
      margin: 50px 0 0 auto; } }

.aboutAboutImage03 {
  width: 81%;
  margin: 120px 0 0 0; }
  @media screen and (max-width: 768px) {
    .aboutAboutImage03 {
      margin: 60px 0 0 0; } }
  @media screen and (max-width: 640px) {
    .aboutAboutImage03 {
      width: 95%; } }

.aboutAboutTextBox03 {
  width: 60%; }
  @media screen and (max-width: 768px) {
    .aboutAboutTextBox03 {
      width: 100%; } }

.aboutAboutImage04 {
  width: 38%;
  margin: 480px 0 0 auto; }
  @media screen and (max-width: 768px) {
    .aboutAboutImage04 {
      width: 80%;
      margin: 100px 0 0 auto; } }
  @media screen and (max-width: 640px) {
    .aboutAboutImage04 {
      width: 80%;
      margin: 50px 0 0 auto; } }

/*====================
 *   ABOUT ORGANIC
 *====================*/
.aboutOrganic {
  width: 100%;
  background-color: #f4f8f0;
  color: #70b154;
  position: relative;
  z-index: 0; }

.aboutOrganicImage01 {
  width: 33%;
  padding: 150px 0 0 0; }
  @media screen and (max-width: 768px) {
    .aboutOrganicImage01 {
      width: 50%;
      padding: 50px 0 0 0; } }

.aboutOrganicImage02 {
  width: 72%;
  padding: 150px 0 0 0;
  margin: 0 0 0 auto;
  z-index: 1; }
  @media screen and (max-width: 768px) {
    .aboutOrganicImage02 {
      width: 85%;
      padding: 50px 0 0 0; } }

.aboutOrganicIll01 {
  position: absolute;
  width: 45%;
  left: 0;
  bottom: 250px;
  z-index: -1; }
  @media screen and (max-width: 640px) {
    .aboutOrganicIll01 {
      bottom: 150px; } }

/*====================
 *   BREWING BREWING
 *====================*/
.brewing {
  width: 100%;
  background-color: #f6ece5;
  color: #ad2a25;
  position: relative;
  z-index: 0; }
  .brewing .contentWrapper {
    padding: 30px 0 0 0; }
    @media screen and (max-width: 768px) {
      .brewing .contentWrapper {
        padding: 60px 0 0 0; } }
    @media screen and (max-width: 640px) {
      .brewing .contentWrapper {
        padding: 100px 0 0 0; } }

.brewingIll02 {
  position: absolute;
  width: 10%;
  top: 2100px;
  left: 0;
  z-index: -1; }
  @media screen and (max-width: 768px) {
    .brewingIll02 {
      width: 15%;
      top: 1800px; } }
  @media screen and (max-width: 640px) {
    .brewingIll02 {
      top: 1600px; } }

.brewingTextBoxWrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 768px) {
    .brewingTextBoxWrapper {
      display: block; } }

.brewingTextBox {
  width: 53%; }
  @media screen and (max-width: 768px) {
    .brewingTextBox {
      width: 100%; } }

.brewingImageBox {
  position: relative;
  width: 47%;
  padding: 0 9% 0 0; }
  @media screen and (max-width: 768px) {
    .brewingImageBox {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      padding: 20px 0 0 0; } }

.brewingImage01 {
  width: 48%; }

.brewingImage02 {
  padding: 40px 0 0 0; }
  @media screen and (max-width: 768px) {
    .brewingImage02 {
      width: 52%;
      padding: 0 0 0 4%; } }

.brewingTextInnerBox:nth-of-type(2) {
  padding: 110px 0 0 0; }
  @media screen and (max-width: 768px) {
    .brewingTextInnerBox:nth-of-type(2) {
      padding: 50px 0 0 0; } }

.brewingIll01 {
  position: absolute;
  width: 30%;
  top: 0;
  right: 0;
  z-index: -1; }
  @media screen and (max-width: 768px) {
    .brewingIll01 {
      width: 15%; } }

.brewingTextBox02 {
  width: 100%;
  padding: 100px 0 0 0; }
  @media screen and (max-width: 768px) {
    .brewingTextBox02 {
      padding: 50px 0 0 0; } }

.brewingImageBox02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 160px 0 0 0; }
  @media screen and (max-width: 768px) {
    .brewingImageBox02 {
      padding: 60px 0 0 0; } }

.brewingImage03 {
  width: 37%;
  padding: 0 0 0 5%; }

.brewingImage04 {
  width: 63%;
  padding: 0 0 0 5%; }

.brewingImageBox03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0 0 0; }
  @media screen and (max-width: 768px) {
    .brewingImageBox03 {
      padding: 40px 0 0 0; } }

.brewingImage05 {
  width: 46%;
  padding: 0 0 0 0; }

.brewingImageInnerBox03 {
  width: 54%;
  padding: 0 0 0 8%; }

.brewingImage06 {
  width: 65%; }

.brewingImage07 {
  width: 90%;
  padding: 90px 0 0 0; }
  @media screen and (max-width: 768px) {
    .brewingImage07 {
      padding: 30px 0 0 0; } }

.brewingImageBox04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  padding: 90px 0 0 0; }
  @media screen and (max-width: 640px) {
    .brewingImageBox04 {
      padding: 30px 0 0 0; } }

.brewingImage08 {
  width: 48%; }

.brewingImage09 {
  width: 52%;
  padding: 0 0 0 4%; }

.brewingIll03 {
  position: absolute;
  width: 15%;
  top: -250px;
  right: 0;
  z-index: -1; }
  @media screen and (max-width: 768px) {
    .brewingIll03 {
      width: 10%;
      top: -50px; } }
  @media screen and (max-width: 640px) {
    .brewingIll03 {
      top: 50px; } }

/*====================
 *   BREWERY BREWERY
 *====================*/
.brewery {
  width: 100%;
  background-color: #fbf5e9;
  color: #dc8c4f;
  position: relative;
  z-index: 0; }
  .brewery .mainWrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    @media screen and (max-width: 640px) {
      .brewery .mainWrapper {
        display: block; } }
  .brewery .contentWrapper {
    padding: 30px 0 0 0; }
    @media screen and (max-width: 768px) {
      .brewery .contentWrapper {
        padding: 60px 0 0 0; } }
    @media screen and (max-width: 640px) {
      .brewery .contentWrapper {
        padding: 100px 0 0 0; } }

.breweryBox {
  width: 46%;
  padding: 0 0 0 2%; }
  @media screen and (max-width: 768px) {
    .breweryBox {
      width: 50%; } }
  @media screen and (max-width: 640px) {
    .breweryBox {
      width: 100%; } }

.breweryImage01Text {
  padding: 60px 0 0 0;
  font-size: 1.4rem; }
  @media screen and (max-width: 640px) {
    .breweryImage01Text {
      padding: 30px 0 0 0;
      font-size: 1.2rem; } }

.breweryImage01 {
  width: 54%;
  padding: 280px 4% 0 13%; }
  @media screen and (max-width: 768px) {
    .breweryImage01 {
      width: 50%;
      padding: 200px 4% 0 13%; } }
  @media screen and (max-width: 640px) {
    .breweryImage01 {
      width: 80%;
      padding: 70px 4% 0 13%; } }

/*====================
 *    BREWERY STOCKIST
 *====================*/
.stockist {
  width: 100%;
  background-color: #faf9ec;
  color: #c4b900;
  position: relative;
  z-index: 0; }
  @media screen and (max-width: 640px) {
    .stockist {
      padding-top: 120px; } }
  .stockist .mainWrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }

.stockistBox {
  width: 80%;
  padding: 0 0 0 2%; }
  @media screen and (max-width: 768px) {
    .stockistBox {
      width: 75%; } }
  @media screen and (max-width: 640px) {
    .stockistBox {
      width: 85%; } }

.stockistMap {
  padding: 50px 0 0 0; }
  @media screen and (max-width: 640px) {
    .stockistMap {
      padding: 20px 0 0 0; } }
  .stockistMap iframe {
    width: 100%;
    height: 600px; }
    @media screen and (max-width: 640px) {
      .stockistMap iframe {
        height: 400px; } }

.stockistIll01 {
  width: 20%;
  padding: 50px 0 0 10%; }
  @media screen and (max-width: 768px) {
    .stockistIll01 {
      width: 25%;
      padding: 50px 0 0 10%; } }
  @media screen and (max-width: 640px) {
    .stockistIll01 {
      width: 15%;
      padding: 50px 0 0 2%; } }

/*====================
 *   COMPANY COMPANY
 *====================*/
.company {
  width: 100%;
  background-color: #ecf0f4;
  color: #00719a;
  z-index: 0; }
  .company .contentWrapper {
    padding: 30px 0 0 0; }
    @media screen and (max-width: 768px) {
      .company .contentWrapper {
        padding: 60px 0 0 0; } }
    @media screen and (max-width: 640px) {
      .company .contentWrapper {
        padding: 100px 0 0 0; } }

.companyText {
  padding: 50px 0 0 0; }
  @media screen and (max-width: 640px) {
    .companyText {
      padding: 20px 0 0 0;
      font-size: 1.2rem; } }

/*====================
 *   COMPANY CONTACT
 *====================*/
.contact {
  width: 100%;
  background-color: #fbf4f3;
  color: #d37880; }
  @media screen and (max-width: 640px) {
    .contact {
      padding-top: 120px; } }
  .contact .mainWrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }

.contactBox {
  width: 80%; }

@media screen and (max-width: 640px) {
  .contactText {
    font-size: 1.2rem;
    text-align: justify; } }

.contactIll01 {
  width: 20%;
  padding: 0 0 0 5%; }

/*====================
 *   COMPANY FAQ
 *====================*/
.faq {
  width: 100%;
  background-color: #ede8ef;
  color: #543a74;
  position: relative;
  z-index: 0; }
  @media screen and (max-width: 640px) {
    .faq {
      padding: 120px 0 80px 0; } }

.faqIll01 {
  position: absolute;
  width: 10%;
  bottom: 0;
  left: 0;
  z-index: -1; }
  @media screen and (max-width: 768px) {
    .faqIll01 {
      width: 10%; } }
  @media screen and (max-width: 640px) {
    .faqIll01 {
      width: 13%; } }

.faqTextHeading {
  font-size: 2.0rem; }
  @media screen and (max-width: 640px) {
    .faqTextHeading {
      font-size: 1.6rem; } }
  .faqTextHeading span {
    font-size: 2.4rem; }
    @media screen and (max-width: 640px) {
      .faqTextHeading span {
        font-size: 1.8rem; } }

.faqText {
  padding: 30px 0 0 0;
  font-size: 1.6rem; }
  .faqText a {
    color: #543a74;
    border-bottom: 2px solid #543a74;
    padding: 0 0 3px 0; }
    @media screen and (max-width: 768px) {
      .faqText a {
        border-bottom: 1px solid #543a74; } }
  @media screen and (max-width: 640px) {
    .faqText {
      font-size: 1.2rem;
      text-align: justify;
      padding: 10px 5% 0 0; } }

.faqTextBox {
  padding: 60px 0 0 0; }
  @media screen and (max-width: 640px) {
    .faqTextBox {
      padding: 30px 0 0 0; } }

.faqTextBox:nth-of-type(1) {
  padding: 0 0 0 0; }

/*====================
 *   THANKS PAGE
 *====================*/
.thanks {
  width: 100%;
  background-color: #fbf4f3;
  color: #d37880;
  padding: 200px 0 300px 12%; }
  @media screen and (max-width: 640px) {
    .thanks {
      width: 90%;
      padding: 80px 0 50px 12%; } }

.thanksHeading {
  font-size: 2.4rem;
  line-height: 1.5; }
  @media screen and (max-width: 640px) {
    .thanksHeading {
      font-size: 2.0rem; } }

.thanksText {
  padding: 50px 0 100px 0;
  font-size: 1.4rem; }
  @media screen and (max-width: 640px) {
    .thanksText {
      padding: 50px 0 50px 0; } }

.thanksButton {
  display: inline-block;
  line-height: 1;
  padding: 0 30px 10px 30px;
  font-size: 2.0rem;
  color: #d37880;
  border-bottom: 3px solid #d37880; }
  .thanksButton a {
    color: #d37880; }
  @media screen and (max-width: 640px) {
    .thanksButton {
      font-size: 1.6rem; } }
