﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@900&display=swap');

@font-face {
    font-family: 'Gilroy';
    src: url('/W_css/font/Gilroy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
	--mcolor:#0d2b1b;
	--scolor:#80c241;
	--tcolor:;
}

h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 16px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: var(--scolor);
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.5em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 40px;
  z-index: 10;
  margin-bottom: 0;
  width: 45px;
}
#totop a {
  display: block;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;
}
#totop a:hover {
  opacity: 0.7;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: #000000;
  font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
	display: none;
}
#header {
	background: rgba(255,255,255,0.9);
}
.h_main {
	padding: 15px 0;
}
.h_main .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	margin: 0;
	width: 200px;
}
.h_lang {
	margin: 0;
	width: 200px;
	text-align: end;
}
.h_lang a {
	display: block;
	line-height: 0;
}
.h_lang a:not(:last-child) {
	margin-bottom: 5px;
}
.h_name {
    margin: auto;
    text-align: center;
    color: var(--mcolor);
}
.h_name .name {
	display: block;
	font-size: 162.5%;
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
}
.h_name .en {
    color: var(--scolor);
    font-weight: bold;
    display: block;
    letter-spacing: 0.32em;
	font-family: 'UTMAvo';
	text-transform: uppercase;
	margin: 3px 0 8px;
}
.h_name .slogan {
	font-size: 112.5%;
	font-weight: 700;
	/*
	font-family: 'Courier';*/
	font-style: italic;
	font-family: 'Gilroy', sans-serif;
}
#gnavi {
	background: var(--mcolor);
}
#gnavi .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
}
.h_search {
	position: relative;
}
.h_sear_ttl {
	margin: 0;
	cursor: pointer;
}
.h_search_form {
    position: absolute;
    right: 0;
    background: #fff;
    padding: 5px;
    width: 250px;
    top: 41px;
	display: none;
    z-index: 9;
}
.h_search_form input {
    background: #f0f0f0;
    border: none;
    font-size: 13px;
    padding: 10px 16px;
    width: 100%;
}
.h_search_form .button {
    background: var(--mcolor);
    color: #fff;
    font-size: 13px;
    border: none;
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 10px;
    cursor: pointer;
    text-decoration:none;
}
.gnavi {
	display: flex;
}
.gnavi>li {
	position: relative;
	margin: 0 40px;
}
.gnavi>li>a {
	display: block;
	text-decoration: none;
	padding: 20px 0;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.gnavi>li:hover>a, .gnavi>li.active>a {
	color: var(--scolor);
}
.gnavi>li:first-child {
	margin-left: 0;
}
.gnavi>li>a:after {
	content: '';
	position: absolute;
	width: 0;
height: 0;
border-style: solid;
border-width: 0 5px 8px 5px;
border-color: transparent transparent var(--scolor) transparent;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s;
}
.gnavi>li:hover>a:after, .gnavi>li.active>a:after {
	bottom: 0;
}
.submenu {
	position: absolute;
	z-index: 10;
	left: 50%;
	transform: translateX(-50%);
	display: none;
}
.submenu a {
	display: block;
	background: var(--scolor);
	color: #fff;
	padding: 15px 20px;
	margin-top: 1px;
	transition: all 0.3s;
	white-space: nowrap;
	text-decoration: none;
	font-size: 14px;
}
.submenu a:hover {
	opacity: 0.7;
}
.mainvisual {position: relative;}
.main_slide p, .main_slide_thumb p {
	margin: 0;
}
.main_slide img {
	width: 100%;
}
.mainvisual .main_slide_thumb  {
    position: absolute;
    bottom: 20px;
    width: 470px;
    left: calc(50% + 110px);
    padding: 8px 35px;background: #ffffffd9;
}
.mainvisual .main_slide_thumb .slick-slide{margin:0 3px;    border: 2px solid var(--scolor);}
.main_slide_thumb .slick-arrow {
    position: absolute;
    width: 30px;
    height: 100%;
    top: 0;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,0.5);
    text-indent: -500000px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    transition: all 0.5s ease;
}
.main_slide_thumb .slick-arrow:after {
    content: '';
    position: relative;
    border: solid rgba(0,0,0,0.2);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
    transition: all 0.5s ease;
}
.main_slide_thumb .slick-prev:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    left: 3px;
}
.main_slide_thumb .slick-next:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: -3px;
}
.main_slide_thumb .slick-prev {
    left: 0;
}
.main_slide_thumb .slick-next {
    right: 0;
}
.box01 {
	background: url("/W_images/b01_bg.jpg") no-repeat top center/cover;
	padding: 80px 0;
}
.box01 .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
	flex-direction: row-reverse;
}
.b01_img {
    margin: 0;
    flex-shrink: 0;
    margin-right: 60px;
}
.idx_h2 {
    color: var(--scolor);
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 30px;
}
.idx_h2 .small:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 2px;
    height: 31px;
    border-top: 10px solid var(--scolor);
    border-bottom: 15px solid var(--scolor);
    margin-right: 10px;
}
.idx_h2 .small {
	display: inline-flex;
	align-items: center;
}
.idx_h2 .lager {
	font-size: 225%;
	color: var(--mcolor);
	text-transform: uppercase;
	line-height: 1.5em;
	display: block;
	margin-top: 5px;
}
.b01_txt p:first-child {
	color: var(--mcolor);
	font-weight: 500;
}
.b01_txt {
	margin-bottom: 40px;
}
.idx_btn {
	margin: 0;
}
.idx_btn a {
	display: inline-block;
	width: 180px;
	background: var(--scolor);
	color: #fff;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	font-size: 15px;
	position: relative;
	border: 1px solid var(--scolor);
	transition: all 0.3s;
	padding: 13px;
	border-radius: 5px;
}
.idx_btn a:after {
	content: '';
	position: absolute;
	width: 0;
height: 0;
border-style: solid;
border-width: 5px 0 5px 6px;
border-color: transparent transparent transparent #ffffff;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.idx_btn a:hover {
	background: #fff;
	color: var(--scolor);
}
.idx_btn a:hover:after {
	border-left-color: var(--scolor);
}
.box02 {
	background: url("/W_images/b02_bg.jpg") no-repeat top center/cover;
	padding: 80px 0 50px;
	color: #fff;
}
.box02 .idx_h2 {
	color: #fff;
	text-align: center;
}
.box02 .idx_h2 .lager {
	color: #fff;
}
.box02 .idx_h2 .small:before {
	border-color: #fff;
}
.b02_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.b02_item {
    width: calc(33.33% - 40px);
    margin: 0 60px 40px 0;
    text-align: center;
	transition: all 0.3s ease;
}
.b02_item:hover {
	transform: translateY(-10px);
}
.b02_item:hover .b02_itm_img img {
	transform: scale(1.1);
}
.b02_item:nth-child(3n), .b02_item:last-child {
	margin-right: 0;
}
.b02_itm_img {
    margin: 0 0 15px;
    border-radius: 5px;
    overflow: hidden;
}
.b02_itm_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: all 0.3s ease;
}
.b02_itm_ttl {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3em;
	margin: 5px 0;
	
   
}
.b02_itm_txt{
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.b02_item:before {
	content: '';
	position: relative;
	display: block;
	background: url("/W_images/b02_icon01.png") no-repeat top center/100% auto;
	width: 120px;
	height: 110px;
	margin: 0 auto -40px;
	
	z-index: 2;
}
.b02_item:nth-child(2):before {
	background-image: url("/W_images/b02_icon02.png");
}
.b02_item:nth-child(3):before {
	background-image: url("/W_images/b02_icon03.png");
}
.b02_item:nth-child(4):before {
	background-image: url("/W_images/b02_icon04.png");
}
.b02_item:nth-child(5):before {
	background-image: url("/W_images/b02_icon05.png");
}
.box03 {
	background: #dddddd;
	padding: 80px 0;
}
.box03 .idx_h2 {
	text-align: center;
}
.b03_tab {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.b03_main {
	display: none;
}
.b03_main.current {
	display: inherit;
}
.b03_tab li {
    background: var(--mcolor);
    color: #fff;
    padding: 7px 20px;
    border-radius: 5px;
    margin: 0 5px;
    transition: all 0.3s;
	cursor: pointer;
}
.b03_tab li:hover, .b03_tab li.current {
	background: var(--scolor);
}
.b03_list {
    display: flex;
}
.b03_list p {
    background: #fff;
    width: 100%;
    margin-right: 25px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 15px;
	overflow: hidden;
}
.b03_list p:last-child {
	margin-right: 0;
}
.b03_list p img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    object-fit: contain;
}
/*.b03_list p:hover img {
    transform: scale(1.1);
}*/
.box04 {
	padding: 80px 0;
	position: relative;
	z-index: 2;
}
.box04:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 327px;
	background: url("/W_images/b04_bg.jpg") no-repeat top center/cover;
	left: 0;
	bottom: 0;
	z-index: -2;
	pointer-events: none;
}
.b04_des{
	margin-bottom:30px;
    line-height: 1.4;
}
.b04_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
	position: relative;
	z-index: 2;
	clear: both;
	margin-bottom: 40px;
}
.b04_list:after {
	content: '';
	position: absolute;
	width: calc(100% + 30px);
	height: 100%;
	bottom: 0;
	left: -15px;
	z-index: -2;
	pointer-events: none;
	background: #fff;
}
.b04_item {
	width: calc(33.33% - 10px);
	margin: 0 15px 15px 0;
}
.b04_item:nth-child(3n) {
	margin-right: 0;
}
.box04 .idx_h2 {
    float: left;
}
.b04_link {
    display: flex;
    justify-content: flex-end;
    margin-top: 60px;
    float: right;
}
.b04_link a {
	display: block;
	text-decoration: none;
	color: var(--mcolor);
	transition: all 0.3s;
}
.b04_link a:hover {
	color: var(--scolor);
}
.b04_link li:not(:last-child) {
	border-right: 1px solid var(--mcolor);
	margin-right: 20px;
	padding-right: 20px;
}
.b04_link li {
    line-height: 1em;
}
.b04_itm_img {
    margin: 0;
    overflow: hidden;
}
.b04_itm_img img {
	width: 100%;
	transition: all 0.7s;
}
.b04_item a:hover .b04_itm_img img {
	transform: scale(1.1,1.1);
}
.b04_item a {
	display: block;
	text-decoration: none;
	position: relative;
}
.b04_itm_main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgb(13 43 27 / 80%);
    color: #fff;
    padding: 20px;
    transition: all 0.3s;
    opacity: 0;
    transform: scale(0.5,0.5);
}
.b04_item a:hover .b04_itm_main {
	opacity: 1;
	transform: scale(1,1);
}
.b04_itm_ttl {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.5em;
    font-weight: 500;
}
.b04_itm_area {
    font-size: 14px;
    font-style: italic;
}

