@charset "utf-8";
/* ------------------------------------------------
# Responsive Web Design 
	#0. Common module adjust
	#1. Base
	#2. Module & Utility
	#3. Contents
	#4. JS Styles

* Breakpoints: 
	PC(fluid)   => (max-width: 980px)
	SP / Tablet => (max-width: 767px)
	SP          => (max-width: 480px)
	Tablet      => (min-width: 481px) and (max-width: 767px)

* Load pages: 
	// Page or Category => [path] [body class]
	company        => [/softdrink/company/] [#company]

* add to HTML <link> Tag:
	<link href="/softdrink/common/rwd/css/common.css" rel="stylesheet" media="screen">

------------------------------------------------ */

/* ------------------------------------------------
#0. Common module adjust
------------------------------------------------ */


/* ------------------------------------------------
#1. Base
------------------------------------------------ */
/* default style reset */
body {
	min-width: 980px;
	-webkit-text-size-adjust: 100%;
}
img {
	border: none;
}
/* base font size */
.fs-base {
	font-size: 1em;
	color: #666;
	line-height: 1.4;
}
.fs-pc_14 {
	font-size: 0.875em;
}
.fs-pc_16 {
	font-size: 1.000em;
}
.fs-pc_20 {
	font-size: 1.250em;
}
.fs-pc_24 {
	font-size: 1.500em;
}
.fs-pc_36 {
	font-size: 2.250em;
}
@media screen and (max-width: 767px){
	.fs-base {
		font-size: 0.750em;
	}
	.fs-sp_11 {
		font-size: 0.688em;
	}
	.fs-sp_12 {
		font-size: 0.750em;
	}
	.fs-sp_13 {
		font-size: 0.813em;
	}
	.fs-sp_14 {
		font-size: 0.875em;
	}
	.fs-sp_16 {
		font-size: 1.000em;
	}
	.fs-sp_18 {
		font-size: 1.125em;
	}
}
/* basic_link */
.basic_link {
	margin-top: 15px;
}
.basic_link a {
	color: #56bad5;
	text-decoration: none;
}
/* base list */
.basic_list,
.basic_list li,
.basic_list .headline,
.basic_list_headline {
	color: #666;
}
/* base table */
.basic_table {
	width: 100%;
	border-top: 1px solid #E6E6E6;
	border-left: 1px solid #E6E6E6;
	border-spacing:0px;
}
.basic_table tr th,
.basic_table tr td {
	border-bottom: 1px solid #E6E6E6;
	border-right: 1px solid #E6E6E6;
	padding: 30px 5px 15px 20px;
	color: #666;
	font-size: 14px;
	vertical-align: top;
	text-align: left;
}
.basic_table tr th {
	background: #F2F2F2;
	width: 25%;
}
.basic_table tr td {
	width: 75%;
}
@media screen and (max-width: 767px){
	.basic_table {
		margin: 0 auto;
		width: 96.5%;
	}
	.basic_table tr th,
	.basic_table tr td {
		padding: 2%;
	}
	.basic_table tr th {
		width: 35%;
	}
	.basic_table tr td {
		width: 65%;
	}
}
.sp-line_break {
	display: inline;
}
@media screen and (max-width: 767px){
	.sp-line_break {
		display: block;
	}
}

@media screen and (max-width: 767px){
	body {
		background-color: #B8E3F0;
		min-width: 320px;
	}
}

/* ------------------------------------------------
#2. Modules & Utilitys
------------------------------------------------ */
/* device display */
.hide-pc {
	display: none;
}
@media screen and (max-width: 767px){
/* device display */
	.hide-sp {
		display: none !important;
	}
	.show-sp {
		display: block !important;
	}
/* sp display zoom */
	.sp-zoom:before {
		content: '拡大してご覧いただけます';
		display: block;
		height: 20px;
		font-size: 15px;
		line-height: 20px;
		font-weight: bold;
		padding-left: 25px;
		color: #8ad7ea;
		background: url(/company/common/layout/responsive/img/zoom.png) no-repeat;
		background-size: 20px auto;
		-moz-background-size: 20px auto;
		-webkit-background-size: 20px auto;
		background-position: 0 0;
	}
}

