@charset "UTF-8";

.under_menu {
	position: fixed;
	z-index: 25;
	width: 100vw;
	background-color: rgba(0,0,0,0.25);
	bottom: 0px;
}
.under_menu .container {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}
.under_menu .inner {
	display: flex;
	justify-content: space-between;
	padding-bottom: 17px;
	padding-top: 8px;
}
.under_menu .contact {
	text-decoration: none;
	display: flex;
	justify-content: center;
	border-radius: 9999px;
	align-items: center;
}
.under_menu .contact.tel {
	background-color: #FFFFFF;
	height: 38px;
	width: 51%;
	outline: 1px solid #4FB14C;
}
.under_menu .contact.mail {
	background-color: #4FB14C;
	height: 38px;
	width: 33%;
	outline: 1px solid #FFFFFF;
}
.under_menu .top {
	width: 39px;
	text-align: center;
	background-color: #979797;
	display: flex;
	align-items: center;
	border-radius: 50%;
	justify-content: center;
	outline: 1px solid #FFFFFF;
}
.under_menu .contact img {
	width: auto;
	height: 4.9vw;
	display: none;
}
.under_menu .contact.tel p {
	color: #4FB14C;
	font-size: min(4.5vw,20px);/*（基本サイズ、最大サイズ）*/
	font-weight: bold;
	line-height: 1.1;
	margin-left: 7px;
	margin-top: -6px;
}
.under_menu .contact.mail p {
	color: #FFFFFF;
	font-size: min(3.3vw,13px);/*（基本サイズ、最大サイズ）*/
	font-weight: bold;
	line-height: 1;
}
.under_menu .contact.mail p span {
	color: #FFFF00;
}
.under_menu .contact .pc {
	display: none;
}
.under_menu .contact.tel p span {
	font-size: min(2.4vw,11px);/*（基本サイズ、最大サイズ）*/
	color: #1E1E1E;
	font-weight: normal;
	display: inline-block;
}
.under_menu .top img {
	width: 33%;
	height: auto;
}

.under_menu .pc_small_menu {
	display: none;
}















@media (min-width:600px) and (max-width:959px){
.under_menu .contact img {
	height: 26px;
	display: inline;
}
.under_menu .top img {
	width: 15px;
	height: auto;
}


























}

@media (min-width:960px){

.under_menu {
	width: auto;
	left: auto;
	right: 0px;
	background-color: rgba(0,0,0,0);
}
.under_menu .container {
	width: 100%;
}
.under_menu .inner {
	align-items: center;
}
.under_menu .contact {
	width: auto;
	margin-right: 15px;
	transition: all 0.3s;
	box-shadow: 1px 1px 8px #8C8C8C;
}
.under_menu .contact:hover {
	opacity: 0.8;
}
.under_menu .contact.tel p {
	font-size: 27px;
	margin-top: -11px;
	margin-left: 10px;
	line-height: 1;
}
.under_menu .contact.mail p {
	font-size: 16px;
}
.under_menu .contact.tel p span {
	font-size: 11px;
}
.under_menu .contact .mobile {
	display: none;
}
.under_menu .contact .pc {
	display: inline;
}
.under_menu .top {
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: all 0.3s;
	margin-right: 15px;
	outline: 2px solid #FFFFFF;
	box-shadow: 1px 1px 8px #8C8C8C;
	margin-left: 7px;
}
.under_menu .top:hover {
	opacity: 0.8;
}
.under_menu .contact img {
	height: 29px;
	display: inline;
}
.under_menu .contact.mail {
	height: 50px;
	outline: 2px solid #FFFFFF;
	width: 190px;
}
.under_menu .contact.tel {
	height: 50px;
	width: 290px;
	outline: 2px solid #4FB14C;
}


.under_menu .pc_small_menu {
	margin-right: 8px;
	display: inline;
}
.under_menu .pc_small_menu a {
	color: #2D862A;
	text-decoration: none;
	font-size: 13px;
	padding-left: 8px;
	padding-right: 8px;
	display: inline-block;
	outline: 1px solid #4FB14C;
	padding-top: 4px;
	padding-bottom: 4px;
	border-radius: 9999px;
	line-height: 1;
	background-color: #FFFFFF;
	margin-bottom: 6px;
	transition: all 0.3s;
	box-shadow: 1px 1px 8px #8C8C8C;
	align-items: center;
}
.under_menu .pc_small_menu a:last-child {
	margin-bottom: 0px;
}
.under_menu .pc_small_menu a:hover {
	color: #FFFFFF;
	background-color: #4FB14C;
}






































}
@charset "UTF-8";


