@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-style: normal;
  font-weight: 900;
  src:
  url("../fonts/NotoSansJP-ExtraBold.woff2")format("woff2"),
  url("../fonts/NotoSansJP-ExtraBold.woff")format("woff"),
  url("../fonts/NotoSansJP-ExtraBold.eot")format("eot"),
  url("../fonts/NotoSansJP-ExtraBold.ttf")format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src:
  url("../fonts/NotoSansJP-Bold.woff2")format("woff2"),
  url("../fonts/NotoSansJP-Bold.woff")format("woff"),
  url("../fonts/NotoSansJP-Bold.eot")format("eot"),
  url("../fonts/NotoSansJP-Bold.ttf")format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-style: normal;
  font-weight: 600;
  src:
  url("../fonts/NotoSansJP-SemiBold.woff2")format("woff2"),
  url("../fonts/NotoSansJP-SemiBold.woff")format("woff"),
  url("../fonts/NotoSansJP-SemiBold.eot")format("eot"),
  url("../fonts/NotoSansJP-SemiBold.ttf")format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src:
  url("../fonts/NotoSansJP-Medium.woff2")format("woff2"),
  url("../fonts/NotoSansJP-Medium.woff")format("woff"),
  url("../fonts/NotoSansJP-Medium.eot")format("eot"),
  url("../fonts/NotoSansJP-Medium.ttf")format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src:
  url("../fonts/NotoSansJP-Regular.woff2")format("woff2"),
  url("../fonts/NotoSansJP-Regular.woff")format("woff"),
  url("../fonts/NotoSansJP-Regular.eot")format("eot"),
  url("../fonts/NotoSansJP-Regular.ttf")format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-display: swap;
  font-style: normal;
  font-weight: 300;
  src:
  url("../fonts/OpenSans-Light.woff2")format("woff2"),
  url("../fonts/OpenSans-Light.woff")format("woff"),
  url("../fonts/OpenSans-Light.eot")format("eot"),
  url("../fonts/OpenSans-Light.ttf")format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src:
  url("../fonts/OpenSans-Bold.woff2")format("woff2"),
  url("../fonts/OpenSans-Bold.woff")format("woff"),
  url("../fonts/OpenSans-Bold.eot")format("eot"),
  url("../fonts/OpenSans-Bold.ttf")format("truetype");
}

html{
  /* font-size: 62.5%; */
  /* 16px x 62.5% = 10px    10px x 設定サイズ(px) */
  background-color: #fff;
}

body{
  color: #000000;
  background-color: #fff;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
header,footer{
  letter-spacing: 0;
}
div,p,a{
  color: #000000;
}
section p,
section div,
section a,
section{
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #1C2B3D;
}
/* h2{
  color: #2A4788;
} */
@media screen and (max-width:768px) {
  .main{
    overflow-x: hidden;
  }
}

a,
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  opacity: 1;
  /* color: inherit; */
}
img {
  max-width: 100%;
  height: auto;
}
button {
  transition: all 0.2s ease 0s;
}
button:hover {
  opacity: 0.8;
  transform: translateY(3px);
}
li {
  list-style-type: none;
}
p,
h1,
h2,
h3 {
  margin: 0;
}

/*------------------------------------------------
*     utility
-------------------------------------------------*/


/* メディアクエリ */
@media screen and (max-width:576px) {}
@media screen and (max-width:768px) {}
@media screen and (max-width:992px) {}

