﻿@charset "UTF-8";
@import "base.css";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,300;0,400;1,300;1,400&family=Nunito:wght@300;400;600;700&display=swap');
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 18px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: #fe7e39;
}
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: 20px;
    z-index: 10;
    margin-bottom: 0;
    width: 80px;
    text-align: center;
}
#totop a {
  display: block;
  transition: all 0.5s;
	margin: 20px 0 0;
}
#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                                     */
/*==========================================================================*/
h1{display:none;}
body {
  color: #000000;
  font-family: 'Nunito', sans-serif;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
.h_top {
	background: #104cba;
	color: #fff;
	padding: 10px 0;
}
.h_top .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.h_com {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
}
.h_tel {
	margin: 0 auto 0 70px;
	font-size: 16px;
	font-weight: 300;
	font-style: italic;
}
.h_search {
	position: relative;
	border-right: 1px solid #fff;
	padding-right: 15px;
	margin-right: 15px;
}
.h_search_ttl {
	margin: 0;
	cursor: pointer;
	line-height: 0;
}
.h_search_form {
	position: absolute;
	right: -50px;
	top: 30px;
	background: #f0f0f0;
	padding: 5px;
	width: 250px;
	z-index: 5;
	display: none;
}
.h_search_form input {
	width: 100%;
	font-size: 14px;
	padding: 10px 20px;
	border: none;
	background: #fff;
}
.h_search_form .button {
    text-decoration:none;
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 14px;
    background: #234dbd;
    border: none;
    color: #fff;
    padding: 10px 5px;
    cursor: pointer;
}
.h_lang {
	margin: 0;
	line-height: 0;
	display: flex;
}
.h_lang a:not(:last-child) {
	margin-right: 10px;
}
.h_main {
	padding: 17px 0;
	background: #fff;
}
.h_main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
	margin: 0;
}
.gnavi {
	display: flex;
}
.gnavi>li>a {
	font-size: 16px;
	display: block;
	text-decoration: none;
	color: #000;
	transition: all 0.3s;
	font-weight: 700;
	padding: 5px;
}
.gnavi>li {
	position: relative;
}
.gnavi>li:not(:last-child) {
	margin-right: 20px;
}
.gnavi>li:hover>a, .gnavi>li.active>a {
	color: #fe7e39;
}
.submenu {
	position: absolute;
	z-index: 5;
	min-width: 250px;
	left: 50%;
	transform: translateX(-50%);
	display: none;
}
.submenu a {
	display: block;
	text-decoration: none;
	background: #fe7e39;
	text-align: center;
	color: #fff;
	padding: 10px 15px;
	margin-top: 1px;
	font-size: 90%;
	transition: all 0.3s;
}
.submenu a:hover {
	background: #104cba;
}
.subover{
	position: relative;
}
.subsubmenu{
    position: absolute;
    right: -190px;
    top: -1px;
    width: 100%;
    padding-left: 62px;
	display: none;
}
.h_right {
	display: flex;
	align-items: center;
}
#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: 120px;
}
#header.fixed .h_main {
	padding: 8px 0;
}
#header.fixed .h_top {
	padding: 5px 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);
  }
}
.main_slide p {
	margin: 0;
}
.main_slide img {
	width: 100%;
}
.main_slide:after {
	content: '';
	position: absolute;
	width: 100%;
	background: url("/assets/images/slide_bg.png") no-repeat bottom center/100% auto;
	height: 176px;
	bottom: -1px;
	z-index: 4;
	pointer-events: none;
}
.box01 {
	padding: 80px 0;
}
.box01 .container {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
}
.b01_img {
	margin: 0;
}
.b01_main {
	width: calc(50% + 30px);
	margin-left: 60px;
}
.idx_h2 {
    color: #fe721d;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 37px;
    position: relative;
    text-align: center;
    padding: 0 0 7px;
}
.idx_h2 .lager {
	display: block;
	color: #104cba;
	font-size: 200%;
	text-transform: uppercase;
	line-height: 1.5em;
	font-weight: 700;
	margin-top: 10px;
}
.idx_h2:after {
	content: '';
	position: absolute;
	width: 100px;
	height: 2px;
	background: #fe7e39;
	left: calc(50% - 50px);
	bottom: 0;
}
.box01 .idx_h2 {
	text-align: left;
}
.box01 .idx_h2:after {
	left: 0;
}
.b01_list li {
	position: relative;
	padding-left: 25px;
	margin: 0 0 10px;
}
.b01_list li:before {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	border: 2px solid #f47e38;
	left: 0;
	top: 2px;
	border-radius: 50%;
}
.idx_btn {
	text-align: center;
	margin: 0;
}
.idx_btn a {
	display: inline-block;
	background: #104cba;
	width: 180px;
	font-size: 16px;
	text-transform: uppercase;
	text-align: center;
	border-radius: 9999px;
	transition: all 0.3s;
	color: #fff;
	text-decoration: none;
	padding: 12px 10px 11px;
}
.idx_btn a:hover {
	background: #fe721d;
}
.box01 .idx_btn {
	text-align: left;
}
.b01_txt {
    margin: 0 0 45px;
}
.box02 {
	background: #e9e9e9;
	padding: 80px 0;
}
.b02_img {
    margin: 0;
    text-align: center;
}
.box03 {
	padding: 80px 0;
}
.b03_list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.b03_item {
	width: calc(25% - 30px);
	margin: 0 40px 40px 0;
}
.b03_item:nth-child(4n) {
	margin-right: 0;
}
.b03_item a {
	display: block;
	text-decoration: none;
	background: #fff;
	height: 100%;
	box-shadow: 0px 0px 21px 0px rgba(69,69,69,0.2);
	font-size: 16px;
	color: #104cba;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	padding: 20px;
	transition: all 0.3s;
}
.b03_itm_img {
	margin: 0 0 20px;
}
.b03_itm_ttl {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 700;
}
.b03_itm_more {
    margin: 10px 0 0;
    font-size: 14px;
    color: #ff0000;
    font-style: italic;
    text-decoration: underline;
}
.b03_item a:hover {
	transform: translateY(-10px);
}
.box04 {
	background: url("/assets/images/b04_bg.jpg") no-repeat top center #104cba;
	color: #fff;
	padding: 80px 0;
}
.box04 .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.b04_main {
    width: 50%;
}
.b04_img {
	margin: 0;
	width: 50%;
	padding-left: 60px;
	text-align: right;
}
.b04_img img {
	border-radius: 10px;
}
.box04 .idx_h2 {
	text-align: left;margin-bottom: 60px;
}
.box04 .idx_h2:after {
	left: 0;
}
.box04 .idx_h2 .lager {
	color: #fff;
}
.b04_item {
    display: flex;
	margin-bottom: 40px;
}
.b04_item:last-child {
	margin-bottom: 0;
}
.b04_itm_img {
    flex-shrink: 0;
    margin: 0 30px 0 0;
}
.b04_itm_ttl {
    font-size: 20px;
    color: #fe7e39;
    line-height: 1.5em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 10px;
}
.b04_itm_txt {
    margin: 0;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.box05 {
	background: #e9e9e9;
	padding: 60px 0;
	text-align: center;
}
.b05_list {
    display: flex;
    justify-content: space-between;
}
.b05_list li {
	width: 33.33%;
	text-transform: uppercase;
	font-weight: 700
}
.b05_list .num {
    display: block;
    color: #104cba;
    font-size: 266.67%;
    line-height: 1.5em;
}
.box06 {
	padding: 80px 0;
}
.b06_list {
	display: flex;
	margin-bottom: 50px;
}
.b06_item {
	width: calc(33.33% - 30px);
	margin: 0 45px 0 0;
}
.b06_item:last-child {
	margin-right: 0;
}
.b06_item a {
	background: #f5f5f5;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s;
	display: block;
	height: 100%;
	color: #000;
	text-decoration: none;
}
.b06_item a:hover {
	transform: translateY(-10px);
}
.b06_itm_img {
    margin: 0;
    position: relative;
}
.b06_itm_img img {
	width: 100%;
}
.b06_itm_img .date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: url("/assets/images/b06_calendar.png") no-repeat left 5px center #104cba;
    color: #fff;
    font-size: 16px;
    padding: 3px 10px 1px 30px;
}
.b06_itm_main {
    padding: 30px;
}
.b06_itm_ttl {
    color: #104cba;
    line-height: 1.3em;
    font-weight: bold;
    margin: 0 0 15px;
}
.b06_itm_txt {
    margin: 0;
    font-size: 16px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.box07 {
	background: url("/assets/images/b07_img.png") no-repeat top center #ffece2;
	padding: 80px 0;
}
.b07_main {
    width: 50%;
}
.b07_h2 {
    font-size: 36px;
    color: #104cba;
    line-height: 1.5em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 15px;
}
.b07_txt {
    font-style: italic;
}
.b07_form input, .b07_form textarea {
    width: 100%;
    border: none;
    font-size: 16px;
    color: #000;
    padding: 12px 20px;
    margin: 0 0 10px;
	box-shadow: 0px 0px 21px 0px rgba(69,69,69,0.2);
}
::-webkit-input-placeholder {
  color: #000;
}
::-moz-placeholder {
  color: #000;
}
:-ms-input-placeholder {
  color: #000;
}
:-moz-placeholder {
  color: #000;
}
.b07_form textarea {
	height: 100px;
	margin-bottom: 40px;
}
.b07_form button {
	display: block;
	margin: 0 auto;
	width: 180px;
	background: #104cba;
	border: none;
	text-align: center;
	padding: 15px 20px 13px;
	text-transform: uppercase;
	color: #fff;
	border-radius: 9999px;
	cursor: pointer;
	transition: all 0.3s;
}
.b07_form button:hover {
	background: #fe7e39;
}
#footer {
	background: url("/assets/images/f_bg.jpg") no-repeat top center/cover;
	padding: 80px 0 0;
	color: #fff;
}
.f_main {
    display: flex;
    justify-content: space-between;
}
.f_mod:nth-child(1),.f_mod:nth-child(3) {
    width: 40%;
}
.f_logo {
    text-align: center;
    margin: 0 0 10px;
}
.f_comname {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
	margin-bottom: 15px;
}
.f_txt {
    margin: 0;
    font-size: 16px;
    text-align: justify;
}
.f_ttl {
    color: #005aff;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 15px;
}
.f_link li {
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    margin: 0 0 5px;
}
.f_link li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fe7e39;
    border-radius: 50%;
    left: 0;
    top: 9px;
}
.f_link a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
}
.f_link a:hover {
	text-decoration: underline;
}
.f_info li {
    font-size: 16px;
    line-height: 1.3em;
    margin: 0 0 10px;
	background: url("/assets/images/f_add.png") no-repeat left 3px;
	padding-left: 28px;
}
.f_info li:nth-child(2) {
	background-image: url("/assets/images/f_tel.png");
}
.f_info li:nth-child(3) {
	background-image: url("/assets/images/f_mail.png");
}
.f_info li:nth-child(4) {
	background-image: url("/assets/images/f_web.png");
}
.f_info li a {
	color: #fff;
	text-decoration: none;
}
.f_social {
	margin: 40px 0 0;
	font-size: 14px;
	font-style: italic;
	display: flex;
	align-items: center;
}
.f_social a {
    line-height: 0;
    margin-left: 10px;
}
.copyright {
    margin: 30px 0 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid;
    padding: 20px 0;
}
.copyright a {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 1400px) {
  .container {
    padding: 0 3%;
  }
}
@media screen and (max-width: 1300px) {
	.gnavi>li:not(:last-child) {
    margin-right: 20px;
}
  .gnavi>li>a{font-size: 15px;}
}
@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: 62px;
  }
  #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: #104cba;
    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, .gnv-ico-subsubmenu{
    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 ,.gnv-ico-subsubmenu: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,.gnavi li.active > .gnv-ico-subsubmenu:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
	.h_top {
		display: none;
	}
	#header {
		position: fixed;
		width: 100%;
		background: #fff;
		top: 0;
		left: 0;
		z-index: 999;
	}
