@charset "utf-8";

/*========= 主要 ===============*/
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #FFFFFF;
}
html{
	scroll-behavior: smooth;
}
/*========= ヘッダー ===============*/

header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: white;
}

header .inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
    margin-top: 0px;
    margin-right: 20px;
    margin-bottom: 0px;
    margin-left: 20px;
}


/* .logo */

header .logo {
  position: relative;
  width: 200px;
  margin: 0;
  padding: 0;
  align-items: center;	
  flex-shrink: 0;	
}
header .logo a {
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

header .logo_group {
  position: relative;
  margin: 0;
  padding: 0;
  align-items: center;
  max-width: 100%;	
}
header .logo_group a {
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

@media screen and (max-width: 1190px) {
  header .logo {
    padding: 0;
  }
  header .logo a {
  }
}
@media screen and (max-width: 1190px) {
	.logo_group{
		display: none;
}}
@media screen and (width: 1190px) {
	.logo_group{
		display: block;
}}
.logo_group-hamburger {
   position: absolute;
   right: 60px;		
}
@media screen and (min-width: 1190px) {
.logo_group-hamburger {	
   display: none;		
}}
p.logo {
	animation: width 0.5s ease;	
}
@media screen and (max-width: 1190px){
p.logo {
    width: 35%;
}}
  .logo_group-hamburger img {
    width: 200px; /* 初期設定として1080pxの幅で200px */
    transition: width 0.3s ease;
  }

  @media screen and (max-width: 1190px) and (min-width: 350px) {
    .logo_group-hamburger img {
      width: calc(90px + (150 - 90) * ((100vw - 350px) / (1190 - 350)));
    }
    .logo img {
      width: calc(100px + (150 - 100) * ((100vw - 350px) / (1190 - 350)));
    }	  
  }

  @media screen and (max-width: 350px) {
    .logo_group-hamburger img {
      width: 120px;
    }
  }
/* scroll */

header {
  height: 90px;	
  transition: height 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}
@media screen and (max-width:650px) {
header {
	height: 60px;
}}
header.scroll {
  height: 60px;
  position: fixed;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header .logo {
  transition: width 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}
header.scroll .logo {
  width: 70px;
}

/* header-navi-box */

header .navi {
  margin: 0 0 0 auto;
  padding: 0;
  font-size: small;
  font-weight: bold;
  display: flex;
  align-items: center;
  list-style: none;
}
header .navi li {
  margin: 5px 0 5px 40px;
  padding: 0px 30px 0px 0px;
  border-right: 2px solid #ccc;	
}
header .navi li:first-child {
  margin-left: 0;
  text-align: center;	
}
header .navi li a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;	
}
header .navi li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1190px) {
  header .navi {
    display: none;
}}
@media screen and (width: 1190px) {
  header .navi {
    display: flex;
}}

.header-light{	
	display: flex;
	align-items: center;
	padding: 0px 0px 0px 30px;
	align-items: center;
}
@media screen and (max-width: 980px) {
.header-light{	
	padding: 0px 0px 0px 14px;
}}
.header-menu_blue {
	color: #004097;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-menu_green {
	color: #00897c;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* open-button */

.sp-navi-toggle {
  display: none;
  margin: auto 0;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  width: 16px;
  height: 25px;
  transition: all 0.4s;
  color: #464646;
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: unset;
}
.sp-navi-toggle .menu,
.sp-navi-toggle .close {
  position: absolute;
  bottom: 0;
  left: -50%;
  display: block;
  width: 34px;
  height: 11px;
}
@media screen and (min-width:1230px){
	.sp-navi-toggle .menu,
.sp-navi-toggle .close {
  display: none;
}}
.sp-navi-toggle .close {
  display: none;
}
.sp-navi-toggle .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #464646;
}
.sp-navi-toggle .bar:nth-of-type(1) {
  top: 0;
}
.sp-navi-toggle .bar:nth-of-type(2) {
  top: 5px;
}
.sp-navi-toggle .bar:nth-of-type(3) {
  top: 10px;
}

/* close-button */

html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(1) {
  top: 5px;
  transform: rotate(45deg);
}
html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(2) {
  top: 5px;
  transform: rotate(-45deg);
}
html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(3) {
  display: none;
}
html.sidebar-is-open .sp-navi-toggle .menu {
  display: none;
}
html.sidebar-is-open .sp-navi-toggle .close {
  display: block;
}

@media screen and (max-width: 1080px) {
  .sp-navi-toggle{
    display: block;
  }
}

/* sp-navi */

.sp-navi-box {
  display: none;
}
.sp-navi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 100%;
  height: 100vh;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.sp-navi li {
  padding: 20px 0;
}
.sp-navi li a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: bold;
}
.sp-navi li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1080px) {
  html.sidebar-is-open .sp-navi-box {
    display: block;
  }
  html.sidebar-is-open {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
  }
}

body {
  margin: 0;
  padding: 0;
}
a{
  color: #333;
}


main {
    padding: 0px 0px 0px 0px;
}


