@charset "UTF-8";
/* CSS Document */


.jp_font {
	font-family: YuMincho,'Yu Mincho',serif;
	line-height: 2;
	letter-spacing: 1px;
	color: #4e4e4e;
}

.jp_ttl_font {
	font-family: YuMincho,'Yu Mincho',serif;
	line-height: 1;
	letter-spacing: 1px;
}

.fade_in {
  opacity: 0;
  transform: translate(0, 10px);
  transition: 0.5s;
}

.fade_in.is-show {
    transform: translate(0, 0);
    opacity: 1;
}



/*================================
ヘッダー（header）
================================*/
header {
	width: 15%;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2;
}

.bg_header {
	width: 15%;
	height: 100vh;
	position: fixed;
	top: 0;
	right: -100vw;
	background: #fff;
	opacity: 0;
	transition: opacity .6s ease;
}

.bg_header.active {
	opacity: 100;
	position: fixed;
	top: 0;
	right: 0;
}

.global_header {
	width: 100%;
	height: 100vh;
	position: relative;
}

.hamburger_menu {
	display: block;
	position: absolute;
	z-index: 3;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	left: 50%;
	width: 42px;
	height: 60px;
	cursor: pointer;
	text-align: center;
}
.hamburger_btn {
	width: 42px;
	height: 42px;
}

.hamburger_btn span {
	display: block;
	position: absolute;
	width: 1px;
	height: 30px;
	left: 6px;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.hamburger_btn span:nth-child(1) {
	top: 0;
	left: 11px;
	height: 30px;
}

.hamburger_btn span:nth-child(1)::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 48%;
	width: 1px;
	height: 30px;
	background: rgb(206 206 206);
}

.hamburger_btn span:nth-child(1)::after {
	animation: hbs1 2s cubic-bezier(1, 0, 0, 1) 1.75s infinite;
	content: "";
	position: absolute;
	bottom: 0;
	left: 48%;
	width: 1px;
	height: 30px;
	background: rgb(0 0 0);
}

@keyframes hbs1 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


.hamburger_btn span:nth-child(2) {
	top: 0;
	left: 21px;
	height: 30px;
}

.hamburger_btn span:nth-child(2)::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 48%;
	width: 1px;
	height: 30px;
	background: rgb(206 206 206);
}

.hamburger_btn span:nth-child(2)::after {
	animation: hbs2 2s cubic-bezier(1, 0, 0, 1) 1.5s infinite;
	content: "";
	position: absolute;
	bottom: 0;
	left: 48%;
	width: 1px;
	height: 30px;
	background: rgb(0 0 0);
}

@keyframes hbs2 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hamburger_btn span:nth-child(3) {
	top: 0;
	left: 31px;
	height: 30px;
}

.hamburger_btn span:nth-child(3)::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 48%;
	width: 1px;
	height: 30px;
	background: rgb(206 206 206);
}

.hamburger_btn span:nth-child(3)::after {
	animation: hbs3 2s cubic-bezier(1, 0, 0, 1) 1.25s infinite;
	content: "";
	position: absolute;
	bottom: 0;
	left: 48%;
	width: 1px;
	height: 30px;
	background: rgb(0 0 0);
}

@keyframes hbs3 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hamburger_btn.active span:nth-child(1) {
	top: 0px;
	left: 21px;
	height: 30px;
	width: 1px;
	background-color: #3a3a3a!important;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.hamburger_btn.active span:nth-child(1)::before {
	background: #3a3a3a!important;
}

.hamburger_btn.active span:nth-child(1)::after {
	background: #3a3a3a!important;
}

.hamburger_btn.active span:nth-child(2) {
	top: 0px;
	left: 21px;
	height: 30px;
	width: 1px;
	background-color: #3a3a3a;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.hamburger_btn.active span:nth-child(2)::before {
	background: #3a3a3a!important;
}

.hamburger_btn.active span:nth-child(2)::after {
	background: #3a3a3a!important;
}

.hamburger_btn.active span:nth-child(3) {
	top: 0px;
	left: 21px;
	background-color: #3a3a3a;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.hamburger_btn.active span:nth-child(3)::before {
	background: #3a3a3a!important;
}

