@charset "UTF-8";

/*
  設計ルール：
  - 変数定義：open-props.css
  - PC用レイアウト：pc.css
  - SP用レイアウト：sp.css
*/

/*--------------------------
  Basic style
--------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Caslon+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bonheur+Royale&display=swap');

*{
  margin: 0;
  padding: 0;
}
html{
  width: 100%;
}
body{
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-default);
  line-height: var(--leading-body-narrow);
  letter-spacing: var(--letterspacing-normal);
  -webkit-text-size-adjust: 100%;
}
h3{
  color: var(--color-brand);
  font-size: var(--font-fluid-exp-per);
  font-family: var(--font-heading);
  text-align: center;
  line-height: var(--leading-heading-lg);
  font-optical-sizing: auto;
  font-weight: var(--font-thick-7);
  padding-bottom: var(--space-section-3);
}
p{
  hyphens: auto;
  overflow-wrap: break-word;
  text-align: justify;
/*  word-break: break-all;*/
  text-justify: inter-character;
}
.text p{
  padding-bottom: var(--space-section-1);
}
.inner{
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-section-3);
  box-sizing: border-box;
}
input[type="submit"]{
  appearance: none;
}
a{
  color: var(--color-default);
  opacity: 1;
  transition: .3s;
  text-decoration: none;
}
a[href^="tel:"]{
  color: inherit;
}
.tel_link{
	width: 100%;
	text-align: center;
}
.tel_link a{
	pointer-events: none;
  cursor: default;
	line-height: 1;
	letter-spacing: var(--letterspacing-tight);
	text-decoration: none;
}
a.textlink{
  color: var(--color-bluepurple);
  margin-inline: var(--space-1);
  text-decoration: underline;
}
a.disableGray{
  opacity: .5;
  pointer-events: none;
}
a.disable{
  pointer-events: none;
}
li{
	list-style-type: none;
}
img{
	max-width: 100%;
}
section p a,
section ol.decimal a,
section ul.disc a,
table a,
section dl a{
  display: inline;
}
.t_left{
  text-align: left;
}
.t_right{
  text-align: right;
}
.t_center{
  text-align: center;
}
.spNone{
  display: none !important;
}
.spBr{
  display: block !important;
}
.pcBr{
  display: none !important;
}
sup{
  line-height: 0;
  margin-right: var(--space-1);
}

/*--------------------------
  Common
--------------------------*/
.btn{
  display: flex;
  justify-content: space-between;
  color: var(--color-white);
  line-height: var(--leading-heading-df);
  padding: var(--btn-size-fluid);
  margin-inline: auto;
  margin-block: var(--space-2) auto;
  font-weight: var(--font-thick-6);
  border-radius: var(--radius-999);
  text-decoration: none;
  letter-spacing: var(--letterspacing-wide);
  box-sizing: border-box;
  font-size: var(--font-fluid-lg);
  background: linear-gradient(0deg, rgba(10, 70, 137, 1), rgba(36, 123, 219, 1));
}
.btn .text{
  width: 100%;
}
.btn .arw{
  position: relative;
  margin-left: 2em;
  display: inline-block;
}
.btn .arw::before{
  content: '';
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.btn .arw::after{
  content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: 1.5px solid #214d9b;
  border-right: 1.5px solid #214d9b;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 9px;
  bottom: 0;
  margin: auto;
}
.btn.disable{
  color: var(--color-white);
  background: linear-gradient(0deg, rgba(172, 172, 172, 1), rgba(233, 233, 233, 1));
}
.btn.disable .arw::after{
  border-top: 1.5px solid #b8b8b8;
  border-right: 1.5px solid #b8b8b8;
}
a.btn::after{
  content: none;
}
a.btn.disable::after{
  border-top: 1.5px solid #b8b8b8;
  border-right: 1.5px solid #b8b8b8;
}
.btn span:first-child{
  width: 100%;
  display: inline-block;
  text-align: center;
}
a.btn.transparent{
  background: none;
  border: 2px solid var(--color-white);
  box-sizing: border-box;
  padding-block: var(--space-section-2);
}
a.btn.transparent::after{
  content: none;
}
a.btn.transparent::before{
  content: none;
}
.pagetop{
  cursor: pointer;
  position: fixed;
  right: 10px;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  transition: .3s;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  z-index: 100;
}
.pagetop.is-show{
  opacity: 1;
  pointer-events: auto;
}

/* Common :: header */
#header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 100;
  transition: .3s;
  background: transparent;
}
#header .inner{
  max-width: 100%;
  max-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-section-2);
  background: rgba(255, 255, 255, 1);
  box-sizing: border-box;
  box-shadow: var(--box-shadow-4);
  transition: .3s;
}
#header .inner h1{
  width: 13%;
  max-width: 75px;
  padding-top: var(--space-3);
  box-sizing: border-box;
  transition: .3s;
}
@media (min-width: 430px) and (max-width: 756px){
  #header .inner h1{
    width: 10%;
    padding-top: var(--space-2);
  }
}
#header .inner h1 img{
  width: 100%;
  transition: .3s;
}
#header .btn_set ul{
  display: flex;
  align-items: center;
  padding-inline: var(--space-7);
}
#header .btn_set ul li{
  padding: 0 var(--space-2);
  line-height: var(--leading-heading-df);
}
#header .btn_set ul li:first-child{
  border-right: 1px solid var(--color-gray);
}
#header .btn_set ul li a{
  color: var(--color-darkgray);
  font-size: var(--font-fluid-jp-en);
  font-weight: var(--font-thick-6);
}
.drawer-hamburger{
  top: 11px;
  opacity: 1 !important;
  transition: none !important;
  background: #004da2 !important;
  border-radius: var(--radius-3) !important;
}

/* Common :: Global Navi */
#globalnav{
  width: 100%;
  background: var(--color-brand);
  padding-block: var(--space-section-4-5);
}
#globalnav li a{
  display: block;
  color: var(--color-bluegray);
  line-height: var(--leading-body);
  text-decoration: none;
  padding: var(--space-2) var(--space-5);
  border-bottom: .5px solid var(--color-gray);
  font-size: var(--font-fluid-lg);
}
#globalnav li ul li{
  padding-left: var(--space-5);
  box-sizing: border-box;
  background: var(--color-darkblue);
}
#globalnav li ul li:last-child a{
  border-bottom: none;
}
#globalnav > li:nth-child(3) a,
#globalnav > li:nth-child(4) a{
  border-top: .5px solid var(--color-gray);
}
#globalnav > li:nth-child(3) ul li:nth-child(1) a{
  border-top: none;
}
.drawer-nav .btn_area a.btn{
  width: 70%;
  margin-inline: auto;
  transition: none;
}
.drawer-nav .btn_area a.btn.contact{
  background: none;
  border: 2px solid var(--color-white);
  box-sizing: border-box;
  padding-block: var(--space-4);
}
.drawer-nav .btn_area a.btn.contact::before{
  content: none;
}

