﻿@charset "UTF-8";

@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap');
:root {
	--f-main: 'UTMAvo';
	--f-mon: 'Montserrat', sans-serif;
	--txt: #666666;
	--mcolor: #009899;
	--scolor: #80cccc;
	--yellow: #ffa80a;
	--blue: #008687;
}
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(--mcolor);
}
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: 25px;
    right: 1%;
    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: var(--txt);
  font-family: var(--f-main);
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
	padding-top: 104px;
}
.container {
  width: 1390px;
	max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {

}
#header {
	background: rgba(255,255,255,0.9);
	padding: 20px 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
}
#header.fixed {
	box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.03);
}
#header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	width: 25%;
	margin: 0 auto;
}
#gnavi {
    margin: 0 100px 0 auto;
}
.gnavi {
	display: flex;
}
.gnavi li {
	position: relative;
}
.gnavi>li>a {
	display: block;
	text-decoration: none;
	color: #414141;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	padding: 10px 20px;
	transition: all 0.3s;
	background-position: bottom center;
}
.gnavi>li:hover>a, .gnavi>li.active>a {
	color: var(--mcolor);
	background: url("../images/gnv_arr.svg") no-repeat bottom center;
}
.gnavi>li.active>a {
	font-weight: bold;
}

.submenu{
	position: absolute;
	width:270px;
	left: 50%;
	transform: translateX(-50%);
	display: none;
}
.submenu a {
	display: block;
	text-decoration: none;
	/*white-space: nowrap;*/
	font-size: 14px;
	text-transform: uppercase;
	background: var(--mcolor);
	color: #fff;
	padding: 8px 20px;
	margin-top: 1px;
	transition: all 0.3s;
}
.submenu a:hover {
	background: var(--scolor);
}
.subsubmenu{
	position: absolute;
	width:270px;
	top:-1px;
	left: 100%;
	display: none;
}

