﻿@charset "UTF-8";
@import "base.css";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
:root {
    --mcolor: #0d1345;
    --scolor: #0e1849;
    --txt: #666666;
    --blue: #04acea;
    --f-main: 'Lato', sans-serif;
}

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: 2em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 80px;
}
#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;
}
.df-n{
	display:none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: var(--txt);
  font-family: var(--f-main);
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
	padding-top: 129px;
}
.container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
#header {
	background: #fff;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	padding: 12px 0;
}
h1 {
	display: none;
}
#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    margin: 0;
}
.h_top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
	align-items: center;
}
.h_top li a {
	color: #000;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.h_top li .icon {
    width: 27px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffffff;
    border-radius: 50%;
    font-size: 112.5%;
    margin-right: 5px;
}
.h_top li:not(:last-child) {
	margin-right: 20px;
}
.h_top .h_top_1 a {
    
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid #E9EAEC;
    transition: all 0.3s;
}
.h_top li:nth-child(1) a:hover {
	background: #fff;
}
.h_lang{
	display:flex;
}
.gnavi {
	display: flex;
	justify-content: flex-end;
}
.gnavi>li {
	position: relative;
	padding: 0 10px;
}
.submenu {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 15px;
	display: none;
}
.gnavi>li>a {
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    font-weight: 700;
    padding: 5px;
	align-items: center;
}
.gnavi>li.over>a:after {
	content: '';
	position: relative;
	display: inline-block;
	width: 0;
height: 0;
border-style: solid;
border-width: 5px 5px 0 5px;
border-color: var(--mcolor) transparent transparent transparent;
	margin-left: 5px;
}
.submenu a {
	display: block;
	text-decoration: none;
	color: var(--txt);
	background: #fff;
	font-size: 87.5%;
	padding: 12px 20px;
	transition: all 0.3s;
	white-space: nowrap;
}
.submenu a:hover {
	background: #eee;
	color: var(--scolor);
}
.slick-arrow {
    position: absolute;
    z-index: 3;
    font-size: 26px;
    width: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
	color: hsla(0,0%,93.3%,.9);
	transition: all 0.3s;
}
.prev {
	left: 3%;
}
.next {
	right: 3%;
}
.mainvisual {
    position: relative;
}
.slick-arrow:hover {
	opacity: 0.8;
}
.main_slide.slick-initialized .slick-slide {
	margin: 0;
	position: relative;
}
.main_slide.slick-initialized .slick-slide .img {
	/*height: 87vh;*/
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	margin: 0;
}
.main_slide.slick-initialized .slick-slide .img img {
	flex-shrink: 0;
	/*object-fit: cover;*/
	width: 100%;
	height: 100%;
}
.main_info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 3;
}
.main_item_ttl {
    font-size: 3em;
    font-weight: 600;
    color: var(--scolor);
    margin: 0 0 15px;
    text-shadow: 0px 10px 15px white;
	transition: all 0.7s;
	opacity: 0;
	transform: translateY(30px);
	transition-delay: 0.5s;
	white-space: nowrap;
}
.main_item_btn {
    margin: 0;
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px 25px;
    font-weight: 500;
	transition: all 0.7s;
	opacity: 0;
	transform: translateY(30px);
	transition-delay: 0.7s;
}
.main_slide.slick-initialized .slick-slide.slick-current .main_info >* {
	transform: translateY(0);
	opacity: 1;
}
.box01 {
	background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFFC4 0%, #DFDFDF80 100%);
	padding: 60px 0 50px;
}
.idx_h2 {
    text-align: center;
    font-weight: 600;
   color: #404040;
    font-size: 2em;
    margin: 0 0 50px;
}
.b01_txt {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}
.b01_txt_lager {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--blue);
}
.idx_btn {
	margin: 0;
	text-align: center;
}
.idx_btn a {
    display: inline-block;
    text-decoration: none;
    background: var(--scolor);
    color: #fff;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}
.idx_btn a:hover {
	background: var(--mcolor);
}
.b01_main {
    margin-top: 80px;
}
.idx_h2.h2_icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.idx_h2.h2_icon:before {
	content: '';
	position: relative;
	display: inline-block;
	background: url("../W_images/idx_h2_icon.png") no-repeat center center/100% auto;
	width: 32px;
	height: 32px;
	margin-right: 30px;
}
.b01_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.box02 .idx_h2 {
    font-size: 24px;
    margin: 0 0 30px;
}
.box02 {
	padding: 60px 0;
}
.b02_main {
	width: 1200px;
    max-width: 70%;
    margin: 0 auto;
    position: relative;
}
.b02_list.slick-initialized .slick-slide a {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.b02_list.slick-initialized .slick-slide img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.b02_play {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 6rem;
    opacity: 0.8;
    color: #fff;
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.3));
    cursor: pointer;
}
.b03_main {
    display: flex;
    justify-content: space-between;
	align-items: center;
}
.b03_main{

}
.b03_img {
    width: calc(50% - 30px);
}
.b03_img img{
	width:100%;
	height:100%;
	object-fit: cover;
}
.b03_main_info {
    width: 50%;
    border: 1px solid var(--scolor);
    background: #FFDFA86B;
    border-radius: 10px;
    padding: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.21);
}
.b03_main_info_img {
    text-align: center;
    margin: 0;
}
.b03_main_info_txt p {
    margin: 0;
}
.b03_main_info_txt {
    margin: 0 0 20px;
}
.b03_main_info_txt ul li {
    position: relative;
	display: flex;
	align-items: flex-start;
}
.b03_main_info_txt ul {
	padding-left: 50px;
}
.b03_main_info_txt ul li .icon {
    color: var(--scolor);
    margin-right: 20px;
}
.b03_img.slick-initialized .slick-slide, .b04_img.slick-initialized .slick-slide {
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.b03_img.slick-initialized .slick-slide img, .b04_img.slick-initialized .slick-slide img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.slick-dots {
    display: flex;
    margin-top: 20px;
    justify-content: center;
}
.slick-dots li button {
    width: 10px;
    height: 10px;
    background: #000;
    opacity: 0.2;
    border-radius: 50%;
    border: none;
    text-indent: -50000000px;
    transition: all 0.3s;
	cursor: pointer;
}
.slick-dots li {
	margin: 0 5px;
}
.slick-dots li.slick-active button {
	background: var(--scolor);
	opacity: 1;
}
.box03 {
	padding-top: 60px;
}
.box03:nth-child(2n) .b03_main {
	flex-direction: row-reverse;
}
.box04 .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.b04_info {
    width: calc(50% - 10px);
    border: 1px solid var(--scolor);
    background: #FFDFA86B;
    border-radius: 10px;
    padding: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.21);
}
.b04_main {
    width: calc(50% - 10px);
}
.b04_h2 {
	
    text-transform: uppercase;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 50px;
}
.b05_main {
    position: relative;
    z-index: 2;
	padding: 40px 0;
}
.b05_main:after {
    content: '';
    position: absolute;
    width: 100vw;
    min-width: 100%;
    height: 100%;
    background: #f0f0f0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
    pointer-events: none;
}
.b05_list.slick-initialized .slick-slide {
	margin: 0 20px;
}
.b05_itm_img {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
}
.b05_itm_txt {
	position: relative;
	line-height: 1.75em;
}
.b05_itm_txt .icon {
    display: block;
    text-align: center;
    font-size: 35px;
    color: var(--scolor);
    margin-bottom: 30px;
}
.b05_itm_name {
    margin: 0;
    text-align: center;
    font-size: 14px;
    color: #b0b0b0;
}
.b05_itm_name .lager {
    display: block;
    font-size: 150%;
    color: var(--mcolor);
}
.b05_list .slick-dots {
	align-items: center;
}
.b05_list .slick-dots li button {
    text-indent: 0;
    background: transparent;
    color: var(--mcolor);
    opacity: 1;
    font-size: 14px;
    font-weight: 600;
    width: 24px;
	height: 24px;
}
.b05_list .slick-dots li.slick-active button {
	font-size: 120%;
	color: var(--scolor);
}
.slick-dots li {
    margin: 0 5px;
    line-height: 0;
}
.box05{
	padding-top: 60px;
}
.box05 .main_arr {
    width: 600px;
    margin: 0 auto;
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
	z-index: 3;
}
.box05 .slick-arrow {
    top: auto;
    transform: none;
    bottom: 0;
    color: var(--mcolor);
	z-index: 3;
}
.box05 .slick-arrow:hover {
	width: 50px;
	color: var(--scolor);
}
.box05 .prev:after {
	content: '';
	position: relative;
	display: inline-block;
	width: 0;
	height: 3px;
	background: var(--scolor);
	transition: all 0.3s;
	margin-left: -12px;
}
.box05 .prev:hover:after {
	width: 40px;
}
.box05 .next:before {
	content: '';
	position: relative;
	display: inline-block;
	width: 0;
	height: 3px;
	background: var(--scolor);
	transition: all 0.3s;
	margin-right: -12px;
}
.box05 .next:hover:before {
	width: 40px;
}
.box06 {
	background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFFC4 0%, #DFDFDF80 100%);
	padding: 60px 0 1px;
}
.b06_list {
    display: flex;
	margin-bottom: 70px;
}
.b06_item {
    width: calc(33.33% - 20px);
    margin: 0 30px 0 0;
}
.b06_item:last-child {
	margin-right: 0;
}
.b06_item a {
    display: block;
    background: #fff;
    height: 100%;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
    border-radius: 10px;
    overflow: hidden;
	text-decoration: none;
	transition: all 0.3s;
}
.b06_item a:hover {
    box-shadow: 0 0 15px 0 rgba(0,0,0,.25);
}
.b06_itm_ttl {
        color: #404040;
    line-height: 1.3em;
    padding: 0 20px;
    margin: 0 0 10px;
	 display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.b06_itm_more {
    padding: 0 20px;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.b06_itm_info {
    margin: 0;
    color: #adadad;
    border-top: 1px solid #eaeaea;
    padding: 10px 20px 10px;
    font-size: 12px;
}
.b06_itm_info .time {
	display: inline-block;
	margin-left: 10px;
}
.b06_itm_info .time:before {
	content: '';
	position: relative;
	display: inline-block;
	width: 5px;
	height: 5px;
	background: #adadad;
	border-radius: 50%;
	margin-right: 10px;
	top: -2px;
}
.b06_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.b06_item_img img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
.box07 {
	padding: 60px 0;
}
.b07_main {
    display: flex;
    justify-content: center;
	margin-bottom: 50px;
}
.b07_main_item {
    background: #FFDFA86B;
    border: 1px solid var(--scolor);
    border-radius: 10px;
    padding: 20px;
    width: calc(50% - 20px);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.21);
}
.b07_main_itm_img {
    height: 27vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
	margin-bottom: 15px;
}
.b07_main_itm_img img {
	flex-shrink: 0;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.b07_main_itm_ttl {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    color: #404040;
    margin: 0 0 10px;
}
.b07_main_itm_info li a {
	color: #404040;
    text-decoration: none;
    display: inline-flex;
    font-size: 13px;
    line-height: 1.8em;
    align-items: center;
}
.b07_main_itm_info li .icon {
	color: var(--mcolor);
    flex-shrink: 0;
    width: 27px;
    height: 27px;
    border: 1px solid;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
	font-size: 16px;
}
.b07_main_itm_info li:not(:last-child) {
	margin-bottom: 6px;
}
.b07_txt {
    text-align: center;
}
.b07_map {
    margin-top: 50px;
    height: 500px;
	width: 100%;
}
.b07_map iframe {
	width: 100%;
	height: 100%;
}
.footer_main {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    background: #eeeeee;
    border-top: 3px solid var(--mcolor);
    padding: 20px 0;
}
.footer_main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.f_mod:not(:last-child) {
	
}
.f_mod:nth-child(1) {
    width: 25%;
	margin-left: 75px;
}
.f_mod:nth-child(2) {
    width: 25%;
	margin-right: 50px;
	margin-top:30px;
}
.f_mod:nth-child(3) {
    width: 40%;
	margin-top:30px;
}
.f_ttl {
	color: #404040;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px;
}
.f_ttl a {
	text-decoration: none;color: #404040;
}
.f_social {
    display: flex;
    flex-wrap: wrap;
    max-width: 200px;
    margin: 0 auto 10px;
	    justify-content: center;
}
.f_social li {

    text-align: center;
	padding: 13px;
}
.f_mod .f_ttl {
	text-align: center;
}
.f_social li a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: 1px solid;
    border-radius: 50%;
    font-size: 20px;
}
.f_info li {
    margin: 0 0 8px;
	line-height: 1.3em;
}
.f_info li a {
	color: #404040;
	font-size: 14px;
	text-decoration: none;
    display: flex;
	align-items: center;
}
.f_info .icon {
	color: var(--mcolor);
    flex-shrink: 0;
    width: 27px;
    height: 27px;
    border: 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
}
.f_info .ttl {
	font-weight: 700;
}
.f_logo {
	color: #404040;
    text-align: center;
    margin: 0;
}
.f_txt {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px;
}
.f_txt a {color: #404040;
	text-decoration: none;
}
.footer_img {
    background: rgba(239,239,239,0.77);
    border-top: 1px solid rgba(204,204,204,0.84);
    padding: 20px 0;
}
.footer_img ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.copyright {
    margin: 0;
    text-align: center;
    padding: 5px 0;
    background: var(--mcolor);
    color: #fff;
    font-size: 14px;
}
.f_fixed {
    position: fixed;
    right: 0;
    bottom: 100px;
    z-index: 5;
}
.f_fixed li:not(:last-child) {
	margin-bottom: 50px;
}
.f_fixed a {

}
.hotline-phone-ring {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 100px;
  height: 110px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility .5s;
  left: 0;
  bottom: 0;
  display: block;
	margin: 0 auto 0 -35px;
}

.hotline-phone-ring-circle {
	width: 87px;
  height: 87px;
  top: 10px;
  left: 10px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid var(--scolor);
  -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
	width: 57px;
  height: 57px;
  top: 25px;
  left: 25px;
  position: absolute;
  background-color: var(--scolor);
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.hotline-phone-ring-img-circle {
	background-color: var(--scolor);
	width: 33px;
  height: 33px;
  top: 37px;
  left: 37px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotline-phone-ring-img-circle .pps-btn-img {
	display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.hotline-phone-ring-img-circle .pps-btn-img img {
	width: 20px;
	height: 20px;
}
.f_right {
    margin: 0;
    position: fixed;
    right: -5px;
    top: 45%;
    transform: translateY(-50%);
	z-index: 5;
}
@-webkit-keyframes phonering-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@-webkit-keyframes phonering-alo-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
}
@-webkit-keyframes phonering-alo-circle-img-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
@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: 115px;
  }
  #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;
  }
  .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: #0d134580;
    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: 50px;
    line-height: 0;
  }
	.h_top {
		display: none;
	}
