@charset "utf-8";
/* CSS Document */
body{
	line-height: 1.8;
	text-size-adjust: 100%;
 　　-webkit-text-size-adjust: 100%;/*Chrome,Safari*/
 　　-ms-text-size-adjust: 100%;/*EgdeMobile*/
 　　-moz-text-size-adjust: 100%;/*firefox*/
    font-family: 'myfont-Regular'!important;
    font-size:100%;/*ユーザー設定の文字サイズを正しく反映*/
    width: 100%;
    overflow-x: hidden;
    letter-spacing: 0.05em;
}
*{
    box-sizing:border-box; /*余白や線を幅や高さに含める*/
}
img{
	max-width: 100%;/*画像が親要素からはみ出すのを防ぐ*/
    height: auto;
}
a {
	text-decoration: none!important;
}
ul {
    list-style: none!important;
    padding: 0;
}
.clear{
	clear: both;
}
/*//////////////フォント//////////////*/
@font-face {
  font-family: 'myfont-Bold';
    src: url('../fonts/NotoSansJP-Bold.eot'); /* IE9 Compat Modes */
    src:url('../fonts/NotoSansJP-Bold.woff') format('woff'), /* Modern Browsers */
    url('../fonts/NotoSansJP-Bold-ttf.ttf')  format('truetype'); /* Safari, Android, iOS */
}
.font_Noto-bold {
  font-family: 'myfont-Bold';
}
@font-face {
  font-family: 'myfont-Medium';
    src: url('../fonts/NotoSansJP-Medium.eot'); /* IE9 Compat Modes */
    src:url('../fonts/NotoSansJP-Medium.woff') format('woff'), /* Modern Browsers */
    url('../fonts/NotoSansJP-Medium-ttf.ttf')  format('truetype'); /* Safari, Android, iOS */
}
.font_Noto-m {
  font-family: 'myfont-Medium';
}
@font-face {
  font-family: 'myfont-Regular';
    src: url('../fonts/NotoSansCJKjp-Regular.eot'); /* IE9 Compat Modes */
    src:url('../fonts/NotoSansCJKjp-Regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/-NotoSansCJKjp-Regular-ttf.ttf')  format('truetype'); /* Safari, Android, iOS */
}
.font_Noto-r {
  font-family: 'myfont-Regular';
}
/*アンドロイド　セリフ体*/
@font-face {
  font-family: 'myfont-SemiBold';
    src: url('../fonts/NotoSerifJP-SemiBold.eot'); /* IE9 Compat Modes */
    src:url('../fonts/NotoSerifJP-SemiBold.woff') format('woff'), /* Modern Browsers */
    url('../fonts/NotoSerifJP-SemiBold-ttf.ttf')  format('truetype'); /* Safari, Android, iOS */
}
.font_Serif-semiBold {
  font-family: 'myfont-SemiBold';
}
@font-face {
  font-family: 'myfont-Serif_Medium';
    src: url('../fonts/NotoSerifJP-Medium.eot'); /* IE9 Compat Modes */
    src:url('../fonts/NotoSerifJP-Medium.woff') format('woff'), /* Modern Browsers */
    url('../fonts/NotoSerifJP-Medium-ttf.ttf')  format('truetype'); /* Safari, Android, iOS */
}
.font_Serif-m {
  font-family: 'myfont-Serif_Medium';
}
@font-face {
	font-family: 'myfont-Serif_Regular';
    src:url("../fonts/NotoSerifJP-Regular.otf"); /* IE9 Compat Modes */
    src:url('../fonts/NotoSerifJP-Regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/NotoSerifJP-Regular-ttf.ttf')  format('truetype'); /* Safari, Android, iOS */
}
.font_Serif-r {
  font-family: 'myfont-Serif_Regular';
}
.mimincho { 
	font-family: "Sawarabi Mincho";
}
/*Alte_DIN_Mittelschrift　セリフ体*/
@font-face {
  font-family: 'myfont-Alte';
    src: url('../fonts/alte.eot'); /* IE9 Compat Modes */
    src:url('../fonts/alte.woff') format('woff'), /* Modern Browsers */
    url('../fonts/alte.ttf')  format('truetype'); /* Safari, Android, iOS */
}
.font_Alte_DIN {
  font-family: 'myfont-Alte';
}
/*//////////////動き//////////////*/
/*下からフェイードインで表示*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1650ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*テキストが左から右へ流れるように表示*/
.slide-in {
  overflow: hidden;
    display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:1.8s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes slideTextX100 {
from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
  opacity: 0;
}
to {
  transform: translateX(0);/*要素を元の位置に移動*/
  opacity: 1;
}
}
.slide_t{
  overflow: hidden;/*左右アニメーションで画面からはみ出る際に出る横スクロールバーを隠す*/
  margin-bottom: 0rem;
}
.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:1.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX-100 {
from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
  opacity: 0;
}
to {
  transform: translateX(0);/*要素を元の位置に移動*/
  opacity: 1;
}
}
/*ふわふわ上下に動く*/
.updown {
    animation-name:updown1;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 3s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
/*    animation-iteration: */
	
}
 
@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/*////////////Gナビ////////////*/
div#menu-container {
    position: relative;
    width: 100%;
    z-index: 4;
}
img.top_logo {
    width: 300px;
}
.h_top-logo a{
    display:flex;
    align-items: center;
    margin-left: 120px;
}
@media screen and (max-width:1450px) {
.h_top-logo a{
    margin-left: 60px;
}
}
@media screen and (max-width:1450px) {
.h_top-logo a{
    margin-left: 60px;
}
}
@media screen and (max-width:1199px) {
.h_top-logo a{
    margin-left: 30px;
}
}
@media screen and (max-width:1024px) {
.h_top-logo a{
    margin-left: 0px;
}
}
@media screen and (max-width:1199px) {
img.top_logo {
    width: 230px;
    height: auto;
}
}
@media screen and (max-width:767px) {
img.top_logo {
    width: 200px;
    height: auto;
    margin: 5px 0px 0px 0px;
}
}
.h_top-logo span{
	vertical-align: middle;
    font-size: 16px;
    margin: 16px 0px 0px 15px;
    font-family: 'myfont-Medium';
}
@media screen and (max-width:1450px) {
.h_top-logo span{
    font-size: 13px;
    margin: 22px 0px 0px 15px;
}
}
@media screen and (max-width:1024px) {
.h_top-logo span{
    font-size: 10px;
    margin: 18px 0px 0px 15px;
}
}
@media screen and (max-width:767px) {
.h_top-logo span{
    margin: 12px 0px 0px 0px;
}
}
header.nav{ 
	width:100%;
	display:flex;  /*ロゴとulを横に並べる*/
    align-items: center;
    justify-content: space-between;
    position: absolute;
    margin-top: 55px;
    z-index: 3;
}
@media screen and (max-width:1199px) {
header.nav{ 
    padding: 0px 0px 0px 15px;
    height: 65px;
    margin-top: 25px;
}
}
@media screen and (max-width:991px) {
header.nav{ 
    height: 50px;
}
}
@media screen and (max-width:767px) {
header.nav{ 
    padding: 0px 0px 0px 10px;
    margin-top: 0px;
}
}
.g_nav{
    font-family: 'myfont-Medium';
	font-size: 15px;
	background: #fff;
    border-radius: 50px;
    margin-right: 145px;
}
@media screen and (max-width:1440px) {
.g_nav{
    margin-right: 60px;
}
}
@media screen and (max-width:991px) {
.g_nav{
    display: none;
}
}
.g_nav ul{
    margin: 0px 50px;
    display:flex;
    align-items: center;
    list-style:none;
}
@media screen and (max-width:1199px) {
.g_nav ul{
    margin-left: 40px;
}
}
@media screen and (max-width:1024px) {
.g_nav ul{
    display: none;
}
}
.g_nav.information p {
    padding: 10px 0px;
}
ul.accordion-header_box li{
    padding: 25px 25px 15px;
}
@media screen and (max-width:1366px) {
ul.accordion-header_box li{
    padding: 15px 5px 15px;
}
}
.g_nav ul li {
    padding: 20px 25px;
}
@media screen and (max-width:1450px) {
.g_nav ul li {
    padding: 20px 15px;
}
}
/*お問い合わせボタン*/
.nav-contact{
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100px;
    width: 191px;
    display: flex;
}
.nav-contact_link{
    display: block;
    color: #fff;
    background: #028D5E;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .3s;
}
.nav-contact_link i,
.nav-contact_link span{
    transition: all .3s;
}
.nav-contact_link:hover{
    color: #fff;
}
.nav-contact_link:hover i,
.nav-contact_link:hover span{
    color: #fff;
    opacity: .7;
}
.nav-contact_link i,
.nav-contact_link span{
    display: block;
    text-align: center;
}
.nav-contact_link i{
    font-size: 23px;
    margin-bottom: 10px;
}
.nav-contact_link span{
    font-size: 20px;
}
.nav-visible{
    position: absolute;
    right: 191px;
    top: 0px;
}
@media screen and (max-width:1460px) {
    .nav-visible{
        display: none;
    }
    .nav-contact_link{
        display: none;
    }
}
.nav-visible ul{
    display: flex;
    margin: 0px;
}
.nav-visible ul li{
    height: 100px;
    font-size: 18px;
}
.nav-visible ul li a{
    display: block;
    height: 100px;
    padding: 35px 50px;
    transition: color .3s;
}
.nav-visible ul li a:hover{
    color: #028D5E;
}
/*製品案内*/
ul.accordion-header_box li {
    padding: 20px 10px;
}
.g_nav ul li a:hover{
    color: #018D5E;
    transition: all 300ms ease-in-out;
}
.g_nav img.services_img_nav {
    vertical-align: middle;
}
.g_nav span {
    vertical-align: middle;
    font-size: 15px;
    font-family: 'myfont-Medium';
}
@media screen and (max-width:1199px) {
.g_nav span {
    font-size: 13px;
}
}
/*Gナビのアコーディオンメニュー*/
.g_nav li ul {
    opacity: 0;
    position: absolute;
    list-style: none;
    visibility: hidden;
    transition: .5s;
    top: 100%;
	left: 59%;
	margin: 0;
    padding: 0;
    z-index: 9999;
	display: flex;
	text-align: center;
    width: 33%;
	justify-content: center;
}
@media screen and (max-width:1440px) {
.g_nav li ul {
    width: 36%;
}
}
@media screen and (max-width:1199px) {
.g_nav li ul {
    width: 45%;
    left: 49%;
}
}
.g_nav li:hover ul {
    opacity: 1;
    display: flex;
    align-self: flex-start !important;
    justify-content: center;
    visibility: visible;
    background: rgb(1,141,94,0.8);
    transition: .5s;
}
ul.accordion-header_box li:hover{
    opacity: 1;
    display: flex;
    justify-content: center;
    visibility: visible;
    transition: .5s;
	color: #E67956;
}
.g_nav li:hover ul li a{
	color: #fff;
	font-size: 15px;
	font-family: 'myfont-Medium';
    height: 100%;
}
.g_nav li a p:hover{
    color: #66e254;
	transition: all 300ms ease-in-out;
}
ul.accordion-header_box li a p {
	text-align: left;
margin-bottom: 0rem;
font-size: 13px;
}
p.g_nav_img_t {
    margin-left: 50px;
    font-size: 25px;
    font-family: 'myfont-Serif_Medium';
    letter-spacing: 2px;
}
ul.accordion-header_box li.g_nav_img{
    padding: 20px 40px 20px 5px;
}
.g_nav ul li:hover {
    cursor: pointer;
    transition: .5s;
}
.g_nav ul li:hover ul li {
  width: 300px;
  height: 180px;
}

