@charset "UTF-8";
img {
  max-width: 100%;
  height: auto;/*高さ自動*/
}

@media screen and (min-width: 768px) {
.sp_only {
  display: none;
}
}

@media screen and (max-width: 768px) {
.pc_only {
  display: none;
}
}
/* 全体の設定
-------------------------------------*/
html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  color: #000;
  background-color: #ffffff;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
h2 {
  font-family: "Spectral", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1.0rem;
  font-size: 7rem;
  text-align: center;
  letter-spacing: 4px;
}
h3 {
  letter-spacing: -.1rem;
  font-weight: 300;
  margin-bottom: 4rem;
  color: #6B8797;
  font-size: 2rem;
  text-align: center;
}
h4 {
  letter-spacing: 1px;
  color: #000;
  font-size: 2rem;
  text-align: center;
  margin: 2rem 0;
}
p {
  font-size: 2.3rem;
}

@media only screen and (max-width: 768px) {
h2 {
  letter-spacing: 0.5rem;
  font-size: 3.4rem;
  text-align: center;
}
h3 {
  letter-spacing: -.1rem;
  font-weight: 300;
  margin-bottom: 3rem;
  font-size: 1.6rem;
  text-align: center;
}
h4 {
  letter-spacing: 1px;
  font-size: 1.8rem;
  text-align: center;
  margin: 2rem 0;
}
p {
  font-size: 2rem;
  letter-spacing: 0rem;
}
}
.btn {
  width: 86%;
  border-radius: 55px;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 100;
  margin: 0.6rem 0 2em 0;
  text-decoration: none;
  color: #fff;
  border: 2px solid #fff;
  background: #EDC825;
  transition: .4s;
}
.btn a {
  color: #fff;
  display: block;
  text-decoration-line: none;
  padding: 1.2rem 1rem;
  position: relative;
  padding-left: 17px;
}
.btn a::after {
  position: absolute;
  top: 50%;
  right: .4em;
  content: '';
  margin-top: -6px;
  border: 7px solid transparent;
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-color: #fff;
  transition: all .3s;
}
.btn:hover {
  background: #eed76c;
  color: #fff;
}
.btn a:hover {
  color: #fff;
}
.btn a:hover::after {
  border-left-color: #fff;
}
/* 画面外にいる状態 */
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 1000ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}
/* 画面外にいる状態 */
.fadein_top {
  display: none;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
 @keyframes fadeUpAnime {
 from {
 opacity: 0;
 transform: translateY(100px);
}
 to {
 opacity: 1;
 transform: translateY(0);
}
}
/*メイン画像
-------------------------------------*/
header {
  min-width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  height: 800px;
  background: top url("../img/bg.jpg") no-repeat;
  background-color: #ffffff;
  background-size: cover;
  display: block;
  position: relative;
  border-bottom: solid 2px #ffffff;
}

@media only screen and (max-width: 768px) {
header {
  height: 500px;
  background: top url("../img/bg_tab.jpg") no-repeat;
  background-size: cover;
}
header img {
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
}
.top_img_01 {
  width: 1000px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 0 4.2rem;
}
.top_img_02 {
  display: none!important;
}
}

@media only screen and (max-width: 480px) {
header {
  height: 500px;
  background: top url("../img/bg_sp.jpg") no-repeat;
  background-size: cover;
}
header img {
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
}
.top_img_01 {
  width: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 0 1.2rem;
}
.top_img_02 {
  display: none!important;
}
}

@media only screen and (min-width: 768px) {
header img {
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
}
.top_img_01 {
  width: 900px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 0 1.2rem;
}
.top_img_02 {
  top: 50%;
}
}

/*PCメニュー
-------------------------------------*/
@media only screen and (max-width: 768px) {
.menu_pc {
  display: none;
}
}
.menu_pc {
  width: 100%;
  height: 60px;
  margin-top: -10px;
  background: #6B8797;
  z-index: 2;
}
.menu_pc ul {
  display: flex;
  justify-content: space-between;
  margin: 10px auto 90px;
  padding: 0 1rem;
  max-width: 950px;
}
.menu_pc li {
  line-height: 60px;
  list-style: none;
}
.menu_pc li a {
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
  text-decoration-line: none;
}
.menu_pc li a:hover {
  transition: all .3s;
  opacity: 0.74;
}
.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 70px;
}

/*SPメニュー
-------------------------------------*/
@media only screen and (min-width: 768px) {
.menu_sp {
  display: none;
}
}

