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


@media (min-width: 960px) {
	#head_logo{
		position:relative;
		z-index: 10;
		transition: .5s;
	}
}
@media (max-width: 959px) {
	#head_logo{
		z-index: 10;
		transition: .5s;
	}
}
nav{
	font-family: english-grotesque, sans-serif;
	font-weight: 300;
	font-style: normal;
}
.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: 100px;
        transition: all 0.3s ease-out;
		background-color: #fff;
    }
    #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;
        align-items: center;
        width: 100%;
        height: 60px;
        padding: 0 10px;
        transition: all 0.3s ease-out;
		background-color: #fff;
    }
    #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:0;
		z-index: 99;
		cursor: pointer;
		text-align: center;
		font-size: 1rem;
		line-height: 1em;
        background: #272433;
	}
	.pcmenu > ul{
		display: none;
	}
}
.c_change > svg { fill: currentColor; }

/*menu*/
.menu__line{
    width: 34px;
    height: 4px;
    background: #fff;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line.active{
    width: 34px;
    height: 4px;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line--top:nth-of-type(1) {
	top: 17px;
	right: 13px;
}
.menu__line--bottom:nth-of-type(2) {
	top: 39px;
	right: 13px;
}

.menu__line--top:nth-of-type(1) {
  animation: menu-bar01 .5s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(12px) rotate(45deg);
  }
  50% {
    transform: translateY(12px) 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(12px) rotate(0);
  }
  100% {
    transform: translateY(12px) 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);
  }
}


/*----------------------------*/

.header_inner{
    display: flex;
    max-width: 1440px;
    padding: 0 50px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1200px) {
    .header_inner{
        max-width: 100%!important;
        padding:0px!important;
        margin: 5px auto 0 auto;
    }
}

@media (max-width: 959px) {
    .header_inner{
        padding:0;
        margin: 0;
        position: relative;
        z-index: 99;
    }
}

@media (min-width: 959px) {
    .header_inner{
        margin: 5px auto 0 auto;
    }
}

.header_inner ul{
    display: flex;
    gap: 15px;
}
.header_inner ul li a{
    color: #7D7D7D;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
}
.header_inner ul li a:hover{
    color: #000000;
    text-decoration: none;
}
.header_inner ul li:last-child a{
    text-decoration: none;
}

.deco_none {
    text-decoration: none!important;
}

.btn_login{
    display: flex;
    padding: 6px 14px;
    align-items: center;
    gap: 6px;
    border-radius: 15px;
    background: #272433;
    color: #FFF;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: .3s;
}
.btn_login:hover{
    background:#21B5C6;
}

.btn_logout{
    display: flex;
    padding: 6px 14px;
    align-items: center;
    gap: 6px;
    border-radius: 15px;
    background: #808080;
    color: #FFF;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: .3s;
}
.btn_logout:hover{
    background:#b3b3b3;
}

.btn_contact_form {
    display: flex;
    padding: 6px 14px;
    align-items: center;
    gap: 6px;
    border-radius: 15px;
    background: #21B5C6;
    color: #FFF;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: .3s;
}
.btn_contact_form:hover{
    background:#57d5e4;
}

@media (min-width: 959px) {
    .btn_contact_form {
        margin-right:-5px!important;
    }
}

.header_menu{
    display: flex;
    max-width: 1440px;
    padding: 10px 8px 3px 8px;
    justify-content: center;
    align-items: center;
    gap: 44px;
    margin: 0 auto;
}
@media (max-width: 959px) {
    .header_menu{
        width: 60px;
        padding:0;
    }
    .btn_login {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 10px 10px 20px;
        gap: 6px;
        border-radius: 10px;
        background: #272433;
        color: #FFF;
        font-size: 2rem;
        font-weight: 700;
        line-height: normal;
        transition: .3s;
        margin-top: 20px;
        font-family: "Noto Sans JP", Helvetica!important;
    }
    .btn_logout{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 10px 10px 20px;
        gap: 6px;
        border-radius: 10px;
        background: #808080;
        color: #FFF;
        font-size: 2rem;
        font-weight: 700;
        line-height: normal;
        transition: .3s;
        margin-top: 20px;
    }
    .btn_contact_form {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 10px 10px 20px;
        gap: 6px;
        border-radius: 10px;
        background: #21B5C6;
        color: #FFF;
        font-size: 2rem;
        font-weight: 700;
        line-height: normal;
        transition: .3s;
        margin-top: 20px;
    }
}
	