.hero {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-bottom: 110px;
}
/*フルスクリーン動画*/
.hero .hero_video {
	/* Make video to at least 100% wide and tall */
	min-width: 100vw;
	min-height: 100vh;
	/* Setting width & height to auto prevents the browser from stretching or squishing the video */
	width: auto;
	height: auto;
	/* Center the video */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}
/*--------------*/
/*フルスクリーン画像*/
.hero .mobile_hero {
	/* Make video to at least 100% wide and tall */
	min-width: 100vw;
	min-height: 100vh;
	/* Setting width & height to auto prevents the browser from stretching or squishing the video */
	width: auto;
	height: auto;
	/* Center the video */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url(img/hero_back.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
/*--------------*/

.sub_hero .sub_title {
	width: 84%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
}
.sub_hero .sub_title .text {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 25px;
}
.sub_hero .sub_title .text img {
	width: 28px;
	margin-right: 6px;
	display: block;
}
.sub_hero .sub_title p {
	color: #FFFFFF;
	font-size: min(4.7vw,26px);/*（基本サイズ、最大サイズ）*/
	letter-spacing: 0.08em;
	text-shadow: 3px 0 10px #000000;
	font-weight: normal;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	background: linear-gradient(transparent 90%, #4FB14C 0%);
	display: inline-block;
	position: relative;
	line-height: 1;
	padding-bottom: 8px;
	width: auto;
	margin-top: 0px;
	margin-left: 0px;
}
.sub_hero .sub_title p span {
	color: #FFFF00;
	font-weight: bold;
}

.hero .hero_title_box {
	width: 100%;
	height: 100vh;
	z-index: 2;
	position: relative;
}
.hero .hero_under_section {
	position: relative;
	width: 86%;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
	padding-top: 40px;
}
.hero .hero_under_section .text_box h1 {
	color: #D0D0D0;
	font-size: 12px;
	margin-bottom: 20px;
	font-weight: normal;
}
.hero .hero_under_section .text_box p {
	color: #FFFFFF;
	font-size: 18px;
	margin-bottom: 20px;
	text-align: justify;
}
.hero .hero_under_section .text_box p span {
	color: #FFFF00;
	font-weight: bold;
}
.video_box {
	margin-top: 35px;
}
.video_box .cm_video {
	width: 100%;
}
.video {
	position: relative;
	padding-bottom: 56.25%;
	border: 7px solid #F1F1F1;
}
.hero .hero_title_box .sub_title {
	position: absolute;
	display: inline-block;
	left: 7%;
	bottom: 27%;
}
.mobile_hero_menu {
	position: absolute;
	right: 0;
	left: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
	display: flex;
	justify-content: space-between;
	width: 96%;
	margin-top: 59px;
	z-index: 5;
}
.mobile_hero_menu a {
	text-decoration: none;
	background-color: #4FB14C;
	color: #FFFFFF;
	font-size: 3.3vw;
	line-height: 1;
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 7px;
	padding-right: 7px;
	border-radius: 5px;
	border: 1px solid #FFFFFF;
}
.hero .sub_title p {
	color: #FFFFFF;
	font-size: min(6.1vw,33px);/*（基本サイズ、最大サイズ）*/
	letter-spacing: 0.08em;
	text-shadow: 3px 0 10px #000000;
	font-weight: normal;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	background: linear-gradient(transparent 90%, #4FB14C 0%);
	display: inline-block;
	padding-left: 20px;
	margin-top: 25px;
	position: relative;
	line-height: 1;
	padding-bottom: 8px;
}
.hero .sub_title p span {
	color: #FFFF00;
	font-weight: bold;
}
.hero .sub_title p img {
	width: 32px;
	height: auto;
	position: absolute;
	bottom: -15px;
	left: -20px;
}



.hero .sub .sub_title.column h1 {
	font-size: min(5.3vw,21px);/*（基本サイズ、最大サイズ）*/
	letter-spacing: 0.08em;
}
.hero .sub .sub_title h1 {
	font-size: min(6.7vw,28px);/*（基本サイズ、最大サイズ）*/
	letter-spacing: 0.07em;
}
.slick_filter {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	background-color: rgba(0,0,0,0.15);
	z-index: 1;
}

/*パンクズリスト*/
.breadcrumb {
	width: 90%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0px;
	padding-right: 0px;
}
.breadcrumb.article {
	width: 88%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.breadcrumb li {
	list-style-type: none;
	display: inline;
}
.breadcrumb li:after{
	content: '>';
	padding-right: 2px;
	padding-left: 2px;
	color: #BEBEBE;
}
.breadcrumb li:last-child:after{
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #FFF;
	font-size: 12px;
	transition: all 0.3s;
}
.breadcrumb li .gray span {
	color:#989898;
}

.release_time {
	display: flex;
	justify-content: center;
}
.release_time time {
	font-size: 12px;
	color: #D8D8D8;
	display: flex;
	align-items: center;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
}
.release_time time img {
	width: 12px;
	height: auto;
	margin-right: 5px;
}

.article_hero .tag {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
}
.article_hero .tag a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 12px;
	padding-left: 9px;
	padding-right: 9px;
	padding-top: 1px;
	padding-bottom: 1px;
	margin-right: 8px;
	margin-bottom: 11px;
	display: inline-block;
	background-color: #1E2161;
}

.back_color {
	background-color: rgba(2,25,0,0.60);
	display: none;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}




























@media (min-width:600px) and (max-width:959px){
.hero .main_title img {
	width: 500px;
}
.hero .hero_under_section {
	max-width: 650px;
}
.mobile_hero_menu a {
	font-size: 16px;
	padding-left: 9px;
	padding-right: 9px;
	margin-right: 12px;
}
.mobile_hero_menu {
	justify-content: flex-start;
}
/*フルスクリーン動画*/
.hero video {
	display: inline;
}
/*--------------*/
/*フルスクリーン画像*/
.hero .mobile_hero {
	display: none;
}















































}













@media (min-width:960px){
.sub_hero .sub_title {
	margin-top: 0px;
	margin-left: 10%;
}
.sub_hero .sub_title .text {
	margin-top: 40px;
}
.sub_hero .sub_title p {
	font-size: min(2.6vw,37px);/*（基本サイズ、最大サイズ）*/
	background: linear-gradient(transparent 93%, #4FB14C 0%);
	margin-top: 0px;
	padding-bottom: 10px;
}
.sub_hero .sub_title .text img {
	width: 47px;
	margin-right: 8px;
}
.hero .sub_title p {
	font-size: 46px;
	background: linear-gradient(transparent 93%, #4FB14C 0%);
	padding-left: 45px;
	margin-top: 45px;
	padding-bottom: 10px;
}
.hero .sub_title p img {
	width: 50px;
	bottom: -24px;
	left: -20px;
}
.hero .hero_title_box {

}
.hero .hero_title_box .sub_title {
	left: 60px;
	bottom: 115px;
}

.slick_filter {
}
.hero {
	height: auto;
	padding-bottom: 190px;
}
.video {
	padding-bottom: 53%;
	border: 20px solid #F1F1F1;
}

/*パンクズリスト*/
.breadcrumb {
	width: 84.5%;
	max-width: 1300px;
}
.breadcrumb.article {
	width: 77.5%;
	max-width: 920px;
}
.breadcrumb li a {
	font-size: 13px;
}
.breadcrumb li:after{
	padding-right: 5px;
	padding-left: 5px;
	font-size: 16px;
}
.breadcrumb li a:hover  {
	opacity: 0.7;
}

.release_time {

}
.release_time time {
	font-size: 15px;
}
.release_time time img {
	width: 14px;
	height: auto;
	margin-right: 7px;
}

.article_hero .tag {
	margin-top: 15px;
}
.article_hero .tag a {
	padding-left: 12px;
	padding-right: 12px;
	margin-bottom: 12px;
	transition: all 0.3s;
	padding-top: 3px;
	padding-bottom: 3px;
	font-size: 14px;
	margin-right: 10px;
}
.article_hero .tag a:hover {
	color: #1E2161;
	background-color: #FFFFFF;
}
.hero .sub .sub_title.column h1 {
	font-size: 36px;
}

.hero .hero_video {
	/* Make video to at least 100% wide and tall */
	min-width: 100vw;
	min-height: 100vh;
	/* Setting width & height to auto prevents the browser from stretching or squishing the video */
	width: auto;
	height: auto;
	/* Center the video */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline;
}
.hero .hero_under_section {
	width: 85%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 100px;
	max-width: 1430px;
}
.hero .hero_under_section .text_box {
	width: 46.5%;
}
.video_box {
	width: 46.5%;
	margin-top: 0px;
}
.hero .hero_under_section .text_box p {
	font-size: min(1.6vw,28px);/*（基本サイズ、最大サイズ）*/
	margin-bottom: 20px;
}
.hero .hero_under_section .text_box h1 {
	font-size: 13px;
	margin-bottom: 20px;
}
.mobile_hero_menu {
	display: none;
}
/*--------------*/
/*フルスクリーン画像*/
.hero .mobile_hero {
	display: none;
}







































}
@charset "UTF-8";
/*メールフォーム用CSS*/


.mail_form_box {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
}
.mail_form_box p {
	font-size: 15px;
	color: #000000;
	line-height: 1.5;
}
.mail_form_box form {
	margin-top: 40px;
}
.mail_form_box form p {
	border-top: 1px solid #999999;
	padding-bottom: 30px;
	padding-top: 30px;
	line-height: 1.5;
}
.mail_form_box form .textfield_label {
	font-size: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
}
.mail_form_box form .icon_require {
	font-size: 12px;
	background-color: #FF3900;
	font-weight: normal;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-radius: 3px;
	color: #FFFFFF;
	line-height: 1;
}
.mail_form_box form .icon_any {
	font-size: 12px;
	background-color: #367FD4;
	font-weight: normal;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-radius: 3px;
	color: #FFFFFF;
	line-height: 1;
}
.mail_form_box form .prefecture {
	font-size: 13px;
	width: 100%;
	display: block;
	margin-top: 15px;
}
.mail_form_box form .form_space_box_A {
	height: 35px;
	width: 100%;
	display: block;
}
.mail_form_box form .toggle {
	padding: 5px;
	width: 170px;
	font-size: 14px;
	color: #000000;
	margin-top: 15px;
	border: 1px solid #888888;
}
.mail_form_box form .form_text {
	padding: 5px;
	width: 96.5%;
	font-size: 14px;
	margin-top: 15px;
	border: 1px solid #888888;
}
.mail_form_box form .submit {
	display: flex;
}
.mail_form_box form .submit input {
	font-size: 15px;
	color: #FFF;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	transition: all 0.3s;
	border-radius: 100vw;
	background-color: #4FB14C;
	margin-top: 15px;
	/*border: 0px solid #785C1C;*/
	border: none;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
}
.mail_form_box form #message {
	padding: 5px;
	width: 96.5%;
	font-size: 14px;
	margin-top: 15px;
	height: 190px;
}
.mail_form_box form .radio {
	font-size: 15px;
	width: 100%;
	display: block;
	margin-top: 15px;
	line-height: 1.7;
}

.mail_form_box form .img_send {
	font-size: 15px;
	width: 100%;
	display: block;
	line-height: 1.6;
	text-align: center;
}








@media (min-width:600px) and (max-width:959px){
.mail_form_box form .textfield_label {
	justify-content: flex-start;
}
.mail_form_box form .icon_require {
	margin-left: 15px;
}
.mail_form_box form .icon_any {
	margin-left: 15px;
}
















}





@media (min-width:960px){
.mail_form_box form {
	margin-top: 60px;
}
.mail_form_box form p {
	padding-bottom: 30px;
	padding-top: 30px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	flex-wrap: wrap;
}
.mail_form_box form .textfield_label {
	font-size: 17px;
	width: 220px;
	text-align: left;
	display: flex;
}
.mail_form_box form .textfield_label br.pc_none {
	display: none;
}
.mail_form_box form .icon_require {
	font-size: 14px;
}
.mail_form_box form .icon_any {
	font-size: 14px;
}
.mail_form_box form .prefecture {
	font-size: 14px;
	width: 61.8%;
	margin-top: 0px;
	text-align: left;
}
.mail_form_box form .toggle {
	padding: 5px;
	width: 61.5%;
	font-size: 16px;
	margin-top: 0px;
}
.mail_form_box form .prefecture .toggle {
	margin-bottom: 0px;
}
.mail_form_box form .form_text {
	width: 60%;
	font-size: 16px;
	margin-top: 0px;
}
.mail_form_box form .submit input {
	font-size: 17px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 60px;
	padding-right: 60px;
	margin-top: 20px;
	cursor: pointer;
	margin-bottom: 20px;
}
.mail_form_box form .submit input:hover {
	opacity: 0.7;
}
.mail_form_box form #message {
	padding: 5px;
	width: 60%;
	font-size: 16px;
	margin-top: 0px;
	height: 220px;
}
.mail_form_box form .radio {
	font-size: 16px;
	width: 61.5%;
	margin-top: 0px;
	text-align: left;
}
.mail_form_box form .form_space_box_B {
	height: 30px;
	width: 100%;
	display: block;
}
.mail_form_box form .form_space_box_A {
	height: 30px;
}
.mail_form_box p {
	font-size: 16px;
}
.mail_form_box {
	max-width: 950px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
}
.mail_form_box form .img_send {
	font-size: 16px;
	text-align: center;
}






















}
@charset "UTF-8";
/*WP投稿用CSS*/

.post_content_box {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 40px;
}
.post_content_box h1 {
	letter-spacing: 0.01em;
	font-weight: normal;
	line-height: 1.7;
}
.post_content_box h2 {
	color: #FFFFFF;/*文字色（白）*/
	letter-spacing: 0.01em;
	line-height: 1.6;
	font-size: 19px;
	margin-bottom: 30px;
	margin-top: 60px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 13px;
	padding-bottom: 13px;
	position: relative;
	border-radius: 10px;
	background-color: #4FB14C;
	font-weight: bold;
}
.post_content_box h2 span {
	color: #FFFFFF!important;
}
.post_content_box h2.under_margin {
	margin-bottom: 0px;
}
.post_content_box h3 {
	color: #000000;
	font-size: 18px;
	line-height: 1.7;
	letter-spacing: 0.01em;
	font-weight: bold;
	position: relative;
	text-align: justify;
	margin-bottom: 30px;
	margin-top: 40px;
	padding-left: 12px;
	padding-top: 5px;
	padding-bottom: 5px;
	display: block;
	border-left: 5px solid #4FB14C;/*二重線左側（太さ 実線 色）*/
}

.post_content_box h4 {
	letter-spacing: 0.01em;
	font-weight: bold;
	line-height: 1.7;
	color: #000000;
	font-size: 16px;
	padding-left: 13px;
	margin-bottom: 27px;
	margin-top: 20px;
	text-align: justify;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	display: inline-block;
	position: relative;
}
.post_content_box h4::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translate(0%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #EEFFED;
	z-index: -1;
}
.post_content_box h5 {
	letter-spacing: 0.01em;
	font-weight: normal;
	line-height: 1.7;
}
.post_content_box p {
	letter-spacing: 0.01em;
	font-weight: normal;
	line-height: 1.7;
	color: #000;
	font-size: 14px;
	margin-bottom: 20px;
	/* [disabled]text-align: justify; */
}
.post_content_box .wp-block-media-text__content p {
	left: 0;
	right: 0;
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}
.post_content_box .wp-block-media-text__content {

}
.post_content_box span {
	letter-spacing: 0.01em;
	font-weight: normal;
	line-height: 1.7;
}
.post_content_box a {
	letter-spacing: 0.01em;
	font-weight: normal;
	line-height: 1.7;
	color: #133D8C;
	font-size: 14px;
	text-decoration: none;
	display: inline-block;
}
.post_content_box img {
	width: 100%;
	margin-bottom: 30px;
	margin-top: 10px;
	display: block;
}
.post_content_box a img {
	margin-top: 20px;
}
.post_content_box .wp-block-gallery img {
	margin-top: 0px;
	margin-bottom: 0px;
}

/*---youtube動画サイズ調整---*/
.post_content_box .is-provider-youtube .wp-block-embed__wrapper {
	position: relative;
	padding-bottom: 56.25%;
	margin-bottom: 30px;
	margin-top: 30px;
}
.post_content_box .is-provider-youtube .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/*----記事_テーブル装飾----*/
.post_content_box table {
	border-collapse: collapse!important;
	margin-top: 30px!important;
	margin-bottom: 35px!important;
	border: solid 1px #888888!important;
	width: 100%!important;
}
.post_content_box th {
	color: #FFF!important;
	font-size: 15px!important;
	background-color: #4FB14C;
	padding: 5px 10px!important;
	line-height: 1.8!important;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	font-weight: normal!important;
	text-align: left!important;
	border-top: 1px solid #999999!important;
	border-right: 1px solid #999999!important;
	border-left: 1px solid #999999!important;
	border-bottom: none!important;
}
.post_content_box thead {
	border: none!important;
}
.post_content_box td {
	font-size: 15px!important;
	padding: 5px 10px!important;
	color: #000!important;
	border: solid 1px #999999!important;
	line-height: 1.8!important;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
}

/*----コラム詳細目次デザイン-LuckyWP----*/
.post_content_box .lwptoc {
	border: 1px solid #4FB14C;
	border-radius: 10px;
	padding-top: 25px;
	padding-bottom: 28px;
	padding-left: 6%;
	padding-right: 6%;
	margin-top: 30px;
}
.post_content_box .lwptoc_title {
	margin-bottom: 5px;
	font-size: 18px;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	border-bottom: 1px solid #4FB14C;
	padding-bottom: 5px;
	font-weight: normal;
	display: block;
}
.post_content_box .lwptoc_items-visible {
	width: 91%;
	margin-left: auto;
	margin-right: auto;
}
.post_content_box .lwptoc a {
	color: #000;
	margin-bottom: 0px;
	text-align: justify;
	margin-top: 17px;
	padding-left: 1.2em;
	text-indent: -1.2em;
	font-size: 14px;
	line-height: 1.6;
}
.post_content_box .lwptoc .lwptoc_item_number {
	color: #999999;
	margin-right: 5px;
	line-height: 1.6;
}
.post_content_box .lwptoc_item .lwptoc_itemWrap a {
	margin-top: 8px;
	padding-left: 32px;
	text-indent: -2.1em;
}

/*----リストデザイン----*/
.post_content_box ul {
	border: 1px solid #4FB14C;
	list-style-type: none;
	padding-top: 25px;
	padding-bottom: 8px;
	margin-bottom: 35px;
	margin-top: 30px;
	padding-left: 0px;
	padding-right: 0px;
	margin-left: 0px;
	border-radius: 10px;
	margin-right: 0px;
}
.post_content_box ul li {
	margin-bottom: 15px;
	font-size: 14px;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	font-weight: bold;
}

/*----記事_前次記事リンク----*/
.baf_box {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid #367FD4;
}
.baf_box .baf_link {
	border: 1px solid #367FD4;
	position: relative;
	border-radius: 20px;
	width: 30.5%;
	background-color: #367FD4;
}
.arrow_left {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-left: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	top: 47%;
	left: 7px;
}
.baf_box a {
	color: #FFFFFF;
	font-size: 13px;
	text-align: center;
	text-decoration: none;
	padding-top: 10px;
	padding-bottom: 10px;
	display: block;
}
.arrow_right {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-left: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	transform: rotate(-135deg) translateY(50%);
	position: absolute;
	top: 47%;
	right: 14px;
}










@media (min-width:600px) and (max-width:959px){













}





@media (min-width:960px){
.post_content_box {
	max-width: 1000px;
	width: 84.5%;
	padding-top: 70px;
}
.post_content_box h2 {
	font-size: min(2.5vw,28px);/*（基本サイズ、最大サイズ）*/
	line-height: 1.6;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 60px;
	margin-top: 100px;
	padding-left: 4%;
	padding-right: 4%;
}
.post_content_box h2.under_margin {
	margin-bottom: 0px;
}
.post_content_box h3 {
	font-size: 26px;
	padding-left: 15px;
	padding-top: 7px;
	padding-bottom: 7px;
	margin-bottom: 35px;
	margin-top: 60px;
	border-left: 8px solid #4FB14C;/*二重線左側（太さ 実線 色）*/
	margin-left: 1.5%;
}
.post_content_box h4 {
	font-size: 24px;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 20px;
	margin-bottom: 40px;
	margin-top: 30px;
	margin-left: 2%;
}
.post_content_box h4::before {
	width: 60px;
	height: 60px;
}
.post_content_box p {
	font-size: 17px;
	margin-bottom: 25px;
	padding-left: 4%;
	padding-right: 4%;
}
.post_content_box .wp-block-media-text__content p {
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
}
.post_content_box .wp-block-media-text__content {
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
}
.post_content_box .wp-block-media-text {
	padding-left: 3%;
	padding-right: 3%;
}
.post_content_box a {
	font-size: 17px;
	transition: all 0.3s;
}
.post_content_box a:hover {
	opacity: 0.8;
}
.post_content_box img {
	margin-bottom: 50px;
	margin-top: 25px;
	margin-left: auto;
	margin-right: auto;
	width: 92%;
}
.post_content_box .wp-block-gallery {
	margin-left: auto;
	margin-right: auto;
	width: 92%;
}
.post_content_box .wp-block-gallery img {
	margin-top: 0px;
	margin-bottom: 0px;
}
.post_content_box a img {
	margin-top: 50px;
}

/*----記事_テーブル装飾----*/
.post_content_box table {
	margin-bottom: 45px!important;
	margin-top: 40px!important;
	width: 92%!important;
	margin-left: auto!important;
	margin-right: auto!important;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
}
.post_content_box th {
	font-size: 16px!important;
	padding:12px 20px!important;
}
.post_content_box td {
	font-size: 16px!important;
	padding:12px 20px!important;
}

/*----コラム詳細目次デザイン-LuckyWP----*/
.post_content_box .lwptoc {
	padding-top: 50px;
	padding-bottom: 53px;
	padding-left: 10%;
	padding-right: 10%;
	margin-top: 60px;
	margin-left: 4%;
	margin-right: 4%;
	border: 2px solid #4FB14C;
}
.post_content_box .lwptoc_title {
	margin-bottom: 25px;
	font-size: 24px;
	padding-bottom: 10px;
	padding-left: 0px;
	border-bottom: 2px solid #4FB14C;
}
.post_content_box .lwptoc_items-visible {
	width: 94%;
}
.post_content_box .lwptoc a {
	margin-top: 20px;
	font-size: 16px;
	transition: all 0.3s;
}
.post_content_box .lwptoc a:hover {
	opacity: 0.5;
}
.post_content_box .lwptoc_item .lwptoc_itemWrap a {
	margin-top: 10px;
	padding-left: 38px;
}

/*----リストデザイン----*/
.post_content_box ul {
	padding-top: 40px;
	padding-bottom: 15px;
	margin-bottom: 45px;
	margin-top: 40px;
	width: 92%;
	margin-left: auto;
	margin-right: auto;
	border: 2px solid #4FB14C;
}
.post_content_box ul li {
	margin-bottom: 22px;
	font-size: 18px;
}

/*----記事_前次記事リンク----*/
.baf_box {
	margin-left: auto;
	margin-right: auto;
	margin-top: 80px;
	max-width: 850px;
	padding-top: 45px;
}
.baf_box .baf_link {
	border-radius: 30px;
	width: 23%;
}
.arrow_left {
	left: 14px;
}
.baf_box a {
	font-size: 15px;
	padding: 15px 0px;
	transition: all 0.3s;
}
.baf_box a:hover {
	opacity: 0.7;
}
.arrow_right {
	right: 21px;
}

/*---youtube動画サイズ調整---*/
.post_content_box .is-provider-youtube .wp-block-embed__wrapper {
	padding-bottom: 52%;
	margin-bottom: 50px;
	margin-top: 50px;
	width: 92%;
	margin-left: auto;
	margin-right: auto;
}



















}