.h_search {
	
	margin: 0 40px;
}
.h_search_ttl {
	margin: 0;
	padding: 20px;
	cursor: pointer;
}
.h_search_form {
    position: absolute;
    right: 15px;
    bottom: -17px;
    /*width: 100%;*/
    display: none;
    transition: all 0.3s;
  
}
.h_search_main {
    width: 410px;
    margin: 0 auto;
    border: 1px solid var(--mcolor);
    display: flex;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
}
.h_search_form select {
    font-size: 15px;
    width: 220px;
    text-align: center;
    color: #fff;
    background: var(--mcolor);
    border: none;
    padding: 10px;
}
.h_search_form input {
    width: 80%;
    font-size: 15px;
    font-style: italic;
    color: #bfbfbf;
    padding: 5px 20px;
    border: none;
    color:#000;
}
.h_search_form button {
    width: 20%;
    border: none;
    background: var(--mcolor);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border-left: 1px solid;
   
	cursor: pointer;
    transition:all 0.5s;
}
.h_search_form button:hover {
    opacity:0.8;
}
#bg_search {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0000009c;
}
body.openSearch{overflow:hidden;}
body.openSearch #bg_search, body.openSearch .h_search_form {
    display: block;
    z-index: 4;
}
/*.h_search:hover .h_search_form {
	opacity: 1;
	visibility: visible;
}*/
.h_lang {
    display: flex;
    border: 3px solid var(--mcolor);
    background: var(--mcolor);
}
.h_lang li {
	font-size: 15px;
}
.h_lang a {
	display: block;
	text-decoration: none;
	font-weight: 700;
	padding: 3px 10px;
	color: var(--mcolor);background: var(--scolor);
}
.h_lang li.active a {
	color: #fff;
	background: transparent;
}
.main_slide p {
	margin: 0;
}
.main_slide  img {
	width: 100%;
}
.box01 {
	padding: 60px 0;
}
.box01 .container {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	align-items: center;
}
.b01_main {
    width: 50%;
}
.b01_img {
    margin: 0;
    text-align: center;
    width: 50%;
}
.b01_img img {
	border: 2px solid var(--mcolor);
	padding: 4px;
}
.idx_h2 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--mcolor);
    line-height: 1.5em;
    margin: 0 0 30px;
}
.idx_h2 .small {
    display: block;
    font-size: 42%;
    color: #333;
    text-transform: math-auto;
    line-height: 1.5em;
}
.b01_txt {
	font-size: 18px;
}
.idx_btn {
    margin: 0;
}
.idx_btn a {
	display: inline-flex;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	background: var(--mcolor);
	padding: 0 0 0 20px;
	border-radius: 30px;
	align-items: center;
	overflow: hidden;
	line-height: 1em;
	transition: all 0.3s;
}
.idx_btn a:after {
	content: '';
	position: relative;
	display: inline-block;
	width: 35px;
	background: url("../images/idx_arr.svg") no-repeat center center var(--blue);
	margin-left: 20px;
	padding: 20px 10px;
}
.idx_btn a:hover {
	transform: translateY(-10px);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
}
.box02 {
	background: #fafafa;
	padding: 100px 0 80px;
}
.b02_list {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}
.b02_item {
    width: calc(50% - 35px);
    margin: 0 0 27px;
}
.b02_item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--txt);
    transition: all 0.3s;
}
.b02_item a:hover {
	transform: translateY(-10px);
}
.b02_itm_img {
    margin: 0;
    width: 180px;
    border-radius: 50%;
	position: relative;
	z-index: 2;
}
.b02_itm_main {
    margin-left: -100px;
    background: #fff;
    width: calc(100% - 80px);
    border-radius: 60px;
    padding:15px 20px 15px 115px;
	box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.03);
}
.b02_itm_cate {
    display: inline-block;
    font-size: 12px;
    background: var(--yellow);
    color: #fff;
    font-weight: 700;
    padding: 6px 16px;
    margin: 0 0 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid #ebebeb;
}
.b02_itm_ttl {
    color: var(--mcolor);
    line-height: 1.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	font-size: 18px;
}
.b02_itm_count {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    margin-top: 3px;
}
.box03 {
	padding: 90px 0;
}
.box03 .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.b03_main {
    width: 50%;
}
.b03_img {
    text-align: center;
    margin: 0;
    width: 50%;
}
.b03_list li {
    margin: 0 0 25px;
    font-style: italic;
}
.b03_list li:last-child {
	margin-bottom: 0;
}
.b03_list .ttl {
	display: block;
}
.b03_list .ttl {
    display: block;
    font-weight: 700;
    font-style: normal;
    color: var(--yellow);
    font-size: 125%;
    margin: 0 0 5px;
}
.box04 {
	background: #fafafa;
	padding: 100px 0;
}
.box04 .idx_h2 {
	text-align: center;
}
.b04_list {
	display: flex;
	margin-bottom: 55px;
}
.b04_item {
	width: calc(33.33% - 20px);
	margin: 0 30px 0 0;
}
.b04_item:last-child {
	margin-right: 0;
}
.b04_item a {
	display: block;
	text-decoration: none;
	background: #fff;
	border-radius: 25px;
	overflow: hidden;
	color: var(--txt);
	height: 100%;
}
.b04_itm_img {
    margin: 0;
    overflow: hidden;
}
.b04_itm_img img {
	width: 100%;
	transition: all 0.5s;
}
.b04_item a:hover .b04_itm_img img {
	transform: scale(1.1);
}
.b04_itm_main {
    padding: 30px;
}
.b04_itm_date {
    font-size: 15px;
    display: inline-block;
    background: var(--mcolor);
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    margin: 0 0 15px;
}
.b04_itm_ttl {
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 20px;
    color: var(--mcolor);
    margin: 0 0 10px;
}
.b04_itm_txt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 10px;
}
.b04_itm_more {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--yellow);
    border-bottom: 1px solid;
    display: inline-block;
}
.box04 .idx_btn {
	text-align: center;
}
.box05 {
    background: var(--mcolor);
    text-align: center;
    padding: 100px 0;
    color: #fff;
}
.box05 .idx_h2 {
	color: #fff;
	margin-bottom: 0;
}
.b05_form {
    display: flex;
    justify-content: center;
}
.b05_form input {
    border: none;
    padding: 25px 40px;
    border-radius: 20px;
	margin-right: 17px;
	width: 379px;
}
.b05_form input:nth-child(3) {
	width: 249px;
}
.b05_form button {
    background: var(--yellow);
    border: none;
    padding: 0 30px;
    border-radius: 20px;
    cursor: pointer;
}
#footer {
	padding: 40px 0;
}
.f_main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--mcolor);
    padding: 0 0 87px;
    margin-bottom: 45px;
}
.f_mod {
	width: calc(33.33% - 20px);
}
.f_logo {
    margin: 0 0 53px;
}
.f_info {
    font-size: 15px;
    margin: 0 0 15px;
    position: relative;
    padding-left: 35px;
}
.f_info:last-child {
	margin-bottom: 0;
}
.f_info:before {
	content: '';
	position: absolute;
	background: url("../images/f_tel.png") no-repeat center center;
	width: 25px;
	height: 25px;
	left: 0;
	top: 0;
}
.f_mail:before {
	background-image: url("../images/f_mail.png");
}
.f_add:before {
	background-image: url("../images/f_add.png");
	top: 5px;
}
.f_add p{margin-bottom: 0;}
.f_info a {
	text-decoration: none;
	color: var(--txt);
}
.f_ttl {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--f-mon);
    position: relative;
    padding: 0 0 10px;
    margin: 0 0 30px;
}
.f_ttl:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--mcolor);
    left: 0;
    bottom: 0;
}
.f_menu a {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    color: var(--txt);
    position: relative;
    padding-left: 20px;
}
.f_menu a:hover {
	text-decoration: underline;
	color: var(--mcolor);
}
.f_menu li:not(:last-child) {
	margin-bottom: 10px;
}
.f_menu a:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--mcolor);
    left: 0;
    top: 10px;
}
.f_mod:nth-child(3) .f_menu {
	display: grid; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: 0px 0px; 
  grid-template-areas: 
    ". ."
    ". ."
    ". ."; 
}
.f_bottom {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}
.f_social {
    margin: 0;
}
.f_social a:not(:last-child) {
	margin-right: 20px;
}
.copyright {
	margin: 0;
}
.copyright a {
	text-decoration: none;
	color: var(--txt);
}