.btn_form > a {
    color: #fff !important;
    font-weight: 700;
    transition: all 0.5s ease;
    font-size: 1.6rem;
    display: flex;
    width: 166px;
    height: 40px;
    padding: 10px 10px 10px 20px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-radius: 20px;
    background: #21B5C6;
    text-decoration: none;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(33,181,198,0.3);
}

.btn_form2 > a {
     background: #e23c26;
     padding-left:25px!important;
}

@media (min-width: 959px) {
    .btn_form2 {
        margin:0 20px 0 15px;
        padding: 5px 5px 5px 20px!important;
   }
}

@media (max-width: 959px) {
	.btn_form > a{
		width: auto;
        height: auto;
		border-radius: 10px;
		font-size: 2rem;
		display: flex;
		align-items: center;
		justify-content: center;
        margin-top: 20px;
	}
    .btn_form > a > .arrow {
        margin-left: 10px;
    }
}
/* ホバー時の背景色変化 */
.btn_form > a:hover {
    background: #272433;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
/* 矢印コンテナ */
.btn_form > a > .arrow {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}
/* メイン矢印（通常表示される矢印） */
.arrow-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.arrow-main::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #21B5C6;
    border-right: solid 1px #21B5C6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.arrow-main::after {
    content: '';
    width: 10px;
    height: 1px;
    background: #21B5C6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}

.arrow-main2::before {
    border-top: solid 1px #e23c26!important;
    border-right: solid 1px #e23c26!important;
}
.arrow-main2::after {
    background: #e23c26!important;
}

/* 隠れた矢印（左下から登場する矢印） */
.arrow-hidden {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) translate(-20px,20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.arrow-hidden::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #21B5C6;
    border-right: solid 1px #21B5C6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.arrow-hidden::after {
    content: '';
    width: 10px;
    height: 1px;
    background: #21B5C6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}

.arrow-hidden2::before {
    border-top: solid 1px #e23c26!important;
    border-right: solid 1px #e23c26!important;
}
.arrow-hidden2::after {
    background: #e23c26!important;
}

/* ホバー時のアニメーション */
.btn_form > a:hover .arrow-main {
    opacity: 0;
    transform: translate(-50%,-50%) translate(20px,-20px);
}
.btn_form > a:hover .arrow-hidden {
    opacity: 1;
    transform: translate(-50%,-50%) translate(0,0);
}
/* アクティブ状態 */
.btn_form > a:active {
    transform: translateY(1px);
}
.arrow-main,
.arrow-hidden {
    will-change: transform,opacity;
}
/* より細かいアニメーション調整 */
.btn_form > a:hover .arrow {
    background: #fff;
}



.top_main_btn_form > a:hover .arrow-main {
    opacity: 0;
    transform: translate(-50%,-50%) translate(20px,-20px);
}
.top_main_btn_form > a:hover .arrow-hidden {
    opacity: 1;
    transform: translate(-50%,-50%) translate(0,0);
}
.top_main_btn_form > a:active {
    transform: translateY(1px);
}
.arrow-main,
.arrow-hidden {
    will-change: transform,opacity;
}
.top_main_btn_form > a:hover .arrow {
    background: #fff;
}

/*gnav*/

@media (min-width: 960px) {
	.gnav{
		display: block!important;
	}
	.gnav__menu__item > a{
		font-size: 1.7rem;
		font-weight: 700;
        margin:0px 40px;
		text-decoration: none;
		transition: .2s;
		position: relative;
        display: inline-flex; 
        align-items: center;
        z-index: 2000;
	}
    .gnav__menu__item > a::before{
		content: '';
		width: 9px;
		height: 9px;
		border-radius: 5px;
		background: #21B5C6;
		display: inline-block;
		margin-right: 5px;
        position: relative;
	}
	.gnav__menu__item > a:hover{
		color: #21B5C6;
	}
	.gnav__menu__item > a::after{
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0;
		display: block;
		width: 0%;
		border-bottom: solid 2px #21B5C6;
        top: 27px;
        transition: .1s;
	}
	.gnav__menu__item > a:hover::after{
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0;
		display: block;
		width: 100%;
		border-bottom: solid 2px #21B5C6;
        top: 27px;
	}
}

@media(max-width: 1150px){
	.gnav__menu__item > a{
        margin:0 20px;
	}
}
@media(max-width: 959px){
	.gnav{
		background-color: #ffffff;
		display: none;
		height: 100vh;
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		z-index: 98;
        background: #E1F2F4;
	}
	.gnav__wrap{
		width: 100%;
		height: 100%;
		position: absolute;
		overflow-y: scroll!important;
	}
	.gnav__menu__item > a{
		font-size: 2rem;
		font-weight: 700;
        margin:0;
		text-decoration: none;
		transition: .2s;
		position: relative;
        display: flex;
        align-items: center; 
        padding:20px 0;
		border-bottom: dotted 1px #21B5C6;
	}
    .gnav__menu__item > a::before{
		content: '';
		width: 9px;
		height: 9px;
		border-radius: 5px;
		background: #21B5C6;
		display: inline-block;
		margin-right: 5px;
        position: relative;
	}
    
    .gnav__menu__item > .toggle_link{
		font-size: 2rem;
		font-weight: 700;
        margin:0;
		text-decoration: none;
		transition: .2s;
		position: relative;
        display: flex;
        align-items: center; 
        padding:20px 0;
		border-bottom: dotted 1px #21B5C6;
	}
    .gnav__menu__item > .toggle_link::before{
		content: '';
		width: 9px;
		height: 9px;
		border-radius: 5px;
		background: #21B5C6;
		display: inline-block;
		margin-right: 5px;
        position: relative;
	}
    
	.gnav__menu__item > a:hover{
		color: #21B5C6;
	}
	.gnav__menu__item > a::after{
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0;
		display: block;
		width: 0%;
		border-bottom: solid 2px #21B5C6;
        top: 27px;
        transition: .1s;
	}
	.gnav__menu__item > a:hover::after{
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0;
		display: block;
		width: 100%;
		border-bottom: solid 2px #21B5C6;
        top: 27px;
	}
}

@media (min-width: 960px) {
    .gnav__menu{
        width: 100%;
        /*position: absolute;
		bottom: 0px;
		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;
        border-right: solid 1px #000;
    }

    
    .gnav__menu > li:last-child,
    .gnav__menu > li:nth-last-child(6),
    .gnav__menu > li:nth-last-child(5),
    .gnav__menu > li:nth-last-child(2)  {
        list-style:none;
        display: inline-block;
        position: relative;
        box-sizing: border-box;
        margin: 0;
        line-height: 1em;
        border-right:none;
    }

    
	.h_fmenu{
		display: none;
	}
}
@media (max-width: 959px) {
    .gnav__menu{
        width: 100%;
        position: relative;
		padding: 150px 20px 0 20px !important;
        box-sizing: border-box;
        display: block;
    }
    .gnav__menu > li{
        margin: 0 auto;
        max-width: 400px;
    }
    
    .gnav__menu .top_border_dotted {
        border-top: dotted 1px #1b9bd7;
    }
    
    .gnav__menu .bottom_border_none > a {
        padding-bottom:0px!important;
        border-bottom: 0px!important;
    }

	.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 30px 70px 30px!important;
		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;
	}
}

@media (max-width: 959px) {
    .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;
    }
    .head_login_btn {
        text-align: center;
    }

}
.gnav_inner{
    width:100%;
    position: relative;
    clear: both;
    overflow: hidden;
}
.gnav_inner > .title {
    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 {
        display: flex;
        align-items: center;
    }
    #head_logo a img {
        top:-17px;
        position: absolute;
        height:40px!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{
        display: flex;
        align-items: center;
    }
    #head_logo a img {
        width: 100%;
        height: auto!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) {
    
    .mega_menu__wrap {

        opacity: 0;
    }
    
	.megamenu_ctt{
		position: absolute;
		width: calc(100vw - 20px);
		max-width: 1280px;
		left: 50%;
		transform: translateX(-50%);
		color: #1b9bd7;
		transition: all 0.1s ease;	
		opacity: 0;
        overflow: hidden!important;
        z-index:0;
        max-height: 0;
		border-radius: 10px 10px 10px 10px;
		background: #fafafa;
		box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.50), -5px -5px 5px 0px rgba(255, 255, 255, 0.10);
/*        margin-top:17px;*/
	}
    

    
/*	.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% - 30% - 40px);
	}
	.megamenu_ctt_inner > .megamenu_img{
        position: relative;
		width:400px;
		max-width: 30%;
		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 .mega_menu__wrap { 
        top:65px;
        position: absolute;
        padding-top:35px;
        width: calc(100vw - 20px);
        max-width: 1280px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
    }
    
	.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;
        z-index:2000;
	}

    .megamenu_ctt_inner > .title{
        width: calc(230px - 60px);
        margin:  50px 30px;
		border-right:dotted 1px #1b9bd7;
		display: flex;
		flex-wrap: wrap;
        align-items: flex-start;
        display:none;
    }
    .megamenu_ctt_inner > .title > h2{
        display:block;
        font-weight: 700;
        font-size: 2.2rem;
        padding-bottom: 15px;
		letter-spacing: 3px;
        color: #1b9bd7;
    }
    .megamenu_ctt_inner > .title > a{
        border: solid 1px #fff;
        border-radius: 13px;
        color: #1b9bd7;
        margin-top: 10px;
        transition: all 0.5s ease;
        font-size: 1.4rem;
        padding: 2px 7px;
    }
    .megamenu_ctt_inner > .title > a:hover{
        opacity: 0.7;
    }
    
        /*
          * リンク群を格納するラッパー
         */
        .mega-links-wrapper {
            display: grid;
            gap: 16px;
            padding: 10px 0;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        /*
         * 個別リンクアイテムのスタイリング
         */
        .mega-link-item {
            display: flex; /* Flexboxを使用して内部要素を配置 */
            align-items: center; /* 垂直方向中央揃え */
            justify-content: space-between; /* テキストと矢印を両端に配置 */
            text-decoration: none;
            color: #333;
            background-color: #ffffff;
            padding: 20px 24px;
            border-radius: 10px;
            border: 1px solid #eee;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        /* リンクのテキスト部分 */
        .mega-link-text {
            display: block;
            font-weight: 600;
            font-size: 16px; /* remからpxに変更 (約1.1rem) */
            line-height: 1.5;
            z-index: 2;
            position: relative;
            color: #333;
            transition: color 0.3s ease;
        }

        /* 矢印アイコンのスタイリング */
        .mega-link-arrow {
            /* 三角形記号に合わせて少しサイズを調整 */
            font-size: 18px; /* remからpxに変更 (約1.2rem) */
            font-weight: 600; /* 太くして視認性を向上 */
            color: #aaa; /* デフォルトの矢印の色 */
            margin-left: 15px; /* テキストとの間隔 */
            transition: transform 0.3s ease, color 0.3s ease;
            line-height: 1; /* 行の高さを調整して中央揃えを維持 */
            z-index: 2;
        }

        /*
         * モダンなホバーエフェクト
         */
        .mega-link-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(33, 181, 198, 0.2);
            border-color: #21B5C6;
        }

        /* ホバー時のテキストと矢印の色変化 */
        .mega-link-item:hover .mega-link-text {
            color: #147982;
        }

        /* ホバー時の矢印の動きと色変化 */
        .mega-link-item:hover .mega-link-arrow {
            transform: translateX(5px); /* 右に少し移動 */
            color: #21B5C6; /* ベースカラーに変化 */
        }
        
        /* ベースカラーのオーバーレイエフェクト */
        .mega-link-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #21B5C6;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            pointer-events: none;
            border-radius: 10px;
        }

        .mega-link-item:hover::before {
            opacity: 0.05;
        }



    
}

@media (max-width: 960px) {
    .megamenu_ctt {
/*        padding: 15px;*/
    }

    .mega-links-wrapper {
        grid-template-columns: 1fr;
    }

    .mega-link-item {
        padding: 15px 20px;
    }

    .mega-link-text {
        font-size: 16px; /* remからpxに変更 (約1rem) */
    }

    .mega-link-arrow {
        font-size: 16px; /* remからpxに変更 (約1rem) */
    }
}


@media (max-width: 960px){
    .megamenu_ctt_inner_sp {
        padding:0 10px 0 10px!important;
    }
    
    
    .megamenu_ctt_inner_sp .s_con_txt_tit span {
        font-size:12px!important;
        display: inline!important;
        padding-left:10px!important;
    }
    
    
         /* リンクアイテム群のコンテナ
         */
        .mega-links-wrapper {
            display: flex;
            flex-direction: column; /* 縦並びを維持 */
            gap: 0; 
            width: 100%;
            max-width: 700px; /* PCでの表示幅を制限 */
            margin-left: 0; /* 以前設定されたコンテナの左マージンをリセット */
            background-color: #ffffff; 
            border: 1px solid #e5e7eb; 
            border-radius: 6px; 
            overflow: hidden; 
        }

        /*
         * リンクアイテム（アンカータグ <a>）
         * 各リンクの左側に20pxの余白を設定
         */
        .mega-link-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* ★ 左側のパディングを20pxに設定 (上12px, 右15px, 下12px, 左20px) ★ */
            padding: 12px 15px 12px 20px; 
            background-color: transparent;
            color: #333333; 
            text-decoration: none; 
            border-bottom: 1px solid #eeeeee; /* シンプルな下線 */
            border-radius: 0;
            box-shadow: none;
            transition: background-color 0.2s;
        }

        /* 最後の要素の下線は不要なので削除 */
        .mega-links-wrapper a:last-child {
            border-bottom: none;
        }

        /* ホバー/アクティブ時のインタラクション */
        .mega-link-item:hover,
        .mega-link-item:focus {
            transform: none;
            box-shadow: none;
            background-color: #f5f5f5; /* 控えめな背景色の変更のみ維持 */
        }

        /*
         * リンクテキスト
         */
        .mega-link-text {
            font-size: 15px;
            font-weight: 400; 
        }

        /*
         * 矢印
         */
        .mega-link-arrow {
            font-size: 14px;
            font-weight: normal;
            color: #999999; 
            margin-left: 10px;
        }

        /*
         * PC表示時の外側コンテナの調整 (既存クラスの調整)
         */
        .pcInner02 {
            width: 100%;
            display: flex;
            justify-content: center;
        }
    
}

@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;
}
.before_li:hover + .megalink1 .megamenu_ctt {  /*	下層メニューのスタイル（親項目ホバー時） */
    display:block;
    transition: all 0.3s ease;	
    opacity: 1;
    max-height: 100vh!important;
}
.before_li:hover + .gnav__menu__item > a::after{
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    display: block;
    width: 100%;
    border-bottom: solid 2px #21B5C6;
}
@media (max-width: 959px) {
    .gnav_menu_top {
        margin-bottom:80px;
    }
}
.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:#1b9bd7;
		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:#1b9bd7;
	}
	.megamenu > div > ul > li > ul > li::before{
		content: "・";
		color:#1b9bd7;
		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 #1b9bd7;
        position: relative;
	}
	.megamenu > div > ul > li::before {
		content: "・";
		color:#1b9bd7;
		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:#1b9bd7;
	}
	.megamenu > div > ul > li > ul > li::before{
		content: "・";
		color:#1b9bd7;
		display: inline-block;
		position: absolute;
		left: 40px;
	}
}
.megamenu > div > ul > li > a{
	transition: all 0.5s ease;
    color: #1b9bd7;
}
.megamenu > div > ul > li > a:hover{
	opacity: 0.7;
}
@media (min-width: 960px) {
	.megamenu{
		margin:20px;
		padding-right: 10px;
	}
	.snav_ttl{
		display: inline-block;
		position: relative;
		padding-right: 20px;
		color:#1b9bd7;
	}
}
@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:#1b9bd7;
		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: #1b9bd7;
		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 #1b9bd7;
		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 #1b9bd7;
		padding: 5px 10px;
		box-sizing: border-box;
	}
	.hbtn_box{
		width:270px!important;
		position:absolute!important;
		top:70px;
		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 #1b9bd7;
}





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

