@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Noto+Serif+KR:wght@200..900&display=swap');
/* ページ内リンクの移動を滑らかに */
html {
  scroll-behavior: smooth;
}
/* 基本設定 */
body {
  -webkit-text-size-adjust: 100%;
  line-height: 2;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: normal;
  font-family:'Noto Sans KR';
  letter-spacing: 0.64px;
  font-weight: 500;
}

a{
  color: #000;
}
a:hover{
  opacity: .7;
}
h1,h2,h3,h4,h5,h6{
  margin: 0;
}
.text-wrap {
  display: inline-block;
}
img {
  max-width: 100%;
  height: auto;
}

.pc_block {
  display: block;
}

.sp_block {
  display: none;
}
main{
  margin-top: 70px;
}
/* ==========================
ブロック要素の位置
============================= */
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
:target::before{
  content: '';
  margin-top: -60px;
  height: 60px;
  display: block;
  visibility: hidden;
}
/* ==========================
インデント
============================= */
.indent {
  text-indent: -1em;
  padding-left: 1em;
}

/*アンカーリンク*/
:target::before {
  content: "";
  display: block;
  margin-top: -76px;
  height: 76px;
}

/* ==========================
位置調整
============================= */
.mt_10{margin-top: 10px;}
.mt_20{margin-top: 20px;}
.mt_30{margin-top: 30px;}
.mt_40{margin-top: 40px;}
.mt_50{margin-top: 50px;}
.mt_60{margin-top: 60px;}
.mt_70{margin-top: 70px;}
.mt_80{margin-top: 80px;}
.mt_90{margin-top: 90px;}
.mt_100{margin-top: 100px;}

.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_40{margin-bottom: 40px;}
.mb_50{margin-bottom: 50px;}
.mb_60{margin-bottom: 60px;}
.mb_70{margin-bottom: 70px;}
.mb_80{margin-bottom: 80px;}
.mb_90{margin-bottom: 90px;}
.mb_100{margin-bottom: 100px;}

.pt_10{padding-top: 10px;}
.pt_20{padding-top: 20px;}
.pt_30{padding-top: 30px;}
.pt_40{padding-top: 40px;}
.pt_50{padding-top: 50px;}
.pt_60{padding-top: 60px;}
.pt_70{padding-top: 70px;}
.pt_80{padding-top: 80px;}
.pt_90{padding-top: 90px;}
.pt_100{padding-top: 100px;}

.pb_10{padding-bottom: 10px;}
.pb_20{padding-bottom: 20px;}
.pb_30{padding-bottom: 30px;}
.pb_40{padding-bottom: 40px;}
.pb_50{padding-bottom: 50px;}
.pb_60{padding-bottom: 60px;}
.pb_70{padding-bottom: 70px;}
.pb_80{padding-bottom: 80px;}
.pb_90{padding-bottom: 90px;}
.pb_100{padding-bottom: 100px;}


/* ==========================
フォント・色
============================= */
.bold{
  font-weight: bold;
}
.fs14{
  font-size: 1.4rem;
}

/*引用*/
blockquote{
  font-size: 1.2rem;
  text-align: right;
}

/* アニメーション
======================================================= */

.fade {
  opacity: 0;
  filter: blur(3px);
  transition: opacity 0.8s ease-out, filter 0.8s ease-out;
}


.fadein {
  opacity: 1;
  filter: blur(0);
}


.fade.fade--bot{
  transform: translate(0,30px);
}
.fade.fade--top{
  transform: translate(0,-50px);
}
.fade.fade--left{
  transform: translate(-100px,0);
}
.fade.fade--right{
  transform: translate(100px,0);
}
.fade.fadein{
  transform: translate(0,0);
  opacity: 1;
}
/* 子要素を順番にフェードイン */
.fade.fade--list{
  opacity: 1;
}
.fade_child{
  opacity: 0;
  transform: translate(0,30px);
  transition: .5s ease-in-out;
}
.fadein .fade_child{
  transform: translate(0,0);
  opacity: 1;
}
.fade_child:nth-child(1){
  transition-delay: 0.15s;
}
.fade_child:nth-child(2){
  transition-delay: 0.3s;
}
.fade_child:nth-child(3){
  transition-delay: 0.45s;
}
.fade_child:nth-child(4){
  transition-delay: 0.6s;
}
.fade_child:nth-child(5){
  transition-delay: 0.75s;
}
.fade_child:nth-child(6){
  transition-delay: 0.9s;
}
.fade_child:nth-child(7){
  transition-delay: 1.05s;
}
.fade_child:nth-child(8){
  transition-delay: 1.2s;
}
.fade_child:nth-child(9){
  transition-delay: 1.35s;
}

/*共通includ*/
.aside_contact {
}

/*ヘッダー*/
.h_pc{
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 9999;
  background: #fff;
  height: 70px;
  align-items: center;
}
.h_pc nav{
  display: flex;
  height: 70px;
  width: 100%;
  justify-content: space-between;
}
.hd_menu{
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding-right: 30px;
  padding-top: 10px;
}
.hd_menu--o{
  width: 100%;
}
.hd_global{
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-right: 30px;
}
.hd_global li {
  display: flex;
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 1.5;
  background: #0099CC;
  height: 30px;
}