#gnavi {
    position: fixed;
    width: 100%;
    left: 0;
    top: 83px;
    background: rgba(255,255,255,0.9);
    height: calc(100% - 83px);
	overflow: auto;
	display: none;
}
.logo {
    width: 150px;
}
.logo img{
	width:90px;
}
.h_right {
    position: fixed;
}
#header {
    padding: 10px 0;
}
.gnavi {
    display: block;
    padding: 30px 3%;
}
.gnavi>li {
    padding: 0;
}
.gnavi>li>a {
    padding: 10px 10px;
    border-bottom: 1px solid #f0f0f0;
}
	.gnavi>li.over>a:after {
		display: none;
	}
.submenu {
    position: relative;
	margin: 0;
}
.submenu a {
    font-size: 90%;
    color: var(--mcolor);
    padding: 10px 15px;
}
.main_slide.slick-initialized .slick-slide .img {
    height: auto;
}
.main_slide.slick-initialized .slick-slide .img img {
	object-fit: cover;
}
.f_right {
    width: 37px;
    right: -2px;
}
.box01 {
    padding: 40px 0 20px;
}
.idx_h2 {
    font-size: 1.3rem;
    margin: 0 0 25px;
}
.b01_txt {
    max-width: 100%;
}
.b01_txt_lager {
    font-size: 100%;
}
.b01_main {
    margin-top: 40px;
}
.idx_h2.h2_icon:before {
    width: 24px;
    height: 24px;
    margin-right: 10px;
	flex-shrink: 0;
}
.b01_logo {
    flex-wrap: wrap;
    max-width: 400px;
    margin: 0 auto;
}
.b01_logo li {
    width: 55%;
	text-align: center;
}
.b01_logo li:nth-child(1) {
    width: 100%;
}
.b01_logo li:nth-child(2), .b01_logo li:nth-child(3) {
    width: 22.5%;
}
.box02 {
    padding: 40px 0;
}
.b02_main {
    max-width: 100%;
}
.b02_play {
    font-size: 4rem;
}
.b03_main {
flex-direction: column-reverse;
}
.b03_main_info {
    width: 100%;
    margin: 0 0 30px;
}
.b03_img {
    width: 100%;
}
.box03:nth-child(2n) .b03_main {
    flex-direction: column-reverse;
}
.b03_img.slick-initialized .slick-slide, .b04_img.slick-initialized .slick-slide {
    height: 60vw;
}


