@charset "UTF-8";
/* ------ General Settings ------ */
html {
  *overflow-x: hidden;
}

.fLeft {
  float: left;
}

.fRight {
  float: right;
}

a:hover img {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha( opacity=50 )";
  line-height: 1px;
  transition: 0.3s;
}

.forPc {
  display: block;
}

.forMobile {
  display: none;
}

@media screen and (max-width: 639px) {
  .forPc {
    display: none;
  }
  .forMobile {
    display: block;
  }
}
/* ------ スマホで発信 ------ */
a[href^="tel:"] {
  pointer-events: none;
  color: #222;
}

@media screen and (max-width: 639px) {
  a[href^="tel:"] {
    pointer-events: auto;
    color: #0068b7;
  }
}
/* ------ webfont ------ */
/* 日本語フォント */
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 160%;
  color: #222;
  text-align: left;
  -webkit-text-size-adjust: none;
  margin-top: 60px;
}
@media screen and (max-width: 960px) {
  body {
    margin-top: 0;
  }
}

/* 指定英字フォント */
.webfontL {
  font-family: "Roboto", sans-serif !important;
  font-weight: 900 !important;
}

.webfontS {
  font-family: "Roboto", sans-serif !important;
  font-weight: 100 !important;
}

/* ------ ライン ------ */
/* leftLine */
.leftLine {
  line-height: 100%;
  display: flex;
  align-items: center;
}

.leftLine:after {
  border-top: 1px solid;
  content: "";
  flex-grow: 1;
  margin-left: 2%;
}

/* body */
/* pageWrapper */
#pageWrapper p {
  font-size: 110%;
  letter-spacing: 0.1em;
  line-height: 180%;
}

@media screen and (max-width: 960px) {
  #pageWrapper p {
    font-size: 100%;
  }
}
@media screen and (max-width: 800px) {
  #pageWrapper p {
    font-size: 90%;
  }
}
/* ------ PCヘッダー ------ */
/* headArea */
#headArea {
  position: fixed;
  z-index: 10;
  top: 0;
  left: auto;
  width: 100%;
  height: 60px;
  background-color: #fff;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 960px) {
  #headArea {
    display: none;
  }
}
#headBlock {
  max-width: 1300px;
  margin: 0 auto;
}

.headLogo {
  padding: 9px 3% 0 3%;
  float: left;
}

.headLogo img {
  width: 98px;
}

/* headMenu */
#headMenu {
  float: left;
  width: 63%;
}

@media screen and (max-width: 960px) {
  #headMenu {
    display: none;
  }
}
/* headMenuBox */
.headMenuBox {
  float: left;
  width: 19%;
  height: 60px;
  border-left: dotted 1px #ccc;
}

.headMenuBox:last-child {
  border-right: dotted 1px #ccc;
  border-left: dotted 1px #ccc;
}

/* headMenuBox linkBox */
.headMenuBox .linkBox {
  position: relative;
  z-index: 10;
  overflow: hidden;
  text-align: center;
  padding-bottom: 8%;
}

@media screen and (max-width: 960px) {
  .headMenuBox .linkBox {
    padding-bottom: 4%;
  }
}
.headMenuBox .linkBox a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 11;
}

.headMenuBox .zoomBox {
  display: block;
  transition-duration: 0.2s; /*変化に掛かる時間*/
}

.headMenuBox .zoomBox:hover {
  transform: scale(1.2); /*画像の拡大率*/
  transition-duration: 0.2s; /*変化に掛かる時間*/
}

.headMenuBox h3 {
  padding-top: 18px;
  font-size: 80%;
  line-height: 140%;
  margin: 0;
  font-weight: normal;
}

.headMenuBox p {
  font-size: 50% !important;
  line-height: 140% !important;
}

.headMenuBox p.subTxt {
  padding-bottom: 10px;
}

/* プルダウン */
.menu {
  position: relative;
  width: 100%;
}

.menu > .menuSingle {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.menuSingle .menuSecond {
  position: absolute;
  top: 56px;
  width: 100%;
  visibility: hidden;
  text-align: center;
  opacity: 0;
  z-index: 20;
  border: dotted 1px #ccc;
  background: rgba(255, 255, 255, 0.8);
}

.menuSingle:hover .menuSecond {
  visibility: visible;
  opacity: 1;
  transition: 0.2s;
}

.menuSecondItem {
  position: relative;
}
.menuSecondItem::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 90px;
  height: 1px;
  margin: auto;
  border-bottom: 1px dotted #ccc;
}
.menuSecondItem:last-of-type::before {
  width: 0;
  height: 0;
}

.menuSingle .menuSecond p a {
  color: #463318;
  display: block;
  padding: 15px 0;
}

