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

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 変数の定義
--------------------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

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

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* 色のクラス
--------------------------------------------------*/
.white {
  color: #fff;
  text-align: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

.black {
  color: #000;
  text-align: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
a,
p,
div,
span,
img,
svg,
table,
tr,
th,
td,
figure {
  font-family: "Zen Old Mincho", "Noto Serif SC", serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #171a1b;
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  body,
  ul,
  ol,
  dl,
  li,
  dt,
  dd,
  p,
  div,
  span,
  img,
  svg,
  a,
  table,
  tr,
  th,
  td,
  figure {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Zen Old Mincho", "Noto Serif SC", serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #182861;
}

p {
  font-family: "Zen Old Mincho", "Noto Serif SC", serif;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.4rem;
  }
}

/* KV
--------------------------------------------------*/
#kv {
  position: relative;
  height: 650px;
  margin-left: auto;
  margin-right: 0;
  background-color: #f3f1ed;
}
@media screen and (max-width: 768px) {
  #kv {
    height: calc(100svh - 75px);
  }
}
#kv .kv_img_wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
}
#kv .kv_img_wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
#kv .kv_catch {
  max-width: 1400px;
  width: 90%;
  margin: auto;
  position: absolute;
  top: 150px;
  left: 0px;
  right: 0;
}
#kv .kv_catch p {
  color: #fff;
  font-size: clamp(3.2rem, 3.57vw, 5rem);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #kv .kv_catch p {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}
#kv .kv_catch p span {
  margin-bottom: 10px;
  font-size: 2rem;
  display: block;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #kv .kv_catch p span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 350px) {
  #kv .kv_catch p span {
    font-size: 1.6rem;
  }
}
#kv .kv_zh_txt {
  top: 230px;
}

/* service
--------------------------------------------------*/
#service {
  padding: 50px 0;
  background-color: #f8f8f8;
}
#service .warp_service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #service .warp_service {
    flex-direction: column;
  }
}
#service .warp_service .tx_wrap {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #service .warp_service .tx_wrap {
    width: 100%;
    margin-bottom: 10px;
  }
}
#service .warp_service .tx_wrap h2 {
  font-size: clamp(3rem, 2.57vw, 3.6rem);
}
#service .warp_service .tx_wrap p {
  font-size: 1.6rem;
  letter-spacing: 0.075em;
}
#service .warp_service .tx_wrap .btn {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #service .warp_service .tx_wrap .btn {
    display: none;
  }
}
#service .warp_service .figure {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  #service .warp_service .figure {
    width: 100%;
    margin-bottom: 30px;
    gap: 10px;
  }
}
#service .warp_service .figure .content {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #182861;
  border-radius: 10px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #service .warp_service .figure .content {
    padding: 8px;
  }
}
#service .warp_service .figure .content div {
  width: 70px;
}
@media screen and (max-width: 768px) {
  #service .warp_service .figure .content div {
    width: 60px;
  }
}
#service .warp_service .figure .content div img {
  height: 70px;
  border: 2px solid #182861;
  border-radius: 4px;
  padding: 6px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  #service .warp_service .figure .content div img {
    height: 60px;
  }
}
#service .warp_service .figure .content p {
  width: calc(100% - 80px);
}
@media screen and (max-width: 768px) {
  #service .warp_service .figure .content p {
    width: calc(100% - 70px);
  }
}
#service .warp_service .figure .content p {
  color: #182861;
  font-size: 1.6rem;
}
@media screen and (max-width: 810px) {
  #service .warp_service .figure .content p {
    font-size: 1.4rem;
  }
}
#service .warp_service .service_sp_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  #service .warp_service .service_sp_btn {
    display: block;
  }
}

/* about
--------------------------------------------------*/
#about {
  margin-top: 60px;
}
#about h2 {
  max-width: 1200px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
#about .about_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #about .about_wrap {
    flex-direction: column;
  }
}
#about .about_wrap .about_link {
  display: inline-block;
  text-align: center;
  overflow: hidden;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #about .about_wrap .about_link {
    width: 100%;
  }
}
#about .about_wrap .about_link:hover .box_bg {
  transform: scale(1.1);
}
#about .about_wrap .about_link:hover .btn {
  background-color: #fff;
  color: #182861;
}
#about .about_wrap .about_link .content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #about .about_wrap .about_link .content {
    max-width: 1400px;
    width: 90%;
  }
}
#about .about_wrap .about_link .content h3 {
  color: #fff;
  font-size: clamp(3rem, 3.42vw, 4.8rem);
  text-align: center;
  margin-bottom: 40px;
}
#about .about_wrap .about_link .content h3 span {
  font-size: 2.2rem;
  color: #fff;
  display: block;
}
#about .about_wrap .about_link .content .btn {
  transition: 0.3s;
}
#about .about_wrap .about_link .box_bg {
  width: 100%;
  height: 400px;
  transition: transform 0.8s ease;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #about .about_wrap .about_link .box_bg {
    height: 350px;
  }
}
#about .about_wrap .vision_link .box_bg {
  background-image: url(../img/top/about_img01.webp);
}
#about .about_wrap .company_link .box_bg {
  background-image: url(../img/top/about_img02.webp);
}