/*========= メガメニュー ===============*/
/* ドロップダウンメニューのスタイル設定 */
.navi .dropdown {
  position: relative;
}

.navi .dropdown-menu {
  display: none; 
  position: absolute;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 100;
  width: 240px; 
  left: 50%;
  transform: translateX(-50%);
  list-style: none; 
  padding-left: 0;
  border: solid 2px #004098;
  border-radius: 5px;	
}

.navi .dropdown-menu a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;	
  font-weight: lighter;	
}

.navi .dropdown:hover .dropdown-menu {
  display: block; 
}

.navi .dropdown-menu a:hover {
  background-color: #f1f1f1;
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  width: 50px;
  height: 44px;
  cursor: pointer;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 20px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}


/*========= レイアウトのためのCSS ===============*/

body{
  background:#FFFFFF;
    padding:0px 0px 0px 0px;
}


a{
  color: #333;
  text-decoration: none;
}

.lead{
  margin:20px 0 0 0;
}

.btn-block{
  width:200px;  
  padding: 30px;
}

/* レスポンシブ対応 */
@media (max-width: 1080px) {
    nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    .header-container h1 {
        font-size: 24px;
    }

    .text p {
        text-align: left;
    }
}

/*========= TOP動画 ===============*/
.kv-wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width:880px) {
.kv-wrapper {
  height: 85vh;
}}
.kv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; /* kvを前面にする */
}

.kv .main-copy {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 44px;
  letter-spacing: 3px;
  transition: font-size 1s ease;	
}
@media screen and (max-width:750px) {
.kv .main-copy {
  font-size: 18px;
}}

.kv .sub-copy {
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.video {
  position: absolute;
  width: 100%;
  height: 100%; /* これでkvと同じサイズになる */
  top: 0;
  left: 0;
  z-index: -1; /* ビデオを背景に */
}

.video video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width:880px) {
.video video {
  width: 40%!important;
}}

.video::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #10394b;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}
    .new-content_video { 
		display: none;
}
@media screen and (max-width: 880px) {
    .old-content_video {
        display: none;
}
	.new-content_video { 
		display: block; 
}}	
/*========= 全体 ===============*/
  .container {
        padding: 0px 40px 0px 40px;
    } 
@media (max-width: 400px) {
  .container {
        padding: 0px 15px 0px 15px;
}}
  .container_color {
        padding: 80px 40px 80px 40px;
        background: #f5f5f1;
    } 
@media (max-width: 400px) {
  .container_color {
        padding: 30px 15px 30px 15px;
        background: #f5f5f1;
}}
  .explanation_flex_main-contents { 
	    display: flex; 
	    flex-direction: column; 
	    flex-wrap: wrap;
	    justify-content: space-between; 
	    padding: 0px 0px 20px 0px; 
	    width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        box-sizing: border-box;
} 
@media (max-width: 1080px) {
  .explanation_flex_main-contents { 
	    padding: 0px 0px 20px 0px; 
}}
  .explanation_text_main { 
		padding: 0px 0px 0px 0px; 
		flex: 0 0 30%;　
}
  .explanation_text_sub { 
	    padding: 0px 0px 0px 0px; 
	    flex: 0 0 50%;
	    color: #004097;  
}
  .explanation_text_body { 
		padding: 0px 0px 0px 0px; 
		flex: 70%;　
}
@media (max-width: 1080px) {
  .explanation_text_body { 
		padding: 0px 0px 40px 0px; 
}}
  html, body {
        overflow-x: clip;
        margin: 0;
        padding: 0;
}
    .text-vertical {
        writing-mode: vertical-rl;
}
  .container_sub-title { 
	width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 0px 0px 0px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row; 
}
@media (max-width: 1080px) {
   .container_sub-title { 
    padding: 0px 0px 0px 0px;
}}
  .container_sub-title2 { 
	width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 0px 0px 0px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    align-content: flex-start;
    flex-direction: row; 
	font-weight: lighter
}
@media (max-width: 1080px) {
   .container_sub-title2 { 
    padding: 0px 0px 0px 0px;
	flex-direction: column;    
}}

.content { 
	height: 2000px; 
	padding-top: 100px; 
}
.fade-in { 
	opacity: 0; 
	transform: translateY(50px); 
	transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in { 
	opacity: 0; 
	transform: translateY(50px); 
	transition: opacity 1s ease-out, transform 1s ease-out;
}
.show { 
	opacity: 1; 
	transform: translateY(0);
}
.box { 
	width: 80%; 
	margin: 150px auto; 
	padding: 20px; 
	background: #ccc; 
	text-align: center; 
	border-radius: 8px;
}
.breadcrumb {	 
font-size: 95%;	 
margin-bottom: 50px;	 
 border-bottom: 1px solid #ccc;	 
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none;	
}	 
.breadcrumb ul {	 
 width: 90%;	 
 max-width: 1400px;	 
 margin: auto;	 
 display: flex;	 
 list-style: none;	
 font-size: clamp(12px, 2vw, 1em);	
}	 
.breadcrumb ul li:not(:first-child)::before {	 
content: "/";	 
margin: 0 10px;	 
color: #aaa;	 
} 
div#ancho-point_clean {
   padding-top:100px;
   margin-top:-100px;
}
.content_path {
    font-size: 95%;
    margin-bottom: 50px;
    background: white;
}