/* Common :: Page header */
#page_header{
  position: relative;
  height: 160px;
  overflow: hidden;
  padding-block: 0;
}
#page_header::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, .2);
  z-index: 1;
}
#page_header .inner{
  margin-top: 55px;
  text-align: center;
  position: relative;
  z-index: 2;
}
#page_header h2{
  position: absolute;
  width: 100%;
  text-align: center;
  top: calc((100% - 55px) / 2 + 55px);
  left: 0;
  color: var(--color-white);
  text-shadow: var(--text-shadow-1);
  line-height: var(--leading-df);
}
#page_header h2 span{
  display: block;
}
#page_header h2 span.page_title{
  font-size: var(--font-fluid-slogan-sm);
  font-weight: var(--font-thick-7);
}
#page_header h2 span.page_sub_title{
  font-size: var(--font-fluid-sm);
  font-weight: var(--font-thick-4);
  padding-top: var(--space-2);
}

/* Common :: Breadcrumb */
#breadcrumb{
  padding: var(--space-1) 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-lightbluegray);
}
#breadcrumb li{
  display: inline;
  color: var(--color-breadcrumb);
  font-size: var(--font-fluid-breadcrumb);
  line-height: var(--leading-body);
}
#breadcrumb li:after{
  content: "/";
  color: var(--color-breadcrumb);
  margin: 0 .25em 0 .5em;
}
#breadcrumb li:last-child::after{
  content: none;
}
#breadcrumb li a{
  color: var(--color-breadcrumb);
  display: inline;
  text-decoration: underline;
}
#breadcrumb li a,
#breadcrumb li span,
#breadcrumb li strong{
  word-wrap: break-word;
  word-break: break-all;
}
#breadcrumb li:last-child a{
  pointer-events: none;
  text-decoration: none;
}

/* Common :: Contact(Footer) */
.contact{
  position: relative;
  background: url(../images/common/bg_footer_sp.jpg) no-repeat top center;
  background-size: cover;
}
.contact::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 9, 9, .2);
  z-index: 0;
}
.contact .inner{
  position: relative;
  z-index: 2;
}
.contact .box{
  width: 100%;
  margin-inline: auto;
  padding: var(--space-section-3);
  background: var(--color-white);
  border-radius: var(--radius-15);
  box-shadow: var(--box-shadow-3);
  box-sizing: border-box;
}
.contact .box .lead{
  font-size: var(--font-fluid-lg);
  font-weight: var(--font-thick-6);
  line-height: var(--font-lineheight-1);
}
.contact .box .icon{
  width: 12%;
  margin: var(--space-4) auto var(--space-2);
}
.contact .box .hour{
  text-align: center;
  font-size: var(--font-fluid-lead);
  font-weight: var(--font-thick-6);
}
.contact .btn{
  width: 75%;
  margin-inline: auto;
  margin-block: var(--space-3);
}

/* Common :: Footer */
footer{
  width: 100%;
  background: var(--color-brand);
}
footer .inner{
  color: var(--color-white);
  padding-top: var(--space-6);
}
footer .company_data{
  padding-block: var(--space-5);
}
footer .company_data h4{
  width: 23%;
  margin-bottom: var(--space-3);
}
footer .company_data h5{
  font-size: var(--font-fluid-lg);
  font-weight: var(--font-thick-6);
}
footer .company_data p{
  line-height: var(--leading-body-narrow);
}
footer .company_data .fax{
  display: block;
}
footer .copyright{
  width: 100%;
  color: var(--color-white);
  text-align: center;
  padding-block: var(--space-5);
  letter-spacing: var(--letterspacing-wide);
}

/* Common :: Layout */
.wrap{
  width: 100%;
}
section{
  padding-block: var(--space-section-4);
  margin-inline: auto;
}
.lead{
  color: var(--color-brand);
  font-size: var(--font-fluid-lg);
  font-weight: var(--font-thick-4);
  letter-spacing: var(--letterspacing-wide);
}

/*--------------------------
  HOME
--------------------------*/
#mv{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding-block: var(--space-section-4);
  aspect-ratio: 375 / 520;
  background: url(../images/home/mv_sp.jpg) no-repeat top center;
  background-size: cover;
  box-sizing: border-box;
}
#mv::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 375 / 520;
  background: rgba(9, 9, 9, .2);
  z-index: 0;
  box-sizing: border-box;
}
#mv .inner{
  margin-top: var(--space-10);
  margin-inline: 0;
  padding-inline: var(--space-6);
  position: relative;
  z-index: 2;
}
#mv h2{
  color: #fff;
  font-weight: var(--font-thick-6);
  line-height: var(--leading-heading-lg);
  font-size: var(--font-fluid-slogan-xs);
  letter-spacing: var(--letterspacing-wide);
  text-shadow: var(--text-shadow-1);
  transition: .3s;
}
@media (min-width: 430px) and (max-width: 756px){
  #mv h2{
    font-size: var(--font-fluid-num-sm);
    transition: .3s;
  }
}
#mv .btn_area{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: var(--space-6);
}
#mv .btn_area a.btn{
  width: 70%;
  margin-inline: auto;
  transition: none;
}

/* HOME :: Medical・Animal・Industrial */
.opening{
  padding-bottom: var(--space-7);
}
.opening .lead{
  padding-inline: var(--space-2);
}
.opening ul{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: var(--space-5) auto;
}
.opening ul li{
  width: 100%;
  border-radius: 50%;
  text-align: center;
  padding-bottom: var(--space-section-2);
}
.opening ul li:last-child{
  padding-bottom: 0;
}
.opening ul li img{
  width: 45%;
  border-radius: 50%;
}
.opening ul li h4{
  color: var(--color-brand);
  font-size: var(--font-fluid-h4);
  font-weight: var(--font-thick-6);
}
.opening ul li p{
  text-align: left;
  padding: var(--space-2);
}
.opening .btn{
  width: 65%;
  margin-inline: auto;
}

