﻿/* CSS Document */

nav, body, header, footer {
	font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
	font-style: normal;
	font-weight: 300;
	line-height: 1.5;
}



accordion-box {
    position: relative;
}
accordion-box2 {
    position: relative;
}
accordion-box3 {
    position: relative;
}
.accordion-box label {
	height: 50px; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: -5px;
    width: 100%;

    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: -webkit-linear-gradient(top, rgba(66, 34, 97, 0) 0%, rgba(66, 34, 97, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(66, 34, 97, 0) 0%, rgba(66, 34, 97, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(66, 34, 97, 0) 0%, rgba(66, 34, 97, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(66, 34, 97, 0) 0%, rgba(66, 34, 97, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(66, 34, 97, 0) 0%, rgba(66, 34, 97, 0.95) 90%);
}
.accordion-box3 label {
	height: 50px; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: -5px;
    width: 100%;

    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: -webkit-linear-gradient(top, rgba(164, 33, 65, 0) 0%, rgba(164, 33, 65, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(164, 33, 65, 0) 0%, rgba(164, 33, 65, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(164, 33, 65, 0) 0%, rgba(164, 33, 65, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(164, 33, 65, 0) 0%, rgba(164, 33, 65, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(164, 33, 65, 0) 0%, rgba(164, 33, 65, 0.95) 90%);
}
.accordion-box2 label {
	height: 50px; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: -5px;
    width: 100%;

    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: -webkit-linear-gradient(top, rgba(0, 135, 64, 0) 0%, rgba(0, 135, 64, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(0, 135, 64, 0) 0%, rgba(0, 135, 64, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(0, 135, 64, 0) 0%, rgba(0, 135, 64, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(0, 135, 64, 0) 0%, rgba(0, 135, 64, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(0, 135, 64, 0) 0%, rgba(0, 135, 64, 0.95) 90%);
}
.accordion-box input:checked + label {
    background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box label:after {
    content: "紹介文を読む"; /* ラベルの文字 */
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #fff;
    background-color: transparent;
    width: 18.75rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.accordion-box input {
    display: none;
}
.accordion-box .accordion-container {
    overflow: hidden;
    height: 6vw; /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


.accordion-box input:checked + label {
    /* display: none ; 閉じるボタンは要らないとき */
}
.accordion-box input:checked + label:after {
    content: "閉じる";
	position: absolute;
	bottom: 10px;
}
.accordion-box input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.accordion-box3 input:checked + label {
    background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box3 label:after {
    content: "紹介文を読む"; /* ラベルの文字 */
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #fff;
    background-color: transparent;
    width: 18.75rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.accordion-box3 input {
    display: none;
}
.accordion-box3 .accordion-container {
    overflow: hidden;
    height: 6vw; /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


.accordion-box3 input:checked + label {
    /* display: none ; 閉じるボタンは要らないとき */
}
.accordion-box3 input:checked + label:after {
    content: "閉じる";
	position: absolute;
	bottom: 10px;
}
.accordion-box3 input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.accordion-box2 input:checked + label {
    background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box2 label:after {
    content: "紹介文を読む"; /* ラベルの文字 */
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #fff;
    background-color: transparent;
    width: 18.75rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.accordion-box2 input {
    display: none;
}
.accordion-box2 .accordion-container {
    overflow: hidden;
    height: 6vw; /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


.accordion-box2 input:checked + label {
    /* display: none ; 閉じるボタンは要らないとき */
}
.accordion-box2 input:checked + label:after {
    content: "閉じる";
	position: absolute;
	bottom: 10px;
}
.accordion-box2 input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
h2{
	border-bottom: 3px solid #422161;
}
headings, p, a, li {
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.logo-title.pull-left{
		margin-left: 8px;
		padding-top: 5px;

	}
#popup-background{
    position:fixed;     /* 位置の固定 */
    top: 0;             /* 表示位置 */
    left: 0;            /* 表示位置 */
    height: 100%;       /* 画面全体に表示 */
    width: 100%;        /* 画面全体に表示 */
    background:#000;    /* 背景色 */
    opacity: 0.60;      /* 透明度 */
    margin: 0;          /* 余白の削除 */
    padding: 0;         /* 余白の削除 */
    z-index:1000;       /* 要素のz座標 */
}
#popup-item{
    position:fixed;     /* 位置の固定 */
    top: 50%;           /* 表示位置(真ん中に表示) */
    left: 50%;          /* 表示位置(真ん中に表示) */
    margin: 0;          /* 余白の削除 */
    padding: 0;         /* 余白の削除 */
    z-index:1001;       /* 要素のz座標 */
}
@media(min-width:1281px){
.navbar-nav{
	display: table;
}
.navbar-nav > li{
	display: table-cell;
}
.dropdown-menu{
}
}

.card-left{
	 border-right: 7.5px solid #EEE; padding: 0px;
	 background-color: #FFF;
}
.only-PC{
	width: 100%;
}
.card-right{
	 border-left: 7.5px solid #EEE; padding: 0px;
	background-color: #FFF;
}

.topsums{
	width: 50%;
	padding: 0px;
}
.btn.btn-lg.animated{
	font-size: 30px;
}
.btn.btn-lg.animated small{
	font-size: 18px;
}
.carousel img {
	width: 100%;
}
.carousel-caption p{
	font-size: xx-large;
}

.logo {
	background: url(images/logo.gif) center no-repeat;
	background-size: 100% auto;
}
.logo-title{
	margin-left: -20px;
}
/* navbar 全体の背景色とボーダーカラー */
.navbar-default {
background-color: #FFF;
border-color: #333;
}
/* navbar テキストカラー */
.navbar-default .navbar-nav > li > a {
color: #FFFFFF;
}
/* navbar hover,focus時のテキストカラー */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #FFF;
background-color: #999;
}
/* navbar active設定時のカラー */
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
color: #422161;
background-color: #FFF;
}
/* navbar ドロップダウン(親)のカラー */
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
color: #FFF;
background-color: #999;
}
/* navbar ドロップダウン(子)のボックスカラー */
.dropdown-menu {
background-color: #FFF;
border: 1px solid #333;
box-shadow: 0 6px 12px #333;
}
/* navbar ドロップダウン(子)テキストカラー */
.dropdown-menu>li>a {
color: #422161;
}
/* navbar ドロップダウン(子)focus,hover時のカラー */
.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
color: #FFF;
background-color: #999;
}
/* navbar ドロップダウン(子)内の区切り線(class=”divider”)のカラー */
.dropdown-menu .divider {
background-color: #555;
}
/* navbar 画面サイズ767px以下の時のカラー */
@media (max-width:767px) {
.navbar-default .navbar-nav .open .dropdown-menu>li>a {
color: #ffffff;
}
.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
color: #422161;
background-color: #999;
}
/* ドロップダウンactive設定時のカラー */
.navbar-default .navbar-nav .open .dropdown-menu>.active>a,
.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
color: #422161;
background-color: #DDD;
}
	.navbar-brand.pull-left{
		width: 100%;
		padding-left: 50px;
		margin-top: -58px;
	}
	.logo-title.pull-left{
	 padding: hidden;

	}
	.navbar-default{
		background-color: #FFF;
	}

}
/* navbar ハンバーガー四角枠 */
.navbar-default .navbar-toggle {
border-color: #422161;
}
/* navbar ハンバーガー三本線 */
.navbar-default .navbar-toggle .icon-bar {
background-color: #422161;
}
/* navbar ハンバーガーボタン,タップとホバーした時の背景色 */
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
background-color: #ffffff;
}
/* navbar ハンバーガーボタン,タップとホバーした時の四角枠 */
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
border-color: #422161;
}
/* navbar ハンバーガーボタン,タップとホバーした時の三本線 */
.navbar-default .navbar-toggle:focus > .icon-bar,
.navbar-default .navbar-toggle:hover > .icon-bar {
background-color: #422161;
}
/* navbar Brandのカラー */
.navbar-default .navbar-brand {
color: #fff;
}
.navbar-brand{
	padding-left: 0px;
padding-top: 12px;
}
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
color: #999;
background-color: transparent;
}

.fluid2 {
	width: 100%;
	padding: 0;
}
.item img {
	width: 100%;
}
#loader-bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #000;
	z-index: 1;
}
#loader {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	margin-top: -100px;
	margin-left: -100px;
	text-align: center;
	color: #fff;
	z-index: 2;
}
.title {
	margin: 0;
	padding: 0;
}
.title h2 {
	background-image: url(images/header1.jpg) left top no-repeat;
	background-size: cover;
	width: 100%;
}

.navbar-brand {
	margin-top:-12px;
}

.SandboxRoot.env-bp-970 .timeline-Tweet-text {
    font-size: 10.5pt !important;
    line-height: 14pt!important;
    }

.SandboxRoot.env-bp-820 .timeline-Tweet-text {
    font-size: 10.5pt !important;
    line-height: 14pt!important;
    }
@media (max-width:991px){

	.card-left{
	border-right: 0px solid #EEE;
	border-bottom: 15px solid #EEE;
	 padding: 0px;
}
	.card-right{
	border-left: 0px solid #EEE;
	border-bottom: 15px solid #EEE;
	 padding: 0px;
}
	.topsums img{
		width: 100%;
	}
	.carousel-caption p{
		font-size: small;
		margin-bottom: -10%;
	}
	.btn.btn-lg.animated{
	font-size: justify;
}
.btn.btn-lg.animated small{
	font-size: 10pt;
}
	.topsums{
		width: 100%;
		padding: 0px;
	}
}

li{
	text-align: justify;
}
.top-topics2 {
	background: url("../images/header8.jpg")no-repeat right 0;
	background-size: cover
}
@media(max-width:1281px){
		.top-topics2 {
	background: none;

}
	navbar-nav > li{
	width: 100%;
}
}
.only-PC{
	width: 0%;
}

.h4 li > a {
	color: #6C597F;
}

/* .Google Cal */

.cal_wrapper {

max-width: 800px;

min-width: 300px;

margin: 2.0833% auto;

}



.googlecal {

position: relative;

padding-bottom: 100%;

height: 0;

overflow: hidden;

}



.googlecal iframe {

position: absolute;

top: 0;

left: 0;

width: 100% !important;

height: 100% !important;

}



@media only screen and (min-width: 600px) {

.googlecal { padding-bottom: 75%; }

}

/* .GC_wrapper */

.gc_wrapper {
  max-width: 800px;
  min-width: 300px;
  margin: 2.0833% auto;
}

.responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.responsive-iframe-container iframe,
.responsive-iframe-container object,
.responsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 600px) {
    .big-container {
        display: none;
    }
    .small-container {
       padding-bottom: 200%;   /* 高さ */
    }
}
@media (min-width: 600px) {
    .small-container {
        display: none;
    }
}

/* 画像ファイルを開けなくする */

.img-guard{
position:relative;
width: auto;
height: auto;
}
.guard-nopic{
position:absolute;
display:block;
width:100%;
height:100%;
background: url(images/guard.png);
}