#gnavi {
    position: fixed;
    top: 62px;
    left: 0;
    background: rgb(16 76 186 / 90%);
    width: 100%;
    height: calc(100% - 62px);
    overflow: auto;
    padding: 40px 0;
	display: none;
}
.h_right {
    flex-direction: column-reverse;
}
.h_search {
    border: none;
    padding: 0;
    margin: 20px 0;
    width: 100%;
}
.h_search_form {
    position: relative;
    right: 0;
    top: 0;
    display: block!important;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}
.h_search_ttl {
    display: none;
}
.gnavi {
    display: block;
	padding: 0 3%;
}
.gnavi>li>a {
    color: #fff;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    padding: 13px 20px;
    background: rgb(255 255 255 / 10%);
}
.gnavi>li:not(:last-child) {
    margin-right: 0;
}
.gnavi>li:hover>a, .gnavi>li.active>a {
    color: #fff;
}
.submenu {
    position: relative;
}
.submenu a {
    text-align: left;
    padding: 13px 20px;
    margin: 0;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
}
.subsubmenu {
	position: unset;
	padding:0;
}
.subsubmenu li a{
	background: #f19361;
}
.logo {
    width: 100px;
}
.h_main {
    padding: 8px 0;
}
.box01 {
    padding: 30px 0 50px;
}
.box01 .container {
    display: block;
}
.b01_main {
    width: 100%;
    margin: 0 0 40px;
}
.idx_h2 {
    text-align: center!important;
	margin-bottom: 25px;
}
.idx_h2:after {
    width: 60px;
    left: calc(50% - 30px)!important;
}
.b01_list li:before {
    width: 14px;
    height: 14px;
    top: 3px;
}
.b01_txt {
    margin: 0 0 25px;
}
.box01 .idx_btn {
    text-align: center;
}
.idx_btn a {
    font-size: 14px;
    padding: 10px;
}
.b01_img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}
.box02 {
    padding: 50px 0;
}
.idx_h2 .lager {
    font-size: 160%;
}
.box03 {
    padding: 50px 0;
}
.b03_item:nth-child(n+5) {
    display: none;
}
.b03_item {
    width: 48%;
    margin: 0 4% 30px 0;
}
.b03_item:nth-child(2n) {
	margin-right: 0;
}
.b03_item a {
    padding: 20px 3%;
}
.b03_itm_ttl {
    font-size: 14px;
}
.box04 {
    padding: 50px 0;
}
.box04 .container {
    display: block;
}
.b04_main {
    width: 100%;
    margin: 0 0 40px;
}
.box04 .idx_h2 {
    margin-bottom: 30px;
}
.b04_itm_img {
    width: 60px;
    margin-right: 20px;
}
.b04_itm_ttl {
    font-size: 16px;
    margin: 0 0 5px;
}
.b04_itm_txt {
    font-size: 14px;
}