/* news
--------------------------------------------------*/
#news {
  margin-top: 60px;
  margin-bottom: 80px;
}
#news .news_list {
  overflow: auto;
}
@media screen and (max-width: 768px) {
  #news .news_list {
    display: flex;
    overflow-x: scroll;
  }
}
#news .news_list article {
  position: relative;
  float: left;
  height: fit-content;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-left: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  #news .news_list article {
    width: 55%;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  #news .news_list article {
    flex-direction: column;
    margin-right: 20px;
    padding-right: 0;
    padding-left: 0;
    width: 70vw;
    flex-shrink: 0;
    margin-bottom: 10px;
  }
}
#news .news_list article .thum_wrap {
  width: 45%;
}
@media screen and (max-width: 1199px) {
  #news .news_list article .thum_wrap {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #news .news_list article .thum_wrap {
    width: 100%;
  }
}
#news .news_list article .thum {
  padding-top: 75%;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  background-color: #f3f1ed;
}
#news .news_list article .thum img {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition-duration: 1s;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  max-width: 100%;
  transition: transform 0.6s ease;
}
#news .news_list article .thum:hover img {
  transform: scale(1.1);
}
#news .news_list article .news_tx_wrap {
  width: 50%;
}
@media screen and (max-width: 1199px) {
  #news .news_list article .news_tx_wrap {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #news .news_list article .news_tx_wrap {
    width: 100%;
  }
}
#news .news_list article .news_tx_wrap .wrap_date_cat {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #news .news_list article .news_tx_wrap .wrap_date_cat {
    margin-bottom: 10px;
  }
}
#news .news_list article .news_tx_wrap .wrap_date_cat .date {
  display: flex;
  align-items: center;
  font-size: clamp(1.2rem, 1vw, 1.5rem);
}
#news .news_list article .news_tx_wrap .wrap_date_cat .date::after {
  content: "";
  background-color: #000000;
  width: 1px;
  height: 20px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
#news .news_list article .news_tx_wrap .wrap_date_cat .cat {
  font-size: clamp(1.2rem, 1vw, 1.5rem);
  background-color: #182861;
  padding: 2px 20px;
  border-radius: 20px;
  color: #fff;
  transition-duration: 0.4s;
}
#news .news_list article .news_tx_wrap .wrap_date_cat .cat:hover {
  opacity: 0.7;
}
#news .news_list article .news_tx_wrap .wrap_date_cat .cat .cat_tx {
  color: #fff;
}
#news .news_list article .news_tx_wrap .wrap_date_cat .report, #news .news_list article .news_tx_wrap .wrap_date_cat .report-zh, #news .news_list article .news_tx_wrap .wrap_date_cat .report-en {
  background-color: #4559a1;
}
#news .news_list article .news_tx_wrap .wrap_date_cat .investor, #news .news_list article .news_tx_wrap .wrap_date_cat .investor-zh, #news .news_list article .news_tx_wrap .wrap_date_cat .investor-en {
  background-color: #7f8dbf;
}
#news .news_list article .news_tx_wrap .ttl {
  transition: 0.3s;
}
#news .news_list article .news_tx_wrap .ttl:hover {
  opacity: 0.5;
}
#news .news_list article:first-child {
  width: 50%;
  display: block;
  padding-left: 0;
  padding-right: 40px;
}
@media screen and (max-width: 1199px) {
  #news .news_list article:first-child {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #news .news_list article:first-child {
    margin-right: 20px;
    padding-right: 0;
    width: 70vw;
    flex-shrink: 0;
  }
}
#news .news_list article:first-child .thum {
  width: 100%;
  padding-top: 73%;
  overflow: hidden;
}
#news .news_list article:first-child .news_tx_wrap {
  width: 100%;
}
#news .news_list article:first-child .wrap_date_cat {
  margin-top: 20px;
}
#news .coming {
  font-size: 2rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #news .coming {
    font-size: 1.6rem;
    margin: 30px 0;
  }
}
#news .btn {
  display: block;
  margin: 0 auto;
  background-color: #ffffff;
}
#news .btn:hover {
  background-color: #182861;
  color: #fff;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #news .btn {
    margin-top: 30px;
  }
}/*# sourceMappingURL=top.css.map */