@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');

 /* 投稿、固定ページのプレビューで管理バー非表示 */
 #wpadminbar{
  display: none;
}
html{
  font-size: 18px;
  width: 100%;
}
body{
  position: relative;
  margin: 0;
  z-index: -99;
	overflow-x: hidden;
  background: #011a24;
}
li{
  list-style: none;
}
a{
  text-decoration: none;
}
a:hover{
  opacity: 0.7;
}
img{
  width: 100%;
  vertical-align: top;
}
h1 {
  width: 152px;
  left: 2%;
  margin-bottom: 0;
  margin-top: 9px;
  margin-left: 2%;
}
h1 a{
  display: block;
}

h1.entry-title{
  display:none;
 }
.sp{
  display: none !important;
}
.pc{
  display: block;
}

.main-visual{
  overflow: hidden;
  padding: 0;
  position: relative;
}
button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
button:hover{
  cursor: pointer;
}


/**************** フェードイン ****************/

.element {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}


/* その場で */
.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:1.8s;
  animation-fill-mode:forwards;
  opacity:0;
}
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
/* 上から */

.fadeDown{
  animation-name:fadeDownAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  @keyframes fadeDownAnime{
    from {
      opacity: 0;
    transform: translateY(-100px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  


nav{
  width: 69%;
  margin-right: 4%;
}
.menu {
	/* メニューを縦に */
	display: flex;
	/* メニューの位置マイナス指定で画面外に */
	right: -70%;
	height: 100vh;
	color: #efefef;
	transition: .3s;
  font-size: 1.1rem;
}

.menu-list {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	justify-content: center;
  letter-spacing: 2px;
}

.menu-list a{
  color: #fff;
  font-weight: 400;
  padding: 14px 2px;
  font-family: 'Noto Serif JP', serif;
  line-height: 0;
}

.menu {
	display: flex;
  justify-content: space-evenly;
  height: 36px;
  padding: 0;
  min-width: 700px;
  font-size: 16px;
  margin-top: 23px;
  margin-bottom: 0;
}
/**************** header ****************/
header {
  position: fixed;
  top: -350px;  
  width: 100%;
  min-height: 90px;
  line-height: 70px;
  font-size: 2em;
  text-align: center;
  color: #fff;
  background: #000;
  box-sizing: border-box;
  transition: .5s;
  z-index: 99;
  font-family: 'Noto Serif JP', serif;
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

#fixed-header.is-show {
  top: 0;
}
header a{
  color: #fff;
}
.lang{
  letter-spacing: 5px;
  border: 1px solid #fff;
  padding-left: 6px !important;
}

/****************contents ****************/
#content{
  width: 100%;
  z-index: -1;
}

.top_mv{
  width: 100%;
  position: relative;
}
.top_logo{
  position: absolute;
  width: 16%;
  z-index: 1;
  top: 0;
  margin-top: 6%;
  left: 16%;
}
.top_title{
  position: absolute;
  z-index: 2;
  top: 0;
  right: 10%;
  margin-top: 6%;
  font-family: 'Noto Serif JP', serif;
  line-height: 64px;
  letter-spacing: 5px;
  font-size: 32px;
  color: #fff;
  writing-mode: vertical-rl;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-position: right;
  text-underline-offset: 14px;
}

/* MVのスライド */
.slick-slider{
  margin-top: -10px;
}
img {
  height: auto;
  width: 100%;
}
.thumbnail{
  background: #011a24;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.thumbnail .slick-track {
  transform: unset !important;
  width: 80% !important;
  margin: 0 auto !important;
}
.thumbnail-img {
  opacity: 0.3;
  transition: opacity .3s linear;
  border: 1px solid #fff;
  border-top: none;
  border-bottom: none;
}
.thumbnail-img:hover{
  cursor: pointer;
}
.thumbnail .slick-current {
  opacity: 1;
}
.slick-arrow:before{
  content:""!important;
  width: 200%!important;
  height: 100%!important;
  position: absolute;
  top: 0;
  left: 0;
}
.prev_icon{
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0,-50%);
  width: 20px;
  z-index: 1;
}
.next_icon{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0,-50%);
  width: 20px;
  z-index: 1;
}



.mv_pd{
  position: absolute;
  top: 0;
  color: #fff;
  top: 19%;
  left: 15%;
  font-family: 'Noto Serif JP', serif;
}
.mv_pd .number{
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  color: #C4A964;
}
.mv_pd .title{
  font-size: 48px;
  margin: 0 0 27px;
  letter-spacing: 0.16em;
}
.arrow_button{
  text-align: left;
}
.press_btn {
  position: relative;
  display: inline-block;
  padding: 0.6em 4em 0.6em 1em;
  border: 1px solid #C4A964;
  color: #C4A964;
  text-align: left;
  text-decoration: none;
  min-width: 100px;
  letter-spacing: 0.16em;
  font-size: 18px;
  background: #011A24;
  font-family: 'Noto Serif JP', serif;
}
.arrow_button a:after {
  background: url(/wp-content/themes/takai/images/arrow_w.png) 0 0 no-repeat;
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  width: 37px;
  height: 14px;
  right: 7px;
}
.prev_icon,.next_icon:hover{
  cursor: pointer;
}


main{
  position: relative;
}
/****************メッセージ ****************/
.message_area{
  position: relative;
  display: flex;
  margin-bottom: 4%;
}
.bg_title{
  position: absolute;
  z-index: 2;
  left: 12%;
  margin-top: 5%;
  font-family: 'Noto Serif JP', serif;
  line-height: 104px;
  letter-spacing: 5px;
  font-size: 45px;
  color: #fff;
  writing-mode: vertical-rl;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-position: right;
  text-underline-offset: 14px;
}
.message_image{
  width: 80%;
  position: absolute;
  right: 0;
}
.message_area .text_area{
  z-index: 1;
  width: 573px;
  margin-top: 45%;
  margin-left: 14%;
  letter-spacing: 1px;
}
h2{
  color: #C4A964;
  font-size: 100px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 100;
  letter-spacing: 0.06em;
  margin-bottom: 6%;
  margin-top: 10px;
  line-height: 100px;
  margin-bottom: 27px;
}
.message_area p{
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  line-height: 50px;
  font-size: 18px;
  letter-spacing: 0.16em;
}


/****************News ****************/
.news_area{
  background: url("images/news_bg.jpg");
  background-size:cover;
  background-position:center;
  min-height: 333px;
  padding: 20% 5%;
  display: flex;
}
.news_area .text_area{
  margin-left: 10%;
  width: 35%;
  margin-top: -90px;
}
.news_area .arrow_button{
  text-align: left;
}
.news_area h3{
  letter-spacing: 0.05em;
}



/* 巌を知る */
.philosophy{
  margin: 80px auto;
  width: 131px;
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 60px;
  color: #fff;
  height: 377px;
  letter-spacing: 12px;;
}
.philosophy img{
  margin-bottom: 15px;
  vertical-align: middle !important;
}

.about_area{
  display: flex;
  margin-bottom: 10%;
}
.about_image{
  width: 60%;
}
.about_area .text_area{
  color: #fff;
  z-index: 1;
  width: 30%;
  font-family: 'Noto Serif JP', serif;
  margin-left: 4%;
  margin-top: 5vw;
}
.sake_area .text_area{
  margin-top: 3vw;
}
.about_area p{
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 33px;
  letter-spacing: 0.05em;
  font-size: 15px;
  width: 81%;
  min-width: 433px;
}
h3{
  font-size: 34px;
  margin-top: 0;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 44px;
}
.h3_01{
  letter-spacing: 0.1em;
}
.h3_03{
  letter-spacing: 0.2em;
}
.about_area .arrow_button, .brand_area .arrow_button{
  text-align: left;
  margin-top: 52px;
}
.brand_area{
  display: flex;
  margin-bottom: 16%;
  position: relative;
}
.brand_image{
  width: 60%;
  position: absolute;
  right: 0;
}
.brand_area .text_area{
  color: #fff;
  z-index: 1;
  width: 28%;
  font-family: 'Noto Serif JP', serif;
  margin-left: 14%;
  min-width: 532px;
  margin-top: 7vw;
}
.brand_area p{
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 33px;
  letter-spacing: 0.05em;
  font-size: 15px;
  width: 85%;
}
.sake_area{
  position: relative;
}

/****************インスタ ****************/
.insta_deco{
  width: 100%;
}
.insta_area{
  background: #fff;
  text-align: center;
  min-height: 500px;
  margin-top: -10px;
}
.insta_area h2{
  margin: 0;
  margin-bottom: 22px;
}
.insta_area h3{
  color: #011A24;
  font-weight: 100;
  letter-spacing: 0.12em;
}



.ft_deco{
  width: 100%;
}
/**************** footer ****************/
footer{
  padding: 50px 14% 20px;
  background: #011a24;
}
.ft_logo{
  width: 10%;
  margin: 0 auto;
}
.sns_area{
  display: flex;
  justify-content: space-evenly;
  width: 20%;
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 40px;
}
.sns_area div{
  width: 10%;
}
.sns_area div:last-child{
  width: 11%;
}

.ft_menu{
  display: flex;
  justify-content: space-evenly;
  width: 80%;
  padding: 0;
  margin: 0 auto;
  font-size: 16px;
}
@media screen and (max-width: 1424px) {
  .ft_menu{
    width: 100%;
  }
}
.ft_menu a{
  color: #fff;
  letter-spacing: 2px;
  font-family: 'Noto Serif JP', serif;
}
.ft_menu .lang{
  letter-spacing: 5px !important;
  padding-right: 2px;
}
.ft_flex{
  display: flex;
  justify-content: space-between;
  font-family: 'Noto Serif JP', serif;
  color: #fff;
  font-size: 16px;
  margin: 60px auto 40px;
}
.ft_flex a{
  color: #fff;
}
.ft_right{
  text-align: right;
}
.ft_right p{
  font-size: 13px;
  line-height: 25px;
  margin-top: 47px;
}
.ft_left{
  text-align: left;
}
.company{
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 9px;
}
address{
  font-style:normal;
  margin-bottom: 9px;
  font-size: 16px;
}
.ft_left .number{
  margin-top: 0;
  font-size: 16px;
  line-height: 32px;
}
.ft_btnArea{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 33px;
}
.ft_btnArea .arrow_button:first-child{
  margin-right: 10px;
}
.ft_btnArea .arrow_button a{
  color: #C4A964;
  font-size: 16px;
}
.copy{
  font-size: 0.6rem;
  text-align: center;
  color: #fff;
  font-size: 12px;
}



/* スクロール フェードイン
-------------------------------------------------- */

.element {
  /* 最初は非表示 */
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}



@media screen and (max-width: 900px){
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
  #g-nav{
  position:fixed;
  z-index: 999;
  top:0;
  right: -120%;
  width:100%;
  height: 100vh;
  background:#011A24;
  transition: all 0.6s;
  overflow-y: scroll;
}

#g-nav.panelactive{
    right: 0;
}