.hd_global li a{
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}
.hd_global li a:hover{
  background: #DEF3FC;
  opacity: 1;
  color: #1D2959;
  transition: .5s;
}
.hd_global li.lang a:hover{
  background: #0099CC;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.hd_global li a.wid{
  height: 100%;
  width: 100%;
}
.hd_global li{
  width: 180px;
  gap: 10px;
}
.hd_global li a:nth-child(1)::after,
.hd_global li a:nth-child(2)::after{
  content: "/";
  color: #fff;
  position: relative;
  left:5px;
}

.hd_logo{
  padding: 20px;
}

.hd_menu li a.hd_link{
  padding-bottom: 3px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 3.2px;
  position: relative;
  line-height: 1;
}
.hd_menu li a.hd_link:hover{
  opacity: 1;
  z-index: 99;
}
.hd_menu li a.hd_link::after {
  position: absolute;
  top: 20px;
  left: 0;
  content: '';
  width: 0;
  height: 2px;
  background-color: #E60013;
  transition: .3s;
}
.hd_menu li a.hd_link:hover::after {
  width: 100%;
}
.hd_menu li.mega_pre a.hd_link:hover::after {
  width: 0%;
}
.pro_block--link li a:hover{
  opacity: 1;
}

.hd_menu li a.hd_link:hover::before{
  border-right: 12px solid transparent;
  border-bottom: 9px solid #E60013;
  border-left: 12px solid transparent;
  transition: .3s;
}


.hd_menu li:nth-child(1){
  padding-left: 30px;
}
.hd_cont a{
  background-color: #1D2959;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  color: #fff;
  position: relative;
  padding-bottom: 0px;
  padding-left: 30px;
  font-size: 1.6rem;
  line-height: 0;
  position: relative;
  z-index: 99;
  transition: .5s;
}
.hd_cont a:hover{
  background-color: #E60013;
  transition: .5s;
  opacity: 1;
}
.hd_cont a::before{
  content: url("../img/h_mail.svg");
  position: absolute;
  left: 15px;
  line-height: 0;
}

/*テーブル*/
.outline_table{
  max-width: 850px;
  width: 100%;
  margin: 50px auto 0;
  border-top: 1px solid #1D2959;
  margin-bottom: 100px;
  position: relative;
}
.outline_table.last {
  margin-bottom: 0px;
}
.outline_table th {
  background: #f1f1f1;
  text-align: center;
  vertical-align: top;
  padding: 25px 3px;
  width: 186px;
  border-bottom: 1px solid #1D2959;
  font-weight: bold;
}

.outline_table td {
  padding: 25px 45px;
  padding-right: 0;
  background: #fff;
  border-bottom: 1px solid #1D2959;
  line-height: 2;
  letter-spacing: 0.64px;
  font-weight: bold;
}

/*メガメニュー*/

.child_menu > li > a {
  font-size: 0.8em;
}
.child_menu > li > a:hover {
  background: #000;
}
 
.child_menu {
  position: absolute;
  top: 0%;
  left: 0;
  padding: 60px 30px;
  color: #30347F;
  background: #F1F1F1;
  visibility: hidden;
  transition: 0.5s top, .2s opacity ;
  opacity: 0;
  z-index: -1;
  width: 100%;
}
.mega_pre .child_menu::before{
  content: url(../img/allow.webp);
  position: absolute;
  top: -17px;
  z-index: 2;
}
.mega_pre .child_menu.child_menu--01::before{
  right: 453px;
}
.mega_pre .child_menu.child_menu--02::before{
  right: 327px;
}
.mega_pre .child_menu.child_menu--03::before{
  right: 202px;
}

.mega_pre .child_menu.child_menu--01 .menu_flex{
  gap: 60px;
  transition: 0.5s top, .5s opacity ;
}
.mega_pre .child_menu.child_menu--01 .mega_link{
  width: 440px;
}
.mega_pre .child_menu.child_menu--01 .mega_link--bottom{
  flex-wrap: wrap;
  width: 100%;
}
.mega_pre .child_menu.child_menu--01 .mega_link--bottom a{
  width: 47%;
}
.mega_pre .child_menu.child_menu--01 .mega_link:nth-child(3)::before{
  content: "";
  left: -32px;
  position: absolute;
  height: 100%;
  width: 1px;
  background: #C1C1C1;
  display: inline-block;
}

