@charset "UTF-8";
/* ----------------------------------------------------------------
Setting
---------------------------------------------------------------- */
html {
	height: 100%;
	overflow: auto;
}
body {
	color: #000000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
font-size: 16px;
	  position: relative;
}
img {
  vertical-align: bottom;
	max-width:100%;
}
ol, ul {
  list-style-type: none;
}
a{
  text-decoration: none;
}
a,a:hover,a:visited{
    color: inherit;
}
p a{
	text-decoration: underline;
}
p a:hover{
	text-decoration: none;
}
.eng {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 1026px) {
  /*PCのみ*/
a img {
  transition: opacity 0.2s ease-out;
}
a:hover{
  text-decoration: underline;
}
a:hover img {
  opacity: 0.6;
}
}
@media screen and (max-width: 767px) {
  /*Spのみ*/
body {
font-size: 15px;
}
}
/*--ここから記述--*/
/* ----------------------------------------------------------------
共通
---------------------------------------------------------------- */
#main > .wrap{
	overflow: hidden;
}
.sp,
.pc {
	display: none;
}
.h2_tl_area{
	text-align: center;
	    overflow: hidden;
}
.h2_tl_area .sub{
	font-weight: 600;
	margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  /*Spのみ*/
.h2_tl_area .sub{
	margin-bottom: 20px;
}
}
/*--btn--*/
.btn .link {
    display: flex;
	max-width: 350px;
	overflow: hidden;
	position: relative;
    align-items: center;
    justify-content: space-between;
	padding-bottom:20px;
}
.btn .link::after{
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  content: '';
  width: 100%;
  height: 1px;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
.btn .link::before{
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  will-change: transform;
}
.btn .link:hover{
	text-decoration: none;
}
.btn .link span.txt {
    position: relative;
    overflow: hidden;
    display: inline-block;
    height: 1.5em;
    line-height: 1.5;
}
.btn .link span.txt span{
  display: block;
  transform: translateY(0);
  transition: transform .35s ease;
}
.btn .link span.txt::after{
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  display: block;
  transform: translateY(0);
  transition: transform .35s ease;
}
.btn .link .btn_arrow {
    width: 30px;
    height: 18px;
    background: #000;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.btn .link .btn_arrow svg{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 11px;
  height: 70%;
  display: block;
  color: #fff;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  /*pcのみ*/
.btn .link:hover span.txt span{
  transform: translateY(-100%);
}
.btn .link:hover span.txt::after{
  transform: translateY(-100%);
}
.btn .link:hover .btn_arrow svg{
  animation: arrowLoopSvg .6s ease-in-out both;
}
.btn .link:hover::before{
  animation: lineLoop .6s ease-in-out both;
}
}
@media screen and (max-width: 767px) {
.btn .link {
    padding-bottom: 10px;
}
}
/*--circle_arrow--*/
.circle_arrow a{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.circle_arrow a span.arrow{
  width: 20px;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: solid 1px #231815;
  position: relative;
  transition: transform .25s ease;
  transform-origin: center;
}
.circle_arrow a span.arrow .arrow-svg{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 70%;
  display: block;
  color: #000;
  will-change: transform;
}
@media screen and (min-width: 1026px) {
.circle_arrow a:hover span.arrow{
  transform: scale(1.5);
	border:solid 1px rgba(79, 162, 193, 1);
}
.circle_arrow a:hover span.arrow .arrow-svg{
  animation: arrowLoopSvg .6s ease-in-out both;
	color:  rgba(79, 162, 193, 1);
	width: 8px;
}
}
@keyframes arrowLoopSvg{
  0%   { transform: translateX(0);    opacity: 1; }
  45%  { transform: translateX(20px); opacity: 1; } /* 右へ→見切れ */
  46%  { transform: translateX(-20px);opacity: 0; } /* 左外へワープ */
  60%  { transform: translateX(-20px);opacity: 1; } /* 左から出現 */
  100% { transform: translateX(0);    opacity: 1; }
}
@keyframes lineLoop{
  0%   { transform: translateX(0); }
  45%  { transform: translateX(100%); }   /* 右に抜ける */
  46%  { transform: translateX(-100%); }  /* 左外へワープ */
  100% { transform: translateX(0); }
}
.sp, .pc, .tablet,.pc_tablet {
  display: none !important;
}
@media screen and (min-width: 1026px) {
  /*PCのみ*/
  .pc {
    display: block !important;
  }
}
@media screen and (max-width: 1025px) {
  /*tablet*/
  .tablet {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  .pc_tablet {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  /*Spのみ*/
  .sp {
    display: block !important;
  }
}
/* ----------------------------------------------------------------
header
---------------------------------------------------------------- */
header{
  width: 100%;
      position: fixed;
    top: 0;
      z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
header.is-scroll {
    background-color: #ffffff;
    border-bottom: solid 1px #000;
}
header h1 a{
        display: block;
	    transition: all 0.5s ease;
        background: url(../img/logo_b.svg) center center no-repeat;
        background-size: contain;
}
header a:hover{
  text-decoration: none;
}
header a:hover img{
  opacity: 1;
}
	header .gnav .gnav_btn{
		    display: flex;
	}
header .gnav .language , header .gnav .contact a {
    font-weight: 600;
    position: relative;
    border-radius: 3px;
    line-height: 2.5;
    display: flex;
    align-items: center;
    width: clamp(8.125rem, -1.088rem + 14.37vw, 9.688rem);
    padding: 0 15px;
    text-align: center;
    justify-content: center;
    outline-offset: -1px;
}
header .gnav .language:before{
	content: "";
	display: block;
	margin-right: 10px;
	width: 20px;
	height: 20px;
	background: url("../img/i_language_w.svg")center center no-repeat;
	background-size: contain;
}
header .gnav .language .prisna-wp-translate-name{
	display: none !important;
}
header .gnav .language .target-for-prisna{
	width: calc(100% - 30px);
}
header .gnav .language .prisna-wp-translate-layout-bar .prisna-wp-translate-sub-container{
	        background: #b9b9b9  !important;
}
header .gnav .language .prisna-wp-translate-current-language img, header .gnav .language .prisna-wp-translate-sub-container a img{
	    height: 15px !important;
}
header .gnav .language .prisna-wp-translate-flag-ja {
    background-image: url(../img/icon_japan.png) !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
    background-size: contain;
}
header .gnav .language .prisna-wp-translate-flag-en {
    background-image: url(../img/icon_eng.png) !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
    background-size: contain;
}
header .gnav .language .prisna-wp-translate-flag-zh-tw {
    background-image: url(../img/icon_chine.png) !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
    background-size: contain;
}
header .gnav .contact a{
	background: #243374;
background: linear-gradient(90deg, rgba(36, 51, 116, 1) 0%, rgba(57, 109, 245, 1) 51%, rgba(79, 162, 193, 1) 100%);
	 outline: none;
	color: #fff;
}
@media screen and (min-width: 1026px) {
  /*PCのみ*/
header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
}
header h1 a{
  width: clamp(13.125rem, -1.616rem + 22.99vw, 15.625rem);
	height: 35px;
}
	header.is-scroll h1 a{
  width: 180px;
}
	header .gnav{
		display: flex;
		align-items: center;
		        height: 100%;
	}
	header .gnav nav{
		margin-right: 30px;
	}
  header .gnav nav ul{
    display: flex;
  }
	header .gnav nav ul li a{
		font-weight: 400;
		    position: relative;
	}
header .gnav nav > ul > li > a {
    text-align: center;
    margin-left: clamp(0.4rem, -1.332rem + 2.7vw, 1.2rem);
    margin-right: clamp(0.4rem, -1.332rem + 2.7vw, 1.2rem);
    display: block;
    font-size: clamp(0.8rem, 0.368rem + 0.67vw, 1rem);
}
   header .gnav nav > ul > li > a::after {
position: absolute;
left: 0;
	   right: 0;
	   margin: auto;
content: '';
width: 100%;
height: 1px;
background: #000;
bottom: 0px;
transform: scale(0, 1);
transform-origin: left top;
transition: transform 0.6s;
}

   header .gnav nav > ul > li > a:hover::after {
transform: scale(1, 1);
}
	header .gnav .insta{
		margin-left: 15px;
	}
	header .gnav .insta img{
		width: 28px;
	}
.gnav nav ul li.hyperlink a{
	position: relative;
	padding-right: 25px;
}
.gnav nav ul li.hyperlink a:before{
	position: absolute;
	content: "";
    width: 14px;
    height: 14px;
    right: 0;
    margin-top: -7px;
	top: 50%;
	background: url("../img/icon_site_b.svg") center no-repeat;
}
	header .gnav .language{
		margin-right: 10px;
		    width: 170px;
		width: 140px;
	}
	header .gnav .contact a:hover{
		color: rgb(172 214 229);
	}
	header .gnav .language{
	background: #b9b9b9;
		        padding:9px;
}
}
@media screen and (max-width: 1025px) {
  header{
    height: 45px;
    z-index: 900;
  }
  header .inner{
            padding: 0 5%;
        height: 100%;
        display: flex;
	          justify-content: space-between;
        align-items: center;
  }
header h1 a {
    width: 120px;
    height: 20px;
}
	header.is-scroll h1 a{
  width: 120px;
}

		header.open h1 a{
        background: url(../img/logo_w.svg) center center no-repeat;
}
	.gnav nav ul li.hyperlink a{
	position: relative;
	padding-right: 25px;
        display: inline-block;
        width: 100%;
}
	.gnav nav ul li.hyperlink a span{
		display: inline-block;
	}
.gnav nav ul li.hyperlink a:after{
	position: absolute;
	content: url("../img/icon_site_w.svg");
width: 14px;
        height: 14px;
        display: inline-block;
        margin-left: 10px;
}
}
/* ----------------------------------------------------------------
ハンバーガーメニュー
---------------------------------------------------------------- */
.menu-toggle {
display: none;
    cursor: pointer;
    z-index: 1000;
    height: 45px;
    width: 38px;
      padding: 3px 0px;
}
.menu-toggle > span {
    display: block;
    width: 30px;
    height: 1px;
    margin: 9px auto;
    background: #000;
    transition: all 0.3s ease;
}
.menu-toggle.active > span{
	background: #fff;
}
.menu-toggle.active > span.ac_no{
 display: none; 
}
.menu-toggle.active > span:first-child{
  transform: rotate(-45deg);
}
.menu-toggle.active > span:last-child{
  transform: rotate(45deg);
}
.menu-toggle.active > span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.menu-toggle.active > span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active > span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-toggle .menu-label{
    display: flex;
    align-items: flex-start;
    justify-content: center;
	color: #fff;
}
.menu-toggle .menu-label .slot{
    overflow: hidden;
    height: 0.75em;
    font-size: 0.65em;
    vertical-align: middle;
    line-height: 0.75em;
}
.menu-toggle .menu-label .slot-inner{
    display: block;
    transform: translateY(-0.85em);
    transition: transform .35s ease;
    height: 0.75em;
    line-height: 0.75em;
}
.menu-toggle .menu-label .word{
    display: block;
    height: 0.75em;
    line-height: 0.75em;
    text-align: center;
}
.menu-toggle .menu-label .word.word-close{
	    margin-bottom: 0.1em;
}
.menu-toggle.active .menu-label .slot-inner{
  transform: translateY(0);
}


@media (max-width: 1025px) {
	header.open{
		mix-blend-mode: unset;
	}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100vh;
  background:linear-gradient(0deg, rgba(36, 51, 116, 1) 0%, rgba(57, 109, 245, 1) 51%, rgba(79, 162, 193, 1) 100%);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s; /* フェードアウト後に非表示 */
  z-index: 0;
}

header.open::before {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.5s ease-out,
    visibility 0s;
}

header > * {
  position: relative;
  z-index: 1;
}
    .menu-toggle {
        display: block;
    }
.gnav {
    position: fixed;
    opacity: 0;
    display: none;
    top: 38px;
    width: 100%;
    z-index: 9999;
    left: 0;
}
header.open .gnav {
	opacity: 1;
	display: block;
	transition: opacity 0.7s ease;
}
	.gnav nav > ul{
		width: 90%;
		margin: 15px auto 25px;
	}
.gnav nav > ul > li {
        display: block;
        color: #fff;
        font-size: 1.1em;
        position: relative;
  letter-spacing: 0.1em;
}
	.gnav nav  ul  li{
		position: relative;
	}
	.gnav nav > ul > li > a{
        padding:15px 10px;
		    border-bottom: solid 1px #ffffff6e;
	}
	.gnav nav > ul > li:last-child > a{
		  border-bottom:none;
	}
.gnav nav  ul  ul a {
    font-size: 0.9em;
    padding: 10px 10px;
	border-bottom:solid 1px #ffffff42;
}
	header .gnav .gnav_btn{
		width: 90%;
		margin: 0 auto;
	}
	header .gnav .contact{
	width: calc(95% - 182px);
		width: calc(95% - 162px);
	}
header .gnav .language {
    height: 45px;
	margin-right: 5%;
	width: 182px;
	width: 162px;
    font-size: 1em;
    color: #ffff;
	    outline: solid 1px #fff;
}
header .gnav .language:before {
    background: url("../img/i_language_w.svg")center center no-repeat;
    background-size: contain;
}
	header .gnav .language .prisna-wp-translate-layout-bar .prisna-wp-translate-sub-container {
    background: none !important;
}
	header .gnav .contact a{
		    height: 45px;
    font-size: 1em;
		        width: 100%;
		        color: #333;
		background: #fff;
	}
}
/* ----------------------------------------------------------------
ハンバーガーメニュー
---------------------------------------------------------------- */

/* ========== 共通 ========== */
.gnav nav ul > li { position: relative; }

/* PCドロップダウン */
@media screen and (min-width: 1026px) {
.gnav .subnav {
    position: absolute;
    left: 10px;
	padding-top: 10px;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
    z-index: 1001;
}
	.gnav .subnav ul{
		    display: flex;
    flex-wrap: wrap;
		    min-width:220px;
   background: #243374;
background: linear-gradient(0deg, rgba(36, 51, 116, 1) 0%, rgba(57, 109, 245, 1) 51%, rgba(79, 162, 193, 1) 100%);
           padding:0 15px;
    border-radius: 3px;
	}
	.gnav .subnav li{
		width: 100%;
	}
.gnav .subnav li a {
    color: #fff;
     font-size: clamp(0.8rem, 0.368rem + 0.67vw, 1rem);
    width: 100%;
    line-height: 2;
    box-sizing: border-box;
    padding: 12px 5px;
    border-bottom: solid 1px #ffffff6e;
    text-align: left;
	 transition: color 0.3s ease;
}
  .gnav .subnav li:last-child a { border-bottom: none;}
	
  /* ホバーで表示 */
  .gnav li.has-sub:hover > .subnav,
  .gnav li.has-sub:focus-within > .subnav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
/* ----------------------------------------------------------------
f_contact_area
---------------------------------------------------------------- */
#f_contact_area .txt_area{
	background: #f2f2f2;
	padding: 100px 5% 80px;
	text-align: center;
}
#f_contact_area .txt_area .h2_tl_area h2{
width: 450px;
	margin: 0 auto 50px;
}
#f_contact_area .link_area{
	display: flex;
}
#f_contact_area .link_area .link_box{
	display: flex;
	position: relative;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 50%;
	height: 350px;
	text-align: center;
	padding: 30px 5%;
}
#f_contact_area .link_area .link_box .tl{
	font-size: 1.4em;
	font-weight: 600;
	margin-bottom: 20px;
}
#f_contact_area .link_area .link_box .telbox{
	position: relative;
}
#f_contact_area .link_area .link_box .tel{
	font-size: 1.4em;
	border-bottom: solid 1px #000;
	padding-bottom: 10px;
}
#f_contact_area .link_area .link_box .tel span {
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding-left: 6px;
}
#f_contact_area .link_area .link_box .telbox .txt{
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -2em;
}
#f_contact_area .link_area .link_box a .icon{
	width: 20px;
	height: 16px;
	display: block;
	    position: relative;
	left: 0;
	padding-right: 10px;
}
#f_contact_area .link_area .link_box a .icon:before {
    content: "";
    position: absolute;
    background: url("../img/i_mail.svg")center center no-repeat;
    width: 100%;
    height: 100%;
	left: 0;
    background-size: contain;
}
@media (max-width: 1025px) {
#f_contact_area .txt_area {
    padding: 30px 5%;
}
#f_contact_area .txt_area .h2_tl_area h2 {
    width: 100%;
    margin: 0 auto 30px;
}
	#f_contact_area .txt_area .h2_tl_area svg{
		height: 35px;
	}