/*========= contents.pickup ============*/
.pickup{
	padding:100px 0 70px;
	position:relative;
	margin:0 0 0 0;
	background:#f5f5f1;
	position:relative;
}
.pickup h2{
	font-size:1rem;
	font-weight:500;
	font-family: "Open Sans", sans-serif;
	line-height:1em;
	position:absolute;
	top:50px;
	left:2%;
}
.pickup .slider .slick-slide {
  width: 380px;
  position: relative;
  overflow: hidden;
	padding:10px;
}
.pickup .slider .slick-slide dt {
	margin-bottom:10px;
}
.pickup .slider .slick-slide dt img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pickup .slider .slick-slide dd {
}
.pickup .slider .slick-slide dd h6{
	border:1px solid #000;
	display:inline-block;
	padding:0 10px;
}
.pickup .slider .slick-slide dd h5{
	font-size:110%;
	line-height:1.5em;
	height:2.5em;
	margin:0em 0 0.8em 0;
}
.pickup .slider .slick-slide dd p{
	font-size:90%;
}

.pickup .dots{
	background:#000;
}
.pickup .dots .slick-dots {
	text-align: center;
	bottom: 20px;
}
.pickup .dots .slick-dots li{
	list-style:none;
}
.pickup .dots .slick-dots button {
  display: block;
  width: 7px;
  height: 7px;7
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
	border-radius:10px;
}

.pickup .dots .slick-dots button:before{
    content:none;
}
.pickup .dots .slick-dots .slick-active button {
  background: #004097;
}
.pickup .slick-arrow{
	padding:25px;
	z-index:10;
	height:12px;
	width:12px;
	border-radius:60px;
}
.pickup .slick-prev.slick-arrow{
	position:absolute;
	left:5px;
	background:#fff;
}
.pickup .slick-next.slick-arrow{
	position:absolute;
	right:5px;
	background:#fff;
}
@media screen and (max-width: 768px) {
	.pickup .slick-arrow{
		padding:15px;
	}
}
@media screen and (max-width: 519px) {
	.pickup .slider .slick-slide {
	  width: 300px;
	}
}
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('file:///Macintosh HD/Users/nakamuratsubasa/Desktop/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('file:///Macintosh HD/Users/nakamuratsubasa/Desktop/fonts/slick.eot');
    src: url('file:///Macintosh HD/Users/nakamuratsubasa/Desktop/fonts/slick.eot?#iefix') format('embedded-opentype'), url('file:///Macintosh HD/Users/nakamuratsubasa/Desktop/fonts/slick.woff') format('woff'), url('file:///Macintosh HD/Users/nakamuratsubasa/Desktop/fonts/slick.ttf') format('truetype'), url('file:///Macintosh HD/Users/nakamuratsubasa/Desktop/fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: 'â†';
}
[dir='rtl'] .slick-prev:before
{
    content: 'â†’';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: 'â†’';
}
[dir='rtl'] .slick-next:before
{
    content: 'â†';
}

/* Dots */
.slick-dotted.slick-slider
{
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: 'â€¢';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0); /* 完全に透明な背景 */
            z-index: 10; /* スライダーより前面に配置 */
        }
@media screen and (max-width:680px) {
        .overlay {
			display: none;
}}
@media screen and (max-width:600px) {
.vanish {
    display: none;
}}
/*========= 間接的な関係（_rm-main）                                                                            00==*/
.homing_rm-main {
    position: sticky;
    top: 100px;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
}
@media screen and (max-width:780px){
.homing_rm-main {
    display: none;
}}
/*お問い合わせボタン*/
.main-btn_rm-main-catch {
  display: flex;
  flex-direction: row;
  padding: 0px 0px 0px 0px;
}
@media screen and (max-width:1080px){
.main-btn_rm-main-catch {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}}
/*お問い合わせボタン02*/
.circle_btn02 {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 220px; /* ボタンの最大幅 */
  padding: 1em 2em;
  color: initial; /* 文字色 */
  transition: 0.3s ease-in-out;
  font-weight: bold;
  text-decoration: none;
margin: 0em 2em 0em 0em;
}

.circle_btn02::before, .circle_btn02::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