.hd_menu li{
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.hd_menu li:hover .child_menu {
  visibility: visible;
  top: 70px;
  opacity: 1;
}
.menu:not(:hover) .child_menu {
  transform: translateY(100%);
  opacity: 1;
}
 

.menu_flex{
	display: flex;
	justify-content: center;
	margin:auto;
}
.menu_title{
	width: 350px;
	margin: 0;
}

.mega_link{
  position: relative;
}
.mega_link--flex{
	display: flex;
	width: 100%;
	gap: 20px;
	justify-content: flex-start;
}
.h_tech .mega_link--flex{
  border-bottom: 0;
  align-items: center;
  margin-block: 0;
  padding-bottom: 0;
}
.h_list li:hover{
	background-color: #F2F2F2;
}
.h_list li .mega_link--flex a{
	color: #30347F;
	font-size: 1.3rem;
	text-align: left;
	line-height: 2;
  width: auto;
  position: relative;
}
.mega_link--text{
  margin: auto;
  font-weight: bold;
  text-align: center;
}
.mega_link--flex a{
  position: relative;
}
.mega_link--img{
  overflow: hidden;
  width: 202px;
  height: 120px;
}
.mega_link--flex a:hover{
  opacity: 1;
}
.mega_link--flex a .mega_link--img img{
  transition: .3s;
  overflow: hidden;
}
.mega_link--flex a:hover img{
  transform: scale(1.1,1.1);
  transition: .3s;
}

.h_list li .mega_link--flex a:hover{
  opacity: .8;
}
.mega_link--bottom{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
  margin-top: 20px;
  width: 739px;
}
.mega_link--bottom a{
	border-bottom: 1px solid #E60013;
	padding-bottom: 5px;
  width: 233px;
  display: flex;
  letter-spacing: 1.8px;
  transition: .5s;
  align-items: flex-end;
  line-height: 1.5;
  padding-bottom: 6px;
}
.mega_link--bottom a.hd_finance{
  letter-spacing: 0px;
}
.mega_link--bottom a:hover{
  transition: .5s;
  opacity: 1;
  border-bottom: 1px solid #000;
  color: #E60013;
}

/*タイトル*/
.common_title{
  color: #E60013;
  display: flex;
  justify-content: center;
  flex-direction: column;
  line-height: 1.5;
  font-size: 1.6rem;
}
.jp_title{
  font-size: 3.2rem;
  letter-spacing: 6.4px;
  color: #000;
}
.page_title span{
  text-transform: capitalize;
}

/*共通リンク*/
.common_link{
  background: #1D2959;
  max-width: 160px;
  width: 100%;
  color: #fff;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  height: 30px;
  line-height: 1;
  z-index: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.common_link span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #0099CC;
  bottom: -20px; 
  left: 50%;
  transform: translate(-50%, 0) scale(0);
  -webkit-transform: translate(-50%, 0) scale(0);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out, transform 0.5s;
  z-index: -1;
}
.common_link:hover {
  color: #fff;
  opacity: 1;
}
.common_link:hover span {
  width: 300%;
  height: 300%;
  transform: translate(-50%, 0) scale(1);
  -webkit-transform: translate(-50%, 0) scale(1);
}
.common_link.allow::after{
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  right: 10px;
  width:10px;
  height: 10px;
  border-top: 2px solid #E60013;
  border-right: 2px solid #E60013;
  -webkit-transform: rotate(45deg); /* Added webkit prefix */
  transform: rotate(45deg);
  transition: all 0.5s; /* Modified transition shorthand for broader compatibility */
}


_::-webkit-full-page-media, _:future, :root .common_link span {
  transform: translate(0%, 0) scale(0);
}
_::-webkit-full-page-media, _:future, :root .common_link:hover span {
  transform: translate(-50%, 0) scale(2);
}


/*バックトップ*/
.back-top{
  position: fixed;
  bottom: 85px;
  right: 3%;
  z-index: 40;
  cursor: pointer;
  opacity: 0;
}
.back-top.active{
  opacity: 1;
  pointer-events: auto;
}

/* ==========================
pagevisual・パンくず
============================= */
.pagevisual {
  position: relative;
  max-width: 100%;
  height: 248px;
  margin: 0 auto;
  color: #fff;
  padding-left: 128px;
}
.pagevisual .page_title {
  color: #1D2959;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 8px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  line-height: 1.5;
}
.pagevisual .page_title span{
  font-size: 1.6rem;
  letter-spacing: 0px;
}
.pagevisual .page_title span .fs_30{
  font-size: 3rem;
  font-weight: 500;
}
.page-pankuzu {
  margin-left: auto;
  font-size: 1.6rem;
  background: #f1f1f1;
  height: 60px;
  display: flex;
  justify-content: end;
  align-items: center;
  padding-right: 128px;
  display: flex; 
  flex-wrap: wrap;
}
.page-pankuzu li {
  display: flex;
  line-height: 1.6em;
  text-align: left;
  color: #333;
  font-weight: bold;
}
.page-pankuzu a {
  color: #333;
}
.page-pankuzu a:hover{
  text-decoration: underline;
  text-underline-offset: 0.2em;
  opacity: 1;
}
.page-pankuzu li::after {
  content: "/";
  background-size: contain;
  width: 10px;
  height: 10px;
  margin: 0px 2px 0 10px;
  color: #E60013;
}
.page-pankuzu .under_contents::after {
  content: none;
}


/*お問い合わせ*/
.cont{
  background: #1D2959;
  height: 135px;
}
.cont_inner{
  max-width: 676px;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  height: 140px;
  font-weight: bold;
  text-align: center;
  position: relative;
  top: 70px;
}
.cont_inner--text{
  padding-bottom: 15px;
}
.cont_inner--here{
  color: #1D2959;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cont_inner--here::before{
  content: url("../img/cont.svg");
  position: relative;
  left: 5px;
  line-height: 1;
}
/* ==========================
footter
============================= */
footer{
  background: #f1f1f1;
  border-top: 3px solid #E60013;
}
.ft_inner {
  display: flex;
  justify-content: center;
  margin: auto;
  font-weight: 500;
  flex-direction: column;
  padding: 64px;
}
.ft_logo{
  font-weight: bold;
  font-size: 2.4rem;
}
.ft_main{
  max-width: 850px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 100px;
  padding-bottom: 20px;
}
.ft_main .common_link{
  max-width: 261px;
  height: 50px;
}
.ft_main .common_link span{
  background: #E60013; 
}

.ft_nav{
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 20px;
  padding-top: 70px;
  border-top: 1px solid #E60013;
}
.ft_nav ul{
  border-left: 1px solid #E60013;
  padding: 0 0px 0 70px;
  max-width: 341.3px;
  width: 100%;
  height: 465px;
}
.ft_nav ul.ft_nav-center,
.ft_nav ul.ft_nav-right{
  padding: 0 0px 0 55px;
}

.ft_nav ul:nth-last-child(1){
  border-right: 1px solid #E60013;
}
.ft-sec{
  position: relative;
  left: 15px;
}
.ft-sec--none,.ft-first--none{
  font-weight: bold;
}
.ft_nav-left .ft-first,
.ft_nav-left .ft-sec,
.ft_nav-center .ft-first,
.ft_nav-right .ft-first{
  font-weight: bold;
  position: relative;
}
.ft_nav-left .ft-first::before,
.ft_nav-left .ft-sec::before,
.ft_nav-center .ft-first::before,
.ft_nav-right .ft-first::before{
  position: absolute;
  margin: auto;
  content: "";
  left: -20px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #E60013;
  border-right: 2px solid #E60013;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .5s;
  line-height: 1;
}

.ft_nav-left .ft-sec{
  position: relative;
  left: 0px;
}
.ft_nav-left li:nth-child(1){
  position: relative;
  left: -20px;
}
.ft-third{
  position: relative;
  left: 20px;
  font-size: 1.4rem;
}
.ft_nav-center .ft-sec{
  font-size: 1.4rem;
}
.copyright {
  background: #1D2959;
  font-size: 1.6rem;
  padding: 10px 0;
  text-align: center;
  color: #fff;
}
.copy{
  position: relative;
  left: 3px;
}
.ft_nav ul a{
  display: inline-block;
  position: relative;
}
.ft_nav ul a:hover{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.ft_nav ul a:hover{
  opacity: 1;
}
.ft_nav .pdf_aicon{
  display: flex;
  gap: 5px;
  align-items: center;
}
.ft_nav .pdf_aicon::after{
    content: "";
    position: relative;
    top: 3px;
    background: url(../img/icon_pdf.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    line-height: 1;
    width: 14px;
    height: 22px;
}

/*クッキー*/
.cookie-consent {
  display: flex;
  justify-content: center;
  gap: 10px 20px;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(0,0,0,.7);
  padding: 15px 5%;
  box-sizing: border-box;
  visibility: hidden;
  z-index:999;
}
.cookie-consent.is-show {
  visibility: visible;
}
.cookie-consent a {
    color: #fff;
    text-decoration: underline;
}
.cookie-agree {
  color: #fff;
  background: #0099CC;
  padding: .5em 1.5em;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.cookie-agree span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #E60013;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  z-index: -1;
  bottom: -20px; 
  left: 50%;
  transform: translate(-50%, 0) scale(0);
  transition: .5s;
}
.cookie-agree:hover {
  color: #fff;
  opacity: 1;
}
.cookie-agree:hover span {
  width: 300%;
  height: 300%;
  transform: translate(-50%, 0) scale(1);
  transition: .5s;
}
.cookie-agree:hover {
  cursor: pointer;
}
/* パッと消える */
.cc-hide1 {
  display: none;
}
/* ゆっくり消える */
.cc-hide2 {
  animation: hide .3s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 767px) {
  .cookie-consent {
    flex-direction: column;
  }
}

/* 製品・サービスタブリンク */
.lib_tab .anker{
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1024px;
  width: 90%;
  margin: auto;
  margin-top: -40px;
}
.lib_tab .tab_link{
  max-width: 502px;
  width: 100%;
  height: 74px;
  font-size: 2.4rem;
  letter-spacing: 4.8px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1D2959;
  color: #fff;
  transition: .5s;
  font-weight: bold;
  flex-direction: column;
  line-height: 1.3;
}
.anker_sm--text{
  font-size: 1.4rem;
  letter-spacing: 2.8px;
}
.lib_tab.ver02 .tab_link{
  background: #0099CC;
}

.lib_tab .tab_link.next{
  background: #ccc;
  transition: .5s;
  color: #1D2959;
}
.lib_tab.ver02  .tab_link.next{
  color: #0099CC;
}
.lib_tab .tab_link.next:hover{
  background: #1D2959;
  opacity: 1;
  transition: .5s;
  color: #fff;
}
.lib_tab.ver02 .tab_link.next:hover{
  background: #0099CC;
}
.lib_tab .tab_link.now:hover{
  opacity: 1;
}
.lib_tab .tab_link.now::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -19px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #1D2959 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
  transition: .5s;
}
.lib_tab.ver02 .tab_link.now::after{
  border-color: #0099CC transparent transparent transparent;
}
.lib_tab .tab_link.now:hover::after{
  background: none;
  transition: .5s;
}
.lib_tab .tab_link.next::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #1D2959 transparent transparent transparent;
  border-width: 0;
  transition: .5s;
}
.lib_tab .tab_link.next:hover::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -19px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #1D2959 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
  transition: .5s;
}
.lib_tab.ver02 .tab_link.next:hover::after{
  border-color: #0099CC transparent transparent transparent;
}

