@charset "UTF-8";

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	color: #000000;
}

p:not(:last-child) {
	margin-bottom: 1em;
}

a:link {
	color: #1a77c5;
	text-decoration: underline;
}

a:hover {
	color: #3399CC;
	text-decoration: none;
}

img {
	max-width: 100%;
	width: auto;
	height: auto;
	zoom: 0.5;
}

/*----------------------------------------
■レイアウト
----------------------------------------*/
#container {
	padding-top: 50px;
}

#container>main>section>.inner:first-child {
	padding-top: 30px;
}

#container>main>section>.inner {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
	padding-left: 10px;
	padding-right: 10px;
}

.column_wrap .main_section {
	background-color: #fff;
	padding: 20px;

}

main .sub_section {
	margin-bottom: 50px;
}


header {
	background-color: #fff;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
	position: fixed;
	width: 100%;
	height: 50px;
	top: 0;
	left: 0;
	z-index: 3;
}

header>.inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 10px;
	height: 50px;
}

header>.inner .logo {
	background-image: url(/wordpress/wp-content/themes/gaitame/img/common/logo.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 115px;
	height: 19px;

}

header>.inner .logo a:link,
header>.inner .logo a:visited {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -9999px;
}

header>.inner #search-input {
	display: none;
}

header>.inner #search-open {
	position: relative;
	display: flex;
	height: 30px;
	width: 30px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	text-indent: -9999px;
	margin-left: auto;
	margin-right: 10px;
}

header>.inner #search-open:before {
	display: flex;
	font-size: 20px;
	align-items: center;
	justify-content: center;
	content: '\f002';
	font-family: "Font Awesome 5 Free";
	color: #000;
	text-indent: 0;
	font-weight: 900;
	position: absolute;
	left: 0;
	right: 0;
}

header>.inner #search-input:checked~.search {
	top: 50px;
	transition: 0.2s;
	z-index: 1;
}

header>.inner .search {
	display: block;
	position: fixed;
	top: -70px;
	left: 0;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.5);
	width: 100%;
	border-bottom: 1px solid #e6e6e6;
	transition: 0.2s;
	z-index: 1;
}

header>.inner .search .search-form {
	display: flex;
	justify-content: center;
	height: 40px;
}

header>.inner .search .search-form .keywords {
	border: 1px solid #cecece;
	border-radius: 5px;
	width: 190px;
	margin-right: 5px;
	padding: 5px;
	font-size: 15px;
}

header>.inner .search .search-form .submit {
	width: 40px;
	background-color: #102955;
	border-radius: 5px;
	text-indent: -9999px;
	border: none;
	background-image: url(/wordpress/wp-content/themes/gaitame/img/common/search.png);
	background-repeat: no-repeat;
	background-position: center;
}

header .smp_menu_sw {
	display: none;
}

header .smp_menu_img {
	position: relative;
	display: flex;
	height: 17px;
	width: 30px;
	justify-content: center;
	align-items: center;
	z-index: 90;
}

header .smp_menu_img:before {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	border-radius: 4px;
	background-color: #000;
	position: absolute;
	top: 0;
	transition: 0.2s;
}

header .smp_menu_img span {
	text-indent: -9999px;
	position: relative;
	height: 100%;
	width: 100%;

}

header .smp_menu_img span:before,
header .smp_menu_img span:after {
	content: '';
	display: block;
	height: 3px;
	width: 100%;
	border-radius: 4px;
	background-color: #000;
	position: absolute;
	transition: 0.2s;
}



header .smp_menu_img span:before {
	bottom: 0;
	top: 0;
	margin: auto;
}

header .smp_menu_img span:after {
	bottom: 0px;
}

header .smp_menu_sw:checked~.smp_menu_img:before {
	background-color: rgba(255, 255, 255, 0);
	transition: 0.2s;
}

header .smp_menu_sw:checked~.smp_menu_img span::before {
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(45deg);
	transition: 0.2s;
}

header .smp_menu_sw:checked~.smp_menu_img span::after {
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(-45deg);
	transition: 0.2s;
}

header .smp_menu_sw:checked~nav {
	right: 0%;
	transition: .3s ease-in-out;
}