#f_contact_area .link_area {
    display: block;
}
#f_contact_area .link_area .link_box:first-child {
    border-right: none;
}
#f_contact_area .link_area .link_box {
    width: 100%;
	height: auto;
    border-bottom: solid 1px #231815;
    padding: 20px 5%;
}
	#f_contact_area .link_area .link_box:before{
		content: none;
	}
#f_contact_area .link_area .link_box .tl {
	font-size: 1.4em;
    margin-bottom: 15px;
}
	#f_contact_area .link_area .link_box .tel{
		margin-bottom: 10px;
	    font-size: 1.4em;
    padding-bottom: 5px;
	}
#f_contact_area .link_area .link_box .telbox .txt {
    position: static;
    bottom: 0;
}
}
/* ----------------------------------------------------------------
footer
---------------------------------------------------------------- */
#footer{
	background: linear-gradient(0deg, rgba(36, 51, 116, 1) 0%, rgba(57, 109, 245, 1) 51%, rgba(79, 162, 193, 1) 100%);
}
#footer > .inner{
	max-width: 1200px;
	width: 90%;
	padding: 50px 0;
	margin: 0 auto;
}
#footer > .inner .box02 #copy_txt{
	color: #fff;
	font-size: 0.8em;
	    font-weight: 300;
	margin-right: 30px;
}
#footer > .inner .box02,
#footer > .inner .box02 .sub_nav,
#footer > .inner .box02 .sub_nav .nav01,
#footer > .inner .box02 .sub_nav .nav02{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#footer > .inner .box02 .sub_nav{
		max-width: 400px;
	width: 90%;
}
#footer > .inner .box02 .sub_nav .nav01{
	color: #fff;
	font-size: 0.7em;
	margin-right: 30px;
}
#footer > .inner .box02 .sub_nav .nav01 li{
	margin-right: 20px;
}
#footer > .inner .box02 .sub_nav .nav01 li:last-child{
	margin-right: 0;
}
#footer > .inner .box02 .sub_nav .nav02 li:first-child{
	margin-right: 10px;
}
#footer > .inner .box02 .sub_nav .nav02 li a {
    width: 40px;
    height: 40px;
	transition: 0.4s;
       display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    border: solid 1px #000;
}
#footer > .inner .box02 .sub_nav .nav02 li a img{
	    width: 60%;
    height: 60%;
}
@media screen and (min-width: 1026px) {
	#footer > .inner .box01{
		display: flex;
		justify-content: space-between;
		margin-bottom: 80px;
	}
	#footer #footer_logo{
		width: 220px;
		        margin-right: 30px;
	}
	#footer #footer_logo .img {
    margin-top: 20px;
    display: inline-block;
    overflow: hidden;
    border-radius: 15px;
}
	#footer .footer_nav{
		width: 880px;
	}
	#footer .footer_nav nav{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	#footer .footer_nav nav >ul{
		width: 48%;
		color: #fff;
		height: 267px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	#footer .footer_nav nav >ul > li > a{
		padding-bottom: 10px;
		width: 100%;
		margin-bottom: 30px;
		border-bottom: solid 1px #fff;
	}
	#footer .footer_nav nav >ul > li > a:last-child{
		margin-bottom: 0;
	}
	#footer .footer_nav nav >ul > li.has-sub > a{
		margin-bottom: 10px;
	}
	#footer .footer_nav nav >ul > li a{
		text-decoration: none;
		        transition: 0.4s;
	}
	#footer .footer_nav nav >ul > li a:hover{
		color: rgb(172 214 229);
	}
	#footer > .inner .box02 .sub_nav .nav02 li a:hover{
		background: #ccc;
	}
		#footer > .inner .box02 .sub_nav .nav02 li a:hover img{
		opacity: 1;
	}
}
@media (max-width: 1025px) {
	#footer > .inner {
    padding: 30px 0;
}
	#footer #footer_logo{
		width: 150px;
		margin: 0 auto 20px;;
	}
	#footer > .inner .box02{
		flex-wrap: wrap;
	}
	#footer #footer_logo .img{
		    overflow: hidden;
    border-radius: 15px;
		margin-top: 20px;
	}
