﻿@charset "UTF-8";

/*---------------------------------------

[reset]

[base]
	font
	anchor
	add class

.body_common set-up]
	h
	pagetop link

[lower.body_common]

[each page]

.body_common contents]
	container
	header
	main contents
	footer
	print

[clearfix]

[cms setting]

---------------------------------------*/

/* CSS Document */
/*===============================================
●style.css
===============================================*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.container {
	width: 100%;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: reset */
body,div,dl,dt,dd,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote {
	margin: 0;
	padding: 0;
}
ul,ol{
	margin: 0;
}

header,nav,section,aside,footer {
	display: block;
}

table {
	border-spacing: 0;
}

fieldset,img,a img,abbr,acronym {
	border: 0;
}

li img,dt img {
	vertical-align: top;
}

address,caption,cite,code,dfn,th,var {
	font-style: normal;
	font-weight: normal;
}

caption,th {
	text-align: left;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}

q:before,q:after {
	content: '';
}

a {
	outline: none;
}

button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: base */

/*--------------------------------------- font */
html {
	font-size: 62.5%;
}

body {
	font-family: 'Open Sans', Verdana,"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ",Meiryo, sans-serif;
	line-height: 1.8;
	color: #333333;
	-webkit-text-size-adjust: 100%;
	font-size: 1.6em;
}
@media screen and (max-width: 779px) {
	body {
		font-size:1.4em;
	}
}
.tech_search_btn,
.pref_link ul li a:after {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
nav#side li a:before {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.btn a:before,
.btn_left a:before,
.editor-style-btn1 a:before,
.editor-style-btn2 a:before {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}
@media screen and (max-width:779px) {
	html,body {
		-webkit-text-size-adjust: 100%;
		-webkit-overflow-scrolling: touch;
	}
	iframe{
		max-width:100%;
	}
}
/*----------------------- color */
/* red */
.red {
	color: #FF0000;
}

/* white */
.white {
	color: #FFFFFF;
}

/* aqua */
.aqua {
	color: #43b14b;
}

/* blue */
.blue {
	color: #334f99;
}

/* black */
.black {
	color: #0b0b0b;
}
/*----------------------- size */
/* size10px */
.size10 {
	font-size: 0.71em;
}

/* size12px */
.size12 {
	font-size: 0.85em;
}

/* size14px */
.size14 {
	font-size: 1.0em;
}

/* size16px */
.size14 {
	font-size: 1.14em;
}

/* size18px */
.size18 {
	font-size: 1.28em;
}

/* size22px */
.size22 {
	font-size: 1.57em;
}

/* size24px */
.size22 {
	font-size: 1.71em;
}


/*--------------------------------------- anchor */

a {
	color: #43b14b;
}

a:hover {
	color: #333333;
}

/* btn */
.btn {
	text-align: center;
	display: block;
	padding: 20px;
}
/* エディター：スタイル */
.editor-style-btn1,
.editor-style-btn2 {
	display: block;
	padding: 10px;
}
.btn a,
.btn_left a,
.editor-style-btn1 a,
.editor-style-btn2 a {
	text-decoration: none;
	display: inline-block;
	padding: 0.8em 3vw;
	line-height: 1.5;
	position: relative;
	display:inline-block;
	position:relative;
	text-align:center;
	border:1px solid #43b14b;
	font-size:1.1em;
	text-decoration:none;
	transition: color 0.2s, background-color 0.2s;
}
.btn a,
.btn_left a,
.editor-style-btn1 a {
	color:#43b14b;
	background-color:#fff;
}
.editor-style-btn2 a {
	color: #fff;
	background-color: #43b14b;
	box-shadow: 0 0 10px rgb(67 177 75 / 50%);
}
.btn a:hover,
.btn_left a:hover,
.editor-style-btn1 a:hover {
	color: #fff;
	background-color: #43b14b;
}
.editor-style-btn2 a:hover {
	color:#43b14b;
	background-color:#fff;
}
.editor-style-text1 {
	color: #ffffff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3),-1px -1px 5px rgba(0, 0, 0, 0.3);
}
/*--------------------------------------- add class */

.floatL {
	float: left;
}

.floatR {
	float: right;
}

.clearB {
	clear: both;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.bold {
	font-weight: bold;
}
.size_09 {
	font-size: 0.9em;
}
.youtube_box {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
 
.youtube_box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 780px), print {
	.sp_only {
		display:none;
	}
}
@media screen and (max-width: 779px) {
	.pc_only {
		display:none;
	}
}
/* ---------	可視範囲に入ったらフェードイン common.js */
/*左から右にフェードイン*/
.left-to-right {
	opacity: 0.1;
	transform: translateX(-30px);
	transition: transform 1s;
}
.left-to-right.scrollin {
	opacity: 1;
	transform: translate(0);
}
.right-to-left {
	opacity: 0.05;
	transform: translateX(30px);
	transition: transform 1s;
}
.right-to-left.scrollin {
	opacity: 1;
	transform: translate(0);
}
/*下から上にフェードイン*/
.down-to-top {
	opacity: 0.1;
	transform: translateY(30px);
	transition: transform 1s;
}
.down-to-top.scrollin {
	opacity: 1;
	transform: translateY(0);
}
.top-to-down {
	opacity: 0.1;
	transform: translateY(30px);
	transition: transform 1s;
}
.top-to-down.scrollin {
	opacity: 1;
	transform: translateY(0);
}
/*--------------------------------------- columnBox */
@media screen and (min-width: 780px), print {
	.columnBox {
		display: table;
		table-layout: fixed;
		width: 100%;
	}
	.columnBox .column {
		display: table-cell;
		vertical-align: top;
		padding: 10px 20px;
	}
	.columnBox .v_middle {
		vertical-align: middle;
	}
	.columnBox .v_bottom {
		vertical-align: bottom;
	}
	.w20 {
		width: 20%;
	}
	.w30 {
		width: 30%;
	}
	.w40 {
		width: 40%;
	}
	.w50 {
		width: 50%;
	}
	.w60 {
		width: 60%;
	}
	.w70 {
		width: 70%;
	}
	.w80 {
		width: 80%;
	}
	.padr3 {
		padding-right: 3%;
	}
	.padL3 {
		padding-left: 3%;
	}
	.padt3 {
		padding-top: 3%;
	}
	.padt6 {
		padding-top: 6%;
	}
}

@media screen and (min-width:780px), print {

}
@media screen and (max-width: 779px) {

}
/*--------------------------------------- list_text */
.list_text,
.list_text li {
	display: block;
	padding: 0;
	margin: 0;
}
.list_text {
	background-color: #fff;
	border-radius: 10px;
}
.list_text li {
	border-top: 1px solid #eaeaea;
}
.list_text li:first-child {
	border-top: none;
}
.list_text li a {
	color: unset;
	text-decoration:none;
	display: block;
}
.list_text li .listBox {
	width: 100%;
}
.list_text li .date {
	color: #777777;
	font-size: 0.9em;
	width: 6em;
}
.list_text li .category {
	font-size: 0.9em;
	width: 10em;
}
.list_text li .category span {
	display: block;
	text-align: center;
	color: #ffffff;
	background-color: #777777;
	border-radius: 100em;
}
.list_text li .icon_color_1 span {
	background-color: #f38c2a;
}
.list_text li .icon_color_2 span {
	color: #333;
	background-color: #FAEE67;
}
.list_text li .icon_color_3 span {
	background-color: #d76e85;
}
.list_text li .listBox .date {
	margin-right:20px;
}
.list_text li .listBox .label {
	display:inline-block;
	min-width:6.5em;
}
.list_text li .listBox .label span {
	border-radius: 1em;
	border: 1px solid #eaeaea;
	line-height: 1;
	padding: 5px 1em;
}
@media screen and (min-width: 780px), print {
	.list_text li .listBox {
		display: flex;
		align-items:center;
		padding:1em 0;
	}
	.list_text li .listBox .date,
	.list_text li .listBox .category,
	.list_text li .listBox .text {
		display:inline-block;
	}
	.list_text li .listBox .date,
	.list_text li .listBox .label {
		white-space:nowrap;
	}
}
@media screen and (max-width: 779px) {
	.list_text li .listBox {
		padding: 10px 20px;
		display: block;
	}
	.list_text li .listBox .date,
	.list_text li .listBox .category {
		padding: 5px 0;
		display: inline-block;
		vertical-align: middle;
	}
	.list_text li .listBox .text {
		padding: 5px 0;
		display: block;
	}
	.list_text li .listBox .title {
		display:block;
		width:100%;
	}
}
/*--------------------------------------- list_thumbnail */
.list_thumbnail {
	width:100%;
	padding: 1em 0;
	margin: 0;
}

.list_thumbnail li{
	display: inline-block;
	vertical-align: top;
	margin: 0;
}
.list_thumbnail li a {
	display: block;
	text-decoration: none;
	color: #777777;
}
.list_thumbnail .listBox {
	display: block;
	padding: 0 10px 1em;
	position: relative;
}
.list_thumbnail .thumbnail {
	display: block;
	overflow: hidden;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	transition: transform linear 0.2s;
}
.list_thumbnail .thumbnail span{
	padding: 27% 0;
	display: block;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: inset 0 -1em 4em 1em rgba(0, 0, 0, 0.05);
	transition: transform 0.5s ease-out;
}
.list_thumbnail li a:hover .thumbnail span{
	transform: scale(1.1);
	box-shadow: none;
}
.list_thumbnail .dateBox {
	display: block;
	padding: 0 10px;
	background-color: #fafafa;
	font-size: 0.9em;
	position:relative;
}
.list_thumbnail .date,
.list_thumbnail .new {
	margin: 5px;
	display: inline-block;
	vertical-align: middle;
}
.list_thumbnail .date {
	padding: 0.1em 0;
}
.list_thumbnail .dateBox .label {
	position:absolute;
	top: 50%;
	right:15px;
	-webkit- transform: translateY(-50%);
	transform: translateY(-50%);
}
.new {
	color: #000000;
	padding: 0.01em 0.5em;
	border: 1px solid;
	border-radius: 100em;
}
.list_thumbnail .title {
	display: block;
	padding: 0.5em 10px 1em;
}
.list_thumbnail .text {
	display: block;
	padding: 0.5em 10px 1em;
	border-top: 1px dashed #eaeaea;
	color: #999;
	font-size: 0.9em;
}
@media screen and (min-width: 1080px), print {
	.list_thumbnailC5 li{
		width: 20%;
	}
	.list_thumbnailC6 li{
		width: 16%;
	}
}
@media screen and (min-width: 780px), print {
	.list_thumbnailC1 li{
		width: 100%;
		display:block;
	}
	.list_thumbnailC2 li{
		width: 50%;
	}
	.list_thumbnailC3 li{
		width: 33%;
	}
	.list_thumbnailC4 li{
		width: 25%;
	}
	.list_thumbnailC5 li{
		width: 20%;
	}
	.list_thumbnailC6 li{
		width: 16%;
	}
}

@media screen and (max-width: 779px) {
	.list_thumbnailC2 .listBox {
		padding: 0 0 2em;
	}
	.column_thumbnail {
		width: 35.2%;
	}
	.list_thumbnail li{
		width: 50%;
	}
	.list_thumbnailC1 li{
		width: 100%;
		display:block;
	}
	.list_thumbnailC4 li{
		width: 50%;
	}
	.list_thumbnailC5 li{
		width: 50%;
	}
	.list_thumbnailC6 li{
		width: 50%;
	}
}

@media screen and (min-width: 480px), print {
	.list_thumbnailC2 li .listBox {
		padding: 1em 2em 1em 0;
	}
	.list_thumbnailC2 li:nth-child(2n) .listBox {
		padding: 1em 0 1em 2em;
	}
}
@media screen and (max-width: 479px) {
	.list_thumbnail li{
		width: 100%;
	}
}
/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::.body_common set-up */
h1, h2, h3, h4, h5, h6 {
	clear: both;
	position: relative;
}
.lower h1,
h2 {
	padding: 20px 0;
	max-width: 1170px;
	margin: 0 auto;
	font-weight: normal;
}

/* h:変更した場合はstyle_editor.cssにも反映すること */
h3 {
	margin: 1em 0;
	padding: 0.5em 0;
	color: #43b14b;
	border-bottom: 2px dotted #eaeaea;
}
h3:after {
	width: 10%;
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	margin-bottom: -3px;
	border: 2px solid;
}
h3 a {
	color: #43b14b;
}
h4{
	padding: 0 1em;
	margin: 1em 0;
	border-left: 7px solid #43b14b;
}

h5 {
	margin: 20px 0;
	padding: 0 10px 0 30px;
}
h5:before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	border: 6px solid #43b14b;
	position: absolute;
	left: 0;
	top: 4px;
}
h6 {
	color: #43b14b;
	font-weight: bold;
	margin: 1em 0;
}
.h_box h2,
.h_box .btn {
	display: inline-block;
	vertical-align: middle;
}
.h_box .btn {
	padding-left: 5%;
}

@media screen and (min-width: 780px), print {
	.lower h1,
	h2 {
		font-size: 1.71em;
	}
	h3 {
		font-size: 1.4em;
	}
	h4 {
		font-size: 1.3em;
	}
	h5 {
		font-size: 1.1em;
	}
	h6 {
		font-size: 1em;
	}
}
@media screen and (max-width: 779px) {
	.lower h1,
	h2 {
		font-size: 1.2em;
	}
	h3 {
		font-size: 1.1em;
	}
	h4 {
		font-size: 1.1em;
	}
	h5,h6 {
		font-size: 1em;
	}
}

/* table */
table {
	border-collapse: collapse;
}

table th,
table td {
	padding: 12px;
	border: 1px solid #eaeaea;
}

table th {
	background: #fafafa;
}

table[border="0"],
table[border="0"] th,
table[border="0"] td {
	border: none;
}
table[border="1"],
table[border="1"] th,
table[border="1"] td {
	border: 1px solid #eaeaea;
}
@media screen and (max-width:1000px) {
	.scroll_table {
		overflow-x: auto;
		white-space:nowrap;
		display: block;
		width:100%;
		border: 1px solid #eaeaea;
		box-shadow: inset -10px 0 10px #eaeaea;
		-webkit-overflow-scrolling: touch;
	}
}
@media screen and (max-width:479px) {
	table th {
		width: auto !important;
	}
	table.responsive tr,
	table.sp_table tr{
		display: block;
	}
	table.responsive th,
	table.responsive td,
	table.sp_table th,
	table.sp_table td{
		text-align:left;
		width:100% !important;
		display: list-item;
		list-style:none;
	}
	table.responsive tr table,
	table.sp_table tr table{
		display: table;
	}
	table.responsive th table th,
	table.responsive td table td,
	table.sp_table th table th,
	table.sp_table td table td{
		width:auto !important;
		display: table-cell;
	}
	table.noresponsive tr{
		display: table-row;
	}
	table.noresponsive th,
	table.noresponsive td{
		text-align:left;
		width:100% !important;
		display: table-cell;
		list-style:none;
	}
	table.noresponsive tr table{
		display: table;
	}
	table.noresponsive th table th,
	table.noresponsive td table td{
		width:auto !important;
		display: table-cell;
	}
	.scroll_table_box {
		font-size: 0.9em;
		overflow: auto;
		white-space: nowrap;
	}
}

/* contact form */
.form_flow {
	width: 100%;
	margin: 20px auto 0;
	padding: 0;
	display: table;
	table-layout: fixed;
}

.form_flow li {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	border-left: 10px solid #ffffff;
	padding: 0 5px;
	width: 34%;
	background-color: #adadad;
}

.form_flow li:first-child {
	border-left: none;
}

.form_flow li.current {
	background-color: #43b14b;
}

.form_flow li span {
	color: #ffffff;
	font-size: 0.9em;
	padding: 10px;
	width: 100%;
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.contact_msg {
	font-size: 0.9em;
	margin: 0 auto;
}

.contact_msg_complete {
	padding: 40px;
	box-shadow: inset 0 0 0 2px #fafafa;
}
.form_attention {
	font-size: 0.9em;
	width: 100%;
	height: 12em;
	overflow: auto;
	border: 1px solid #eaeaea;
	padding: 10px;
}

.error_box {
	font-size: 0.95em;
	margin: 0 auto;
	background-color: #fff7f6;
	box-shadow: 1px 0px #e5e5e5,-1px 0px #e5e5e5;
	padding: 20px 5%;
}

.error_box .error {
	color: #e72719;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 2px solid #e72719;
}

.error_box .error_msg {
	margin-top: 20px;
}

.contact form {
	text-align: center;
}

#input-table {
	display: block;
	width: 100%;
	max-width: 100%;
}

#input-table table {
	width: 100%;
	padding: 5px;
	margin: 0 auto 20px;
	border: none;
	box-shadow: inset 0 0 0 2px #fafafa;
	background-color: #ffffff;
}