@media screen and (max-width:1811px) {
    .g_nav ul li:hover ul li {
        height: 180px;
    }
}
ul.accordion-header_box.accordion-header_box_place {
    width: 210px!important;
    display: block!important;
    left: 77%;
    padding-top: 10px;
	padding-bottom: 10px;
}
ul.accordion-header_box.accordion-header_box_place li{
    padding: 10px 25px 10px;
}
.gnav__wrap li a span{
  font-size: 16px;
  font-family: 'myfont-Medium';
}
@media screen and (max-width:767px) {
.gnav__wrap li a span{
  font-size: 13px;
  height: 20px!important;
}
}
@media screen and (max-width:767px) {
.gnav__wrap ul.menu1 li a span{
  font-size: 13px;
  height: 20px!important;
}
}
.gnav__wrap li a p{
  font-size: 16px;
  font-family: 'myfont-Medium';
  margin-bottom: 0rem;
}
@media screen and (max-width:1024px) {
.gnav__wrap li a p{
  font-size: 13px;
}
}
@media screen and (max-width:767px) {
.gnav__wrap li a p{
  margin-bottom: 0.3rem;
}
}
.accordion-header_box ul li{
    padding: 0px 15px;
}
i.far.fa-chevron-circle-right {
    font-weight: 700;
}
img.services_img_nav {
    display: block;
    margin: auto;
    height: 100px;
}
@media screen and (max-width:1450px) {
img.services_img_nav {
    height: 80px;
}
}
@media screen and (max-width:767px) {
img.services_img_nav {
    height: 100px;
    width: 100%;
}
}
img.con3_icon {
    width: 300px!important;
    height: auto!important;
}
/*//////////////////ハンバーガーメニュー//////////////////*/
/*ここに来たらjsで固定される*/
/*固定される前のヘッダー*/
/*スクロールすると表示される*/
.sp_top_logo_box {
    position: relative;
    z-index: 3;
    display: inline-block;
    top: 10px;
}
@media screen and (max-width:1460px){
    .sp_top_logo_box {
        top: 0px;
    }
}
@media screen and (max-width:1196px){
    .sp_top_logo_box {
        height: 48px;
    }
    .pc_nav_logo{
        height: 38px !important;
        width: 100% !important;
        margin: 5px !important;
    }
}
#nav-top {
    width: 100%;
}
.total-nav_top {
    position: fixed;
    z-index: 80;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100px;
    background: #fff;
}
@media screen and (max-width:1460px){
    .total-nav_top {
        height: 70px;
    }
}
.kaso-menu .total-nav_top{
    background: #fff;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
}
@media screen and (max-width:1196px){
.total-nav_top {
    height: 56px;
}
}
@media screen and (max-width:1197px){
    .total-nav_top {
        height: 56px;
    }
}
@media screen and (max-width:767px){
.total-nav_top {
    display: block!important;
    height: 60px;
    height: 45px;
	background-color: transparent;
}
}
.total-nav_top_products{
    position: relative;
}
.total-nav_top_products .accordion-header_box{
    visibility: hidden;
    position: absolute;
    background: rgb(1,141,94,0.8);
    overflow: hidden;
    opacity: 0;
    height: 200px;
    transition: .5s;
}
.total-nav_top_products .accordion-header_box li{
    width: 200px;
}
.total-nav_top_products .accordion-header_box li a{
    padding: 10px;
    color: #fff;
}
.total-nav_top_products .accordion-header_box li a:hover{
    color: #66e254;
}
.total-nav_top_products:hover .accordion-header_box{
    visibility: visible;
    opacity: 1;
    transition: .5s;
}
img.pc_nav_logo {
    width: 309px;
    height: auto;
    margin: 10px 0px 0px 10px;
}
@media screen and (max-width:991px){
img.pc_nav_logo {
    width: 215px;
    margin: 5px 0px 0px 10px;
}
}
@media screen and (max-width:767px){
 img.pc_nav_logo {
    width: auto !important;
 }
img.pc_nav_logo--top {
    display: none;
}
}
/*リストのレイアウト設定*/
#sp_nav li{
  list-style: none;
}
/*丸の拡大*/
.circle-bg{
    position: fixed;
    z-index:9;
    width: 100px;
    height: 100px;
    border-radius: 50%;
	/*丸のスタート位置と形状*/
    transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
	background: #fff;
}
.circle-bg.circleactive{
    transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}
/*ボタン*/
.openbtn1{
	display:block;
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    border-radius: 50%;
    top: 3px;
    right: 5px;
    width: 70px;
    height: 70px;
}
.openbtn1:hover{
    transition: .5s;
    transform: scale(1.1);
}
@media screen and (max-width:1199px) {
.openbtn1{
    top: 7px;
    right: 0px;
    width: 60px;
    height: 50px;
}
}
@media screen and (max-width:991px) {
.openbtn1{
    top: 0px;
}
}
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 19px;
	height: 3px;
    border-radius: 2px;
    background-color: #098D5E;
    width: 45%;
}
@media screen and (max-width:1440px) {
.openbtn1 span{
    left: 17px;
}
}
@media screen and (max-width:1199px) {
.openbtn1 span{
    left: 14px;
}
}
@media screen and (max-width:991px) {
.openbtn1 span{
    height: 2px;
}
}
@media screen and (max-width:767px) {
.openbtn1 span{
    left: 25px;
}
}
.openbtn1 span:nth-of-type(1) {
  top:21px; 
}
@media screen and (max-width:1440px) {
.openbtn1 span:nth-of-type(1) {
  top:18px; 
}
}
@media screen and (max-width:1199px) {
.openbtn1 span:nth-of-type(1) {
  top:14px; 
}
}
.openbtn1 span:nth-of-type(2) {
  top:32px;
}
@media screen and (max-width:1440px) {
.openbtn1 span:nth-of-type(2) {
  top:28px; 
}
}
@media screen and (max-width:1199px) {
.openbtn1 span:nth-of-type(2) {
  top:23px; 
}
}
@media screen and (max-width:767px) {
.openbtn1 span:nth-of-type(2) {
  top:23px; 
}
}
.openbtn1 span:nth-of-type(3) {
  top: 44px;
}
@media screen and (max-width:1440px) {
.openbtn1 span:nth-of-type(3) {
  top:38px; 
}
}
@media screen and (max-width:1199px) {
.openbtn1 span:nth-of-type(3) {
  top:32px; 
}
}
@media screen and (max-width:767px) {
.openbtn1 span:nth-of-type(3) {
  top:32px; 
}
}
.openbtn1.active span:nth-of-type(1) {
    top: 26px;
    left: 22px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}
