﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
	--f-main: "Roboto", sans-serif;
	--f-robo: "Montserrat", sans-serif;
	--txt: #666;
	--mcolor: #012060;
	--s-color: #111;
  --white: #fff;
}
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);
    text-decoration: none;
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.3em;
}
#totop {
  position: fixed;
  bottom: 162px;
  right: 20px;
  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;
}
/*==========================================================================*/
/*                            Header                                     */
/*==========================================================================*/
h1{
  display: none;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 99;
  width: 260px;
  color: var(--white);
  background: var(--mcolor);
}
.h_main{
  position: relative;
  z-index: 5;
  padding: 2vh 0 0;
}
.logo {
  margin-bottom: 0;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.h_bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2vh;
}
.h_search{
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 100px;
  background: var(--white);
  width: 200px;
  margin: 0 auto 2vh;
}
    .h_search input {
        padding: 1.5vh 21px 1.5vh;
        color: var(--s-color);
        font-size: 14px;
        border: none;
        width: 100%;
    }
.h_search input::placeholder {
  color: #c7c7c7;
  opacity: 1; /* Firefox */
}
.h_search input::-ms-input-placeholder { /* Edge 12 -18 */
  color: #c7c7c7;
}
.btn_search{
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background: url(../images/icon_search.svg) no-repeat center/20px auto var(--mcolor);
  width: 50px;
  height: 100%;
  outline: 0;
  border: none;
  cursor: pointer;
}
.h_social{
  display: flex;
  justify-content: center;
}
.h_social a{
  width: 14px;
}
.h_social a:not(:last-child){
  margin-right: 24px;
}
.gnavi {
  margin-bottom: 30px;
}
.gnavi li {
  position: relative;
}
.gnavi > li.over > a{
  padding-right: 23px;
  background: url(../images/arrown_right.svg) no-repeat right 19px center/5px auto;
}
.gnavi>li>a {
  display: block;
  text-decoration: none;
  padding: 1.6vh 10px 1.65vh 19px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  z-index: 0;
  color: var(--white);
  text-transform: uppercase;
}
.gnavi>li.active>a, .gnavi>li:hover>a {
  color: #facd10;
}
.gnavi > li.over.active > a, .gnavi > li.over:hover > a{
  background-image: url(../images/arrown_right_ov.svg);
}
.submenu li {
  padding: 0 15px;
}
.submenu {
  position: absolute;
  background: var(--white);
  display: none;
  padding: 10px 0;
  top: 0;
  left: calc(100% + 20px);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  min-width: 220px;
}
.submenu a {
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  color: #121212;
  display: block;
  font-size: 14px;
  position: relative;
  border-bottom: 1px solid #ebebeb;
  padding: 8px 0;
  transition: all .3s ease;
}
.submenu li:last-child > a {
border-bottom: none;
}
.submenu a:hover {
color: var(--mcolor);
}
.has_child .submenu {
left: calc(100% + 5px);
margin-top: 0;
top: -10px;
}
.submenu li.has_child:after {
content: '';
position: absolute;
border: solid var(--txt);
border-width: 0 1px 1px 0;
display: inline-block;
padding: 3px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
right: 18px;
top: 14px;
}
#header.fixed  {
  -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_top{
    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);
  }
  }
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: var(--txt);
  font-family: var(--f-main);
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 100%;
	max-width: 100%;
  padding: 0 3%;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