/* サステナビリティ共通メニュー */
.lib_sus{
  padding-top: 50px;
}
.lib_sus--title{
  display: flex;
  justify-content: space-between;
  max-width: 1024px;
  width: 90%;
  margin: auto;
}
.lib_sdgs--flex{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1024px;
  width: 90%;
  margin: auto;
  margin-top: 55px;
}
.sdgs_flex.rev01{
  margin-top: 55px;
  border-top: 1px solid #1D2959;
}
.lib_sdgs--flex .sdgs_flex--list:nth-child(1){
  background: url(../img/menu01.webp) no-repeat;
  background-size: cover;
}
.lib_sdgs--flex .sdgs_flex--list:nth-child(2){
  background: url(../img/menu02.webp) no-repeat;
  background-size: cover;
}
.lib_sdgs--flex .sdgs_flex--list:nth-child(3){
  background: url(../img/menu03.webp) no-repeat;
  background-size: cover;
}
.lib_sdgs--flex .sdgs_flex--list:nth-child(4){
  background: url(../img/menu04.webp) no-repeat;
  background-size: cover;
}
.sdgs_flex--list{
  width: 241px;
  height: 285px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 23px;
  flex-direction: column;
  font-weight: bold;
  padding: 30px 0;
}
.sdgs_flex--list:hover{
  opacity: 1;
}