.circle_btn02::before {
  width: 0.5em;
  height: 0.5em;
  left: 1em;
  border-top: solid 2px #fff; /* 矢印の色 */
  border-right: solid 2px #fff; /* 矢印の色 */
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

.circle_btn02::after {
  left: 0;
  background: #4D9BC1; /* 背景色 */
  z-index: 1;
  width: 3em;
  height: 3em;
  border-radius: 3em;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.circle_btn02 span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

/* マウスオーバーした際のデザイン */
.circle_btn02:hover span {
  color: #fff; /* 文字色 */
}

.circle_btn02:hover:before {
  left: 2rem;
}

.circle_btn02:hover:after {
  right: 0;
  width: 100%;
}

/*お問い合わせボタン03*/
.circle_btn03 {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 220px; /* ボタンの最大幅 */
  padding: 1em 2em;
  color: initial; /* 文字色 */
  transition: 0.3s ease-in-out;
  font-weight: bold;
  text-decoration: none;
}

.circle_btn03::before, .circle_btn03::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

.circle_btn03::before {
  width: 0.5em;
  height: 0.5em;
  left: 1em;
  border-top: solid 2px #fff; /* 矢印の色 */
  border-right: solid 2px #fff; /* 矢印の色 */
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

.circle_btn03::after {
  left: 0;
  background: #4dc19c; /* 背景色 */
  z-index: 1;
  width: 3em;
  height: 3em;
  border-radius: 3em;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.circle_btn03 span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

/* マウスオーバーした際のデザイン */
.circle_btn03:hover span {
  color: #fff; /* 文字色 */
}

.circle_btn03:hover:before {
  left: 2rem;
}

.circle_btn03:hover:after {
  right: 0;
  width: 100%;
}
/*========= メインコンテンツ01 ===============*/
   .container_main-contents01 { 
	width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 0px 100px 0px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column; 
}
   .container2_main-contents01 { 
	width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 0px 0px 0px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    align-content: flex-start;
    flex-direction: row; 
}
@media (max-width: 1080px) {
   .container2_main-contents01 { 
    padding: 0px 0px 0px 0px;
}}
   .image_main-contents01 { 
	width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 0px 0px 0px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row; 
}
@media (max-width: 1080px) {
   .image_main-contents01 { 
        display: none;
}}
  .sub-title_main-contents01{
	padding: 0px 80px 0px 0px;
}
@media (max-width: 1080px) {
  .sub-title_main-contents01{
	font-size: 15px;
}
   .container_main-contents01 { 
	  width: 100%; 
	  max-width: 1400px; 
	  margin: 0 auto; 
	  padding: 100px 0px 100px 0px; 
	  box-sizing: border-box;
	  display: flex; 
	  flex-wrap: wrap; 
	  align-items: center; 
}

@media (max-width: 1520px) {
  .text_main-contents01{
	margin: 0px 0px 0px 0px; }
   .container_main-contents01 { 
	  width: 100%; 
	  max-width: 1400px; 
	  margin: 0 auto; 
	  padding: 100px 0px 100px 0px; 
	  box-sizing: border-box;
	  display: flex; 
	  flex-wrap: wrap; 
      display: flex;
      flex-direction: column;
      align-items: flex-start;
}}
@media (max-width: 1024px) {
  .text_main-contents01{
	margin: 0px 0px 0px 0px; }
   .container_main-contents01 { 
	  width: 100%; 
	  max-width: 1400px; 
	  margin: 0 auto; 
	  padding: 100px 0px 100px 0px; 
	  box-sizing: border-box;
	  display: flex; 
	  flex-wrap: wrap; 
      display: flex;
      flex-direction: column;
      align-items: flex-start;
}}
@media (max-width: 820px) {
   .container_main-contents01 { 
	  width: 100%; 
	  max-width: 1400px; 
	  margin: 0 auto; 
	  padding: 100px 0px 100px 0px;
	  box-sizing: border-box;
	  display: flex; 
	  flex-wrap: wrap; 
      display: flex;
      flex-direction: column;
      align-items: flex-start;}
}}
@media (max-width: 400px) {
   .container_main-contents01 { 
	  width: 100%; 
	  max-width: 1400px; 
	  margin: 0 auto; 
	  padding: 100px 0px 100px 0px;
	  box-sizing: border-box;
	  display: flex; 
	  flex-wrap: wrap; 
      display: flex;
      flex-direction: column;
	  align-items: flex-start;
}}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,0px) !important;
}
.swiper-horizontal {
    padding-bottom: 20px !important;
}
/*========= メインコンテンツ02 ===============*/

.container_main-contents02{
      background: #f5f5f1;
	  padding: 50px 0px 50px 0px;
}
.sub-title_main-contents02{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
	font-weight: lighter;
}
@media screen and (max-width:1480px) {
.sub-title_main-contents02{
    padding: 0 20px;
}}
.wrapper {
  margin: 20px auto;
}

img {
  max-width: 100%;
  height: auto;
}

.swiper-slide {
    opacity: .5;
    transform: scale(.85);
    transition: .5s;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
.swiper-horizontal {
    padding: 30px 0px;
}
/*========= メインコンテンツ03 ===============*/
.menu_main-contents03 {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	line-height: 24px;
}

.menu-box_main-contents03{
	padding: 20px 0px 100px 0px;
	margin: 0px 0px 0px 0px;
}

   .container_main-contents03 { 
	  width: 100%; 
	  max-width: 1400px; 
	  margin: 0 auto; 
	  padding: 160px 0px 30px 0px; 
	  box-sizing: border-box;
	  display: flex; 
	  flex-wrap: wrap; 
}

  .flex_main-contents03 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
	padding: 00px 0px 50px 0px;  
}
@media screen and (max-width: 1080px) {
  .flex_main-contents03 {
	padding: 20px 0px 70px 0px;  
}}

  .content-group {
	  display: flex; 
	  flex-direction: row; 
	  align-items: flex-start; 
	  width: 100%; 
	  margin-bottom: 20px; 
	  box-sizing: border-box;
}

  .content-image {
      width: 50%;
      height: 340px;
      object-fit: cover;
      border-radius: 10px;
}
  .content-title {
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #004097;
    background-color: white;
	color: #004097;
    font-weight: bold;
    font-size: 24px;
} 
@media screen and (max-width: 400px) {
  .content-title {
    font-size: 23px;
}}
  .content-title:before {
    position: absolute;
    top: 100%;
    left: 20%;
    transform: translateX(-50%) skew(-25deg);
    height: 20px;
    width: 10px;
    border-right: 3px solid #004097;
    background-color: white;
    content: "";
}

  .text01_main-contents03 {
	  flex: 1; 
	  padding: 0px 0px 0px 100px;
	  margin: 35px 0px 0px 0px;
	  display: flex; 
	  flex-direction: column;
}
@media screen and (max-width: 1080px) {
  .text01_main-contents03 {
	  padding: 0px 0px 0px 0px;
}	
}

  .text01_main-contents03 p {
	  text-align: justify; 
	  margin: 0;
	  padding: 30px 0px 0px 0px;
}
  .text02_main-contents03 {
	  flex: 1; 
	  padding: 30px 100px 0px 0px;
	  display: flex; 
	  flex-direction: column;
}
@media screen and (max-width: 1080px) {
  .text02_main-contents03 {
	  padding: 0px 0px 0px 0px;
      margin: 30px 0px 0px 0px;
}}

  .text02_main-contents03 p {
	  text-align: justify; 
	  margin: 0;
	  padding: 30px 0px 0px 0px;
}

    .content-box_main-contents03{
		padding: 0px 0px 0px 0px;
		margin:  0px 0px 0px 0px;
		font-size: 15px;
		font-weight: bold;
}

@media (max-width: 1080px){
	.content-group {
		flex-direction: column; 
		align-items: center;}
	.content-group02 {
		flex-direction: column; 
		align-items: center;}
	.content-image {
		width: 100%; 
		height: 250px;
		max-width: 100%;}
	.text_main-contents03 {
		text-align: center;
		padding: 0px 0px 0px 0px}
}

@media (min-width: 1081px){
    .reverse-order {
		flex-direction: row-reverse;}
}

/*========= 矢印 ===============*/
    .cta {
        border: none;
        background: none;
		padding: 15px 0px 0px 0px;
		text-align: right;
		float: right;
}

    .cta span {
        padding-bottom: 7px;
        letter-spacing: 4px;
        font-size: 14px;
        padding-right: 15px;
        text-transform: uppercase;
		color: #004097;
		font-weight: bold;
}

    .cta svg {
        transform: translateX(-8px);
        transition: all 0.3s ease;
}

    .cta:hover svg {
        transform: translateX(0);
}

    .cta:active svg {
        transform: scale(0.9);
}

    .hover-underline-animation {
        position: relative;
        color: black;
        padding-bottom: 20px;
}

    .hover-underline-animation:after {
        content: "";
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #000000;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
}

    .cta:hover .hover-underline-animation:after {
        transform: scaleX(1);
        transform-origin: bottom left;
}

/*--- メインコンテンツ04 ---*/
.container_split-screen {
    padding: 0 40px;
   background: url(../../wp-content/uploads/2024/05/main-contents04_back-1.webp)
}
@media screen and (max-width:980px){
.container_split-screen {
   flex-direction:column;
   padding: 0;
}}
.max-width {
    display:flex;
    margin: 0 auto;
	max-width: 1400px;
}
@media screen and (max-width:980px){
.max-width {
    display: block;
}}
@media screen and  (max-width:980px) {
.hide-br {
   display: none;
}}
@media screen and  (min-width:980px) {
.hide-br2 {
   display: none;
}}
.RightColumn_split-screen {
    flex: 4;
    height: 1200px;
   z-index: 1;
}
@media screen and (max-width:980px){
.RightColumn_split-screen {
   padding-left: 40px;
   padding-right: 40px;
   padding-bottom: 70px;
}}
.LeftColumn_split-screen {
    flex: 6;
    position: sticky;
    top: 180px;
    height: 310px;
    z-index: 2;
	padding-top: 80px;
}
@media screen and (max-width:980px){
.LeftColumn_split-screen {
   background: white;
   top: 40px;
   padding: 20px;
   height: 155px;	
}}
.flame_split-screen {
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   width: 90%;
   color: white;
}
@media screen and (max-width:980px){
.flame_split-screen {
   margin: 20px 0;
   color: black;
   font-size: 70%;	
}}
.box_split-screen { 
	display: flex;
    align-items: center;
	justify-content: center;
	height: 175px; 
	width: 100%; 
	background-color: white; 
    box-shadow: 5px 5px 20px -5px rgba(0, 0, 0, 0.1);
	margin: 100px 0 auto;
	position: relative;
        opacity: 0.9;
} 
@media screen and (max-width:980px){
.box_split-screen { 
   margin: 70px 0 auto;
}}
.box-merit_split-screen {
    position: absolute; 
    left: 5%;
    bottom: 55%;
    transform: translateY(-50%);
    font-size: 50px;
    font-weight: bold;
    color: #0d4087;
}
@media screen and (max-width: 980px){
.box-merit_split-screen {
   top: 0;
   bottom: 85px;
}}
@media screen and (max-width: 980px){
.box_split-screen { 
	width: 100%; 
}}
.box-inner_split-screen {
	display: flex;
	flex-direction: column;
	padding: 0px 40px;
        width: 100%;
}
.text-box_split-screen {
	padding: 0px 0px 0px 0px;
	text-align: left
}
.text01-box_split-screen {
	padding: 0px 0px 0px 0px;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #004097;
	font-weight: bold;
}
@media screen and (max-width:1080px){
.text01-box_split-screen {
	font-size: 14px;
}}
.text02-box_split-screen {
	padding: 15px 0px 0px 0px;
	font-weight: lighter;
}
.sub-text_split-screen {
    font-size: 20px;
   display: flex;
   align-items: center;
}
.sub-text_split-screen::after {
   content: "";
   border: solid 1px;
   width: 255px;
   margin-left: 5px;
}
@media screen and (max-width: 980px){
.sub-text_split-screen::after {
   display: none;
}
.sub-text_split-screen {
   color: #004097;
}}
.icon-text_main-contents04 {
    padding-top: 10px;
}
.text02_main-contents04 {
    font-weight: normal;
}
.old-content_main-contents07 {
    padding-top: 30px;
}
.text01_main-contents04 {
    color: #004097;
    padding: 5px 0;
}
/*========= メインコンテンツ05 ===============*/

   .container_main-contents05 { 
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 0px 0px 0px;
            box-sizing: border-box;
}
@media screen and (max-width: 1080px){
  .container_main-contents05 { 
            padding: 0px 0px 0px 0px;}}
  .l-wrap {
            padding: 0px 0px 0px 0px;
}
@media screen and (max-width: 1000px){
  .container_main-contents05 { 
            padding: 40px 0px 0px 0px;
}}
.l-inner {
  padding: 0 48px;
}

.l-content {
	max-width: 1400px;
	display: flex;
    justify-content: center;
    align-items: center;
}

/*--------------------
menu-list 補足付き / 左にアイコン
--------------------*/

.menu-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 234px), 1fr));
    gap: 16px;
	list-style: none;
	padding: 0;
	align-content: center;
}
@media screen and (max-width: 1080px) {
  .menu-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .btn-item.one, .btn-item.two, .btn-item.three, .btn-item.four {
    order: 0; /* デフォルトの順序 */
  }
  .btn-item.three, .btn-item.four {
    order: 1; /* 順序を最後に変更 */
}}
a.btn-item {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 20px 0px 20px 75px;
  color: black;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
}