header>.inner nav {
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 10;
	height: 100%;
	width: 70%;
	margin-top: 50px;
	background-color: rgba(0, 0, 0, 0.9);
	transition: .3s ease-in-out;
}

header>.inner nav ul {
	padding: 20px;
}

header>.inner nav ul li {
	margin-bottom: 10px;
}

header>.inner nav ul li a {
	padding: 10px 0;
}

header>.inner nav ul li a:link,
header>.inner nav ul li a:visited {
	font-size: 16px;
	text-decoration: none;
	color: #fff;
	position: relative;
}

header>.inner nav ul li.active a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 4px;
	background-color: #1a77c5;
}


footer {
	margin-top: 50px;
}

footer nav {
	background-color: #494949;
	padding-top: 20px;
	padding-bottom: 20px;
}

footer nav ul {
	font-size: 14px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

footer nav ul li {
	padding: 10px;
	width: 50%;
	text-align: center;
}




footer nav ul li a:link,
footer nav ul li a:visited {
	color: #fff;
	text-decoration: none;
}

footer .attention {
	background-color: #1b1b1b;
}

footer .attention .inner {
	font-size: 12px;
	color: #a0a0a0;
	padding: 20px;
	margin: auto;
	line-height: 150%;
}

footer .attention .inner dl dd {
	margin-bottom: 1em;
}

footer .copyrights {
	padding: 20px;
	background-color: #fff;
	text-align: center;
	font-size: 12px;
}

.column_wrap {}

.column_wrap>main {
	flex: 1;
}

/*サイドバー*/
.column_wrap aside {}

.column_wrap aside .side_wrap {
	background-color: #fff;
	padding: 20px;
}

.column_wrap aside .side_wrap .side_section {
	margin-bottom: 50px;
}

.column_wrap aside .side_wrap .side_section .title {
	display: block;
	background-color: #102955;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	margin-bottom: 20px;
}

.column_wrap aside .side_wrap .side_section .side_list_1 li {
	font-size: 16px;
	border-bottom: 1px dashed #cecece;
	padding-bottom: 15px;
	margin-bottom: 15px;
	line-height: 140%;
}


.column_wrap aside .side_wrap .side_section .side_list_1 li a:link,
.column_wrap aside .side_wrap .side_section .side_list_1 li a:visited {
	color: inherit;
	text-decoration: none;
}

/*パンクズ*/
.bread_list {
	display: none;
}


/*ページャー*/
.pagenation ul {
	display: flex;
	justify-content: center;
	font-size: 14px;
}

.pagenation ul li {
	display: flex;
	justify-content: center;
	margin-left: 5px;
	margin-right: 5px;
}

.pagenation ul li a:link,
.pagenation ul li a:visited {
	border-radius: 50%;
	width: 2em;
	height: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #d1d1d1;
	background-color: #fff;
	text-decoration: none;
	line-height: 0;
}

.pagenation ul li.active,
.pagenation ul li.active {
	border-radius: 50%;
	width: 2em;
	height: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #5f5f5f;
	color: #fff;
	background-color: #5f5f5f;
	text-decoration: none;
	line-height: 0;
}

.pagenation ul li.prev a:link,
.pagenation ul li.prev a:visited,
.pagenation ul li.next a:link,
.pagenation ul li.next a:visited {
	width: 3em;
	border-radius: unset;
	border: none;
	background-color: transparent;
}


/*----------------------------------------
■汎用クラス
----------------------------------------*/
a.btn_1:link,
a.btn_1:visited {
	color: #1a9abe;
	border: 1px solid #1a9abe;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 10px;
	text-decoration: none;
	position: relative;
	font-size: 14px;
	margin-left: auto;
	margin-right: auto;
}

a.btn_1:hover {
	background-color: #1a9abe;
	color: #fff;
}

a.btn_1:after {
	content: "\f138";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	width: 1em;
	height: 1em;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 10px;
}

.title_1 {
	font-size: 18px;
	font-weight: bold;
	color: #102955;
	text-align: center;
	margin-bottom: 40px;
}

.title_1 .under_line {
	padding-bottom: 5px;
	display: inline-block;
	border-bottom: 3px solid #102955;
}

.title_2 {
	font-size: 18px;
	font-weight: bold;
	position: relative;
	padding-bottom: 15px;
	display: block;
	width: 100%;
	margin-bottom: 20px;
}

.title_2:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	background-color: #d2d2d2;
	height: 4px;
	width: 100%;
}