.sdgs_flex--list:nth-child(1){
  gap: 88px;
}
.sdgs_flex--list:nth-child(4),
.sdgs_flex--list:nth-child(2){
  gap: 55px;
}

.sdgs_flex--list h3{
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sdgs_flex--list h3 .jp{
  text-align: center;
  letter-spacing: 1.44px;
  font-size: 2.2rem;
  line-height: 1.5;
}
.sdgs_flex--list h3 .en{
  font-size: 1.6rem;
  letter-spacing: 1.24px;
  line-height: 1;
  padding-top: 5px;
}
.sdgs_flex--list h3 .en .fs_30{
  font-size: 3rem;
  font-weight: 500;
}

.sdgs_flex--list .common_link.white{
  background: #fff;
}
.sdgs_flex--list,
.sdgs_flex--list:visited,
.sdgs_flex--list:link{
  color: #0099CC;
  transition: .5s;
}
.sdgs_flex--list:nth-child(2),
.sdgs_flex--list:nth-child(2):visited,
.sdgs_flex--list:nth-child(2):link,
.sdgs_flex--list:nth-child(4),
.sdgs_flex--list:nth-child(4):visited,
.sdgs_flex--list:nth-child(4):link{
  color: #1D2959;
  transition: .5s;
}
.sdgs_flex--list .common_link span{
  background: #0099CC;
}
.sdgs_flex--list:nth-child(2) .common_link span,
.sdgs_flex--list:nth-child(4) .common_link span{
  background: #1D2959;
}
.sdgs_flex--list:hover .common_link span{
  width: 300%;
  height: 300%;
  transform: translate(-50%, 0) scale(1);
  transition: .5s;
}

_::-webkit-full-page-media, _:future, :root .sdgs_flex--list .common_link span {
  transform: translate(0%, 0) scale(0);
}
_::-webkit-full-page-media, _:future, :root .sdgs_flex--list:hover .common_link span {
  transform: translate(-50%, 0) scale(2);
}

.sdgs_flex--list .common_link{
  color: #0099CC;
}
.sdgs_flex--list:nth-child(2) .common_link,
.sdgs_flex--list:nth-child(4) .common_link{
  color: #1D2959;
}
.sdgs_flex--list:hover .common_link{
  color: #fff;
}


/* 採用お問い合わせメニュー */
.cont_rec{
  background: #DEF3FC;
  height: 365px;
  padding: 64px 0;
  position: relative;
}
.cont_rec--inner{
  max-width: 850px;
  width: 90%;
  margin: auto;
  background: #fff;
  padding: 40px 80px;
  height: 259px;
}
.cont_rec--inner .common_title{
  margin-bottom: 10px;;
}
.cont_rec--bo{
  display: flex;
  align-items: center;
  gap: 20px;
  letter-spacing: 3.2px;
  color: #1D2959;
  font-weight: bold;
  justify-content: space-between;
}
.cont_rec--bo::after{
  content: "";
  height: 1px;
  background: #1D2959;
  max-width: 413px;
  width: 100%;
}
.cont_rec--link{
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.cont_rec--cont a:hover{
  text-decoration: underline;
  text-underline-offset: 0.2em;
  opacity: 1;
}
.cont_rec--tefa{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 80px;
  font-weight: bold;
  margin-block: auto;
}
.cont_rec--tel,.cont_rec--cont{
  font-size: 2.4rem;
  font-weight: bold;
  color: #1D2959;
}
.cont_rec--tel a,.cont_rec--cont a,
.cont_rec--tel a:visited,.cont_rec--cont a:visited,
.cont_rec--tel a:link,.cont_rec--cont a:link{
  color: #1D2959;
}
.cont_rec--tel::before,.cont_rec--cont::before{
  position: relative;
  left: -10px;
  line-height: 1;
}
.cont_rec--tel::before{
  content: url(../img/tel_icon.svg);
}
.cont_rec--cont::before{
  content: url(../img/mail_icon.svg);
}

.cp_cont {
  display: none;
}

/* ------------------------
 モーダルウィンドウ
------------------------　*/

/* 黒背景 */
.modal_cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
}
.modal_open {
  height: auto;
  background: none;
  border: none;
  display: flex;
  align-items: flex-start;
  &:hover {
    opacity: 0.8;
  }
}
.modal_note {
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
  @media print, screen and (min-width: 768px) {
    white-space: nowrap;
  }
}

/* 閉じるボタン */
.modal_close {
  width: 45px;
  height: 45px;
  padding-bottom: 3px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  background: none;
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 3.2rem;
  font-weight: bold;
  @media screen and (max-width: 767px) {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
}
/* モーダルウィンドウ外枠 */
.modal_window  {
	max-width: 750px;
  width: 90%;
  max-height: 90svh;
  margin: auto;
  overflow: auto;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  &[aria-hidden="true"] {
		visibility: hidden;
    opacity: 0;
    transition: .5s;
    z-index: -10;
	}
  &[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
    transition: .5s;
    z-index: 10001;
  }
}
/* モーダルウィンドウのコンテンツ */
.modal_container {
  width: 100%;
	padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
	background: #fff;
  margin: auto;
  img {
    border: 1px solid #ccc;
  }
}

/*タブレット（縦）*/
@media screen and (orientation: portrait) and (min-width: 768px) {

  .hd_global li{
    width: 220px;
  }
  
  .ft_nav ul {
    padding: 0 40px 0 50px;
    height: 600px;
  }
  .ft_nav ul.ft_nav-center, .ft_nav ul.ft_nav-right {
    padding: 0 40px 0 50px;
  }
}


@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
  .h_pc {
    width: 1280px;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }

  /* サステナビリティ共通メニュー */

  .lib_sus{
    background: url(../img/lib_sus_bg.webp) no-repeat;
    height: 566px;
    background-size: cover;
  }

  /* 採用お問い合わせメニュー */
  .cont_rec::before{
    content: url(../img/lib_rec_after.png);
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
  }
  .cont_rec::after{
    content: url(../img/lib_rec_before.png);
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

@media screen and (max-width: 767px) {
/* スマホ閲覧時、横幅可変 */
  body {
    width: 100%;
    margin-top: 80px;
    line-height: 1.8;
    font-size: 1.4rem;
    line-height: 1.6;
  }

  main{
    margin-top: 80px;
  }
  .pc_block {
    display: none;
  }
  .sp_block {
    display: block;
  }
  /*アンカーリンク*/
:target::before{
  content: '';
  margin-top: -80px;
  height: 80px;
  display: block;
  visibility: hidden;
}

/* ==========================
======== ハンバーガーメニュー =======
============================= */
.h_pc{
  display: none;
}
#sp_logo {
    padding-left: 5%;
    width: calc(100% - 10% - 70px);
}
  #sp_logo img {
    max-width: 75%;
    max-height: 70px;
    height: auto;
  }
  .sp_mail_btn {
    width: 55px;
    position: absolute;
    right: 80px;
    top: 15px;
  }
  .sp_mail_btn img {
    max-width: 100%;
    height: auto;
  }
  .cp_cont .sp_lang--menu{
    display: flex;
    gap: 5px;
    position: relative;
    top: 24px;
    padding-left: 20px;
    width: calc(100% - 80px);
    flex-wrap: wrap;
  }
  .sp_lang--menu a{
    background: #fff;
    width: 63px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.cp_cont {
    display: flex;
    overflow: visible;
    z-index: 99999;
    background: #fff;
    height: 80px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
}
  .cp_cont *,
  .cp_cont *:before,
  .cp_cont *:after {
    padding: 0;
    margin: 0;
    position: relative;
  }
  .cp_cont a {
    text-decoration: none;
    color: inherit;
  }
  .cp_offcm01 {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    z-index: 99999;
  }
  /* menu */
  .cp_offcm01 .cp_menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 300px;
    height: 100%;
    cursor: pointer;
    -webkit-transition: 0.4s transform;
    transition: 0.4s transform;
    background-color: #1D2959;
    opacity: 1;
  }
  .cp_offcm01 .cp_menu ul.ff_ul {
    margin-top: 75px;
    padding: 0;
    padding-bottom: 100px;
    font-family: "Hiragino Kaku Gothic ProN";
  }
  .cp_offcm01 .cp_menu li.pshm_title {
    padding: 35px 20px 13px;
    color: #fff;
    font-size: 2.2rem;
    height: 33px;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio {
    display: none;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0s ease-in;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio:checked + ul.sf_ul {
    max-height: 9999px;
    transition: max-height 1s ease-in;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li.sf_li--sec{
    text-indent: 0em;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li{
    text-indent: 1em;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li a {
    padding: 10px 15px 10px 20px;
    text-decoration: none;
    color: #1D2959;
    border-bottom: 1px dashed #fff;
    background: #ccc;
    padding-left: 2.5em;
    text-indent: 0em;
  }   
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li:last-child a {
    border-bottom: none;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li.sf_li--sec a{
    padding-left: 1.5em;
    text-indent: 0em;
  }
  .cp_offcm01 #cp_toggle01 {
    position: absolute;
    display: none;
    opacity: 0;
  }
  .cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
    overflow-y: auto;
    -webkit-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
  }

  ul.ff_mega {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0s ease-in;
  }
  
  .cp_offcm01 .cp_menu ul.ff_ul li .ac_head:checked + ul.sf_ul {
    max-height: 9999px;
    transition: max-height 1s ease-in;
    overflow: hidden;
  }
  
  .cp_offcm01 .cp_menu ul.ff_ul li:nth-child(2) .ac_head::after, 
  .cp_offcm01 .cp_menu ul.ff_ul li:nth-child(3) .ac_head::after, 
  .cp_offcm01 .cp_menu ul.ff_ul li:nth-child(4) .ac_head::after,
  .cp_offcm01 .cp_menu ul.ff_ul li:nth-child(5) .ac_head::after,
  .cp_offcm01 .cp_menu ul.ff_ul li:nth-child(6) .ac_head::after,
  .cp_offcm01 .cp_menu ul.ff_ul li:nth-child(7) .ac_head::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    top: calc(50% - 5px);
    right: 25px;
    transform: rotate(45deg);
    transition: .3s;
  }
  #ac01:checked ~ .ac_head::after,
  #ac03:checked ~ .ac_head::after,
  #ac04:checked ~ .ac_head::after,
  #ac05:checked ~ .ac_head::after,
  #ac06:checked ~ .ac_head::after{
    transform: rotate(-135deg);
  }

  /* menu toggle */
  .cp_offcm01 #cp_toggle01 ~ label {
    position: relative;
    z-index: 999999;
    display: block;
    height: 30px;
    width: 30px;
    cursor: pointer;
    -webkit-transition: 0.4s transform;
    transition: 0.4s transform;
    text-align: center;
    color: #fff;
    top: 0px;
    margin: 0 auto;
    
  }
  .cp_offcm01 #cp_toggle01 ~ label::before,
  .cp_offcm01 #cp_toggle01:checked ~ label::before {
    content: "";
    vertical-align: middle;
    display: inline-block;
    width: 35px;
    height: 30px;
  }

  .cp_offcm01 #cp_toggle01 ~ label::after {
    position: absolute;
    left: 0px;
    top: 30px;
    bottom: -10px;
    content: "MENU";
    display: block;
    width: 100%;
    color: #fff;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all 0.4s;
    font-size: 1.0rem;
  }

  .cp_offcm01 #cp_toggle01:checked ~ label::after {
    content: "CLOSE";
    top: 30px;
    bottom: -20px;
    color: #fff;
    left: 0px;
  }
  .cp_offcm01,
  .cp_offcm01 span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