@media only screen and (max-width: 768px) {
/*　ハンバーガーボタン　*/
.hamburger {
  position: fixed;
  right: 0px;
  z-index: 10;
  width: 60px;
  height: 60px;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 28px;
  height : 2px;
  left: 16px;
  background: #6B8797;
  box-shadow: 0px 0px 3.6px 3.2px #ffffff;
  /*box-shadow: 0px 0px 3px 2px rgb(0 0 0 / 70%);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;*/
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 20px;
}
.hamburger span:nth-child(2) {
  top: 30px;
}
.hamburger span:nth-child(3) {
  top: 40px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 30px;
  left: 15px;
  background : #fff;
  box-shadow: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform : rotate(-45deg);
  transform : rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 30px;
  background : #fff;
  box-shadow: none;
  -webkit-transform: rotate(45deg);
  -moz-transform : rotate(45deg);
  transform : rotate(45deg);
}
nav.globalMenuSp {
  z-index : 5;
  top : 0;
  left : 0;
  color: #fff;
  background: #6B8797;
  text-align: center;
  display: flex;
  position: fixed;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100vw);
  transition: opacity .6s ease, visibility .6s ease;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li a {
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.2rem;
  display: block;
  color: #fff;
  padding: 0.4em 0;
  text-decoration : none;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0);
  opacity: 100;
  position: fixed;
}
}
.Twittermenu img {
  padding: 0.4em 0;
  position: absolute;
  left: 50%;
  width: 210px;
}
/*グッズ＆ニュース
-------------------------------------*/
.goodsnews {
  background: #ffffff;
  text-align: center;
}
.goodsnews h2 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 4rem;
}
.goodsnews h3 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.goodsnews .txt_01 {
  font-weight: 300;
  margin-bottom: 4rem;
  color: #5b5b5b;
  font-size: 3rem;
  text-align: center;
}

@media only screen and (min-width: 768px) {
.goodsnews {
  padding: 10rem 0 1rem;
}
}

@media only screen and (max-width: 768px) {
.goodsnews_bnr img {
  max-width: 96%;
  filter: drop-shadow(0 0 0.1rem #aaa);
}
.goodsnews .list {
  display: inline-block;
  margin: 2px 6px;
}
.goodsnews .txt_01 {
  font-size: 1.7rem;
  text-align: center;
  letter-spacing: 0px;
  width: 94%;
  margin: 0 auto 3rem;
}
.goodsnews .txt_02 {
  padding: 0 0 2.4rem 0;
  margin: 0 11px;
  color: #fff;
  font-size: 12px;
  text-align: left;
  display: inline-block;
}
}
/*キャンペーン概要
-------------------------------------*/
.campaign {
  text-align: center;
}
.campaign h2 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 4rem;
}
.campaign h3 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.campaign .list {
  display: inline-block;
  margin: 2px 18px;
}
.campaign_bnr {
  margin: 0px auto;
  max-width: 1000px;
}
.campaign .txt_01 {
  font-weight: 300;
  margin-bottom: 4rem;
  color: #5b5b5b;
  font-size: 3rem;
  text-align: center;
}
.campaign .txt_02 {
  padding: 4rem 0;
  color: #5b5b5b;
  font-size: 1.76rem;
  text-align: left;
  display: inline-block;
  max-width: 1000px;
}
.txt_02 .center {
  display: block;
  text-align: center;
  font-size: 26px;
  padding: 16px 0;
}
.txt_02 .blue{
  color: #6B8797;
}

.campaign .txt_03 {
  padding: 0rem 0;
  color: #6B8797;
  font-size: 2.5rem;
  text-align: center;
  display: inline-block;
  max-width: 1000px;
  border-bottom:double;/*二重線を引く*/
  border-color:#6B8797;
  border-width:7px;
}

@media only screen and (min-width: 768px) {
.campaign {
  padding: 5rem 0 1rem;
}
}

@media only screen and (max-width: 768px) {
.campaign_bnr {
  margin: 0 auto;
  max-width: 90%;
}
.campaign .list {
  display: inline-block;
  margin: 2px 6px;
}
.campaign .txt_01 {
  font-size: 1.7rem;
  text-align: center;
  letter-spacing: 0px;
  width: 94%;
  margin: 0 auto 3rem;
}
.campaign .txt_02 {
  font-size: 15px;
  text-align: left;
  display: inline-block;
  padding: 10px 0 20px;
  max-width: 90%;
}
.txt_02 .center {
  font-size: 20px;
  padding: 10px 0;
}
}
/*スケジュール
-------------------------------------*/
.schedule h2 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.schedule h3 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 768px) {
.schedule {
  max-width: 1000px;
  margin: 0 auto;
}
.waku {
  background: #f4f4f4;
  margin: 1% 1%;
  width: 48%;
}
}