.b04_itm_btn {
	display: block;
	margin: 0;
	width: 150px;
	background: var(--scolor);
	color: #fff;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	border: 1px solid var(--scolor);
	transition: all 0.3s;
	padding: 10px;
	border-radius: 5px;
	font-size: 14px;
}
.b04_itm_btn:after {
	content: '';
	position: absolute;
	width: 0;
height: 0;
border-style: solid;
border-width: 5px 0 5px 6px;
border-color: transparent transparent transparent #ffffff;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.box04 .idx_btn {
	text-align: center;
}
.box04 .idx_btn a {
	border-color: #fff;
}
.box05 {
	padding: 80px 0;
}
.box05 .idx_h2 {
	text-align: center;
}
.b05_link {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.b05_link a {
    background: var(--mcolor);
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    margin: 0 5px;
    transition: all 0.3s;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
}
.b05_link a:hover {
	background: var(--scolor);
}
.b05_list {
    display: flex;
}
.b05_item {
    width: calc(33.33% - 30px);
    margin: 0 45px 0 0;
	transition: all 0.3s;
}
.b05_item:hover {
	transform: translateY(-10px);
}
.b05_item:last-child {
	margin-right: 0;
}
.b05_item a {
	display: block;
	text-decoration: none;
	color: #000;
	border: 1px solid #ebebeb;
}
.b05_itm_img {
    margin: 0;
    overflow: hidden;
}
.b05_itm_img img {
	width: 100%;
}
.b05_itm_main {
	padding: 20px 20px 25px;
}
.b05_itm_date {
    font-size: 14px;
    color: var(--scolor);
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}
.b05_itm_date:before {
	content: '';
	position: relative;
	display: inline-block;
	background: url("/W_images/b05_date.png") no-repeat center center/100% auto;
	width: 11px;
	height: 11px;
	margin-right: 10px;
}
.b05_itm_ttl {
    font-size: 18px;
    font-weight: bold;
    color: var(--mcolor);
    line-height: 1.3em;
    margin-bottom: 15px;
}
.b05_itm_txt {
    margin: 0;
}
.b05_itm_txt span {
    color: var(--scolor);
    font-style: italic;
}
.box06 {
	background: url("/W_images/b06_bg.jpg") no-repeat top center/cover;
	padding: 60px 0 80px;
}
.box06 .idx_h2 .lager {
	color: #fff;
	text-align: center;
	margin: 0;
}
.b06_row {
    display: flex;
}
.b06_form input, .b06_form select {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 20px;
    margin: 0 15px 15px 0;
	font-style: italic;
}
.b06_row>*:last-child {
	margin-right: 0;
}
.b06_form textarea {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 20px;
    margin: 0 15px 15px 0;
	font-style: italic;
	height: 110px;
}
.b06_form .button {
	display: block;
	margin: 0 auto;
	width: 150px;
	background: var(--scolor);
	color: #fff;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
    text-decoration:none;
	position: relative;
	border: 1px solid var(--scolor);
	transition: all 0.3s;
	padding: 14px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 500;
}
.b06_form .button:after {
	content: '';
	position: absolute;
	width: 0;
height: 0;
border-style: solid;
border-width: 5px 0 5px 6px;
border-color: transparent transparent transparent #ffffff;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.b06_form .button:hover {
	background: var(--mcolor);
	border-color: #fff;
}
.box07 {
  background: #f0f0f0;
  padding: 60px 0;
}
.box07 .idx-ttl {
  text-align: center;
  color: #008000;
  padding: 0;
  margin: 0 0 30px;
}
.box07 .idx-ttl:after {
  display: none;
}
.box07 .container {
 
}
.b07-list {
  margin: 0 -15px;
}
.b07-item {
  margin: 0 15px;
  color: #fff;
  outline: none;
 
}
/*.b07-item:nth-child(3n+1) .b07-itm-main {
  background: #39f;
}
.b07-item:nth-child(3n+2) .b07-itm-main {
  background: #669900;
}
.b07-item:nth-child(3n+3) .b07-itm-main {
  background: #126431;
}*/
.b07-img {
  width: 112px;
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto -56px;
}
.b07-itm-main {
  padding: 60px 30px 30px;
   background:var(--mcolor);
}
.b07-ttl {
  text-align: center;
  margin: 0 0 15px;
  font-size: 15px;font-weight: bold;
}
.b07-txt {
  margin: 0;
  position: relative;
  font-size: 13px;
}
.b07-txt:before, .b07-txt:after {
  position: absolute;
  
  font-size: 50px;
}
.b07-txt:before {
  content: '“';
  top: 10px;
  left: -28px;
}
.b07-txt:after {
  content: '”';
  bottom: -10px;
  right: -28px;
}
.b07-list .slick-dots{display:flex;justify-content:center;margin-top: 20px;}
.b07-list .slick-dots li {
    margin: 0 7px;
}
.b07-list .slick-dots li button {
    background: #0056ab;
    /*clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);*/
    width: 14px;
    height: 14px;
    border: none;
    text-indent: -500000px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.7;border-radius: 10px;
}
.b07-list .slick-dots li.slick-active button, .b07-list .slick-dots li:hover button{background: #be0f12;}
.box08 {
  background: #f0f0f0;
  padding: 60px 0;
}
.box08 .idx-ttl {
  text-align: center;
  color: #008000;
  padding: 0;
  margin: 0 0 30px;
}
.box08 .idx-ttl:after {
  display: none;
}
.box08 .container {
 
}
.b08_list {
	display: flex;
    justify-content: center;
  margin: 0 -15px;
}
.b08-item {
	width: 33.33%;
  margin: 0 15px;
  color: #fff;
  outline: none;
 transition: all 0.3s;
}
.b08-item:hover {
	    transform: translatey(-10px);
}
.b08-item a {
	color: #fff;
}
/*.b08-item:nth-child(3n+1) .b08-itm-main {
  background: #39f;
}
.b08-item:nth-child(3n+2) .b08-itm-main {
  background: #669900;
}
.b08-item:nth-child(3n+3) .b08-itm-main {
  background: #126431;
}*/
.b08-img {
  width: 112px;
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto -56px;
}
.b08-itm-main {
  padding: 60px 30px 30px;
   background:var(--mcolor);
       height: 160px;
}
.b08-ttl {
  text-align: center;
  margin: 0 0 15px;
  font-size: 15px;font-weight: bold;
}
.b08-txt {
  margin: 0;
  position: relative;
  font-size: 13px;
}
.b08-txt:before, .b08-txt:after {
  position: absolute;
  
  font-size: 50px;
}
.b08-txt:before {
  content: '“';
  top: 10px;
  left: -28px;
}
.b08-txt:after {
  content: '”';
  bottom: -10px;
  right: -28px;
}
.b08-list .slick-dots{display:flex;justify-content:center;margin-top: 20px;}
.b08-list .slick-dots li {
    margin: 0 7px;
}
.b08-list .slick-dots li button {
    background: #0056ab;
    /*clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);*/
    width: 14px;
    height: 14px;
    border: none;
    text-indent: -500000px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.7;border-radius: 10px;
}
.b08-list .slick-dots li.slick-active button, .b08-list .slick-dots li:hover button{background: #be0f12;}
#footer {
	border-top: 2px solid var(--scolor);
}
.footer_main {
	padding: 50px 0;
	position: relative;
	z-index: 2;
	overflow: hidden;
}
.footer_main:before, .footer_main:after {
	content: '';
	position: absolute;
	z-index: -2;
	pointer-events: none;
}
.footer_main:before {
	/* background: url("/W_images/f_icon01.png") no-repeat bottom center/100% auto; */
	/* width: 155px; */
	/* height: 214px; */
	/* bottom: -30px; */
	/* right: 96%; */
}
.footer_main:after {
	/* background: url("/W_images/f_icon02.png") no-repeat bottom center/100% auto; */
	/* width: 552px; */
	/* height: 354px; */
	/* top: 23px; */
	/* left: 55%; */
}
.footer_main .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.f_logo {
	width: 200px;
    margin-bottom: 10px;
}
.f_mod {
	width: calc(33.33% - 30px);
	margin-right: 45px;
}
.f_mod:last-child {
	margin-right: 0;
}
.f_info {
    display: flex;
    flex-wrap: wrap;
}
.f_info li:before {
	content: '';
	position: relative;
	display: inline-block;
	background: url("/W_images/f_add.png") no-repeat center center;
	margin-right: 10px;
	width: 19px;
	height: 19px;
}
.f_info li:nth-child(1):before {display:none;}
.f_info li:nth-child(1) p {margin-bottom:10px;}
.f_info li:nth-child(2):before {
	background-image: url("/W_images/f_tel.png");
}
.f_info li:nth-child(2), .f_info li:nth-child(3) {
	margin-right: 30px;
}
.f_info li:nth-child(3):before {
	background-image: url("/W_images/f_mail.png");
	top: 3px;
}
.f_info li:nth-child(4):before {
	background-image: url("/W_images/f_web.png");
}
.f_info li {
	margin-bottom: 10px;
}
.f_info a {
	text-decoration: none;
	color: #000;
}
.f_ttl {
    font-size: 18px;
    color: var(--mcolor);
    font-weight: bold;
    text-transform: uppercase;
    margin: 50px 0 30px;
}
.f_menu {
    display: flex;
    flex-flow: column wrap;
    height: 120px;
}
.f_menu a {
	display: inline-block;
	text-decoration: none;
	color: #000;
	transition: all 0.3s;
}
.f_menu li {
	position: relative;
	padding-left: 13px;
	margin-bottom: 10px;
}
.f_menu li:before {
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	background: var(--scolor);
	border-radius: 50%;
	left: 0;
	top: 10px;
}
.f_menu a:hover {
	color: var(--scolor);
}
.f_social {
	margin: 0;
	display: flex;
}
.f_social a:not(:last-child) {
	margin-right: 15px;
}

.copyright {
	margin: 0;
	background: var(--scolor);
	color: #fff;
	text-align: center;
	font-size: 14px;
	padding: 20px 0;
}
#header.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-animation: header-fixed 0.6s;
  -moz-animation: header-fixed 0.6s;
  -ms-animation: header-fixed 0.6s;
  animation: header-fixed 0.6s;
}
#header.fixed .logo {
    width: 160px;
}
#header.fixed .h_name {
    font-size: 12px;
}
#header.fixed .h_name .en {
    margin: 0 0 4px;
}
#header.fixed .h_main {
    padding: 8px 0;
}
#header.fixed .gnavi>li>a {
    padding: 13px 0;
}
@keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}