@media screen and (max-width:1440px) {
.openbtn1.active span:nth-of-type(1) {
    top: 22px;
    left: 20px;
    background-color: #018D5E;
}
}
@media screen and (max-width:1199px) {
.openbtn1.active span:nth-of-type(1) {
    top: 17px;
    left: 17px;
}
}
@media screen and (max-width:991px) {
.openbtn1.active span:nth-of-type(1) {
    top: 13px;
    left: 13px;
}
}
@media screen and (max-width:991px) {
.openbtn1.active span:nth-of-type(1) {
    top: 17px;
    left: 17px;
}
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3){
    top: 38px;
    left: 23px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}
@media screen and (max-width:1440px) {
.openbtn1.active span:nth-of-type(3) {
    top: 34px;
    left: 20px;
    background-color: #018D5E;
}
}
@media screen and (max-width:1199px) {
.openbtn1.active span:nth-of-type(3) {
    top: 29px;
    left: 17px;
}
}
@media screen and (max-width:767px) {
.openbtn1.active span:nth-of-type(3) {
    top: 29px;
    left: 17px;
}
}
/*ナビゲーションの縦スクロール*/
#sp_nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#sp_nav.panelactive #sp_nav-list{
     display: block; /*クラスが付与されたら出現*/
}
/*ナビゲーション*/
#sp_nav{
  opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 9999999;
    top: 0%;
    left:50%;
    transform: translate(-50%,20%);
}
/*背景が出現後にナビゲーションを表示*/
#sp_nav.panelactive {
    opacity:1;
}
/* 背景が出現後にナビゲーション li を表示*/
#sp_nav.panelactive #sp_nav-list{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
padding-bottom: 10px;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/*アクティブになったエリア*/
#sp_nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    top: -80px;
    width:75%;
    height: 100vh;
}
@media screen and (max-width:1570px) {
#sp_nav.panelactive{
    width:85%;
}
}
@media screen and (max-width:1366px) {
#sp_nav.panelactive{
    width:92%;
}
}
@media screen and (max-width:767px) {
#sp_nav.panelactive{
    width:100%;
}
}
@media screen and (max-width:767px) {
#sp_nav.panelactive{
    top: -90px;
}
}
.sp_nav_box {
    width: 24%;
    margin: auto;
    margin-top: 30px;
}
@media screen and (max-width:991px) {
.sp_nav_box {
    display: block;
    width: 50%;
}
}
@media screen and (max-width:767px) {
.sp_nav_box {
    width: 100%;
}
}
/*内容　テキスト*/
.sp_nav_box_text {
    margin: 50px 0px 100px 50px;
    font-family: 'myfont-Regular';
}
@media screen and (max-width:767px) {
.sp_nav_box_text {
    margin: 50px 0px 100px 19%;
}
}
.sp_nav_menu_box .sp_nav_menu{
  position: relative;
  cursor: pointer;
}
.sp_nav_menu_box .sp_nav_menu:hover{
	color: #098D5E;
	transition: .5s;
}
.sp_nav_menu_box .sp_nav_menu:before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #fff;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
}
.sp_nav_menu_box .sp_nav_menu:after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #fff;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%) rotate(90deg);
}
.sp_nav_menu_box .sp_nav_menu .active:after {
  display: none;
}
.sp_nav_menu_box .sp_nav_menu .active:after {
  display: none;
}
.sp_nav_menu_box .sp_nav_title{
    display: none;
    padding: 10px 0px 10px 15px;
    font-size: 14px;
}
@media screen and (max-width: 767px){
.sp_nav_menu_box .sp_nav_title{
    height: 35px;
    font-size: 13px;
}
}
.sp_nav_title {
/*    color: #fff;*/
    height: 35px;
}
.sp_nav_title a{
    color: #018D5E;
	height: 35px;
}
.sp_nav_title a:hover{
	color: #098D5E;
	transition: .5s;
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  width: 100%;
  height: 100%;
}
#contact_btn_box1, #contact_btn_box2{
  width: 100%;
  margin: 15px 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#contact_btn_box2{
    margin-bottom: 20px;
}
#button-7,#button-8 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #fff;
  border-radius: 30px;
  padding: 10px 0px;
  width: 306px;
}
@media screen and (max-width:1440px) {
#button-7,#button-8 {
	width: 290px;
}
}
@media screen and (max-width:1199px) {
#button-7,#button-8 {
    width: 240px;
}
}
@media screen and (max-width:991px) {
#button-7,#button-8 {
	width: 225px;
    padding: 7px 0px;
}
}
#button-7 a {
  position: relative;
  left: 0;
  transition: all .35s ease-Out;
  color:#E95532;
  font-size: 21px;
}
#button-8 a {
  position: relative;
  left: 0;
  transition: all .35s ease-Out;
  color:#2E98D1;
  font-size: 21px;
}
@media screen and (max-width:1440px) {
#button-7 a,#button-8 a  {
	font-size: 20px;
}
}
@media screen and (max-width:1199px) {
#button-7 a,#button-8 a  {
	font-size: 16px;
}
}
@media screen and (max-width:767px) {
#button-7 a,#button-8 a  {
	font-size: 14px;
}
}
#dub-arrow{
  width: 100%;
  height: 100%;
  background: #f27c60;
  left: -310px;
  position: absolute;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease-Out;
  bottom: 0;
}
#dub-arrow2{
  width: 100%;
  height: 100%;
  background: #60b9e9;
  left: -310px;
  position: absolute;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease-Out;
  bottom: 0;
}
#button-7 img, #button-8 img{
  width: 20px;
  height: auto;
}
#button-7:hover #dub-arrow,#button-8:hover #dub-arrow2{
  left: 0;
}
#dub-arrow i,#dub-arrow2 i{
	color: #fff;
}
#button-7:hover a,#button-8:hover a {
    left: 290px;
}
/*メイン画像*/
.js-boxInner-slider{
    border-radius: 0px !important;
}
/*/////メインスライダー/////*/
@media screen and (min-width: 1921px){
.slider-img_box img{
    width: 100%;
    height: auto;
}
}
@media screen and (max-width: 1920px){
.slider-img_box img{
	max-width: 100vw;
}
}
@media screen and (max-width: 1086px){
.slider-img_box img{
    margin-top: 0px;
}
}
.slider-top-con2 a img:hover{
    text-decoration: none!important;
    color: transparent!important;
}
.slider-img_box .boxInner_white_gr{
    display: none;
    opacity: 0;
}
.slider-img_box .boxInner_green{
    display: none;
    opacity: 0;
}
/*メインのタイトル*/
.slider-new-graduat_img{
    position: relative;
}
.main-title,
.main-title2{
    overflow: hidden;
    position: absolute;
    top: 0%;
    height: 100%;
    z-index: 3;
}
.main-title{
    width: 50%;
}
.main-title2{
    width: 60%;
    left: 139px;
}
@media screen and (max-width: 767px){
    .main-title,
    .main-title2{
        width: 100% !important;
        left: inherit;
        right: 0px;
    }
}

.main1-title,
.main1-title2,
.main1-title3{
    position: absolute !important;
    background: #fff;
    overflow: hidden;
    font-style: italic;
    font-family: 'myfont-Bold' !important;
    font-size: 3vw !important;
    padding: 0px 15px 0px 15px;
    z-index: 3;
}
@media screen and (max-width: 767px){
    .main1-title,
    .main1-title2,
    .main1-title3{
        font-size: 16px !important;
    }
}
.sub-title,
.sub-title2,
.sub-title3,
.sub-title4{
    overflow: hidden;
    position: absolute;
    top: 0%;
    width: 50%;
    height: 100%;
    z-index: 3;
}
@media screen and (max-width: 767px){
.sub-title,
.sub-title2,
.sub-title3{
    width: 100% !important;
    right: 0px;
    left: inherit !important;
}
}
.sub-title{
    width: 50%;
}
.sub-title2{
    width: 60%;
    left: 139px;
}
.sub1-title,
.sub1-title2{
    position: absolute !important;
    font-family: 'myfont-Medium' !important;
    font-size: 1.5vw !important;
    color: #fff;
}

