@charset "UTF-8";
/* header、footer など、ベースとなる部分のCSSを書く*/
/*メディアクエリ（サンプル最後に取る）*/
/*sp（なくても良い）*/
@media screen and (min-width: 480px) {}
/*tablet 768px以上*/
@media screen and (min-width: 768px) {}
/*pc 1000px以上*/
@media screen and (min-width: 1000px) {}
img {
  width: 100%;
height: auto;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}
/* 文字基準 */
html {
  font-size: 10px;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p {
  font-size: 1.4rem;
  font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  line-height: 1.6;
}
/* 文字基準 */
/*header*/
header {
  display: block;
  height: 60px;
}
/*contents*/
.contents {
  position: relative;
  width: auto;
}
.contents .mar-style {
  width: calc(100% - 40px);
  margin: 0 auto 40px;
}
.contents #news .mar-style {
  padding: 60px 0 56px;
}
@media screen and (min-width: 768px) {
  header {
    display: block;
    height: 80px;
  }
  .contents #news .mar-style {
    padding: 120px 0 56px;
  }
}
@media screen and (min-width: 1000px) {
  .contents .mar-style {
    max-width: 860px;
    width: auto;
    margin: 0 auto 40px;
  }
}
.contents .wide-style {
  width: 100%;
  margin: 40px auto;
}
/*footer*/
footer {
  width: 100%;
  padding: 10px 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
    align-items: center;
}
footer img {
  width: 180px;
  margin: auto;
}
.footer_fan-letter_link{
    display: inherit;
    margin-top: 30px;
}
.footer_fan-letter_text{
    font-size: 1.3rem;
}
footer .copyright {
  font-style: normal;
  font-size: 0.9rem;
  color: #676767;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  footer img {
    width: 180px;
  }
  footer .copyright {
    font-size: 1.2rem;
  }
}
/*nav*/
.inner {
  width: 980px;
  margin: 0 auto;
}
.inner:after {
  content: "";
  clear: both;
  display: block;
}
/* header */
header {
  background: #fff;
  position: relative;
  width: 100%;
}
.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
#top-head {
  box-shadow: 0px 10px 15px -10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
#top-head a, #top-head {
  color: #000;
  text-decoration: none;
}
#top-head .inner {
  position: relative;
}
#top-head .logo {
  float: left;
  font-size: 2.0rem;
}
/*#global-nav ul {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 0.875em;
	list-style: none;
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {
    padding: 0 30px;
}*/
/* Fixed */
/*#top-head.fixed {
	position: fixed;
    top: 0;
    padding-top: 10px;
	margin-top: 0;
    height: 55px;
    background: #000;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 1.500em;
    color: #333;
}
#top-head.fixed #global-nav ul li a {
    color: #333;
    padding: 0 20px;
}*/
/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  z-index: 101;
  right: 20px;
  top: 14px;
  width: 40px;
  height: 20px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #nav-toggle {
    right: 13px;
    height: 36px;
  }
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #666;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
/*@media screen and (max-width: 768px) {*/
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.inner {
  width: 100%;
}
/* Fixed reset */
#top-head.fixed {}
@media screen and (min-width: 768px) {
  /*    */
}
#mobile-head {
  position: relative;
  z-index: 999;
  width: 100%;
  height: 60px;
}
#top-head .logo {
  position: absolute;
  left: 10px;
  top: 16px;
  color: #fff;
  max-width: 180px;
}
@media screen and (min-width: 768px) {
  #top-head .logo {
    position: absolute;
    left: 66px;
    top: 26px;
    color: #fff;
    max-width: 300px;
    width: 300px;
  }
}
#global-nav {
  position: absolute;
  /* 開いてないときは画面外に配置 */
  right: -100%;
    top:0;
  width: 100%;
  background: rgba(79, 155, 132, 0.90);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  padding: 60px 6% 0 5%;
  font-size: 2.3rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.2rem;
  height: 100vh;
}
#global-nav ul {
  position: static;
  right: 0;
  bottom: 0;
  font-size: 0.875em;
  list-style: none;
}
#global-nav ul li {
  position: static;
  float: none;
}
#global-nav ul li {
  height: 90px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #global-nav {
    padding: 50px 6% 0 5%;
  }
  #global-nav ul li {
    height: 110px;
  }
}
#global-nav ul li + li {
  border-top: 1px solid #fff;
}
#top-head #global-nav ul li a, .fixed #global-nav ul li a {
  display: block;
  width: 100%;
  padding: 18px 0;
  color: #fff;
}
#nav-toggle {
  display: block;
}
#nav-toggle p {
  position: absolute;
  bottom: -20px;
  text-align: center;
  width: 100%;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  #nav-toggle p {
    bottom: -7px;
	width: 105%;
  }
}
#nav-toggle p.op {
  display: block;
  color: #666;
}
#nav-toggle p.cl {
  display: none;
}
.open #nav-toggle p.op {
  display: none;
}
.open #nav-toggle p.cl {
  display: block;
  color: #fff;
}
/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
  top: 11px;
  height: 1px;
  -webkit-transform: rotate(400deg);
  -moz-transform: rotate(400deg);
  transform: rotate(400deg);
  background-color: #fff;
}
.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 11px;
  height: 1px;
  -webkit-transform: rotate(-400deg);
  -moz-transform: rotate(-400deg);
  transform: rotate(-400deg);
  background-color: #fff;
}
/* #global-nav スライドアニメーション */
.open #global-nav {
  /* #global-nav top + #mobile-head height */
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
/*}*/
.slick-slider {
  box-shadow: 0px 10px 15px -15px;
}
.profile .slick-slider {
  box-shadow: none;
}
.profile .slick-slide {
  line-height: 0;
  background-color: inherit;
}
.profile .slick-slide img {
  opacity: 1;
}
.profile .slick-list {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .profile .slick-list {
    padding-bottom: 50px;
  }
}
.profile .slick-dots {
  bottom: 0px;
}
.slick-slide {
  line-height: 0;
  background-color: #000;
}
.slick-slide img {
  opacity: 0.5;
}
.slick-slide.slick-center img {
  opacity: 1;
}
.slick01 {
  opacity: 0;
  transition: opacity .25s ease;
}
.slick01.slick-initialized {
  opacity: 1;
}
/* ポイント① */
.slick01 {
  max-width: 1200px;
  margin: 0 auto;
}
/* ポイント② */
.slick01 .slick-list {
  overflow: visible;
}
/* ポイント④ */
.slick01 img {
  object-fit: cover;
  width: 100%;
  max-height: 700px;
}
.slider {
  display: none;
}
.slider.slick-initialized {
  display: block; /*slick-initializedが付与されたら表示*/
}
@media screen and (min-width: 768px) {
  #global-nav {
    right: -1040px;
    width: 520px;
    top: 0;
    min-height: 837px;
  }
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateX(-1040px);
    -webkit-transform: translateX(-1040px);
    transform: translateX(-1040px);
  }
  #nav-toggle {
    right: 30px;
    top: 20px;
    width: 34px;
    z-index: 10;
  }
  #mobile-head {
    height: 110px;
    padding: 30px 70px 20px;
  }
}
/*parts*/
.alpha a:hover {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
}
.fade {
  opacity: 1;
}
#page-top {
  position: fixed;
  bottom: 80px;
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
  transform: rotate(90deg);
  right: -40px;
  font-size: 1.1rem;
}
#page-top:before {
  display: inline-block;
  border-top: 1px solid;
  content: "";
  width: 4em; /* 線の長さ */
  margin: 0 10px 0 0;
}
/*parts*/