@media screen and (max-width: 1080px){
	a.btn-item {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 20px 0px 20px 75px;
  color: black;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}}

a.btn-item.one {
  background-color: #ffffff;
  border: solid 2px #f5a21f;	
}
a.btn-item.one::before {
/*  任意のアイコン画像パスに変更ください  */
  background-image: url(../../wp-content/uploads/2024/05/procedure01.webp); 
}
a.btn-item.two {
  background-color: #ffffff;
  border: solid 2px #3fb135;	
}
a.btn-item.two::before {
/*  任意のアイコン画像パスに変更ください  */
  background-image: url(../../wp-content/uploads/2024/05/procedure02.webp);
}
a.btn-item.three {
  background-color: #ffffff;
  border: solid 2px #366bb3;	
}
a.btn-item.three::before {
/*  任意のアイコン画像パスに変更ください  */
  background-image: url(../../wp-content/uploads/2024/05/procedure03.webp);
}
a.btn-item.four {
  background-color: #ffffff;
  border: solid 2px #d24f8e;	
}
a.btn-item.four::before {
/*  任意のアイコン画像パスに変更ください  */
  background-image: url(../../wp-content/uploads/2024/05/procedure04.webp);
}
a.btn-item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  background-size: contain;
}
a.btn-item::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 16px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 20px;
  height: 20px;