#input-table table li {
	margin-left: 0;
}

#input-table table th {
	width: 35%;
	padding: 20px 60px 20px 30px;
	color: #3f4242;
	background: rgba(0, 0, 0, 0);
	text-align: left;
	border: none;
	position: relative;
	vertical-align: top;
}

#input-table table td {
	padding-left: 10px;
}

#input-table table tr {
	border-top: 1px solid #eaeaea;
}
#input-table table tr:first-child {
	border-top: 5px solid #fafafa;
}

#input-table table tr:last-child {
	border-top: 2px solid #fafafa;
}

.input_required,
.input_not_required:before {
	font-size: 0.9em;
	padding: 2px 6px;
	display: inline-block;
	background-color: #43b14b;
	color: #ffffff;
	position: absolute;
	right: 10px;
	top: 20px;
}

.input_not_required:before {
	content: "任意";
	background-color: #adadad;
	text-align: center;
}

#input-table table td {
	padding: 20px 30px;
	border: none;
	text-align: left;
}

#input-table table tr:last-child td {
	text-align: center;
}

#input-table div.formcomment {
	clear: both;
	margin-left: 7px;
	margin-top: 3px;
}

#input-table table td ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

input[type="text"],
input[type="password"] {
	border: 0;
	padding: 4px;
	border: solid 1px #eaeaea;
	max-width: 100% !important;
	resize: none;
	border-radius: 5px;
}
.form_input_usermail,
.form_input_usermail_2 {
	font-size: 1.2em;
	color: #FF0000!important;
}
.body_textbook_form input[type="text"] {
	margin-bottom: 10px;
}

