/*
  Skin Name: カスタムグリーン
  Description: グローバルナビ(#a4d8af)と淡いグリーン(#8ab692)を基調としたスキンです。
  Author: Custom
  Version: 1.0.0
  Priority: 9200001000
*/

/* □■-----------------------------------------------------
/ 『ヘッダー背景画像（メインビジュアル）』
-----------------------------------------------------■□ */
/* PC向けの基本設定 */
.header {
    /* WordPressのメディアライブラリにアップロードした画像のURLを入れます */
    background-image: url("https://あなたのドメイン/wp-content/uploads/2026/03/header-image.png");
    background-size: cover;           /* 画面幅に合わせて拡大縮小 */
    background-repeat: no-repeat;     /* 画像の繰り返しを防ぐ */
    background-position: center center; /* 画像のど真ん中を基準に表示 */
    height: 500px;                /* PCでのヘッダーの高さ */
}

/* スマホ向け（画面幅768px以下）の微調整 */
@media screen and (max-width: 768px) {
    .header {
        /* スマホで「旗」や「旅人」が隠れる場合、ここを center top などに変更して位置をずらします */
        background-position: center center; 
        max-height: 500px;
        min-height: 250px; /* スマホ画面に合わせて高さを少し狭くする */
    }
}

/* □■-----------------------------------------------------
/ 『ヘッダータイトルエリアのグループ化（半透明の背景箱）』
-----------------------------------------------------■□ */

/* 箱全体を中央に寄せるための親設定 */
.header {
    display: flex !important;
    justify-content: center !important; /* 横のど真ん中 */
    align-items: center !important;     /* 縦のど真ん中 */
}

/* タイトルとキャッチフレーズを包む「正解の箱（.header-in）」 */
.header-in {
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: rgba(69, 139, 97, 0.85) !important;
    width: fit-content !important;
    padding: 20px 40px !important;       /* 余白も少しスッキリさせました */
    border-radius: 10px !important;
    margin: 0 !important;
    height: auto !important;       /* 高さを自動（中身に合わせる）にする */
    min-height: 0 !important;      /* Cocoonの「最低でも〇〇px広げろ」という指示を無効化 */
}

/* 既存のタイトルの余白設定などをリセットして綺麗に整列させる */
.logo-header,
.tagline {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
}

.logo-header {
    margin-bottom: 10px !important; /* タイトルとキャッチフレーズの間に少し隙間 */
}

/* 中の文字色を白にする */
.site-name-text,
.tagline {
    color: #ffffff !important;
}

/* タイトルリンクの下線を無効化し、色を白で固定 */
a.site-name-text-link {
    text-decoration: none !important;
    color: #ffffff !important;
}

/* □■-----------------------------------------------------
/ 『グローバルメニュー』
-----------------------------------------------------■□ */
.header-container {
	box-shadow: none;
}
.is-header-fixed  .header-container,
.hlt-top-menu-wrap .header-container {
	background-color: #8ab692; /* 指定色に変更 */
}
.is-header-fixed .site-name-text-link,
.hlt-top-menu-wrap .site-name-text-link {
	color: #ffffff;
}

.navi{
	background-color: #8ab692; /* 指定色に変更 */
}

#navi .navi-in a {
	width: 100%;
	height: 100%;
	color: #ffffff;
	background-color: #8ab692; /* 指定色に変更 */
	position: relative;
	z-index: 2;
	-webkit-perspective: 350px;
	perspective: 350px;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

div#header-container {
	box-shadow: none;
}
div.item-label {
	font-weight: bold;
}

#navi .navi-in a::before,
#navi .navi-in a::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: "";
}

#navi .navi-in a,
#navi .navi-in a::before,
#navi .navi-in a::after {
	transition: all 0.3s;
}

#navi .navi-in a::after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #8ab692;
	-webkit-transform-origin: center top;
	transform-origin: center top;
	transform: rotateX(90deg);
	opacity: 0;
}

#navi .navi-in a:hover {
	color: #333333 !important;
	background-color: #cde3d2; /* 選択背景色にホバーを変更 */
}