/*  任意の矢印画像パスに変更ください  */
  background-image: url("https://dl.dropbox.com/s/k78lkrpo4c5vuvu/btn_circle_white.svg?dl=0");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a.btn-item:hover::after {
  -webkit-transform: translate(4px, -50%);
          transform: translate(4px, -50%);
}

.column-item {
  padding: 0px 0px 0px 0px;	
  margin: 0px 0px 0px 0px;		
}

/*========= メインコンテンツ06 ===============*/
.container_main-contents06 {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 80px 0px 0px 0px;
      box-sizing: border-box;
      display: flex;
      flex-wrap: wrap;
}
@media screen and (max-width: 1080px){
.container_main-contents06 {
      padding: 10px 0px 0px 0px;
}}

.text_main-contents06 {
	flex: 1; 
	padding: 0px 80px 100px 0px; 
	display: flex; 
	flex-direction: column;
}
.sub-title_main-contents06{
	padding: 0px 0px 30px 0px;
}
@media screen and (max-width: 1080px){
.sub-title_main-contents06{
	padding: 0px 0px 20px 0px; 
}
.text_main-contents06 {
	padding: 40px 0px 30px 0px; 
}}

.btntextchange_main-contents06 {
	position: relative;
	border: 1px solid #555;
	border-radius:25px;
	min-width:210px;
	padding: 20px;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	color: #333;
	outline: none;
	transition: all .2s;
	margin: 25px 0px 0px 0px;
}
.btntextchange_main-contents06:hover {
	background:#333;
	color:#fff;
}
.btntextchange_main-contents06 span {
	position: absolute;
	left: 50%;top:50%;
	transform:translate(-50%,-50%);
	transition: all .5s;
	display: block;
	white-space: nowrap;
}
.btntextchange_main-contents06 span:nth-child(2) {
	opacity:0;
}
.btntextchange_main-contents06:hover span:nth-child(1) {
	opacity:0;
}
.btntextchange_main-contents06:hover span:nth-child(2) {
	opacity:1;
}
.btn_main-contents06 {
	text-align:left;
}
  .content-image_main-contents06 {
      width: 45%;
      object-fit: cover;
      border-radius: 10px;
}
@media (max-width: 1080px){
	.content-image_main-contents06 {
		width: 100%; 
		max-width: 100%;
}
.btn_main-contents06 {
	text-align:center;
}}
/*========= メインコンテンツ07===============*/
  .explanation_flex_main-contents_main-contents07 { 
	    display: flex; 
	    flex-direction: column; 
	    flex-wrap: wrap;
	    justify-content: space-between; 
	    width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        box-sizing: border-box;
	    text-align: left;
} 
  .explanation_text_body_main-contents07 { 
		padding: 0px 0px 0px 0px; 
		flex: 70%;　
}
@media (max-width: 1080px) {
  .explanation_text_body_main-contents07 { 
		padding: 0px 0px 0px 0px; 
}}   
.container_main-contents07 { 
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0px 0px 0px 0px;
            box-sizing: border-box;
}
@media screen and (max-width:1080px){
.container_main-contents07 { 
            padding-top: 50px;
}	}
@media screen and (max-width: 400px){
   .container_main-contents07 { 
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 0px 0px 0px;
            box-sizing: border-box;
}}
   .slidecont{
	 text-align: center;
	 padding: 0px 0px 0px 0px;
	 margin: 0px 0px 0px 0px;  
}
  .slideitem{
	 text-align: left;
	 padding: 0px 0px 0px 0px;
	 margin: 0px 0px 0px 0px;  
}
.text-hidden_main-contents07{
	position: absolute;
	right: 20px;
	bottom: 20px;
	margin: 0px 0px 0px 100px;
	opacity: 0;
}
.slideitem:hover .text-hidden_main-contents07 {
    opacity: 1;
transition: opacity .5s .5s;
}
.cp_accordionslide01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	visibility: hidden;
	width: 100%;
	height: 60vh;
}
@media screen and (max-width: 1080px){
.cp_accordionslide01 {
	height: 20vh;
}}