.title_2 .under_line {
	position: relative;
	display: inline-block;
}

.title_2 .under_line:before {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 0;
	display: block;
	background-color: #102955;
	height: 4px;
	width: 100%;
}

.title_3 {
	font-weight: bold;
	background-color: #102955;
	font-size: 18px;
	color: #fff;
	padding: 15px 10px;
	text-align: center;
	width: 100%;
	margin-bottom: 30px;
}

.title_4 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.text_1 {
	line-height: 150%;
	font-size: 16px;
}

.visual_title span.title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	background-color: rgb(255, 255, 255, 0.8);
	padding: 5px 10px;
	margin: auto;
	font-size: 18px;
	color: #000;
	font-weight: bold;
}

a.text_link_blank:link:after,
a.text_link_blank:visited:after {
	content: "\f2d2";
	font-family: 'Font Awesome 5 Free';
	margin-left: 5px;
	text-decoration: none;

}

ul.list_1 li {
	border-bottom: 1px dashed #d0d0d0;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

ul.list_1 li a:link,
ul.list_1 li a:visited {
	color: #102955;
	text-decoration: none;
	display: flex;
	line-height: 140%;
}

ul.list_1 li time {
	color: #777777;
	margin-right: 1em;
	width: 9em;
}

ul.list_1 li .title {
	flex: 1;
}

a.cover_link:link,
a.cover_link:visited {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: block;
	text-indent: -9999px;
	z-index: 1;
}

a.cover_link:hover~* {
	opacity: 0.5;
}

.tbl_1 {
	width: 100%;
	line-height: 140%;
}

.tbl_1 tbody tr {
	display: block;
	padding-bottom: 15px;
}

.tbl_1 tbody th {
	display: block;
	font-weight: bold;
}


.tbl_1 tbody td {}

/*----------------------------------------
■トップ
----------------------------------------*/
#home .visual {

	position: relative;
	padding-left: 10px;
	padding-right: 10px;
	background-image: url(/wordpress/wp-content/themes/gaitame/img/index/visual_bg_sp.png);
	background-repeat: no-repeat;
	background-size: cover;
}

#home .visual .inner {
	height: 100%;
	width: 100%;
	margin: auto;
	position: relative;
}

#home .visual .wrap {
	text-align: center;
	padding-top: 15px;
}

#home .visual .inner .text {
	margin-bottom: 10px;
}

#home .visual .inner a.btn_1 {
	width: 50%;
	margin-bottom: 10px;
}

#home .visual .inner .logo {
	margin-bottom: 10px;
}



#home #img_menu_boxes {
	background-color: #f8f8f8;
}

#home #img_menu_boxes .inner {
	display: grid;
	grid-gap: 0px;
	grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
	justify-content: center;
}

#home #img_menu_boxes .inner .box {
	position: relative;
	overflow: hidden;
}


#home #img_menu_boxes .inner .box:after {
	content: "";
	background-color: rgb(0, 0, 0, 0.5);
	width: 100%;
	height: 30px;
	position: absolute;
	bottom: 0;
	left: 0;
}

#home #img_menu_boxes .inner .box a:link,
#home #img_menu_boxes .inner .box a:visited {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	z-index: 1;
	padding-bottom: 3px;
}

#home #img_menu_boxes .inner .box img {
	display: block;
	width: 100%;
	max-width: auto;
}

#home #img_menu_boxes .inner .box a:after {
	content: "\f138";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-left: 5px;
	padding-bottom: 3px;
}

#home #new_article .article_boxes {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	justify-content: center;
	margin-bottom: 20px;
}

#home #new_article .article_boxes .box {
	border: 1px solid #dedede;
	padding: 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;

}

#home #new_article .article_boxes .box a.cover_link {
	z-index: 1;
}

#home #new_article .article_boxes .box .img {
	overflow: hidden;
	margin-bottom: 15px;
	width: 100%;
}


