@charset "UTF-8";
/* CSS Document */


@media (min-width: 960px) {
	#head_logo{
		position:absolute;
		bottom: 10px!important;
		left: 10px!important;
		z-index: 10;
		transition: .5s;
	}
}
@media (max-width: 959px) {
	#head_logo{
		position:absolute;
		top: 10px!important;
		left: 10px!important;
		z-index: 10;
		transition: .5s;
	}
}
nav{
	font-family: english-grotesque, sans-serif;
	font-weight: 300;
	font-style: normal;
	width: 100%;
	height: 100%;
}
.bodyfixed{
    position: fixed!important;
}

/*-----------------header-----------------*/
@media (min-width: 960px) {
    .head_logo{
        position:absolute;
        top:10px;
        left: 20px;
        z-index: 99;
    }
    #header{
        position: fixed;
        top: 0;
        z-index: 20;
        width: 100%;
        height: 120px;
        transition: all 0.3s ease-out;
		background-color: #fff;
		border-bottom-left-radius: 11px;
		border-bottom-right-radius: 11px;
		box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.10), -5px -5px 5px 0px rgba(255, 255, 255, 0.10);
    }
    #header.fixed-hide{
        top: -120px;
    }
    #header.fixed-show{
        position: fixed;
        top: 0!important;
        left: 0!important;
    }
	.menu{
		width: 30px;
		height: 26px;
		position: absolute;
		right: 140px;
		top: 17px;
		z-index: 99;
		cursor: pointer;
		display: none!important;
	}
	.pcmenu > ul{
		display:flex;
		position: relative;
		float: right;
		height: 60px;
		align-items: center;
		padding-right: 170px;
	}
	.pcmenu > ul > li{
		padding-right: 30px;
	}
	.pcmenu > ul > li > a{
		font-weight: 700;
		display: flex;
		align-items: center;
	}
}
@media (max-width: 959px) {
    .head_logo{
        max-width: 160px;
        position:absolute;
        top:10px;
        left: 20px;
        z-index: 2;
    }
    .head_logo > a > img{
        width: 100%;
        height: auto;
    }
    #header{
        position: fixed;
        top: 0;
        z-index: 20;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 76px;
        transition: all 0.3s ease-out;
		background-color: #fff;
/*        display: none;*/
    }
    #header.fixed-hide{
        top: -76px;
    }
    #header.fixed-show{
        position: fixed;
        top: 0!important;
        left: 0!important;
    }
	.menu{
		width: 60px;
		height: 60px;
		position: absolute;
		right: 0;
		top: 20px;
		z-index: 99;
		cursor: pointer;
		text-align: center;
		font-size: 1rem;
		line-height: 1em;
	}
	.pcmenu > ul{
		display: none;
	}
}
.c_change > svg { fill: currentColor; }
/*menu*/
.menu__line{
    width: 40px;
    height: 4px;
    background: #0368B5;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line.active{
    width: 40px;
    height: 4px;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line--top:nth-of-type(1) {
	top: 15px;
	right: 15px;
}
.menu__line--bottom:nth-of-type(2) {
	top: 35px;
	right: 15px;
}

.menu__line--top:nth-of-type(1) {
  animation: menu-bar01 .5s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--bottom:nth-of-type(2) {
  animation: menu-bar02 .5s forwards;
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--top.active:nth-of-type(1) {
  animation: active-menu-bar01 .5s forwards;
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
.menu__line--bottom.active:nth-of-type(2) {
  animation: active-menu-bar03 .5s forwards;
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/*gnav*/


@media (min-width: 960px) {
	.gnav{
		display: block!important;
	}
	.gnav__menu__item > a{
		font-size: 1.7rem;
		font-weight: 700;
        margin-left:15px;
        margin-right:15px;
		padding-bottom: 27px;
		text-decoration: none;
		transition: .2s;
		position: relative;
	}
	.gnav__menu__item > a::before{
		content: '';
		width: 10px;
		height: 10px;
		border-radius: 5px;
		background: #0368B5;
		display: inline-block;
		margin-right: 2px;
        position: relative;
        top:-1px;
	}
	.gnav__menu__item > a:hover{
		color: #0368B5;
	}
	.gnav__menu__item > a:hover::after{
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0;
		display: block;
		width: 100%;
		border-bottom: solid 2px #0368B5;
	}
}
@media (max-width: 959px) {
	.gnav{
		background-color: #FBF9F7;
		display: none;
		height: 100vh;
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		z-index: 98;
	}
    
    .gnav__menu > li {
        padding-bottom:0px!important;
        margin-bottom:0px!important;
        border-bottom:0px!important;
    }
    
    .gnav_menu_top {
    }
    
	.gnav__wrap{
		width: 100%;
		height: 100%;
		position: absolute;
		overflow-y: scroll!important;
	}
	.gnav__menu__item > a{
		color: #0368B5!important;
		font-weight: 700;
		padding: 20px 0;
		text-decoration: none;
		transition: .5s;
		display: block;
		border-bottom: dotted 1px #0368B5;
		font-size: 2rem;
	}
    
    .gnav__menu > li::before {
        content: ""!important;
    }
    
    .head_child_ul {
      margin-top: 0px!important;
    }
    
    .head_child_ul li::before {
        content: ""!important;
    }
    
    .head_child_ul li {
        font-size: 12px;
        line-height: 32px;
        width: calc(50% - 1px)!important;
        white-space: nowrap;
    }
    
    .head_form_btn {
        text-align: center;
        margin-bottom:50px;
    }
    
    
    .h_fmenu {
        padding: 0 30px 70px 30px!important;
    }
}
@media (min-width: 960px) {
    .gnav__menu__item{
/*        position: relative;*/
    }
    .gnav__menu{
        width: 100%;
        position: absolute;
		bottom: 10px;
		right:0;
        display: flex;
        flex-wrap: nowrap;
		justify-content: flex-end;
		align-items: center;
        box-sizing: border-box;
		padding-right: 10px;
    }
    .gnav__menu > li{
        list-style:none;
        display: inline-block;
        box-sizing: border-box;
		line-height: 1em;
    }
    .gnav__menu > li:last-child{
        list-style:none;
        display: inline-block;
        position: relative;
        box-sizing: border-box;
		margin: 0;
		line-height: 1em;
    }
	.btn_form > a{
		width: auto;
		height: 50px;
		border-radius: 10px;
		padding: 0 39px;
		color: #fff!important;
		background-color: #0368B5;
		font-weight: 700;
		transition: all 0.5s ease;
		font-size: 1.6rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.btn_form > a:hover{
	}
	.h_fmenu{
		display: none;
	}
}
@media (max-width: 959px) {
    .gnav__menu__item{
/*        position: relative;*/
    }
    .gnav__menu{
        width: 100%;
        position: relative;
		padding: 200px 40px 0 40px !important;
        box-sizing: border-box;
        display: block;
    }
    .gnav__menu > li{
        width: 100%;
        list-style:none;
        display: block;
        position: relative;
        padding-bottom: 20px;
		margin-bottom: 20px;
		border-bottom: dotted 1px #0368B5;
        box-sizing: border-box;
    }
	.btn_form > a{
		width: auto;
		height: 50px;
		border-radius: 10px;
		padding: 0 39px;
		color: #fff!important;
		background-color: #0368B5;
		font-weight: 700;
		font-size: 1.6rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.h_submenu{
		position:relative;
		padding: 0 80px;
		display: block;
	}
	.h_submenu > li{
		list-style: none;
		color: #fff;
		padding-bottom: 20px;
		padding-left: 10px;
		margin-bottom: 20px;
		border-bottom: dotted 1px #fff;
	}
	.h_submenu > li::before{
		content:'>';
		padding-right: 3px;
	}
	.h_submenu > li > a{
		color: #fff;
		font-size: 1.5rem;
	}
	.h_fmenu{
		position:relative;
		padding: 0 80px 80px 80px;
		display: block;
	}
	.h_fmenu > li{
		list-style: none;
		color: #fff;
		padding-bottom: 20px;
		padding-left: 10px;
		margin-bottom: 20px;
		border-bottom: dotted 1px #fff;
	}
	.h_fmenu > li::before{
		content:'>';
		padding-right: 3px;
	}
	.h_fmenu > li > a{
		color: #fff;
		font-size: 1.5rem;
	}
}
.gnav_inner{
    width:100%;
    position: relative;
    clear: both;
    overflow: hidden;
}
.gnav_inner > .title {
    display:inline-block;
    float: left;
}
.gnav_inner > .title > a{
        display:inline-block;
        font-weight: 500;
        border: solid 1px #fff;
        border-radius: 15px;
        color: #fff;
        margin-top: 7px;
        margin-bottom: 15px;
        transition: all 0.5s ease;
        font-size: 1.5rem;
        padding: 5px 12px;
        line-height: 1.1em;
}
.gnav_inner > ul{
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

#head_logo a img {
	height:65px!important;
}
@media (min-width: 960px) {
    
    #head_logo a img {
        height:65px!important;
    }
    
    .gnav_inner > ul > li{
        width: calc(100% - 20px);
        display: block;
        padding-bottom: 7px;
        margin-bottom: 15px;
        margin-left: 15px;
        margin-right: 20px;
        border-bottom: dotted 1px #fff;
    }
}
@media (max-width: 959px) {
    
    #head_logo a img {
        height:53px!important;
    }
    
    .gnav_inner > ul > li{
        width: calc(100% - 40px);
        display: block;
        padding-bottom: 5px;
        margin-bottom: 15px;
        margin-right: 30px;
        margin-left: 10px;
        border-bottom: dotted 1px #fff;
    }
}
.gnav_inner > ul > li > a{
    color:#fff;
}

@media (min-width: 960px) {
    .menu_col2{
        width:calc(50% - 30px)!important;
        box-sizing: border-box!important;
        margin: 0 15px 15px 15px!important;
        padding: 0 0 7px 0!important;
    }
}
@media (max-width: 959px) {
    .menu_col2{
        width:calc(50% - 30px)!important;
        box-sizing: border-box!important;
        margin-right: 10px!important;
        margin-left: 10px!important;
        padding-bottom: 7px;
        margin-bottom: 15px;
    }
}
.megalink{
	display:block;
}

@media (min-width: 959px) {
    .megamenu_col2{
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
    }
}

@media (min-width: 960px) {
	.megamenu_ctt{
		position: absolute;
		top: 60px;
		width: calc(100vw - 20px);
		max-width: 1200px;
		left: 50%;
		transform: translateX(-50%);
		color: #0368B5;
		transition: all 0.1s ease;	
		opacity: 0;
        overflow: hidden!important;
        z-index:2000;
        max-height: 0;
		border-radius: 0 0 10px 10px;
		background: #FBF9F7;
		box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.10), -5px -5px 5px 0px rgba(255, 255, 255, 0.10);
	}
	.megamenu_ctt_logo{
		width: 145px;
		height: 145px;
		background: url("../img/mmenu_logo.webp") no-repeat;
		position: absolute;
		bottom: 20px;
		left: 20px;
	}
    .megamenu_ctt_inner{
        max-width: 1280px;
        margin:0 auto;
        position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: space-between;
    }
	.megamenu_ctt_inner > .megamenu{
		width:calc(100% - 34% - 230px);
	}
	.megamenu_ctt_inner > .megamenu_img{
        position: relative;
		width:400px;
		max-width: 34%;
		object-fit: cover;
	}
    .megamenu_img > img{
        position:absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
    }
	.megalink:hover .megamenu_ctt {  /*	下層メニューのスタイル（親項目ホバー時） */
  		display:block;
		transition: all 0.3s ease;	
		opacity: 1;
        max-height: 100vh!important;
	}
    
    .megalink a:hover + .megamenu_ctt {  /*	下層メニューのスタイル（親項目ホバー時） */
  		display:block;
		transition: all 0.3s ease;	
		opacity: 1;
        max-height: 100vh!important;
	}

    .megamenu_ctt_inner > .title{
        width: calc(230px - 60px);
        margin:  50px 30px;
		border-right:dotted 1px #0368B5;
		display: flex;
		flex-wrap: wrap;
        align-items: flex-start;
    }
    .megamenu_ctt_inner > .title > h2{
        display:block;
        font-weight: 700;
        font-size: 2.2rem;
        padding-bottom: 15px;
		letter-spacing: 3px;
        color: #0368B5;
    }
    .megamenu_ctt_inner > .title > a{
        border: solid 1px #fff;
        border-radius: 13px;
        color: #0368B5;
        margin-top: 10px;
        transition: all 0.5s ease;
        font-size: 1.4rem;
        padding: 2px 7px;
    }
    .megamenu_ctt_inner > .title > a:hover{
        opacity: 0.7;
    }
}

@media (max-width: 959px) {
    .megamenu_ctt {
        display:block!important;
    }
    .megamenu_ctt_inner .title {
        display:none;
    }
    .megamenu_img {
        display:none;
    }
}
.megamenu_ctt_inner > .title > h2 > span{
    display:inline-block;
	font-size: 1.8rem;
	font-weight: normal;
	padding-top: 10px;
	letter-spacing: 0;
}

.chenge_image_visible{
    transition:all 0.5s ease;
    opacity: 1!important;
	width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 960px) {
	.megamenu > div > ul {
		background-color: inherit;
		margin: -15px 0;
	}
	.megamenu > div > ul > li{
		width: 100%;
		padding: 15px;
		box-sizing: border-box;
        line-height: 1.4em;
		position: relative;
        white-space: nowrap;
        letter-spacing: 1px;
	}
	.megamenu > div > ul > li::before {
		content: "・";
		color:#0368B5;
		padding-right:5px;
		display: inline-block;
		position: absolute;
		left: -5px;
	}
	.megamenu > div > ul > li > ul{
		list-style: disc;
	}
	.megamenu > div > ul > li > ul > li{
		padding: 15px 15px 0 15px;
		display: block;
		color:#0368B5;
	}
	.megamenu > div > ul > li > ul > li::before{
		content: "・";
		color:#0368B5;
		display: inline-block;
		position: absolute;
		left: 10px;
	}
}
@media (max-width: 959px) {
	.megamenu > div > ul {
		background-color: #fff;
	}
	.megamenu > div > ul > li{
		width: 100%;
		padding: 15px;
		box-sizing: border-box;
		border-bottom:dotted 1px #0368B5;
        position: relative;
	}
	.megamenu > div > ul > li::before {
		content: "・";
		color:#0368B5;
		padding-right:5px;
		display: inline-block;
        top: 16px;
        position: absolute;
        left: 10px;
	}
	.megamenu > div > ul > li > ul > li{
		padding: 10px 10px 0 45px;
		display: block;
		color:#0368B5;
	}
	.megamenu > div > ul > li > ul > li::before{
		content: "・";
		color:#0368B5;
		display: inline-block;
		position: absolute;
		left: 40px;
	}
}
.megamenu > div > ul > li > a{
	transition: all 0.5s ease;
    color: #0368B5;
}
.megamenu > div > ul > li > a:hover{
	opacity: 0.7;
}
@media (min-width: 960px) {
	.megamenu{
		margin:50px 0;
		padding-right: 50px;
	}
	.snav_ttl{
		display: inline-block;
		position: relative;
		padding-right: 20px;
		color:#0368B5;
	}
}
@media (max-width: 959px) {
	.megamenu_ctt{
        display: none;
	}
    .megamenu > div > ul > li > a {
        font-size:13px;
		display: inline-block;
        padding-left: 15px;
        letter-spacing: 1px;
    }
	.snav_ttl{
		display: inline-block;
		position: relative;
		padding-right: 20px;
		color:#0368B5;
		width: calc(100% - 30px);
	}
}
.megamenu > div > ul{
	list-style:none;
	font-weight: 700;
    display: flex;
    flex-wrap: wrap;
}
.snav_ttl > .searchcttopen{
	width:100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	cursor:pointer;
}
.snav_ttl > .searchcttopen::after{
	content: '+';
	position: absolute;
	top: -2px;
	right: 0;
	font-size: 2rem;
}
.snav_ttl > .searchcttopen.active2{
	position: absolute;
	top: 0;
	right: 0;
}
.snav_ttl > .searchcttopen.active2::after{
	content: '-';
	position: absolute;
	top: -2px;
	right: 0;
	font-size: 2rem;
}
.searchctt {
   width: 100%;
   margin: 0 auto;
   display: none;
   overflow: hidden;
   transition: none;
}
.active2 + .searchctt {
   transform: translatex(0);
}
@media (min-width: 960px) {
	.spnav{
		display:none;
	}
}
@media (max-width: 959px) {
	.spnav{
		display:block;
		padding: 40px 40px 140px 40px;
	}
	.spnav li{
		padding-bottom: 10px;
	}
	.spnav li:last-child{
		padding-bottom: 0;
	}
	.spnav li a{
		text-decoration:underline;
		color: #0368B5;
		font-size: 1.4rem;
	}
}

@media (min-width: 960px) {
	.h_search{
		width:270px;
		height: 40px;
		border-radius: 10px;
		background: #fff;
		position:absolute;
		top:10px;
		right: 10px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border: solid 1px #0368B5;
		padding: 5px 10px;
		box-sizing: border-box;
	}
}
@media (max-width: 959px) {
	.h_search{
		width:270px;
		height: 40px;
		border-radius: 10px;
		background: #fff;
		position:absolute;
		top:90px;
		left:50%;
		transform: translateX(-50%);
		display: flex;
		align-items: center;
		justify-content: space-between;
		border: solid 1px #0368B5;
		padding: 5px 10px;
		box-sizing: border-box;
	}
	.hbtn_box{
		width:270px!important;
		position:absolute!important;
		top:140px;
		left:50%;
		transform: translateX(-50%);
		
	}
}
.h_search > .input{
	padding-right: 10px;
	border:none;
	outline:0;
	font-family: "Noto Sans JP";
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 500;
	line-height: 32px; /* 200% */
	background: #fff!important;
	display: block;
	width: 100%;
}
.h_search > .input::placeholder{
	color: #C2C2C2!important;
}
.h_search > .button{
	padding-left: 10px;
	border-left: dotted 1px #0368B5;
}





/**************スクロールダウンイベント****************/

@media (min-width: 768px) {
    .i_about_bgmov {
        width:100%;
        white-space:nowrap;
        position: absolute;
        bottom: -70px;
        left: 0%;
        font-size: 10rem;
        line-height: 1em;
        z-index: -1;
    }
}
@media (max-width: 767px) {
    .i_about_bgmov {
        width:100%;
        white-space:nowrap;
        position: absolute;
        bottom: -20px;
        left: 0%;
        font-size: 10rem;
        line-height: 1em;
        z-index: -1;
    }
}
@keyframes hscroll2 {
    0% { transform:translateX(4px); }
    100% { transform:translateX(-100%); }
}
.i_about_bgmov ul {
    display:inline-block;
    margin:0;
    padding:0;
    animation:hscroll2 200s linear infinite;
}
.i_about_bgmov li {
    display:inline-block;
    font-weight: 700!important;
        color: #F2F2F2;
}
.drop_arrow{
    width: 5px;
    height: 5px;
    border-bottom: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 3px;
}