@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;
}


@media (max-width: 959px) {
    .megamenu .s_cont_1, .megamenu .s_cont_2, .megamenu .s_cont_3, .megamenu .s_cont_4 {
        position: relative;
    }
    .megamenu .s_cont_1:before, .megamenu .s_cont_2:before, .megamenu .s_cont_3:before, .megamenu .s_cont_4:before {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 4%;
        margin: auto;
        content: "";
        width: 8px;
        height: 8px;
        border: 2px solid;
        border-color: transparent transparent #565656 #565656;
        transform: rotate(-45deg);
        z-index: 2000;
    }
    
    .megamenu .open:before {
        transform: rotate(135deg)!important;
    }
    
    .sp_toggle > .toggle_link {
        width: 100%;
    }
    
    .sp_toggle > .toggle_link:after {
        display: block;
        position: absolute;
        top: -8px;
        bottom: 0;
        right: 4%;
        margin: auto;
        content: "";
        width: 8px;
        height: 8px;
        border: 2px solid;
        border-color: transparent transparent #565656 #565656;
        transform: rotate(-45deg);
        z-index: 2000;
    }
    
    .sp_toggle.open > .toggle_link:after {
        transform: rotate(135deg)!important;
    }
    
    .sp_toggle > .megamenu_ctt {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      margin-top: 0;
      transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    }

    .open .megamenu_ctt {
      max-height: 1000px; /* 中身の高さに応じて大きめに。超えなければOK */
      opacity: 1;
      display: block;
    }
    
    
}


