﻿@charset "UTF-8";
@import "base.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --f-main: "Montserrat", sans-serif;
  --txt: #000;
  --mcolor: #284296;
  --scolor: #ff914c;
  --red: #ff3231;
  --blue-light: #c9ddf8;
  --green-light: #e0ffd2;
  --orange-light: #fbd1b6;
  --blue: #004aad;
  --blue-dark: #052c60;
  --green: #75d54c;
  --yellow: #ffea00;
}
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: 20px;
  right: 10px;
  z-index: 10;
  margin-bottom: 0;
  width: 60px;
}
#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;
}
p:last-child {
  margin: 0;
}
.clr_blue {
  color: var(--blue);
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: var(--txt);
  font-family: var(--f-main);
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 1390px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
}
.sp {
  display: none;
}
h1 {
  display: none;
}
#header {
  position: relative;
  z-index: 99;
}
.h_box {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
}
.h_main {
  padding: 10px 0;
}
.h_main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
	width:100px;
  margin: 0;
}
.h_right {
  display: flex;
  align-items: center;
}
.h_tel {
  margin: 0 50px 0 0;
  color: var(--scolor);
}
.h_tel .txt {
  text-decoration: underline;
}
.h_tel .num {
  font-weight: 700;
  color: var(--red);
  font-size: 18px;
}
.h_search {
  width: 310px;
  border-bottom: 1px solid var(--txt);
  margin: 0 40px 0 0;
  display: flex;
  justify-content: space-between;
  padding: 0 0 9px;
}
.h_search .button {
    text-decoration:none;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--mcolor);
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
}
.h_search input {
  width: 100%;
  border: none;
  color: var(--txt);
}
.h_search input::placeholder {
  color: var(--mcolor);
  opacity: 1;
}
.h_search input::-ms-input-placeholder {
  color: var(--mcolor);
}
.h_social {
  margin: 0;
  display: flex;
}
.h_social a:not(:last-child) {
  margin-right: 10px;
}
#header.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background: #fff;
  -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 .h_box {
  position: relative;
}
#header.fixed .h_main {
  display: none;
}
@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);
  }
}
#gnavi {
  background: var(--mcolor);
  border-bottom: 2px solid var(--yellow);
}
.gnavi {
  display: flex;
  justify-content: center;
  position: relative;
}
.gnavi > li {
  position: relative;
  margin: 0 3px;
  position: relative;
  transition: all 0.3s;
  background-repeat: no-repeat;
  background-position: bottom -2px center;
}
.gnavi > li > a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  padding: 10px;
  text-align: center;
  transition: all 0.3s;
}
.gnavi > li > a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  padding: 18px 35px;
  font-weight: 500;
}
.gnavi > li.active, .gnavi > li:hover {
  background-image: url("/assets/images/gnv_icon.svg");
}
.gnavi > li.active > a, .gnavi > li:hover > a {
  color: var(--yellow);
}
.submenu {
  position: absolute;
  z-index: 10;
  background: #fff;
  padding: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.submenu a {
  display: inline-block;
  text-decoration: none;
  color: var(--txt);
  white-space: nowrap;
}
.submenu li {
  font-size: 14px;
  padding: 0 0 10px;
  border-bottom: 1px solid #c9c9c9;
  margin: 0 0 10px;
}
.submenu li:last-child {
  border-bottom: none;
  padding: 0;
  margin: 0;
}
.submenu_col {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 1330px;
}
.submenu_col_item {
  width: calc(25% - 22.5px);
}
.submenu_col_item:not(:last-child) {
  margin-right: 30px;
}
.gnavi > li.lager {
  position: static;
}
.submenu_col_ttl {
  padding: 0 0 10px;
  border-bottom: 1px solid #c9c9c9;
  margin: 0 0 20px;
  font-weight: 600;
}
.submenu_col_item_child a {
  position: relative;
  padding-left: 20px;
}
.submenu_col_item_child li {
  border-bottom: none;
  padding: 0;
}
.submenu_col_item_child a:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: #333;
  border-radius: 50%;
  left: 0;
  top: 7px;
}
.submenu a:hover {
  color: var(--scolor);
}
.main_slide {
  padding-top: 156px;
}
.main_slide p{margin-bottom:0;}
/*
.main_slide.slick-initialized .slick-slide {
  background: url("/assets/images/idx_slide01_bg.jpg") no-repeat center center/cover;
  height: 620px;
  text-align: center;
  color: #000;
}
.main_slide_itm_img {
  margin: -30px 0 0;
  flex-shrink: 0;
}
.main_slide_itm_img:last-child {
  margin: 0 0 -30px;
}
.main_slide_item .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.main_slide_itm_ttl {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0 -45px 15px;
}
.main_slide_itm_txt{margin-bottom:30px;}
.main_slide_itm_txt p {
    font-size: 24px;
}
.main_slide_itm_btn {
  display: flex;
  justify-content: center;
}
.main_slide_itm_btn a {
  text-decoration: none;
  margin: 0 10px;
  background: var(--mcolor);
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.main_slide_itm_btn a:nth-child(2) {
  background-color: #fff;
  color: var(--mcolor);
}
.main_slide_itm_btn a:hover {
  background-color: var(--scolor);
  color: #fff;
}*/
.box01 {
  padding: 80px 0;
}
.box01 .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.b01_left {
  width: 570px;
}
.b01_right {
  width: 670px;
}
.idx_h2 {
  text-align: center;
  color: var(--mcolor);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  margin: 0 0 43px;
}
.idx_h2 .lager {
  display: block;
  color: var(--scolor);
  font-size: 2em;
  line-height: 1.2em;
  margin-top: 10px;
}
.box01 .idx_h2 {
  text-align: left;
}
.b01_txt p {
 font-size: 15px;
    margin-bottom: 10px;
    text-align: justify;
    color: #000;
}
.b01_txt {
  margin: 0 0 30px;
}
.b01_txt h2{
	font-weight: bold;
    font-size: 23px;
    color: #000;
    margin: 20px 0;
}
.b01_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
}
.b01_item {
  width: calc(33.33% - 23px);
  border: 1px solid #ebebeb;
  border-radius: 20px;
}
.b01_itm_ttl {
  display: flex;
  margin: 0;
  font-weight: 700;
  background: var(--blue-light);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  align-items: center;
}
.b01_itm_ttl .char {
  width: 50px;
  text-align: center;
  font-size: 112.5%;
  color: #fff;
  background: var(--blue);
  border-top-left-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  flex-shrink: 0;
}
.b01_itm_ttl .txt {
  padding: 0 15px;
}
.b01_item:nth-child(2) .b01_itm_ttl {
  background: var(--orange-light);
}
.b01_item:nth-child(2) .b01_itm_ttl .char {
  background: var(--scolor);
}
.b01_item:nth-child(3) .b01_itm_ttl {
  background: var(--green-light);
}
.b01_item:nth-child(3) .b01_itm_ttl .char {
  background: var(--green);
}
.b01_itm_txt {
    padding: 15px 10px;
    font-size: 15px;
}
.idx_btn {
  margin: 0;
  text-align: center;
}
.idx_btn a {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 40px;
  transition: all 0.3s;
}
.b01_img_ttl{text-align:center;}
.b01_img_ttl span{display: block;
    margin-bottom: 6px;
    color: #000;}
.b01_img_ttl .ttl{
	font-weight: bold;
    text-align: center;
    color: #284296;
    font-size: 24px;
	
}
.b01_img_ttl .ttl_02{
	    font-size: 20px;
    color: #000;
	
}
.idx_btn a:hover {
  background-color: var(--mcolor);
}
.box02 {
  background: #f7f7f7;
  padding: 80px 0 100px;
}
.b02_list {
  display: flex;
}
.b02_item {
  width: calc(25% - 22.5px);
  margin: 0 30px 0 0;
}
.b02_item:last-child {
  margin-right: 0;
}
.b02_item a {
  display: block;
  text-decoration: none;
  height: 100%;
  background: #fff;
  color: var(--txt);
  transition: all 0.3s;
}
.b02_itm_img {
  margin: 0;
  overflow: hidden;
}
.b02_itm_img img {
  width: 100%;
  transition: all 0.5s;
}
.b02_item a:hover .b02_itm_img img {
  transform: scale(1.1);
}
.b02_itm_main {
  padding: 30px;
}
.b02_itm_date {
  background: var(--mcolor);
  display: inline-block;
  color: #fff;
  font-size: 12px;
  padding: 3px 14px;
  margin: 0 0 20px;
}
.b02_itm_ttl {
  font-weight: 700;
  color: var(--scolor);
  line-height: 1.5em;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.b02_itm_txt {
  text-align: justify;
}
.box03 {
  background: #71d1f0;
  padding: 30px 0 0;
}
.box03 .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}
.b03_main {
  width: 730px;
  margin-right: 30px;
  padding-top: 30px;
}
.b03_btn a {
  display: inline-block;
  text-decoration: none;
  background: #004aad;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px 40px;
  transition: all 0.3s;
}
.b03_btn a:hover {
  background: var(--red);
}
.b03_ttl {
  font-size: 36px;
  color: var(--blue-dark);
  font-weight: 700;
  line-height: 1.3em;
}
.box04 {
  padding: 80px 0;
}
.box04 .idx_h2 .lager {
  color: var(--blue-dark);
  margin-bottom: 60px;
}
.b04_list {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.b04_item {
  width: calc(25% - 22.5px);
  padding: 0 30px;
}
.b04_itm_img img {
  width: 110px;
}
.b04_itm_ttl {
  font-size: 24px;
  color: var(--blue);
  font-weight: 600;
  line-height: 1.5em;
  margin: 0 0 20px;
}
.b04_item:nth-child(2) .b04_itm_ttl {
  color: var(--scolor);
}
.b04_item:nth-child(3) .b04_itm_ttl {
  color: var(--mcolor);
}
.b04_item:nth-child(4) .b04_itm_ttl {
  color: var(--red);
}
.b05_main {
  background: var(--mcolor);
  border-radius: 50px;
  padding: 60px 80px;
  color: #fff;
}
.b05_main .idx_h2, .b05_main .idx_h2 .lager {
  color: #fff;
}
.b05_main .idx_h2 {
  max-width: 700px;
  position: relative;
  z-index: 5;
  background: url("/assets/images/b05_icon.png") no-repeat left 25px center/190px auto;
}
.b05_list.slick-initialized .slick-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  text-align: center;
}
.b05_itm_txt {
  width: 700px;
  text-align: center;
  font-size: 18px;
  line-height: 1.3em;
}
.b05_itm_img {
  margin: 0;
  width: 400px;
}
.b05_itm_img .img {
  display: block;
  width: 186px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  padding: 10px;
  margin: 0 auto 15px;
}
.b05_itm_img img {
  border-radius: 50%;
}
.b05_itm_img .ttl {
  font-size: 112.5%;
  font-weight: 700;
}
.b05_itm_img .name {
  display: block;
  font-weight: 400;
  font-style: italic;
  font-size: 88.89%;
}
.b05_list .slick-arrow {
  position: absolute;
  bottom: -55px;
  z-index: 5;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-indent: -50000px;
  background-image: url("/assets/images/b05_next.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 14px auto;
}
.b05_list .slick-next {
  left: 360px;
}
.b05_list .slick-prev {
  left: 290px;
  background-image: url("/assets/images/b05_prev.png");
}
.b05_list .slick-arrow:hover {
  background-color: var(--blue);
}
.b05_list {
  margin-top: -20px;/**/
}
.box06 {
  padding: 80px 0;
}
.box06 .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.box06 .idx_h2 {
  margin: 0 100px 0 0;
}
.b06_form {
  width: 615px;
  border: 1px solid #ebebeb;
  border-radius: 80px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.b06_form button {
  width: 98px;
  background: var(--blue);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s;
}
.b06_form button:hover {
  background: var(--red);
}
.b06_form input {
  width: 100%;
  border: none;
  padding: 0 60px;
  font-style: italic;
}
#footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 80px;
}
#footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.f_mod {
  width: calc(25% - 22.5px);
}

.f_mod:nth-child(1) {
  width: calc(41% - 22.5px);
}
.f_mod_contact p{
	margin-bottom: 10px;
	
}
.f_add {
  color: var(--green);
  font-weight: 700;
  background: url("/assets/images/icon_add.png") no-repeat left center/16px auto;
  padding-left: 25px;
}
.f_add .lager {
  font-size: 150%;
}
.f_tel {
  margin: 0;
  font-weight: 700;
}
.f_tel .txt {
  text-decoration: underline;
}
.f_tel .num {
  color: var(--scolor);
  font-size: 125%;
}
.f_mail a {
  color: var(--txt);
}
.f_ttl {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--mcolor);
  margin: 0 0 18px;
}
.f_menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 130px;
}
.f_menu li a {
  text-decoration: none;
  color: var(--txt);
  font-size: 14px;
  transition: all 0.3s;
  position: relative;
  padding-left: 15px;
}
.f_menu li a:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: #333;
  border-radius: 50%;
  left: 0;
  top: 7px;
}
.f_menu li {
  margin: 0 0 10px;
}
.f_menu li a:hover {
  color: var(--scolor);
}
.f_link a {
  color: var(--txt);
  text-decoration: none;
  transition: all 0.3s;
}
.f_link {
  text-align: center;
  line-height: 2.5em;
  font-size: 14px;
}
.f_link .lager {
  font-size: 171.43%;
}
.f_link .medium {
  font-size: 142.86%;
}
.f_link .mbold {
  font-size: 121.43%;
  font-weight: 700;
}
.f_link a:hover {
  color: var(--scolor);
}
.f_item:not(:last-child) {
  margin: 0 0 20px;
}
.f_item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--scolor);
  background: #f4f4f4;
  transition: all 0.3s;
}
.f_itm_img {
  margin: 0 20px 0 0;
  flex-shrink: 0;
  width: 100px;
}
.f_itm_ttl {
  margin-right: 20px;
  font-size: 13px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.f_item a:hover {
  opacity: 0.7;
}
.f_social {
  display: flex;
  justify-content: center;
}
.f_social a {
  margin: 0 5px;
  width: 40px;
}
#footer01{
	padding: 15px 0;
    background: var(--blue);
}
.copyright, .copyright a{
	color: #ffff;text-align:center;
	
}
@media screen and (max-width: 1400px) {
  .gnavi > li > a {
    padding: 18px 6px;
  }
}
@media screen and (max-width: 1280px) {
  .submenu_col{width: 1000px;}
}
@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;
  }
  #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: 10;
    background: var(--blue);
    margin-left: 10px;
  }
  .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: 48px;
    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%;
    line-height: 0;
  }
	#header.fixed .h_main {
    display: block;
}
 
  .h_right{display:none;}
  .h_mb_right{
	  
	  display: flex;
    align-items: center;
  }
  .logo{width:55px;}
  .h_main {
    padding: 0;
  }
  .h_right {
    width: 100%;
    order: -1;
    background: #f0f0f0;
    justify-content: space-between;
    padding: 10px 3%;
  }
	#header.fixed .h_right {
    display: none;
}
	#header.fixed {box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
	}
	#header.fixed #gnavi {
		top: 78px;
		height: calc(100% - 78px);
	}
  .h_tel {
    margin: 0;
    font-size: 12px;
  }
  .h_tel .num {
    font-size: 14px;
  }
  .h_search_ttl {
    background: var(--mcolor);
    text-align: center;
    display: inline-block;
    line-height: 0;
    padding: 6px;
    border-radius: 5px;
    margin: 0;
  }
  .h_search_main {
    margin: 0 10px -3px auto;
  }
  .h_search_form {
    margin: 0;
    position: absolute;
    z-index: 20;
    background: #fff;
    width: 100%;
    right: 0;
    top: 60px;
    padding: 15px 3%;
    display: none;
  }
  .h_search {
    width: 100%;
  }
  .h_left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
  }
  #gnavi {
    position: fixed;
    width: 100%;
    left: 0;
    top: 65px;
    height: calc(100% - 65px);
    overflow: auto;
    display: none;
  }
  .gnavi {
    display: block;
    padding: 30px 0;
  }
  .gnavi > li > a {
    text-align: left;
    border-bottom: 1px solid #fff;
    padding: 13px 20px;
    color: #fff !important;
  }
  .gnavi > li.active, .gnavi > li:hover {
    background: none;
  }
  .gnavi > li.lager {
    position: relative;
  }
  .submenu {
    position: relative;
    padding: 20px;
  }
  .submenu_col {
    width: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .submenu_col_item {
    width: 48%;
    margin: 15px 0;
  }
  .submenu_col_item:not(:last-child) {
    margin-right: 0;
  }
  .submenu_col_ttl {
    margin: 0 0 15px;
    padding: 0 0 5px;
  }
  .submenu a {
    white-space: initial;
    display: block;
  }
  .main_slide {
    padding-top: 65px;
  }
  /*.main_slide_item .container {
    padding: 0 1%;
  }
  .main_slide_itm_img {
    margin: -3vw 0 0;
    width: 23%;
  }
  .main_slide_itm_img:last-child {
    margin: 0 0 -3vw;
  }
  .main_slide.slick-initialized .slick-slide {
    height: auto;
    padding: 6vw 0;
  }
  .main_slide_itm_ttl {
    font-size: 4vw;
    margin: 0 0 2vw;
  }
  .main_slide_itm_txt {
    font-size: 2.5vw;
    margin: 0 0 3vw;
  }
  .main_slide_itm_btn a {
    padding: 1.5vw 4vw;
    margin: 0 1vw;
    font-size: 2.5vw;
  }
  .main_slide_itm_main {
    margin: 0 -3vw;
  }*/
  .box01 {
    padding: 50px 0;
  }
  .box01 .container {
    display: block;
  }
  .b01_left {
    width: 100%;
    text-align: center;
    margin: 0 0 30px;
  }
  .box01 .idx_h2 {
    text-align: center;
  }
  .idx_h2 {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .idx_h2 .lager {
    font-size: 150%;
  }
  .b01_txt p {
    font-size: 14px;
  }
  .b01_right {
    width: 100%;
  }
  .box02 {
    padding: 50px 0;
  }
  .b01_itm_txt {
    padding: 20px;
  }
  .b01_list {
    margin: 0 0 25px;
  }
  .b02_list {
    display: block;
  }
  .b02_item {
    width: 100%;
    margin: 0 0 20px;
  }
  .b02_item a {
    display: flex;
  }
  .b02_itm_img {
    flex-shrink: 0;
    width: 40%;
  }
  .b02_itm_img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-width: none;
  }
  .b02_itm_main {
    padding: 20px;
  }
  .b02_itm_date {
    margin: 0 0 10px;
  }
  .b02_item:last-child {
    margin-bottom: 0;
  }
  .box03 .container {
    display: block;
  }
  .b03_main {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .b03_btn a {
    font-size: 14px;
    padding: 10px 30px;
  }
  .b03_ttl {
    font-size: 26px;
  }
  .box04 {
    padding: 50px 0;
  }
  .b04_list {
    display: block;
  }
  .b04_item {
    width: 100%;
    margin: 0 0 30px;
    overflow: hidden;
    padding: 0;
    text-align: left;
  }
  .b04_itm_img {
    float: left;
    margin: 0 20px 0 0;
    width: 80px;
  }
  .b04_itm_ttl {
    font-size: 18px;
    margin: 0 0 5px;
  }
  .b04_item:last-child {
    margin-bottom: 0;
  }
  .b04_itm_txt {
    overflow: hidden;
  }
  .b05_main {
    padding: 40px 3%;
    border-radius: 30px;
  }
  .b05_list {
    margin-top: 0;
  }
  .b05_list.slick-initialized .slick-slide {
    display: block;
    padding-bottom: 60px;
  }
  .b05_itm_img {
    margin: 0 auto 20px;
    width: 100%;
  }
  .b05_itm_img .img {
    width: 130px;
    padding: 7px;
  }
  .b05_itm_txt {
    width: 100%;
    font-size: 14px;
  }
  .b05_list .slick-arrow {
    width: 40px;
    height: 40px;    bottom: 0;
  }
  .b05_list .slick-next {
    left: calc(50% + 10px);
  }
  .b05_list .slick-prev {
    right: calc(50% + 10px);
    left: auto;
  }
  .box06 {
    padding: 40px 0;
  }
  .box06 .container {
    display: block;
  }
  .box06 .idx_h2 {
    margin: 0 0 25px;
  }
  .b06_form {
    width: 100%;
    height: 60px;
  }
  .b06_form button {
    width: 70px;
  }
  .b06_form input {
    padding: 0 30px;
  }
  #footer {
    padding-top: 40px;
  }
  #footer .container {
    display: block;
  }
  .f_mod, .f_mod:nth-child(1) {
    width: 100%;
    margin: 0 0 10px;
    background: #f9f9f9;
    padding: 30px 15px;
  }
  .f_ttl {
    font-size: 18px;
    margin: 0 0 15px;
  }
  .f_mod:last-child {
    margin: 0;
  }
  .f_social {
    margin: 40px 0 0;
    padding: 15px 0;
  }
  .f_social a {
    margin: 0 10px;
  }
  .f_link {
    font-size: 12px;
    line-height: 2em;
  }
}
@media screen and (max-width: 440px) {
  .submenu_col_item {
    width: 100%;
    margin: 0 0 30px;
  }
  .submenu_col_item:last-child {
    margin-bottom: 0;
  }
  .f_menu {
    height: auto;
    display: block;
  }
  .f_menu li:last-child {
    margin-bottom: 0;
  }
  .f_itm_ttl {
    font-size: 12px;
  }
  .idx_h2 .lager {
    font-size: 130%;
  }
  .b03_ttl {
    font-size: 18px;
  }
  .b01_list {
    display: block;
  }
  .b01_item {
    width: 100%;
    margin: 0 0 20px;
  }
  .b01_item:last-child {
    margin-bottom: 0;
  }
  .b02_itm_txt {
    display: none;
  }
  .b02_itm_ttl {
    margin: 0;
  }
}