#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    font-size: 50%;
    position: relative;
    z-index: 999;
    top: 10%;
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
  text-align: left;
  height: 50px;
  font-size: 18px;
}

#g-nav li a{
  color: #fff;
  text-decoration: none;
  padding:0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.sp_menu{
  padding-left: 24px;
  width: 138px !important;
  margin: 0 !important;
  margin-top: 100px !important;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:relative;
  z-index: 9999;/*ボタンを最前面に*/
  top:6px;
  right: -4px;
  cursor: pointer;
  width: 77px;
  height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

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

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

}
@media screen and (max-width: 900px) {
  .sp{
    display: block !important;
  }
  .pc{
    display: none !important;
  }
  header{
    min-height: auto;
  }
  h1{
    width: 117px;
    height: 50px;
    position: relative;
    top: -6px;
  }
  h1 a{
    height: 50px;
  }
  .sp_top_logo{
    position: absolute;
    top: 35px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    animation-name: smooth-fadein-out;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-delay: 2s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    opacity: 0;
  }
  @keyframes smooth-fadein-out {
    0% {opacity: 0;}
    50% {opacity: 1;}
    100% {opacity: 0;}
  }
  .top_title{
    font-size: 16px;
    line-height: 50px;
    width: 26%;
    animation-name: smooth-fadein;
    animation-duration: 5s;
    animation-timing-function: ease;
    animation-delay: 5s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    opacity: 0;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  @keyframes smooth-fadein {
    0% {opacity: 0;}
    50% {opacity: 1;}
    100% {opacity: 1;}
  }
  .thumbnail .slick-track{
    width: 100% !important;
  }
  .sp_arrow_button {
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
  }
  .mv_pd{
    top: 0;
    left: 5%;
  }
  .mv_pd .title{
    font-size: 32px;
  }
  .press_btn{
    min-width: 157px;
  }
  .message_image{
    width: 100%;
  }
  .message_area{
    display: block;
  }
  .message_area .text_area{
    width: 100%;
    margin-top: 100%;
    margin-left: 0;
    padding: 50px 0;
  }
  .bg_title{
    font-size: 25px;
    position: relative;
    line-height: 73px;
    margin: 0 auto;
    left: 0;
    bottom: -82px;
  }
  h2{
    font-size: 60px;
    text-align: center;
    margin:0 auto 18px;
    line-height: 1;
  }
  .message_area p{
    font-size: 15px;
    margin: 0 auto;
    width: 90%;
    line-height: 2;
  }
  .news_area{
    background: url(/wp-content/themes/takai/images/sp/news_bg.jpg);
    padding: 0;
  }
  .news_area .text_area{
    width: 100%;
    margin: 0 auto;
  }
  h3{
    font-size: 20px;
    text-align: center;
    margin-top: -15px;
  }
  .info_btn{
    bottom: 0;
    text-align: center !important;
  }
  .philosophy{
    font-size: 35px;
    margin-bottom: -57px;
  }
  .philosophy img{
    width: 108px;
  }
  .about_area{
    display: block;
  }
  .about_image{
    width: 100%;
  }
  .about_area .text_area{
    width: 100%;
    margin: 0;
    padding: 48px 0;
  }
  .brand_area{
    display: block;
  }
  .about_btn{
    position: relative;
  }
  .ft_deco{
    position: relative;
    top: 0;
  }
  .about_area p{
    width: 90%;
    min-width: auto;
    margin: 0 auto;
  }
  .brand_area .text_area{
    width: 100%;
    min-width: auto;
  }
  .about_area .arrow_button, .brand_area .arrow_button{
    text-align: center;
  }
  .brand_area .text_area{
    margin: 0;
  }
  .brand_image{
    position: relative;
    width: 100%;
  }
  .brand_area .text_area{
    padding: 48px 0;
  }
  .brand_area p{
    width: 90%;
    margin: 0 auto;
  }
  footer {
    padding: 50px 6% 20px;
  }
  .ft_menu{
    display: none;
  }
  .ft_logo{
    width: 43%;
  }
  .sns_area{
    width: 50%;
  }
  .sns_area div{
    width: 18%;
  }
  .sns_area div:last-child{
    width: 24%;
  }
  .ft_flex{
    display: block;
  }
  .ft_right p{
    text-align: left;
  }
  .sp_ft .arrow_button{
    text-align: center;
    margin-bottom: 10px;
  }
}

/* loading */
#splash {
  /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background:#333;
    text-align:center;
    color:#fff;
  }
  
  /* Loading画像中央配置　*/
  #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Loading アイコンの大きさ設定　*/
  #splash_logo img {
    width:100px;
  }
  
  /* fadeUpをするアイコンの動き */
  .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);
    }
  }