/* side image */
.image-left {
	width: 100%;
	display: table;
	*display: block;
}
.image-left .image ,
.image-left .text {
	display: table-cell;
	*display: inline;
	*zoom: 1;
}
.image-left .image {
	width: 40%;
	vertical-align: middle;
}
.image-left .image img {
	width: 100%;
	vertical-align: top;
	padding-right: 11.11%;
}
.image-left .text {
	width: 60%;
}
@media screen and (max-width: 767px){
	.image-left,
	.image-left .image,
	.image-left .text {
		display: block;
		width: 100%;
	}
	.image-left .image {
		margin: 0 auto;
	}
	.image-left .image img { 
		padding-right: 0;
	}
}

/* subNav | fixedNav */
#subNav.fix #fixedNav {
	border-bottom: 1px solid #e6e6e6;
	height: auto;
	opacity: 1;
}
#fixedNav {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background: rgb(255,255,255);/*ie8*/
	background: rgba(255,255,255,0.95);
	z-index: 100;
	overflow: hidden;
	height: 0;
	opacity: 0;
	-webkit-transition: all linear .3s;
	transition: all linear .3s;
}
#fixedNav label {
	display: none;
	position: relative;
}
#fixedNav label h1 {
	font-size: 0.875em;
	font-weight: bold;
	color: #5bc2dc;
}
#fixedNav .sp-open {
	display: none;
}
/* .btn-list */
#subNav.fix .btn-list {
	opacity: 0;
	-webkit-transition: all linear .3s;
	transition: all linear .3s;
}
#subNav .btn-list li {
	display: table;
	*display: block;
	float: left;
	width: 50%;
	height: 50px;
	margin-bottom: 10px;
}
#subNav .btn-list li+li {
	padding-left: .5%;
}
#subNav .btn-list.col-4 li {
	width: 25%;
	padding-left: .5%;
}
#subNav .btn-list.col-5 li {
	width: 20%;
	padding-left: .5%;
}
#subNav .btn-list.col-6 li {
	width: 16.66%;
	padding-left: .5%;
}

#subNav .btn-list li > a {
	position: relative;
	display: table-cell;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	overflow: hidden;
	width: 100%;
	height: 100%;
	padding: 2px 28px;
	color: #fff;
	text-decoration: none;
	background: #ccc;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	transition: all ease-in .3s;
	-webkit-transition: all ease-in .3s;
}
#subNav .btn-list.col-4 li > a {
	padding: 2px 10px;
}
#subNav .btn-list.col-5 li > a {
	padding: 2px 10px;
}
#subNav .btn-list.col-6 li > a {
	padding: 2px 6px;
}
#subNav .btn-list a.row2 {
	padding-top: 7px;
}
#subNav .btn-list .current a,
#subNav .btn-list li > a:hover {
	text-decoration: none;
	background: #5bc2dc;
}
#fixedNav .btn-list {
	width: 100%;
	max-width: 900px;
	margin: 10px auto 0;
}
#subNav.fix #fixedNav .btn-list {
	opacity: 1;
}
@media screen and (max-width: 980px){
/*	#fixedNav {
		padding-left: 10px;
		padding-right: 10px;
	}
	#fixedNav .btn-list {
		width: 100%;
		padding-left: 30px;
		padding-right: 30px;
	}*/
}
@media screen and (max-width: 767px){
/* subNav | fixedNav */
	#subNav.fix #fixedNav {
		border-bottom: 1px solid #5bc2dc;
	}
	#fixedNav {
		padding-left: 0;
		padding-right: 0;
	}
	#fixedNav label {
		display: block;
		height: 40px;
		line-height: 40px;
		text-indent: 6px;
		text-align: left;
	}
	#fixedNav label a {
		background-color: transparent;
	}
	#fixedNav .sp-open {
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
	#fixedNav .sp-open:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		height: 40px;
		width: 40px;
		background: #5bc2dc url(../img/toggle_open_close.png) no-repeat 0 0;
		background-size: 40px 80px;
	}
	#fixedNav.open .sp-open:after {
		background-position: 0 -40px;
	}