/* HOME :: PRODUCTS */
.products_list{
  background: url(../images/home/bg1.jpg) no-repeat top center;
  background-size: cover;
}
.products_list .list > ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
/*  padding-top: var(--space-5);*/
}
.products_list .list > ul > li{
  width: 100%;
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  background: var(--color-white);
  box-shadow: var(--box-shadow-1);
  border-radius: var(--radius-15);
}
.products_list .list ul li figure{
  width: 60%;
  margin-inline: auto;
}
.products_list .list ul li h4{
  text-align: center;
  color: var(--color-brand);
  font-size: var(--font-fluid-h4);
  font-weight: var(--font-thick-6);
  line-height: var(--leading-heading-sm);
}
.products_list .list ul li .details{
  font-size: var(--font-fluid-lg);
  padding-block: var(--space-4);
}
.products_list .list ul li .details ul li{
  display: flex;
  align-items: center;
  line-height: var(--font-lineheight-3);
}
.products_list .list ul li .details ul li::before{
  content: '';
  display: inline-block;
  width: 10px;
  height: 5px;
  margin-right: var(--space-3);
  border-left: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  transform: rotate(-45deg);
}
.products_list .list ul li .btns{
  width: 100%;
  box-sizing: border-box;
}
.products_list .list ul li .btns.longtext{
  margin-left: inherit;
}
.products_list .list ul li .btns p{
  padding-right: var(--space-section-5-5);
}
@media (min-width: 540px) and (max-width: 756px){
  .products_list .list ul li .btns p{
    padding-right: var(--space-section-7);
  }
}
.products_list .list ul li .btns a.move_arw{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  font-size: var(--font-fluid-lead);
  font-weight: var(--font-thick-7);
}
.products_list .list ul li .btns a.move_arw span{
  display: block;
  position: absolute;
  left: 105%;
  bottom: 10px;
  width: 17%;
  height: 2px;
  background: var(--color-orange);
}
.products_list .list ul li .btns a.move_arw span::before{
  content: '';
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 0 8px;
  border-color: transparent transparent transparent var(--color-orange);
}
.products_list .list ul li .btns a.move_arw.disable{
  color: var(--color-gray);
}
.products_list .list ul li .btns a.move_arw.disable span{
  background: var(--color-gray);
}
.products_list .list ul li .btns a.move_arw.disable span::before{
  border-color: transparent transparent transparent var(--color-gray);
}



/*
.products_list .list ul li .btns{
}
.products_list .list ul li .btns a{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.products_list .list ul li .btns a::after{
  content: '';
  display: inline-block;
  margin-left: var(--space-2);
  width: 53.5px;
  height: 6.5px;
  background: url(../images/common/arw.svg) no-repeat bottom center;
}
*/
.products_list .btn{
  width: 65%;
  margin-inline: auto;
}

/* HOME :: BUSINESS FIELD */
.field .inner{
}
.field .lead{
}
.field .contents{
  margin-top: var(--space-6);
}
.field .contents.box1{
  text-align: center;
  padding: var(--space-3);
  background: var(--color-bluegray);
  border-radius: var(--box-radius-sm);
}
.field .contents.box1 h4{
  color: var(--color-brand);
  padding-block: var(--space-3);
  font-size: var(--font-fluid-boxlead);
  font-weight: var(--font-thick-6);
  font-family: var(--font-heading);
  line-height: var(--leading-heading-sm);
}
.field .contents.box1 p{
  text-align: left;
}
.field .contents ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-block: var(--space-3);
}
.field .contents.box1 ul li{
  width: 48%;
  padding: var(--space-2) var(--space-1) var(--space-4);
  background: var(--color-white);
  border-radius: var(--box-radius-sm);
  box-shadow: var(--box-shadow-2);
}
.field .contents.box1 ul li:nth-child(3),
.field .contents.box1 ul li:nth-child(4){
  margin-top: var(--space-2);
}
.field .contents.box1 ul li .num{
  text-align: center;
  color: var(--color-orange);
  font-size: var(--font-fluid-num);
  font-weight: var(--font-thick-7);
  font-family: var(--font-heading);
  line-height: var(--font-lineheight-0);
}
.field .contents.box1 ul li .num span{
  font-size: var(--font-fluid-num-sm);
}
.field .contents.box1 ul li .exp{
  text-align: center;
  font-size: var(--font-fluid-num-exp);
  line-height: var(--font-lineheight-1);
  letter-spacing: var(--font-space-sm);
}
.field .contents.box2{
  padding-block: var(--space-1) 0 var(--space-1);
}
.field .contents.box2 ul{
  padding-inline: var(--size-0);
}
.field .contents.box2 ul li{
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-4);
}
.field .contents.box2 ul li .fig{
/*  min-width: 24%;
  margin-right: var(--space-3);*/
  width: 60%;
  margin: 0 auto;
}
.field .contents.box2 ul li .fig img{
/*  padding: var(--space-2);*/
  border: 2px solid var(--color-brand);
  border-radius: var(--radius-round);
  background: var(--color-white);
}
.field .contents.box2 ul li .exp{
  margin-top: -2em;
  margin-left: var(--space-4);
  line-height: var(--font-lineheight-1);
}
.field .contents.box2 ul li .exp > span{
  display: block;
  color: var(--color-brand);
  padding: var(--space-3) 0 var(--space-2);
  font-size: var(--font-fluid-exp);
  font-weight: var(--font-thick-6);
  font-family: var(--font-heading);
}
.field .contents.box2 ul li .exp > span span{
  margin-left: var(--space-2);
  font-size: var(--font-fluid-exp-per);
  font-weight: var(--font-thick-6);
}
.field .btn{
  width: 65%;
  margin-inline: auto;
}

/* HOME :: NEWS */
.news{
  background: var(--bg-whiteblue);
}
#container .inner h3.home_news{
  padding-bottom: 0;
}
#container .inner h3.home_news span{
  display: block;
  font-weight: var(--font-thick-4);
  color: var(--color-text-default);
  font-size: var(--font-fluid-md);
}
.news h3{
  padding-bottom: var(--space-section-1);
}
.news ul{
  padding: var(--space-4) 0;
}
.news ul li{
  padding: var(--space-section-1-5) 0;
  border-bottom: 1px solid var(--color-gray);
}
.news ul li a{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--color-default);
  font-family: var(--font-heading);
}
.news ul li p{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news ul li p span{
  display: block;
}
/*
.news ul li p span.icon{
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--font-fluid-sm);
  margin-bottom: var(--space-1);
  padding: var(--space-1);
  border-radius: var(--radius-5);
  background: var(--color-news-icon1);
}
*/

.news .icon a{
  width: 100%;
  display: block;
  min-width: 8em;
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-fluid-xs);
  letter-spacing: var(--letterspacing-wide);
  line-height: var(--leading-heading-lg);
  padding: var(--space-section-0-5) var(--space-section-1-5);
  border-radius: var(--radius-5);
  background: var(--color-news-icon1);
  box-sizing: border-box;
  opacity: 1;
}

