/* カスタム CSS をここに入力してください */
.b-shadow07{
	box-shadow:3px 3px 6px rgba(0, 0, 0, 0.5);
}

.content {
    margin-right: 10vw;
    margin-left: 10vw;
}
.header_type_bar {
    margin-Left: 10vw;
}
body, html {
    font-size: 12px;
}

.content {
    margin-bottom: 10vh;
}
.header {
    height: 30vh;

}
.top-navigation2 {
  list-style: none;
  font-family: var(--body-alt-font);

  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 1px;
  font-size: 0.9rem;
	float:right	;
  margin: 0; 
	color: rgba(0, 0, 0, 0.4);
}

.top-navigation2 ul {
    padding: 0;
    margin: 0; }
.top-navigation2 li {
    display: inline;
    margin-right: 1rem; }
.top-navigation2 li a {
      text-decoration: none; }

/*幅とマージン設定 */
.ac-container{
    width: 300px;
    margin: 10px 0px 30px auto;
}
 
/*クリックできるようにする設定とか */
.ac-container label{
    padding: 5px 20px;
    position: relative;
    z-index: 20;
    display: block;
    height: 30px;
    cursor: pointer;
    color: #777;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
    line-height: 30px;
    font-size: 12px;
	text-transform: uppercase;
    background: linear-gradient(top, #ffffff 1%,#eaeaea 100%);
	background: transparent url(https://portraitacademy.jp/wp-content/uploads/2020/03/menubutton.png) no-repeat right center; 

}

.ac-container a { text-decoration: none;
				font-weight: 700;}
 
/*クリック時にチェックボックスをオンにする 
.ac-container input:checked + label,
.ac-container input:checked + label:hover{
    background: #c6e1ec;
    color: #3d7489;
    text-shadow: 0px 1px 1px rgba(255,255,255, 0.6);
    box-shadow: 
        0px 0px 0px 1px rgba(155,155,155,0.3), 
        0px 2px 2px rgba(0,0,0,0.1);
}
 */

/*ラジオボタンを隠す */
.ac-container input{
    display: none;
}
 
/*コンテンツ部分の表示・非表示の設定 */
.ac-container article{

    margin-top: -1px;
    overflow: hidden;
    height: 0px;
    position: relative;
    z-index: 10;
    transition: 
        height 0.3s ease-in-out, 
        box-shadow 0.6s linear;
}
/*
.ac-container input:checked ~ article{
    transition: 
        height 0.5s ease-in-out, 
        box-shadow 0.1s linear;
    box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}
 */
/*コンテンツの部分のスタイル変更 */
.ac-container article p{
	  font-family: var(--body-alt-font);
  text-transform: uppercase;
  font-variant: small-caps;
    color: #555;
    line-height: 23px;
    font-size: 12px;
    padding: 20px;
   
}
 
/*３つのクラスの高さを定義する */
.ac-container input:checked ~ article.ac-small{
    height: 140px;
}
.ac-container input:checked ~ article.ac-medium{
    height: 180px;
}
.ac-container input:checked ~ article.ac-large{
    height: 230px;
}