#input-table table .form_input_addnumber {
	width: 40% !important;
}

#input-table table textarea {
	padding: 10px;
	width: 96% !important;
	border: solid 1px #eaeaea;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

input:focus,
input:textarea {
	border: solid 1px #000000;
}

.input_button {
	-webkit-appearance: none;
	border: none;
	cursor: pointer;
	line-height: 1.5;
	width: 100%;
	max-width: 320px;
	position: relative;
	color: #FFFFFF;
	line-height: 1.5;
	text-decoration: none;
	display: inline-block;
	padding: 0.75em 2em;
	position: relative;
	background-color: #43B14B;
	border: 1px solid #43B14B;
	transition: background-color 0.2s, color 0.2s;
}
.input_button:hover {
	color: #43B14B;
	background-color: #ffffff;
}
#input-table .input_button {
	padding: 10px 50px;
}

#input-table .submit_button {
	text-align: center;
	padding-top: 20px;
}

#input-table .privacy {
	font-size: 0.9em;
	height: 200px;
	overflow: auto;
	border: 1px solid #eaeaea;
	padding: 10px;
	background: #ffffff;
	border-radius: 3px;
}
/* セパレーター */
#input-table table tr.input-formgroup-blank th{
	background:#fafafa;
	border:none;
}
#input-table table tr.input-formgroup{
	padding-top:20px;
}
#input-table table tr.input-formgroup th{
	text-align:left;
	border:none;
	padding:10px 0 5px 50px;
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	background-color:#074D93;/* セパレーターth背景色 */
	border-top:2px solid #fafafa;
	border-left:2px solid #fafafa;
	border-right:2px solid #fafafa;
	border-bottom:1px solid #fafafa;
	border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
}
#input-table table tr.input-formgroup th.formgroup-closed{
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	border-bottom:2px solid #fafafa;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#input-table table tr.input-formgroup th:hover{
	cursor:pointer;
	filter: alpha(opacity=90);
	opacity:0.90;
	-moz-opacity:0.90;
	-ms-filter: "alpha(opacity=90)";
}
#input-table table tr.input-formgroup span.input-formgroup-title{
	display:block;
	color:#FFFFFF;/* セパレータータイトル文字色 */
	font-size:1.3em;/* セパレータータイトル文字サイズ */
	padding-bottom:5px;
}
#input-table table tr.input-formgroup span.input-formgroup-text{
	position: relative;
	display:block;
	color:#FFFFFF;/* セパレーター説明文文字色 */
	padding:0 5px 0 1em;
	margin:5px 10px 10px 10px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#input-table table tr.input-formgroup span.input-formgroup-text:before{
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 0.5em;
	height: 0.5em;
	background: #FFFFFF;
	content:"";
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:visited,
#input-table table tr.input-formgroup span.input-formgroup-text a:link{
	color:#FFFFFF;/* セパレーター説明文内リンク色1 */
	text-decoration:underline;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:hover,
#input-table table tr.input-formgroup span.input-formgroup-text a:active{
	color:#66FFFF;/* セパレーター説明文内リンク色2 */
	text-decoration:underline;
}
@media screen and (max-width:779px) {
	#input-table table {
		width: 100%;
		border-collapse: collapse;
		border-bottom: 1px solid #eaeaea;
	}

	#input-table table th ,
		#input-table table td {
		width: 100%;
		display: block;
		border-top: none;
		text-align: left;
	}

	#input-table table th {
		padding: 6px 45px 6px 12px;
		background: #eeeeee none repeat scroll 0 0;
		font-weight: normal;
	}
	#input-table table td {
		padding-bottom: 20px;
	}
	#input-table table td:after {
		content:"";
		display:block;
		clear:both;
	}
	input[type="text"], input[type="password"] {
		width: 100%!important;
	}
	#input-table select {
		width: 96%;
	}
	#input-table table textarea {
		width: 96%;
		max-height: 24vw;
		font-size: 110%;
	}
	.input_required,
	.input_not_required:before {
		position: absolute;
		right: 10px;
		font-size: 0.8em;
		top: 6px;
	}
}
@media screen and (max-width:479px) {
	.form_flow li {
		display: block;
		width: 100%;
		border-left: 10px solid #eaeaea;
		border-top: 1px dotted #eaeaea;
		text-align: left;
	}
	.form_flow li:first-child {
		border-top: none;
	}
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::.body_common contents */

/*--------------------------------------- container */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
}
.breadCrumb ul,
.layout02,
.copy div,
article {
	width: 100%;
	margin: 0 auto;
}

/*--------------------------------------- header */
header {
	position: relative;
	z-index: 10;
}
header #header_inner {
	padding: 25px 10px;
}
header a {
	color: #333;
	text-decoration: none;
	display: block;
}

header a:hover {
	text-decoration: underline;
}
header #header_logo {
	font-size: 1em;
}
header #header_logo a {
	display: inline-block;
}
header div {
	position: relative;
}

header #header_logo img,
header #header_logo span {
	display: inline-block;
	vertical-align: middle;
}
header #header_logo img {
	width: 100%;
	max-width: 360px;
}
.sp_menu_bg {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 20;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	display: none;
}
.sp_menu_bg.bg_fixed {
	display: block;
}
.sp_menu_btn {
	position: fixed;
	top: 10px;
	right: 10px;
	width: 60px;
	height: 60px;
	border: 1px solid #43b14b;
	z-index: 500;
	cursor:pointer;
	background-color:#fff;
}
.sp_menu_btn span {
	display:block;
	width:27px;
	height:2px;
	background-color:#43b14b;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
}
.sp_menu_btn span:first-of-type {
	top:18px;
}
.sp_menu_btn span:nth-of-type(2) {
	top:28px;
}
.sp_menu_btn span:last-of-type {
	top:38px;
}
.sp_menu_btn.close span:first-of-type {
	transform: translateY(10px) rotate(45deg);
	-webkit-transform: translateY(10px) rotate(45deg);
	width:40px;
}
.sp_menu_btn.close span:nth-of-type(2) {
	display:none;
}
.sp_menu_btn.close span:last-of-type {
	transform: translateY(-10px) rotate(-45deg);
	-webkit-transform: translateY(-10px) rotate(-45deg);
	width:40px;
}
.sp_menu {
	width: 100%;
	line-height: 1.5;
	max-width: 280px;
	height: 100%;
	padding: 70px 10px;
	background-color: #F6FBF7;
	box-shadow: -3px 0 10px rgb(0 0 0 / 30%);
	overflow-y: auto;
	opacity:0;
	transition: right 0.3s;
	position: fixed;
	z-index: 60;
	right: -100%;
	top: 0;
}
.sp_menu_navi ul {
	list-style: none;
	padding: 0;
}
.sp_menu_navi li a {
	display: block;
	text-decoration: none;
}
.sp_menu_navi li {
	background-image: url(./img/arrow_g.png);
	background-repeat: no-repeat;
	background-size: 0.5em auto;
	background-position: top 0.5em left;
	margin-bottom: 10px;
	padding-left: 1em;
}
.sp_menu_navi li.head {
	padding-left: 2em;
	background-size: 1em auto;
	background-position: center left;
}
.sp_menu_navi .ul_work li.head {
	background-image: url(./img/icon_footer01.png);
}
.sp_menu_navi .ul_business li.head {
	background-image: url(./img/icon_footer02.png);
}
.sp_menu_navi .ul_common li.head {
	background-image: url(./img/icon_footer03.png);
}
.sp_menu_navi ul {
	margin-bottom: 20px;
	background-color: #fff;
	padding: 20px;
}
.sp_menu_navi ul li {
	font-size: 0.9em;
}