@media screen and (max-width: 767px){
    .sub1-title,
    .sub1-title2{
        font-size: 10px !important;
    }
}
/*スライダー一枚目*/
.main1-title--1{
    right: 0;
    top: 43%;
    color: #235840 !important;
    animation-name: play2 !important;
    transform: translateX(100%);
}
.main1-title2--1{
    right: 0;
    top: 55%;
    color: #235840 !important;
    animation-name: play2 !important;
    transform: translateX(100%);
}
.sub1-title--1{
    right: 0px;
    top: 71%;
    background: #278826 !important;
    animation-name: play2 !important;
    transform: translateX(100%);
}
.sub1-title--1:before{
    top: 0px !important;
    background: #278826 !important;
}
.sub1-title2--1{
    right: 0px;
    top: 76%;
    background: #278826 !important;
    animation-name: play2 !important;
    transform: translateX(100%);
}
.sub1-title2--1:before{
    top: 0px !important;
    background: #278826 !important;
}
.main1-catch{
    position: absolute;
}

.main1-catch--1{
    top: 27%;
    left: 12%;
}
.main1-catch--2{
    top: 26%;
    left: 8%;
}
.main1-catch--3{
    top: 28%;
    left: 8%;
}
.main1-catch--4{
    top: 28%;
    left: 8%;
}
@media screen and (max-width: 1091px){
    .main1-catch--1{
        top: 17% !important;
        left: 12%;
    }
    .main1-catch--2{
        top: 18% !important;
        left: 8%;
    }
    .main1-catch--3{
        top: 16% !important;
        left: 8%;
    }
    .main1-catch--4{
        top: 21% !important;
        left: 8%;
    }
}
@media screen and (max-width: 767px){
    .main1-catch--1{
        width: 213px;
        top: 39% !important;
        left: 6%;
    }
    .main1-title--1{
        top: initial;
        bottom: 201px;
    }
    .main1-title2--1{
        top: initial;
        bottom: 160px;
    }
    .sub1-title--1{
        top:initial;
        bottom: 130px;
    }
    .sub1-title2--1{
        top:initial;
        bottom: 108px;
    }
}

/*スライダー二枚目*/
.main1-title--2{
    left: 0px;
    top: 43%;
    color: #10547e !important;
}
@media screen and (max-width: 767px){
    .main1-title--2{
        top: 31%;
    }
}
.main1-title2--2{
    left: 0px;
    top: 55%;
    color: #10547e !important;
}
@media screen and (max-width: 767px){
    .main1-title2--2{
        top: 43% ;
    }
}
.main1-title3--2{
    left: 0px;
    top: 55%;
    color: #10547e !important;
}
.sub1-title--2{
    left: 0px;
    top: 71%;
    background: #1e82c0 !important;
    transform: translateX(100%);
}
.sub1-title--2:before{
    top: 0px !important;
    background: #1e82c0 !important;
}
.sub1-title2--2{
    left: 0px;
    top: 76%;
    background: #1e82c0 !important;
    transform: translateX(100%);
}
.sub1-title2--2:before{
    top: 0px !important;
    background: #1e82c0 !important;
}

.main1-catch--2{
    top: 28%;
    left: 14%;
}
@media screen and (max-width: 767px){
    .main1-catch--2{
        width: 173px;
        top: 33% !important;
        left: 2%;
    }
    .main1-title--2{
        top: initial;
        bottom: 222px;
    }
    .main1-title2--2{
        top: initial;
        bottom: 187px;
    }
    .main1-title3--2{
        top: initial;
        bottom: 152.5px;
    }
    .sub1-title--2{
        top: initial;
        bottom: 114px;
    }
    .sub1-title2--2{
        top: initial;
        bottom: 94px;
    }
}
/*スライダー三枚目*/
.main1-title--3{
    left: 0px;
    top: 43%;
    color: #018d5e !important;
}
.sub-title3{
    width: 70%;
    left: 139px;
}
.sub1-title--3{
    left: 0px;
    top: 59%;
    background: #60b054 !important;
    transform: translateX(100%);
}
.sub1-title--3:before{
    top: 0px !important;
    background: #60b054 !important;
}
.sub1-title2--3{
    left: 0px;
    top: 64%;
    background: #60b054 !important;
    transform: translateX(100%);
}
.sub1-title2--3:before{
    top: 0px !important;
    background: #60b054 !important;
}

.sub1-title3--3{
    left: 0px;
    top: 73%;
    background: #60b054 !important;
    transform: translateX(100%);
}

.sub1-title3--3:before{
    top: 0px !important;
    background: #60b054 !important;
}
@media screen and (max-width: 767px){
    .main1-catch--3{
        width: 240px;
        top: 35% !important;
        left: 3%;
    }
    .main1-title--3{
        top: initial;
        bottom: 205px;
    }
    .sub1-title--3{
        top: initial;
        bottom: 166px;
    }
    .sub1-title2--3{
        top: initial;
        bottom: 145px;
    }
    .sub1-title3--3{
        top: initial;
        bottom: 124px;
    }
}
/*スライダー4枚目*/
.main1-title--4,
.main2-title--4{
    left: 0px;
    top: 43%;
    color: #406e81 !important;
}
.main2-title--4{
    top: 52%;
}
@media screen and (max-width: 767px){
    .main1-title--4,
    .main2-title--4{
        left: inherit;
        right: 0px;
        animation-name: play2 !important;
    }
}
.sub-title4{
    width: 70%;
    left: 139px;
}
@media screen and (max-width: 767px){
    .sub-title4{
        width: 100%;
        left: inherit;
        right: 0px;
    }
}
.sub1-title--4{
    left: 0px;
    top: 58%;
    background: #005568 !important;
    transform: translateX(100%);
}
@media screen and (max-width: 767px){
    .sub1-title--4{
        top: 70%;
        left: inherit;
        right: 0px;
        animation-name: play2 !important;
    }
    .main1-catch--4{
        top: 37% !important;
    }
    .main1-title--4{
        top: initial;
        bottom: 200px;
    }
    .main2-title--4{
        top: initial;
        bottom: 165px;
    }
    .sub1-title--4{
        top: initial;
        left: inherit;
        bottom: 137px;
    }
    .sub1-title2--4{
        top: initial;
        left: inherit;
        right: 0px;
        bottom: 116px;
        background: #005568 !important;
        animation-name: play2 !important;
    }
    .sub1-title2--4:before{
        top: 0px !important;
        background: #005568 !important;
    }
}