@media screen and (max-width: 1400px) {
#gnavi {
    margin-right: 0;
}
	
}
@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: 65px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 35px;
    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;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 2px;
    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: calc(50% - 1px);
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    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: -8px;
  }
  .menu-icon span::after {
    margin-top: 8px;
  }
  .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: 25px;
    line-height: 0;
  }
#gnavi {
    position: fixed;
    width: 100%;
    left: 0;
    top: 65px;
    background: rgba(255,255,255,0.9);
    height: calc(100% - 65px);
	display: none;
}
.logo {
    width: 120px;
	margin: 0 auto 0 0;
}
#header {
    padding: 15px 0;
}

.h_search_ttl{
    padding:0;
}
.h_search_form {
    width: 100%;
    bottom: -110px;
    margin: 30px auto;
}
.h_search {
    margin: 0 30px 0 0;
}
.h_search_main{width:70%;}
.gnavi {
    display: block;
}
.gnavi>li>a {
    text-align: left;
    background: var(--mcolor)!important;
	color: #fff!important;
    border-bottom: 1px solid #ccc;
    padding: 15px 20px;
	font-weight: normal!important;
}
.submenu {
    position: relative;
	padding: 20px;
	background: var(--scolor);
}
.submenu a {
    margin: 0;
    padding: 10px 20px;
	background: transparent;
	position: relative;
	white-space: inherit;
}
	.submenu a:before {
		content: '';
		position: absolute;
		border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
		left: 0;
		top: 18px;
	}
