@charset "UTF-8";

/* フッター  (#footer) */


#footer {
    background-color: #d0e9cf;
    width: 100%;
    padding: 40px 0 16px 0;
    text-align: center;
}


/*************************************
サイトマップ
プラスマイナスのアコーディオンメニュー
*************************************/
#footer .site_map {
	display: flex;
	justify-content: space-between;
	width: 700px;
	margin: 0 auto;
}
#footer .site_map_accordion.web {
	width: 55%;
	margin-left: 10%;
	text-align: left;
}
#footer .site_map_accordion.illust {
	width: 35%;
	margin-left: 10%;
	text-align: left;
}
#footer summary {
	color: #164b09;
	font-weight: bold;
}
#footer .icon_plus {
	position: relative;
}

/* プラスマーク縦線 */
#footer .icon_plus::before{
  position: absolute;
  content: '';
  top: 45%;
  right: -30px;
  width: 14px;
  height: 1.5px;
  background-color:#164b09;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}

/* プラスマーク横線 */
#footer .icon_plus::after{
  position: absolute;
  content: '';
  top: 45%;
  right: -30px;
  width: 14px;
  height: 1.5px;
  background-color:#164b09;
  transition: all .3s ease-in-out;
}

/* アコーディオンが開いたとき縦線の変化 */
#footer details[open] .icon_plus::before {
  opacity:0;
  transform: rotate(90deg);
}

/* content 文字の前の「－」 */
#footer .site_map_accordion .content {
	position: relative;
	margin-left: 30px;
}
#footer .site_map_accordion .content::before {
	position: absolute;
	content: '●';
    top: 50%; /* 親要素の上端から50%の位置 */
    transform: translateY(-50%); /* 中央揃えのために上へ50%戻す */
    left: -25px;
}


/*****************************
フッター最後の行　（.last_line)
*****************************/
#footer .last_line {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 40px;
}
#footer .last_line .content {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.3;
    margin-bottom: 5px;
}

/* 秘密　（.secret_accordion） */
.secret_accordion {
	font-size: 0.9rem;
	text-align: left;
}

/* 秘密アイコン */
#footer .icon_secret {
	position: relative;
    display: block;
	margin-left: 40px;
	transition: 0.4s;
	margin-bottom: 6px;
}
#footer .icon_secret::before {
	position: absolute;
	display: inline-block;
	content: '';
	width: 25px;
	height: 25px;
    top: 50%; /* 親要素の上端から50%の位置 */
    transform: translateY(-50%); /* 中央揃えのために上へ50%戻す */
    left: -35px;
	background-image: url(../images/top/secret_25x25.png);
	background-size: contain;
    background-repeat: no-repeat;
}

/* 秘密アコーディオンが開いた時のスタイル */
#footer details[open] .icon_secret::before {
	background-image: url(../images/top/secret02_25x25.png);
}


/* コピーライト　（.copyright） */
.copyright {
	min-width: 130px;
	margin-left: 60px;
}
.copyright_text {
	position: relative;
	display: inline-block;
	max-width: 1200px;
	margin: 0 auto 10px auto;
    font-size: 0.8rem;
	line-height: 1;
    text-align: center;
	padding-right: 35px;
	vertical-align: bottom;
}
.copyright_text::after {
	position: absolute;
	background-image: url(../images/common/frog_50x50.png);
	content: '';
	background-size: contain;
    background-repeat: no-repeat;
	width: 25px;
	height: 25px;
    top: 50%; /* 親要素の上端から50%の位置 */
    transform: translateY(-50%); /* 中央揃えのために上へ50%戻す */
	right: 0;
}