/* headSnsBox */
#headSnsBox {
  float: right;
  padding-right: 3%;
}

@media screen and (max-width: 960px) {
  #headSnsBox {
    display: none;
  }
}
#headSnsBox li {
  float: left;
  width: 30px;
  padding: 15px 15px 0 0;
  list-style: none !important;
}

#headSnsBox li.twitter {
  padding: 18px 15px 0 0;
}

/* ------ 記事一覧 ------ */
/* newsArea */
#newsArea {
  max-width: 1200px;
  margin: 0 auto;
}

/* newsBox */
.newsBox {
  display: inline-block;
  vertical-align: top;
  margin: 2.5%;
  width: 27.3%;
}

@media screen and (max-width: 800px) {
  .newsBox {
    margin: 3.5%;
    width: 42%;
  }
}
@media screen and (max-width: 600px) {
  .newsBox {
    display: inherit;
    margin: 5% 0 0;
    width: 100%;
  }
}
/* newsBox linkBox */
.newsBox .linkBox {
  position: relative;
  z-index: 10;
}

.newsBox .linkBox a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 11;
}

.newsBox .zoomBox {
  display: block;
  transition-duration: 0.3s; /*変化に掛かる時間*/
}

.newsBox .zoomBox:hover {
  transform: scale(1.1); /*画像の拡大率*/
  transition-duration: 0.3s; /*変化に掛かる時間*/
}

.newsBox h3 {
  font-size: 100%;
  margin: 0;
}

@media screen and (max-width: 600px) {
  .newsBox h3 {
    margin: 2% 0;
  }
}
/* categoryName */
#pageWrapper .categoryName {
  font-size: 80%;
  line-height: 100%;
  background-color: #00a0ff;
  color: #fff;
  text-align: center;
  margin-bottom: 2%;
  padding: 2%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

@media screen and (max-width: 600px) {
  #pageWrapper .categoryName {
    font-size: 70%;
    font-weight: bold;
    padding: 1%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
}
#pageWrapper .categoryName span::after {
  content: "・";
}

#pageWrapper .categoryName span:last-child::after {
  display: none;
}

#pageWrapper .categoryName.news {
  background-color: #00a0ff;
}

#pageWrapper .categoryName.event_shop {
  background-color: #463318;
}

#pageWrapper .categoryName.media {
  background-color: #beca30;
}

#pageWrapper .categoryName.movie {
  background-color: #a93c31;
}

#pageWrapper .categoryName.blog {
  background-color: #e69c33;
}

#pageWrapper .categoryName.shop {
  background-color: #da311d;
}

#pageWrapper .catname.news {
  background-color: #00a0ff;
}

#pageWrapper .catname.event_shop {
  background-color: #463318;
}

#pageWrapper .catname.media {
  background-color: #beca30;
}

#pageWrapper .catname.movie {
  background-color: #a93c31;
}

#pageWrapper .catname.blog {
  background-color: #e69c33;
}

#pageWrapper .catname.shop {
  background-color: #da311d;
}

.newsLead {
  font-size: 80%;
}

/* newsPhoto */
.newsPhoto {
  overflow: hidden;
  height: 196px;
  margin-top: 13px;
  border-radius: 3px;
}

.newsPhoto img {
  object-fit: cover;
}

.newsTxt {
  margin-top: 10px;
}

@media screen and (max-width: 600px) {
  .newsPhoto {
    float: left;
    width: 30%;
    height: auto;
  }
}
/* newsTxt */
@media screen and (max-width: 600px) {
  #pageWrapper .newsTxt {
    float: right;
    width: 65%;
  }
}
#pageWrapper .newsTxt .newsDay {
  font-size: 60%;
  font-weight: bold;
}

#pageWrapper .newsTxt h3 {
  font-weight: bold;
  margin: 0;
  padding: 0;
}

/* ------ フッター ------ */
/* footArea */
#footArea {
  background: #00976A;
  border: solid 20px #fff;
  padding: 2% 0 1%;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
}

@media screen and (max-width: 800px) {
  #footArea {
    padding: 6% 0 0;
  }
}
/* breadArea */
#breadArea {
  max-width: 960px;
  margin: 2% auto 0;
  padding: 0 5%;
}

@media screen and (max-width: 800px) {
  #breadArea {
    width: 90%;
    padding: 0;
    margin: 4% auto 0;
  }
}
.breadcrumbs {
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 40px;
  padding: 0 5%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  font-size: 70%;
  line-height: 40px;
}

@media screen and (max-width: 800px) {
  .breadcrumbs {
    padding: 0 5%;
  }
}
.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs li::after {
  content: ">";
  padding: 0 10px; /*左右に余白*/
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs li a {
  color: #0068b7;
}

.breadcrumbs li a:hover {
  color: #23d5ab;
  transition: 0.3s;
}

/* footBlock */
#footBlock {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 5%;
}