.box04 {
    padding: 40px 0;
}
.box04 .container {
    display: block;
}
.b04_main {
    width: 100%;
    margin: 0 0 40px;
}
.b04_info {
    width: 100%;
}

.f_fixed a {
    width: 160px;
    font-size: 12px;
    white-space: nowrap;
    padding-right: 15px;
}
.hotline-phone-ring {
    width: 90px;
    height: 90px;
    top: -8px;
}
.f_fixed {
    bottom: 50px;
    right: 10px;
}
.box05 .main_arr {
    width: 100%;
}
.b05_list.slick-initialized .slick-slide {
    margin: 0 10px;
}
.b06_list {
    display: block;
    margin-bottom: 40px;
}
.b06_item {
    width: 100%;
    margin: 0 0 30px;
}
.b06_item a {
    display: flex;
}
.b06_item_img {
    width: 50%;
    max-width: 200px;
    display: flex;
    flex-shrink: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
	.b06_item_img img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
.b06_itm_main {
    padding: 10px 0;
	display: flex;
	flex-direction: column;
}
.b06_itm_more {
    font-size: 11px;
}
.b06_itm_info {
    margin-top: auto;
    padding-bottom: 0;
    padding-top: 5px;
}
.b06_itm_ttl {
    font-size: 15px;
}
.box06 {
    padding: 40px 0 20px;
}
.box07 {
    padding: 40px 0;
}
.b07_main {
    display: block;
    margin-bottom: 30px;
}
.b07_main_item {
    width: 100%;
    margin: 0 0 20px;
}
.b07_main_itm_img {
    height: 50vw;
}
.b07_map {
    margin-top: 30px;
    height: 300px;
}
.footer_main {
    padding: 0px 0 20px;
}
.footer_main .container{
	flex-wrap: wrap;
}
.f_mod:not(:last-child) {
    margin: 0;
}
.f_mod:nth-child(1) {
    width: 50%;
}
.f_follow {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}
.f_mod:nth-child(2) {
    width: 50%;
	padding-top: 25px;
}
.f_ttl {
    font-size: 16px;
}
.f_social {
	flex-wrap: unset;
	max-width: 300px;
}
.f_mod:nth-child(3) ul {
    margin: 0 12%;
}
.f_mod:nth-child(3) {
    width: 100%;
}
.footer_img ul {
    flex-wrap: wrap;
    max-width: 400px;
    margin: 0 auto;
}
	.footer_img ul li:nth-child(1) {
		width: 100%;
	}
	.footer_img ul li {
		width: 55%;
		text-align: center;
	}
	.footer_img ul li:nth-child(2), .footer_img ul li:nth-child(3) {
		width: 22.5%;
	}
.f_bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 5;
	margin: 0;
}
.f_bottom a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background: var(--scolor);
    text-decoration: none;
    padding: 5px 0;
}
.f_bottom .icon {
    margin-right: 5px;
}
.copyright {
    font-size: 12px;
}
.footer_img {
    padding: 5px 0 0;
}
.main_item_ttl {
    font-size: 20px;
	margin-bottom: 3vw;
}
.main_item_btn {
    font-size: 12px;
    white-space: nowrap;
    padding: 1vw 4vw;
}
}
@media screen and (max-width: 480px) {
	.f_fixed {
		bottom: 40px;
	}
	.footer_main .container {
		flex-wrap: wrap-reverse;
	}
	.f_mod .f_ttl {
		margin-bottom: 5px;
	}
	.f_mod:nth-child(2) {
		padding: 0 0 10px;
	}
	.f_mod:nth-child(3) {
		margin-top: 15px;
	}
	.f_mod:nth-child(3) ul {
		margin: 0;
	}
}