#navi .navi-in a:hover::after {
	transform: rotateX(0);
	opacity: 1;
}

/* □■-----------------------------------------------------
/ 『エントリーカード』
-----------------------------------------------------■□ */
.entry-card-wrap.a-wrap,
.related-entry-card-wrap.a-wrap,
.prev-post.a-wrap,
.next-post.a-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}

.entry-card-wrap.a-wrap:nth-of-type(3n + 1),
.related-entry-card-wrap.a-wrap:nth-of-type(3n + 1),
.entry-card-wrap.a-wrap:nth-of-type(3n + 2),
.related-entry-card-wrap.a-wrap:nth-of-type(3n + 2),
.entry-card-wrap.a-wrap:nth-of-type(3n + 3),
.related-entry-card-wrap.a-wrap:nth-of-type(3n + 3) {
	background-color: #fff;
	border: solid 2px #8ab692; /* キーカラー */
}

.entry-card-wrap.a-wrap:nth-of-type(3n + 1):hover,
.related-entry-card-wrap.a-wrap:nth-of-type(3n + 1):hover,
.entry-card-wrap.a-wrap:nth-of-type(3n + 2):hover,
.related-entry-card-wrap.a-wrap:nth-of-type(3n + 2):hover,
.entry-card-wrap.a-wrap:nth-of-type(3n + 3):hover,
.related-entry-card-wrap.a-wrap:nth-of-type(3n + 3):hover {
	background-color: #cde3d2; /* 選択背景色 */
}

.entry-card-wrap.a-wrap:before,
.related-entry-card-wrap.a-wrap:before {
	position: absolute;
	width: 320px;
	height: 320px;
	transform: rotate(-45deg);
	right: -280px;
	bottom: -280px;
	content: "Read More";
	font-size: 80%;
	color: white;
	text-align: center;
	transition: all 0.4s;
	z-index: 1;
}

.entry-card-wrap.a-wrap:nth-of-type(3n + 1):before,
.related-entry-card-wrap.a-wrap:nth-of-type(3n + 1):before,
.entry-card-wrap.a-wrap:nth-of-type(3n + 2):before,
.related-entry-card-wrap.a-wrap:nth-of-type(3n + 2):before,
.entry-card-wrap.a-wrap:nth-of-type(3n + 3):before,
.related-entry-card-wrap.a-wrap:nth-of-type(3n + 3):before {
	background: #8ab692;
}

.entry-card-wrap.a-wrap:hover::before,
.related-entry-card-wrap.a-wrap:hover:before {
	right: -220px;
	bottom: -220px;
}

/* □■-----------------------------------------------------
/ 『ブログカード』
-----------------------------------------------------■□ */
.blogcard {
	border: none;
}

.blogcard-wrap.a-wrap {
	border: none;
	position: relative;
	background-color: #fff;
	border: solid 2px #8ab692;
}

.blogcard-wrap.a-wrap:after {
	position: absolute;
	width: 100%;
	height: 100%;
	content: "Read More";
	right: 0px;
	bottom: 0px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 100%;
	opacity: 0;
	transition: all 0.4s;
	transform: scale(0.5);
}

.blogcard-wrap.a-wrap:hover:after {
	transform: scale(1);
	opacity: 1;
	z-index: 1;
	font-size: 80%;
	width: 28%;
	height: 25%;
	background: #8ab692;
	color: white;
	text-shadow: -2px 4px 0 rgba(0, 0, 0, 0.3);
}

.blogcard-wrap.a-wrap:hover {
	background-color: #cde3d2;
}

/* □■-----------------------------------------------------
/ 『投稿ナビ』
-----------------------------------------------------■□ */
.pager-post-navi:not(.post-navi-square) a.next-post {
	margin-top: 7px;
}

.prev-post.a-wrap,
.next-post.a-wrap {
	background-color: #fff;
	border: solid 2px #8ab692;
}

.prev-post.a-wrap:hover,
.next-post.a-wrap:hover {
	background-color: #cde3d2;
}