/*PCのとき表示する*/
.disp_pc {
  display: inline;
}
.slick-slide img.disp_pc{
  display: inline!important;
}
@media screen and (max-width:768px) {
  .disp_pc {
      display: none;
  }
  .slick-slide img.disp_pc{
    display: none!important;
  }
}
/*TB以下のとき表示する*/
.disp_tb {
  display: none;
}
@media screen and (max-width:992px) {
  .disp_tb {
      display: inline;
  }
}
/*SP以下のとき表示する*/
.disp_sp {
  display: none;
}
.slick-slide img.disp_sp{
  display: none!important;
}
@media screen and (max-width:768px) {
  .disp_sp {
    display: inline;
  }
  .slick-slide img.disp_sp{
    display: inline!important;
  }
}
/*xlのとき改行する*/
.br_xl {
  display: block;
}
@media screen and (max-width: 1200px) {
  .br_xl {
    display: none;
  }
}
/*PCのとき改行する*/
.br_pc {
  display: block;
}
@media screen and (max-width:992px) {
  .br_pc {
    display: none;
  }
}
/*タブレットのとき改行する*/
.br_tb {
  display: none;
}
@media screen and (min-width:970px) {
  .br_tb {
    display: block;
  }
}
/*SPのとき改行する*/
.br_sp {
  display: none;
}
@media screen and (max-width:768px) {
  .br_sp {
    display: block;
  }
}
/*XSサイズのとき改行する*/
.br_xs {
  display: none;
}
@media screen and (max-width:576px) {
  .br_xs {
    display: block;
  }
}
/*XXSサイズのとき改行する*/
.br_xxs {
  display: none;
}
@media screen and (max-width:400px) {
  .br_xxs {
    display: block;
  }
}
/*w320px以下のとき改行する*/
.br_320 {
  display: none;
}
@media screen and (max-width:320px) {
  .br_320 {
    display: block;
  }
}
.block_tb{
  display: block;
}
@media screen and (max-width:880px) {
  .block_tb {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .block_tb {
    display: block;
  }
}
/*------------------------------------------------
*     common parts
-------------------------------------------------*/
/* セクションスペース */
section.main-section{
  padding-top: 100px!important;
  padding-bottom: 100px!important;
}
@media screen and (max-width:768px) {
  section.main-section{
    padding-top: 40px!important;
    padding-bottom: 40px!important;
  }
}
/* ボタン */
.btn{
  width: 380px;
  border-radius: 100vh;
  text-align: center;
  transition: .8s;
  margin: auto;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}
.btn a{
  color: #fff;
  font-weight: 700;
  display: block;
  width: 100%;
  /* width: 240px; */
  padding: 20px 0;
}
.btn:hover{
  width: 280px;
}
.btn.contact-btn a{
  display: block;
}
#contact .btn.contact-btn:hover {
  background-color: #DE6E4B;
}
#contact .btn.contact-btn:hover a{
  color: #fff;
}
.download-btn{
  background-color: #DE6E4B;
  border: 2px solid #DE6E4B;
}
.btn.download-btn:hover {
  background-color: #fff;
  border: 2px solid #DE6E4B;
}
.btn.download-btn:hover a{
  color: #DE6E4B;
}
.btn.contact-btn{
  /* background-color: #fff;
  border: 2px solid #DE6E4B; */
  background-color: #DE6E4B;
  border: 2px solid #DE6E4B;
}
.btn.contact-btn a{
  /* color: #DE6E4B; */
  color: #fff;
}
.btn.contact-btn:hover {
  background-color: #fff;
}
.btn.contact-btn:hover a{
  color: #DE6E4B;
}
.btn a:hover{
  color: #fff;
}
/* .btn a:visited{
  color: #fff;
} */
/* .btn.contact-btn:hover a{
  color: #fff;
} */

.sec-btn-wrap{
  padding-top: 54px;
}
.sec-btn-wrap.function{
  padding-top: 0;
}
.sec-btn-wrap p{
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: right;
}
.sec-btn-wrap .function-btn{
  background-color: #2A4788;
  font-weight: 600;
  text-align: center;
  width: 160px;
  border-radius: 100vh;
  margin: 0 0 0 auto;
  transition: .8s;
  border: 2px solid #2A4788;
}
.sec-btn-wrap .download-btn{
  background-color: #DE6E4B;
  font-weight: 600;
  text-align: center;
  width: 160px;
  border-radius: 100vh;
  margin: 0 0 0 auto;
  transition: .8s;
  border: 2px solid #DE6E4B;
}
.sec-btn-wrap .function-btn a,
.sec-btn-wrap .download-btn a{
  padding: 10px 0;
  display: block;
  line-height: 1;
  color: #fff;
  font-size: 14px;
}
.sec-btn-wrap .function-btn:hover{
  background-color: #fff;
  border: 2px solid #2A4788;
  width: 150px;
}
.sec-btn-wrap .download-btn:hover{
  background-color: #fff;
  border: 2px solid #DE6E4B;
  width: 150px;
}
.sec-btn-wrap .function-btn:hover a{
  color: #2A4788;
}
.sec-btn-wrap .download-btn:hover a{
  color: #DE6E4B;
}
/* .more-link-wrap{
  text-align: right;
  padding-top: 60px;
}
.more-link{
  position: relative;
  display: inline-block;
}
.more-link::after{
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2A4788;
  width: 100%;
  height: 1px;
}
.more-link a{
  color: #2A4788;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding-right: 26px;
}
.more-link a::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  background-image: url(../img/arrow-more.svg);
  width: 14px;
  height: 12px;
}
.more-link:hover{
  opacity: 0.7;
} */
@media screen and (max-width:768px){
  .sec-btn-wrap .download-btn{
    width: 180px;
  }
  .btn.download-btn:hover{
    width: 100%;
    background-color: #DE6E4B;
  }
  .btn.download-btn:hover a{
    color: #fff;
  }
  .btn.contact-btn:hover{
    width: 100%;
    background-color: #fff;
  }
  .btn.contact-btn:hover a{
    color: #DE6E4B;
  }
  .sec-btn-wrap .download-btn:hover{
    width: 180px;
    background-color: #DE6E4B;
  }
  .sec-btn-wrap .download-btn:hover a{
    color: #fff;
  }
  .sec-btn-wrap p{
    font-size: 12px;
    margin-bottom: 4px;
  }
  .sec-btn-wrap{
    padding-top: 30px;
  }
  .btn a{
    min-width: 240px;
    width: 100%;
  }
  .btn{
    width: 100%;
  }
  .btn-item{
    width: 80%;
  }
}