@media screen and (max-width: 768px) {
.waku {
  background: #f4f4f4;
  margin: 3% 6%;
  width: 88%;
}
}
.schedule {
  padding: 3rem 0;
}
.waku_group {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bnr01 img {
  padding: 0 2rem 1rem 2rem;
}
.bnr01 img:hover {
  transition: all .3s;
  opacity: 0.74;
}
/*商品イメージ
-------------------------------------*/
.image {
  background: #ffffff;
  padding: 5rem 0 1rem;
  text-align: center;
}
.image h2 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.image h3 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.image p {
  font-weight: 300;
  margin-bottom: 4rem;
  color: #5b5b5b;
  font-size: 3rem;
  text-align: center;
}
.image img {
  filter: drop-shadow(0 0 0.1rem #aaa);
}
.image .list {
  display: inline-block;
  margin: 2px 6px;
}
.image .txt_02 {
  color: #000;
  font-size: 1.8rem;
  text-align: left;
  display: inline-block;
}
.category_btn {
  border-radius: 55px;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 100;
  margin: 0.6rem 0 2.4em 0;
  text-decoration: none;
  color: #fff;
  border: solid 2px #6B8797;
  transition: .4s;
}
.category_btn a {
  font-size: 2rem;
  color: #6B8797;
  display: block;
  text-decoration-line: none;
  padding: 1.6rem 10rem;
  position: relative;
}
.category_btn a::after {
  position: absolute;
  top: 50%;
  right: .4em;
  content: '';
  margin-top: -6px;
  border: 7px solid transparent;
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-color: #6B8797;
  transition: all .3s;
}
.category_btn:hover {
  background: #6B8797;
  color: #fff;
}
.category_btn a:hover {
  color: #fff;
}
.category_btn a:hover::after {
  border-left-color: #fff;
}

@media only screen and (max-width: 768px) {
.image {
  background: #ffffff;
  padding: 0 0 4rem;
  text-align: center;
}

.image p {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-align: center;
  padding: 0 1.8rem;
}
.category_btn a {
  display: block;
  text-decoration-line: none;
  padding: 1.2rem 1.8em;
  position: relative;
}
.image .txt_02 {
  margin: 0 11px;
  color: #000;
  font-size: 12px;
  text-align: left;
  display: inline-block;
}
}
/*グッズ
-------------------------------------*/
.goods {
  padding: 5rem 0 0;
  background-color: #ecf0f2;
  text-align: center;
}
.goods h2 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.goods h3 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.img:hover {
  transition: all .3s;
  opacity: 0.6;
}

@media screen and (min-width: 768px) {
.goods {
  background-size: cover;
}
	
.goodsAll {
  max-width: 1000px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
}
.img {
  max-width: 313px;
  width: 30vw;
  margin: 6px 10px;
}
.img img {
  width: 100%;
  max-width: 1000px;
  filter: drop-shadow(0 0 0.1rem #aaa);
}
}

@media screen and (max-width: 768px) {
.goods {
  background-size: 1800px;
}
	
.goodsAll {
  max-width: 1000px;
  margin: 4vw;
  display: flex;
  flex-wrap: wrap;
}
.img {
  width: 30.6vw;
  padding: 0.2vw 1vw;
  filter: drop-shadow(0 0 0.1rem #aaa);
}
.img img{
  width: 100%;
  max-width: 1000%;
}
.goods .category_btn a {
  display: block;
  text-decoration-line: none;
  padding: 1.2rem 3.8em;
  position: relative;
}
.category_btn a:hover {
  color: #000;
}
}
/*プロデュースグッズ
-------------------------------------*/
.p-goods {
  background: #ffffff;
  padding: 5rem 0 1rem;
  text-align: center;
}
.p-goods h2 {
    background: #6B8797;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.p-title{
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  color: #6B8797;
  margin: 0;
  background: linear-gradient(transparent 75%, #ffff00 0%);
  max-width: 285px;
  width: 56%;
  margin: 40px auto;
}
.p-text{
  text-align: center;
  font-size: 24px;
  padding: 20px 0 40px;
  margin: 0;
}
.p-goods img {
  filter: drop-shadow(0 0 0.1rem #aaa);
}
.p-goods .list {
  display: inline-block;
  margin: 2px 6px;
}
.p-goods .goodsAll {
  padding: 40px 0 20px;
}
.category_btn {
  border-radius: 55px;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 100;
  margin: 0.6rem 0 2.4em 0;
  text-decoration: none;
  color: #fff;
  border: solid 2px #6B8797;
  transition: .4s;
  background-color: #fff;
}
.category_btn a {
  font-size: 2rem;
  color: #6B8797;
  display: block;
  text-decoration-line: none;
  padding: 1.6rem 10rem;
  position: relative;
}
.category_btn a::after {
  position: absolute;
  top: 50%;
  right: .4em;
  content: '';
  margin-top: -6px;
  border: 7px solid transparent;
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-color: #6B8797;
  transition: all .3s;
}
.category_btn:hover {
  background: #6B8797;
  color: #fff;
}
.category_btn a:hover {
  color: #fff;
}
.category_btn a:hover::after {
  border-left-color: #fff;
}

@media only screen and (max-width: 768px) {
.p-goods h2 {
    background: #6B8797;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 40px;
    margin-bottom: 1rem;
}
.p-title{
  font-size: 20px;
  padding: 0;
  margin: 25px auto;
}
.p-text{
  font-size: 17px;
  text-align: left;
  padding: 20px 14px;
  margin: 14px;
}
.p-goods .goodsAll {
  padding: 0;
}
.category_btn a {
  display: block;
  text-decoration-line: none;
  padding: 1.2rem 3em;
  position: relative;
}
.p-goods .txt_02 {
  margin: 0 11px;
  color: #000;
  font-size: 12px;
  text-align: left;
  display: inline-block;
}
}
/*特典
-------------------------------------*/
.present {
  background: top url("../img/bg.jpg") no-repeat;
  background-size: cover;
  padding: 5rem 0 1rem;
  text-align: center;
}
.present h2 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.present h3 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.present_pc {
  margin: 0px auto;
  max-width: 1000px;
}
.present_sp {
  margin : 0 auto;
  max-width: 90%;
}
/*ニュース
-------------------------------------*/
.news {
  padding: 3rem 0;
}
.news h2 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.news h3 {
  background: #6B8797;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media print, screen and (min-width: 768px) {
.twitter {
  display: -ms-flexbox;
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  border: 2.6px solid #6B8797;
  height: 33.1rem;
}
.tw_title {
  width: 100%;
  height: 32.6rem;
}
.timeline {
  width: 50%;
  overflow: hidden;
  background-color: #fff;
  border: solid #e7e7e7;
  border-width: 0 0 0 2px;
}
.tw_title img {
  width: 12rem;
  margin: 2rem 0 0;
}
.tw_title p {
  color: #000;
  font-size: 2.4rem;
  text-align: center;
  margin: 1rem 0;
}
}

@media print, screen and (max-width: 768px) {
.twitter {
  max-width: 1000px;
  margin: 2rem;
  position: relative;
  border: 2.6px solid #6B8797;
  height: 27rem;
}
.tw_title {
  height: 26.6rem;
}
.timeline {
  height: 47%;
  overflow: hidden;
  background-color: #fff;
  border: solid #e7e7e7;
  border-width: 2px 0 0;
}
.tw_title img {
  width: 10rem;
  margin: 1.4rem 0 0;
}
.tw_title p {
  color: #000;
  font-size: 1.6rem;
  text-align: center;
  margin: 1rem 0;
}
.tw_title .btn a {
  color: #fff;
  display: block;
  text-decoration-line: none;
  padding: 0.7rem 1rem;
}
}
.tw_title {
  background-color: #ECF0F2;
  text-align: center;
}
.tw_title .btn {
  background: #6B8797;
  width: 70%;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 100;
  text-decoration: none;
  transition: .4s;
}
.tw_title .btn a::after {
  position: absolute;
  top: 50%;
  right: .4em;
  content: '';
  margin-top: -6px;
  border: 7px solid transparent;
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-color: #ffffff;
  transition: all .3s;
}
.tw_title .btn a {
  color: #fff;
  display: block;
  text-decoration-line: none;
  padding: 1rem 1rem;
}
.tw_title .btn:hover {
  transition: all .3s;
  opacity: 0.6;
}

/*フッター
-------------------------------------*/
@media print, screen and (min-width: 768px) {
footer {
  color: #fff;
  background: #6B8797;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
  margin-top: 4rem;
}
footer img {
  padding: 2rem 0;
}
footer p {
  font-size: 1.6rem;
}
}

@media print, screen and (max-width: 768px) {
footer {
  color: #fff;
  background: #6B8797;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
}
footer img {
  width: 54%;
  padding: 2rem 0 1rem;
}
footer p {
  font-size: 1.2rem;
}
}
/*TOPへ戻る
-------------------------------------*/
.header-box {
  display: none;
}

.pagetop{
  width: 9.38vw;
  height: 9.38vw;
  position: fixed;
  bottom: 3.13vw;
  right: 3.13vw;
  z-index: 3;
}

.pagetop a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  border: 2px solid #6B8797;
  background: #ECF0F2;
  border-radius: 50%;
}

.pagetop:hover {
  transition: all .3s;
  opacity: 0.8;
}

.pagetop a span {
  width: 2.34vw;
  height: 2.27vw;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.66vw 0 0 -1.17vw;
}

.pagetop a i {
  width: 2.34vw;
  height: 2.27vw;
  display: block;
  color: #fff;
  background: url(../img/top.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 640px){
.pagetop {
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
}

.pagetop a span{
    margin: -4px 0 0 -7.5px;
}

.pagetop a i {
    width: 15px;
    height: 8px;
}
}