.sp_menu_navi li.head {
	font-size: 1em;
	font-weight: bold;
}
.sp_menu.menu_fixed {
	right: 0;
	opacity: 10;
}
.navi ul {
	display: flex;
	list-style: none;
	width: 100%;
	text-align: center;
	padding-left: 0;
}
.navi ul li {
	width: 50%;
	border-top: 1px solid #eaeaea;
	color: #43B14B;
	font-weight: bold;
}
.navi ul li a {
	color: #636363;
	background-color: rgb(67 177 75 / 10%);
	text-decoration: none;
	padding: 1vw;
	display: block;
	transition: 0.2s;
}
.navi ul li a:hover {
	background-color: rgb(67 177 75 / 20%);
}
.navi ul li.current {
	border-bottom: none;
	box-shadow: 0 0px 10px rgb(67 177 75 / 30%);
}
.navi ul li.current a {
	color: #43B14B;
	background-color: #ffffff;
}
@media screen and (min-width:780px), print {
	/*header #header_inner .subNavi ul {
		text-align: right;
		padding: 0;
		display: table;
		float: right;
	}
	header #header_inner .subNavi li {
		display: table-cell;
		vertical-align: middle;
		padding-left: 10px;
	}
	header #header_inner .subNavi li img {
		max-width: 100%;
	}
	header #header_inner .subNavi li a {
		text-decoration: none;
		display: block;
		border: 1px solid #eaeaea;
		padding: 2px 10px;
		border-radius: 100em;
	}*/

}
@media screen and (max-width:779px) {
	header #header_inner .subNavi,
	nav.gNavi {
		display: none;
	}
	header #header_inner {
		padding: 10px 60px 10px 10px;
	}
	header #header_logo a {
		padding: 10px 0;
	}
	header #header_logo img {
		max-width: 274px;
	}
	header #header_logo span {
		margin-top: 1em;
		display: block;
		clear: both;
		float: none;
		padding-left: 0;
	}
	.sp_menu_btn {
		width: 50px;
		height: 50px;
	}
	.sp_menu_btn span:first-of-type {
		top:13px;
	}
	.sp_menu_btn span:nth-of-type(2) {
		top:23px;
	}
	.sp_menu_btn span:last-of-type {
		top:33px;
	}
}
/* global navigation */
nav.gNavi {
	padding: 10px 20px 20px;
}
nav.gNavi ul {
	padding: 0;
}
nav.gNavi li a {
	display: block;
	font-weight: bold;
	text-decoration: none;
}
nav.gNavi li .header_sub_nav{
	display: none;
	font-size:0.85em;
	max-width: 300px;
	padding: 0px;
	position: absolute;
	z-index: 1000;
}
nav.gNavi li .header_sub_nav li{
	width: 100%;
	background-color: #FEFEFE;
	border-top:1px solid #fafafa;
}
nav.gNavi li span {
	padding: 0 10px;
	display: block;
	border-right: 1px solid #cacaca;
}
nav.gNavi li:first-child span {
	border-left: 1px solid #cacaca;
}
nav.gNavi li .header_sub_nav li.menulevel3{
	padding-left:7px;
}
nav.gNavi li .header_sub_nav li.menulevel4{
	padding-left:14px;
}
nav.gNavi li .header_sub_nav li.menulevel5{
	padding-left:21px;
}
@media screen and (min-width:780px), print {
	nav.gNavi ul {
		display: table;
		width: 100%;
		text-align: center;
	}
	nav.gNavi li {
		display: table-cell;
		vertical-align: middle;
		font-size: 1.1em;
	}
}
@media screen and (max-width:779px) {
	nav.gNavi li {
		border-bottom: none;
		display: inline-block;
		vertical-align: middle;
	}
	nav.gNavi li a {
		padding: 0.5em 1em;
	}
}
/*--------------------------------------- kayFrame */

/*--------------------------------------- mainContaints */
.bg_gray {
	background-color: #fafafa;
}
.bg_light_green {
	background-color: #EDF7ED;
}
@media screen and (min-width:780px), print {
	.container article {
		padding: 40px 20px;
	}
}
@media screen and (max-width:779px) {
	.container article {
		padding: 20px;
	}

}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main.body_common */
.entry li {
	margin-left: 2em;
}
.body_common .main_img .spimg {
	display:none;
}
.body_common .main_text {
	position: absolute;
	bottom: 5%;
	right: 5%;
	background-image: url(../common/main_text.png);
	background-repeat: no-repeat;
	background-size: cover;
	text-align: left;
	padding: clamp(20px, 2vw, 40px);
}
.body_common .main_text .main_text_1 {
	font-weight: bold;
	font-size: clamp(16px, 2.9vw, 36px);
	color: #fff;
	line-height: 1.1;
	padding-bottom: 10px;
}
.body_common .main_text .main_text_2 {
	font-weight:bold;
	font-size: clamp(12px, 1.6vw, 24px);
	color:#fff;
}
.body_common .section_main_sns {
	background-color:#43b14b;
	text-align:center;
	padding:25px 0;
	display:flex;
	align-items:center;
	justify-content:center;
}
.body_common .sns_text,
.body_common .sns_link {
	display:inline-block;
}
.body_common .sns_text {
	color:#fff;
	padding-right:50px;
}
.body_common .sns_text p {
	font-size:20px;
	font-weight:bold;
	line-height:1;
}
.body_common .sns_link ul {
	margin:0;
	padding:0;
	list-style:none;
}
.body_common .sns_link li {
	display:inline-block;
	max-width:40px;
	margin-right:5px;
}
.body_common .sns_link li img {
	max-width:100%;
	vertical-align:middle;
}
.body_common .sns_link .sns_link_youtube {margin-right:12px;}
.body_common .sns_link .sns_link_twitter img {padding:0 2px;}
.body_common .sns_link .sns_link_instagram img {padding:0 5px;}
.body_common .sns_link .sns_link_line img {padding:0 5px;}

.section_main_news {
	background-color:#f6fbf7;
	padding:60px 50px 30px;
}
.section_main_news article {
	max-width:1500px;
	padding:0;
	margin:0 auto 30px;
	display:flex;
	align-items: center;
	box-shadow: 0 0px 10px rgb(67 177 75 / 30%);
	background-color: #fff;
}
.section_main_news article > div {
	width:250px;
	padding:50px 0 40px 40px;
	display:inline-block;
	background-color:#fff;
}
.section_main_news h2 {
	font-size:1.6em;
	font-weight:bold;
}
.section_main_news article > div a {
	color:unset;
	text-decoration:none;
	position:relative;
	display:inline-block;
	padding-right: 16px;
}
.section_main_news article > div a::after {
	content:"";
	width:0.8em;
	height:0.8em;
	display:block;
	background-image: url(./img/arrow_g.png);
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	-webkit- transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	position:absolute;
}
.section_main_news article .list_text {
	display:inline-block;
	width:calc(100% - 250px);
	border-radius:0;
	padding:25px 0;
}
.section_main_news article .list_text li {
	position:relative;
	margin-right:35px;
}
.section_main_news article .list_text li::after {
	content:"";
	width:0.8em;
	height:0.8em;
	display:block;
	background-image: url(./img/arrow_g.png);
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	-webkit- transform: translateY(-50%);
	transform: translateY(-50%);
	right:0.5em;
	position:absolute;
}
.section_main_news article .list_text .listBox {
	display:flex;
	align-items:center;
	padding:0;
}
.section_main_news article .list_text .listBox span {
	padding-right:30px;
}
.section_main_news article .list_text .listBox .date {
	padding:15px 0;
	width: 6em;
}
.section_main_news article .list_text .listBox .text {
	padding-right: 30px;
}
.section_main_news article .list_text .listBox .label span {
	border-radius: 100em;
	border: 1px solid #eaeaea;
	line-height: 1;
	padding: 5px 1em;
	min-width: 7em;
	display: block;
	text-align: center;
}
.section_main_news article .list_text a {
	color:unset;
}
.body_common .section_top_contents {
	background-color:#f6fbf7;
	padding:60px 50px 100px;
}
.body_common .section_top_contents article {
	max-width:1500px;
	padding:0;
	margin:0 auto;
}
.body_common .section_top_contents article > div {
	display:flex;
	align-items:center;
	margin-bottom:90px;
}
.body_common .section_top_contents article .top_contents_text {
	width:54.29%;
}
.body_common .section_top_contents article .top_contents_img {
	width:45.71%;
}
.body_common .section_top_contents article .top_contents_img img {
	max-width:100%;
}
.body_common .section_top_contents .top_contents_text {
	padding-right:140px;
}
.body_common .section_top_contents .top_contents_text h2 {
	font-size:2.3em;
	font-weight:bold;
	padding:0 0 20px;
}
.body_common .section_top_contents .top_contents_text span {
	color:#43b14b;
	display:inline-block;
	position:relative;
	font-weight:bold;
	padding-bottom:20px;
}
.body_common .section_top_contents .top_contents_text span::after {
	content:"";
	position:absolute;
	display:block;
	width:30px;
	height:1px;
	background-color:#43b14b;
	bottom:0;
	left:0;
}
.body_common .section_top_contents .top_contents_text div {
	padding:35px 0;
}
.top_contents_link {
	display:inline-block;
	margin-right:20px;
	margin-bottom:10px;
}
.top_contents_link a {
	display:inline-block;
	position:relative;
	width:280px;
	padding:15px 0;
	text-align:center;
	color:#43b14b;
	background-color:#fff;
	border:1px solid #43b14b;
	font-size:1.1em;
	text-decoration:none;
	transition: color 0.2s, background-color 0.2s;
}
.top_contents_link a:hover {
	background-color: #F6FBF7;
}
.top_contents_link a::after {
	content:"";
	width:0.8em;
	height:0.8em;
	display:block;
	background-image: url(./img/arrow_g.png);
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	-webkit- transform: translateY(-50%);
	transform: translateY(-50%);
	right:25px;
	position:absolute;
}
.top_contents_link.btn_100 {
	width:100%;
	margin:0 0 10px;
}
.top_contents_link.btn_100 a {
	width:100%;
}
.top_contents_link.btn_green a {
	background-color:#43b14b;
	color:#fff;
	transition: color 0.2s, background-color 0.2s;
}
.top_contents_link.btn_green a:hover {
	background-color: rgb(67 177 75 / 80%);
}
.top_contents_link.btn_green a::after {
	background-image: url(./img/arrow_w.png);
}
.body_common .section_top_contents article > .top_contents_1 {
	flex-direction:row-reverse;
}
.body_common .section_top_contents article > .top_contents_2 {
	margin-bottom:0;
}
.body_common .section_top_contents article > .top_contents_2 .top_contents_text {
	padding-right:0;
	padding-left:140px;
}
.body_common .section_top_slide .top_bottom_slide {
	padding:0;
}