.b04_item {
    margin-bottom: 25px;
}
.b04_img {
    padding: 0;
    width: 100%;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}
.box05 {
    padding: 30px 0;
}
.b05_list .num {
    font-size: 180%;
}
.box06 {
    padding: 50px 0;
}
.b06_list {
    display: block;
    margin-bottom: 40px;
}
.b06_item {
    width: 100%;
    margin: 0 0 30px;
}
.b06_item a {
    display: flex;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
}
.b06_itm_img {
    flex-shrink: 0;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.b06_itm_img img {
    height: 100%;
    object-fit: cover;
}
.b06_itm_img .date {
    font-size: 14px;
    background-size: 15px auto;
    padding-left: 25px;
}
.b06_itm_main {
    padding: 20px;
    width: 100%;
}
.b06_itm_ttl {
    font-size: 16px;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.b06_itm_txt {
    font-size: 14px;
    -webkit-line-clamp: 3;
}
.box07 {
    background: #ffece2;
    padding: 50px 0;
}
.b07_main {
    width: 100%;
}
.b07_h2 {
    text-align: center;
    font-size: 26px;
}
.b07_txt {
    text-align: center;
}
.b07_form input, .b07_form textarea {
    font-size: 14px;
    padding: 12px 15px;
}
.b07_form textarea {
    margin-bottom: 25px;
}
.b07_form button {
    font-size: 14px;
    padding: 12px;
}
#footer {
    padding: 50px 0 0;
}
.f_main {
    display: block;
}
.f_mod:nth-child(1), .f_mod:nth-child(3) {
    width: 100%;
}
	.f_mod:not(:last-child) {
		margin-bottom: 30px;
	}
.f_txt {
    font-size: 14px;
}
.f_link li {
    font-size: 14px;
}
.f_link li:before {
    top: 7px;
}
.f_info li {
    font-size: 14px;
    background-position: left top;
}
.f_social {
    margin: 30px 0 0;
}
.copyright {
    font-size: 12px;
}
#totop a {
    margin: 10px 0 0;
}
}