.sub1-title--4:before{
    top: 0px !important;
    background: #005568 !important;
}
@media screen and (max-width: 767px){
    .main1-catch--4{
        width: 243px;
        left: inherit;
        right: 0;
        top: 30%;
    }
}
.main1-catch{
    z-index: 3;
}
.main1-catch img{
    width: 100%;
    height: auto;
}
/*メインのタイトル*/
.wrapper_grop1{
	position: absolute;
    top: 28%;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 3;
	display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: overlay;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 5px 5px 3px rgb(21,21,21,0.5);
}
@media screen and (max-width:1440px) {
.wrapper_grop1{
    top: 26%;
}
}
@media screen and (max-width:1199px) {
.wrapper_grop1{
    top: 16%;
}
}
@media screen and (max-width:767px) {
.wrapper_grop1{
    top: 24%;
}
}
@media screen and (max-width:425px) {
.wrapper_grop1{
    top: 23%;
}
}
.wrapper_grop2{
	position: absolute;
    top: 38%;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 3;
	display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: overlay;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 5px 5px 3px rgb(21,21,21,0.5);
}
@media screen and (max-width:1440px) {
.wrapper_grop2{
    top: 35%;
}
}
@media screen and (max-width:1199px) {
.wrapper_grop2{
    top: 23%;
}
}
@media screen and (max-width:1024px) {
.wrapper_grop2{
    top: 23%;
}
}
@media screen and (max-width:767px) {
.wrapper_grop2{
    top: 33%;
}
}
.wrapper_grop3{
	position: absolute;
    top: 42%;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 3;
	display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: overlay;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 5px 5px 3px rgb(21,21,21,0.5);
}
@media screen and (max-width:425px) {
.wrapper_grop3{
    top: 41%;
}
}
.wrapper_grop4{
	position: absolute;
    top: 52%;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 3;
	display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: overlay;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 5px 5px 3px rgb(21,21,21,0.5);
}
@media screen and (max-width:425px) {
.wrapper_grop4{
    top: 50%;
}
}
/*メイン画像　２枚目*/
p.main_text.main_text_b {
    top: 44%;
    left: 21%;
}
@media screen and (max-width:767px) {
p.main_text.main_text_b,.main_text {
    display: none;
}
}
/*メイン画像　3枚目*/
p.main_text.main_text_c {
    top: 38%;
    left: -16%;
}
.main_text.inview.blur {
    font-size: 20px;
    font-family: 'myfont-Medium';
    color: #000;
}
p.main-title {
    font-size: 55px;
    font-family: 'myfont-Serif_Medium';
    line-height: 6rem;
    position: absolute;
    top: 43%;
    left: 7.6%;
    z-index: 91;
    letter-spacing: 0.08rem;
}
@media screen and (max-width:1440px) {
p.main-title {
    left: 5%;
    font-size: 50px;
    top: 50%;
}
}
@media screen and (max-width:1199px) {
p.main-title {
    font-size: 36px;
    line-height: 5rem;
    top: 46%;
}
}
@media screen and (max-width:991px) {
p.main-title {
    font-size: 35px;
    top: 16%;
    line-height: 4.5rem;
}
}
@media screen and (max-width:767px) {
p.main-title {
    top: 100px;
    font-size: 31px;
    line-height: 2.9rem;
    left: 4%;
}
}
@media screen and (max-width:425px) {
p.main-title {
    top: 110px;
}
}
p.main_t {
    color: #6c6c6c;
    font-family: 'Montserrat', sans-serif;
	font-size: 12px;
}
@media screen and (max-width:425px) {
p.main_t {
    font-size: 11px;
}
}
p.main_img_box_t {
    padding: 1rem 0px 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
	font-size: 14px;
    letter-spacing: 0.08rem;
    margin-bottom: 0rem;
}
@media screen and (max-width:1199px) {
p.main_img_box_t {
    margin-bottom: 1rem;
    margin-bottom: 0rem;
}
}
@media screen and (max-width:991px) {
p.main_img_box_t {
    font-size: 13px;
    padding: 1rem 0px 0px;
}
}
@media screen and (max-width:767px) {
p.main_img_box_t {
    font-size: 11px;
}
}
@media screen and (max-width:360px) {
p.main_img_box_t {
    font-size: 10px;
}
}
@media screen and (max-width:767px) {
p.con1_introdution_t {
    padding: 1.5rem 0px 0px;
    font-size: 13px;
}
}
p.sp_nav_box_text2 {
    margin-top: 20px;
    letter-spacing: 0.1em;
}
@media screen and (max-width:767px) {
p.sp_nav_box_text2 {
    font-size: 14px;
    margin-bottom: 0.5rem;
}
}
p.sp_nav_box_text2 a{
  color: #000;
}
p.sp_nav_box_text2 a:hover{
    color: #018D5E;
	transition: .5s;
}
p.sp_nav_box_text3 {
    margin-top: 10px;
    letter-spacing: 0.1em;
    font-size: 13px;
}
@media screen and (max-width:767px) {
p.sp_nav_box_text3 {
    font-size: 12px;
    margin-bottom: 0.5rem;
}
}
p.sp_nav_box_text3 a{
  color: #fff;
}
p.sp_nav_box_text3 a:hover{
  color: #a7d7f1;
  transition: .5s;
}
img.sp_top_logo {
    display: block;
    margin: auto;
    margin-top: 50px;
    width: 300px;
}
@media screen and (max-width:767px) {
img.sp_top_logo {
    display: unset;
    margin-left: 20px;
    width: 43%;
    height: auto;
}
}
@media screen and (max-width:425px) {
img.sp_top_logo {
    width: 60%;
}
}
.wrapper_grop1_2_sp{
	display: none;
}
@media screen and (max-width:767px) {
.wrapper_grop1_2_sp{
    display: block;
}
}
/*SP　メイン画像の上のテキスト*/
@media screen and (max-width:767px) {
img.main1-sp1.d-md-none.d-sm-block.d-block {
    position: relative;
    z-index: 1;
}
}
@media screen and (max-width:767px) {
img.main1-sp1_t.d-md-none.d-sm-block.d-block {
    position: absolute;
    z-index: 2;
    top: 72%;
}
}
@media screen and (max-width:415px) {
img.main1-sp1_t.d-md-none.d-sm-block.d-block {
    top: 50%;
}
}
/*//////////////////共通/////////////////*/
/*タイトルボックス*/
@media screen and (max-width:767px) {
.top_con_title_box {
    margin-left: 0%;
}
}
/*スライドしで表示されるタイトル*/
.top_slide_title {
    font-family: 'myfont-Bold';
    font-size: 30px;
}
@media screen and (max-width:1199px) {
.top_slide_title {
    font-size: 20px;
}
}
@media screen and (max-width:767px) {
.top_slide_title {
    font-size: 20px;
}
}
/*サブタイトル*/
.top_con_subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: bold;
}
@media screen and (max-width:767px) {
.top_con_subtitle {
    font-size: 10px;
    text-align: center;
}
}
/*共通カラー*/
.green{
	color: #018D5E;
}
.yel_green{
	color: #62B855;
}
.orange{
	color: #F29900;
}
.white{
	color: #fff;
}
/*コンテンツ1　Our Strength*/
.container-fluid.w-80 {
    width: 80%;
}
@media screen and (max-width:1024px) {
.container-fluid.w-80 {
    width: 100%;
}
}
.mt {
    margin-top: 100px;
}
@media screen and (max-width:991px) {
.mt {
    margin-top: 50px;
}
}
.top_con1_l {
    margin: 3% 0 0px;
}
@media screen and (max-width:1199px) {
.top_con1_l {
	margin-top: 20px;
}
}
@media screen and (max-width:767px) {
.top_con1_l {
    margin: auto;
}
}
@media screen and (max-width:991px) {
img.con1_img1 {
    margin-top: 50px;
}
}
/*背景表示の後、文字が表示される動き*/
.slide_bg_text{
    opacity: 0;
    transition: all .8s .0s ease;
}
.slide_bg_text.active{
    opacity: 1;
    overflow: hidden;
    font-family: 'myfont-Alte';
/*    width: 69%;*/
}
.slide_bg_text {
	height: auto;
	overflow: hidden;
}
@media screen and (max-width:767px) {
.slide_bg_text {
	margin: 20px 0 0 0px;
}
}
@media screen and (max-width:320px) {
.slide_bg_text {
    width: 100%;
}
}
.isPlay_green,.isPlay_orange {
  animation-name: play;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
  font-size: 55px;
  font-family: 'myfont-Alte';
  margin-bottom: 0rem;
  color: #fff;
}
@keyframes play {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}
@media screen and (max-width:1199px) {
.isPlay_green,.isPlay_orange {
    font-size: 35px;
}
}
/*緑バージョン Our Strength*/
.isPlay_green:before {
  animation-name: maskOut;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1.2em;
  background: #018D5E;
}
@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(100%);
  }
}
/*表示された後の背景*/
.boxInner1.boxInner_green{
    display: inline-block;
    overflow: hidden;
    background: #018D5E;
    line-height: 1.2;
    padding: 0px 4px;
    border-radius: 5px;
}
.boxInner1.boxInner_green:before,.boxInner2.boxInner_orange:before,.boxInner3.boxInner_white_gr:before.boxInner4.boxInner_white_light_gr:before{
    content:"";
    line-height: 1.2;
}
/*オレンジバージョン Products*/
.isPlay_orange:before {
  animation-name: maskOut;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1.2em;
  background: #F29900;
}
/*表示された後の背景*/
.boxInner2.boxInner_orange{
    display: inline-block;
    overflow: hidden;
    background: #F29900;
    line-height: 1.2;
    padding: 0px 4px;
    border-radius: 5px;
}
/*白背景にグリーンバージョン Pick Up!*/
.isPlay_white_gr {
  animation-name: play;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
  font-size: 55px;
  font-family: 'myfont-Alte';
  margin-bottom: 0rem;
  color: #018D5E;
}
@keyframes play {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}
@media screen and (max-width:1199px) {
.isPlay_white_gr {
    font-size: 35px;
}
}
.isPlay_white_gr:before {
  animation-name: maskOut;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1.2em;
  background: #fff;
}
/*表示された後の背景*/
.boxInner3.boxInner_white_gr,.boxInner4.boxInner_white_light_gr{
    display: inline-block;
    overflow: hidden;
    background: #fff;
    line-height: 1.2;
    padding: 0px 15px;
    border-radius: 5px;
}