/*
.news ul li.product p span.icon{
  background: var(--color-news-icon2);
}
.news ul li.ir p span.icon{
  background: var(--color-news-icon3);
}
.news ul li.release p span.icon{
  background: var(--color-news-icon4);
}
*/
.news ul li p span.date{
  text-align: right;
  color: var(--color-brand);
  font-size: var(--font-fluid-default);
  font-weight: var(--font-thick-4);
  letter-spacing: var(--letterspacing-slim);
}
.news ul li p span.text{
  text-align: left;
  color: var(--color-default);
  display: block;
  width: 100%;
  padding: var(--space-section-1) 0 var(--space-section-2);
}
.news ul li p span.icatch{
  width: 100%;
}
.news ul li p span.icatch img{
  width: 100%;
  height: 100%;
/*  object-fit: cover;*/
  object-position: center;
}
.news .btn{
  width: 65%;
  margin-inline: auto;
}

/*----------------------------------
  About us
----------------------------------*/
#about-us #page_header{
  background: url(../images/about/bg_header.jpg) no-repeat center center;
  background-size: cover;
}
#about-us .message .sign{
  text-align: right;
  font-size: var(--font-fluid-md);
  line-height: var(--leading-heading-sm);
  padding: var(--space-section-4) 0 var(--space-section-2);
}
#about-us .message .sign span{
  text-align: right;
  display: block;
  color: var(--color-mdlgray);
  font-size: var(--font-fluid-slogan-sm);
  font-family: var(--font-sign);
}
#about-us .philosophy{
  background: url(../images/common/bg_dot.jpg) no-repeat center center;
  background-size: cover;
}
#about-us .philosophy .t_center{
  text-align: left;
}
#about-us .philosophy .box ul{
  padding-top: var(--space-section-4);
}
#about-us .philosophy .box ul li{
  width: 90%;
  padding-bottom: var(--space-section-1);
}
/*
#about-us .philosophy .box ul li .icon{
  width: 150px;
  height: 150px;
  border-radius: var(--radius-round);
  margin-inline: auto;
  background: var(--color-white);
  box-shadow: var(--box-shadow-8);
}
#about-us .philosophy .box ul li .icon img{
  border-radius: var(--radius-round);
}
*/
#about-us .philosophy .box ul li h4{
  color: var(--color-brand);
  font-size: var(--font-fluid-lg);
  font-weight: var(--font-thick-6);
  padding: var(--space-section-1) 0;
  line-height: var(--leading-heading-sm);
}
#about-us .prof{
  position: relative;
  background: url(../images/common/bg_skyview.jpg) no-repeat top center;
  background-size: cover;
  padding-bottom: 7.5em;
}
#about-us .prof::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  aspect-ratio: 1920 / 750;
  background: linear-gradient(301deg,rgba(0, 60, 126, .8) 0%, rgba(33, 123, 196, .8) 100%);
  z-index: 1;
}
#about-us .prof .inner{
  position: relative;
  z-index: 2;
}
#about-us .prof .inner h3{
  color: var(--color-white);
  padding-bottom: var(--space-section-3);
}
#about-us .prof .box{
  background: var(--color-white);
  border-radius: var(--radius-15);
  padding: var(--space-section-4) var(--space-section-3);
  box-shadow: var(--box-shadow-1);
  opacity: .94;
}
#about-us .prof .box .left,
#about-us .prof .box .right{
  width: 100%;
  box-sizing: border-box;
}
#about-us .prof .box .left{
  padding-bottom: var(--space-5);
}
#about-us .prof .box dt{
  font-weight: var(--font-thick-7);
  line-height: var(--leading-heading-md);
  padding-bottom: var(--space-2);
  box-sizing: border-box;
}
#about-us .prof .box dd{
  font-size: var(--font-fluid-md);
  padding-bottom: var(--space-6);
  box-sizing: border-box;
}
#about-us .prof .box dt:last-child,
#about-us .prof .box dd:last-child{
  padding-bottom: 0;
}
#about-us .officer{
  background: linear-gradient(301deg,rgba(248, 250, 255, 1) 0%, rgba(245, 254, 255, 1) 100%);
}
#about-us .officer .box > ul{
  padding: 0;
}
#about-us .officer .box > ul > li{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: var(--space-3);
  margin-bottom: var(--space-section-3);
  background: var(--color-white);
  border-radius: var(--radius-15);
  box-shadow: var(--box-shadow-6);
  border: 1px solid var(--color-lightgray);
  box-sizing: border-box;
}
#about-us .officer .box > ul > li figure{
  width: 43%;
  margin-inline: auto;
}
#about-us .officer .box > ul > li figure img{
  border-radius: var(--radius-15);
}
#about-us .officer .box > ul > li h4{
  width: 100%;
  text-align: center;
  padding-block: var(--space-section-1-5);
  color: var(--color-brand);
  font-size: var(--font-fluid-default);
  font-weight: var(--font-thick-6);
  line-height: var(--leading-heading-narrow);
}
#about-us .officer .box > ul > li h4 span{
  display: block;
  font-weight: var(--font-thick-7);
  font-size: var(--font-fluid-exp);
  line-height: var(--leading-heading-lg);
}

/*
#about-us .officer .box ul li p{
  width: 100%;
  padding: var(--space-2) 0;
  line-height: var(--leading-heading-narrow);
}
#about-us .officer .career h5{
  color: var(--color-brand);
  font-size: var(--font-fluid-lead);
  padding-bottom: var(--space-section-1);
}
#about-us .officer .career ul{
  display: inherit;
  padding: 0 var(--space-section-3) 0 0;
}
#about-us .officer .career ul li{
  width: 100%;
  list-style: disc;
  word-break: break-all;
  color: var(--color-brand);
  font-size: var(--font-fluid-md);
  margin: 0 0 var(--space-1) var(--space-3);
  padding-bottom: 0;
}
*/

#about-us .officer .face{
  width: 100%;
}
#about-us .officer .intro{
/*  max-height: 100%;*/
  padding: var(--space-section-1) 0 var(--space-section-2);
  font-size: var(--font-fluid-md);
}
#about-us .officer .career{
  width: 100%;
  height: auto;
}
#about-us .officer .career h5{
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-fluid-default);
  font-weight: var(--font-thick-5);
  background: var(--color-brand);
  border-radius: var(--radius-5);
  padding: var(--space-section-0-25) var(--space-section-2);
}
#about-us .officer .career ul{
  display: inherit;
  padding: var(--space-section-1);
}
#about-us .officer .career ul li{
  width: 100%;
  list-style: disc;
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
  color: var(--color-brand);
  font-size: var(--font-fluid-md);
  margin: 0 var(--space-2);
  padding-bottom: var(--space-section-0-5);
}
#about-us .chart{
  background: var(--bg-grad-whiteblue);
}