@media screen and (max-width: 800px) {
  #footBlock {
    padding: 0 0 8%;
  }
}
/* footBox */
.footBox {
  padding: 1% 0;
  border-bottom: dotted 1px #fff;
  color: #fff;
}

.footBox:last-child {
  border-bottom: none;
}

@media screen and (max-width: 800px) {
  .footBox {
    width: 90%;
    margin: 0 auto;
    padding: 2% 0;
  }
}
/* footBox linkBox */
.footBox .linkBox {
  position: relative;
  z-index: 10;
  text-align: center;
}

.footBox .linkBox a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 11;
  color: #463318;
}

.footBox .zoomBox {
  display: block;
  transition-duration: 0.2s; /*変化に掛かる時間*/
}

.footBox .zoomBox:hover {
  transform: scale(1.2); /*画像の拡大率*/
  transition-duration: 0.2s; /*変化に掛かる時間*/
}

.footBox .linkBox .footListL {
  font-size: 100%;
  font-weight: normal;
  line-height: 120%;
}

.footBox h3 {
  margin: 0;
}

.footBox p {
  font-size: 70%;
}

@media screen and (max-width: 800px) {
  .footBox p {
    font-size: 90%;
  }
}
.footListS {
  font-size: 70%;
  font-weight: normal !important;
}

@media screen and (max-width: 800px) {
  .footListS {
    font-size: 90%;
  }
}
/* footBoxS */
.footBoxS {
  clear: both;
  width: 100%;
  border-top: dotted 1px #fff;
}

@media screen and (max-width: 800px) {
  .footBoxS {
    width: 90%;
    margin: 0 auto;
    padding-top: 2%;
  }
}
.footBoxS h3 {
  float: left;
  width: 33.3%;
  padding: 1% 0;
  margin: 0;
  text-align: center;
  font-size: 70%;
}

@media screen and (max-width: 800px) {
  .footBoxS h3 {
    float: none;
    width: 100%;
    padding: 2% 0 0;
    font-size: 90%;
  }
}
.footBoxS h3 a {
  color: #fff;
  display: block;
}

.footBoxS h3 a:hover {
  color: #23d5ab;
  transition: 0.3s;
}

/* footLogo */
.footLogo {
  clear: both;
  width: 100%;
}

.footLogo h2 {
  width: 50%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 800px) {
  .footLogo {
    border: none;
  }
}
/* crArea */
#crArea {
  padding-bottom: 20px;
}

#crArea p {
  text-align: center;
  font-size: 60% !important;
  color: #999;
}

@media screen and (max-width: 800px) {
  #crArea p {
    font-size: 60%;
  }
}
/* ------ スクロールトップ ------ */
/* backtotop */
.backtotop {
  position: fixed;
  bottom: 15px;
  z-index: 90;
  display: none;
  right: 15px;
}

@media screen and (max-width: 800px) {
  .backtotop {
    bottom: 13px;
    right: 13px;
  }
}
.hovicon {
  display: inline-block;
  font-size: 100%;
  line-height: 60px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border: solid 1px #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  position: relative;
  text-decoration: none;
  z-index: 1;
  color: #fff;
}

@media screen and (max-width: 800px) {
  .hovicon {
    font-size: 80%;
    line-height: 50px;
    width: 50px;
    height: 50px;
  }
}
.hovicon:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.hovicon:before {
  speak: none;
  font-size: 140%;
  line-height: 60px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
}

/* Effect 1 */
.hovicon.effect-1 {
  background: #00976A;
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.hovicon.effect-1:after {
  top: -7px;
  left: -7px;
  padding: 7px;
  box-shadow: 0 0 0 4px #4abcff;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -webkit-transform: scale(0.8);
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transition: transform 0.2s, opacity 0.2s;
  transform: scale(0.8);
  opacity: 0;
}

/* Effect 1a */
.hovicon.effect-1.sub-a:hover {
  background: #4abcff;
  color: #fff;
}

.hovicon.effect-1.sub-a:hover p {
  color: #fff;
}

.hovicon.effect-1.sub-a:hover:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/* ------ モバイルメニュー ------ */
#header {
  display: none;
}

@media screen and (max-width: 960px) {
  #header {
    display: block;
  }
}
/* fixed */
.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* mask */
.mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background: rgba(22, 34, 42, 0.6);
  display: none;
}

/* エリアオーバーしてもスクロール */
.mean-container .mean-nav {
  max-height: 100vh;
  overflow-y: auto;
}

.mean-container .mean-nav .menuWrapper {
  position: relative;
  z-index: 99;
  max-height: calc(100vh - 140px);
}