.boxInner4 {
    border-radius: 5px;
}
/*白背景に薄いグリーンバージョン Company*/
.isPlay_white_light_gr {
  animation-name: play;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
  font-size: 55px;
  font-family: 'myfont-Alte';
  margin-bottom: 0rem;
  color: #52AF8D;
}
@keyframes play {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}
@keyframes play2 {
    from {
      transform: translateX(100%);
    }
    
    to {
      transform: translateX(0);
    }
  }
@media screen and (max-width:1199px) {
.isPlay_white_light_gr {
    font-size: 35px;
}
}
.isPlay_white_light_gr:before {
  animation-name: maskOut;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1.2em;
  background: #fff;
}











.top_our_strength_box{
    width: 90%;
}
@media screen and (max-width:1199px) {
.top_our_strength_box{
    width: 100%;
}
}
.top_our_strength_subtitle {
    margin-top: 20px;
    font-size: 22px;
	font-family: 'myfont-Medium';
    margin-bottom: 0rem;
}
@media screen and (max-width:1199px) {
.top_our_strength_subtitle {
    font-size: 18px;
}
}
@media screen and (max-width:991px) {
.top_our_strength_subtitle {
    margin-top: 0px;
}
}
@media screen and (max-width:767px) {
.top_our_strength_subtitle {
    margin-top: 15px;
    padding-right: 15px;
    line-height: 1.7;
}
}
.top_our_strength_text{
    font-size: 15px;
    margin-top: 30px;
}
@media screen and (max-width:1199px) {
.top_our_strength_text{
    font-size: 14px;
}
}
@media screen and (max-width:767px) {
.top_our_strength_text{
    font-size: 14px;
}
}
.top_our_strength_box_r {
    margin-top: 120px;
    margin-left: 9%;
}
@media screen and (max-width:991px) {
.top_our_strength_box_r {
    margin-top: 50px;
}
}
@media screen and (max-width:767px) {
.top_our_strength_box_r {
    margin-left: 0%;
}
}
.col-5.con1_r {
    margin: 80px 0% 0px 5%;
}
@media screen and (max-width:767px) {
.col-12.col-md-5.con1_r {
    padding-right: 0px;
    padding-left: 0px;
}
}
img.con1_img2 {
    display: block;
    margin: auto;
}
@media screen and (max-width:1199px) {
img.con1_img2 {
    margin-top: 50px;
}
}
/*READ MORE*/
.custom-btn {
    width: 240px;
	color: #fff;
  padding: 10px 25px;
  margin-top: 30px;
  font-family: 'Montserrat', sans-serif;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
}
@media screen and (max-width:767px) {
.custom-btn {
    width: 95%;
    display: block;
    margin: auto;
    margin-top: 25px;
}
}
/* 3 */
.btn-3 {
  background:#E67956;
  line-height: 42px;
  padding: 0;
  border: none;
  font-size: 13px;
}
@media screen and (max-width:767px) {
.btn-3 {
    line-height: 56px;
}
}
.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
   background:#E67956;
  transition: all 0.3s ease;
}
.btn-3:before {
  height: 0%;
  width: 2px;
}
.btn-3:after {
  width: 0%;
  height: 2px;
}
.btn-3:hover{
   background: transparent;
  box-shadow: none;
}
.btn-3:hover:before {
  height: 100%;
}
.btn-3:hover:after {
  width: 100%;
}
.btn-3 span:hover{
   color:#E67956;
}
.btn-3 span:before,
.btn-3 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
   background: #E67956;
  transition: all 0.3s ease;
}
.btn-3 span:before {
  width: 2px;
  height: 0%;
}
.btn-3 span:after {
  width: 0%;
  height: 2px;
}
.btn-3 span:hover:before {
  height: 100%;
}
.btn-3 span:hover:after {
  width: 100%;
}

/*コンテンツ2 Products*/
/*三角背景*/
.top_products_bg{
    position: relative;
    overflow: hidden;
    padding-bottom: 25%;
}
@media screen and (max-width:767px) {
.top_products_bg{
    padding: 50px 0px 150px;
}
}
.top_products_bg:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200vw;
    height: 100%;
    margin: 0% -32% 0;
	background: #F5F5F5;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(7deg);
	-ms-transform: rotate(7deg);
	transform: rotate(7deg);
	z-index: -1;
}
.container-fluid.products_w_m{
    width: 69%;
    padding-top: 13%;
}
@media screen and (max-width:1440px) {
.container-fluid.products_w_m{
    width: 80%;
}
}
@media screen and (max-width:1199px) {
.container-fluid.products_w_m{
    width: 90%;
}
}
@media screen and (max-width:767px) {
.container-fluid.products_w_m{
	padding-top: 3%;
    width: 100%;
}
}
.top_con2_products {
    background: #fff;
    box-shadow: 2px 3px 6px 0 rgb(0 0 0 / 9%);
	display: block;
	margin: auto;
	margin-top: 50px;
    padding-bottom: 30px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.top_con2_products .products_btn{
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
}
@media screen and (max-width:991px) {
.top_con2_products {
    margin-top: 25px;
    padding-bottom: 10px;
}
}
@media screen and (max-width:767px) {
.top_con2_products {
    margin-top: 25px;
}
}

.top_con2_products img{
    width: 100%;
}
.products_waku {
    padding: 5px 15px;
}
p.top_products_title {
    font-size: 20px;
    font-family: 'myfont-Bold';
}
@media screen and (max-width:1199px) {
p.top_products_title {
    font-size: 16px;
}
}
@media screen and (max-width:991px) {
p.top_products_text {
    font-size: 14px;
}
}
@media screen and (max-width:1024px) {
p.top_products_text {
    font-size: 14px;
}
}
@media screen and (max-width:767x) {
p.top_products_text {
    font-size: 13px;
}
}
/*products Read Moreボタン*/
.products_btn {
    font-family: 'myfont-Alte';
    text-align: right;
}
.products_btn a {
    border-radius: 50px;
    padding: 10px 15px;
}
/*オレンジ　ボタン*/
.products_btn.products_btn_orange,.products_btn.products_btn_orange a {
    color: #F29900;
    transition: all 300ms ease-in-out;
}
.products_btn_orange a:hover {
	color: #ffc156;
    background:#fdefd6;
}
/*グリーン　ボタン*/
.products_btn.products_btn_green,.products_btn.products_btn_green a {
    color: #018D5E;
    transition: all 300ms ease-in-out;
}
.products_btn_green a:hover {
	color: #3fbd92;
    background: #d1eae2;
}
/*黄緑　ボタン*/
.products_btn.products_btn_yel_green,.products_btn.products_btn_yel_green a {
    color: #62B855;
    transition: all 300ms ease-in-out;
}
.products_btn_yel_green a:hover {
	color: #91e184;
    background: #e6f4e4;
}

/*SP*/
@media screen and (max-width:991px) {
.products_scroll{
    overflow-x: scroll;
    overflow-y: hidden;
    height: 562px;
}
.row.products_sp {
    flex-wrap: nowrap;
}
}
@media screen and (max-width: 991px){
.col-lg-3.col-12.products_sp_w{
    flex: 0 0 35%;
}
}
@media screen and (max-width: 767px){
.col-lg-3.col-12.products_sp_w{
    flex: 0 0 45%;
}
}
@media screen and (max-width: 460px){
.col-lg-3.col-12.products_sp_w{
	flex: 0 0 70%;
}
}
/*コンテンツ3 Pick Up! */
/*三角背景*/
.top_pick_up_bg{
    position: relative;
    overflow: hidden;
    margin-top: -19%;
    z-index: 1;
}
@media screen and (max-width: 767px){
.top_pick_up_bg{
    padding-top: 10%;
}
}
.top_pick_up_bg:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200vw;
    height: 100%;
    margin: 0% -23% 0;
    background: linear-gradient(90deg, rgb(71, 170, 134), rgb(1, 141, 94));
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(7deg);
	-ms-transform: rotate(7deg);
	transform: rotate(7deg);
	z-index: -1;
}
.bg-clip_pickup {
	background-image: url("../img/bg-clip_pickup.png");
	background-position: bottom;
	background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    z-index: 1;
}
@media screen and (max-width:767px) {
.bg-clip_pickup {
    background-size: 187%;
}
}
.pick_up_w_m{
    padding-top: 13%;
}
@media screen and (max-width:767px) {
.pick_up_w_m{
	padding-top: 3%;
}
}
.top_pickup_box {
    margin-top: 30px;
}

