@charset "UTF-8";
html {
	font-size: 62.5%;
}
pc_area {
	display: block;
}
phone_area {
	display: none;
}
/*下部固定ボタン_SP*/
#page-top {
    position: fixed;
    bottom: 50px;
    right: 0px;
}
#page-top a {
    
    text-decoration: none;
    color: #fff;
    width: 100%;
    padding: 0px;
    display: block;
}
#page-top a:hover {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
#page-top {
    position: fixed;
    bottom: 20px;
    left: 0px;
}
#page-top a {
    
    text-decoration: none;
    color: #fff;
    width: 40%;
    padding: 0px;
    text-align: center;
    display: block;
}
#page-top a:hover {
    text-decoration: none;
}
}


/* マウスリンク */

a img.mouselink {
	background: none!important;
}
a:hover img.mouselink {
	opacity: 0.4;
	filter: alpha(opacity=40);
	-ms-filter: "alpha( opacity=40 )";
	background: none!important;
}
/*表示・非表示PCとSP*/

.pc {
	display: inline!important;
}
.mb {
	display: none!important;
}
@media screen and (max-width: 768px) {
	/*タブレット、スマホの場合*/
	.pc {
		display: none!important;
	}
	.mb {
		display: inline!important;
	}
}
/*エフェクト*/

/* 画面外にいる状態 */

.fadein {
	opacity: 0.1;
	transform: translate(0, 50px);
	transition: all 500ms;
}
/* 画面内に入った状態 */

.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
/*リンク設定*/

a {
	color: #fff;
	transition: opacity 0.4s linear;
	text-decoration: none;
}
body {
	background-color: #fff;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	min-width: 1000px;
	margin: 0px auto;
}
.auto {
	background-color: #fff;
}
*, *:before, *:after {
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0 auto;
}
/*==================================================
アコーディオン_offerエリア
===================================*/
.accordion_img {
	vertical-align: bottom;
	width: 100%;
}
.w_1200{
	margin: 0 auto;
  max-width: 1200px;
	overflow: hidden;
	text-align: center;
	margin-top: -5px;
}
@media screen and (max-width: 800px) {
.accordion_img {
    height: 100%;
    width: 150%;
    margin: 0 -50%;
}
}
/*基本css*/

/*アコーディオンcss*/
dl {
    margin: 0;
}
.accordionlist dt{
    display:block;
}
.accordionlist dt:first-child{
    border-top: none !important;
}
.accordionlist dt .title{
    padding-left: 0px;
}
.accordionlist dd{
    display:none;
	padding:0;
	margin: 0 auto;
}
/*アコーディオンcss*/