/*------------------------------------------------
*     MV
-------------------------------------------------*/
#mv{
  position: relative;
}
.mv-banner{
  max-width: 420px;
  margin: 30px auto 0;
}
.MV{
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  /* height: 100%; */
  padding: 28px 0 28px;
  background: linear-gradient(to left, #113A6A 0%, #1C4E88 40%, #265993 80%);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 398px;
}
.MV::after{
  content: "";
  /* background: linear-gradient(90deg, #3799BA 0%, #237EAF 40%, #1C4E88 80%); */
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../img/main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.MV-item{
  margin: auto;
  z-index: 2;
  position: relative;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  box-sizing: content-box;
}
.MV-ttl h1{
  color: #fff;
  font-weight: 900;
  font-size: 70px;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}
.MV-ttl h1>span:first-of-type,.MV-ttl h1>span:last-of-type{
  font-size: 36px;
}
.MV-ttl h1>span:nth-of-type(2){
  font-size: 50px;
  font-weight: 800;
}

.MV-btn_wrap{
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding: 16px;
  align-items: end;
  position: relative;
  z-index: 1;
  /* margin-top: 90px; */
  margin: 50px 0 0;
  max-width: 488px;
  padding: 0;
}
.MV-btn_item{
  flex-basis: 50%;
}
.MV-btn_item .btn{
  /* max-width: 240px; */
  /* margin: auto; */
  width: 100%;
}
.MV-btn_item .btn a{
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 20px 0;
  line-height: 1;
}
.MV-btn_item{
  position: relative;
}
/* .MV-btn_item:first-of-type:before{
  position: absolute;
  content: "";
  background-image: url(../img/download_img.png);
  width: 237px;
  height: 267px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  bottom: -30px;
  left: -70px;
  z-index: -1;
} */
.MV-img{
  max-width: 336px;
  padding-right: 50px;
  box-sizing: content-box;
}


@media screen and (max-width:1220px) {
  .MV-right{
    flex-basis: 48%;
  }
  .MV-ttl h1>span:first-of-type,
  .MV-ttl h1>span:last-of-type{
    font-size: 30px;
  }
  .MV-ttl h1>span:nth-of-type(2){
    font-size: 40px;
  }
  .MV-ttl h1{
    font-size: 56px;
  }
}
@media screen and (max-width:1100px) {
  .MV-item{
    margin: 0;
    padding: 0 32px;
  }
  .MV-img{
    max-width: 300px;
    padding-right: 0;
  }
  .MV-btn_item:first-of-type:before{
    width: 180px;
    height: 200px;
    bottom: 0;
    top: inherit;
    left: -50px;
  }
  .MV-btn_wrap{
    flex-direction: column;
    gap: 20px;
  }
  .MV-btn_item .btn{
    max-width: 100%;
  }
  .MV-btn_item{
    width: 100%;
  }
  .MV-btn_item:first-of-type .btn-item-txt{
    justify-content: center;
  }
}
@media screen and (max-width:980px) {
  .MV-description{
    max-width:60%;
  }
}
@media screen and (max-width:960px) {
  .MV{
    padding: 90px 0;
  }
  .MV-item{
    width: 100%;
    margin: auto;
    flex-direction: column;
    padding: 0 20px;
    max-width: 100%;
    box-sizing: border-box;
    gap: 60px;
  }
  .MV-ttl h1{
    line-height: 1.2;
    text-align: center;
  }
  .MV-ttl h1>span:first-of-type,
  .MV-ttl h1>span:nth-of-type(3){
    font-size: 24px;
  }
  .MV-ttl h1>span:nth-of-type(2){
    font-size: 30px;
  }
  .MV-btn_wrap{
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
    margin: auto;
    flex-basis: 100%;
    width: 100%;
    margin-top: 40px;
  }
  .MV-btn_item{
    flex-basis: 100%;
    width: 100%;
    max-width: 480px;
    margin: auto;
  }
  .MV-btn_item:first-of-type .btn-item-txt{
    /* margin-right: -80px; */
    justify-content: center;
    width: 100%;
  }
  .MV-btn_item .btn{
    max-width: 100%;
  }
  .MV-btn_item:first-of-type:before{
    left: -9%;
    bottom: -40px;
    width: 32%;
  }
  .MV-btn_item .btn a{
    padding: 12px 0;
  }
}

@media screen and (max-width:610px) {
  .MV-ttl h1>span:first-of-type,
  .MV-ttl h1>span:nth-of-type(3){
    font-size: 18px;
  }
  .MV-ttl h1>span:nth-of-type(2){
    font-size: 23px;
  }
  .MV-ttl h1{
    font-size: 32px;
    line-height: 1.6;
  }
  .MV-btn_wrap{
    margin-top: 20px;
  }
  .MV{
    padding: 40px 0;
  }
  .MV-item{
    gap: 30px;
  }
  .MV-img{
    width: 60%;
  }

}

/* --------------------
共通
-----------------------*/
.section-ttl{
  text-align: center;
}
.section-ttl .en{
  font-size: 20px;
  font-weight: 700;
  display: block;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  color: #1C4E88;
}
.section-ttl .jp{
  font-size: 40px;
  font-weight: 700;
  display: block;
}
section p{
  font-size: 16px;
}
@media screen and (max-width:768px) {
  .section-ttl .jp{
    font-size: 26px;
  }
  .section-ttl .en{
    font-size: 16px;
  }
}

/* --------------------
local-nav
-----------------------*/
.local-nav__btn{
  display: none;
}
.local-nav__wrap{
  box-shadow: 0px 4px 5px rgba(115, 115, 115, 0.1);
}
.local-nav li a{
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  display: block;
  padding: 28px 0;
  transition: .2s;
}
.local-nav__wrap.fixed{
  width: 100%;
  background-color: #ffffffe6;
  z-index: 100;
}
.local-nav__wrap.fixed li a{
  padding: 20px 0;
}
.local-nav{
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  box-sizing: content-box;
}
.local-nav li:hover a{
  color: #1C4E88;
}
.local-nav__btn{
  display: none;
}
.local-nav a:visited,
.local-nav a:focus,
.local-nav a:active{
  color: #1C2B3D;
}
@media screen and (max-width:940px) {
  .local-nav li a{
    font-size: 14px;
  }
}
@media screen and (max-width:820px) {
  .local-nav li a{
    font-size: 13px;
  }
}
@media screen and (max-width:768px) {
  .local-nav{
    flex-direction: column;
    display: none; /* 初期は非表示 */
    gap: 0;
    /* border: 1px solid #ccc; */
    padding: 0;
  }
  .local-nav li{
    border-bottom: 1px solid #CDCDCD;
    width: 100%;
    padding: 0 20px;
  }
  .local-nav a{
    padding: 14px 0;
  }
  .local-nav__btn {
    display: block;
    background: #333;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    position: relative;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    letter-spacing: 0.1em;
  }
  .local-nav__btn::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 16px;
    height: 22px;
    background-image: url(../img/arrow-white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s ease;
  }
  .local-nav__btn.is-active::after {
    transform: translateY(-50%) rotate(270deg);
  }
  .local-nav__wrap li a,
  .local-nav__wrap.fixed li a{
    padding: 14px 0;
  }
  .local-nav__wrap.fixed .local-nav__btn{
    padding: 8px 0;
  }
}

/* ----------
news
-------------*/
.news{
  padding: 100px 20px 0;
  text-align: center;
  margin-bottom: 80px;
}
.news-ttl{
  font-size: 26px;
  font-weight: 900;
  padding-bottom: 20px;
  display: inline-block;
  color: #1C4E88;
}
.news-list__date{
  color: #1C4E88;
  font-size: 14px;
}
.news-list__item{
  padding-bottom: 14px;
  border-bottom: 1px solid #CDCDCD;
  text-align: left;
}
.news-list__item:not(:last-of-type){
  margin-bottom: 16px;
}
.news-list{
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(115, 115, 115, 0.18);
  max-width: 1040px;
  padding: 40px 55px;
  margin: auto;
}
.news-list__txt{
  font-weight: 500;
}
.news-list__txt a{
  text-decoration: underline;
}
.news-list__txt a:visited{
  color: #1C2B3D;
}
.news-list__txt a:hover{
  color: #1C2B3D;
  opacity: 0.8;
}

@media screen and (max-width:768px) {
  .news{
    padding: 60px 20px;
    margin-bottom: 0;
  }
  .news-ttl{
    padding-bottom: 16px;
  }
  .news-list{
    padding: 36px 24px;
  }
}

/* ----------
product
-------------*/
#product-ic,
#product-paper,
#product-timestamp{
  margin-top: -80px;
  padding-top: 80px;
}
.product-news-content{
  background-image: url(../img/news-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.product .section-ttl{
  padding-bottom: 40px;
}
.product-list__inner{
  background-position: top;
  background-size: cover;
  padding: 80px 20px;
  position: relative;
}
.product-ic .product-list__inner{
  background-image: url(../img/bg-product01.png);
  background-color: #f3f3f3;
}
.product-paper .product-list__inner{
  background-image: url(../img/bg-product02.png);
  background-color: #EDEDED;
}
.product-timestamp .product-list__inner{
  background-image: url(../img/bg-product03.png);
  background-color: #f3f3f3;
}
.product-list h3{
  font-size: 32px;
  color: #1C4E88;
  text-align: center;
  padding-bottom: 113px;
  font-weight: 900;
}
.product-item{
  max-width: 1124px;
  margin: auto;
  display: flex;
  position: relative;
  margin-bottom: 123px;
  justify-content: space-between;
}
.product-item:last-of-type{
  margin-bottom: 0;
}
.product-item-flex{
  max-width: 1124px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-item-flex>.product-item{
  display: block;
  margin: 0;
  width: 100%;
  flex-basis: 47%;
}
.product-item-flex>.product-item .product-item__img{
  width: 100%;
  min-height: 280px;
}
.product-item-flex>.product-item .product-item__img img{
  max-width: 290px;
}
.product-item__txt{
  width: 100%;
}
.product-item-flex>.product-item:nth-of-type(even) .product-item__txt-wrap,
.product-item-flex>.product-item .product-item__txt-wrap{
  margin: 0;
  margin-right: 0;
  width: 100%;
}
.product-item__img{
  background-color: #fff;
  position: relative;
  min-width: 400px;
  width: 430px;
  min-height: 390px;
  display: flex;
  box-shadow: 0px 0px 20px rgba(115, 115, 115, 0.18);
}
.product-item__img::after{
  content: "";
  background: linear-gradient(to left, #113A6A 0%, #1C4E88 40%, #265993 80%);
  height: 5px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.product-item__img img{
  margin: auto;
  /* max-width: 180px; */
  width: auto;
}
#product-ic .product-item__img img{
  max-height: 348px;
}
#product-paper .product-item__img img{
  max-height: 285px;
}
#product-timestamp .product-item__img img{
  max-height: 282px;
}
.product-item__txt-wrap{
  background: linear-gradient(217deg, #113A6A 0%, #1C4E88 50%, #265993 90%);
  font-size: 18px;
  padding: 43px 39px;
  max-width: 708px;
  margin-top: -43px;
  /* max-height: 377px; */
  margin-left: -40px;
  z-index: 1;
  box-shadow: 0px 0px 20px rgba(115, 115, 115, 0.18);
  display: inline-flex;
  align-items: center;
  height: fit-content;
}
.product-item:nth-of-type(even){
  flex-direction: row-reverse;
}
.product-item:nth-of-type(even) .product-item__txt-wrap{
  margin-left: 0;
  margin-right: -40px;
  background: linear-gradient(124deg, #113A6A 0%, #1C4E88 50%, #265993 90%);
}
.product-item:nth-of-type(even) .product-item__img::after{
  background: linear-gradient(to right, #113A6A 0%, #1C4E88 40%, #265993 80%);
}

section .product-item__txt p{
  color: #fff;
  font-size: 18px;
}
.product-item__txt h4{
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 12px;
  color: #fff;
}
.product-item-use{
  padding-top: 22px;
  color: #fff;
}
.product-item-use__ttl{
  margin-bottom: 5px;
  font-weight: 700;
  position: relative;
  font-size: 18px;
}
.product-item-use__ttl::after{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  left: 82px; /* テキストの右隣から開始 */
  width: calc(100% - 82px); /* 必要に応じて調整 */
  height: 1px;
  background-color: #fff;
}
.product-more-link__wrap{
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
  justify-content: end;
  flex-wrap: wrap;
}
.product-item-flex .product-more-link__wrap{
  justify-content: flex-start;
}
.product-more-link{
  border-bottom: 1px solid #fff;
}
.product-more-link a{
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-align: right;
  display: block;
  position: relative;
  line-height: 1;
  padding-bottom: 2px;
  padding-right: 22px;
}
.product-more-link a::after{
  content: "";
  background-image: url(../img/more-icon.svg);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: .3s;
}
.product-more-link:hover a::after{
  transform: translateY(-50%)translateX(4px);
}

@media screen and (max-width:920px) {
  #product-ic,
  #product-paper,
  #product-timestamp{
    margin-top: -50px;
    padding-top: 50px;
  }
  .product-list__inner{
    padding: 50px 20px;
  }
  .product-list h3{
    font-size: 22px;
  }
  .product-list h3{
    padding-bottom: 30px;
  }
  .product-item,
  .product-item:nth-of-type(even){
    flex-direction: column;
  }
  .product-item-flex{
    flex-direction: column;
  }
  .product-item-flex .product-item{
    margin-bottom: 40px;
  }
  .product-item__txt-wrap{
    margin-left: 0;
    margin-top: 0;
    padding: 24px 20px;
  }
  .product-item:nth-of-type(even) .product-item__txt-wrap{
    margin-right: 0;
    padding: 24px 20px;
  }
  .product-item__txt h4{
    font-size: 18px;
  }
  section .product-item__txt p{
    font-size: 16px;
  }
  .product-item{
    margin-bottom: 40px;
  }
  .product-item__img{
    width: 100%;
    min-height: auto;
    min-width: auto;
  }
  .product-item:nth-of-type(even) .product-item__img::after,
  .product-item__img::after{
    bottom: auto;
  }
  .product-item__img img{
    /* width: 30%; */
    padding: 16px 0;
  }
  #product-ic .product-item__img img{
    max-height: none;
    max-width: 50%;
  }

  #product-paper>.product-item:first-of-type .product-item__img img,
  #product-paper>.product-item:nth-of-type(2) .product-item__img img{
    max-height: none;
    max-width: 50%;
  }
  #product-timestamp .product-item__img img{
    max-height: none;
    max-width: 50%;
  }
  .product-item__txt-wrap{
    max-height: 100%;
    max-width: 100%;
  }
  .product-item-flex .product-more-link__wrap{
    justify-content: end;
  }
  .product-more-link__wrap{
    margin-top: 20px;
  }
}

/* -----------
オプション リンク
--------------*/
.option-link{
  background-color: #F2F6FA;
  text-align: center;
}
.option-link-inner{
  padding: 60px 0;
  max-width: 1200px;
  margin: auto;
}
.option-link h3{
  color: #1C4E88;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 30px;
}
.option-btn{
  border-radius: 100vh;
  width: 380px;
  margin: auto;
}
.option-btn a{
  display: block;
  padding: 22px 0;
  width: 100%;
  position: relative;
  line-height: 1.5;
  font-size: 16px;
}
.option-btn a::after{
  content: "";
  background-image: url(../img/arrow-white.svg);
  position: absolute;
  width: 12px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}
.grad-btn{
  background: linear-gradient(90deg, #265993 0%, #1C4E88 40%, #113A6A 80%);
}
@media screen and (max-width:768px) {
  .option-link-inner{
    padding: 50px 20px;
  }
  .option-link h3{
    font-size: 22px;
    padding-bottom: 20px;
  }
  .option-link{
    padding: 0 20px;
  }
  .option-btn{
    width: 100%;
  }
}

/* ---------
販売終了モデル
------------*/
.eos{
  background-color: #F3F3F3;
  padding: 80px 20px;
}
.eos-inner{
  max-width: 1200px;
  margin: auto;
}
.eos-ttl-wrap{
  cursor: pointer;
  display: inline-block;
}
.eos-ttl{
  font-size: 32px;
  font-weight: 700;
  color: #1C4E88;
  position: relative;
  display: inline-block;
  padding-right: 30px;
}
.eos-ttl::after{
  content: "";
  background-image: url(../img/arrow-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 44px;
  height: 22px;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  transition: .1s;
}
.eos-ttl-wrap.open .eos-ttl::after{
  transform: translateY(-50%)rotate(180deg);
}
.eos-table{
  margin-top: 24px;
  border-collapse: separate;
  border-spacing: 3px;
  font-size: 16px;
  display: none;
}
.eos-table.open{
  display: table;
  width: 100%;
}
.eos-table caption{
  text-align: left;
  color: #1C4E88;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}
.eos-table caption::before{
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 5px;
  height: 80%;
  background: #1C4E88;
}
.eos-table thead{
  background: linear-gradient(90deg, #265993 0%, #1C4E88 40%, #113A6A 80%);
  color: #fff;
}
.eos-table thead th{
  padding: 19px 0;
}
.eos-table thead th:first-of-type{
  width: 17%;
}
.eos-table thead th:nth-of-type(2){
  width: 27%;
}
.eos-table thead th:nth-of-type(3){
  width: 13%;
}
.eos-table thead th:nth-of-type(4){
  width: 14%;
}
.eos-table tbody td{
  padding: 14px 22px;
  background-color: #fff;
}
.eos-table tbody td:nth-of-type(3),
.eos-table tbody td:nth-of-type(4),
.eos-table__secondary tbody td:nth-of-type(2){
  text-align: center;
}

.eos-table__secondary{
  margin-top: 50px;
}
.eos-table__secondary thead th:first-of-type{
  width: 60%;
}
.eos-table__secondary thead th:nth-of-type(2){
  width: 20%;
}
.eos-table__secondary thead th:nth-of-type(3){
  width: 20%;
}

.eos-close{
  text-align: right;
  margin-top: 20px;
  display: none;
}
.eos-close.open{
  display: block;
}
.eos-close p{
  font-size: 16px;
  text-align: right;
  padding-left: 23px;
  color: #1C4E88;
  display: inline-block;
  position: relative;
  font-weight: 600;
  cursor: pointer;
}
.eos-close p::before{
  content: "";
  background-image: url(../img/arrow-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 12px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%)rotate(180deg);
}

@media screen and (max-width:768px) {
 .eos{
    padding: 50px 20px;
  }
  .eos-ttl{
    font-size: 22px;
  }
  .eos-table{
    margin-top: 18px;
    display: none;
    overflow-x: auto;
    width: 100%;
  }
  .eos-table th,
  .eos-table td{
    white-space: nowrap;
  }
  .eos-table thead th,
  .eos-table tbody td{
    padding: 12px;
  }
}


/* ----------
導入事例
-------------*/
.case{
  padding: 0 20px;
  background-image: url(../img/case-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -80px;
  padding-top: 80px;
}
.case-inner{
  padding: 80px 0;
  max-width: 1040px;
  margin: auto;
}
.case .section-ttl{
  text-align: left;
  margin-bottom: 40px;
}
.case-list{
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  justify-content: space-between;
}
.case-item{
  max-width: 500px;
  border: 1px solid #1C4E88;
  box-shadow: 0px 0px 20px rgba(115, 115, 115, 0.18);
  background-color: #fff;
  width: 48%;
  position: relative;
  transition: .3s;
}
.case-item a{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
.case-item:hover{
  box-shadow: 0px 0px 20px rgba(115, 115, 115, 0.50);
}
.case-item__txt{
  position: relative;
  padding: 48px 22px;
  text-align: right;
}
.case-item__txt p{
  padding-bottom: 14px;
  font-size: 16px;
  text-align: left;
}
.case-item__ttl{
  font-size: 20px;
  font-weight: 700;
  padding: 11px 0;
  background: linear-gradient(90deg, #265993 0%, #1C4E88 40%, #113A6A 80%);
  color: #fff;
  display: inline-block;
  width: 80%;
  text-align: center;
  position: absolute;
  top: -20px;
  line-height: 1.5;
  left: 0;
}
.case-item-link{
  text-align: right;
  cursor: pointer;
}
.case-item-link {
  display: inline-block;
  position: relative;
  padding: 5px 24px;
  border-radius: 30px;
  background: white; /* ←親の背景 */
  z-index: 1;
}
.case-item-link::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 30px;
  padding: 1px; /* ボーダー幅に応じて調整 */
  background: linear-gradient(to right, #265993 0%, #1C4E88 40%, #113A6A 80%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}
.case-item-link img{
  transition: .3s;
}
.case-item:hover .case-item-link img{
  transform: translateX(3px);
}
@media screen and (max-width:768px) {
  .case{
    margin-top: -50px;
    padding-top: 50px;
  }
  .case-inner{
    padding: 50px 20px;
  }
  .case .section-ttl{
    margin-bottom: 20px;
  }
  .case-list{
    flex-direction: column;
    gap: 20px 0;
  }
  .case-item{
    width: 100%;
    max-width: 100%;
  }
  .case-item__ttl{
    font-size: 18px;
  }
  .case-item__txt{
    padding: 42px 20px 20px;
  }
}

/* ----------
お問い合わせ
-------------*/
.contact{
  background: linear-gradient(90deg, #265993 0%, #1C4E88 40%, #113A6A 80%);
  position: relative;
}
.contact-wrap{
  background-image: url(../img/white-dot-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 77px 0 40px;
}
.contact-ttl{

}
.contact-ttl span{
  display: block;
  text-align: center;
}
.contact-ttl .en{
  color: #1D5799;
  font-family: "Open Sans", sans-serif;
  font-size: 80px;
  font-weight: 700;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  line-height: 1.5;
}
.contact-ttl .jp{
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}
.contact-description{
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding-top: 20px;
}
.btn-wrap{
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 30px;
  justify-content: center;
}

@media screen and (max-width:768px) {
  .btn-wrap{
    flex-direction: column;
  }
  .contact-ttl .jp{
    font-size: 26px;
  }
  .contact-ttl .en{
    font-size: 70px;
  }
  .btn-wrap{
    gap: 20px;
  }
}

/* -----------
販売パートナー
--------------*/
.sales-partner{
  padding: 0 20px;
  margin-top: -80px;
  padding-top: 80px;
  background-image: url(../img/sales-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sales-inner{
  padding: 80px 0;
  max-width: 1200px;
  margin: auto;
}
.sales-item p{
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
}

@media screen and (max-width:768px) {
  .sales-partner{
    margin-top: -50px;
    padding-top: 50px;
  }
  .sales-inner{
    padding: 50px 20px;
  }
}

/* -----------
FAQ
--------------*/
.faq{
  margin-top: -80px;
  padding-top: 80px;
}
.faq-wrap{
  background-color: #F2F6FA;
  padding: 0 20px;
}
.faq-inner{
  padding: 80px 0;
  max-width: 1120px;
  margin: auto;
}
.faq .section-ttl{
  margin-bottom: 40px;
}
.faq-item{
  background-color: #fff;
  padding: 40px 46px;
  box-shadow: 0px 0px 20px rgba(19, 84, 159, 0.04);
}
.faq-item:not(:last-of-type){
  margin-bottom: 25px;
}
.faq-item span{
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  display: inline-block;
}
.faq-item dt,.faq-item dd{
  display: flex;
  position: relative;
  padding-left: 29px;
  font-weight: 500;
}
.faq-item dt div,.faq-item dd div{
  max-width: 850px;
  width: 90%;
  box-sizing: content-box;
  font-size: 16px;
  font-weight: 500;
}
.faq-item dt{
  position: relative;
  cursor: pointer;
}
.faq-item dd{
  display: none;
  transition: .3s;
}
.faq-item dd.open{
  display: block;
}
.faq-item dd p:not(:first-of-type){
  padding-top: 10px;
}
.faq-item dd a{
  text-decoration: underline;
  cursor: pointer;
  padding-left: 26px;
  color: #1C4E88;
  position: relative;
}
.faq-item dd a::before{
  content: "";
  background-image: url(../img/faq-arrow.svg);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-item dd a:hover{
  opacity: 0.7;
}
.faq-item dt::before,
.faq-item dt::after{
  content: "";
  background-color: #1C4E88;
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.faq-item dt::before{
  width: 4px;
  height: 20px;
  right: 8px;
}
.faq-item dt::after{
  width: 20px;
  height: 4px;
  right: 0;
}
/* 開いてるとき：縦棒を非表示（→ ー に） */
.faq-item dt.open::before {
  transform: scaleY(0);
}
.faq-item span{
  position: absolute;
  left: 0;
  top: 0;
}
.faq-item dt span{
  color: #1C4E88;
}
.faq-item dd span{
  color: #DE6E4B;
}
.faq-item dd{
  margin-top: 33px;
}

@media screen and (max-width:768px) {
  .faq{
    margin-top: -50px;
    padding-top: 50px;
  }
  .faq-inner{
     padding: 50px 0;
  }
  .faq-item{
    padding: 16px;
  }
  .faq-item span{
    top: 0;
  }
  .faq-item dd{
    margin-top: 14px;
  }
  .faq-item dt::after{
    width: 18px;
  }
  .faq-item dt::before{
    height: 18px;
    right: 7px
  }
  .faq-item:not(:last-of-type){
    margin-bottom: 18px;
  }
}


/* ----------
関連商品
------------*/
.product-banner{
  padding: 80px 20px;
}
.product-banner .section-ttl{
  margin-bottom: 40px;
}
.product-banner-item-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 680px;
  margin: auto;
}

@media screen and (max-width:768px) {
  .product-banner-item-wrap{
    max-width: 100%;
    flex-direction: column;
    gap: 20px;
  }
  .product-banner-item-wrap>div{
    max-width: 360px;
  }
  .product-banner{
    padding: 50px 20px;
  }
  .product-banner .section-ttl{
    margin-bottom: 20px;
  }
}