.s_con_txt_link2_wrap {
    display: flex;
    flex-wrap: wrap; 
}

.s_con_txt_link2 {
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 400;
    color: #000000!important;
    font-size: 16px;
    letter-spacing: 1px;
    line-height:22px;
    position: relative;
    padding:5px 25px 5px 10px;
    cursor: pointer;
    margin:0 15px 10px 0;
    background-color:#f4f3ee;
    border-radius: 10px;
    
}
.s_con_txt_link2::after {
    content: "";
    background-image: url(../img/arrow_blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3px;
    transition: right 0.3s ease;
}
.s_con_txt_link2:hover {
	opacity: 0.9;
}
/* ホバー時に矢印を右へ少し移動 */
.s_con_txt_link2:hover::after {
    right: -2px; /* 右に5px移動 */
}



	.megamenu_ctt_inner .listName {
		display: block;
		color: #001742;
		font-size: 18px;
		font-weight: 700;
		padding-left: 10px;
		padding-bottom: 25px;
	}
	.megamenu_ctt_inner .moreBtn {
		background-color: #001742;
		font-size: 12px;
		padding: 8px 14px;
		margin-left: 20px;
		border-radius: 50px;
	}
	.megamenu_ctt_inner .moreBtn span {
		position: relative;
		color: #fff;
		font-weight: 500;
		padding-right: 14px;
	}
	.megamenu_ctt_inner .moreBtn span:after {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		content: "";
		display: inline-block;
		border-color: #fff;
		border-style: solid;
		border-width: 0 2px 2px 0;
		height: 6px;
		vertical-align: middle;
		width: 6px;
		transform: rotate(-45deg);
		margin: auto;
	}
	.megamenu_ctt_inner .menu_inner {
		display: flex;
		flex-wrap: wrap;
        justify-content: center;
	}
	.megamenu_ctt_inner .menu_box {
		width: calc((100% - 40px) / 3);
		background-color: #fff;
		border-radius: 5px;
		box-shadow: 0px 1px 4px 0px rgba(142, 142, 142, 0.5);
	}
    
    @media (max-width: 959px) {
        .megamenu_ctt_inner .menu_box {
            width: calc((100% - 20px) / 2)!important;
        }
    }
    
	*::-ms-backdrop,.megamenu_ctt_inner .menu_box {
		width: calc((99% - 40px) / 3);
	}
    @media (min-width: 959px) {
        .megamenu_ctt_inner .menu_box:not(:nth-child(3n)) {
            margin-right: 20px;
        }
    }

	.megamenu_ctt_inner .menu_box:nth-child(n+4) {
		margin-top: 22px;
	}
    @media (max-width: 959px) {
        .megamenu_ctt_inner .menu_box:nth-child(3) {
            margin-top: 22px;
        }
        .megamenu_ctt_inner .menu_box:not(:nth-child(1)),
        .megamenu_ctt_inner .menu_box:not(:nth-child(3)){
            margin-right: 10px!important;
        }
    }
    
    .menu_box {
	cursor:pointer;
}
.menu_box .m_img_div{
	height:200px;
	border-radius: 5px 5px 0 0;
	overflow: hidden; /* はみ出し防止 */
    position: relative;
	border-bottom:1px solid #eeeeee;
}
@media (min-width: 959px) {
    .pcInner02_2 .menu_box .m_img_div{
        height:165px!important;
    }
}

@media screen and (max-width: 960px) and (min-width: 768px) {
    .menu_box .m_img_div {
        height: 250px!important;
    }
}

/* スマホ用（768px未満） */
@media screen and (max-width: 767px) {
    .menu_box .m_img_div {
        height: 100px!important;
    }
}



.menu_box .m_img_div img {
  width: 100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 5px 5px 0 0;
  transition: transform 0.8s ease;
}
.menu_box:hover .m_img_div img {
  transform: scale(1.1);
}
.menu_box .trig {
	text-align: center;
}
.menu_box .trig a {
    font-family: "Noto Sans JP", Helvetica!important;
    color:#333333;
	line-height:26px;
    display: block;
    padding-bottom:5px;
    letter-spacing: 1px;
}

.menu_box .trig a .posi_str {
    font-family: "Noto Sans JP", Helvetica!important;
    letter-spacing: 1px;
    font-size:12px;
    color:#848484;
    display: block;
    line-height:14px!important;
    padding-top:5px;
}

.pcInner02 {
    width:100%;
    padding:20px 100px 20px 100px;
}

@media (max-width: 959px) {
    .pcInner02 {
        padding:0px 0px 0px 0px!important;
    }
    .sp_mar_top_30 {
        margin-top:30px;
    }
    
    .s_con_txt_link2_wrap {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      margin-top: 0;
      transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    }

    .open + .s_con_txt_link2_wrap {
      max-height: 1000px; /* 中身の高さに応じて大きめに。超えなければOK */
      opacity: 1;
      margin-top: 15px;
    }
    
}

@media (min-width: 959px) and (max-height: 770px) {
    
    .s_con_txt_link2 {
        font-size:12px!important;
        line-height:12px!important;
        margin-bottom:5px!important;
    }
    
}

@media (min-width: 959px) and (min-height: 810px) {
    
    .megamenu .s_con_txt_tit:not(:first-of-type) {
        margin-top:20px!important;
    }
    
}