.top_pickup_box:first-child{
    padding-right: 45px;
}
.top_pickup_box:last-child{
    padding-left: 45px;
}
@media screen and (max-width:767px) {
    .top_pickup_box:first-child{
        padding-right: 15px;
    }
    .top_pickup_box:last-child{
        padding-left: 15px;
    } 
}

.top_pickup_box_inner{
    background: #fff;
    box-shadow: 2px 3px 6px 0 rgb(0 0 0 / 9%);
    padding: 40px 0px;
    height: 100%;
    border-radius: 5px;
}

.top_pickup_box_inner_figure{
    text-align: center;
}

.top_pickup_box_inner_content{
    text-align: center;
    padding: 0px 40px;
}
@media screen and (max-width:767px) {
    .top_pickup_box_inner_content{
        padding: 0px 20px;
    }
}

.top_pickup_box_inner_content_title{
    font-size: 22px;
    font-weight: bold;
}
@media screen and (max-width:767px) {
    .top_pickup_box_inner_content_title{
        font-size: 18px;
    }
}
.top_pickup_box_inner_content_title--blue{
    color: #005FAC;
}
.top_pickup_box_inner_content_title--green{
    color: #018D5E;
}
.top_pickup_box_inner_content_text{
    font-size: 14px;
    line-height: 2.1;
    text-align: left;
}
@media screen and (max-width:767px) {
    .top_pickup_box_inner_content_text{
        font-size: 13px;
    }
}
.con3_img_ab_box {
    position: relative;
    z-index: 2;
    width: 100%;
}
@media screen and (max-width:991px) {
.con3_img_ab_box {
    position: sticky;
}
}
img.con3_img_a {
    position: relative;
    z-index: 2;
    margin-top: -20%;
}
@media screen and (max-width:991px) {
img.con3_img_a {
    display: block;
    margin: auto;
    margin-top: 30px;
}
}
img.con3_img_b {
    position: absolute;
    right: -54%;
    bottom: -25%;
    z-index: 1;
}
@media screen and (max-width:1440px) {
img.con3_img_b {
    right: -37%;
}
}
@media screen and (max-width:991px) {
img.con3_img_b {
    display: none;
}
}
.top_pickup_title {
    font-size: 22px;
    font-family: 'myfont-Medium';
}
@media screen and (max-width:1199px) {
.top_pickup_title {
    font-size: 16px;
}
}
.top_pickup_text {
    font-size: 14px;
    line-height: 2;
}
.top_pickup_text_box ul{
    margin-top: 66px;
}
@media screen and (max-width:767px) {
.top_pickup_text_box ul{
    margin-top: 30px;
}
}
.top_pickup_text_box ul li{
	display:inline;
	background-color:#FDEBCD;
	color: #F29900;
	font-family: 'myfont-Medium';
    border-radius: 5px;
    padding: 10px;
}
.top_pickup_text_box ul li:nth-of-type(2){
    margin-left: 20px;
}
.top_pickup_btn_box {
    text-align: center;
    padding: 35px 0px 105px;
}
@media screen and (max-width:1199px) {
.top_pickup_btn_box {
    padding: 35px 0px 70px;
}
}
/*ホバーでグラデーションに変化するボタン 白*/
.read-more_btn_wh{
    display: inline-block;
	text-align: center;
    text-decoration: none;
    outline: none;
    transition: all 0.4s ease-out;
    font-family: 'myfont-Alte';
    font-size: 20px;
    color: #fff;
    padding: 10px 0;  
    border-radius:30px;
    border:1px solid #fff;
	width: 240px;
}
@media screen and (max-width:1199px) {
.read-more_btn_wh{
    font-size: 16px;
}
}
.read-more_btn_wh:hover{
    /*ボタンの形状*/
    border-color:transparent;
    color: #fff;
    /*背景の色と形状*/
    background: linear-gradient(270deg, #018D5E 0%, #F4D03F 50%, #018D5E 100%);
	background-color: #F4D03F;
    background-size: 200% auto;
    background-position: right center;
}
/*コンテンツ4*/
.news_line1 {
    border-bottom: solid 1px #707070;
}
ul.news_box li{
	display: flex;
}
.news_box {
  font-size: 16px;
  letter-spacing: 0.08rem;
  padding: 35px 3% 35px;
  cursor: pointer;
  transition-duration: 0.2s;
  border-bottom: solid 1px #707070;
  position: relative;
}
@media screen and (max-width:1199px) {
.news_box {
    padding: 20px 0% 20px;
}
}
@media screen and (max-width:991px) {
.news_box {
    font-size: 13px;
    padding: 5px;
}
}
@media screen and (max-width:767px) {
.news_box {
    font-size: 13px;
    padding:10px;
}
}
.news_arrow {
    color: #028D5E;
    transform: rotate(0deg);
    transition: all .3s;
}

.is-open .news_arrow{
    transform: rotate(180deg);
}
.news_inner{
    display: flex;
}
@media screen and (max-width:767px) {
    .news_inner{
        display: block !important;
    }
}
.news_content{
    display: none;
    padding-top: 20px;
}

.news_content p a{
    text-decoration:underline !important;
    color: #018D5E;
}
.news_arrow{
    position: absolute;
    right: 0px;
    top: calc(50% - 10px);
    font-size: 20px;
}
@media screen and (max-width:991px) {
.s_01 .accordion_one .accordion_header span{
  font-size: 11px;
}
}
@media screen and (max-width:767px) {
.s_01 .accordion_one .accordion_header span{
  font-size: 13px;
    display: block;
}
}
.s_01 .accordion_one .accordion_header:hover {
  opacity: .8;
}
span.news_time,span.news_category{
    margin: 0px 10px;
    margin-bottom: 0px;
}
.news_category a{
    padding:3px 5px;
}
@media screen and (max-width:991px) {
.news_box span{
	display: block;
    margin: 0px 0px;
}
}
.news_time{
    margin-bottom: 0px;
    display: inline-block;
}
@media screen and (max-width:767px) {
    .news_time{
        float: left;
    }
}
.news_title{
    margin-bottom: 0px;
}
@media screen and (max-width:767px) {
    .news_title{
        clear: both;
        padding-top: 10px;
    }  
}
/* 共通 */
.sectio_news {
  width: 100%;
  padding: 60px 0;
}
@media (max-width: 991px){
.sectio_news {
  padding: 0px;
}
}
/* テキストの枠 */
.wrapper{
    color: #fff;
	font-size: 80px;
}
@media (max-width: 1440px){
.wrapper{
	font-size: 70px;
}
}
@media (max-width: 1199px){
.wrapper{
	font-size: 55px;
}
}
@media (max-width: 991px){
.wrapper{
	font-size: 40px;
}
}
@media (max-width: 767px){
.wrapper{
    font-size: 3.0rem;
    top: -100px;
    line-height: 3rem;
}
}
@media (max-width: 425px){
.wrapper{
    font-size: 2.5rem;
}
}
/*テキスト*/
.str__animation{
  display: flex;
}
@media (max-width: 767px){
.str__animation{
    display: unset;
}
}
@media (max-width: 411px){
.str__animation{
    padding: 1rem 0rem;
}
}
.str__animation .str{
  will-change: auto;
  min-width: .9rem;
  transform: translateY(0);
  opacity: 0;
}
/*テキストが垂直中央へ配置*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.content-scroll-trigger{
  width: 100%;
}
span.news_category {
    color: #fff;
    width: 100px;
    padding: 1px 10px;
}
@media screen and (max-width:767px) {
    span.news_category {
        float: left;
    }
}
span.news_category--green{
    background-color: #3AB100;
}
span.news_category--orange{
    background-color: #F29900;
}
/*コンテンツ5 News*/
.top_new_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-top: 125px;
}
.top_new_title_sub{
    font-style:normal;
}
@media (max-width: 991px){
.top_new_box {
    margin-top: 80px;
}
}
@media (max-width: 767px){
.top_new_box {
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: nowrap;
}
.top_new_title_sub{
    font-size: 15px !important;
    font-weight: bold;
}
}
.top_new_title p{
    font-family: 'myfont-Bold';
	font-size: 30px;
}
@media (max-width: 1199px){
.top_new_title p{
    font-size: 25px;
}
}
.top_new_title span{
    font-family: 'myfont-Alte';
    font-size: 50px;
}
@media (max-width: 1199px){
.top_new_title span{
    font-size: 35px;
}
}
/*ホバーでグラデーションに変化するボタン　オレンジ */
.read-more_btn_or{
    display: inline-block;
	text-align: center;
    text-decoration: none;
    outline: none;
    transition: all 0.4s ease-out;
    font-family: 'myfont-Alte';
    font-size: 20px;
    color: #F29900;
    padding: 10px 0;  
    border-radius:30px;
    border:1px solid #F29900;
	width: 240px;
}
@media screen and (max-width:1199px) {
.read-more_btn_or{
    font-size: 16px;
}
}
@media screen and (max-width:767px) {
.read-more_btn_or{
    margin-bottom: 10px;
}
}
.read-more_btn_or:hover{
    /*ボタンの形状*/
    border-color:transparent;
    color: #fff;
    /*背景の色と形状*/
    background: linear-gradient(270deg, #F76B1C 0%, #FAD961 50%, #F76B1C 100%);
    background-size: 200% auto;
    background-position: right center;
	background-color: #FAD961;
}
article.news_mt {
    margin-bottom: 145px;
}
@media (max-width: 991px){
article.news_mt {
    margin-bottom: 80px;
}
}
.news_mt_btn{
    display: flex;
    margin-top: 50px;
    justify-content: center;
}
/*コンテンツ6 Company*/
.con6_bg{
	background-image: url(../img/con6_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.top_company_box {
    padding: 105px auto 75px;
    padding: 105px 0 75px;
}
@media (max-width: 1199px){
.top_company_box {
    padding: 80px 0 75px;
}
}
@media (max-width: 767px){
.top_company_box {
    padding: 50px 0;
}
}
.top_company_title_box1 {
    display: inline-flex;
    align-items: center;
}
@media (max-width: 767px){
.top_company_title_box1 {
    display: block;
}
}
.top_slide_title.top-company_subtitle {
    color: #fff;
    font-size: 25px;
    margin-left: 30px;
}
@media (max-width: 1199px){
.top_slide_title.top-company_subtitle {
    font-size: 20px;
}
}
@media (max-width: 767px){
.top_slide_title.top-company_subtitle {
    margin-left: 0px;
}
}
.top-company_text{
    color: #fff;
    margin-top: 100px;
    margin: 100px 30px 0px 0px;
}
@media (max-width: 1199px){
.top-company_text{
    font-size: 15px;
}
}
@media (max-width: 767px){
.top-company_text{
    margin: 50px 30px 10px 0px;
}
}
.top_company_title_box2 {
    display: flex;
    align-items: flex-end;
}
@media (max-width: 767px){
.top_company_title_box2 {
    display: block;
}
}
/*元々上下グラデからホバーでグラデーションに変化するボタン */
.read-more_btn_gr_a{
    display: inline-block;
	text-align: center;
    text-decoration: none;
    outline: none;
    transition: all 0.4s ease-out;
    font-family: 'myfont-Alte';
    font-size: 20px;
    color: #fff;
    padding: 10px 0;  
    border-radius:30px;
    border:2px solid #fff;
	width: 240px;
	background: -moz-linear-gradient(top, #009856, #32B148);
	background: -webkit-linear-gradient(top, #009856, #32B148);
	background: linear-gradient(to bottom, #009856, #32B148);
}
@media screen and (max-width:1199px) {
.read-more_btn_gr_a{
    font-size: 16px;
}
}
.read-more_btn_gr_a:hover{
    /*ボタンの形状*/
    border-color:transparent;
    color: #fff;
    /*背景の色と形状*/
    background: linear-gradient(270deg, #018D5E 0%, #F4D03F 50%, #018D5E 100%);
	background-color: #F4D03F;
    background-size: 200% auto;
    background-position: right center;
}
/*footer*/
@media screen and (max-width:1199px) {
img.f_logo {
    width: 98%;
    margin: auto;
}
}
.footer_contens{
	margin-top: 75px;
	display: flex;
	margin: 60px 0px 30px;
}
@media (max-width: 991px){
.footer_contens{
    flex-direction: column;
    align-items: center;
}
}
@media (max-width: 767px){
.footer_contens{
    margin: 30px 0px 0px;
}
}
.footer_address {
    font-size: 15px;
    text-align:right;
}
@media (max-width: 1199px){
.footer_address {
    font-size: 13px;
}
}
@media (max-width: 991px){
.footer_address {
    text-align: center;
}
}
.footer_address p{
    display:inline-block;
    text-align:left;
}
.footer_contens1 {
    border-right: solid 1px #B8B8B8;
    padding-right: 5%;
}
@media (max-width: 1199px){
.footer_contens1 {
    padding-right: 2%;
}
}
@media (max-width: 991px){
.footer_contens1 {
    border-right: none;
    padding-right: 0%;
}
}
.footer_contens2 {
    margin: 0 0 0 5%;
    border-right: solid 1px #B8B8B8;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 33%;
}
@media (max-width: 1199px){
.footer_contens2 {
    margin: 0 0 0 2%;
}
}
@media (max-width: 991px){
.footer_contens2 {
    display: none;
}
}
ul.footer_menu {
    font-size: 14px;
    font-family: 'myfont-Medium';
    padding-right: 15%;
    letter-spacing: 0.06em;
    line-height: 2;
}
@media (max-width: 1199px){
ul.footer_menu {
    padding-right: 10%;
}
}
ul.footer_menu.footer_menu_a{
    padding-right: 0%;
}
ul.footer_menu li a:hover{
    color: #018D5E;
    transition: all 300ms ease-in-out;
}
.footer_contens3 {
    margin-left: 5%;
}
@media (max-width: 1199px){
.footer_contens3 {
    margin-left: 2%;
}
}
@media (max-width: 991px){
.footer_contens3 {
    margin: 30px 0;
}
}
.footer_contens3 p{
    font-size: 15px;
    text-align:center;
}
/*電話 ボタン*/
#f_tel_btn_gr{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px 0 20px 0;
  border-radius: 50px;
  border: solid 1px #018D5E;
}
#f_tel_btn{
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  border-radius: 30px;
  padding: 10px 0px;
  width: 240px;
}
@media screen and (max-width:1440px) {
#f_tel_btn {
	width: 290px;
}
}
@media screen and (max-width:1199px) {
#f_tel_btn {
    width: 240px;
}
}
@media screen and (max-width:991px) {
#f_tel_btn {
	width: 236px;
    padding: 7px 0px;
}
}
#f_tel_icon{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease-Out;
  padding: 0;
  bottom: 0;
  left: -310px;
  background: #018D5E;
  color: #fff;
}
#f_tel_btn:hover #f_tel_icon{
  left: 0;
}
#f_tel_btn:hover .button_inner{
    left: 290px;
}
#f_tel_btn .button_inner {
  position: relative;
  left: 0;
  transition: all .35s ease-Out;
  color:#018D5E;
  font-size: 21px;
}
@media screen and (max-width:1199px) {
#f_tel_btn a {
  font-size: 16px;
}
}
/*コピーライト*/
.copy_color {
    color: #fff;
    background-color: #098D5E;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    letter-spacing: 0.07em;
}