.hamburger_btn.active span:nth-child(3)::after {
	background: #3a3a3a!important;
}

nav.globalMenuSp {
    position: fixed;
    z-index: 20;
    top: 0;
		left: 100vw;
    color: #fff;
    background: rgb(255 255 255 / 100%);
    height: 100vh;
    width: calc(100% - 15%);
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}

nav.globalMenuSp ul.global_menu {
   margin: 90px;
}

nav.globalMenuSp ul li {
  list-style: none;
  font-family: 'Granjon LT W01 Roman', 'Garamond W01', 'HGKyokashotai', serif;
  font-size: 0.8rem;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 1rem 0;
  width: 100%;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
	color: #000;
	text-decoration: none;
	transition: .4s all;
	font-size: 1rem;
}

nav.globalMenuSp ul li a:hover {
  color: #9B9B9B;
}

nav.globalMenuSp.active {
	position: fixed;
	z-index: 20;
	top: 0;
	left: 0;
	opacity: 100;
}

nav.globalMenuSp ul li img {
	width: 15px;
}

.global_header .g_logo {
	width: 20%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);

}


/*================================
トップビュー（TopView）
================================*/
#slide {
	width:100%;
	height:100vh;
	margin:0 auto;
	position:relative;
}

#slide ul li {
	width:100%;
	height:100vh;
}

#slide ul li.slide01 {
	background-image: url(images/1_gojiaitopimage_n.jpg);
	background-size: cover;
}

#slide ul li.slide02 {
	background-image: url(images/2_gojiaitopimage_n.jpg);
	background-size: cover;
}

#slide ul li.slide03 {
	background-image: url(images/3_gojiaitopimage_n.jpg);
	background-size: cover;
}
#slide ul li.slide04 {
	background-image: url(images/4_gojiaitopimage_n.jpg);
	background-size: cover;
}

#slide img {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100vh;
}

#slide_tx {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

#slide_tx ul li.slide01_tx {
	top: 50%;
    left: 50%;
    width: 5%;
    transform: translate(-50%, -50%);
}


#slide_tx ul li.slide02_tx {
    writing-mode: vertical-rl;
    color: rgb(255, 255, 255);
    font-family: YuMincho, "Yu Mincho", serif;
    font-size: 20px;
    top: 15%;
    left: 50%;
    transform: translate(-50%);
	line-height: 40px;
}

#slide_tx ul li.slide02_tx span {
	font-size: 15px;
	font-family: YuMincho, "Yu Mincho", serif;
}

#slide_tx ul li.slide03_tx  {
    writing-mode: vertical-rl;
    color: rgb(255, 255, 255);
    font-family: YuMincho, "Yu Mincho", serif;
    font-size: 20px;
    top: 15%;
    left: 70%;
    transform: translate(-50%);
	line-height:50px;
}
#slide_tx ul li.slide04_tx {
    writing-mode: vertical-rl;
    color: rgb(255, 255, 255);
    font-family: YuMincho, "Yu Mincho", serif;
    font-size: 30px;
    top: 15%;
    left: 70%;
    transform: translate(-50%);
}
#slide_tx ul li.slide04_tx span {
	font-size: 15px;
	font-family: YuMincho, "Yu Mincho", serif;
}

.kari {

}

.g_top {

}

section.firstView {
	width: calc(100vw - 15%);
	height: 100vh;
	position: relative;
}

section.products_page_firstView {
	width: calc(100vw - 15%);
	height: 220vh;
	position: relative;
}

.scroll_down {
	position: absolute;
	bottom: 0;
	left: 90px;
}

.scroll_down span {
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 2;
	padding: 0 0 110px;
	overflow: hidden;
	color: #fff;
	font-size: 10px;
	font-family: 'Josefin Sans', sans-serif;
	line-height: 1;
	letter-spacing: .2em;
	text-transform: uppercase;
	text-decoration: none;
	writing-mode: vertical-lr;
}

.scroll_down span::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 48%;
	width: 1px;
	height: 100px;
	background: rgba(255, 255, 255, .4);
}