/* .btn-list */
	#subNav .btn-list li {
		width: 50%;
		margin-bottom: 3px;
		margin-left: 0;
		height: 44px;
		border: none;
	}
	#subNav .btn-list.col-4 li,
	#subNav .btn-list.col-5 li,
	#subNav .btn-list.col-6 li {
		width: 50%;
		margin-left: 0;
		border: none;
	}
	#subNav .btn-list li:nth-child(odd) {
		padding-right: .5%;
	}
	#subNav .btn-list li:nth-child(even) {
		padding-left: .5%;
	}
	#subNav .btn-list li > a {
		font-size: 0.750em;
		width: 100%;
		height: 100%;
		padding: 0 8px 0 4%;
	}
	#subNav .btn-list.col-4 li > a,
	#subNav .btn-list.col-5 li > a,
	#subNav .btn-list.col-6 li > a {
		padding: 0 8px 0 4%;
	}
	#subNav .btn-list a.row2 {
		padding-top: 0;
	}
	#fixedNav .btn-list {
		width: auto;
		height: 0;
		overflow: hidden;
		margin: 0 2.2%;
		-webkit-transition: all ease-out .3s;
		transition: all ease-out .3s;
	}
	#subNav.fix .btn-list {
		opacity: 1;
		padding-left: 0;
		padding-right: 0;
	}
	#fixedNav.open .btn-list {
		opacity: 1;
		height: 47px;
		margin-top: 4px;
	}
	#fixedNav.open .btn-list.col-4 {
		height: 94px;
	}
	#fixedNav.open .btn-list.col-5,
	#fixedNav.open .btn-list.col-6 {
		height: 142px;
	}
}

/* SBF Group box */
.sbf_group .group-title {
	font-size: 28px;
	font-weight: bold;
	color: #444;
	margin: 40px 0 30px;
}
#sbf_main_cnt_board .sbf_group .group-title a {
	display: inline-block;
	position: relative;
	text-decoration: none;
	color: #2d8ec1;
	padding-right: 180px;
	line-height: 1.4;
}
#sbf_main_cnt_board .sbf_group .group-title a:hover {
	opacity: .7;
	text-decoration: none;
}
#sbf_main_cnt_board .sbf_group .group-title a[target=_blank]:after {
	position: absolute;
	top: 4px;
	right: 0;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	content: 'Webサイト';
	font: normal 14px/1 Arial, Helvetica, sans-serif;
	background: #5bc2dc url(../img/parts.png) 105px -180px no-repeat;
	color: #fff;
	width: 140px;
	margin-left: 0;
	padding: 8px 0;
	text-align: center;
	text-indent: -10px;
}
.sbf_group + .sbf_group {
	border-top: 1px solid #e6e6e6;
}
.sbf_group .group-lead {
	font-size: 1em;
	font-weight: bold;
	color: #666;
}
.sbf_group .group-list {
	padding: 40px 0;
}
.sbf_group .group-list dt {
	color: #2d8fc1;
	line-height: 1;
}
.sbf_group .group-list dd {
	margin: 15px 0 0;
	font-size: 0.875em;
	line-height: 1.4;
	color: #666;
}
@media screen and (max-width: 767px){
/* SBF Group box */
	.sbf_group .group-title {
		font-size: 1.375em;
		margin: 1.5em 0 1em;
	}
	#sbf_main_cnt_board .sbf_group .group-title a {
		position: static;
		padding-right: 0;
	}
	#sbf_main_cnt_board .sbf_group .group-title a[target=_blank]:after {
		position: static;
		display: block;
		margin: .5em 0;
	}
	.sbf_group .group-list {
		padding: 2em 0;
	}
	.sbf_group .group-list dt {
		font-size: inherit;
	}
	.sbf_group .group-list dd {
		margin: .5em 0 0;
	}
}