#about-us .history{
  position: relative;
  background: url(../images/about/img_02_sp.png) no-repeat top center;
  background-size: 100%;
  padding-block: var(--space-section-1);
}
#about-us .history .inner h3{
  position: absolute;
  top: -4rem;
  left: calc((100% - 7em) / 2 + 1.25em);
  color: var(--color-white);
  padding-bottom: var(--space-8);
  z-index: 5;
}
#about-us .history .chronology{
  margin: 0;
/*  text-shadow: var(--text-shadow-2);*/
}
#about-us .history .chronology ul li{
  line-height: var(--leading-heading-sm);
  padding-left: var(--space-section-2);
  padding-bottom: var(--space-section-1);
  position: relative;
}
#about-us .history .chronology ul li::after{
  content: '';
  display: block;
  width: 1px;
  height: calc(100% + .5em);
  background: var(--color-brand);
  position: absolute;
  top: .75em;
  left: .315em;
}
#about-us .history .chronology ul li:last-child::after{
  height: 0;
}
#about-us .history .chronology h4{
  color: var(--color-brand);
  margin-top: var(--space-2);
  line-height: var(--leading-heading-sm);
  letter-spacing: var(--letterspacing-wide);
  font-size: var(--font-fluid-exp);
  font-weight: var(--font-thick-7);
}
#about-us .history .chronology h4::before{
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: .4em;
  left: 0;
  border-radius: var(--radius-round);
  background: var(--color-brand);
  box-shadow: var(--box-shadow-7);
}
#about-us .history .chronology h4 span{
  color: var(--color-brand);
  font-size: var(--font-fluid-md);
  font-weight: var(--font-thick-7);
}
.lang-en #about-us .history .chronology h4 span{
  display: none;
}
#about-us .history .chronology{
  margin: var(--space-section-3) var(--space-section-2) var(--space-section-4) var(--space-section-3);
}

/*
#about-us .history .chronology ul li:nth-child(-n+4) h4{
  color: var(--color-white);
}
#about-us .history .chronology ul li:nth-child(-n+4)::after{
  background: var(--color-white);
}
#about-us .history .chronology ul li:nth-child(-n+4) h4::before{
  background: var(--color-white);
}
*/

/*
@media (min-width: 1921px){
  #about-us .history .chronology{
    width: 40%;
    margin: var(--space-section-6) var(--space-section-2) var(--space-section-6) var(--space-chronology);
  }
}
@media (max-width: 1800px){
  #about-us .history .chronology{
    overflow-y: scroll;
    scrollbar-color: var(--color-brand) var(--color-lightbluegray);
    scrollbar-width: thin;
    padding-right: var(--space-section-2);
  }
}
@media (max-width: 1480px){
  #about-us .history .chronology{
    margin: var(--space-section-4) var(--space-section-2) var(--space-section-4) var(--space-section-7);
  }
}
*/
#about-us .award{
  background: linear-gradient(90deg, rgba(33, 123, 196, 1), rgba(0, 60, 126, 1));
}
#about-us .award h3{
  color: var(--color-white);
}
#about-us .award .box{
  background: var(--color-white);
  border-radius: var(--radius-15);
}
#about-us .access{
  background: url(../images/common/bg_xray2.png) no-repeat top center;
  background-size: cover;
}
#about-us .access .box > ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 0;
}
#about-us .access .box > ul > li{
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-15);
  box-shadow: var(--box-shadow-6);
  margin-bottom: var(--space-section-3);
  border: 1px solid var(--color-lightgray);
  box-sizing: border-box;
}
#about-us .access .box > ul > li{
  padding-bottom: var(--space-section-2);
}
#about-us .access .box > ul > li:last-child{
  margin-bottom: 0;
}
#about-us .access .box ul li h4{
  text-align: center;
  font-size: var(--font-fluid-h4);
  padding: var(--space-section-2) var(--space-section-2) var(--space-2);
}
#about-us .access .box .map_container{
  width: 100%;
  aspect-ratio: 660 / 320;
}
#about-us .access .box .map_container iframe{
  width: 100%;
  height: 100%;
  border: 0;
}
#about-us .access .box ul li ul{
  flex-wrap: wrap;
  padding: var(--space-section-2) var(--space-section-2) 0;
}
#about-us .access .box ul li ul li{
  width: 100%;
  padding-bottom: var(--space-section-2);
}
#about-us .access .box ul li h5{
  color: var(--color-brand);
  font-size: var(--font-fluid-lg);
}
#about-us .access .box ul li ul li p{
  line-height: var(--leading-heading-sm);
}