#footer > .inner .box02 #copy_txt {
    order: 2;
    margin-right: 0;
    font-size: 0.6em;
    text-align: center;
    width: 100%;
}
#footer > .inner .box02 .sub_nav {
    order: 1;
    display: block;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
}
	#footer > .inner .box02 .sub_nav .nav01{
		        margin-right: 0;
        width: 100%;
		        margin-bottom: 10px;
		justify-content: center;
	}
	#footer > .inner .box02 .sub_nav .nav01 li {
    margin-right: 7px;
}
		#footer > .inner .box02 .sub_nav .nav02{
		        justify-content: center;
	}
	#footer > .inner .box02 .sub_nav .nav02 li a {
    width: 30px;
    height: 30px;
}
}
/* ===============================
   line_anime（汎用）
=============================== */
.line_anime{
  position: relative;
}

/* 線の共通要素 */
.line_anime::before{
  content:"";
  position:absolute;
  pointer-events:none;
  z-index: 2;
  background:#000;
  opacity: 1;
}

/* ---- 上部 横線：左→右 ---- */
.line_anime.line_top_l::before{
  left: 0;
  top: 0;
  height: 1px;
  width: 0;
  transform-origin: left center;
}
.line_anime.line_top_l.active::before{
  animation: lineTopGrow 0.8s ease forwards;
}