.df{
  display: flex;
  flex-wrap: wrap;
}
.ai-c{
  align-items: center;
}
.jc-c{
  justify-content: center;
}
.jc-sw{
  justify-content: space-between;
}
.mainvisual img{
  width: 100%;
}
.mainvisual .slider a{
  position: relative;
  text-decoration: none;
  transition: all .3s ease;
}
.mainvisual .slider a:hover{
  opacity: 0.7;
}
.mainvisual .slider_btxt{
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 10.5%;
  padding-left: 9%;
  color: #000;
  text-align: center;
}
.mvs_slider_title{
  font-size: 75px;
  font-weight: 500;
  margin-bottom: 27px;
}
.mvs_txt1{
  margin-bottom: 21px;
  font-size: 30px;
  font-weight: 300;
}
.mvs_txt2{
  margin-bottom: 38px;
  max-width: 430px;
  font-size: 15px;
  line-height: 2;
}
.mvs_btn a{
  padding: 13px 29px 10px 10px;
  width: 130px;
  background: var(--mcolor);
  color: var(--white);
  margin: 0 auto;
  font-size: 13px;
  background: url(../images/arown_right_line.svg) no-repeat center right 12px / 12px auto var(--mcolor);
  text-align: center;
}
.idx_style1{
  font-size: 18px;
  color: var(--mcolor);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.idx_style2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 23px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.content, .footer{
  width: calc(100% - 260px);
  margin-left: auto;
}
.box01{
  padding: 81px 0 72px;
}
.b1_img{
  margin-bottom: 33px;
}
.b1_item{
  width: calc(100%/3);
  text-align: center;
  padding: 20px 10px;
  transition: all 0.3s ease;
}
.b1_item:hover{
  background: rgba(29, 132, 187, .3);
}
.b1_item a{
  text-decoration: none;
  color: var(--txt);
}
.b1_txt{
  font-size: 18px;
  max-width: 282px;
  margin: 0 auto;
}
.box2{
  padding: 70px 0 70px;
}
.box2 a{
  text-decoration: none;
  color: var(--txt);
}
.btn_ct{
  font-size: 12px;
  color: var(--white);
  background: var(--mcolor);
  padding: 20px 40px 15px;
  display: table;
  text-transform: uppercase;
}
.box02{
  background: #f7f7f7;
}
.box02 .container{
  padding: 0;
}
.b2_txt_slider{
  width: 382px;
  padding: 60px 50px 44px 55px;
}
.b2_img{
  width: calc(100% - 382px);
  margin-bottom: 0;
}
.b2_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b2_slider_item a{
  display: flex;
  text-decoration: none;
  color: var(--txt);
  transition: all 0.3s ease;
}
.b2_slider_item.slick-slide{
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.b2_slider_item.slick-active{
  opacity: 1;
  visibility: visible;
}
.b2_slider .slick-arrow{
  width: 40px;
  height: 150px;
  outline: 0;
  border: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  transition: all .3s ease;
  opacity:0;
}
.b2_slider:hover .slick-arrow {
    opacity: 1;
}
.b2_slider .slick-prev{
  left: 0;
  border-radius: 0 30px 30px 0;
  background: url(../images/ic_prev.svg) no-repeat center rgba(0, 0, 0, .4);
}
.b2_slider .slick-next{
  right: 0;
  border-radius: 30px 0 0 30px;
  background: url(../images/ic_next.svg) no-repeat center rgba(0, 0, 0, .4);
}

.b2_txt {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 35px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.box03{
	padding: 30px 0;
}
.b3_item {
    width: calc(100%/3 - 33px);
    text-align: center;
    padding: 20px 10px;
    transition: all 0.3s ease;
}
.b3_item .idx_style1 {
  margin-bottom: 5px;
}
.b3_item .idx_style1 .name{
  color: var(--txt);
  display: block;
  margin-top: 15px;
  text-transform: none;
  font-weight: 300;
}
.b3_img {
    height: 185px;
    margin-bottom: 20px;
    overflow: hidden;
	border-radius: 15px;
}
.b3_ttl {
    font-size: 18px;
    font-weight: 600;
    color: var(--txt);
}
.b3_txt {
position: relative;
    font-weight: 400;
    font-style: italic;
    max-width: 239px;
    margin: 0 auto;
    color: var(--txt);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 5px;
}
    /*.b3_txt::before {
        content: '';
        position: absolute;
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 34px;
        height: 26px;
        background: url(../images/ic_quotes.png) center / contain;
    }*/
.b3_txt p {margin: 0 0 5px 0;}
.box04{
  background: #f7f7f7;
  padding: 99px 0 87px;
}
.box04 .container{
  padding: 0;
}
.b4_img_big, .b4_img{
  position: relative;
  overflow: hidden;
}
.b4_img_big::before, .b4_img::before{
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .4);
}
.b4_img{
  width: 170px;
}
.b4_item_small:not(:last-child){
  margin-bottom: 37px;
}
.b4_item .idx_style4{
  width: calc(100% - 190px);
  padding-top: 10px;
  line-height: 1.4;
  color: var(--txt);
}
.b4_icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.idx_style3{
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
}
.b4_item_big .idx_style3 .ttl_small{
  margin-bottom: 19px;
  font-size: 12px;
  padding: 8px 16px 6px;
}
.b4_item_big a{
  position: relative;
  text-decoration: none;
  display: block;
}
.b4_img_big img{
  transition: all 0.3s ease;
}
.b4_item_big a:hover .b4_img_big img{
  transform: scale(1.1);
}
.b4_item_big .idx_style3{
  position: absolute;
  left: 47px;
  bottom: 40px;
  z-index: 2;
}
.idx_style4 .ttl_small, .idx_style3 .ttl_small{
  background: var(--mcolor);
  color: var(--white);
  display: table;
  padding: 8px 10px 5px;
  text-transform: uppercase;
}
.idx_style4 .ttl_small{
  text-transform: uppercase;
}
.b4_item_small .idx_style4 .ttl_small{
  margin-bottom: 10px;
  font-size: 10px;
}
.b4_item_small a{
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s ease;
}
.b4_item_small a:hover{
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.b4_item_big{
  width: calc(100% - 470px);
  position: relative;
}
.b4_item{
  width: 440px;
}
.f_gallery{
  padding: 84px 0 86px;
}
.f_gallery .container{
  width: 1145px;
}
.cm_gallery a{
  margin: 15px;
}
.footer{
  color: var(--white);
}
.f_content{
  background: url(../images/f_bg.jpg) no-repeat top center/cover;
}
.footer a{
  color: var(--white);
  text-decoration: none;
}
.f_main .container{
  display: flex;
  justify-content: space-between;
}
.f_main{
  padding: 95px 0 83px;
}
.f_mod:first-child{
  width: 250px;
}
.f_mod:nth-child(2){
  width: 250px;
}
.f_mod:nth-child(3){
  width: 250px;
}
.f_mod:last-child{
  width: 244px;
}
.f_ttl, .f_ttl2{
  font-weight: 500;
}
.f_ttl{
  font-size: 24px;
  margin-bottom: 22px;
}
.f_ttl2{
  font-size: 18px;
  margin-bottom: 17px;
}
.f_mn a{
  display: block;
  position: relative;
  padding: 2px 5px 3px 21px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.f_mn a::before{
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: url(../images/f_arrow.svg) no-repeat center/contain;
}
.f_mn a:hover{
  color: #facd10;
}
.f_mn a:hover::before{
  background-image: url(../images/f_arrow_ov.svg);
}
.f_tel{
  margin-bottom: 28px;
}
.f_tel a{
  display: block;
  background: url(../images/f_tel.png) no-repeat left center/20px auto;
  padding-left: 36px;
  font-size: 14px;
}
.f_mail{
  margin-bottom: 24px;
}
.f_mail a{
  display: block;
  background: url(../images/f_mail.png) no-repeat left center/19px auto;
  padding-left: 40px;
  font-size: 14px;
}
.f_address{
  background: url(../images/f_address.png) no-repeat top 5px left/15px auto;
  padding-left: 37px;
  padding-top: 4px;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.7;
}
.f_info{
  line-height: 1.7;
  font-size: 14px;
}
.f_box_time{
  margin-top: 40px;
}
.f_txt_time {
  font-size: 14px;
  line-height: 1.7;
}
.copyright{
  background: var(--s-color);
  padding: 40px 0 40px;
  text-align: center;
}
.copyright p{
  margin-bottom: 0;
}
.box_robo{
  position: fixed;
  bottom: 0;
  z-index: 3;
  right: 20px;
}
.ttl_robo{
  font-family: var(--f-robo);
  font-size: 14px;
  padding: 10px 15px 10px;
  position: relative;
  background: var(--white);
  border-radius: 12px 12px 0 12px;
  color: var(--txt);
  margin-bottom: 0;
}
.ttl_robo::before{
  content: '';
  position: absolute;
  right: 0;
  bottom: -7px;
  width: 9px;
  height: 7px;
  background: url(../images/icon_arr_robo.png) no-repeat top center/9px auto;
}
.img_robo{
  display: table;
  margin-left: auto;
  margin-top: 16px;
  margin-bottom: 0;
}
/* under */

.under_mainvisual{
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 160px 100px 100px;
}
.breadcrumb-list{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
  position: relative;
  z-index: 5;
}
.breadcrumb-list>li {
  position: relative;
  z-index: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}
.breadcrumb-list>li a{
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: all .3s ease;
}
.breadcrumb-list>li a:hover{
  opacity: 0.7;
}
.breadcrumb-list>li:not(:last-child) {
  padding-right: 15px;
  margin-right: 5px;
}
.breadcrumb-list>li:not(:last-child)::before {
  content: ">";
  position: absolute;
  right: 0;
  top: 0;
}
.ud_style1{
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 23px;
}
.ud_style2{
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 28px;
}
.ud_style2 .small{
  color: var(--mcolor);
  font-size: 30px;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.mvs_info{
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0;
}
.ud_box1 {
    padding: 97px 5.5% 40px 5.5%;
}
.ud_box1 .container{
  width: 1042px;
}
.ud_b1_txt1{
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.ud_b1_txt2{
  font-size: 18px;
}
.ud_b1_content{
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 32px;
}
.ud_b1_item{
  width: calc(100%/2 - 30px);
  margin: 17px 15px;
  transition: all .3s ease;
}
.ud_b1_item:hover{
  transform: translateY(6px);
}
.ud_b1_item p{
    font-size: 18px;
    color: var(--txt);
}
.ud_b1_item a{
  text-decoration: none;
}
.ud_b1_ttl{
  font-size: 33px;
  color: #000;
  font-weight: 300;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.ud_b1_ttl .icon{
  margin-right: 15px;
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  border: 2px solid #1d84bb;
  border-radius: 18px;
  transition: all .3s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
/*.ud_b1_item:hover .ud_b1_ttl .icon{
  border-color: #facd10;
  background-color: #facd10;
}*/
/*.ud_b1_ttl.ttl1 .icon {
  background-image: url(../images/dv_icon1.png);
}*/
/*.ud_b1_item:hover .ud_b1_ttl.ttl1 .icon{
  background-image: url(../images/dv_icon1_ov.png);
}*/
.ud_b1_ttl.ttl2 .icon {
  background-image: url(../images/dv_icon2.png);
}
/*.ud_b1_item:hover .ud_b1_ttl.ttl2 .icon{
  background-image: url(../images/dv_icon2_ov.png);
}*/
.ud_b1_ttl.ttl3 .icon {
  background-image: url(../images/dv_icon3.png);
}
/*.ud_b1_item:hover .ud_b1_ttl.ttl3 .icon{
  background-image: url(../images/dv_icon3_ov.png);
}*/
.ud_b1_ttl.ttl4 .icon {
  background-image: url(../images/dv_icon4.png);
}
/*.ud_b1_item:hover .ud_b1_ttl.ttl4 .icon{
  background-image: url(../images/dv_icon4_ov.png);
}*/
.ud_b1_ttl.ttl5 .icon {
  background-image: url(../images/dv_icon5.png);
}
/*.ud_b1_item:hover .ud_b1_ttl.ttl5 .icon{
  background-image: url(../images/dv_icon5_ov.png);
}*/
.ud_b1_ttl.ttl6 .icon {
  background-image: url(../images/dv_icon6.png);
}
/*.ud_b1_item:hover .ud_b1_ttl.ttl6 .icon{
  background-image: url(../images/dv_icon6_ov.png);
}*/
.ud_b2_item .container{
  padding: 0;
  width: 1140px;
}
.ud_b2_item a{
  display: flex;
  text-decoration: none;
  color: #000;
  transition: all .3s ease;
}
.ud_b2_item:nth-child(2n) a{
	    flex-direction: row-reverse;
}
.ud_b2_item a:hover{
  opacity: 0.7;
}
.ud_b2_item.item2 a{
  flex-direction: row-reverse;
}
.ud_b2_item.item1{
  background: #f7f7f7;
}
.ud_style3{
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 15px; 
  line-height: 1.5;
}
.ud_style3 .small{
  font-size: 18px;
  font-weight: 500;
  display: block;
  color: var(--mcolor);
  margin-bottom: 13px;
}
.ud_b2_btxt, .ud_b2_img{
  width: 50%;
}
.ud_b2_btxt{
  background: #f7f7f7;
  padding: 45px 45px 45px;
  display: flex;
  align-items: center;
}
.ud_b2_btxt > div{
  max-width: 471px;
}
.ud_b2_txt{
  font-size: 18px;
  font-weight: 300;
}
.ud_b2_btxt .btn_ct{
  margin-bottom: 0;
}
.ud_b2_img{
  margin-bottom: 0;
}
.ud_b2_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1643px) {
 /* #header{
    right: 1383px;
    left: auto;
  }*/
   #header{
  
   
  }
	#wrapper {
    /*max-width: 1643px;
    margin-left: auto;*/
  }
}
@media screen and (max-width: 768px) {
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 14px;
}
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 60px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 60px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    -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: var(--white);
    -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(0, 0, 0, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
	display:none;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid var(--white);
    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;
  }
  #header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 67px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .4);
  }
  .logo {
    width: 150px;
    height: 100%;
    padding: 10px;
  }
  .h_bottom{
    display: none;
  }
  .h_main {
    background: #fff;
    width: 100%;
    position: fixed;
    height: calc(100% - 60px);
    top: 60px;
    left: 0;
    padding: 30px 0;
    overflow: auto;
    display: none;
    border-top: 1px solid var(--txt-input);
}
.h_main .container{
  display: block;
}
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #gnavi {
    display: block;
  }
  .gnavi {
      display: block;
  }
  .gnavi>li {
      margin: 0!important;
    padding: 0;
      }
  .gnavi>li>a {
      text-align: left;
      padding: 15px 20px;
      border-bottom: 1px solid var(--cl-ttl);
      border-radius: 0;
      background: none !important;
      color: var(--s-color);
  }
  .gnavi>li.active>a, .gnavi>li:hover>a{
    color: var(--s-color);
  }
  .gnavi > li.over{
    padding-right: 0;
    background-image: none;
  }
  .gnavi>li.active>a:before, .gnavi>li:hover>a:before, .gnavi>li.active>a:after, .gnavi>li:hover>a:after{
    content: none;
  }
    .gnavi>li.over>a {
      /*padding-right: 50px;*/
	  margin-right: 220px;
    }
  .submenu {
      position: relative;
      left: 0;
      top: 0;
      margin: 0;
      border-radius: 0;
      padding: 10px;
    box-shadow: none;
    background: var(--mcolor);
  }
    .submenu li.over > a {
      padding-right: 20px;
    }
  .submenu a {
      font-size: 13px;
      padding: 10px 0;
    white-space: normal;
    margin-left: 25px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .4);
  }
  .submenu .gnv-ico {
      background: rgba(255, 255, 255, 1);
    height: 38px;
  }
  .submenu .gnv-ico:before {
    border-color: var(--s-color);
  }
  .submenu li {
      padding: 0;
  }
    .submenu li.has_child:after {
      display: none;
    }
  .has_child .submenu {
      left: 0;
      margin-top: 0;
      top: 0;
    width: calc(100% + 10px);
  }
  #totop {
    width: 40px;
    line-height: 0;
  }
  #header{
    width: 100%;
    height: 60px;
    bottom: auto;
  }
  .content{
    width: 100%;
  }
  .box01{
    padding: 50px 0 50px;
  }
  .b1_item{
    width: 50%;
  }
  .b1_img {
    margin-bottom: 20px;
}
.mainvisual .slider_btxt{
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
}
.mainvisual img {
  height: 350px;
  object-fit: cover;
  object-position: left center;
}
.mvs_slider_title{
  font-size: 38px;
  margin-bottom: 20px;
}
.mvs_txt1{
  margin-bottom: 10px;
  font-size: 21px;
}
.mvs_txt2{
  font-size: 15px;
  margin-bottom: 10px;
}
.idx_style1{
  margin-bottom: 25px;
  line-height: 1.4;
}
.b1_txt{
  font-size: 16px;
}
.b2_slider_item a{
  flex-wrap: wrap;
}
.b2_img{
  width: 100%;
}
.b2_txt_slider {
  width: 100%;
  padding: 30px 35px 35px 35px;
}
    .b2_slider .slick-arrow {
        width: 30px;
        opacity: 1;
    }