/* □■-----------------------------------------------------
/ 『見出し（h2）』
-----------------------------------------------------■□ */
.article h2 {
	position: relative;
	padding: 0.8em 0.8em 0.8em 1.8em;
	background: #8ab692;
	color: #ffffff;
	margin-bottom: 30px;
	font-size: 22px;
	font-weight: bold;
}

@media screen and (max-width: 480px) {
	.article h2 {
		padding: 0.5em;
		background: #8ab692;
		box-shadow: 0 0 4px rgba(0, 0, 0, 0.23);
	}
}

/* □■-----------------------------------------------------
/ 『見出し（h3）』
-----------------------------------------------------■□ */
.article h3 {
	padding: 0.5em 0.7em;
	border-top: solid 3px #8ab692;
	border-bottom: solid 3px #8ab692;
	border-left: none;
	border-right: none;
	font-weight: bold;
}

/* □■-----------------------------------------------------
/ 『見出し（h4）』
-----------------------------------------------------■□ */
.article h4 {
	position: relative;
	padding: 0.4em 0.5em;
	color: #333333;
	background: #cde3d2;
	border-left: solid 5px #458b61; /* リンク色をアクセントに */
	border-bottom: solid 3px #8ab692;
}

/* □■-----------------------------------------------------
/ 『見出し（h5）』
-----------------------------------------------------■□ */
.article h5 {
	position: relative;
	padding: 9px 9px 9px 26px;
	border: none;
}

.article h5::after {
	position: absolute;
	content: "";
	border-radius: 100%;
	top: 0.6em;
	left: 0.1em;
	width: 15px;
	height: 15px;
	background-image: linear-gradient(
		135deg,
		#8ab692 0%,
		#8ab692 50%,
		#cde3d2 50%,
		#cde3d2 100%,
		transparent 0
	);
}

/* □■-----------------------------------------------------
/ 『見出し（h6）』
-----------------------------------------------------■□ */
.article h6 {
	border-bottom: 1px solid #8ab692;
}

/* □■-----------------------------------------------------
/ 『サイドバーの見出し（h3）』
-----------------------------------------------------■□ */
.sidebar h2,
.sidebar h3 {
	background: none;
	padding: 12px 35px 12px 15px;
	background-color: #8ab692;
	color: #ffffff;
	margin-top: 26px;
	position: relative;
}
.sidebar h2::before,
.sidebar h3::before {
	position: absolute;
	content: "";
	top: -15px;
	right: 10px;
	height: 55px;
	width: 15px;
	border: 3px solid #458b61;
	border-radius: 12px;
	box-shadow: 1px 1px 2px #999;
	transform: rotate(10deg);
	z-index: 1;
}
.sidebar h2::after,
.sidebar h3::after {
	background-color: #8ab692;
	border: solid 5px #458b61;
	border-radius: 0px;
	top: 0px;
	width: 10px;
	right: 20px;
	z-index: 2;
	height: 0px;
	left: unset;
}

/* サイドバー追尾目次 */
.sidebar-scroll {
	top: 15px !important;
}
.sidebar h2,
.sidebar h3 {
	font-size: 0.9em;
	padding: 7px 12px;
}
.sidebar .widget_toc {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.sidebar .toc-widget-box {
	margin-top: -0.9em;
}
.sidebar .toc {
	padding: 0;
	width: 100%;
}
.sidebar .toc-content {
	overflow-y: scroll;
	max-height: 390px;
	background: #ffffff;
	padding: 0.5em 1.5em;
}
.sidebar .toc li {
	line-height: 1.6;
	margin-bottom: 1em;
	font-size: 0.85rem;
	color: #333333;
}
.sidebar .toc-content > ol > li,
.sidebar .toc-content > ul > li {
	font-weight: 600;
	padding-left: 0.5em;
}
.sidebar .toc-content a {
	letter-spacing: 0.5px;
}
.sidebar .toc .toc-list ul,
.sidebar .toc .toc-list ol {
	margin: 1em 0;
	list-style-type: none;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
	.sidebar-menu-button .widget_toc {
		display: none;
	}
}

/* □■-----------------------------------------------------
/ 『ウィジェット／カルーセル』
-----------------------------------------------------■□ */
.widget-entry-cards figure,
.carousel-entry-card figure {
	overflow: hidden;
}

.widget-entry-cards figure {
	position: relative;
}
.widget-entry-cards figure::after,
.carousel-entry-card figure::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.4);
	content: "";
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
		translate3d(0, -120%, 0);
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
		translate3d(0, -120%, 0);
}