#home #new_article .article_boxes .box img {
	display: block;
	width: 100%;
	height: auto;
	zoom: 1;
}

#home #new_article .article_boxes .box .title {
	margin-bottom: 15px;
	color: #102955;
	font-size: 16px;
	font-weight: bold;
	line-height: 140%;
	flex: 1;
}

#home #new_article .article_boxes .box time {
	display: block;
	color: #777777;
	font-size: 14px;
	margin-bottom: 15px;
	margin-top: auto;
}

#home #new_article .article_boxes .box a.category:link,
#home #new_article .article_boxes .box a.category:visited {
	background-color: #e6e6e6;
	display: inline-block;
	width: auto;
	border-radius: 30px;
	padding: 5px 10px;
	text-decoration: none;
	font-size: 14px;
	color: #777777;
	z-index: 2;
	position: relative;
	margin-top: auto;
}

#home #new_article .btn_1 {
	margin-left: auto;
	margin-right: auto;
}

#home #news {
	background-color: #f3f3f3;
}

#home #news .news_lists {
	max-width: 670px;
	margin: auto;
	margin-bottom: 40px;
}

#home #news .news_lists li {
	border-bottom: 1px dashed #d0d0d0;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

#home #news .news_lists li a:link,
#home #news .news_lists li a:visited {
	color: #102955;
	text-decoration: none;
}



#home #news .news_lists li time {
	color: #777777;
	margin-right: 1em;
}

/*----------------------------------------
■検索結果
----------------------------------------*/
#search #result .result_text {
	margin-bottom: 15px;
}

#search #result .result_boxs {
	margin-bottom: 30px;
}

#search #result .result_boxs .box {
	position: relative;
	display: flex;
	background-color: #fff;
	border: 1px solid #dedede;
	padding: 10px;

}

#search #result .result_boxs .box:not(:last-child) {
	margin-bottom: 20px;
}

#search #result .result_boxs .box .img {
	width: 100px;
	margin-right: 10px;
}

#search #result .result_boxs .box .detail {
	flex: 1;
}

#search #result .result_boxs .box .detail .title {
	font-size: 16px;
	font-weight: bold;
	color: #102955;
	margin-bottom: 10px;
}

#search #result .result_boxs .box .detail .text {
	line-height: 120%;
}

#search #result .result_boxs .box .detail .url {
	display: none;
}

/*----------------------------------------
■エラー
----------------------------------------*/
section#page_404 .error_title {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	display: block;
	margin-bottom: 40px;
}

section#page_404 .message {
	text-align: center;
}


/*----------------------------------------
■最新記事
----------------------------------------*/
#new_article .visual_title {
	background-image: url(/wordpress/wp-content/themes/gaitame/img/report/visual_sp.png);
	background-size: cover;
	height: 0;
	padding-top: 21.7423%;
	position: relative;
}

#new_article .new_article_boxes {
	margin-bottom: 20px;
}

#new_article .new_article_boxes .box {
	padding: 20px;
	background-color: #fff;
	border: 1px solid #dedede;
	position: relative;
	margin-bottom: 20px;
}

#new_article .new_article_boxes .box:last-child {
	margin-bottom: 0;
}

#new_article .new_article_boxes .box .img {}


#new_article .new_article_boxes .box .title {
	margin-right: 15px;
	color: #102955;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 15px;
	line-height: 130%;
}

#new_article .new_article_boxes .box .text {
	line-height: 150%;
	margin-bottom: 15px;
}

#new_article .new_article_boxes .box .info {
	margin-top: auto;
	font-size: 14px;
	color: #777777;
}

#new_article .new_article_boxes .box .category_wrap {
	margin-top: 10px;
	z-index: 2;
	position: relative;
}

#new_article .new_article_boxes .box a.category:link,
#new_article .new_article_boxes .box a.category:visited {
	background-color: #e6e6e6;
	display: inline-block;
	width: auto;
	border-radius: 30px;
	padding: 5px 10px;
	text-decoration: none;
	font-size: 14px;
	color: #777777;
	z-index: 2;
	position: relative;
	margin-top: auto;
	margin-left: auto;
}