.cp_offcm01 {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 80px;
    height: 80px;
    padding: 18px 10px;
    background: #1D2959;
}

  .cp_offcm01 span {
    position: absolute;
    right: 0px;
    width: 100%;
    border-radius: 1px;
    height: 2px;
    background-color: #fff;
  }
  .cp_offcm01 span:nth-of-type(1) {
    top: 4px;
  }
  .cp_offcm01 span:nth-of-type(2) {
    top: 13px;
  }
  .cp_offcm01 span:nth-of-type(3) {
    bottom: 5px;
  }

  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(1) {
    /*-webkit-transform: translateY(20px) rotate(-315deg) scale(.8);
  transform: translateY(20px) rotate(-315deg) scale(.8);*/
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
    background-color: #fff;
    top: -3px;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(2) {
    opacity: 0;
    background-color: #000;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
    background-color: #fff;
    bottom: -9px;
  }
  
  /*共通お問い合わせ*/
  .cont{
    padding: 20px 5% 30px;
  }
  .cont_inner{
    padding: 20px 5%;
    top: 50px
  }
  .cont_inner p{
    font-size: 1.8rem;
  }
  .cont_link::before{
    left: 8%;
  }
  /*フッター*/
  .ft_inner{
    padding: 50px 5% 30px; 
    justify-content: center;
  }
  .ft_main{
    flex-direction: column;
    gap: 20px;
  }
  .ft_logo{
    padding-bottom: 10px;
  }
  .ft_nav{
    display: none;
  }
  .ft_main{
    margin-bottom: 0px;
  }
  .ft_nav{
    flex-direction: column;
    align-items: center;
  }
  .ft_nav ul{
    width: 90%;
  }
  .ft_nav ul:nth-last-child(1){
    border-left: 0;
  }
  .copyright{
    line-height: 1.5;
    font-size: 1.2rem;
  }

  /* ==========================
pagevisual・パンくず
============================= */
  .pagevisual{
    padding: 0 5%;
    text-align: center;
    height: 180px;
  }
  .pagevisual .page_title{
    font-size: 2.8rem;
    letter-spacing: 3px;
  } 

  .common_title .jp_title{
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 3px;
  }

  .page-pankuzu{
    height: auto;
    padding: 10px 5%;
    justify-content: flex-start;
    font-size: 1.4rem;
  }

  /*タイトル*/
  .pagevisual .page_title span{
    font-size: 1.2rem;
  }
  .common_title span{
    font-size: 1.2rem;
  }

/* 採用メニュー */
  .cont_rec{
    height: auto;
    padding: 40px 0;
  }
  .cont_rec--inner{
    height: auto;
    padding: 30px 5%;
  }
  .cont_rec--tefa{
    gap: 10px;
  }
  .cont_rec .common_title .jp_title{
    letter-spacing: 2px;
    font-size: 2.2rem;
  }
  .cont_rec--bo{
    gap: 10px;
    letter-spacing: 0;
  }
  .cont_rec--bo::after {
    width: 50vw;
  }
  .cont_rec--tel, .cont_rec--cont{
    font-size: 1.8rem;
    width: 90%;
    margin: auto;
  }
  /*バックトップ*/
  
  /*メニュー*/
  .menu{
    gap: 10px;
  }
  .menu a{
    max-width: calc(50% - 10px);
  }
  
  .menu .en_title{
    font-size: 2.2rem;
  }
  .menu a h2{
    font-size: 1.6rem;
    height: 140px;
  }
  .menu a:nth-child(3){
    background-position-x: -300px;
}
  
  /*表*/
  .outline_table {
    margin: 30px auto 0;
    margin-bottom: 50px;
  }
  .outline_table tr {
    width: 100%;
    margin: auto;
    display: block;
  }
  .outline_table th {
    width: 100%;
    display: block;
    padding: 15px 5%;
  }
  .outline_table td {
    padding: 25px 5%;
    display: block;
  }
  /* 製品・サービスタブリンク */
  .lib_tab .anker{
    gap: 10px;
  }
  .lib_tab .tab_link{
    height: auto;
    font-size: 1.8rem;
    letter-spacing: 3.4px;
    margin-top: 15px;
    padding: 5px 2%;
  }
  
  .anker_sm--text {
    font-size: 1rem;
    letter-spacing: 2px;
    text-align: center;
  }

    /* サステナビリティ共通メニュー */

  .lib_sus{
    background: url(../img/lib_sus_bg_sp.webp) no-repeat;
    background-size: cover;
    padding: 30px 0 70px;
  }
  .lib_sus--title{
    flex-wrap: wrap;
    gap: 20px;
  }
  .lib_sus .common_title .jp_title{
    font-size: 2.8rem;
    line-height: 1.5;
  }
  .lib_sdgs--flex{
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    justify-content: center;
  }
  .lib_sdgs--flex .sdgs_flex--list{
    max-width: calc(50% - 5px);
    width: 190px;
    height: 170px;
    justify-content: space-between;
    padding: 20px 0;
  }
  .sdgs_flex--list:nth-child(1), .sdgs_flex--list:nth-child(2){
    gap: 20px;
  }
  .sdgs_flex--list:nth-child(3), .sdgs_flex--list:nth-child(4){
    height: 200px;
  }
  .sdgs_flex--list h3 .en span{
    font-size: 2.6rem;
  }
  .sdgs_flex--list h3 .en{
    font-size: 1.8rem;
  }
  .sdgs_flex--list h3 .jp{
    font-size: 1.4rem;
  }
  .lib_sdgs--flex .common_link{
    width: 90%;
    margin: 0 auto;
  }

  .back-top {
    position: fixed;
    bottom: 5%;
  }


      /* 採用お問い合わせメニュー */
}

/* 印刷用設定 */
@media print {
  body {
    width:1280px;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
  
  
  /*ヘッダー*/
  .h_pc.header-fixed,.h_pc{
    position: absolute;
  }

  .cookie-consent.is-show{
    display: none;
  }

}
@page {
  size: A4;
  margin: 5px;
}