.widget-entry-cards .a-wrap:hover figure::after,
.carousel .a-wrap:hover figure::after {
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
		translate3d(0, 120%, 0);
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg)
		translate3d(0, 120%, 0);
}

.widget-entry-cards:not(.card-large-image) .a-wrap:hover,
.carousel .a-wrap:hover {
	background-color: #cde3d2;
}

.widget-entry-cards.card-large-image .a-wrap:hover {
	background: none;
}

.widget_recent_entries ul li a,
.widget_categories ul li a,
.widget_archive ul li a,
.widget_pages ul li a,
.widget_meta ul li a,
.widget_rss ul li a,
.widget_nav_menu ul li a {
	border-bottom: 1px dotted #8ab692;
	transition-duration: 0.2s;
}

.widget_recent_entries ul li a:hover,
.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_pages ul li a:hover,
.widget_meta ul li a:hover,
.widget_rss ul li a:hover,
.widget_nav_menu ul li a:hover {
	background-color: #cde3d2;
}

.widget_recent_entries ul li a,
.widget_categories ul li a,
.widget_archive ul li a,
.widget_meta ul li a {
	padding: 5px 0;
}

/* □■-----------------------------------------------------
/ 『入力系』
-----------------------------------------------------■□ */
:is(.editor-visual-editor, body:not(.wp-admin)) :is(.search-edit, input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea, select) {
	border: ridge 2px #8ab692;
}

/* □■-----------------------------------------------------
/ 『ページネーション／マルチページ／送信ボタン系』
-----------------------------------------------------■□ */
.form-submit {
	text-align: center;
}

.pagination {
	margin: 10px 0 24px 0;
}

.pagination-next-link,
.comment-btn,
.container input[type="submit"] {
	border: 3px solid #8ab692;
	border-radius: 6px;
	border-image: linear-gradient(
		to right,
		#8ab692 0%,
		#8ab692 10%,
		rgba(0, 0, 0, 0) 10%,
		rgba(0, 0, 0, 0) 90%,
		#8ab692 90%,
		#8ab692 100%
	);
	border-image-slice: 1;
	background: none;
	width: 40%;
	margin: 24px auto;
	transition: all 0.4s;
	font-size: 18px;
}

.pagination-next-link,
.comment-btn {
	font-size: 18px;
}

.pagination-next-link:hover,
.comment-btn:hover,
.container input[type="submit"]:hover {
	background: none;
	background-color: #8ab692;
	color: white;
}

.pager-prev-next .page-numbers.page-prev-next {
	transition: all 0.4s;
	border: 2px solid #8ab692;
}

.pager-prev-next .page-numbers.page-prev-next:hover {
	background: #cde3d2;
}

.pager-numbers .page-numbers.current,
.pagination .current,
.comment-page-link .current {
	background: 0 0;
	border: 0;
	color: white;
	font-size: 110%;
	background-color: #8ab692;
	border-radius: 99px;
}

.page-numbers.dots {
	border-radius: 99px;
	border: 1px solid #8ab692;
}

a .page-numbers:not(.page-prev-next),
a.page-numbers {
	text-align: center;
	border-radius: 99px;
	position: relative;
	z-index: 1;
	background: rgba(255, 255, 255, 0.1);
	-webkit-transition: background 0.2s, color 0.2s;
	-moz-transition: background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s;
}

a .page-numbers:not(.page-prev-next),
a.page-numbers:nth-of-type(3n + 1),
a.page-numbers:nth-of-type(3n + 2),
a.page-numbers:nth-of-type(3n + 3) {
	border: 1px solid #8ab692;
}