.cp_accordionslide01 .slideitem {
	position: relative;
	visibility: visible;
	width: 15%;
	height: 100%;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-out;
	        transition: all 0.5s ease-out;
	color: white;
}
.cp_accordionslide01 .slideitem:nth-child(1) {
	position: relative;
	background-image: url("../img/top/Top03__kmc.webp");
	background-size: cover;
	background-position: center;
}
.cp_accordionslide01 .slideitem:nth-child(2) {
	position: relative;
	background: url("../img/top/Top04__kmc.webp");
	background-size: cover;
	background-position: center;
}
.cp_accordionslide01 .slideitem:nth-child(3) {
	position: relative;
	background: url("../img/top/Top05__kmc.webp");
	background-size: cover;
	background-position: center;
}
.cp_accordionslide01 .slideitem:nth-child(4) {
	position: relative;
	background: url("../img/top/Top06__kmc.webp");
	background-size: cover;
	background-position: center;
}
.cp_accordionslide01 .slideitem:nth-child(5) {
	position: relative;
	background: url("../img/top/Top07__kmc.webp");
	background-size: cover;
	background-position: center;
}
.cp_accordionslide01 .slideitem:nth-child(6) {
	position: relative;
	background: url("../img/top/Top08__kmc.webp");
	background-size: cover;
	background-position: center;
}
.cp_accordionslide01 .slideitem:nth-child(7) {
	position: relative;
	background: url("../img/top/Top09__kmc.webp");
	background-size: cover;
	background-position: center;
}