/*----------------------------------
  Products
----------------------------------*/
#products #page_header{
  background: url(../images/about/bg_header.jpg) no-repeat center center;
  background-size: cover;
}
#products .products_list{
  background: var(--bg-grad-whiteblue);
}
#products .products_list .list ul{
  padding-top: var(--space-section-4);
}
#products .products_list .inner p{
}
#products .products_list .inner .text p{
  padding-bottom: var(--space-section-1);
}
#products .products_list .inner .btns p{
  padding-bottom: 0;
}
#products .tech_features .box{
  padding: var(--space-section-1);
}
#products .tech_features .box li{
  width: 100%;
  padding: var(--space-section-4-5) var(--space-section-4) var(--space-section-6);
  margin-bottom: var(--space-section-7);
  position: relative;
  background: var(--color-bluegray);
}
#products .tech_features .box li:last-child{
  margin-bottom: var(--space-section-6);
}
#products .tech_features .box li:nth-child(odd) h4{
  position: absolute;
  top: -1.8em;
  right: 1em;
  font-size: var(--font-fluid-exp);
  font-family: var(--font-serif);
  font-style: italic;
}
#products .tech_features .box li:nth-child(even) h4{
  position: absolute;
  top: -1.8em;
  left: 1.55em;
  font-size: var(--font-fluid-exp);
  font-family: var(--font-serif);
  font-style: italic;
}
#products .tech_features .box h4 span{
  color: var(--color-orange);
  margin: 0 var(--space-2);
  font-size: var(--font-fluid-slogan);
  font-family: var(--font-heading);
}
#products .tech_features .box li:nth-child(odd) figure{
  position: absolute;
  bottom: -4.5em;
  left: 5em;
  width: 58%;
}
#products .tech_features .box li:nth-child(even) figure{
  position: absolute;
  bottom: -7em;
  right: 5em;
  width: 52%;
}
#products .tech_features .box li figure img{
}
#products .tech_features .box li:first-child .box_inner{
  margin: 0 auto;
}
#products .tech_features .box li .box_inner p{
}
#products .tech_features .box .box_inner h5{
  color: var(--color-brand);
  font-size: var(--font-fluid-boxlead);
  padding-bottom: var(--space-section-2);
}
#products .inquiry{
  background: var(--color-bluepurple);
  padding-block: 0;
  padding: var(--space-section-4) 0 var(--space-section-2);
}
#products .inquiry h3{
  color: var(--color-white);
}
#products .inquiry ul{
  width: 100%;
  padding: var(--space-section-4) 0 var(--space-section-1);
  box-sizing: border-box;
}
#products .inquiry ul li{
  width: 100%;
  padding: var(--space-section-3) var(--space-section-2);
  background: var(--color-white);
  border-radius: var(--radius-15);
  margin-bottom: var(--space-section-2);
  box-sizing: border-box;
}
#products .inquiry ul li h4{
  text-align: center;
  color: var(--color-brand);
  font-size: var(--font-fluid-inq);
  letter-spacing: var(--letterspacing-wide);
}
#products .inquiry ul li figure{
  width: 20%;
  margin: var(--space-section-1) auto 0;
}
#products .inquiry ul li p{
  text-align: center;
  font-weight: var(--font-thick-6);
  font-size: var(--font-fluid-lead);
  padding: var(--space-section-1);
}
#products .inquiry ul li p span{
  display: block;
  font-weight: var(--font-thick-4);
  font-size: var(--font-fluid-sm);
}
#products .inquiry ul li a.btn{
  min-width: inherit;
  max-width: 75%;
  display: block;
  position: relative;
  margin-inline: auto;
  color: var(--color-white);
  padding-left: var(--space-section-4);
}
#products .inquiry ul li a.btn::before{
  content: '';
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: var(--radius-round);
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
}
#products .inquiry ul li a.btn::after{
  content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: 1.5px solid #214d9b;
  border-right: 1.5px solid #214d9b;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1.5em;
  bottom: 0;
  margin: auto;
}

/*----------------------------------
  Products Details
----------------------------------*/
#products.details{
}
#products.details .detail_main{
  padding-block: var(--space-section-4) 0;
}
#products.details .detail_main h3{
  color: var(--color-brand);
}
#products.details .detail_main .t_center{
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
}
#products.details .detail_main figure{
  width: 70%;
  margin: var(--space-section-4) auto;
}
#products.details .features{
  background: url(../images/products/bg_xray.png) no-repeat center center;
  background-size: cover;
  padding: var(--space-section-4-5) 0 0;
}
#products.details .features h3{
  color: var(--color-text-default);
}
#products.details .features .box{
  padding-top: var(--space-section-4);
}
#products.details .features .box ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#products.details .features .box ul li{
  width: 100%;
  margin-bottom: var(--space-section-5);
  position: relative;
  border-top: 4px solid var(--color-orange);
  background: var(--color-whitegray);
  padding: var(--space-section-3);
  box-sizing: border-box;
  box-shadow: var(--box-shadow-6);
  border-radius: 0 0 12px 12px;
}
#products.details .features .box ul li span{
  position: absolute;
  top: -.935em;
  left: .25em;
  color: var(--color-orange);
  font-size: var(--font-fluid-num);
  font-weight: var(--font-thick-6);
  font-family: var(--font-heading);
  line-height: var(--font-lineheight-0);
}
#products.details .features .box ul li h4{
  color: var(--color-text-default);
  font-size: var(--font-fluid-boxlead);
  line-height: var(--leading-heading-sm);
  font-weight: var(--font-thick-6);
  padding-bottom: var(--space-section-2);
  text-indent: -.02em;
}
#products.details .specifications{
  padding-block: 0;
  padding: var(--space-section-4-5) 0;
}
#products.details .specifications .spec_list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 3px dotted var(--color-bluepurple);
  margin-top: var(--space-section-1-5);
  padding-bottom: var(--space-section-1-5);
}
#products.details .specifications .spec_list:first-child{
  padding-top: var(--space-section-1-5);
  border-top: 3px dotted var(--color-bluepurple);
}
#products.details .specifications .spec_list dt{
  width: 100%;
  line-height: var(--leading-heading-sm);
  font-weight: var(--font-thick-7);
  margin-bottom: var(--space-section-0-5);
}
#products.details .specifications .spec_list dd{
  display: block;
  width: 100%;
  font-size: var(--font-fluid-md);
}
#products.details .specifications .spec_list dd p{
  padding: var(--space-section-0-5) 0;
  border-bottom: 1px dotted var(--color-gray);
}
#products.details .specifications .spec_list dd p:last-child{
  border-bottom: none;
}
#products.details .specifications .spec_list .group_box{
  width: 100%;
}
#products.details .specifications .spec_list .group{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
  padding-top: var(--space-section-0-5);
  border-top: 1px dotted var(--color-gray);
}
#products.details .specifications .spec_list .group dt::before{
  content: '▶︎';
  display: inline-block;
  color: var(--color-mdlgray);
  font-size: var(--font-fluid-sm);
  margin-right: var(--space-section-0-5);
}
#products.details .specifications .spec_list .group dd{
  margin-left: auto;
}
.btn_horizontal{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btn_horizontal .btn{
  width: 70%;
  margin-inline: 0;
  margin: var(--space-section-4) var(--space-section-1) var(--space-section-1);
}
.btn_horizontal .btn:nth-child(2){
  margin: var(--space-section-1);
}

#products.details .other{
  background: var(--bg-grad-whiteblue);
  padding-block: 0;
  padding: var(--space-section-4-5) 0 var(--space-section-4)
}
#products.details .other ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#products.details .other ul li{
  background: var(--color-white);
  padding: var(--space-section-3) var(--space-section-2) var(--space-section-1-5);
  border-radius: var(--radius-15);
  box-shadow: var(--box-shadow-1);
  margin-bottom: 1em;
}
#products.details .other ul li:nth-child(3n){
  margin-right: 0;
}
#products.details .other ul li a{
  display: block;
}
#products.details .other ul li .link{
  display: flex;
  justify-content: space-between;
}
#products.details .other ul li a figure{
  width: 37%;
}
#products.details .other ul li a .product_name{
  width: 55%;
  display: flex;
  flex-direction: column;
}
#products.details .other ul li a .product_name h4{
  color: var(--color-brand);
  font-size: var(--font-fluid-lg);
  font-weight: var(--font-thick-6);
}
#products.details .other ul li a .product_name p{
  color: var(--color-text-default);
  font-size: var(--font-fluid-lead);
  font-weight: var(--font-thick-6);
  padding-top: var(--space-section-1);
}
#products.details .other ul li a:hover .product_name p{
  color: var(--color-text-default);
}
#products.details .other ul li a.move_arw{
  position: relative;
}
#products.details .other ul li a.move_arw span{
  display: block;
  position: absolute;
  top: 58%;
  left: 84%;
  width: 10%;
  height: 2px;
  background: var(--color-orange);
}
#products.details .other ul li a.move_arw span::before{
  content: '';
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 0 8px;
  border-color: transparent transparent transparent var(--color-orange);
}