/* ---- 上部 横線：右→左 ---- */
.line_anime.line_top_r::before{
  right: 0;
  top: 0;
  height: 1px;
  width: 0;
  transform-origin: right center;
}
.line_anime.line_top_r.active::before{
  animation: lineTopGrow 0.8s ease forwards;
}

/* ---- 縦線：上→下（左端） ---- */
.line_anime.line_top_st::before{
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  transform-origin: center top;
}
.line_anime.line_top_st.active::before{
  animation: lineSideGrow 0.8s ease forwards;
}

/* keyframes */
@keyframes lineTopGrow{
  to{ width: 100%; }
}
@keyframes lineSideGrow{
  to{ height: 100%; }
}
/* ===============================
   feedin（汎用フェード）
=============================== */
.feedin{
  opacity: 0;
  transform: translateY(10px);   /* いらなければ消してOK */
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.feedin.active{
  opacity: 1;
  transform: translateY(0);
}
/* ===============================
   feedin_line
=============================== */

/* subは最後 */
.feedin_line .sub{
  opacity: 0;
  transition: opacity .6s ease;
}
.feedin_line.active .sub{
  opacity: 1;
  transition-delay: 1.55s;
}

/* SVG */
.feedin_line svg{
  display: block;
  width: 100%;
  height: auto;
  shape-rendering: geometricPrecision;
}

/* ★初期状態は“常に”これ（発火前に見えない＆黒ベタ防止） */
.feedin_line svg path{
  stroke: #000 !important;      /* 線色 */
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  paint-order: stroke;

  fill: #fff !important;        /* ベタ色（黒ベタ防止） */
  fill-opacity: 0;              /* 発火前は透明 */

  /* pathLength正規化のdash（発火前から仕込む） */
  stroke-dasharray: 1.2;
  stroke-dashoffset: 1.2;
}

/* activeでアニメ開始 */
.feedin_line.active svg path{
  animation:
    flStroke 1.1s ease forwards,
    flFill   .6s ease forwards .95s;
}

@keyframes flStroke{ to{ stroke-dashoffset: 0; } }
@keyframes flFill  { to{ fill-opacity: 1; } }
/* ===============================
   img_line：線 → 画像 浮かび上がり（汎用）
=============================== */

/* 画像枠（レイアウトはそのまま） */
.img_box.img_line{
  position: relative;
  overflow: hidden;            /* 線/画像の見切れ防止 */
}

/* 既存の border(1px) は img_line のときだけOFF（枠線は疑似要素で描く） */
#strengths .st_box_area > .box .img_box.img_line img{
  border: none;                /* ここがポイント */
}