@media screen and (min-width:780px), print {
	.section_main_news article .list_text .listBox .text {
		width: calc(100% - 12em );
	}
}
@media screen and (max-width: 779px) {
	.body_common .main_img .pcimg {
		display:none;
	}
	.body_common .main_img .spimg {
		display:block;
	}
	.body_common .main_text .main_text_2 {
		font-weight:normal;
		font-size:unset;
	}
	.body_common .section_main_sns {
		padding-top:15px;
		flex-wrap:wrap;
	}
	.body_common .sns_text {
		width:100%;
		padding-bottom:20px;
		padding-right:0;
	}
	.body_common .sns_link {
		width:100%;
	}
	.body_common .sns_link .sns_link_youtube img {padding:0 2px;}
	.body_common .sns_link .sns_link_twitter img {padding:0 4px;}
	.body_common .sns_link .sns_link_instagram img {padding:0 7px;}
	.body_common .sns_link .sns_link_line img {padding:0 7px;}
	.section_main_news article {
		flex-wrap:wrap;
	}
	.section_main_news article:last-of-type {
		margin-bottom:10px;
	}
	.section_main_news article > div {
		width:100%;
		padding: 10px	20px 10px;
		position:relative;
	}
	.section_main_news h2 {
		font-size:18px;
		padding:0;
		padding-right: 10px;
		float: left;
	}
	.section_main_news article > div p {
		display:inline-block;
		float: right;
		padding-top: 5px;
	}
	.section_main_news article .list_text {
		width:100%;
		padding: 0 20px 20px;
	}
	.section_main_news article .list_text li {
		margin-right:0;
	}
	.section_main_news article .list_text .listBox {
		flex-wrap:wrap;
	}
	.section_main_news article .list_text .listBox .date {
		padding:10px 0;
	}
	.list_text li .listBox .text {
		width:100%;
	}
	.section_main_news article .list_text li::after {
		top:74%;
		right:0px;
	}
	.section_main_news {
		padding:20px 20px 30px;
	}
	.body_common .section_top_contents {
		padding:0 20px 40px;
	}
	.body_common .section_top_contents article > div {
		flex-wrap:wrap;
		margin-bottom:20px;
	}
	.body_common .section_top_contents article .top_contents_text,
	.body_common .section_top_contents article .top_contents_img {
		width:100%;
	}
	.body_common .section_top_contents article .top_contents_img {
		padding-bottom:10px;
	}
	.body_common .section_top_contents .top_contents_text {
		padding-right:0;
	}
	.body_common .section_top_contents .top_contents_text h2 {
		font-size:18px;
		padding-bottom:10px;
	}
	.body_common .section_top_contents .top_contents_text span {
		display:none;
	}
	.body_common .section_top_contents .top_contents_text div {
		padding:5px 0 10px;
	}
	.top_contents_link {
		text-align:center;
		margin-right:0;
		margin-bottom:10px;
		display: inherit;
	}
	.body_common .section_top_contents article > .top_contents_2 .top_contents_text {
		padding-left:0;
	}
	.body_common .section_top_slide .top_bottom_slide .slick-track li,
	.body_common .section_top_slide .top_bottom_slide .slick-track li img {
		height:100px;
	}
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main.body_news */
.containerInner_news .btn a::before {
	content:"";
}
/*--------------------------------------- sideContaints */
#side {
	padding: 10px;
	border-radius: 10px;
	border: 1px solid #eaeaea;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	position: -webkit-sticky;
	position: sticky;
	top: 50px;
}
#side .menu_title {
	background-color: #fafafa;
	font-size: 1.1em;
	padding: 1em 20px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	box-sizing: border-box;
}

#side ul {
	list-style: none;
	padding: 10px 0 0 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

#side ul li {
	border-top: 1px solid #dddddd;
	position: relative;
}
#side ul li:first-child {
	border-top: none;
}
#side li a {
	color: #333;
	font-size: 0.95em;
	text-decoration: none;
	display: block;
	padding: 0.5em 0.5em 0.5em 2em;
}
#side li a:before {
	content: "\f105";
	position: absolute;
	left: 1em;
	top: 50%;
	margin-top: -0.5em;
}

#side li a:hover {
	color: #43b14b;
}
#side li.current a {
	color: #ffffff;
	background-color: #43b14b;
}
#side li.current a:before {
	content: "\f0da";
}
@media screen and (min-width:780px), print {
	.columnBox .column_side {
		width: 290px;
	}
}
@media screen and (max-width: 779px) {
	.columnBox .column_side {
		padding: 1em 0 0;
	}
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: lower.body_common */
/* breadCrumb */
.breadCrumb {
	font-size: 0.9em;
	background-color: #fafafa;
	border-bottom: 2px solid #fff;
}
.breadCrumb ul {
	max-width: 1170px;
	padding: 0.5em 20px;
}
.breadCrumb li {
	display: inline;
}
.breadCrumb li a {
	color: #999;
	background: transparent url(img/breadcrumb.png) no-repeat scroll right center;
	margin-right: 2px;
	padding-right: 16px;
	text-decoration: none;
}

/*--------------------------------------- page_top */

#page_top {
	display: block;
	text-align: center;
	transition: 0.1s;
}
#page_top a {
	display: block;
}
#page_top a span {
	display: inline-block;
	vertical-align: middle;
	width: 120px;
	height: 126px;
	background-image: url(img/pgtp_off.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top 10px;
	transition: 0.1s;
}

@media screen and (min-width:780px), print {
	#page_top {
		bottom: 0px;
		right: 30px;
		display: block;
		text-align: center;
		position: fixed;
		opacity: 0;
		visibility: hidden;
	}
	#page_top.fixed {
		opacity: 1;
		visibility: visible;
	}
	#page_top a:hover span {
		background-position: center top;
		background-image: url(img/pgtp_on.png);
	}
}
@media screen and (max-width: 779px) {

}
/*--------------------------------------- pagetop link */
#pgtp {
	border-bottom: solid 1px #b5c3df;
}