@media (min-width: 430px) and (max-width: 756px){
  #products.details .other ul li a figure{
    width: 30%;
    margin-inline: auto;
  }
  #products.details .other ul li a .product_name h4{
    font-size: var(--font-fluid-boxlead);
  }
  #products.details .other ul li a .product_name p{
    font-size: var(--font-fluid-exp);
  }
  #products.details .other ul li a.move_arw span{
    top: 86px;
    left: 76%;
    width: 10%;
  }
}
@media (min-width: 376px) and (max-width: 429px){
  #products.details .other ul li a.move_arw span{
    top: 50%;
    left: 78%;
  }
}

/*----------------------------------
  News
----------------------------------*/
.news ul li .icon{
  width: 30%;
  background: none;
}
.news ul li .icon a{
  width: 100%;
  display: block;
  text-align: center;
  font-size: var(--font-fluid-md);
  line-height: var(--leading-heading-lg);
  padding: var(--space-section-0-5) var(--space-section-1);
  border-radius: var(--radius-5);
  background: var(--color-news-icon4);
  box-sizing: border-box;
  opacity: 1;
}

/*----------------------------------
  News
----------------------------------*/
#news #page_header{
  background: url(../images/about/bg_header.jpg) no-repeat center center;
  background-size: cover;
}
#news .news{
  background: none;
}
#news .news .year{
  margin-inline: auto;
  padding-bottom: var(--space-section-1);
  border-bottom: 1px solid var(--color-gray);
}
#news .news .year ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-inline: var(--space-section-1);
  padding-block: var(--space-section-1);
}
#news .news .year ul li{
  margin-bottom: 0;
  margin-right: var(--space-section-0-5);
  padding: var(--space-section-0-25) 0;
  border-bottom: none;
}
#news .news .year ul li:last-child{
  margin-right: 0;
}
#news .news .year ul li a{
  display: block;
  text-align: center;
  color: var(--color-whiteblue);
  border-radius: var(--radius-5);
  padding: var(--space-section-0-5) var(--space-section-3);
  background: var(--color-news-icon1);
  opacity: .4;
}
#news .news .year ul li a.current,
#news .news .year ul li a:hover,
#news .news .year ul li a:active{
  opacity: 1;
  color: var(--color-white);
}
.news ul li .text{
  overflow-wrap: break-word;
/*  padding: var(--space-section-1) var(--space-section-1) 0;*/
}

#news #news-filter-form{
  padding-top: var(--space-section-0-75);
}
#news .selectbox{
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
#news .selectbox::after{
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
#news .selectbox select{
  appearance: none;
  width: 100%;
  height: 2.8em;
  padding: .4em calc(.8em + 30px) .4em .8em;
  margin-bottom: var(--space-section-0-5);
  border: none;
  border-radius: var(--radius-3);
  background: var(--color-news-icon1);
  color: var(--color-white);
  font-size: var(--font-fluid-default);
  cursor: pointer;
}
#news .filter_btn{
  width: 100%;
  appearance: none;
  height: 2.8em;
  padding: .4em;
  text-align: center;
  border: none;
  border-radius: var(--radius-3);
  background: var(--color-lightgray);
  color: var(--color-text-default);
  font-size: var(--font-fluid-default);
  cursor: pointer;
  box-sizing: border-box;
}

#news .news.detail{
  padding: var(--space-section-3) 0 var(--space-section-4);
}
#news .news.detail .inner{
}
#news .news.detail h3{
  text-align: left;
  font-size: var(--font-fluid-exp-per);
  font-weight: var(--font-thick-6);
  line-height: var(--leading-heading-lg);
  padding-bottom: var(--space-section-1-5);
  margin-bottom: var(--space-section-1-5);
  border-bottom: 5px solid var(--color-bluegray);
  position: relative;
}
#news .news.detail .box .textBox{
  width: 100%;
  padding-bottom: var(--space-section-3);
}
#news .news.detail .textBox h3{
  color: #000;
  font-size: 21px;
  font-weight: 600;
  line-height: inherit;
  padding-bottom: inherit;
  margin-bottom: inherit;
  border-bottom: none;
  position: inherit;
  font-family: inherit;
}
#news .news.detail .textBox h3::before{
  content: none;
}
#news .news.detail .textBox ul{
  padding-inline: 0;
  padding-block: 0;
}
#news .news.detail .textBox ul li{
  padding-block: var(--space-1);
  border-bottom: none;
}
#news .news.detail h3::before{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: .6em;
  height: 5px;
  background: var(--color-brand);
}
#news .news.detail .element{
  display: flex;
  align-items: center;
 }
#news .news.detail .element .date{
  color: var(--color-brand);
  font-weight: var(--font-thick-4);
  margin-left: var(--space-3);
}
.news.detail .element .icon.info a,
.news ul li.info .icon a{
  background: var(--color-news-icon4);
}
.news.detail .element .icon.exhi a,
.news ul li.exhi .icon a{
  background: var(--color-news-icon3);
}
#news .news.detail .box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: var(--space-section-2) 0 var(--space-section-1);
}
#news .news.detail .box figure{
  margin: 0 auto 1em;
}
#news .news.detail .box a{
  display: inline;
  color: var(--color-text-link);
  text-decoration: underline;
}
#news .news.detail .box .textBox{
  width: 98.6%;
  margin-inline: auto;
/*  order: 1;*/
}
news .news.detail .picbox{
  gap: 20px;
  width: 100%;
  margin-block: var(--space-section-3);
}
#news .news.detail .picbox figure{
}
#news .news.detail .picbox figure img{
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--color-lightgray);
}

#news .news.detail .box-yoko{
  display: flex;
  flex-wrap: wrap;
  padding: var(--space-section-3) 0 0;
}
#news .news.detail .box-yoko a{
  color: var(--color-text-link);
  text-decoration: underline;
}
#news .news.detail .box-yoko .textBox{
  width: 100%;
  padding-bottom: var(--space-section-3);
}
#news .news.detail .picbox-yoko figure{
}
#news .news.detail .picbox-yoko figure img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--color-lightgray);
}