/*
	font-family: 'Montserrat', sans-serif;
	font-family: 'Roboto', sans-serif;
*/
@media screen and (max-width: 1400px) {
  .container {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 14px;
}
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 60px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: var(--mcolor);
    margin-left: 10px;
		flex-shrink: 0;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before, .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gnv-ico {
    width: 50px;
    height: 52px;
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #totop {
    width: 40px;
    right: 3%;
    bottom: 30px;
    line-height: 0;
  }
#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
}
.h_name {
 margin: 0 auto;
}
.h_name .name{font-size: 110%;}
.h_name .en{font-size: 80%;margin-bottom:0;}
.h_name .slogan{font-size: 90%;}
.h_lang {
    margin: 0 0 0 auto;
}
.logo {
    width: 130px;
}
.h_main {
    padding: 5px 0;
}
#gnavi {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
    padding: 70px 0 40px;
	display: none;
}
#gnavi .container {
    display: block;
}
.h_search_form {
    display: block!important;
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    top: 0;
}
	.h_sear_ttl {
		display: none;
	}
.h_search {
    margin: 0 0 30px;
}
.gnavi {
    display: block;
    text-align: center;
}
.gnavi>li {
    margin: 0;
}
.gnavi>li>a {
    border-bottom: 1px solid #fff;
    padding: 15px 0;
}
.gnavi>li:hover>a, .gnavi>li.active>a {
    color: #fff;
}
	.gnavi>li>a:after {
		display: none;
	}