/* ------------------------------------------------
#3. Contents
------------------------------------------------ */
/* sbf contents  */
#suntory_contents {
	width: 100%;
	min-width: 0;
}
#suntory_contents #container {
	width: 100%;
	color: #666;
}
/* main contents toppage board  */
#sbf_main_cnt_top,
.sbf_main_cnt {
	margin: 0 auto;
	width: 960px;
	min-height: 200px;
}
/* main contents board */
#sbf_main_cnt_board {
	padding: 30px 30px 50px;
	width: 960px;
	max-width: 960px;
	margin: 0 auto;
	background: url(/softdrink/common/img2013/sbf_main_cnt_bg_b.png) repeat-y top center;
}
#sbf_main_cnt_board #container {
	max-width: 900px;
}
#sbf_main_cnt_board a:link {
	color: #56bad5;
	text-decoration: none;
}
#sbf_main_cnt_board a:hover {
	text-decoration: underline;
}
#sbf_main_cnt_board a:visited {
	color: #56bad5;
}
#sbf_main_cnt_board a[target="_blank"]:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: 6px;
	width: 15px;
	height: 15px;
	background: url(../img/parts.png) no-repeat;
	background-position: 0 -170px; 
}
#sbf_main_cnt_board a.pdf[target="_blank"]:after {
	width: 22px;
	height: 20px;
	background: url(../img/parts.png) no-repeat;
	background-position: -27px -34px;
}
#sbf_main_cnt_board a.icon_none:after {
	display: none !important;
}

#sbf_main_cnt_top {
	width: auto;
	max-width: 980px;
	padding-top: 35px;
}
#sbf_main_cnt_top #content {
	padding: 0 10px;
}
#sbf_main_cnt_board {
	 margin: 0 auto;
	width: auto;
	background-image: none;
	background-color: #fff;
	border-radius:0 0 3px 3px;
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	box-shadow: 0px 3px 10px 3px rgba(70, 194, 221, 0.3);
	-webkit-box-shadow: 0px 3px 10px 3px rgba(70, 194, 221, 0.3);
	-moz-box-shadow: 0px 3px 10px 3px rgba(70, 194, 221, 0.3);
}

@media screen and (max-width: 767px){
	#suntory_contents {
		width: 100%;
		min-width: 0;
	}
	#sbf_main_cnt_top #content {
		padding: 0 2.6%;
	}
	#sbf_main_cnt_top {
		padding: 20px 0 0;
	}
	#sbf_main_cnt_board {
		margin: 0 auto;
		padding: 10px 0 30px;
		box-shadow: none;
		-webkit-box-shadow:none;
		border-radius: 0;
		-webkit-border-radius: 0;
		width: 100%;
	}
	#sbf_main_cnt_board #main {
		padding-left: 2.2%;
		padding-right: 2.2%;
	}
	#sbf_main_cnt_board #main.ext-full_size{
		padding-left: 0;
		padding-right: 0;
	}
}


/* base title */
.page_title {
	color: #5FC0D9;
	font-size: 1.313em;
	border-bottom: 1px solid #5FC0D9;
	font-weight: bold;
	padding-bottom: 6px;
	margin: 0 auto 1em;
	max-width: 100%;
	line-height: 100%;
	text-align: left;
}
.section_title {
	color: #666;
	font-size: 1.125em;
	font-weight: bold;
	font-family: 'suntory syntax', Arial, Helvetica, sans-serif;
	line-height: 24px;
	border-left: 6px solid #8ad7ea;
	padding: 0 0 0 8px;
}
.section_title + * {
	margin-top: 20px;
}
#subNav + .section_title {
	margin-top: 20px;
}

