	/* CSS Document */










/*矢印と円*/
.arrow_circle{
	background: #fff;
	border: 1px solid #273E97;
	border-radius: 30px;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s ease-out;
}
.arrow_circle--noborder{
	border:none;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 2px;
  margin: 5.3px 0;
  border-radius: 9999px;
  background-color: #273E97;
	transition: transform 0.3s; /*変形の時間*/
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #273E97;
  transform-origin: calc(100% - 1px) 50%;
	transition: transform 0.3s; /*変形の時間*/
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

/*アニメーションボタン　共通 */
.c-btn{
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	text-decoration: none;
}
 
.c-btn {
  background-color: inherit;
  border-radius: 10px;
  color: #fff;
  display: block;
  font-weight: bold;
  width: 240px;
  padding: 18px 40px;
  text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none !important;
}
@media all and (max-width: 767px) {
	/* 0715 */
	.c-btn {
		font-weight: 500;
		padding: 16px 20px;
	}
}
.b-btn{
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	text-decoration: none;
	
}
 
.b-btn {
  background: #555555;
  border-radius: 10px;
  color: #fff;
  display: block;
  font-weight: bold;
	width: 210px;
    padding: 16px 30px;
  text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none !important;
}
 

/*文字と矢印が移動、矢印の中が青くなる*/
.c-btn.slide {
  background: #fff;
  color: #000 !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-btn.slide::after {
  background: #fff;/*ロールオーバで塗りつぶされる色を指定*/
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn.slide:hover {
  color: #273E97 !important;
	padding-left: 45px;
	padding-right: 30px;
}
.c-btn.slide span{
	position: relative;
}
.c-btn.slide span::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: #273E97;
bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
transition: transform 0.3s; /*変形の時間*/
}

.c-btn.slide:hover span::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

.c-btn.slide:hover::after {
  transform: scale(1, 1);
}
.c-btn.slide:hover .arrow_circle{
	background-color: #273E97;
}
.c-btn.slide:hover .arrow,
.c-btn.slide:hover .arrow::before,
.c-btn.slide:hover .arrow::after{
	background-color: #fff;
}

@media all and (max-width: 767px) {
	.c-btn.slide:hover {
		color: #273E97 !important;
		padding-left: 20px;
		padding-right: 20px;
		text-decoration: none;
	}
	.c-btn.slide span::after{
		height: 0px;/*SPでは表示しない*/
	}
}


/*背景色がスライドして現れる*/
.c-btn.slide--bgcolor {
  background: inherit;
  color: #273E97;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-btn.slide--bgcolor::after {
  background: #273E97;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn.slide--bgcolor:hover {
  color: #fff !important;
	padding-left: 45px;
	padding-right: 30px;
}
.c-btn.slide--bgcolor:hover::after {
  transform: scale(1, 1);
}
.c-btn.slide--bgcolor:hover .arrow,
.c-btn.slide--bgcolor:hover .arrow::before,
.c-btn.slide--bgcolor:hover .arrow::after{
	background-color: #fff;
}

/*文字と矢印が移動、矢印の中がグレーになる*/
.b-btn.slide--bgcolor {
  background: #inherit;
  color: #555 !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.b-btn.slide--bgcolor::after {
  background: #555;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.b-btn.slide--bgcolor .arrow::before,
.b-btn.slide--bgcolor .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: -10px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #273E97;
  transform-origin: calc(100% - 1px) 50%;
	transition: transform 0.3s; /*変形の時間*/
}

.b-btn.slide--bgcolor .arrow::before {
  transform: rotate(135deg);
}

.b-btn.slide--bgcolor .arrow::after {
  transform: rotate(-135deg);
}

.b-btn.slide--bgcolor:hover {
  color: #fff !important;
	padding-left: 25px;
	padding-right: 35px;
}
.b-btn.slide--bgcolor:hover::after {
  transform: scale(1, 1);
}
.b-btn.slide--bgcolor .arrow,
.b-btn.slide--bgcolor .arrow::before,
.b-btn.slide--bgcolor .arrow::after{
	background-color: #555;
}
.b-btn.slide--bgcolor:hover .arrow,
.b-btn.slide--bgcolor:hover .arrow::before,
.b-btn.slide--bgcolor:hover .arrow::after{
	background-color: #fff;
}
.b-btn.rad-btn {
mix-blend-mode: multiply;
}



/*　お知らせ戻る・進むボタン（青）*/
.b-btn--sizemin{
	font-size: 14px !important;
	line-height: 21px !important;

    width: 120px;

    padding: 10px 20px;
	text-transform: uppercase;
	background-color: inherit !important;
}
.c-btn--sizemin{
	font-size: 14px !important;
	line-height: 21px !important;

    width: 120px;
	
    padding: 10px 20px;
	text-transform: uppercase;
	background-color: inherit !important;
}
.b-btn--sizemin.slide--bgcolor:hover {
	padding-left: 15px;
	padding-right: 25px;
}
.c-btn--sizemin.slide--bgcolor:hover {
	padding-left: 25px;
	padding-right: 15px;
}
.c-btn--sizecircle{
	font-size: 14px !important;
	width: 42px;
	 height: 42px;
	padding:0px;
	text-align: center;
	justify-content: center;
}
.c-btn--sizecircle.slide--bgcolor:hover {
	padding:8px 0px;
}

/*採用情報ボタン*/
.c-btn--recruit{
	width: 49%;
	height: 90px;
	margin-bottom: 20px;
}
@media all and (max-width: 767px) {
	.c-btn--recruit{
		width: 100%;
		height: 72px;
        margin-bottom: 10px;
	}
	.c-btn--recruit span{
		width: 82%;
		text-align: left;
	}
	
}




/*text center*/
.text-center-div{
	text-align: center;
	width: 100%;
}


/*拡大画像ボタン*/
.zoom-btn-wrap {
position: relative;
overflow: hidden;

height: 135px;
border-radius: 10px;
border: 1px solid #DADADA;
	font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 33px */
letter-spacing: 1.1px;
}
@media all and (max-width: 767px) {
	.zoom-btn-wrap {
		font-size: 16px;
		height: 90px;
	}
}
/*背景だけ違う*/
.zoom-btn-wrap--img1:after {
position: absolute;
content: "";
display: block;
width: 100%;
height: 100%;
top: 0;
background: url("../img2025/footer_btn_bg1.png") no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-ms-background-size: cover;
background-size: cover;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-ms-transition: all .3s ease-out;
transition: all .3s ease-out;
}
.zoom-btn-wrap--img1:hover:after {
opacity: .8;
-moz-transform: scale(1.05);
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
/*背景だけ違う*/
.zoom-btn-wrap--img2:after {
position: absolute;
content: "";
display: block;
width: 100%;
height: 100%;
top: 0;
background: url("../img2025/footer_btn_bg2.png") no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-ms-background-size: cover;
background-size: cover;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-ms-transition: all .3s ease-out;
transition: all .3s ease-out;
	
}
.zoom-btn-wrap--img2:hover:after {
-moz-transform: scale(1.05);
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}

.zoom-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
	height: 100%;
	text-decoration: none;
	color: #fff;
	transition: all .3s ease-out;
	padding: 40px;
	font-weight: 400;
	
backdrop-filter: brightness(100%);
}
.zoom-btn:hover{
	padding-left: 45px;
	padding-right: 30px;
	backdrop-filter: brightness(110%);
}
@media all and (max-width: 767px) {
	.zoom-btn {
		padding: 20px;
	}
}



/*スクロールで表示まわり*/
[data-scroll] {
  transition: opacity 1s;
}
[data-scroll="in"] {
  opacity: 1;
}
[data-scroll="out"] {
  opacity: 0;
}

.box{
 height: 100vh;
    background: #aaa;
        display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 1rem;
}

 .char {
    transition: transform .1s cubic-bezier(.3, 0, .3, 1), opacity .1s linear;
    transition-delay: calc(( var(--char-index)) * 0.1s);

  }

[data-scroll="out"] .char {
    opacity: 0;
   transform: translateX(-1em);
  }

.fx.text--slide .char {
    transition-delay: calc(( var(--char-index)) * 0.05s);
}
.fx.text--slide[data-scroll="out"] .char {
    opacity: 0;
    transform: translateX(-2em);
}

.fx .char {
    display: inline-block;
    -webkit-animation-delay: calc(0.25s + var(--char-index) * 0.1s);
    animation-delay: calc(0.25s + var(--char-index) * 0.1s);
    transition: all 0.25s calc(0.25s + var(--char-index) * 0.1s);
}

.fx.text--spinning[data-scroll="out"] .char {
    transform: rotateY(
-360deg
);
}



/*円のボタン*/
.rad-btn{
	border-radius: 999px;
	border: 1px solid var(--vesca-blue, #273E97);
	background: rgba(255, 255, 255, 0.00);
	
	text-align: center;
	font-family: Lato;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 150% */
	letter-spacing: 0.8px;
}
.b-btn.rad-btn{
	border-color: #555;
}

/*ロールオーバで下線*/
span.underline_ani{
	position: relative;
}
span.underline_ani::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: #273E97;
bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
transition: transform 0.3s; /*変形の時間*/
}

a:hover span.underline_ani::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}