.submenu {
    position: relative;
    width: 100%;
}
.submenu a {
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid #fff;
}
.box01 {
    padding: 40px 0;
}
.box01 .container {
    display: block;
}
.b01_img {
   margin: 0 0 25px;
}
.idx_h2 {
    text-align: center;
    margin-bottom: 20px;
}
.idx_h2 .lager {
    font-size: 160%;
}
.idx_h2 .small:before {
    height: 26px;
    border-top-width: 8px;
}
.idx_btn {
    text-align: center;
}
.idx_btn a {
    font-size: 13px;
    padding: 10px;
}
.b01_txt {
    margin-bottom: 20px;
}
.box02 {
    padding: 40px 0 10px;
}
.b02_item {
    width: 48%;
    margin: 0 4% 30px 0;
}
	.b02_item:nth-child(2n) {
		margin-right: 0;
	}
.b02_item:nth-child(3n) {
    margin-right: 4%;
}
.b02_item:before {
    width: 80px;
    height: 76px;
    margin-bottom: -30px;
}
.b02_itm_ttl {
    font-size: 16px;
}
.b02_itm_txt{
	font-size:13px;
}
.box03 {
    padding: 40px 0;
}
.b03_tab li {
    padding: 7px 10px;
    margin: 0 2px;
}
.b03_tab {
    margin-bottom: 20px;
}
.b03_list li {
    margin-right: 5px;
    padding: 5px;
    height: 100px;
}
.box04 {
    padding: 40px 0;
}
.box04 .idx_h2 {
    float: none;
}
.b04_link {
    float: none;
    justify-content: center;
    margin: 0 0 30px;
    flex-wrap: wrap;
    display: none;
}
.b04_item {
    width: calc(50% - 5px);
    margin: 0 10px 10px 0;
}
.b04_item:nth-child(3n) {
    margin-right: 10px;
}
.b04_item:nth-child(2n) {
    margin-right: 0;
}
.b04_list:after {
    width: calc(100% + 20px);
    left: -10px;
}
.b04_list {
    margin-bottom: 20px;
}
.b04_itm_main {
    opacity: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: none;
    padding: 10px;
    display: block;
    top: auto;
	position: relative;
}
.b04_itm_ttl {
    font-size: 14px;
	margin: 0;
}
.b04_itm_btn {
    display: none;
}
.b04_itm_area {
	margin-bottom: 0;
	font-size: 12px;
}
.b04_link li:not(:last-child) {
    padding: 0 10px 0 0;
    margin: 0 10px 5px 0;
}
.box05 {
    padding: 40px 0;
}
.b05_link li {
    margin: 0 0 5px;
}
.b05_link a {
    padding: 10px 15px;
    margin: 0 2px;
	display: block;
}
.b05_link {
    flex-wrap: wrap;
    display: none;
}
.b05_list {
    display: block;
}
.b05_item {
    width: 100%;
    margin: 0 0 20px;
}
.b05_item a {
    display: flex;
}
.b05_itm_img {
    width: 45%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
	.b05_itm_img img {
		flex-shrink: 0;
		object-fit: cover;
		height: 100%;
	}
.b05_itm_main {
    padding: 20px;
}
.b05_itm_date {
    font-size: 12px;
    margin-bottom: 7px;
}
.b05_itm_ttl {
    font-size: 16px;
    margin-bottom: 10px;
}
.b05_itm_txt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.box06 {
    padding: 40px 0;
}
.b06_row {
    display: block;
}
.b06_form input, .b06_form select {
    margin: 0 0 10px;
    padding: 13px 15px;
}
.footer_main {
    padding: 30px 0 10px;
}
.footer_main .container {
    display: block;
}
.f_mod {
    width: 100%;
    margin: 0 0 20px;
}
.f_info {
    flex-direction: column;
}
.f_ttl {
    font-size: 16px;
    margin: 0 0 10px;
}
.f_menu {
    height: 100px;
}
.f_menu li:before {
    top: 8px;
}
.copyright {
    font-size: 12px;
    padding: 13px 0;
}
}
@media screen and (max-width: 480px) {
	
#wrapper{padding-top: 80px;}	
#gnavi{top: 78px;}
.h_main {/* padding: 70px 0 5px; */}
.logo{/* position: fixed; */top: 1%;left: 3%;}
.h_name {margin: 0 auto 0 0;text-align: left;line-height: 1.3;display: none;}	
.h_name .name {
    font-size: 13px;
}
.h_name .en {
    font-size: 9px;
    margin: 0;
}
.h_name .slogan {
    font-size: 13px;
}	
.b08_list{flex-wrap: wrap;}
.b08-item{width:100%;}
}
@media screen and (max-width: 425px) {
	.h_name .name {
    font-size: 11px;
}
.h_name .en {
    font-size: 6px;
   
}
.h_name .slogan {
    font-size: 10px;
}
.b04_itm_ttl {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.b05_itm_txt {
    display: none;
}
.b05_itm_ttl {
    margin: 0;
}
.b03_list li {
    height: 16vw;
}
.idx_h2 .lager {
    font-size: 130%;
}
.b02_itm_ttl {
    font-size: 12px;
}
.b02_itm_txt{
	font-size:12px;
}
.b02_item:before {
    width: 60px;
    height: 56px;
    margin-bottom: -21px;
}
.b05_link a, .b03_tab li {
    font-size: 12px;
    padding: 10px 7px;
}
.b04_link a {
    display: block;
    font-size: 12px;
}
.b04_link a {
    display: block;
    font-size: 12px;
    padding: 5px;
}
.b04_link li:not(:last-child) {
    padding: 0;
    margin: 0;
}
}