@media screen and (max-width: 767px){
/* base title */
	.page_title {
		margin-top: 0;
		margin-bottom: 2.6%;
		padding-left: 2.2%;
		padding-right: 2.2%;
		height: auto;
		font-size: 1.125em;
		line-height: 1.6;
	}
	.section_title {
		font-size: 1.125em;
	}
	.section_title + * {
		margin-top: 15px;
	}
}

/* panelbox */
#company .foot-list_pc {
	display: block;
}
#company .foot-list_sp {
	display: none;
}
.panelbox {
	width: 475px;
	float: left;
	background: #fff;
	margin: 0 0 10px;
	position: relative;
}
.panelbox.bg-none {
	background: none;
}
.panelbox a {
	text-decoration: none;
}
.panelbox a:hover {
	text-decoration: none;
}
.panelbox + .panelbox {
	float: right;
}
.panelbox img {
	vertical-align: middle;
}
.panelbox .title {
	font-size: 1.5em;
	color: #494747;
}
.panelbox .title_unit {
	display: table;
	*display: block;
	width: 100%;
}
.panelbox .title_unit .title {
	display: table-cell;
	*display: inline;
	*zoom: 1;
	width: auto;
	height: auto;
	padding: 10px 0 10px 15px;
	color: #494747;
	vertical-align: middle;
	font-size: 1.375em;
    font-weight: bold;
}
.panelbox .title_unit .more {
	display: table-cell;
	*display: inline;
	*zoom: 1;
	width: 144px;
	vertical-align: middle;
	padding: 7px 7px 7px 0;
}
.panelbox .visual {
	padding: 1px;
}
.panelbox .visual img {
	width: 100%;
}
.panelbox .movie {
	position: relative;
	width: 475px;
	*width: 473px;
	height: 268px;
	padding: 1px;
	background: #FFF;
}
.panelbox .movie .overlayer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	background: url(../img/btn_movie_open.png) no-repeat center center;
}
.panelbox.side_img > a {
	display: table;
	*display: block;
	width: 100%;
	min-height: 0;
	text-decoration: none;
}
.panelbox.side_img .title_wrap {
	width: auto;
	display: table-cell;
	*display: inline;
	*zoom: 1;
	padding: 10px 0 10px 15px;
	vertical-align: middle;
	line-height: 1;
}
.panelbox.side_img .title_wrap .grouping {
	display: block;
	font-size: 0.875em;
    font-weight: bold;
}
.panelbox.side_img .title_wrap .title {
	display: block;
	font-size: 1.375em;
	font-weight: bold;
	line-height: 1.3;
	color: #494747;
}
.panelbox.side_img .title .middle_dot {
	margin-left: -0.2em;
	font-size: 20px
}

.panelbox.side_img .title_wrap .title_company {
	margin-top: 3.5%;
}
.panelbox.side_img .visual {
	padding: 0;
	display: table-cell;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	text-align: right;
	width: 200px;
	max-height: 100px;
}
.panelbox.side_img.side_178 .title_wrap {
	width: 62.53%;
}
.panelbox.side_img.side_200 .title_wrap {
	width: 57.89%;
}
.panelbox.side_img.side_178 .visual {
	width: 37.47%;
}
.panelbox.side_img.side_200 .visual {
	width: 42.11%;
}
.panelbox.side_img p img {
	text-align: right;
}
.panelbox .half_horizon {
	width: 235px;
	background: #fff;
	float: left;
}
.panelbox .half_horizon + .half_horizon {
	float: right;
}
.panelbox .half_horizon .title_unit {
}
.panelbox .half_horizon .title_unit .title {
	display: table-cell;
	vertical-align: middle;
	font-size: 1.375em;
	line-height: 1.2;
	font-weight: bold;
	padding-left: 15px;
	width: auto;
	color: #494747;
	text-align: left;

	*width: 133px;
}
.panelbox .half_horizon > a{
	display: block;
	text-decoration: none;
}
.panelbox .half_horizon > a:hover .title_unit .title {
	color: #707070;
}
.panelbox .half_horizon .title_unit .more {
	width: 87px;
	vertical-align: middle;
	*display: inline;
	*zoom: 1;
}
.panelbox .half_horizon .title_unit .more img{
	vertical-align: middle;
}
.panelbox .half_horizon .visual {
	padding: 0;
}