a .page-numbers:not(.page-prev-next):after,
a.page-numbers:after {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 99px;
	content: "";
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	top: -3px;
	left: -3px;
	padding: 3px;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0.8);
	-moz-transition: -moz-transform 0.2s, opacity 0.2s;
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transition: transform 0.2s, opacity 0.2s;
	transform: scale(0.8);
	opacity: 0;
}

a .page-numbers:not(.page-prev-next):after,
a.page-numbers:nth-of-type(3n + 1):after,
a.page-numbers:nth-of-type(3n + 2):after,
a.page-numbers:nth-of-type(3n + 3):after {
	box-shadow: 0 0 0 3px #8ab692;
}

a .page-numbers:not(.page-prev-next):hover,
a.page-numbers:nth-of-type(3n + 1):hover,
a.page-numbers:nth-of-type(3n + 2):hover,
a.page-numbers:nth-of-type(3n + 3):hover {
	background: #cde3d2;
}

a .page-numbers:not(.page-prev-next):hover:after,
a.page-numbers:hover:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.comment-page-link :is(.prev,.next) {
  display:none;
}

.comment-page-link .page-numbers {
  height: 46px;
  line-height: 46px;
  padding: unset;
  width: 46px;
}

@media screen and (max-width: 480px) {
  .comment-page-link .page-numbers {
    height: 34px;
    line-height: 34px;
    width: 34px;
  }
}