.scroll_down span::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 48%;
	width: 1px;
	height: 100px;
	background: #fff;
}

.scroll_down span::after {
	animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


/*================================
メイン共通（main）
================================*/
main section {
	margin-top: 7rem;
}

.lm_block {
	margin-left: 9%;
	overflow: hidden;
}

.rm_block {
	margin-right: 9%;
	overflow: hidden;
}

.cm_block {
	margin-left: 9%;
	margin-right: 9%;
}

.l_separate , .r_separate , .c_separate{
	position: relative;
}


.t_txt_contents_box {
	overflow: hidden;
  margin-top: 50px;
}
.t_contents_box_l {
  width: 35%;
	float: left;
}

.t_contents_box_r {
  width: 35%;
	float: right;
}

section .t_contents_ttl , section .t_contents_disc {
	font-family : YuMincho,'Yu Mincho',serif;
}

.annotation {
	font-size: 0.5rem;
}

/*================================
コンセプト（CONCEPT）
================================*/


.t_concept .separate_txt {
	margin-left: 90px;
	color: #828282;
}

.t_concept .separate_txt::after {
	content: "";
	position: absolute;
	bottom: 45%;
	right: 0;
	width: 35%;;
	height: 1px;
	background: #828282;
}

.t_concept_right_contents {
	width: 65%;
	float: left;
}

.t_concept_image {
	background-image: url(images/koborebi.jpg);
	background-size: cover;
	height: 500px;
}

.t_concept_ttl {
	-ms-writing-mode: tb-rl;
    /* writing-mode: vertical-rl; */
    /* text-orientation: upright; */
    /* float: right; */
    letter-spacing: 2px;
    line-height: 60px;
    margin: 0 30px 0 90px;
    font-family: YuMincho,'Yu Mincho',serif;
    /* float: right; */
    /* text-align: right; */
}

.t_concept_disc {
	-ms-writing-mode: tb-rl;
    /* writing-mode: vertical-rl; */
    /* text-orientation: upright; */
    /* float: right; */
    letter-spacing: 2px;
    margin: 20px 30px 0 90px;
    font-family: YuMincho,'Yu Mincho',serif;
    /* text-align: right; */
}

.t_concept_contents_en {
	margin: 75px 0 0;
}

.t_txt_contents_en_box {
	color: #6b6b6b;
}

.t_contents_ttl_en {
	line-height: 2;
}

.learn_link {
	margin-top: 50px;
	text-align: right;
	margin-right: 100px;
}

.learn_link .ll_txt a::after{
	content: '';
  display: inline-block;
  width: 20px;
  height: 40px;
  background-image: url(./images/arrow_right.png);
  background-size: contain;
  vertical-align: middle;
	transition: all 0.5s;
}

.learn_link .ll_txt a:hover:after {
	transform: translate(10px,0);
	background-image: url(./images/arrow_right_shu.png);
}


.learn_link .ll_txt a {
	text-decoration: none;
	padding: 5px 0;
	border-bottom: solid 1px #000;
	color: #000;
	transition: all 0.5s;
	cursor: pointer;
}

.learn_link .ll_txt a:hover {
	text-decoration: none;
	padding: 5px 0;
	border-bottom: solid 1px #e94709;
	color: #e94709;
}


/*================================
プロダクト（PRODUCT）
================================*/
.t_product .separate_txt {
    margin-left: 200px;
    color: #828282;
}

.t_product .separate_txt::before {
	content: "";
    position: absolute;
    bottom: 45%;
    left: 0;
    width: 35%;
    height: 1px;
    background: #828282;
}


.t_product_ttl {
	-ms-writing-mode: tb-rl;
    /* writing-mode: vertical-rl; */
    /* text-orientation: upright; */
    /* float: right; */
    /* letter-spacing: 5px; */
    margin-right: 50px;
    font-family: YuMincho,'Yu Mincho',serif;
}

.t_product_disc {
	-ms-writing-mode: tb-rl;
    /* writing-mode: vertical-rl; */
    /* text-orientation: upright; */
    /* float: right; */
    letter-spacing: 2px;
    margin: 20px 50px 0 0;
    font-family: YuMincho,'Yu Mincho',serif;
}

.tpi {
	width: 65%;
	height: 500px;
	background-size: cover;
	float: left;
	background-position: center;
}

.t_p_image_l {
	background-image: url("images/gojiai_top_product_img.JPG");

}


/*================================
CBD
================================*/
.cbd_top .page_title{
	left: 55%!important;
}

.t_cbd_contents .separate_txt {
    margin-left: 140px;
    color: #828282;
}

.t_cbd_contents .separate_txt::before {
	content: "";
	position: absolute;
	bottom: 45%;
	left: 0;
	width: 10.24%;
	height: 1px;
	background: #828282;
}

.c_ttcb {
	width: 70%;
}

.c_ttcb_disc {
	margin-top: 20px;
	margin-bottom: 0;
}

.c_ttcb_disc_en {
	margin-top: 10px;
	color: #828282;
}

/*================================
スペース（break）
================================*/
.break {
	background-image: url(images/gojiai_top_break_img.JPG);
	background-size: cover;
	background-position-y: center;
}

.break_txt {
	width: 100%;
  padding: 150px 0;
}

.break_txt p {
	font-family: YuMincho,'Yu Mincho',serif;
	margin: 0 0 0 9%;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
}

.break_txt p.b_txt {
	opacity: 0;
}

.break_txt p.b_txt span {
	opacity: 0;
	font-family: YuMincho,'Yu Mincho',serif;
}

/*================================
インフォメーション（Infomation）
================================*/
section.infomation {
	background: #faf9f2;
	margin: 0;
	padding-top: 7rem;
	padding-bottom: 50px;
	padding-left: 9%;
	padding-right: 9%;
}

.c_separate {
	text-align: center;
}
.c_separate .separate_txt {
	position: relative;
	color: #828282;
}
	
.c_separate .separate_txt::before {	
	content: "";
	position: absolute;
	bottom: 45%;
	left: -120%;
	width: 100%;
	height: 1px;
	background: #828282;
}

.c_separate .separate_txt::after {	
	content: "";
	position: absolute;
	bottom: 45%;
	left: 120%;
	width: 100%;
	height: 1px;
	background: #828282;
}

.tie_up_ad {
	width: 300px;
    margin: 0 auto;
}

.tie_up_ad .banner {
	width: 200px;
    margin: 50px auto 10px;
}

.tie_up_ad .tie_up_ad_disc {
	width: 300px;
    text-align: center;
}


.t_info_posts_contents {
	overflow: hidden;
	width: 900px;
	margin: 100px auto 0;
}

.t_info_posts {
	width: 400px;
	margin: 0 25px;
	float: left;
}

.t_info_posts .date{
	font-family: 'Times New Roman', Georgia;
  font-style: italic;
	margin: 5px;
}

.t_info_posts .posts_title {
	font-size: 1rem;
	margin: 0 0 0 5px;
	line-height: 1;
	font-weight: 400;
}

.t_info_posts .posts_title a {
	color: #000;
	text-decoration: none;
}


footer {
	background: #e9ebec;
	position: relative;
	z-index: 1;
}

.footer_contents {
	padding-top: 50px;
}

.footer_contents .footer_logo {
	width: 40px;
	margin: 0 auto;
}

.footer_contents .footer_logo a svg {
vertical-align: bottom;
}

.footer_contents_nav_box {
	width: 82%;
	margin: 25px auto 0;
	overflow: hidden;
	padding-bottom: 25px;
	position: relative;
}

.footer_contents_nav_box ul {
	float: left;
	list-style: none;
	padding: 0;
	text-align: left;
	color: #4e4e4e;
	font-family: Roboto, Helvetica, Arial, "Noto Sans Japanese", "Hiragino Sans", ヒラギノ角ゴシック, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.5px;
}

.footer_contents_nav_box ul.r_list {
    margin-left: 200px;
}

.footer_contents_nav_box ul li {
  padding: 10px 0;
}

.footer_contents_nav_box ul li a {
	text-decoration: none;
	color: #4e4e4e;
}

.footer_contents_nav_box ul li a:hover {
	text-decoration: none;
	color: #000;
}

.footer_contents_nav_box .socialLink {
	width: 15px;
	position: absolute;
	bottom: 35px;
	right: 100px;
}


.pageTop {
	width: 40px;
	height: 40px;
	border: solid 1px #c1c1c1;
	border-radius: 40px;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	background: #fff;
	transition: all 0.3s ease;
}

.pageTop:hover {
	width: 50px;
	height: 50px;
	border: solid 1px #e94709;
	border-radius: 50px;
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	background: #e94709;
	transition: all 0.3s ease;

}

.pageTop .pt_arrow {
	background-image: url(images/arrow_up_2.png);
	background-size: cover;
	background-repeat: no-repeat;
	height: 40px;
	width: 40px;
	display: block;
	transition: all 0.3s ease;
}

.pageTop .pt_arrow:hover {
	background-image: url(images/arrow_up_w.png);
	background-size: cover;
	background-repeat: no-repeat;
	height: 50px;
	width: 50px;
	display: block;
	transition: all 0.3s ease;
}

.copyr {
	background: #e9ebec;
    text-align: center;
    font-size: 12px;
    color: #828282;
}

/*================================
個別ページ　コンセプト
================================*/
.c_top {
	background-image: url(images/hizashi.jpg);
	background-size: cover;	
}

.page_title {
    position: absolute;
    top: 40%;
    left: 7.5%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.products_page_title {
    position: absolute;
    top: 20%;
    left: 7.5%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.cbd_top .page_title{
	left: 55%!important;
}

.page_title h2.pttl {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	letter-spacing: 8px;
	font-family: YuMincho,'Yu Mincho',serif;
	font-weight: normal;
  color: #fff;
	line-height: 1;
}

.page_title h2.pttl {
	opacity: 0;
}

.page_title h2.pttl span {
	opacity: 0;
	font-family: YuMincho,'Yu Mincho',serif;
}

.cct_policy , .cct_story {
	width: 82%;
	margin: 100px auto;
}

.cct_policy .separate_txt , .cct_story .separate_txt {
	margin-left: 140px;
	color: #828282;
}

.cct_policy .separate_txt::before , .cct_story .separate_txt::before {
	content: "";
	position: absolute;
	bottom: 45%;
	left: 0;
	width: 10.42%;
	height: 1px;
	background: #828282;
}

.cct_policy .cct_policy_txt , .cct_story .cct_story_txt {
	margin: 50px 0 0 10%;
}

.cct_story .cct_story_txt .cct_story_title {
	font-family: YuMincho,'Yu Mincho',serif;
	font-size: 1.5em;
}

.cct_policy .cct_policy_txt p , .cct_story .cct_story_txt p {
	line-height: 2;
	letter-spacing: 1px;
}
.cct_story .cct_story_txt p {
	margin-top: 15px;
}

.cct_story_txt_2{
	margin-top: 150px!important;
}
.cct_story_2 {
	overflow: hidden;
}

.cct_story_2_sub_title{
	margin-top: 30px;
}
.cct_story_2_disc {
	width: 600px;
	float: left;
}
.cct_story_2_img {
	width: 200px;
    float: left;
    margin-left: 50px;
}

.cct_img {
	background-image: url(images/shimenawa.jpg);
	background-size: cover;
	height: 80vh;
}

.page_navigation {
	margin: 100px 20% 100px 9%;
}

.page_navigation .pn_left {
	float: left;
}

.page_navigation .pn_left  a::before{
	content: '';
  display: inline-block;
  width: 20px;
  height: 40px;
  background-image: url(./images/arrow_left.png);
  background-size: contain;
  vertical-align: middle;
	transition: all 0.5s;
}

.page_navigation .pn_left  a:hover:before {
	transform: translate(-10px,0);
	background-image: url(./images/arrow_left_shu.png);
}


.page_navigation .pn_left  a {
	text-decoration: none;
	padding: 5px 0;
	border-bottom: solid 1px #000;
	color: #000;
	transition: all 0.5s;
	cursor: pointer;
}

.page_navigation .pn_left a:hover {
	text-decoration: none;
	padding: 5px 0;
	border-bottom: solid 1px #e94709;
	color: #e94709;
}


/*================================
個別ページ　プロダクト
================================*/

.fv_img_box {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.fv_img_box img {
	/*width: 500px;*/
	/*position: absolute;*/
	/*top: 50%;*/
	/*left: 60%;*/
	/*transform: translate(-50%, -50%);*/
	/*-webkit-transform: translate(-50%, -50%);*/
	/*-ms-transform: translate(-50%, -50%);*/
}

.fv_img_box .p_img_disc {
    font-size: 0.8rem;
    padding-left: 70px;
    position: absolute;
    top: 80%;
}

.page_title h2.pttl_b {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	letter-spacing: 8px;
	font-family: YuMincho,'Yu Mincho',serif;
	font-weight: normal;
  color: #000;
	line-height: 1;
}

.page_title h2.pttl_b {
	opacity: 0;
}

.page_title h2.pttl_b span {
	opacity: 0;
	font-family: YuMincho,'Yu Mincho',serif;
}

.scroll_down_b {
	position: absolute;
	bottom: 0;
	left: 90px;
	z-index: 1;
}

.products_page_scroll_down_b {
	position: absolute;
	bottom: 50%;
	left: 90px;
	z-index: 1;
}

.scroll_down_b span {
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 2;
	padding: 0 0 110px;
	overflow: hidden;
	color: #000;
	font-size: 10px;
	font-family: 'Josefin Sans', sans-serif;
	line-height: 1;
	letter-spacing: .2em;
	text-transform: uppercase;
	text-decoration: none;
	writing-mode: vertical-lr;
}

.scroll_down_b span::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 48%;
	width: 1px;
	height: 100px;
	background: rgb(88 88 88 / 40%);
}

.scroll_down_b span::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 48%;
	width: 1px;
	height: 100px;
	background: #000;
}

.scroll_down_b span::after {
	animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.products_lineup {
    width: calc(100vw - 30%);
    margin: 0 15%;
    position: absolute;
    top: 0;
}

.pl_img_box {
	width: 40%;
    float: left;
	margin-left: 7.5%;
	height: 750px;
	margin-top: 100px;
}
.pl_img_box img {
	padding-bottom: 30px;
}

.p_copy h3 {
	font-family: YuMincho,'Yu Mincho',serif;
	font-size: 1.5em;
}

.p_img_disc {
	margin-top: 15px;
}

.shop_link {

}

.shop_link .learn_link {
	margin-right: 30px;
	margin-top: 0px
}

.pdt_contents {
	margin:0 0 100px;
}

.pdt_contents .pdt_ttl {
	line-height: 1.5;
}

.pdt_contents p {
	margin-top: 30px;
}

.pdt_contents_box , .pdtd {
	width: 82%;
	margin: 100px auto 0;
}

.pdt_txt_box , .pdt_sec_txt_box {
	width: 80%;
	margin: 0 auto;
}

.pdtd .learn_link {
	width: 80%;
	margin: 0 auto;
	text-align: right;
}

.pdt_img {
	margin-top: 100px;
    background-image: url(images/g_h_img_00_2.jpg);
    background-size: cover;
    height: 80vh;
    background-position: top;
}

.pdt_details_img {
	position: relative;
	margin-top: 100px;
	/*background-image: url(images/nouen.jpg);
	background-size: cover;*/
	height: 80vh;
}

.pdt_details_img video {
	width: 100%;
	height: 80vh;
	object-fit: cover;
}

.mov::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 80vh;
    background-color: rgb(0 0 0 / 0%);
    background-image: radial-gradient(#333333 40%, transparent 41%), radial-gradient(#333333 40%, transparent 41%);
    background-size: 2px 2px;
    background-position: 0 0, 1px 1px;
}

/*------------ モーダルコンテンツ　------------*/


.modal_01{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
	z-index: 3;
}
.modal_01:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.modal_01:target{
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}
.modal_01 .overlay{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000;
  opacity: 0.7;
  top: 0;
  left: 0;
}
.modal-wrapper{
  width: 100%;
  max-width: 650px;
  min-width: 300px;
  height: 100%;
  max-height: 550px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-contents{
  overflow: auto;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
}
.modal-content{
  margin: 25px;
}
.modal-close{
  position: absolute;
  top: 5px;
  right: 10px;
  text-decoration: none;
}


/* モーダルCSS */
.modalArea_01 , .modalArea_02 , .modalArea_03 , .modalArea_04{
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg_01 , .modalBg_02 , .modalBg_03 , .modalBg_04 {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 500px;
	background-color: #fff;
	height: 80%;
	overflow: auto;
}

.modalContents {
	position: relative;
}

.modalImg_01 {
	background-image: url(images/g_h_img_00.jpg);
}
.modalImg_02 {
	background-image: url(images/rowhoney.jpg);
}
.modalImg_03 {
	background-image: url(images/g_img_fv_02.jpg);
}
.modalImg_01 , .modalImg_02 , .modalImg_03 , .modalImg_04 {
	background-size: cover;
	height: 300px;
}

.modalTxt {
	padding: 30px;
}

.closeModal_01 , .closeModal_02 , .closeModal_03 , .closeModal_04 {
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	cursor: pointer;
	color: #fff;
}

.buy_link {
	position: absolute;
	top: 85%;
	left: calc(50% + 330px);
	transform: translate(-50%,-50%);
}

.mdl_shop_link .ll_txt a::after{
	content: '';
  display: inline-block;
  width: 20px;
  height: 40px;
  background-image: url(./images/arrow_right_w.png);
  background-size: contain;
  vertical-align: middle;
	transition: all 0.5s;
}

.mdl_shop_link .ll_txt a:hover:after {
	transform: translate(10px,0);
	background-image: url(./images/arrow_right_shu.png);
}


.mdl_shop_link .ll_txt a {
	text-decoration: none;
	padding: 5px 0;
	border-bottom: solid 1px #fff;
	color: #fff;
	transition: all 0.5s;
}

.mdl_shop_link .ll_txt a:hover {
	text-decoration: none;
	padding: 5px 0;
	border-bottom: solid 1px #e94709;
	color: #e94709;
}

/*================================
個別ページ　CBD
================================*/

.cbd_contents {
	margin:0 0 100px;
}

.cbd_contents .pdt_ttl {
	line-height: 1.5;
}

.cbd_contents p {
	margin-top: 30px;
}

.cbd_contents_box , .pdtd {
	width: 82%;
	margin: 100px auto 0;
}

.cbd_txt_box , .cbd_sec_txt_box {
	width: 80%;
	margin: 0 auto;
}

.oc_mark_area {
    width: 1000px;
    margin: 70px auto;
    overflow: hidden;
}

.oc_mark_area ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oc_mark_area ul li {
  float: left;
  width: 160px;
  padding: 20px;
  height: 205px;
  text-align: center;
}

.oc_mark_area ul li img{
  width: 100px;
}

.oc_mark_area ul li span {
  text-align: center;
  display: block;
  padding-top: 10px;
  font-size: 0.7rem;
} 





.cbd_img {
	margin-top: 100px;
	background-image: url(images/g_cbd_img_00.jpg);
	background-size: cover;
    height: 100vh;
    background-position-y: -80px;
}


/*================================
個別ページ　コンタクト
================================*/
.contents_area {
	margin: 100px 15% 100px 9%;
	overflow: hidden;
}

.contact_area_wrapper {
	width: 80%;
  margin: 0 auto;
}

.contents_header {
	width: 300px;
	margin: 0 auto 100px;
	text-align: center;
}

.contents_header span {
	color: #4e4e4e;
	font-family: Roboto, Helvetica, Arial, "Noto Sans Japanese", "Hiragino Sans", ヒラギノ角ゴシック, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.5px;
}

.contents_header h2 {
	font-family: YuMincho,'Yu Mincho',serif;
	line-height: 2;
	letter-spacing: 1px;
	font-size: 16px;
  font-weight: 500;
}

input[type="text"], [type="email"] {
	height: 50px;
	max-width: 380px;
	border: none;
	border-bottom: 1px solid #ccc;
}

label textarea {
	border: 1px solid #ccc;
}

input[type="submit"] {
	height: 80px;
	border-radius: 0;
	max-width: 380px;
	background: #525252;
-webkit-transition: background .3s;
	transition: background .3s;
}

input[type="submit"]:hover {
	background: #000;
}

/*================================
個別ページ　会社概要
================================*/

.company_area_wrapper {
	width: 80%;
  margin: 0 auto;
}

.company_bio dl {
	margin: 100px 0;
}

.company_bio dt.cb_item {
	float: left;
	color: #717171;
}

.company_bio dt.cb_disc {
	margin-left: 100px;
}

/*================================
アーカイブ一覧　インフォメーション
================================*/
.info_area_wrapper {
	margin-bottom: 100px;
}

.infomation_list , .p-navi {
	width: 80%;
	margin: 0 auto;
}

.infomation_list dl {
	margin: 25px 0;
}

.infomation_list a {
	text-decoration: none;
  color: #000;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.infomation_list a:hover {
	color: #9B9B9B;
}

.infomation_list .date {
	font-family: 'Times New Roman', Georgia;
	font-style: italic;
	line-height: 2;
	margin-right: 50px;
	float: left;
	width: 100px;
}

.p_navi .pages {
	color: #000;
}

/*================================
個別ページ　メディアキット
================================*/
.mediakit_disc {
	width: 600px;
    margin: 0 auto;
}

.mediakit_disc dl {
	margin: 100px 0;
}

.mediakit_disc dt.cb_item {
	float: left;
	color: #717171;
}

.mediakit_disc dt.cb_disc {
	margin-left: 300px;
}

.mediakit_disc dt.cb_disc a {
	text-decoration: none;
}

.mediakit_disc dt.cb_disc span {
    font-size: 10px;
    color: #fff;
    padding: 10px 20px;
    background: #231815;
    border-radius: 50px;
    transition: .5s all;
}

.mediakit_disc dt.cb_disc span:hover {
	color: #999;
	background: #fff;
	border: solid 1px #999;
}

/*================================
記事ページ　single.php
================================*/

.contents_area .post{
	width: 60%;
  margin: 0 auto;
}

.contents_area .post .st-eyecatch {
	margin: 0;
}

.contents_area .post .date {
	font-family: 'Times New Roman', Georgia;
	font-style: italic;
	line-height: 2;
	margin-top: 20px;
}

.contents_area .post .entry-title {
	font-family: YuMincho,'Yu Mincho',serif!important;
	line-height: 1;
	letter-spacing: 1px;
	font-size: 1.3rem!important;
	font-weight: 100!important;
}

.contents_area .post .entry-content p {
	font-family: YuMincho,'Yu Mincho',serif;
	line-height: 2;
	letter-spacing: 1px;	
}


/*================================
404　404.php
================================*/


.nf_header {
	width: 300px;
	margin: 100px 0 100px;
	text-align: left;
}

.nf_header h2 {
	font-weight: bold;
	font-size: 1.3rem;
}

.nf_disc_box {
	margin-bottom: 200px;
}

/*================================
販売終了モーダル
================================*/
.modal-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-out;
  z-index: 9;
}
 
.modal-container::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
 
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
 
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 60%;
  width: 90%;
}
 
 
.modal-content {
  background: #fff;
  text-align: left;
  padding: 30px;
}

.mcimg {
  width: 40px;
  margin: 40px auto 70px;
}
.modal-content .txt{
  font-family: YuMincho, 'Yu Mincho', serif!important;
  line-height: 2;
  letter-spacing: 1px;
  color: #4e4e4e;
}

.modal-content .btn-area{
  margin: 50px auto;
  text-align: center;
} 
.modal-content .btn-area a{
  font-family: YuMincho, 'Yu Mincho', serif!important;
  letter-spacing: 1px;
  color: #fff;
  padding: 10px 20px;
  background: #000;
  text-decoration: none;
}