.cp_accordionslide01:hover .slideitem:hover  {
	width: 60%;
}
.cp_accordionslide01 .slideitem h3 {
	font-size: 1.4em;
	padding: 0.5em;
}
.cp_accordionslide01 .slideitem p {
	padding: 0.5em;
}
@media only screen and (max-width:768px) {
	.cp_accordionslide01 .slideitem h3 {
		font-size: 0.8em;
		word-wrap: break-word;
	}
	.cp_accordionslide01 .slideitem p {
		font-size: 0.7em;
		word-wrap: break-word;
	}
	.cp_accordionslide01 .slideitem {
		width: 20%;
	}
	.cp_accordionslide01:hover .slideitem {
		width: 15%;
	}
}
    .custom-imagemain_contents07 {
        width: 150px; 
        height: auto; 
        display: block; 
        margin: 0 auto; 
}
    .new-content_main-contents07 { 
		display: none;
}
@media screen and (max-width: 1080px) {
    .old-content_main-contents07 {
        display: none;
}
	.new-content_main-contents07 { 
		display: block; 
		padding: 0 40px;
		padding-top: 60px;
}
	.container_main-contents04 {
        padding-bottom: 40px;			
}}
    .text-box_main-contents07 {
	    margin: 2em auto;
	    padding:1em 2em 2em;
	    background-color: #f5f5f1; 
	    border-radius:1px;
		display: flex;
        align-items: center;
		justify-content: center;
}
   .text_main-contents07{
		display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
}
    .text-box_main-contents07 .box-title_main-contents07 .box-text_main-contents07 {
	    color: #030303; 
	    font-size: 18px;
	    font-weight: bold;
}

    .text-box_main-contents07 {
	    font-family: "Font Awesome 5 Free";
	    font-size: 18px;
		display: flex;
		align-items: center;
}
    .icon_main-contents07 {
        width: 70px;
        height: 70px; 
        margin-right: 40px;
}
    .text_main-contents07 {
		display: flex;
		align-items: flex-start;
}

   .box-title_main-contents07{
	    font-weight: bold;
	    font-size: 15px;
}
.item-content03, .item-content04, .item-content05, .item-content06, .item-content07, .item-content08, .item-content09 {
            width: 100%;
            height: 360px;
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
}
        @media (max-width: 650px) {
        .item-content03, .item-content04, .item-content05, .item-content06, .item-content07, .item-content08, .item-content09 {
		    height: 170px;
}}
        .item-content03 {
            background-image: url(../img/top/Top03__kmc.webp);
}
        .item-content04 {
            background-image: url(../img/top/Top04__kmc.webp);
}
        .item-content05 {
            background-image: url(../img/top/Top05__kmc.webp);
}
        .item-content06 {
            background-image: url(../img/top/Top06__kmc.webp);
}
        .item-content07 {
            background-image: url(../img/top/Top07__kmc.webp);
}
        .item-content08 {
            background-image: url(../img/top/Top08__kmc.webp);
}
        .item-content09 {
            background-image: url(../img/top/Top09__kmc.webp);
}
@media screen and (max-width:1080px){
.background_main-contents07 {
	background: #f5f5f1;
	padding: 40px 0;
}}
/*========= フッターフローティングメニュー ===============*/
.floating-menu_footer {
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0px;
    z-index: 1000;
    text-align: center;
	background: #004097;
	height: 70px;
	justify-content: space-around;
	align-items: center;
}
@media screen and (min-width:780px){
.floating-menu_footer {	
    height: 0px;
}}
.menu-box_footer{
	display: flex;
	flex-grow: 1;
	flex-direction: row;
	padding: 10px;
	justify-content: center;
}
@media screen and (min-width:780px){
.menu-box_footer{
	display: none;
}}
a.footer-box {
    width: 50%;
    border: 1px solid white;
    height: 100%;
    display: flex;
    align-items: center;
}
.icon-tel_footer {
	background-image: url(../../wp-content/uploads/2024/05/procedure02.webp);
	width: 5%;
	padding: 5px;
}
@media screen and (min-width:780px){
.icon-tel_footer {
	display: none;
}}
.icon-web_footer {
	background-image: url(../../wp-content/uploads/2024/05/procedure01.webp);
	width: 5%;
	padding: 5px;
}
@media screen and (min-width:780px){
.icon-web_footer {
	display: none;
}}
.text_footer{
	color: white;
}
@media screen and (min-width:780px){
.text_footer{
	display: none;
}}
@media screen and (max-width:780px) {
.info-left {
	display: none;
}}
.info-left-sp {
    display: none;
}
@media screen and (max-width:780px) {
.info-left-sp {
	display: block;
	width: 96%;
    max-width: 1400px;
    margin: auto;
}}
.info-left-under-sp {
    display: none;
}
@media screen and (max-width:780px) {
.info-left-under-sp {
	display: block;
	width: 96%;
    max-width: 1400px;
    margin: auto;
	text-align: center;
}}