/*==================================================
各種アニメーション
===================================*/
.dokidoki{   
    animation-name:dokidoki;
    animation-delay:0s;	
    animation-duration: 2.5s;	
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
 
@keyframes dokidoki {
    0% {
        transform: scale(1);
    }
 
    40% {
        transform: scale(1.2);
    }
 
    50% {
        transform: scale(1.2);
    }
    
    80% {
        transform: scale(1);
    }
     
    100% {
        transform: scale(1);
    }
}
/* ふわっ */

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* その場で */

.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* 右から */

.fadeRight {
	animation-name: fadeRightAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeRightAnime {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
/* 左から */

.fadeLeft {
	animation-name: fadeLeftAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeLeftAnime {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
/* 拡大 */
.zoomIn{
  animation-name:zoomInAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
  transform: scale(0.6);
  }

  to {
      transform: scale(1);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
	opacity: 0;
}
.fadeInTrigger {
	opacity: 0;
}
.fadeRightTrigger {
	opacity: 0;
}
.fadeLeftTrigger {
	opacity: 0;
}

/*==================================================
ページ全体
===================================*/
.container-wb {
	margin: 0px auto;
	padding-top: 0px;
	padding-bottom: 0px;
	background-color: #fff;
	margin-top: 0px;
	margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
	.container-wb {
		width: 100%;
		margin: 0px auto;
		margin-bottom: 0px;
		margin-top: 0px;
		padding: 0px auto;
		padding-bottom: 0px;
		padding-top: 0px;
		overflow: hidden;
	}
}
/*==================================================
コンテンツ
===================================*/
/* 基本のコンテンツボックス */
.box {
	width: 750px;
	margin: 0 auto;
	padding: 0px;
	text-align: center;
}
.box p {
	margin: 30px;
	text-align: left;
	font-size: 18px;
	line-height: 1.8em;
}
/* 動画box */
.box_tokuten {
	width: 750px;
	margin: 0 auto;
	padding: 0px;
	text-align: center;
	background-color: #000000;
}
.box_tokuten p {
	margin: 30px;
	text-align: left;
	font-size: 18px;
	line-height: 1.8em;
}
@media screen and (max-width: 767px) {
	
	.box {
		width: 100%;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
		padding: 0px;
	}
	.box p {
		margin: 30px;
		text-align: left;
		font-size: 16px;
		line-height: 1.8em;
	}
	.box_tokuten {
		width: 100%;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
		padding: 0px;
	}
	.box_tokuten p {
		margin: 30px;
		text-align: left;
		font-size: 16px;
		line-height: 1.8em;
	}
}
/* タブコンテンツボックス */
.box_tab {
	width: 750px;
	margin: 0 auto;
	padding: 60px 0px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	
	.box_tab {
		width: 100%;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
		padding: 40px 0px;
	}
}
/* カルーセル用 */
.box_sl {
	width: 750px;
	margin: 0 auto;
	padding: 0px 15px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	
	.box_sl {
		width: 100%;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
		padding: 0px 15px;
	}

}
/* Q&Aボックス */
.box_gray {
	width: 750px;
	margin: 0 auto;
	padding: 30px 30px 60px 30px;
	text-align: left;
	font-size: 20px;
	background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
	
	.box_gray {
		width: 100%;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
		font-size: 14px;
		padding: 30px 20px 60px 20px;
		background-color: #f5f5f5;
	}
}
/* ショップガイド */
.box_bk {
	width: 750px;
	margin: 0 auto;
	padding: 30px 30px 60px 30px;
	text-align: left;
	font-size: 16px;
	background-color: #171717;
}
@media screen and (max-width: 767px) {
	
	.box_bk {
		width: 100%;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
		text-align: left;
		padding: 30px 20px 60px 20px;
		background-color: #171717;
	}
}
.box_bk p {
	text-align: left;
}

/* 基本のコンテンツボックス_エフェクトあり */
.box_ef {
	width: 750px;
	margin: 0 auto;
	padding: 0px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.box_ef {
		width: 100%;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
		padding: 0px;
	}
}
/* footer */
.footer {
	width: 750px;
	margin: 0 auto;
	padding: 0px;
	position: relative;
	background-color: #000;
}
@media screen and (max-width: 767px) {
	.footer {
		width: 100%;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
		padding: 0px;
	}
}
.footer_link {
	position: absolute;
	top: 76%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 80%;
	text-align: center;
	width: 100%;
}
.footer_tel {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 74%;
	text-align: center;
}
/* オファーエリア */
.box_offer {
	width: 750px;
	margin: 0 auto;
	padding: 0px 0px 20px 0px;
	position: relative;
	background-image: url("../images/offer/offer_bg.jpg"); 
}
@media screen and (max-width: 767px) {
	.box_offer {
		width: 100%;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
		padding: 20px 0px 20px 0px;
	}
}
/* オファーエリア_アコーディオン*/
.box_offer2 {
	width: 750px;
	margin: 0 auto;
	padding: 0px 0px 40px 0px;
	position: relative;
	background-image: url("../images/offer/offer_bg.jpg"); 
}
@media screen and (max-width: 767px) {
	.box_offer2 {
		width: 100%;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
		padding: 0px 0px 20px 0px;
	}
}
.cta_btn {
	position: absolute;
	top: 78%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
}

button {
  /* 背景色を無色に */
  background: transparent;
  /* 枠線を消す */
  border: none;
  /* クリックした際に枠線をnone消す */
  outline: none;
  /* 影を消す */
  box-shadow: none;
  padding: 0px;
}
/*==================================================
動く要素
===================================*/
/* 01_日本初のダブルヘルスクレーム取得 */
.authority {
	position: absolute;
	top: 16%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
/* 02_開発者ストーリー */
.story1 {
	position: absolute;
	top: 20%;
	left: 5%;
	width: 70%;
}
.story2 {
	position: absolute;
	top: 33%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
/* 03_about_ブラックジンジャーと乳酸菌の説明 */
.about1 {
	position: absolute;
	top: 47%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
}
.about2 {
	position: absolute;
	top: 51%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
}
/* 04_award_売上No,1 */
.award1 {
	position: absolute;
	top: 21%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
}
.award2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 93%;
}
/* 05_worries_こんなお悩みありませんか？ */
.worries1 {
	position: absolute;
	top: 2%;
	right: 10%;
	width: 78%;
}

.worries2 {
	position: absolute;
	top: 13%;
	left: 0%;
	width: 42%;
}

.worries3 {
	position: absolute;
	top: 40%;
	right: 0%;
	width: 45%;
}

.worries4 {
	position: absolute;
	top: 67%;
	left: 0%;
	width: 42%;
}
.reasons_ttl {
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
}
.reasons_jinger {
	position: absolute;
	top: 84%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
}
.reasons_capsule {
	position: absolute;
	top: 38%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30%;
}
.voice1 {
	position: absolute;
	top: 8%;
	left: 9%;
	width: 20%;
}
.voice2 {
	position: absolute;
	bottom: 23%;
	right: 4%;
	width: 25%;
}
.v1_txt {
	position: absolute;
	bottom: 5%;
	right: 0%;
	width: 70%;
}
.v2_txt {
	position: absolute;
	bottom: 5%;
	left: 0%;
	width: 70%;
}
.catch {
	position: absolute;
	top: 22%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
}
.doctor_ttl {
	position: absolute;
	top: 47%;
	left: 4%;
	width: 80%;
}
.doctor_movie {
	position: absolute;
	top: 17%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
}
.doctor_profile {
	position: absolute;
	top: 59%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/*よくあるご質問*/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	overflow-x: hidden;
	margin: 0 auto;
	color: #000;
}
.cp_qa .cp_actab {
	padding: 15px 0;
	border-bottom: 1px dotted #cccccc;
}
.cp_qa label {
	font-size: 1.2em;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 48px;
	cursor: pointer;
}
.cp_qa .cp_actab-content {
	font-size: 1em;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 33px;
	padding: 0 14px;
	font-size: 17px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
}
.cp_qa .cp_plus {
	font-size: 2.4em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	color: #f5472a;
	margin: 1px 0 0 10px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}

/*ショップガイドの設定*/
.guide {
    max-width: 700px;
    margin-bottom: 10px;
    border: none;
	text-align: left;
    border-radius: 25px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
}

.guide summary {
    display: flex;
    justify-content: space-between;
    align-items: left;
    position: relative;
	font-size: 110%;
    padding: 0.5em 0.5em 0.5em 1.5em;
    color: #222;
    font-weight: 600;
}

.guide summary::before,
.guide p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.guide summary::before {
    color: #666;
    content: "";
}

.guide summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #ffffffb3;
    border-right: 3px solid #ffffffb3;
    content: "";
    transition: transform .5s;
}

.guide[open] summary::after {
    transform: rotate(225deg);
}

.guide p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 1em 1.5em 1.5em;
    color: #333;
	font-size: 14px;
    transition: transform .5s, opacity .5s;
}

.guide[open] p {
    transform: none;
    opacity: 1;
}

.guide p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "";
}
/* タブのためのcss */
.tab_container {
  padding-bottom: 1em;
  background-color: #fff;
  margin: 0 auto;}

.tab_item {
  width: calc(100%/2);    /*100%/4を100%/2に変更*/
  padding: 0px;
  text-align: center;
  color: #37beb0 ;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;   
  margin-bottom: -5px; 
}
.tab_item:hover {
  opacity: 0.75;
}
input[name="tab_item"] {
  display: none;
}
.tab_content {
  display: none;
  padding: 1em 0em ;
  clear: both;
  overflow: hidden;
}
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content 
{
  display: block;
}
.tab_container input:checked + .tab_item {
  color: #fff;
}


/*------ スライダーの横幅 ------*/
.slider{
  width:100%;
  margin:0 auto;
}

/*------ スライダー画像 ------*/
.slider img{
	width:100%;
}

/*-------- 高さ調整 ----------*/
.slider .slick-slide{
	height:auto!important;
}

/*---------- 矢印 ----------*/
.slider .slick-next{
    right:0!important;
}
.slider .slick-prev{
    left:0!important;
}
.slider .slick-arrow{
    width: initial!important;
    height: initial!important;
    z-index:2!important;
}
.slider .slick-arrow:before{
    font-size: 40px!important;
	color:#333;!important;
}
/*------ スライダーの横幅 ------*/
.slider2{
  width:100%;
  margin:0 auto;
}

/*------ スライダー画像 ------*/
.slider2 img{
	width:100%;
}

/*-------- 高さ調整 ----------*/
.slider2 .slick-slide{
	height:auto!important;
}

/*---------- 矢印 ----------*/
.slider2 .slick-next{
    right:0!important;
}
.slider2 .slick-prev{
    left:0!important;
}
.slider2 .slick-arrow{
    width: initial!important;
    height: initial!important;
    z-index:2!important;
}
.slider2 .slick-arrow:before{
    font-size: 40px!important;
	color:#333;!important;
}

/*---------- 医師経歴モーダル ----------*/
.modal-002__wrap input {
    display: none;
}

.modal-002__open-label,
.modal-002__close-label {
    cursor: pointer;
}

.modal-002__open-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75%;
    margin:0 auto;
    padding: 2em 2em;
    border: none;
    border-radius: 5px;
    background-color: #6f9cac;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.7em;
}

.modal-002__open-label:hover {
    background-color: #fff;
    color: #6f9cac;
    outline: 1px solid #6f9cac;
}

.modal-002 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-002__open-input:checked + label + input + .modal-002 {
    display: block;
    animation: modal-002-animation .6s;
}

.modal-002__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 650px;
    background-color: #fff;
    z-index: 2;
}

.modal-002__close-label {
    background-color: #777;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 36px;
    height: 36px;
    line-height: 1.6;
    text-align: center;
    display: table-cell;
    position: fixed;
    top: -15px;
    right: -2%;
    z-index: 99999;
    font-size: 1.5em;
}

.modal-002__content {
    max-height: 50vh;
    overflow-y: auto;
    padding: 39px 45px 40px;
}

.modal-002__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

@keyframes modal-002-animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 520px) {
    .modal-002__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-002__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-002__content-wrap {
        width: 90vw;
    }

    .modal-002__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}
/*containerの設定*/

.container {
	width: 100%;
	margin: 0px auto;
}
.br-onlypc {
	display: block;
}
.br-onlysp {
	display: none;
}
.image {
	line-height: 0;
}


.js-end {
	background-color: #000;
	font-size: 50px;
	font-weight: bold;
	color: #ff0000;
	text-align: center;
	max-width: 930px;
	margin: 0 auto;
	padding: 2rem 0;
}
@media screen and (max-width: 767px) {
	body {
		min-width: 100%;
		line-height: 1.5;
	}
	.auto {
		background-color: #fff;
	}
	pc_area {
		display: none;
	}
	phone_area {
		display: block;
	}

	/* フッター */

	.footer2 {
		padding-top: 0px;
		padding-bottom: 0px;
		text-align: center;
		width: 100%;
		z-index: 100;
		position: fixed;
		/*←絶対位置*/
		bottom: 0;
		/*下に固定*/
	}
}