.idx_style2 {
  font-size: 26px;
  margin-bottom: 15px;
}
.b2_txt{
  font-size: 16px;
  margin-bottom: 30px;
}
.btn_ct{
  padding-top: 14px;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.box03 {
  padding: 50px 0 15px;
}
.b3_item{
  width: 50%;
  margin-bottom: 35px;
}
.b3_item .idx_style1 .name{
  margin-top: 10px;
}
.box04{
  padding: 50px 0;
}
.box04 .container{
  padding: 0 3%;
}
.b4_item_big, .b4_item{
  width: 100%;
}
.b4_item_big{
  margin-bottom: 30px;
}
.b4_img_big img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b4_item_small:not(:last-child) {
  margin-bottom: 15px;
}
.b4_img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* under */
.under_mainvisual{
  height: 450px;
  padding: 30px 15px;
}
.ud_box1 {
        padding: 50px 10px 20px !important;
    }
.ud_style2 {
  font-size: 34px;
}
.ud_style2 .small{
  font-size: 22px;
}
.ud_b1_txt1{
  font-size: 20px;
}
.ud_b1_txt2{
  font-size: 16px;
}
.ud_b1_item{
  width: 100%;
  margin: 5px 15px;
}
.ud_b1_ttl {
  font-size: 24px;
}
.ud_b1_ttl .icon{
  width: 45px;
  height: 45px;
  margin-right: 10px;
  border-radius: 12px;
}
.ud_b1_item p, .ud_b2_txt {
  font-size: 16px;
}

.ud_b2_item a{
  display: block;
}
.ud_b2_btxt, .ud_b2_img{
  width: 100%;
}
.ud_b2_img{
  height: 350px;
}
.ud_b2_btxt > div{
  margin: 0 auto;
}
.ud_b2_btxt{
  padding: 35px;
}
.ud_style3{
  font-size: 24px;
}

.f_gallery {
  padding: 35px 0;
}
.f_main {
  padding: 50px 0;
}
.f_main .container{
  flex-wrap: wrap;
}
.f_main .f_mod{
  width: 100%;
}
.f_mod:not(:last-child){
  margin-bottom: 30px;
}
.copyright{
  padding: 30px 0;
}


}