#pgtp p {
	text-align: right;
	padding: 20px 0 16px;
}
/*--------------------------------------- pageprev/next link */
.page_link {
	clear: both;
	width: 100%;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

.page_link a.page_link_left {
	margin: 0 10px 0 0;
	padding: 0 0 0 12px;
	background: url(img/icon_page_link_left.gif) no-repeat left center;
}

.page_link a.page_link_right {
	margin: 0 0 0 10px;
	padding: 0 12px 0 0;
	background: url(img/icon_page_link_right.gif) no-repeat right center;
}
/*--------------------------------------- pager */
.pager_box{
	clear:both;
	text-align:center;
	margin-top:15px;
}
.pager_box .pager{
	width:2.5em;
	display:inline-block;
	border:1px solid #BFBFBE;
	border-radius:3px;
}
.pager_box .pager a{
	display:block;
	width:100%;
	padding-top:0.5em;
	padding-bottom:0.5em;
}
.pager_box .pager a:link,
.pager_box .pager a:visited{
	color:#333333;
	text-decoration:none;
}
.pager_box .pager a:hover,
.pager_box .pager a:active{
	background:#F1F1F1;
	text-decoration:none;
}
.pager_box .pager_current{
	background:#F1F1F1;
	padding-top:0.5em;
	padding-bottom:0.5em;
}
.pager_box .pager_dot{
	width:1.5em;
	display:inline-block;
}
.pager_box .pager_space{
	width:1em;
	display:inline-block;
	padding-left:0.2em;
	padding-right:0.2em;
}
.pager_box .pager_first{
	display:inline-block;
}
.pager_box .pager_last{
	display:inline-block;
}

/*--------------------------------------- footer */
footer {
	margin:0 auto;
	border-top: 1px solid #eaeaea;
}
footer .footerBox {
	display:flex;
	justify-content:space-between;
	padding:60px 20px;
	max-width:1460px;
	margin:0 auto;
}

footer article {
	width: 100%;
}
footer .footerBox_1 {
	color:#5c5c5c;
	padding-right:30px;
}
footer .footer_logo {
	margin-bottom:30px;
}
footer .footer_logo img {
	max-width:300px;
}
footer .footer_sns {
	margin-bottom:30px;
}
footer .footer_sns p {
	margin-bottom:10px;
}
footer .footer_sns ul {
	list-style:none;
	margin:0;
	padding:0;
}
footer .footer_sns li {
	max-width:30px;
	margin-right:30px;
	display:inline-block;
}
footer .footer_sns li img {	
	max-width:100%;
	vertical-align:middle;
}
footer a{
	color: #777777;
	text-decoration: none;
}
footer nav .navi_title {
	font-weight: bold;
	padding-top: 20px;
}
footer nav ul {
	padding: 0;
}

footer nav li a {
	display: inline-block;
}
footer .footer_nav > div {
	display:flex;
	flex-wrap:wrap;
}
footer .footer_nav ul {
	padding-right:40px;
}
footer .footer_nav ul:last-of-type {
	padding-right:0;
}
footer .footer_nav li {
	white-space:nowrap;
	list-style:none;
	padding-left:1em;
	position:relative;
}
footer .footer_nav li a {
	font-size: 0.9em;
	color:#333;
	margin-bottom:4px;
}
footer .footer_nav li.head {
	font-size:1em;
	margin-bottom:10px;
	padding-left:1.5em;
	font-weight:bold;
	background-size:1em;
	background-repeat:no-repeat;
	background-position: center left;
}
footer .footer_nav ul:first-of-type li.head{background-image:url("./img/icon_footer01.png");}
footer .footer_nav ul:nth-of-type(2) li.head{background-image:url("./img/icon_footer02.png");}
footer .footer_nav ul:last-of-type li.head{background-image:url("./img/icon_footer03.png");}
footer .footer_nav li::after {
	content:"";
	display:block;
	position:absolute;
	left:0;
	top:50%;
	-webkit- transform:translateY(-50%);
	transform:translateY(-50%);
	width:1em;
	height:1em;
	background-image:url("./img/arrow_g.png");
	background-repeat:no-repeat;
	background-size:contain;
}
footer .footer_nav li.head:after {
	display:none;
}
footer .footerBox_1 .column_1 {
	text-align: center;
}
footer .footerBox_1 .column_1_box {
	display: inline-block;
	text-align: left;
}
footer .footerBottom {
	padding:40px 0;
	position:relative;
}
footer .footerBottom::after {
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	margin:0 auto;
	border-top:1px solid #eaeaea;
	width:100%;
}
footer .footer_nav ul {
	margin-bottom:10px;
}
footer .footerBottom p {
	font-size:0.8em;
	color:#5c5c5c;
	text-align:center;
}
.footer_contact_info {
	text-align: center;
}
footer .footer_tel,
footer .footer_fax {
	font-size: 0.9em;
	margin-top: 10px;
	padding: 10px 20px;
	width: 100%;
	max-width: 155px;
	background-color: #fff;
	border-radius: 100em;
	display: inline-block;
	vertical-align: top;
}

.footer_btn {
	text-align: center;
	display: block;
	padding: 10px 0;
}
.footer_btn a {
	color: #ffffff;
	line-height: 1.5;
	text-decoration: none;
	display: inline-block;
	width: 100%;
	max-width: 320px;
	padding: 0.8em 2em;
	position: relative;
	background: #ed8faf;
	background: -moz-linear-gradient(-45deg,	#ed8faf 0%, #d76e85 50%);
	background: -webkit-linear-gradient(-45deg,	#ed8faf 0%,#d76e85 50%);
	background: linear-gradient(135deg,	#ed8faf 0%,#d76e85 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed8faf', endColorstr='#d76e85',GradientType=1 );
	border: 2px solid #ffffff;
	border-radius: 100em;
	transition: box-shadow 0.2s;
}
.footer_btn a:hover {
	box-shadow: 0px 5px 20px -10px rgb(232 136 166);
}
footer .footer_copyright {
	font-size: 0.8em;
}

@media screen and (min-width: 780px), print {
	footer .footerBox_1 {
	}
	footer .footerBox_1 .columnBox {
		table-layout: auto;
	}
	footer .footerBox_1 .column {
		border-left: 1px solid #ffffff;
		padding: 0 20px;
	}
	footer .footerBox_1 .column_1 {
		width: 380px;
		border-left: none;
	}
	footer .footerBox_1 .column .navi_title:first-child {
		padding-top: 0;
	}
	.fLogo {
		padding-bottom: 10px;
	}
}
@media screen and (max-width:779px) {
	footer {

	}
	footer .footerBox {
		flex-wrap:wrap;
		margin-bottom:20px;
		padding:20px 20px 0;
	}
	footer .footerBox_1 {
		margin-bottom:30px;
	}
	footer .footerBox_1,
	footer .footerBox_2 {
		width:100%;
	}
	footer .footer_nav > div {
		flex-wrap:wrap;
	}
	footer .footer_sns li {
		margin-right:25px;
	}
	footer .footerBottom p {
		text-align:left;
		padding:0 20px;
	}
	footer .footerBox_1 {
		padding-right:0;
	}
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: clear */
.entry:after,
article:after,
ul:after,
section:after,
header:after,
header div:after,
footer:after,
.clearFix:after {
	content: "";
	display: block;
	clear: both;
}



/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: cms setting */

/* フォームツールチップ */
.invisible {
	display: none;
}

a.tooltiplink {
	display: inline-block;
	margin: 1px 3px 0;
	padding: 1px 3px 0;
	border: 2px solid #C7C7C7;
	background-color: #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 1.0em;
	font-weight: bold;
}

#input-table a.tooltiplink:link,
#input-table a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

#input-table a.tooltiplink:hover,
#input-table a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}

a.tooltiplink:link,
a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

a.tooltiplink:hover,
a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}

p.tooltipbox {
	position: absolute;
	z-index: 1;
	top: 100px;
	left: 20px;
	font-size: 1.0em;
	margin: 0;
	padding: 10px;
	min-width: 100px;
	min-height: 30px;
	color: #FFFFFF;
	background: #075698;
	border: 2px solid #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
}

#input-table p.tooltipbox a:link,
#input-table p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}

#input-table p.tooltipbox a:hover,
#input-table p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}

p.tooltipbox a:link,
p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}

p.tooltipbox a:hover,
p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}

/* comment form */
.comment_box {
	width: 100%;
	margin: 0 0 15px;
	padding: 0;
	border-collapse: collapse;
	border: solid 1px #eaeaea;
	background: #fafafa;
}

.comment_box th,
.comment_box td {
	padding: 10px;
}

.comment_id {
	width: 10%;
	text-align: left;
	white-space: nowrap;
}

.comment_name {
	width: 70%;
	text-align: left;
}

.comment_regist {
	width: 20%;
	text-align: right;
	vertical-align: bottom;
	white-space: nowrap;
	font-size: 0.8em;
	color: #aaaaaa;
}

.comment_box td {
	padding-top: 0;
}

.comment_text {
	padding: 15px;
	background: #ffffff;
}

.icon_comment {
	text-align: right;
}

.icon_comment a {
	padding-left: 30px;
	background: url(./icon_comment.gif) no-repeat left center;
}

/* twitter widget */
#twtr-hd h3,
#twtr-hd h4,
.twtr-widget h3,
.twtr-widget h4,
.twtr-widget p,
.twtr-widget-profile h3,
.twtr-widget-profile h4 {
	clear: none;
	margin: auto;
	padding: auto;
	font-size: auto;
	color: auto;
	border: none;
	background-image: none;
}
/* twitter tweet button */
iframe.twitter-share-button {
	width: 115px!important;
}

/* フォームエラー */
.error_msg,
.error_msg_js {
	padding : 5px 5px 5px 20px;
	background: url(./img/form_error.gif) left 7px no-repeat;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main */

.box {

}
.box img{
	max-width: 100%;
	vertical-align: middle;
}
.box_column .box_img{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.box .msg {
	position: relative;
}
.code {
	padding: 10px 0 20px;
}
@media screen and (min-width:1080px), print {
	.box_column .box_msg {
		width: 42.5%;
		padding: 60px 20px;
	}
	.box_column .box_img{
		width: 57.5%;
	}
}

@media screen and (min-width:780px) and (max-width: 1080px) {
	.box_column .box_msg {
		width: 50%;
		padding: 20px 40px;
	}
	.box_column .box_img{
		width: 50%;
	}
}
@media screen and (min-width:780px), print {
	.box{
		position: relative;
		display: block;
		width: 100%;
		clear: both;
	}
	.box:after{
		content:"";
		display: block;
		width: 100%;
		clear: both;
	}
	.box_column .box_msg {
		width: 45.5%;
		float: left;
	}
	.box_column .box_img{
		width: 54.5%;
		position: absolute;
		top: 0;
		height: 100%;
	}
	section:nth-child(2n+1) .box_column .box_msg {
		float: right;
	}
	section:nth-child(2n) .box_column .box_img{
		right: 0;
	}
	section:nth-child(2n+1) .box_column .box_img{
		left: 0;
	}
	.box .msg {
		padding-top: 40px;
	}
}
@media screen and (max-width: 779px) {
	.box .box_msg {
		padding-top: 20px;
	}
	.box_column .box_img {
		display: block;
	}

}
/*--------------------------------------- index.php */
.section_main_img {
	text-align: center;
	position:relative;
}
.section_main_img img {
	max-width: 100%;
	vertical-align: middle;
}
.top_guardianship_list {
	
}
.top_guardianship_box_img img {
	border-radius: 10px 10px 0 0;
}
.top_guardianship_box_text {
	padding: 0 0 5%;
}
@media screen and (min-width: 780px), print {
	.top_guardianship_list {
		display:flex;
		flex-wrap:wrap;
		justify-content:space-between;
	}
	.top_guardianship_box {
		flex-basis:calc((100% - 5%) / 2);
		max-width:calc((100% - 5%) / 2);
		margin-top: 5%;
	}
	.top_guardianship_box:nth-of-type(1),
	.top_guardianship_box:nth-of-type(2){
		margin-top:0;
	}
}
@media screen and (max-width: 779px) {
	.top_guardianship_box {
		margin-top: 10px;
	}
}
/*--------------------------------------- work/index_detail.html */
.course_20day,
.course_5day,
.course_1day {
	display: block;
	border-radius: 5px;
	transition: box-shadow 0.2s;
}
.course_20day:hover{
	box-shadow: 0 0 15px rgb(67 177 75 / 50%);
}
.course_5day:hover{
	box-shadow: 0 0 15px rgb(239 212 61 / 50%);
}
.course_1day:hover{
	box-shadow: 0 0 15px rgb(44 157 215 / 50%);
}
/*--------------------------------------- list_voice */
.list_voice {
}

.list_voice .voice_box {
	gap: clamp(20px, 3vw, 40px);
	border-radius: 10px;
	border: 1px solid #eaeaea;
	padding: clamp(20px, 3vw, 40px);
	margin: 10px;
	overflow: hidden; 
}
.list_voice .voice_box_text {
	flex-basis: calc(70% - clamp(20px, 3vw, 40px));
}
.list_voice .voice_box_img {
	flex-basis: 30%;
	text-align: center;
}
.list_voice .voice_box_text h3.voice_title {
	padding-top: 0;
	margin-top: 0;
}
.list_voice .voice_msg {
	max-height: 8em;
	overflow: hidden; 
	position: relative;
	padding-bottom: 3em;
}
.list_voice .voice_msg:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 6em;
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}
.list_voice .btn_read_more {
	cursor: pointer;
	color: #43b14b;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 8em;
	margin-left: -4em;
	background-color: #fff;
	text-align: center;
	border: 1px solid #43b14b;
	border-radius: 3px;
}
.list_voice .voice_box.expanded .voice_msg:before {
	display: none;
}
.list_voice .voice_box.expanded .voice_msg {
	max-height: none;
}

@media screen and (min-width: 641px), print {
	.list_voice .voice_box {
		display: flex;
	}
}
@media screen and (max-width: 640px) {
	.list_voice .voice_box_img {
		padding-bottom: 20px;
	}
}
/*--------------------------------------- news/index_detail.html */
.container_news {
	background-color: #FAF8F2;
}
.news_category_list ul {
	padding: 0 0 20px;
	list-style: none;
}
.news_category_list li {
	display: inline-block;
	padding: 3px 1px;
}
.news_category_list li a {
	color: #ffffff;
	background-color: #777777;
	border-radius: 100em;
	text-align: center;
	display: block;
	text-decoration: none;
}
.news_category_list li.icon_color_1 a {
	background-color: #f38c2a;
}
.news_category_list li.icon_color_2 a {
	color: #333;
	background-color: #FAEE67;
}
.news_category_list li.icon_color_3 a {
	background-color: #d76e85;
}

@media screen and (min-width: 780px), print {
	.news_category_list li a {
		padding: 2px 20px;
	}
}
@media screen and (max-width: 779px) {
	.news_category_list li a {
		padding: 2px 10px;
	}
}
/*--------------------------------------- map_area */
.map_area {
	text-align: center;
	background-color: #f6fbf7;
}
.map_area svg {
	max-width: 750px;
}

.map_area a path {
	transition: 0.2s fill;
}
.map_area .cls-1 {
	stroke: #b54686;
}

.map_area .cls-1, .map_area .cls-2, .map_area .cls-3, .map_area .cls-4, .map_area .cls-5, .map_area .cls-6, .map_area .cls-7, .map_area .cls-8, .map_area .cls-9 {
	fill: none;
}

.map_area .cls-10 {
	fill: #45c9d6;
}

.map_area .cls-10, .map_area .cls-11, .map_area .cls-12, .map_area .cls-13, .map_area .cls-14, .map_area .cls-15, .map_area .cls-16, .map_area .cls-17 {
	stroke: #fff;
	stroke-miterlimit: 10;
	stroke-width: .map_area .27px;
}

.map_area .cls-18 {
	fill: #fff;
}

.map_area .cls-2 {
	stroke: #79bc28;
}

.map_area .cls-11 {
	fill: #dd5757;
}

.map_area .cls-3 {
	stroke: #07a;
}

.map_area .cls-12 {
	fill: #f29600;
}

.map_area .cls-4 {
	stroke: #45c9d6;
}

.map_area .cls-5 {
	stroke: #dd5757;
}

.map_area .cls-13 {
	fill: #00a346;
}

.map_area .cls-6 {
	stroke: #00a346;
}

.map_area .cls-19 {
	fill: #07a;
}

.map_area .cls-14 {
	fill: #79bc28;
}

.map_area .cls-20 {
	fill: #333;
}

.map_area .cls-15 {
	fill: #6f43aa;
}

.map_area .cls-16 {
	fill: #b54686;
}

.map_area .cls-7 {
	stroke: #fccf00;
}

.map_area .cls-8 {
	stroke: #6f43aa;
}

.map_area .cls-9 {
	stroke: #f29600;
}

.map_area .cls-21 {
	fill: #999a9a;
}

.map_area .cls-17 {
	fill: #fccf00;
}
.map_area a:hover path{

}
.map_hokkaido:hover path {
	fill: #0a98d5;
}
.map_tohoku:hover path {
	fill: #6fdee9;
}
.map_kanto:hover path {
	fill: #20bd63;
}
.map_hokuriku:hover path {
	fill: #96d945;
}
.map_tokai:hover path {
	fill: #ffde49;
}
.map_kinki:hover path {
	fill: #fbb749;
}
.map_chugoku:hover path {
	fill: #f37e7e;
}
.map_shikoku:hover path {
	fill: #cf74a8;
}
.map_kyushu_okinawa:hover path {
	fill: #9e78d1;
}
/*--------------------------------------- list_area */
.containerInner_nw article {
	max-width: 790px!important;
}
.list_area {

}
.list_area ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.list_area ul li {

}
.list_area ul li a {
	color: #333333;
	display: block;
	text-decoration: none;
	padding: 2px 10px;
	border: 1px solid #dadada;
	transition: 0.2s;
}
.list_area ul li a:hover {

}

@media screen and (max-width: 779px) {
	.list_area ul li {
		width:calc((100% - 10px) / 2);
	}
}
@media screen and (max-width: 479px) {
	.list_area ul li {
		font-size: 0.9em;
	}

}
/*--------------------------------------- list_archive */
.list_archive {
	margin-top: 50px;
	background-color: #F6FBF7;
	padding: 20px;
}
.list_archive h5 {
	padding-top: 0;
	margin-top: 0;
}
.list_archive ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.list_archive ul li {
	border-top: 1px solid #dadada;
}
.list_archive ul li:first-child {
	border-top: none;
}
.list_archive ul li a {
	color: #333333;
	display: block;
	text-decoration: none;
	padding: 10px;
	transition: 0.2s;
}
.list_archive ul li a:hover {
	background-color: rgb(255 255 255 / 70%);
}

/*--------------------------------------- share_btn */
.share_btn {
	margin: clamp(20px, 3vw, 40px) 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	background-color: #fafafa;
	padding: 20px;
}
.share_btn .title {

}
.share_btn .sns_list {

}
.share_btn .sns_list ul {
	display: flex;
	gap: clamp(10px, 2vw, 25px);
	list-style: none;
	padding: 0;
}
.share_btn .sns_list li {
	font-size: clamp(40px, 2vw, 45px);
}
.share_btn .sns_list li a {

}
.share_btn .sns_list li img {
	max-width: clamp(30px, 3vw, 40px);
	border-radius: 0;
	vertical-align: middle;
}
.share_btn .sns_list li.btn_twitter a {
	color: #1DA1F2;
}
.share_btn .sns_list li.btn_facebook a {
	color: #3B5998;
}
.share_btn .sns_list li.btn_line a {
	color: #00B900;
}
.page_link {
	background-color: #fafafa;
}
/*--------------------------------------- link_text  */
.link_text {
	padding: 40px 0;
	text-align: center;
}
.link_text a {
	text-decoration: none;
}
.link_text span {
	color: #42413d;
}
.link_text i {
	width: 60px;
	position: relative;
	text-align: center;
}
.link_text i:before {
	position: relative;
	z-index: 1;
}
.link_text i:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background-color: #fafafa;
	border-radius: 100%;
	z-index: 0;
	transition: all 0.2s;
}
.link_text a:hover i:after {
	width: 60px;
	height: 60px;
}
/*--------------------------------------- list_file  */
.list_file {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 20px 0;
}
.list_file .btn_file a {
	color: #43b14b;
	background-color: #fafafa;
	padding: 10px 12px;
	border-radius: 5px;
	line-height: 1;
	display: block;
	border: 1px solid #43b14b;
}
.list_file .btn_file a {
	text-decoration: none;
}
.list_file .btn_file a:after {
	content:"";
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.25em;
	margin-left: 5px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.list_file .btn_file a[href$=".doc"]:after,
.list_file .btn_file a[href$=".docx"]:after{
	background-image: url('./img/icon_file_word.png');
}
.list_file .btn_file a[href$=".xls"]:after,
.list_file .btn_file a[href$=".xlsx"]:after {
	background-image: url('./img/icon_file_excel.png');
}
.list_file .btn_file a[href$=".ppt"]:after,
.list_file .btn_file a[href$=".pptx"]:after {
	background-image: url('./img/icon_file_powerpoint.png');
}
.list_file .btn_file a[href$=".pdf"]:after {
	background-image: url('./img/icon_file_pdf.png');
}
.top_news_box {
	padding: 10px 20px;
}
@media screen and (min-width: 780px), print {
	.top_news_box {
		padding: 25px 0!important;
		width: calc(100% - 250px)!important;
	}
}
@media screen and (max-width: 779px) {
	.top_news_box {
		padding: 0 20px 20px!important;
	}
}
/*--------------------------------------- list_participants_voice */
.container_participants_voice {
	background-color: #f6fbf7;
}
.container_participants_voice .contents_info h2 {
	font-size: 1.6em;
	font-weight: bold;
}
.container_participants_voice .contents_info p a {
	color: unset;
	text-decoration: none;
	position: relative;
	display: inline-block;
	padding-right: 16px;
}
.container_participants_voice .contents_info p a:after {
	content:"";
	width:0.8em;
	height:0.8em;
	display:block;
	background-image: url(./img/arrow_g.png);
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	-webkit- transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	position:absolute;
}
@media screen and (min-width: 780px), print {
	.container_participants_voice article {
		max-width: 1500px;
		padding: 0 0 30px;
		display: flex;
		align-items: flex-start;
	}
	.container_participants_voice article .contents_info {
		width: 250px;
		padding: 50px 0 40px 40px;
	}
	.container_participants_voice article .list_participants_voice {
		width: calc(100% - 250px);
		border-radius: 0;
		padding: 25px 0;
	}
}
@media screen and (max-width: 779px) {
}
.participants_voice_search {
	position: relative;
	padding: 20px 10px;
	background-color: #EDF7ED;
	border-radius: 10px;
	margin-bottom: 20px;
}
.participants_voice_search form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin: 0 auto;
}
.participants_voice_search select {
	height: 45px;
	padding: 0.4em calc(0.8em + 40px) 0.4em 0.8em;
	border: none;
	border-radius: 3px;
	background-color: #fff;
	color: #333333;
	font-size: 14px;
	cursor: pointer;
}
.participants_voice_search .search_btn {
	color: #fff;
	background-color: #43b14b;
	border: none;
	height: 45px;
	padding: 0.4em 2em;
	border-radius: 3px;
	font-size: 14px;
	cursor: pointer;
}

.btn_reset {
	text-align: right;
	padding-top: 20px;
}
.btn_reset a {
}
.list_participants_voice {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.list_participants_voice .voice_box {
	width: 100%;
}
.list_participants_voice .voice_box_inner {
	display: flex;
	gap: clamp(12px, 2vw, 30px);
	align-items: flex-start;
}
.list_participants_voice .voice_box_text {
	font-size: clamp(12px, 2vw, 16px);
	flex-basis: calc(100% - clamp(20px, 3vw, 40px));
	border-radius: 10px;
	border: 1px solid #43b14b;
	background-color: #ffffff;
	box-shadow: 3px 3px 10px rgb(67 177 75 / 30%);
	padding: clamp(15px, 2vw, 20px);
	position: relative;
}
:root {
	--bubble_1: clamp(10px, 2vw, 20px);
	--bubble_2: calc(var(--bubble_1) - 2px);
}
.list_participants_voice .voice_box_text:before,
.list_participants_voice .voice_box_text:after {
	content: "";
	position: absolute;
	top: clamp(25px, 3vw, 40px);
	transform: skew(0, -25deg);
	border-style: solid;
}
.list_participants_voice .voice_box:nth-child(2n+1) .voice_box_text:before,
.list_participants_voice .voice_box:nth-child(2n+1) .voice_box_text:after {
	left: 0;
	transform-origin: right;
}
.list_participants_voice .voice_box:nth-child(2n+1) .voice_box_text:before {
	border-width: 0 var(--bubble_1) var(--bubble_1) 0;
	border-color: transparent #43b14b transparent transparent;
	translate: -100% -50%;
}
.list_participants_voice .voice_box:nth-child(2n+1) .voice_box_text:after {
	border-width: 0 var(--bubble_2) var(--bubble_2) 0;
	border-color: transparent #ffffff transparent transparent;
	translate: -100% calc(-50% - 0.2px);
}
.list_participants_voice .voice_box:nth-child(2n) .voice_box_text:before,
.list_participants_voice .voice_box:nth-child(2n) .voice_box_text:after {
	right: 0;
	transform-origin: left;
}
.list_participants_voice .voice_box:nth-child(2n) .voice_box_text:before {
	border-width: var(--bubble_1) 0 0 var(--bubble_1);
	border-color: transparent transparent transparent #43b14b;
	translate: 100% -50%;
}
.list_participants_voice .voice_box:nth-child(2n) .voice_box_text:after {
	border-width: var(--bubble_2) 0 0 var(--bubble_2);
	border-color: transparent transparent transparent #ffffff;
	translate: 100% calc(-50% - 0.2px);
}
/*
.list_participants_voice .voice_box_text_img {
	flex-basis: calc(100% - clamp(20px, 3vw, 40px));
}*/
.list_participants_voice .voice_box_icon {
	flex-basis: clamp(60px, 5vw, 80px);
	text-align: center;
}

.list_participants_voice .voice_box:nth-child(2n) .voice_box_icon,
.list_participants_voice .voice_box:nth-child(2n) .voice_box_img {
	order: 1;
}
.list_participants_voice .voice_box_img {
	flex-basis: 30%;
	text-align: center;
}
.list_participants_voice .voice_box_img img {
	border-radius: 10px;
	max-height: 12em;
}
.list_participants_voice .voice_icon {
	background-color: #ffffff;
	border-radius: 100%;
}

.list_participants_voice .voice_info {
	display: flex;
	flex-wrap: wrap;
	gap: 0 5px;
	color: #777;
}
.list_participants_voice .voice_msg {
/*	max-height: 8em;
	overflow: hidden;
	position: relative;
	padding-bottom: 3em;*/
}
/*.list_participants_voice .voice_msg:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 6em;
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}*/
.list_participants_voice .btn_read_more {
	cursor: pointer;
	color: #43b14b;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 8em;
	margin-left: -4em;
	background-color: #fff;
	text-align: center;
	border: 1px solid #43b14b;
	border-radius: 3px;
}
.list_participants_voice .voice_box.expanded .voice_msg:before {
	display: none;
}
.list_participants_voice .voice_box.expanded .voice_msg {
	max-height: none;
}

@media screen and (min-width: 780px), print {

}
@media screen and (max-width: 779px) {
	.participants_voice_search form select {
		width: 100%;
	}
}