.box01 {
    padding: 40px 0;
}
.box01 .container {
    display: block;
}
.b01_main {
    width: 100%;
    margin: 0 0 40px;
}
.idx_h2 {
    font-size: 26px;
    margin: 0 0 20px;
	text-align: left;
}
.idx_h2 .small {
    font-size: 60%;
}
.b01_txt {
    font-size: 14px;
}
.idx_btn {
    text-align: center;
}
.b01_img {
    width: 100%;
}
.b01_img img {
    max-width: 300px;
    padding: 2px;
}
.box02 {
    padding: 40px 0;
}
.b02_item {
    width: 100%;
}
.b02_itm_img {
    width: 150px;
    flex-shrink: 0;
}
.b02_itm_main {
    width: calc(100% - 50px);
    padding: 20px 10px 20px 130px;
    border-radius: 40px;
}
.b02_itm_ttl {
    font-size: 16px;
}
	.b02_item:last-child {
		margin-bottom: 0;
	}
.box03 {
    padding: 40px 0;
}
.box03 .container {
    display: block;
}
.b03_main {
    width: 100%;
    margin: 0 0 40px;
}
.b03_img {
    max-width: 300px;
    margin: 0 auto;
}
.box04 {
    padding: 40px 0;
}
.b04_list {
    display: block;
    margin: 0;
}
.b04_item {
    width: 100%;
    margin: 0 0 30px;
}
.b04_item a {
    display: flex;
    align-items: center;
}
.b04_itm_img {
    flex-shrink: 0;
    width: 50%;
    max-width: 300px;
}
.b04_itm_date {
    font-size: 13px;
    margin: 0 0 10px;
}
.b04_itm_ttl {
    font-size: 16px;
}
.box05 {
    padding: 40px 0;
}
.b05_form {
    display: block;
}
.b05_form input {
    width: 100%;
    margin: 0 0 10px;
    padding: 15px 20px;
    border-radius: 10px;
}
.b05_form input:nth-child(3) {
    width: 100%;
}
.b05_form button {
    padding: 15px 30px;
    border-radius: 10px;
}
.b05_form button img {
    width: 20px;
}
#footer {
    padding: 40px 0;
}
.f_main {
    display: block;
    padding: 0 0 10px;
    margin-bottom: 40px;
}
.f_mod {
    width: 100%;
    margin: 0 0 30px;
}
.f_logo {
    margin: 0 0 25px;
}
.f_info {
    font-size: 14px;
    margin: 0 0 15px;
}
.f_ttl {
    font-size: 18px;
	margin-bottom: 20px;
}
.f_menu a {
    font-size: 14px;
}
.f_bottom {
    display: block;
    text-align: center;
}
.f_social {
    margin: 0 0 10px;
}
}

@media screen and (max-width: 640px) {
	.b04_itm_txt {
		display: none;
	}
.b04_itm_main {
    padding: 15px;
}
}
@media screen and (max-width: 440px) {
 .h_search_main {
     width: 100%;
 }
.b02_itm_img {
    width: 120px;
}
.b02_itm_main {
    width: calc(100% - 20px);
    padding: 12px 10px 12px 120px;
}
.b02_itm_cate {
    font-size: 10px;
    padding: 3px 10px;
    margin: 0 0 5px;
}
.b04_itm_img {
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
	.b04_itm_img img {
		object-fit: cover;
		height: 100%;
	}
.h_search_form select {
	font-size: 13px;
    width: 130px;
    padding: 10px 5px;
}
.h_search_form input {font-size: 13px;
   
    padding: 10px;
}
}