i.far.fa-external-link-alt {
    font-weight: 700;
}
/*上へ戻る*/
#top_return{
  width: 70px;
  height: 70px;
  position: fixed;
  right: 20px;
  bottom: 40px;
  background: #F29900;
  border-radius: 50%;
    z-index: 1;
}
@media (max-width: 1440px){
#top_return{
    bottom: 100px;
}
}
@media (max-width: 991px){
#top_return{
  width: 70px;
  height: 70px;
}
}
@media (max-width: 767px){
#top_return{
    bottom: 70px;
}
}
#top_return a{
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-decoration: none;
  transform: scale(1);
  transition: .5s;
}
#top_return a:hover {
  text-decoration: none;
  background: #EEB554;
  transform: scale(1.2);
}
@media (max-width: 991px){
    #top_return a:hover {
        transform: scale(1) !important;
    }
}
#top_return a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #fff;
  position: absolute;
  height: 23px;
  bottom: 36px;
  right: 0;
  left: 0px;
  margin: auto;
  text-align: center;
}
@media (max-width: 991px){
#top_return a::before{
    bottom: 35px;
    left: -1px;
}
}
@media (max-width: 991px){
#p_top a::before{
    top: -5px;
    right: 18px;
}
}
/*下から出てくるメニュー*/
#nav8 {
	z-index:10;
	position: fixed;
	bottom: -60px;/*下から出てくる高さ*/
	left: 0;
	width: 100%;
	color: #fff;
}
#nav8 .inner {
	width: 100%;
	margin: 0;
	min-width: 320px;
	overflow: hidden;
    background-color: #188DCC;
    padding: 10px;
}
#nav8 .inner:hover {
    background-color: #8ea3af;
}
#nav8 .inner a {
	display:block;
	color: #fff;
	text-align: center;
    line-height: 1;
}
#nav8 .inner a span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
}