/* 線（FVのfv-frameと同じ発想で“2つの角”から描く） */
.img_box.img_line::before,
.img_box.img_line::after{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  z-index: 2;
  opacity: 1;
}

/* 右下起点：bottom + right */
.img_box.img_line::before{
  background:
    linear-gradient(#000, #000) bottom right / 0% 1px no-repeat, /* 横 */
    linear-gradient(#000, #000) bottom right / 1px 0% no-repeat; /* 縦 */
}

/* 左上起点：top + left */
.img_box.img_line::after{
  background:
    linear-gradient(#000, #000) top left / 0% 1px no-repeat,
    linear-gradient(#000, #000) top left / 1px 0% no-repeat;
}

/* 画像：発火前は隠す（浮かび上がり用） */
.img_box.img_line img{
  display:block;
  width:100%;
  height:auto;
  opacity: 0;
  transform: translateY(10px) scale(1.03);
  transition: opacity .7s ease, transform .9s ease;
  will-change: opacity, transform;
}

/* activeで：線をなぞる */
.img_box.img_line.active::before{ animation: imgFrameBR .9s ease forwards; }
.img_box.img_line.active::after { animation: imgFrameTL .9s ease forwards; }

/* 線を描き終わったら少し遅れて画像を出す */
.img_box.img_line.active img{
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .85s;
}

/* 線は画像が出るタイミングで消す（不要ならこの2つ消してOK） */
.img_box.img_line.active::before,
.img_box.img_line.active::after{
  animation-fill-mode: forwards;
}
.img_box.img_line.active{
  /* 枠線を消したい場合だけ */
}
.img_box.img_line.active::before,
.img_box.img_line.active::after{
  /* “描く”アニメに加えてフェードアウトを後ろで掛ける */
  /* （同じ疑似要素に複数animationは書けないので opacity を transition で落とす） */
}


@keyframes imgFrameBR{
  0%  { background-size: 0% 1px, 1px 0%; }
  60% { background-size: 100% 1px, 1px 0%; }
  100%{ background-size: 100% 1px, 1px 100%; }
}
@keyframes imgFrameTL{
  0%  { background-size: 0% 1px, 1px 0%; }
  60% { background-size: 100% 1px, 1px 0%; }
  100%{ background-size: 100% 1px, 1px 100%; }
}

/* ----------------------------------------------------------------
pages
---------------------------------------------------------------- */
.pages #contents{
	margin-top: 100px;
	
}
.pages .pages_tl_area > .inner{
width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0;
}
.pages .pages_tl_area > .inner .sub{
	margin-bottom: 10px;
}
.pages .pages_tl_area > .inner h2.pages_h2{
	font-size: 1.8em;
	    font-weight: 500;
}
.pages #pages_fv{
	width: 100%;
	height: 550px;
	position: relative;
	border-bottom: solid 1px #000;
	border-top: solid 1px #000;
}
@media screen and (max-width: 767px) {
.pages #contents {
    margin-top: 45px;
}
.pages .pages_tl_area > .inner {
    padding: 20px 0;
}
	.pages .pages_tl_area > .inner .sub {
    margin-bottom: 5px;
}
	.pages .pages_tl_area > .inner h2.pages_h2 {
    font-size: 1.6em;
}
}

header .gnav .language .responsive-prisna-wp-translate-language-zh-tw{
	display: none !important;
}
/* hide reCAPTCHA v3 badge */
.grecaptcha-badge {
    visibility: hidden;
}