#news .news.detail .news_pagination{
  margin-top: var(--space-section-1);
  padding-top: var(--space-section-5-5);
}
#news .news.detail .news_pagination a{
  width: 100%;
  display: block;
  color: var(--color-mdlgray);
  padding: var(--space-section-2);
  background: var(--color-white);
  border: 1px solid var(--color-brand);
  position: relative;
  flex-grow: 1;
}
#news .news.detail .news_pagination a:hover{
  color: var(--color-text-default);
  background: var(--color-mistic);
  opacity: 1;
  flex-grow: 1;
}
#news .news.detail .news_pagination a.prev::before{
  content: 'Prev';
  display: block;
  width: 5em;
  text-align: center;
  color: var(--color-white);
  padding: var(--space-section-0-25);
  background: var(--color-brand);
  font-size: var(--font-fluid-sm);
  letter-spacing: var(-letterspacing-normal);
  border-radius: var(--radius-5);
  position: absolute;
  top: -16px;
  left: 2em;
}
#news .news.detail .news_pagination a.next::before{
  content: 'Next';
  display: block;
  width: 5em;
  text-align: center;
  color: var(--color-white);
  padding: var(--space-section-0-25);
  background: var(--color-brand);
  font-size: var(--font-fluid-sm);
  letter-spacing: var(-letterspacing-normal);
  border-radius: var(--radius-5);
  position: absolute;
  top: -12px;
  right: 2em;
}
#news .news.detail .news_pagination.is_latest a.prev::before,
#news .news.detail .news_pagination.is_oldest a.next::before{
  content: none;
}

/* NEWS投稿画像周り */
.post-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-block: var(--space-section-3);
}
.post-images figure{
  margin: 0;
}
/*
.post-images img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
*/
.swiper-slide img,
.post-images figure img{
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--color-lightgray);
}

/* pagenavi */
.wp-pagenavi{
  text-align: center;
  margin: var(--space-section-3) auto;
}
.wp-pagenavi .page{
  display: inline-block;
  text-align: center;
  width: 42px;
  line-height: 34px;
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-999);
  margin: auto var(--space-section-0-25);
  transition: .3s;
}
.wp-pagenavi .page:hover{
  background: var(--color-lightblue);
}
.wp-pagenavi .current{
  display: inline-block;
  text-align: center;
  width: 42px;
  line-height: 34px;
  color: var(--color-white);
  background: var(--color-news-icon1);
  border: 1px solid var(--color-gray) !important;
  border-radius: var(--radius-999);
  margin: auto var(--space-section-0-25);
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last{
  line-height: 42px;
  margin: auto var(--space-section-1);
  transition: .3s;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .first:hover,
.wp-pagenavi .last:hover{
  color: var(--color-gray);
}
.wp-pagenavi span.pages{
  margin-right: 15px;
}

/*----------------------------------
  Contact
----------------------------------*/
#contact #page_header{
  background: url(../images/about/bg_header.jpg) no-repeat center center;
  background-size: cover;
}
#contact #contact_form{
  padding-block: var(--space-section-2) var(--space-section-4);
}
#contact #contact_form .popup{
  text-decoration: underline;
}
#contact #contact_form .check{
  font-size: 1rem;
}
input#wpforms-198-field_28_1{
  margin-right: var(--space-1);
}
#contact #contact_form .popup-box{
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, opacity .3s ease;
  opacity: 0;
}
#contact #contact_form .popup-box.is-show{
  opacity: 1;
}
#contact #contact_form .popup-content{
  position: relative;
  font-size: var(--font-fluid-md);
  margin-top: var(--space-section-0-5);
  color: var(--color-darkgray);
  background: var(--color-whitegray);
  line-height: var(--leading-heading-sm);
  padding: var(--space-section-2);
  border: 1px solid var(--color-lightgray);
}
#contact #contact_form .popup-content .close-btn{
  position: absolute;
  top: 0;
  right: -8px;
  display: block;
  color: var(--color-gray);
  line-height: var(--leading-df);
  text-decoration: none;
  font-size: 22px;
  font-weight: var(--font-thick-5);
  margin-right: var(--space-section-1);
  padding: 0 var(--space-section-0-4) var(--space-section-0-4);
  border-left: 1px solid var(--color-lightgray);
  border-bottom: 1px solid var(--color-lightgray);
  background: var(--color-white);
}
#contact #contact_form .popup-content p{
  padding-right: var(--space-section-3);
}

/*--------------------------
  404
--------------------------*/
#page404{
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}
#page404 .text_404{
    color: #cccccc;
    font-size: 128px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
    text-align: center;
}
#page404 .text_notfount_en{
    color: #cccccc;
    font-size: 200%;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
}
#page404 .text_notfount_ja{
    color: #999999;
    font-size: 115%;
    font-weight: bold;
    margin-bottom: 28px;
}
#page404 .text_notfount_ja+p,
#page404 .renewal{
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 2.5em;
}
#page404 p.ask{
    font-size: 125%;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0.3em;
}
#page404 p.ask+p{
    line-height: 1.8;
    text-align: left;
    margin-bottom: 2.5em;
}

/*--------------------------
  WPforms setting
--------------------------*/
.wpforms-container{
  margin: 0 0 !important;
}
.wpforms-container .wpforms-field.lead{
  text-align: left !important;
  color: var(--color-text-default) !important;
}
.wpforms-container .wpforms-field.lead span{
  color: var(--wpforms-label-error-color) !important;
}
button.wpforms-submit{
  width: 100% !important;
}
div.wpforms-container-full .wpforms-form .wpforms-field .wpforms-field-row:last-child{
  display: flex !important;
  flex-wrap: wrap !important;
}
.wpforms-container .wpforms-field .wpforms-field-row .wpforms-field-row-block:first-child{
  width: 100% !important;
}
.wpforms-container .wpforms-field .wpforms-field-row .wpforms-field-row-block:last-child{
  padding: 0 10px 0 0 !important;
  margin-top: var(--space-2) !important;
}
.wpforms-container .wpforms-field .wpforms-field-row .wpforms-one-half{
  width: 100% !important;
}
.wpforms-container .wpforms-field.agree a{
  text-decoration: underline;
}
div.wpforms-container-full .wpforms-form .wpforms-pagebreak-left .wpforms-page-button{
  width: 100%;
}
.wpforms-field-medium{
  max-width: 100% !important;
}

/*--------------------------
  スムーズ アンカーリンク
--------------------------*/
#corp-history{
  scroll-margin-top: 150px;
}
#corp-message,
#corp-philosophy,
#corp-profile,
#corp-access,
#lineup{
  scroll-margin-top: 52px;
}
#xray-generators{
  scroll-margin-top: 52px;
}