@media screen and (max-width: 767px){
	#company .foot-list_pc {
		display: none;
	}
	#company .foot-list_sp {
		display: block;
	}
	.panelbox {
		float: none;
		width: 100%;
		margin-bottom: 2.6%;
		display: table;
	}
	.panelbox + .panelbox{
		float: none;
	}
	#content > div:last-of-type .panelbox:last-of-type {
		margin-bottom: 0;
	}
	#content > .panelbox:last-of-type {
		margin-bottom: 0;
	}
	.panelbox img {
		width: 100%;
		height: auto;
	}
	.panelbox > a {
		display: block;
		width: 100%;
	}
	.panelbox .title {
		width: 100%;
		font-size: 1.250em;
		line-height: 1;
	}
	.panelbox .title_unit .title {
		display: table-cell;
		padding: 10px;
		width: 90%;
		vertical-align: middle;
		font-size: 1.250em;
	}
	.panelbox .half_horizon .title_unit .title {
		font-size: 1.250em;
	}
	.panelbox.side_img .title_wrap {
		padding-right: 0;
		padding: 10px 5px 10px 10px;
		width: 62%;
	}
	.panelbox.side_img .title_wrap .title {
		font-size: 1em;
	}
	.panelbox.side_img .title_wrap .grouping {
		font-size: 0.650em;
	}
	.panelbox.side_img .visual {
		width: 38%;
	}
	.panelbox.side_img .visual img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
	.panelbox .more {
		display: table-cell;
		vertical-align: middle;
		width: 10%;
		min-width: 115px;
		padding-right: 5px;
		background: url(../img/bg-more.gif) no-repeat 0 center;
		background-size: 110px 30px;
	}
	.panelbox .more img {
		display: none !important;
	}
	.panelbox .movie {
		width: 100%;
		height: auto;
	}
	.panelbox .movie .overlayer {
		width: 100%;
		height: auto;
	}
	.panelbox .box-middle_wrap {
		width: 100%;
		margin-left: 0;
	}
	.panelbox .half_horizon {
		margin-bottom: 2.6%;
		width: 100%;
	}
	.panelbox .half_horizon img {
		width: 100%;
		height: auto;
	}
	.panelbox .half_horizon:last-child {
		margin-bottom: 0;
	}
	.panelbox .half_horizon .title_unit {
		position: relative;
		background-color: #fff;
		z-index: 1;
	}
	.panelbox .half_horizon .visual {
		padding: 1px;
	}
}

/* ------------------------------------------------
#4. JS Styles
------------------------------------------------ */
#load_movie {
	min-width: 300px;
	min-height: 168px;
	overflow: hidden;
}
#load_movie {
	display: none;
}
#load_movie .BrightcoveExperience {
	min-width: 300px;
	min-height: 168px;
}

.js-imgchange {
	display: block !important;
}
.js-imgchange.is-cloned {
	display: none !important;
}
@media only screen and (max-width: 767px){
	.js-imgchange {
		display: none !important;
	}
	.js-imgchange.is-cloned {
		display: block !important;
	}
}
/* company category */
body#company.top .js-random_image img {
	visibility: hidden;
}
body#company.top .js-random_image img + img {
	display: none;
}
body#company.top .js-random_image img:first-child {
	display: block;
}
body#company.top .js-random_image img:nth-child(n+2) {
	display: none;
}