/* メニューエリア */
.mean-container .mean-nav ul.nav {
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 5%;
}

/* メニューボタン */
.mean-container .mean-nav ul li {
  position: relative;
  background-color: #fff;
  border-top: solid 1px #eee;
}

.mean-container .mean-nav ul li a {
  display: block;
  padding: 20px 15px;
}

.mean-container .mean-nav ul li.menuLogo {
  border-top: none;
  list-style: none;
}

.mean-container .mean-nav ul li.menuLogo img {
  width: 50%;
}

/* +ボタン */
.mean-container .mean-nav ul li a.mean-expand {
  width: 20px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background: #eee;
}

/* サブメニューボタン */
.mean-container .mean-nav ul li .sub-menu {
  position: relative;
  padding: 15px 25px;
}

.mean-container .mean-nav ul li a {
  color: #463318;
}

.mean-container .mean-nav ul li span {
  padding-left: 2%;
}

/* h_sns */
.h_sns {
  width: 40px;
  padding-left: 15px;
  float: left;
}

.mean-container .mean-nav ul li .h_sns a {
  display: block;
  padding: 15px 0;
}

.mean-container .mean-nav ul li .twitter {
  padding-top: 3px;
}

/* ハンバーガー */
.mean-container .mean-bar {
  width: 100%;
  position: fixed;
  background: none;
  z-index: 98;
  top: 0;
  left: 0;
}

.meanmenu-reveal-btn {
  position: absolute;
  display: block;
  z-index: 99999;
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  right: 0;
  top: 0;
  background-color: #00976A;
}

.meanmenu-reveal {
  width: 26px;
  height: 20px;
  margin: 16px auto;
  display: block !important;
  position: relative;
}

.meanmenu-reveal:after {
  content: "MENU";
  position: absolute;
  bottom: -20px;
  color: #fff;
  font-size: 8px;
  width: 60px;
  left: -17px;
  text-align: center;
  display: block;
}

.meanmenu-reveal.meanclose:after {
  content: "CLOSE";
}

.meanmenu-reveal span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  margin: 0 auto;
}

.meanmenu-reveal span:nth-of-type(1) {
  top: 0;
  background: #fff;
}

.meanmenu-reveal span:nth-of-type(2) {
  top: 8px;
  background: #fff;
}

.meanmenu-reveal span:nth-of-type(3) {
  top: 16px;
  background: #fff;
}

.meanmenu-reveal span:nth-of-type(1) {
  -webkit-animation: menu-ber01 0.75s forwards;
  animation: menu-ber01 0.75s forwards;
}

.meanmenu-reveal span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}

.meanmenu-reveal span:nth-of-type(3) {
  -webkit-animation: menu-ber02 0.75s forwards;
  animation: menu-ber02 0.75s forwards;
}

.meanclose span:nth-of-type(1) {
  -webkit-animation: active-menu-ber01 0.75s forwards;
  animation: active-menu-ber01 0.75s forwards;
  top: -2px;
}

.meanclose span:nth-of-type(2) {
  opacity: 0;
}

.meanclose span:nth-of-type(3) {
  -webkit-animation: active-menu-ber03 0.75s forwards;
  animation: active-menu-ber03 0.75s forwards;
}

@-webkit-keyframes menu-ber01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-ber01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-ber02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-ber02 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-ber01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
}
@keyframes active-menu-ber01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
@-webkit-keyframes active-menu-ber03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
}
@keyframes active-menu-ber03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* contentArea */
.contentArea {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

@media screen and (max-width: 600px) {
  .contentArea {
    margin-bottom: 10%;
  }
}
.contentBlock {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

@media screen and (max-width: 600px) {
  .contentBlock {
    padding: 0;
  }
}
/* pageLogoArea */
#pageLogoArea {
  background: #00976A;
  margin-bottom: 3%;
}

.pageLogoBox {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1% 5%;
}
@media screen and (max-width: 800px) {
  .pageLogoBox {
    padding: 4% 5%;
  }
}

.pageLogo {
  font-size: 40px !important;
  color: #FFF;
  font-weight: bold;
  padding-bottom: 0 !important;
}
@media screen and (max-width: 800px) {
  .pageLogo {
    font-size: 24px !important;
  }
}

.pageLogoSmall {
  display: flex;
  align-items: center;
  color: #FFF;
  font-weight: bold;
  font-size: 19px !important;
  padding-bottom: 0 !important;
}
@media screen and (max-width: 800px) {
  .pageLogoSmall {
    font-size: 14px !important;
  }
}
.pageLogoSmall::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  display: block;
  margin-left: 0.4em;
  background: #FFF;
}
.pageLogoSmall span {
  display: block;
}

/* container */
.container.is-contact {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}