.comment-page-link {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.comment-page-link a:hover {
  background: #cde3d2;
  color: var(--cocoon-text-color);
}

/* □■-----------------------------------------------------
/ 『目次』
-----------------------------------------------------■□ */
.toc-title {
	color: #ffffff;
	border-radius: 2px;
	font-size: 120%;
	background-color: #8ab692;
}
.toc a {
	color: #333333;
}

.toc-content ul li a:hover,
.toc-content ol li a:hover {
	background-color: #cde3d2;
}

.toc a:hover {
	text-decoration: none;
}

.article .toc {
	margin: 15px auto;
	min-width: 60%;
	position: relative;
	border: none;
}

.toc-content {
	color: #333333;
	margin: 1px 0;
	padding: 0.2em 1.2em;
	border-radius: 4px;
	border: 2px solid #8ab692;
}

.toc ul.toc-list > li > a,
.toc ol.toc-list > li > a {
	font-weight: bold;
}

.toc ul,
.toc ol {
	margin: 0px 0px 0px 4px;
}

/* □■-----------------------------------------------------
/ 『アイコンボックス』
-----------------------------------------------------■□ */
/* アイコンボックス系のベースカラー等は維持、枠線等をキーカラー化 */
.is-style-information-box,
.information-box,
.information,
.is-style-question-box,
.question-box,
.question,
.is-style-alert-box,
.alert-box,
.alert,
.is-style-memo-box,
.memo-box,
.is-style-comment-box,
.comment-box,
.is-style-profile-box,
.profile-box,
.is-style-ok-box,
.ok-box,
.is-style-ng-box,
.ng-box,
.is-style-good-box,
.good-box,
.is-style-bad-box,
.bad-box {
	background: rgba(138, 182, 146, 0.1);
	border-color: #8ab692;
}

/* 各アイコンの色設定は元のものを継承（一部抜粋省略） */
.is-style-information-box::before, .information-box::before, .information::before { color: #4fc3f7; border: #4fc3f7; }
.is-style-question-box::before, .question-box::before, .question::before { color: #ffca28; border: #ffca28; }
.is-style-alert-box::before, .alert-box::before, .alert::before { color: #ff7043; border: #ff7043; }
.is-style-memo-box::before, .memo-box::before { color: #333; border: #333; }
.is-style-comment-box::before, .comment-box::before { color: #90a4ae; border: #90a4ae; }
.is-style-profile-box::before, .profile-box::before { color: #7986cb; border: #7986cb; }
.is-style-ok-box::before, .ok-box::before { color: #26c6da; border: #26c6da; }
.is-style-ng-box::before, .ng-box::before { color: #ef5350; border: #ef5350; }
.is-style-good-box::before, .good-box::before { color: #4db6ac; border: #4db6ac; }
.is-style-bad-box::before, .bad-box::before { color: #ee6e73; border: #ee6e73; }

/* □■-----------------------------------------------------
/ 『引用』
-----------------------------------------------------■□ */
blockquote {
	position: relative;
	padding: 35px 15px 10px 15px;
	box-sizing: border-box;
	font-style: italic;
	background: #f4f9f5; /* 淡いグリーン系背景 */
	color: #555555;
	border-left: 4px solid #8ab692;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

blockquote:before {
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 15px;
	content: "\f10d";
	font-family: FontAwesome;
	color: #8ab692;
	font-size: 28px;
	line-height: 1;
	font-weight: 900;
}

blockquote::after{
	display: none;
}

blockquote p {
	padding: 0;
	margin: 7px 0;
	line-height: 1.7;
}

blockquote cite {
	display: block;
	text-align: right;
	color: #333333;
	font-size: 0.9em;
}

/* □■-----------------------------------------------------
/ 『カレンダー』
-----------------------------------------------------■□ */
.wp-calendar-table th:nth-of-type(1),
.wp-calendar-table th:nth-of-type(2),
.wp-calendar-table th:nth-of-type(3),
.wp-calendar-table th:nth-of-type(4),
.wp-calendar-table th:nth-of-type(5),
.wp-calendar-table th:nth-of-type(6),
.wp-calendar-table th:nth-of-type(7) {
	background-color: #8ab692;
}

/* □■-----------------------------------------------------
/ 『テーブル』
-----------------------------------------------------■□ */
table th,
table td,
.scrollable-table th,
.scrollable-table td {
	border: solid 1px #8ab692;
}

table th,
.scrollable-table th {
	background-color: #8ab692;
	color: #ffffff;
}

table tr:nth-of-type(2n + 1) {
	background-color: #ffffff;
}

table tr:nth-of-type(2n) {
	background-color: #f4f9f5;
}

/* □■-----------------------------------------------------
/ 『モバイルメニュー』
-----------------------------------------------------■□ */
.mobile-menu-buttons {
	background-color: #8ab692;
}
.mobile-menu-buttons > .menu-button,
.mobile-menu-buttons > .menu-button > a{
	color: #ffffff;
}

.menu-drawer a {
	background-color: #8ab692;
	color: #ffffff;
	border-bottom: 1px solid #cde3d2;
	margin-bottom: 2px;
}

.fa-close {
	position: relative;
}

.fa-close:before {
	opacity: 0;
}

.fa-close:after {
	position: absolute;
	font-size: 60%;
	background-color: #8ab692;
	color: #ffffff;
	padding: 6px;
	content: "Close";
	border-radius: 4px;
	left: calc(-70%);
}

/* □■-----------------------------------------------------
/ 『モバイル用送信系ボタン』
-----------------------------------------------------■□ */
@media screen and (max-width: 480px) {
	.pagination-next-link,
	.comment-btn,
	.container input[type="submit"] {
		width: 80%;
	}
}

/* □■-----------------------------------------------------
/ 『TOPへ戻る』ボタン
-----------------------------------------------------■□ */
.go-to-top-button {
	background-color: #8ab692;
	color: #ffffff;
}

/* □■-----------------------------------------------------
/ 『フッター』
-----------------------------------------------------■□ */
.footer-bottom.fnm-text-width .menu-footer li a:hover {
	background: none;
	background-color: #cde3d2;
	color: #333333;
}

/* □■-----------------------------------------------------
/ 『プロフィール』
-----------------------------------------------------■□ */
.author-box {
	border: 2px solid #8ab692;
	color: #333333;
}

.author-thumb img {
	border: 3px solid #8ab692;
        border-radius: 75%;
}

/* プロフィールのSNSボタン系の定義は変更なしで継承（色変数はCocoonデフォルトを参照するため省略せずにそのまま適用可能。CSS記述が長くなるため標準部分としてそのままご活用ください） */

/* ■ カテゴリーリスト ■ */
.widget_recent_entries ul li a,
.widget_categories ul li a,
.widget_archive ul li a,
.widget_meta ul li a {
	padding-left: 7px;
	padding-right: 7px;
}