.wp-show-posts-entry-header{
  position: relative;
  background: #fff;
  top: 0;
  z-index: 1;
  display:flex;
  flex-flow: column;
}
.wp-show-posts-entry-title{
  font-size: 18px !important;
  line-height: 22px !important;
  margin-top: 16px;
  margin-bottom: 18px;
  text-align: left;
  order: 3;
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
}
.wp-show-posts-entry-title a{
  color: #fff !important;
}
.wp-show-posts-columns#wpsp-15{
  display: flex;
}
.wp-show-posts-updated{
  display: none;
}
.wp-show-posts-meta{
  width: 100%;
  display: block;
  margin-top: 7px;
  text-align: left;
  font-size: 18px;
  height: 44px;
}
.wp-show-posts-terms a{
  background: none;
  color:#fff !important;
  padding: 2px 5px;
  border: #fff solid 1px;
}
.wp-show-posts-entry-meta{
  display: flex;
  flex-flow: column;
  font-family: 'Noto Sans JP', sans-serif;
}
.wp-show-posts-entry-meta a{
  color: #fff;
}
.wp-show-posts-separator{
  display: none;
}
.wp-show-posts-posted-on{
  order: 2;
}
.wp-show-posts-terms{
  order: 1;
  margin-top: -10px;
  margin-bottom: -7px;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 900px){
  .wp-show-posts{
    display: block !important;
  }
}

.bread a{
  color: #000;
}