
*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.catalog_item{
  display: none!important;
}

@font-face {
  font-family:'GenJyuuGothicL';
  src: url('../font/GenJyuuGothicL-Bold.woff') format('woff2'),
  url('../font/GenJyuuGothicL-Bold.woff') format('woff'),
  url('../font/GenJyuuGothicL-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family:'GenJyuuGothicL'; 
  src:url('../font/GenJyuuGothicL-Normal.woff2') format('woff2'),
  url('../font/GenJyuuGothicL-Normal.woff') format('woff'),
  url('../font/GenJyuuGothicL-Normal.ttf') format('truetype');
  font-weight: normal; 
  font-style: normal;
}

@font-face {
  font-family:'Splash';
  src: url('../font/Splash-Regular.woff2') format('woff2'),
  url('../font/Splash-Regular.woff') format('woff'),
  url('../font/Splash-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


*::before,
*::after{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  font-family:'GenJyuuGothicL' , sans-serif;
}


html {
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

/* #wpadminbar{
  top:auto;
  bottom:0;
} */

body{
  color: #000000;
  font-size: 16px;
  font-family:'GenJyuuGothicL' , sans-serif;
  font-weight: normal; 
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

input,
textarea,
select{
  font-family:'GenJyuuGothicL' , sans-serif;
  font-weight: normal;
}

img{
  display: block;
  object-position: center;
}

.thumb>img{
  width: 100%;
  height:100%;
  object-fit: cover;
}

#body_wrap{
  overflow: hidden;
  position: relative;
}

#body_wrap::before{
  content:'';
  width:100%;
  height:100%;
  background: linear-gradient(to bottom , #f9fcfe 0%, #dbedf9 100%);
  position: absolute;
  z-index: -10;
  left:0;
  bottom:0;
}

a{
  color: #000000;
}

.fax a{
  pointer-events: none;
  text-decoration: none;
}

@media (any-hover:hover){
  a[href^="tel:"] {
    pointer-events: none;
  }
}


.common_blur{
  filter: blur(16px);
  /* transition-duration: 0.4s; */
  transition: filter 0.4s;
}

main.common_blur{
  filter: blur(0);
}

footer.common_blur{
  filter: blur(0);
}



/*
------------------------------------
アニメーション関係
------------------------------------
*/

.common_hover_opa{
  /* transition-duration: 0.4s; */
  transition: opacity 0.4s;
}


@media (any-hover:hover){
  .common_hover_opa:hover{
    opacity: 0.6;
  }
  
}

.common_hover_border{
  position: relative;
}

.common_hover_border::after{
  content:'';
  width:0;
  height:1px;
  position: absolute;
  bottom:0;
  left:0;
  transition-duration: 0.3s;
  background-color: #0f31a7;
}

@media (any-hover:hover){
  .common_hover_border:hover::after{
    width:100%;
  }
  
}

/*
------------------------------------
共通パーツ
------------------------------------
*/

.container{
  max-width: 1200px;
  margin:0 auto;
  padding:0 25px;
}


.common_back_title_frame{
  position: relative;
} 

.common_back_title_frame .front_title{
  position: relative;
  z-index: 3;
}

.common_back_title{
  font-family: "Splash";
  font-weight: normal;
  font-size: 114px;
  line-height: 1;
  /* color: #80c1e4;
  opacity: 0.5; */
  color:rgba(128,193,228,0.5);
  position: absolute;
  z-index: 2;
  white-space: nowrap;
  top: -48px;
  left: 48px;
}


/*青色のボタン*/
.common_blue_button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 52px;
  border-radius: 26px;
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
  color: #fff;
  background-color: #0F31A7;
  border:2px solid #0F31A7;
  transition-duration: 0.4s;
  margin:0 auto;
}

@media(any-hover:hover){
  .common_blue_button:hover{
    color: #0F31A7;
    background-color: #fff;
  }
}

/*マウスホバーで矢印が動くテキスト*/
.common_angle_move_link{
  padding-left: 20px;
  position: relative;
}

.common_angle_move_link::before,
.common_angle_move_link::after{
  content:'';
  width:8px;
  height:11px;
  background-image: url('../img/common/angle_right_blue.svg');
  /* transition-duration: 0.3s; */
  transition: opacity 0.3s,transform 0.3s;
  position: absolute;
  left:0;
  top: 50%;
  /* transform: translateY(-50%); */
  transform:translate3d(0, -50%, 0);
  will-change: transform , opacity;
}

.common_angle_move_link::before{
  opacity: 0;
  /* left:-10px; */
  transform:translate3d(-10px, -50%, 0);
}

@media(any-hover:hover){
  .common_angle_move_link.angle_move_trigger:hover::before,
  .angle_move_trigger:hover .common_angle_move_link::before{
    opacity: 1;
    /* left:0; */
    transform:translate3d(0, -50%, 0);
  }
  .common_angle_move_link.angle_move_trigger:hover::after,
  .angle_move_trigger:hover .common_angle_move_link::after{
    opacity: 0;
    /* left:10px; */
    transform:translate3d(10px, -50%, 0);
  }
}


/*ニュース一覧*/
.common_news_list{
  
}

.common_news_list .news_item{
  border-bottom:1px solid #80C1E4;
}
.common_news_list .news_item:first-child{
  border-top:1px solid #80C1E4;
}

.common_news_list .news_block{
  padding:10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition-duration: 0.4s;
  min-height: 140px;
}

@media(any-hover:hover){
  .common_news_list .news_block:hover{
    opacity: 0.6;
  }
}

.common_news_list .news_block .news_info{
  display: flex;
  align-items: center;
}

.common_news_list .news_block .news_date{
  flex-shrink: 0;
  width:95px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  color: #0f31a7;
}

.common_news_list .news_block .news_cat_area{
  flex-shrink: 0;
  width:120px;
  padding-right: 8px;
}

.common_news_list .news_block .news_cat{
  width: fit-content;
  padding:5px 8px;
  font-size: 13px;
  line-height: 1.3;
  color: #fff;
}

.news_cat.news_info{
  background-color: #80c1e4;
}
.news_cat.news_company{
  background-color: #0F31A7;
}
.news_cat.news_event{
  background-color: #FFCB3B;
}
.news_cat.news_products{
  background-color: #CC0101;
}
.news_cat.news_faq{
  background-color: #00B9AA;
}
.news_cat.news_shop{
  background-color: #FF8900;
}
.news_cat.news_figure{
  background-color: #8E8E8E;
}

.common_news_list .news_block .news_title{
  line-height: 1.6;
}

.common_news_list .news_block .thumb{
  flex-shrink: 0;
  /* width:175px;
  margin-left: 56px; */
  margin-left: 7%;
  width:21.6%;
  aspect-ratio: 1 / 0.685;
}


/*ページネーション*/
.common_pagenation{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 50px;
  gap:10px;
}

.common_pagenation span.current{/*現在のページボタン*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border:1px solid #0F31A7;
  background-color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  color: #0f31a7;
}

.common_pagenation a.page-numbers{/*指定のページ移動ボタン*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border:1px solid #0F31A7;
  background-color: #0f31a7;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  transition-duration: 0.4s;
}

.common_pagenation .dots{
  color:#0F31A7;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}

@media(any-hover:hover){
  .common_pagenation a.page-numbers:hover{
    color: #0f31a7;
    background-color: #fff;
  }
}

/*
------------------------------------
ヘッダー
------------------------------------
*/

header{
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  z-index: 20;
  background-color: #fff;
}

header .header_inner{
  /* padding-left: 56px; */
  padding-left:min(calc(56 / 1366 * 100vw) , calc(56 / 1366 * 1366px));
}

header .header_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
} 

header .header_logo{
  display: block;
  width:155px;
}

header .header_logo img{
  width: 100%;
}

header .header_right{
  display: flex;
  align-items: center;
}

header .sub_menu{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .sub_menu .slash{
  font-size: 14px;
  line-height: 1;
  color: #0f31a7;
  margin:0 12px;
}

header .sub_menu a{
  font-weight: normal;
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  color: #0f31a7;
}

header .parent_menu{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 6px;
}

header .parent_menu .parent_item{
  /* margin-left: 40px; */
  margin-left: min(calc(40 / 1366 * 100vw) , calc(40 / 1366 * 1366px));
  
}

header .parent_menu .parent_link{
  display: inline-block;
  font-weight: bold;
  /* font-size: 17px; */
  font-size: clamp(15px , calc(17 / 1366 * 100vw) , calc(17 / 1366 * 1366px));
  line-height: 1.3;
  color: #0f31a7;
}

header .button_list{
  display: flex;
  /* margin-left: 52px; */
  margin-left: min(calc(52 / 1366 * 100vw) , calc(52 / 1366 * 1366px));
}

header .button_list .button{
  width: 145px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.4s;
  font-weight: bold;
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

header .button_list .button_contact{
  background-color: #0f31a7;
  border: 2px solid #0f31a7;
}

header .button_list .button_catalog{
  background-color: #80C1E4;
  border: 2px solid #80C1E4;
}

@media(any-hover:hover){
  header .button_list .button_contact:hover{
    color:#0f31a7;
    background-color: #fff;
  }
  header .button_list .button_catalog:hover{
    color:#80C1E4;
    background-color: #fff;
  }
}

/*
------------------------------------
ページ下部のお問い合わせエリア
------------------------------------
*/

.common_contact_section{
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: rgba(255,255,255,0.75);
}

.common_contact_section .flex{
  display: flex;
  justify-content: center;
}

.common_contact_section .box{
  display: block;
  width: 365px;
  min-height: 202px;
  background-color: rgba(255,255,255,0.75);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  transition-duration: 0.4s;
  margin:0 40px;
  padding-top: 48px;
  padding-bottom: 16px;
  padding-left: 12px;
  padding-right: 12px;
}

@media(any-hover:hover){
  .common_contact_section .box:hover{
    filter: none;
    transform: translateY(2px);
  }
}


.common_contact_section .box .back_title_frame{
  position: relative;
}

.common_contact_section .box .front_title{
  position: relative;
  z-index: 3;
  font-weight: bold;
  font-size: 24px;
  line-height: normal;
  text-align: center;
  color: #0f31a7;
}

.common_contact_section .box .back_title{
  font-family: "Splash";
  font-weight: normal;
  font-size: 68px;
  line-height: 1;
  /* color: #80c1e4;
  opacity: 0.5; */
  color:rgba(128,193,228,0.5);
  position: absolute;
  z-index: 2;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.common_contact_section .box .box_text{
  margin-top: 12px;
  font-size: 15px;
  line-height: 2;
  text-align: center;
}

.common_contact_section .box .box_angle{
  margin:12px auto 0;
  width:8px;
  height:11px;
  background-image: url('../img/common/angle_right_blue.svg');
}


/*
------------------------------------
フッター
------------------------------------
*/

footer{
  position: relative;
}

footer::before{
  content:'';
  width:1366px;
  min-width: 100vw;
  height:1161px;
  background-image: url('../img/common/page_bottom_bg.png');
  background-position: top;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -8;
}

footer .footer_area01{
  padding-top: 50px;
  padding-bottom: 24px;
  background-color: rgba(95,177,221,0.75);

}

footer .footer_inner{
  max-width: 1200px;
  padding: 0 25px;
  margin:0 auto;
}

footer .footer_area01_flex{
  display: flex;
  align-items: flex-start;
}

footer .footer_area01_left{
  padding-left: 7.7%;
  margin-right: 16.4%;
}

footer .footer_logo{
  display: block;
  width:245px;
}

footer .footer_logo img{
  width: 100%;
}

footer .company_name{
  margin-top: 20px;
  font-weight: bold;
  font-size: 23px;
  line-height: 1.2;
  color: #fff;
} 

footer .company_address{
  margin-top: 6px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
}

footer .button_list{
  margin-top: 24px;
}

footer .button_list .button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 52px;
  border-radius: 26px;
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
  text-align: center;
  transition-duration: 0.4s;
  border:2px solid #0f31a7;
}

footer .button_list .button + .button{
  margin-top: 8px;
}

footer .button_list .button_contact{
  background-color: #0f31a7;
  color: #fff;
}

footer .button_list .button_catalog{
  color: #0f31a7;
  background-color: #fff;
}

@media(any-hover:hover){
  footer .button_list .button_contact:hover{
    color: #0f31a7;
    background-color: #fff;
  }
  
  footer .button_list .button_catalog:hover{
    background-color: #0f31a7;
    color: #fff;
  }
}

footer .footer_area01_right{
  padding-top: 40px;
}

footer .footer_nav{
  display: flex;
  align-items: flex-start;
}

footer .parent_menu + .parent_menu{
  margin-left: 72px;
}

footer .parent_menu .parent_item + .parent_item{
  margin-top: 24px;
}

footer .parent_menu .parent_link{
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  transition-duration: 0.4s;
}

footer .child_menu{
  margin-top: 10px;
} 

footer .child_menu .child_item + .child_item{
  margin-top: 10px;
}

footer .child_menu .child_link{
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  footer .parent_menu .parent_link:hover,
  footer .parent_menu .child_link:hover{
    color:#0F31A7;
  }
}

footer .footer_area02{
  padding:20px 0;
  position: relative;
  /* background-color: rgba(58,164,221,0.95); */
}

footer .footer_area02::after{
  content:'';
  width:100%;
  height:100%;
  background-color: rgba(58,164,221,1);
  mix-blend-mode: multiply;
  position: absolute;
  top:0;
  left:0;
}

footer .footer_area02_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

footer .footer_area02_left{
  padding-left: 4.9%;
}

footer .sub_menu{
  display: flex;
  align-items: center;
}

footer .sub_menu li + li{
  margin-left: min(45px , calc(45 / 1200 * 100vw));

}
/* width: */
footer .sub_menu a{
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
}

footer .sub_menu a::after{
  background-color: #fff;
}

footer .footer_area02_right{
  padding-right: 7%;
}

footer .copy{

  font-size: clamp(12px , calc(14 / 1200 * 100vw) , 14px);
  line-height: 1.3;
  color: #fff;
}
/*
------------------------------------
トップページ
------------------------------------
*/
body.top_body{
  
}

body.top_body #body_wrap::before{
  height:calc(100% - calc(1080 / 1920 * 100vw));
  /* height:calc(100% - 768px); */
}

main.top_main{
  
}

.top_section{

}

.top_section .sec_title{
  font-weight: bold;
  font-size: 36px;
  line-height: 1.3;
  color: #0f31a7;

}

.top_mv_section{
  position: relative;
  height:calc(1080 / 1920 * 100vw);
  max-height:768px;
}

.top_mv_section .mv_slide_frame{
  height:100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.top_mv_section .mv_slide{
  position: absolute;
  left:0;
  top:0;
  z-index: 1;
  width: 100%;
  height:100%;
  transition-duration:2s;
  opacity: 0;
  pointer-events: none;
}

.top_mv_section .mv_slide.show{
  opacity: 1;
  pointer-events: auto;
}

.top_mv_section .mv_slide .pic{
  width: 100%;
  height:100%;
  object-fit: cover;
  object-position: bottom;
  scale:1.2;
}

.top_mv_section .mv_slide_frame .mv_slide.scale .pic{
  transition-duration: 20s;
  scale:1;
}

.top_mv_section .mv_text{
  position: absolute;
  left:min(calc(60 / 1366 * 1366px) , calc(60 / 1366 * 100vw));
  bottom:min(calc(70 / 1366 * 1366px) , calc(70 / 1366 * 100vw));
  z-index: 3;
}

@media screen and (min-width:1700px){
  .top_mv_section .mv_text{
    left:calc(50% - 770px);
  }
}/*@media screen and (min-width:1201px){*/

.top_mv_section .mv_text img{
  width:100%;
}

.top_mv_section .mv_text01{
  width:min(calc(627 / 1366 * 1366px) , calc(627 / 1366 * 100vw));
}
.top_mv_section .mv_text02{
  width:min(calc(726 / 1366 * 1366px) , calc(726 / 1366 * 100vw));
}
.top_mv_section .mv_text03{
  width:min(calc(550 / 1366 * 1366px) , calc(550 / 1366 * 100vw));
}
.top_mv_section .mv_text04{
  width:min(calc(715 / 1366 * 1366px) , calc(715 / 1366 * 100vw));
}

.top_service_section{
  padding-top: 102px;
  position: relative;
}

.top_service_section .service_block{
  padding-top: 88px;
  width:min(465px , calc(465 / 1366 * 100vw));
  /* min(calc(40 / 1366 * 100vw) , calc(40 / 1366 * 1366px)); */
  /* position: relative; */
}

.top_service_section .service_img{
  position: absolute;
  z-index: 5;
  width:min(calc(690 / 1366 * 100vw) , calc(690 / 1366 * 1540px));
  left:calc(680 / 1366 * 100vw);
  top:102px;
}

.top_service_section .service_text{
  margin-top: 48px;;
  line-height: 2;
}

.top_service_section .service_link_line{
  position: relative;
  width:300px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
  padding-bottom: 5px;
}

.top_service_section .service_link_line::after{
  content:'';
  width:492px;
  height:1px;
  background-color: #0F31A7;
  position: absolute;
  bottom:0;
  right:0;
  
}

.top_service_section .service_link{
  font-weight: bold;
  font-size: 18px;
  color: #0f31a7;
  line-height: 1;
}

.top_products_section{
  padding-top: 245px;
}


.top_products_section .p01{
  margin-top: 48px;
  line-height: 2;
}

.top_products_section .products_list{
  display: flex;
  justify-content: center;
  gap:40px 48px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.top_products_section .products_item{
  width:300px;
}

.top_products_section .products_card{
  display: block;
}

.top_products_section .products_card .thumb{
  aspect-ratio: 1 / 0.715;
  transition-duration: 0.4s;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.16);
}

@media(any-hover:hover){
  .top_products_section .products_card:hover .thumb{
    opacity: 0.6;
  }
}

.top_products_section .products_name{
  margin-top: 10px;
  font-weight: bold;
  font-size: 19px;
  line-height: 1;
  color: #0f31a7;
} 

.top_products_section .products_link{
  margin-top: 66px;
}

.top_company_section{
  padding-top: 96px;
  position: relative;
} 

.top_company_section .company_frame{
  display: flex;
  justify-content: flex-end;
}

.top_company_section .company_block{
  width:min(475px , calc(475 / 1366 * 100vw));
  padding-top: 92px;
}


.top_company_section .company_block .common_back_title {
  left:64px;
}

.top_company_section .p01{
  margin-top: 45px;
  line-height: 2;
}

.top_company_section .company_link_line{
  width:190px;
  margin-left: auto;
  margin-top: 34px;
  position: relative;
  padding-bottom: 5px;
}

.top_company_section .company_link_line::before{
  content:'';
  width:390px;
  height:1px;
  background-color: #0F31A7;
  position: absolute;
  bottom:0;
  left:0;
}

.top_company_section .company_link{
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  color: #0f31a7;
}

.top_company_section .company_img{
  position: absolute;
  top:96px;
  /* width:min(700px , calc(700 / 1366 * 100vw));
  right:min(570px , calc(570 / 1200 * 100vw)); */
  width:min(calc(700 / 1366 * 100vw) , calc(700 / 1366 * 1540px));
  /* right:min(calc(570 / 1366 * 100vw) , calc(570 / 1366 * 1540px)); */
  right:calc(665 / 1366 * 100vw);
}

.top_news_section{
  padding-top: 216px;
  padding-bottom: 84px;
}

.top_news_section .news_flex{
  display: flex;
  align-items: flex-start;
  margin-top: 54px;
}

.top_news_section .news_left{
  flex-shrink: 0;
  width:245px;
}

.top_news_section .cat_list{
  padding-left: 16px;
}

@media screen and (min-width:900px){
  .top_news_section .cat_list .js_news_cat_item{
    display: block!important;
  }
}

.top_news_section .cat_list li + li{
  margin-top: 20px;
}

.top_news_section .cat_list a{
  font-size: 17px;
  line-height: 1.3;
  color: #0f31a7;
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .top_news_section .cat_list a:hover{
    color:#80C1E4;
  }
}

.top_news_section .news_link_line{
  margin-top:28px;
  padding-bottom: 5px;
  position: relative;
  width: fit-content;
}

.top_news_section .news_link_line::after{
  content:'';
  width:295px;
  height:1px;
  background-color: #0F31A7;
  position: absolute;
  bottom:0;
  right:0;
}

.top_news_section .news_link{
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  color: #0f31a7;

}

.top_news_section .news_right{
  width: 100%;
  max-width: 850px;
}


/*
------------------------------------
下層共通
------------------------------------
*/

main.page_main{
  padding-top: 80px;
}



/*
------------------------------------
パンクズ
------------------------------------
*/

.common_bread_section{
  padding:10px 0 0;
}

.common_bread_section .bread_list{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap:10px 5px;
  line-height: 1.2;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: normal;
  color: #80C1E4;
}

.common_bread_section a{
  color: #80C1E4!important;
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .common_bread_section a:hover{
    opacity: 0.5;
  }
}

.common_bread_section .slash{
  color: #80C1E4;
}

.common_bread_section span,
.common_bread_section span.current-item{
  color:#000;
}

.common_bread_section a span,
.common_bread_section a span.current-item{
  color: #80C1E4; 
}

/*
------------------------------------
下層mv
------------------------------------
*/

.page_mv_section{
  padding-top: 50px;
  padding-bottom: 120px;
}

.page_mv_section .common_page_title{
  position: relative;
}

.page_mv_section .common_page_title .page_title{
  display: flex;
  font-weight: bold;
  font-size: 36px;
  line-height: 1.4;
  text-align: left;
  color: #0f31a7;
  position: relative;
  z-index: 2;
}

.page_mv_section .common_page_title .page_title::before{
  content:'';
  width: 11px;
  /* height: 100%; */
  background: #0f31a7;
  flex-shrink: 0;
  margin-right: 24px;
}

.page_mv_section .common_page_title .back_title{
  font-family: "Splash";
  font-weight: normal;
  font-size: 114px;
  line-height: 1;
  /* color: #80c1e4;
  opacity: 0.5; */
  color:rgba(128,193,228,0.5);
  position: absolute;
  z-index: 1;
  white-space: nowrap;
  top: -32px;
  left: 96px;
  pointer-events: none;
}

/*
------------------------------------
事業概要
------------------------------------
*/

body.business_body{
  
}

main.business_main{

}

.business_section{

}


.business_section01{
  position: relative;

}

.business_section01::before{
  content:'';
  width: 1450px;
  height: 1114px;
  background-image: url('../img/business/business_mv_bg.png');
  position: absolute;
  top: -340px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -3;
}

.business_section01 .sec_title{
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  color: #0f31a7;
  list-style: 1.5;
}

.business_section01 .p01{
  font-weight: bold;
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  margin-top: 40px;
}

.business_section01 .p01 + .p01{
  margin-top: 28px;
}

.business_strength_section{
  padding-top: 150px;
}

.business_strength_section .sec_title{
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  color: #0f31a7;
  line-height: 1.3;
}

.business_strength_section .strength_area{
  height:557px;
  padding-top: 150px;
  position: relative;
}

.business_strength_section .strength_area::before{
  content:'';
  width:100%;
  height:100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index:-2;
}

.business_strength_section .strength_area01::before{
  background-image: url('../img/business/strength_bg01.jpg');
}
.business_strength_section .strength_area02::before{
  background-image: url('../img/business/strength_bg02.jpg');
}


.business_strength_section .strength_block{
  width:420px;
  margin-left:105px;
  position: relative;
  color: #fff;
}

.business_strength_section .strength_block .strength_num{
  position: absolute;
  font-family: 'Splash';
  font-weight: normal;
  font-size: 200px;
  line-height: 1;
  /* color: #fff;
  opacity: 0.4; */
  color:rgba(255,255,255,0.4);
  position: absolute;
  z-index: 0;
  top: -82px;
  left: -100px;
}

.business_strength_section .strength_block .strenth_head{
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.business_strength_section .strength_block .strenth_text{
  font-size: 15px;
  line-height: 2;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.business_strength_section .strength_block .strenth_link_line{
  width:302px;
  margin:24px auto 0;
  padding-bottom: 5px;
  border-bottom:1px solid #FFFFFF;
  display: flex;
  justify-content: center;
}

.business_strength_section .strength_block .more_link{
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

.business_strength_section .strength_block .more_link::before,
.business_strength_section .strength_block .more_link::after{
  background-image: url('../img/common/angle_right_white.svg');
}

.business_alert_section{
  padding:100px 0;
}

.business_alert_section .alert_box{
  max-width: 1010px;
  margin:0 auto;
  border:2px solid #012DAB;
  background-color: #fff;
  padding:30px 72px;

}

.business_alert_section .alert_head{
  font-weight: bold;
  font-size: 21px;
  text-align: center;
  color: #012dab;
  line-height: 1;
}

.business_alert_section .alert_text{
  margin-top: 24px;
  line-height: 1.5;
  text-align: center;
}

/*
------------------------------------
事業概要
------------------------------------
*/

body.support_body{
  
}

main.support_main{

}

.support_section{

}


.support_section01{
  position: relative;

}

.support_section01 .support_msg{
  font-weight: bold;
  font-size: 20px;
  line-height: 1.75;
  text-align: center;
  color: #0f31a7;
}

.support_section01 .support_list{
  max-width: 1080px;
  margin:80px auto 0;
}

.support_section01 .support_block{
  display: flex;
  align-items: flex-start;
}

.support_section01 .support_block + .support_block{
  margin-top: 40px;
}

.support_section01 .support_block .support_img{
  width:460px;
  flex-shrink: 0;
  margin-right: 50px;
}

.support_section01 .support_block .support_img img{
  width: 100%;
}

.support_section01 .support_block .support_text_area{
  width: 100%;
  padding-top: 16px;
}

.support_section01 .support_block .support_head{
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
  padding-bottom: 4px;
  border-bottom: 1px solid #0F31A7;
}

.support_section01 .support_block .support_text{
  margin-top: 14px;
  font-size: 15px;
  line-height: 2.2;
}

.support_flow_section{
  padding-top: 146px;
  padding-bottom: 100px;
}

.support_flow_section .sec_title{
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  color: #012dab;
}

.support_flow_section .alert_text{
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
  color: #717171;
}

.support_flow_section .flow_list{
  display: flex;
  flex-wrap: wrap;
  gap:40px 41px;
  margin-top: 30px;
}

.support_flow_section .flow_block{
  width:355px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
  position: relative;
  padding:24px 22px;
  background-color: #fff;
  position: relative;
}

.support_flow_section .flow_block::after{
  content:'';
  width:0;
  height:0;
  border-style:solid;
  border-width: 8.5px 0 8.5px 15px;
  border-color: transparent transparent transparent #0F31A7;
  position: absolute;
  right:-28px;
  top:0;
  bottom:0;
  margin:auto;
}

.support_flow_section .flow_block:last-child::after{
  content:none;
}

.support_flow_section .flow_block:nth-child(4):before{
  content:'';
  width:0;
  height:0;
  border-style:solid;
  border-width: 8.5px 0 8.5px 15px;
  border-color: transparent transparent transparent #0F31A7;
  position: absolute;
  left:-28px;
  top:0;
  bottom:0;
  margin:auto;
}

.support_flow_section .flow_block .flow_num{
  width: 53px;
  height: 50px;
  background-color: #0F30A6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  position: absolute;
  top:0;
  left:0;
}

.support_flow_section .flow_block .flow_title{
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  line-height: 1.2;

}

.support_flow_section .flow_block .flow_icon{
  height:106px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.support_flow_section .flow_block .flow_icon01{
  height:66px;
}
.support_flow_section .flow_block .flow_icon02{
  height:69px;
}
.support_flow_section .flow_block .flow_icon03{
  height:66px;
}
.support_flow_section .flow_block .flow_icon04{
  height:72px;
}
.support_flow_section .flow_block .flow_icon05{
  height:72px;
}
.support_flow_section .flow_block .flow_icon06{
  height:72px;
}

.support_flow_section .flow_block .flow_text{
  font-size: 14px;
  line-height: 1.8;
}

.support_flow_section .flow_remark{
  margin-top: 80px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #0f31a7;
}

.support_flow_section .office_button{
  margin-top: 40px;
}

@media screen and (max-width:1200px){
  .support_flow_section .flow_list{
    justify-content: center;
    gap:40px 45px;
  }

  .support_flow_section .flow_block::after{
    right:-30px;
  }
  .support_flow_section .flow_block:nth-child(4):before{
    content:none;
  }

  .support_flow_section .flow_block:nth-child(3):before,
  .support_flow_section .flow_block:nth-child(5):before{
    content:'';
    width:0;
    height:0;
    border-style:solid;
    border-width: 8.5px 0 8.5px 15px;
    border-color: transparent transparent transparent #0F31A7;
    position: absolute;
    left:-30px;
    top:0;
    bottom:0;
    margin:auto;
  }
}


/*
------------------------------------
会社情報 共通
------------------------------------
*/
.common_company_link_section{
  padding-top: 100px;
  padding-bottom: 100px;
}

.common_company_link_section .link_list{
  max-width: 880px;
  margin:0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap:30px 0;
}

.common_company_link_section .link_card{
  width: 425px;
  height:180px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 42px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.16);
}


.common_company_link_section .link_card::before{
  content:'';
  width:100%;
  height:100%;
  /* background-color:rgba(0,0,0,0.5); */
  background-color:#000;
  opacity: 0.5;
  position: absolute;
  top:0;
  left:0;
  z-index:0;
  transition-duration: 0.4s;
  transition: opacity 0.4s;
  will-change:opacity;
}

.common_company_link_section .link_card .en_title{
  font-family: 'Splash';
  font-weight: normal;
  font-size: 50px;
  line-height: 1;
  /* color: #fff;
  opacity: 0.5; */
  color:rgba(255,255,255,0.5);
  position: absolute;
  left:10px;
  bottom:16px;
}


.common_company_link_section .link_card .ja_title{
  min-width: 120px;
  position: relative;
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.common_company_link_section .link_card .ja_title::before,
.common_company_link_section .link_card .ja_title::after{
  content:'';
  width:8px;
  height:11px;
  background-image: url('../img/common/angle_right_white.svg');
  /* transition-duration: 0.3s; */
  transition: opacity 0.3s, transform 0.3s;
  will-change: transform, opacity;
  position: absolute;
  left:0;
  right:0;
  margin:auto;
  bottom:-28px;

}

.common_company_link_section .link_card .ja_title::before{
  opacity: 0;
  transform: translateX(-10px);
}

@media(any-hover:hover){
  .common_company_link_section .link_card:hover::before{
    /* background-color:rgba(0,0,0,0.3) ; */
    opacity: 0.3;
  }
  .common_company_link_section .link_card:hover .ja_title::before{
    opacity: 1;
    transform: translateX(0);
  }
  .common_company_link_section .link_card:hover .ja_title::after{
    opacity: 0;
    transform: translateX(10px);
  }
}

.common_company_link_section .company_card{
  background-image: url('../img/company/card_company.jpg');
}
.common_company_link_section .vision_card{
  background-image: url('../img/company/card_vision.jpg');
}
.common_company_link_section .profile_card{
  background-image: url('../img/company/card_profile.jpg');
}
.common_company_link_section .office_card{
  background-image: url('../img/company/card_office.jpg');
}
.common_company_link_section .history_card{
  background-image: url('../img/company/card_history.jpg');
}

/*
------------------------------------
会社情報
------------------------------------
*/

body.company_body{
  
}

main.company_main{

}

.company_section{

}

main.company_main .common_company_link_section .company_card{
  display: none;
}


.company_greeting_section{
  position: relative;

}

.company_greeting_section .sec_title{
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  line-height: 1.5;
  color: #0f31a7;
}

.company_greeting_section .flex{
  display: flex;
  align-items: flex-start;
  margin-top: 56px;
}

.company_greeting_section .flex .left{
  width:100%;
}

.company_greeting_section .president_pic{
  width:100%;
}

.company_greeting_section .flex .right{
  width:520px;
  flex-shrink: 0;
  margin-left: 30px;
}

.company_greeting_section .president_head{
  font-weight: bold;
  font-size: 46px;
  line-height: 1.55;
  color: #0f31a7;
}

.company_greeting_section .president_text{
  margin-top: 24px;
  font-size: 15px;
  line-height: 2.2;
}

.company_greeting_section .president_sign{
  margin-top: 5px;
  text-align: right;
  font-weight: bold;
  font-size: 15px;
  line-height:1;
  color: #0f31a7;
}

.company_greeting_section .president_sign span{
  display: inline-block;
  font-size: 25px;
  margin-left: 15px;
}


/*
------------------------------------
経営理念
------------------------------------
*/

body.message_body{
  
}

main.message_main{

}

.message_section{

}

main.message_main .common_company_link_section .vision_card{
  display: none;
}

.message_vision_section{

}

.message_vision_section .vision_frame{
  padding:0 36px;
}

.message_vision_section .vision_title{
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  text-align: left;
  color: #0f31a7;
}

.message_vision_section .vision_catch{
  margin-top: 50px;
  font-weight: bold;
  font-size: 46px;
  line-height: 1.67;
  color: #0f31a7;
}

.message_vision_section .p01{
  margin-top: 24px;
  line-height: 1;
}

.message_vision_section .vision_card_list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap:20px 0;
  margin-top: 45px;
}

.message_vision_section .vision_card{
  width:49%;
  border:1px solid #0F31A7;
  background-color: #fff;
  padding:32px 7% 32px;
}

.message_vision_section .vision_card .vision_card_head{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
}

.message_vision_section .vision_card .vision_card_head::after{
  content:'';
  width:200px;
  height:1px;
  background-color: #0F31A7;
  margin-top: 16px;
}

.message_vision_section .vision_card .vision_card_text{
  font-size: 15px;
  line-height: 2.2;
  margin-top: 40px;
}

/*
------------------------------------
会社概要
------------------------------------
*/

body.profile_body{
  
}

main.profile_main{

}

.profile_section{

}

main.profile_main .common_company_link_section .profile_card{
  display: none;
}

.profile_section .profile_frame{
  max-width: 1000px;
  padding:0 25px;
  margin:0 auto;
}

.profile_section .profile_title{
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  text-align: left;
  color: #0f31a7;
}

.profile_section .table_frame{
  margin-top: 40px;
}

.profile_section table{
  width:100%;
  border-collapse: collapse;
  border-right:1px solid #80C1E4;
  border-top:1px solid #80C1E4;
}

.profile_section table tr{
  position: relative;

}


.profile_section th,
.profile_section td{
  /* border:1px solid #80C1E4; */
  position: relative;
}

.profile_section table tr th::after,
.profile_section table tr td::after{
  content:'';
  width:100%;
  border-bottom:1px solid #80C1E4;
  position: absolute;
  left:0;
  bottom:0;
  mix-blend-mode: multiply;
}


.profile_section th{
  width:26%;
  background-color: #80C1E4;
  font-weight: normal;
  font-size: 15px;
  line-height: 1;
  color: #fff;
  padding:20px 30px;
  text-align: left;
}

.profile_section td{
  width: 74%;
  padding:20px 30px;
  font-size: 15px;
  line-height: 1.5;
  
}

.profile_section td ul li{
  display: flex;
  align-items: flex-start;
}

.profile_section td ul li::before{
  content:'・';
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1.5;
}

.profile_section .access_area{
  padding-top: 86px;
}

.profile_section .access_area .access_head{
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  color: #0f31a7;
}

.profile_section .access_area .access_flex{
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
}

.profile_section .access_area .access_left{
  flex-shrink: 0;
  width:455px;
  margin-right: 53px;
}

.profile_section .access_area .access_left iframe{
  display: block;
  width:100%;
  height:300px;
}


.profile_section .access_area .access_right{
  width: 100%;
  max-width: 406px;
}

.profile_section .access_area .access_address{
  line-height: 1.9;
}

.profile_section .access_area .access_box{
  margin-top: 16px;
  padding:16px 20px;
  border:1px solid #80C1E4;
}

.profile_section .access_area .access_box_head{
  font-weight: bold;
  line-height: 1.5;
}

.profile_section .access_area .access_box_text{
  margin-top: 20px;
  line-height: 1.75;
}

/*
------------------------------------
沿革
------------------------------------
*/

body.history_body{
  
}

main.history_main{

}

main.history_main .common_company_link_section .history_card{
  display: none;
}

.history_section{
  padding-bottom: 20px;
}

.history_section .history_frame{
  /* max-width: 1000px; */
  width: fit-content;
  min-width: none;
  padding:0 25px;
  margin:0 auto;
}

.history_section .history_title{
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  text-align: left;
  color: #0f31a7;
}

.history_section .history_list{
  margin-top: 64px;
  position: relative;
}

.history_section .history_list::before{
  content:'';
  width:1px;
  height:100%;
  background-color: #0F31A7;
  position: absolute;
  top: 20px;
  left: 106px;
}

.history_section .history_line{
  display: flex;
  align-items: flex-start;
}

.history_section .history_line + .history_line{
  margin-top: 41px;
}

.history_section .history_line:last-child{
  height:0;
}

.history_section .history_year{
  flex-shrink: 0;
  min-width:100px;
  font-weight: bold;
  font-size: 34px;
  color: #80c1e4;
  line-height: 1;
  padding-right: 4px;
}

.history_section .history_year span{
  font-size: 18px;
  margin-top: 2px;
  margin-bottom: 4px;
}

.history_section .history_year p{
  display: flex;
  /* justify-content: flex-end; */
  align-items: flex-end;
  flex-direction: column;
  width:fit-content;
  
}

.history_section .history_radi{
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  padding-top:11px;
}

.history_section .history_radi span{
  width:13px;
  height:13px;
  border-radius: 50%;
  background-color: #0F31A7;
}

.history_section .history_right{
  padding-top: 1px;
}

.history_section .history_block{
  display: flex;
  align-items: flex-start;
}

.history_section .history_block + .history_block{
  margin-top: 12px;
}

.history_section .history_month{
  flex-shrink: 0;
  width:80px;
  text-align: right;
  margin-right: 36px;
  font-weight: bold;
  font-size: 18px;
  color: #0f31a7;
  line-height: 1.8;
}

.history_section .history_contents{
  font-size: 18px;
  line-height: 1.8;
} 

.history_section .history_contents ul li{
  display: flex;
  align-items: flex-start;
}

.history_section .history_contents ul li::before{
  content: "\2217";
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.8;
  flex-shrink: 0;
  margin-right: 4px;
}

/*
------------------------------------
営業所一覧
------------------------------------
*/

body.office_body{
  
}

main.office_main{

}

main.office_main .common_company_link_section .office_card{
  display: none;
}

.office_section{
  padding-bottom: 20px;
}

.office_section .office_frame{
  max-width: 1050px;
  padding:0 25px;
  margin:0 auto;
}

.office_section .office_title{
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  text-align: left;
  color: #0f31a7;
  position: relative;
  z-index: 1;
}

.office_section .map_image{
  max-width: 855px;
  margin:-40px auto 0;
}

.office_section .map_image img{
  width:100%;
}

.office_section .office_list{
  margin-top: 100px;
}

.office_section .office_list li{
  display: flex;
  align-items: center;
  padding:28px 0;
  border-bottom:1px solid #80C1E4;
}
.office_section .office_list li:first-child{
  border-top:1px solid #80C1E4;
}

.office_section .office_list .office_name_frame{
  width: 130px;
  padding:0 10px;
  flex-shrink: 0;
}

.office_section .office_list .office_name{
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 17px;
  color: #0f31a7;
  line-height: 1.3;
}

.office_section .office_list .office_google_map{
  display: block;
  width:fit-content;
  margin:10px auto 0;
  font-weight: normal;
  text-decoration: underline;
  font-size: 14px;
  line-height: 1.2;
  color: #0f31a7;
}

.office_section .office_list .office_address_frame{
  margin-left: 16px;
  flex-shrink: 0;
  width:220px;
}

.office_section .office_list .office_address{
  font-size: 14px;
  line-height: 1.78;
}

.office_section .office_list .office_contact_frame{
  margin-left: 16px;
  flex-shrink: 0;
  width:150px;
}

.office_section .office_list .office_contact{
  font-size: 14px;
  line-height: 1.78;
}

.office_section .office_list .office_area_frame{
  margin-left: 16px;
}

.office_section .office_list .office_area{
  font-size: 14px;
  line-height: 1.78;
  display: flex;
  align-items: flex-start;
}

.office_section .office_list .office_area .office_area_label{
  flex-shrink: 0;
  white-space: nowrap;
}

/*
------------------------------------
採用情報
------------------------------------
*/

body.recruit_body{
  
}

main.recruit_main{

}

.recruit_section01{
  padding-bottom: 100px;
}


.recruit_section01 .recruit_catch{
  font-weight: bold;
  font-size: 48px;
  line-height: 1.67;
  text-align: left;
  color: #0f31a7;
  padding-left: 44px;
}


.recruit_section01 .flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.recruit_section01 .flex .left{
  width:600px;
  flex-shrink: 0;
  margin-right: 24px;
  padding-left: 44px;
  padding-top: 72px;
  position: relative;
}

.recruit_section01 .flex .left::before{
  content:'';
  width: 658px;
  height: 342px;
  background-image: url('../img/recruit/recruit_logo.png');
  position: absolute;
  top:40px;
  left:-140px;
  z-index: 0;
}

.recruit_section01 .flex .left p{
  font-size: 18px;
  line-height: 1.67;
  position: relative;
  z-index: 1;
}

.recruit_section01 .flex .left p + p{
  margin-top: 32px;
}

.recruit_section01 .flex .right{
  width:447px;
  position: relative;
  z-index: 1;
}

.recruit_section01 .flex .right img{
  width:100%;
}

.recruit_section01 .recruit_gal_list{
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}

.recruit_section01 .recruit_gal_list li{
  width:32.5%;
}

.recruit_section01 .recruit_gal_list li img{
  width:100%;
}

.recruit_section01 .recruit_message{
  margin-top: 120px;
  font-weight: bold;
  font-size: 34px;
  line-height: 1.9;
  text-align: center;
  color: #0f31a7;
}

.recruit_section01 .recruit_border{
  width:1px;
  height:120px;
  margin:20px auto 24px;
  background-color:#0f31a7;
}

.recruit_section01 .recruit_button{
  width:400px;
  height:65px;
  font-size: 20px;
  border-radius: 40px;
}




/*
------------------------------------
お知らせ一覧
------------------------------------
*/
body.archive_news_body{
  
}


main.archive_news_main{

}

.archive_news_section01{
  padding-bottom: 100px;
}

.archive_news_section01 .flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.archive_news_section01 .flex .sidebar{
  flex-shrink: 0;
  padding-left: 10px;
  margin-right: 40px;
}

.archive_news_section01 .flex .archive_news_article{
  width: 100%;
  max-width: 850px;
}

.archive_news_section01 .sidebar .sidebar_head{
  width: fit-content;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  padding-bottom: 10px;
  color: #0f31a7;
  white-space: nowrap;
}

.archive_news_section01 .sidebar .sidebar_head::after{
  content: '';
  width: 295px;
  height: 1px;
  background-color: #0F31A7;
  position: absolute;
  bottom: 0;
  right: 0;
}

.archive_news_section01 .sidebar_menu{
  margin-top: 20px;
}

.archive_news_section01 .sidebar_menu li + li{
  margin-top: 16px;
}

.archive_news_section01 .sidebar_menu li a{
  font-weight: normal;
  font-size: 17px;
  line-height: 1.3;
  color: #0f31a7;
  transition-duration: 0.4s;
}

.archive_news_section01 .sidebar_menu.search_active li a{
  color:#ADADAD;
}

.archive_news_section01 .sidebar_menu.search_active li a.active{
  color: #0f31a7;
}

@media(any-hover:hover){
  .archive_news_section01 .sidebar_menu li a:hover{
    color:#80C1E4;
  }

  .archive_news_section01 .sidebar_menu.search_active li a.active:hover{
    color:#80C1E4;
  }
}


.archive_news_section01 .sidebar .sidebar_year_area{
  margin-top: 40px;
}
/*
------------------------------------
お知らせ詳細
------------------------------------
*/

body.single_news_body{
  
}


main.single_news_main{

}

.single_news_section01{
  padding-bottom: 100px;
}


.single_news_section01 .single_news_article{
  max-width: 1000px;
  margin:0 auto;
}

.single_news_section01 .news_info_flex{
  display: flex;
  align-items: center;
}

.single_news_section01 .news_info_flex .news_date{
  flex-shrink: 0;
  margin-right: 20px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  color: #0f31a7;
}

.single_news_section01 .news_info_flex .news_cat{
  width: fit-content;
  padding:5px 8px;
  font-size: 13px;
  line-height: 1.3;
  color: #fff;
}

.single_news_section01 .news_title{
  margin-top: 12px;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #1a1a1a;
  border-bottom:1px solid #80C1E4;
}

.single_news_section01 .news_thumb{
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.single_news_section01 .news_thumb img{
  width: 100%;
  max-width: 900px;
}

.single_news_section01 .archive_news_link{
  margin-top: 160px;
}

.single_news_section01 .common_single_frame{
  margin-top: 60px;
}


.common_single_frame .wp-block-image{
  margin-top: 32px;
}

.common_single_frame .wp-block-image img{
  max-width: 100%;
}

.common_single_frame h2{
  margin-top: 60px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}

.common_single_frame h2::before{
  content:'';
  width: 10px;
  height: 100%;
  border-radius: 4px 0 0 4px;
  position: absolute;
  left:0;
  top:0;
  background-color: #0F31A7;
}


.common_single_frame h3{
  margin-top: 60px;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.6;
  color: #0f31a7;
  padding:16px 24px;
  background-color: #fff;
}

.common_single_frame h4{
  margin-top: 60px;
  font-weight: bold;
  font-size: 21px;
  line-height: 1.8;
  padding:16px 24px;
  border:1px solid #80C1E4;
}


.common_single_frame h5{
  margin-top: 60px;
  font-weight: bold;
  font-size: 21px;
  line-height: 1.8;
  border-bottom:1px solid #0F31A7;
}

.common_single_frame h6{
  margin-top: 60px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.8;
  color: #0f31a7;
}

.common_single_frame p{
  margin-top: 30px;
  font-size: 15px;
  line-height: 2.2;
  color: #1a1a1a;
}

.common_single_frame p a{
  color:#0F31A7;
  text-decoration: underline;
}

@media(any-hover:hover){
  .common_single_frame p a:hover{
    text-decoration: none;
  }
}


.common_single_frame ul{
  margin-top: 40px;
  padding-left: 10px;
}

.common_single_frame ul li{
  font-size: 15px;
  line-height: 1.5;
  color: #1a1a1a;
  position: relative;
  padding-left: 12px;

}

.common_single_frame ul li::before{
  content:'';
  width:3px;
  height:3px;
  border-radius: 50%;
  background-color:#1a1a1a;
  position: absolute;
  left:0;
  top:9px;
}

.common_single_frame ul li + li{
  margin-top: 12px;
}

.common_single_frame ol{
  margin-top: 40px;
  padding-left: 10px;
}

.common_single_frame ol li{
  font-size: 15px;
  line-height: 1.5;
  color: #1a1a1a;
  position: relative;
  padding-left: 12px;
  counter-increment: cnt;
}

.common_single_frame ol li::before {
  content: counter(cnt)".";
  color: #1a1a1a;
  position: absolute;
  left:-8px;
  top:0;
}

.common_single_frame ol li + li{
  margin-top: 8px;
}

.common_single_frame .wp-block-table{
  margin-top: 60px;
}

.common_single_frame table{
  border-collapse: collapse;
  max-width: 100%;
  width: fit-content;
  margin:0 auto;
}

.common_single_frame .wp-block-table thead {
  border-bottom: none;
}

.common_single_frame table tr{
  
}

.common_single_frame table td,
.common_single_frame table th{
  border:1px solid #80C1E4;
}

.common_single_frame table th{
  padding:12px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.3;
  text-align: center;
  color: #1a1a1a;
}

.common_single_frame table td{
  padding:12px;
  font-size: 14px;
  line-height: 1.5;
  background-color: #ffff;
}


/*
------------------------------------
お問い合わせ
------------------------------------
*/

body.contact_body{
  
}

main.contact_main{

}

.contact_section01{
  padding-bottom: 100px;
}


.contact_section01 .p01{
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #0f31a7;

}

.contact_section01 .p02{
  line-height: 1.9;
  text-align: center;
  margin-top: 20px;
}

.contact_section01 .contact_text_box{
  max-width: 860px;
  margin: 32px auto 0;
  padding:30px 40px;
  background-color: #FFFFFF;
}

.contact_section01 .contact_text_block + .contact_text_block{
  margin-top: 30px;
}

.contact_section01 .contact_text_block .head_text{
  padding-bottom: 12px;
  border-bottom:1px solid #80C1E4;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.75;
}

.contact_section01 .contact_text_block .content_text{
  margin-top: 15px;
  font-size: 14px;
  line-height: 1,5;
  color: #707070;

}

.contact_section01 .other_contact_area{
  max-width: 860px;
  margin:96px auto 0;
  background-color: #fff;
  padding:50px 56px;
}

.contact_section01 .other_contact_area .other_contact_text01{
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}

.contact_section01 .other_contact_area .flex{
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.contact_section01 .other_contact_area .box{
  width: 360px;
  background: #fff;
  border: 1px solid #0f31a7;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding:36px 24px 24px;
}

.contact_section01 .other_contact_area .head_frame{
  position: relative;
}

.contact_section01 .other_contact_area .front_text{
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #0f31a7;
  position: relative;
  z-index: 1;
}

.contact_section01 .other_contact_area .back_text{
  font-family: 'Splash';
  font-weight: normal;
  font-size: 60px;
  line-height: 1;
  /* color: #80c1e4;
  opacity: 0.4; */
  color:rgba(128,193,228,0.4);
  white-space: nowrap;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.contact_section01 .other_contact_area .number{
  margin-top: 20px;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
}

.contact_section01 .other_contact_area .time{
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.contact_section01 .other_contact_area .remark{
  font-size: 12px;
  line-height: 2;
  text-align: center;
  color: #707070;

}

.common_form_block{
  max-width: 980px;
  margin:50px auto 0;
}

.common_form_block .form_white_bg{
  padding:50px 24px 0;
  margin-bottom: 50px;
}

.common_form_block .form_block_inner{
  max-width: 860px;
  margin:0 auto;
}

.common_form_block .form_line + .form_line{
  margin-top: 30px;
}

.common_form_block .form_line .form_label{
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.common_form_block .form_line .form_label.must::after{
  content:'※必須';
  font-weight: bold;
  font-size: 13px;
  line-height: 1;
  color: #0f31a7;
  margin-left: 8px;
}

.common_form_block .form_line .form_input_frame{
  margin-top: 12px;
}

.common_form_block .form_line input,
.common_form_block .form_line textarea,
.common_form_block .form_line select{
  border:none;
  background: none;
  border-radius: 0;
  display: block;
  width:100%;
  border:1px solid #80C1E4;
  background-color: #fff;
  color:#000;
  font-weight: normal;
}

.common_form_block .form_line input::placeholder,
.common_form_block .form_line textarea::placeholder{
  color:#ADADAD;
}

.common_form_block .form_line .form_input_frame input[type="text"],
.common_form_block .form_line .form_input_frame input[type="email"],
.common_form_block .form_line .form_input_frame input[type="number"],
.common_form_block .form_line .form_input_frame input[type="tel"],
.common_form_block .form_line .form_input_frame select{
  height:65px;
  padding:0 20px;
  font-size: 16px;
} 

.common_form_block .form_line textarea{
  height:300px;
  padding: 20px;
  font-size: 16px;
}

.common_form_block .form_line select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.common_form_block .form_line .select_frame{
  position: relative;
}

.common_form_block .form_line .select_frame::after{
  content:'';
  width:0;
  height:0;
  border-style:solid;
  border-width: 7px 5px 0 5px;
  border-color: #0F31A7 transparent transparent transparent;
  position: absolute;
  right:15px;
  top:0;
  bottom:0;
  margin: auto;
  pointer-events: none;
}

.common_form_block .agree_text01{
  font-weight: bold;
  text-align: center;
  line-height: 1;
}

.common_form_block .agree_flex{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
  position: relative;
}

.common_form_block .agree_flex input{
  display: block;
  width:18px;
  height:18px;
}
.common_form_block .agree_flex .agree_label{
  font-size: 16px;
  line-height: 1;
  margin-left: 10px;
}

.common_form_block .agree_flex .agree_label a{
  text-decoration: underline;
}

@media(any-hover:hover){
  .common_form_block .agree_flex .agree_label a:hover{
    text-decoration: none;
  }
}

.common_form_block .agree_flex .mwform-checkbox-field-text{
  display: none;
}

.common_form_block .submit_area{
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap:20px 0;
}

.common_form_block .submit_area .return,
.common_form_block .submit_area .submit{
  border:none;
  background: none;
  border-radius: 0;
  cursor: pointer;
  transition-duration: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  width:250px;
  height:52px;
  border-radius: 26px;
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
  color: #fff;
  margin:0 20px;
}

.common_form_block .submit_area .return{
  border:2px solid #707070;
  background-color: #707070;
}
.common_form_block .submit_area .submit{
  border:2px solid #0F31A7;
  background-color: #0F31A7;
}

@media(any-hover:hover){
  .common_form_block .submit_area .return:hover{
    color:#707070;
    background-color: #fff;
  }
  .common_form_block .submit_area .submit:hover{
    color:#0F31A7;
    background-color: #fff;
  }
}

/*入力画面*/
.common_form_block.form_input_block{
  margin-top: 10px;
}

/*確認画面*/
body.contact_confirm_body footer{
  overflow: hidden;
}

.common_form_block.form_confirm_block .form_line .form_label{
  padding-bottom: 10px;
  border-bottom:1px solid #80C1E4;
}

.common_form_block.form_confirm_block .form_line .form_input_frame{
  padding-left: 20px;
  min-height: 15px;
}

.common_form_block.form_confirm_block .form_white_bg{
  padding-bottom: 64px;
  background-color: #fff;
}

.common_form_block.form_confirm_block .agree_area{
  display: none;
}

.common_form_block.form_confirm_block .form_line .select_frame::after{
  content:none;
}

/*完了画面*/
body.contact_thanks_body footer{
  overflow: hidden;
}

.contact_section01 .contact_thanks_text{
  font-weight: bold;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  color: #0f31a7;
}

.contact_section01 .top_link{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 52px;
  border-radius: 26px;
  border:2px solid #0F31A7;
  background-color: #fff;
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
  color: #0f31a7;
  transition-duration: 0.4s;
  margin:60px auto 0;
}

@media(any-hover:hover){
  .contact_section01 .top_link:hover{
    background-color:#0f31a7;
    color:#fff;
  }
}


/*
------------------------------------
カタログダウンロード
------------------------------------
*/

body.download_body{
  
}

body.download_body footer{
  overflow: hidden;
}

main.download_main{

}

.download_section01{
  padding-bottom: 100px;
}


.download_section01 .p01{
  font-weight: bold;
  font-size: 20px;
  line-height: 1.75;
  text-align: center;
  color: #0f31a7;
}

.download_section01 .finish_text01{
  font-weight: bold;
  font-size: 20px;
  line-height: 1.75;
  text-align: center;
  color: #0f31a7;
}

.download_section01 .download_list{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap:40px;
  margin-top: 70px;
}

.download_section01 .download_link{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 305px;
  height: 77px;
  background-color: #0F31A7;
  border:2px solid #0F31A7;
  padding-left: 20px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  transition-duration: 0.4s;
} 

.download_section01 .download_link span{
  position: relative;
}

.download_section01 .download_link span::before{
  content:'';
  width:22px;
  height:21px;
  background-image: url('../img/common/icon_download_white.svg');
  position: absolute;
  top: 50%;
  left: -32px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .download_section01 .download_link:hover{
    background-color: #fff;
    color: #0F31A7;
  }

  .download_section01 .download_link:hover span::before{
    background-image: url('../img/common/icon_download_blue.svg');
  }
}

.download_section01 .top_link{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 52px;
  border-radius: 26px;
  border:2px solid #0F31A7;
  background-color: #fff;
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
  color: #0f31a7;
  transition-duration: 0.4s;
  margin:70px auto 0;
}

@media(any-hover:hover){
  .download_section01 .top_link:hover{
    background-color:#0f31a7;
    color:#fff;
  }
}

.download_form_block .border_label{
  font-weight: bold;
  font-size: 18px;
  color: #012dab;
  padding-bottom: 16px;
  border-bottom:1px solid #0F31A7;
}

.download_form_block .check_list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap:20px 0;
  margin-top: 20px;
  margin-bottom: 40px;
}

.download_form_block .check_list .mwform-checkbox-field{
  width: 33.3%;
  margin:0!important;
}

.download_form_block .check_list .mwform-checkbox-field label{
  display: flex;
  align-items: center;
}

.download_form_block .check_list .mwform-checkbox-field input{
  width:17px;
  height:17px;
  margin-right: 10px;
}


/*
------------------------------------
プライバシーポリシー
------------------------------------
*/

body.privacy_body{
  
}

body.privacy_body footer{
  overflow: hidden;
}

main.privacy_main{

}

.privacy_section01{
  padding-bottom: 100px;
}

.privacy_section01 .privacy_frame{
  max-width: 900px;
  margin:0 auto;
}

.privacy_section01 .privacy_catch{
  font-weight: bold;
  font-size: 18px;
  line-height: 1.9;
  text-align: center;
  color: #0f31a7;
}

.privacy_section01 .privacy_contents{
  margin-top: 60px;
}

.privacy_section01 .privacy_head{
  font-weight: bold;
  font-size: 15px;
  line-height: 1.2;
  color: #0f31a7;
  padding-bottom: 10px;
  border-bottom:1px solid #0F31A7;
}

.privacy_section01 .privacy_text{
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.privacy_section01 * + .privacy_head{
  margin-top: 40px;
}

/*
------------------------------------
利用規約
------------------------------------
*/

body.terms_body{
  
}

body.terms_body footer{
  overflow: hidden;
}

main.terms_main{

}

.terms_section01{
  padding-bottom: 100px;
}

.terms_section01 .terms_frame{
  max-width: 900px;
  margin:0 auto;
}


.terms_section01 .terms_catch{
  font-weight: bold;
  font-size: 18px;
  line-height: 1.9;
  text-align: center;
  color: #0f31a7;
}

.terms_section01 .terms_contents{
  margin-top: 60px;
}

.terms_section01 .terms_head{
  font-weight: bold;
  font-size: 15px;
  line-height: 1.2;
  color: #0f31a7;
  padding-bottom: 10px;
  border-bottom:1px solid #0F31A7;
}

.terms_section01 .terms_text{
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.terms_section01 * + .terms_head{
  margin-top: 40px;
}

/*
------------------------------------
サイトマップ
------------------------------------
*/

body.sitemap_body{
  
}

body.sitemap_body footer{
  overflow: hidden;
}

main.sitemap_main{

}

.sitemap_section01{
  padding-bottom: 100px;
}

.sitemap_section01 .sitemap_frame{
  max-width: 1000px;
  margin:0 auto;
}

.sitemap_section01 .parent_item{
  padding-bottom: 10px;
  border-bottom:1px solid #0F31A7;
}

.sitemap_section01 * + .parent_item{
  margin-top: 50px;
}

.sitemap_section01 .parent_link{
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  color: #0f31a7;
  padding-left: 24px;
}

.sitemap_section01 .parent_link::before,
.sitemap_section01 .parent_link::after{
  width:11px;
  height:18px;
}

.sitemap_section01 .parent_link::before{
  opacity: 0;
  left:-15px;
}

@media(any-hover:hover){
  .sitemap_section01 .parent_link.angle_move_trigger:hover::before,
  .angle_move_trigger:hover .sitemap_section01 .parent_link::before{
    opacity: 1;
    left:0;
  }
  .sitemap_section01 .parent_link.angle_move_trigger:hover::after,
  .angle_move_trigger:hover .sitemap_section01 .parent_link::after{
    opacity: 0;
    left:15px;
  }
}

.sitemap_section01 .child_menu{
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
}

.sitemap_section01 .child_item{
  width:33.3%;
  margin-top: 24px;
  padding-right: 12px;
}

.sitemap_section01 .child_link{
  font-size: 17px;
  line-height: 1.2;
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .sitemap_section01 .child_link:hover{
    opacity: 0.5;
  }
}


/*
------------------------------------
404
------------------------------------
*/

body.page404_body{
  
}

body.page404_body footer{
  overflow: hidden;
}

main.page404_main{

}

.page404_section01{
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  font-weight: bold;
}


.page404_section01 .p01{
  font-size: 130px;
  color: #0f31a7;
  line-height: 1;
}

.page404_section01 .p02{
  font-size: 50px;
  line-height: 1;
  color: #0f31a7;
  margin-top: 16px;
}

.page404_section01 .p03{
  margin-top: 40px;
  font-size: 32px;
  line-height: 1;
  color: #0f31a7;
}

.page404_section01 .p04{
  margin-top: 20px;
  text-align: center;
  color: #000;
  line-height: 1.5;
}

.page404_section01 .top_link{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 52px;
  border-radius: 26px;
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
  color: #0F31A7;
  background-color: #fff;
  border:2px solid #0F31A7;
  transition-duration: 0.4s;
  margin:44px auto 0;
}

@media(any-hover:hover){
  .page404_section01 .top_link:hover{
    color: #fff;
    background-color: #0F31A7;
  }
}

/*
------------------------------------
製品情報　共通
------------------------------------
*/

.products_section + .products_section{
  padding-top: 100px;
}

.products_section + .products_section.products_select_section02,
.products_section + .products_section.products_keyword_section02{
  padding-top: 72px;
}


.products_section .sec_title{
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  color: #012dab;

}


.products_section .products_download_box{
  max-width: 1010px;
  margin:100px auto 0;
  background: #fff;
  border: 2px solid #012dab;
  padding:30px;

}

.products_section .products_download_box .products_download_box_head{
  font-weight: bold;
  font-size: 21px;
  text-align: center;
  color: #012dab;
  line-height: 1.5;
}

.products_section .products_download_box .products_download_box_text{
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.5;
}

.products_section .no_result{
  text-align: center;
  margin-top: 24px;
  font-weight: bold;
}

.products_section .left_border_title{
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
  color:#0F31A7;
  margin-top: 48px;
}

.products_section .left_border_title::before{
  content: '';
  width: 10px;
  height: 100%;
  border-radius: 4px 0 0 4px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #0F31A7;
}


.products_section .parent_frame{
  margin-top: 32px;
}

.products_section .parent_frame + .parent_frame{
  margin-top: 80px;
}

.products_section .parent_name{
  width: fit-content;
  min-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:10px 20px;
  border: 2px solid #0f31a7;
  margin: 0 auto;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  color: #012dab;

}

.products_section .grand_child_frame{
  margin-top: 20px;
}

.products_section .grand_child_frame + .grand_child_frame{
  margin-top: 40px;
}



.products_section .products_result_frame{
  max-width: 1066px;
  margin:0 auto;
}


@media screen and (max-width:1150px){
  .products_section .products_result_frame{
    max-width: 750px;
    margin:0 auto;
  }
}

.products_section .result_count{
  margin-top: 16px;
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.5;
  color: #0f31a7;

}

/*製品の検索結果一覧*/
.common_products_list{
  display: flex;
  flex-wrap: wrap;
  gap:40px 22px;
}

@media screen and (max-width:1150px){
  .common_products_list{
    justify-content: space-between;
    margin:0 auto;
    gap:40px 0;
  }
}

.common_products_list .products_item{
  width:340px;
}

.common_products_list .products_item_card{
  display: block;
  min-height: 100%;
  position: relative;
  /* padding-bottom: 45px; */
}

.common_products_list .products_thumb{
  aspect-ratio: 1/0.72;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.common_products_list .products_thumb img{
  width:85%;
  height:85%;
  object-fit: contain;
}

.common_products_list .products_name{
  margin-top: 10px;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  color: #0f31a7;
}

.common_products_list .products_info_list li{
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}

.common_products_list .products_info_list .info_label{
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1.3;
  color: #0f31a7;
  white-space: nowrap;
  display: flex;
  align-items: flex-start;
}

.common_products_list .products_info_list .info_label::after{
  content:'：';
  font-size: 15px;
  line-height: 1.3;
  color: #0f31a7;
  flex-shrink: 0;
  margin:0 3px;
}

.common_products_list .products_info_list .info_label span{
  display: inline-block;
  min-width:90px;
  text-align:justify;
  text-align-last:justify;
}

.common_products_list .products_info_list .info_text{
  font-size: 15px;
  line-height: 1.3;
  word-break: break-all;
}

.common_products_list .products_button{
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 185px;
  border-radius: 4px;
  background: #0f31a7;
  padding:4px 8px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

.common_products_list .products_button::before{
  content:'';
  width:8px;
  height:11px;
  background-image: url('../img/common/angle_right_white.svg');
  flex-shrink: 0;
  margin-right: 10px;
}


/*製品検索の入力エリア*/
.common_products_search_frame{
  max-width: 1066px;
  margin: 0 auto;
}

.common_products_search_frame .products_search_head{
  padding: 16px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0F31A7;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
}

.common_products_search_frame .products_search_head::after{
  content:'';
  width:15px;
  height:15px;
  background-image: url('../img/common/icon_plus_white.svg');
}

.common_products_search_frame .products_search_head.active::after{
  background-image: url('../img/common/icon_minus_white.svg');
  height:2px;
  border-radius: 1px;
}

.common_products_search_frame .products_search_body{
  padding:40px 24px;
  background-color: #fff;
  border:1px solid #0F31A7;
  display: none;
}

.common_products_search_area{
  max-width: 1000px;
  margin:0 auto;
}

.common_products_search_frame .products_search_area01{
  margin-top: 20px;
}

.common_products_search_frame .keyword_flex{
  display: flex;
  justify-content: center;
  align-items: center;
}

.common_products_search_frame .keyword_flex .keyword{
  border:none;
  background: none;
  border-radius: 0;
  width:250px;
  height:43px;
  background-color: #fff;
  border:1px solid #80C1E4;
  padding:0 12px;
  font-size: 18px;
}

.common_products_search_frame .keyword_flex .keyword_button{
  border:none;
  background: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width:43px;
  height:43px;
  background-color: #80C1E4;
}

.common_products_search_frame .keyword_flex .keyword_button img{
  width:26px;
}

.common_products_search_frame .products_search_area02{
  margin-top: 30px;
}

.common_products_search_frame .search_line + .search_line{
  margin-top: 20px;
}

.common_products_search_frame .search_label{
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  color: #012dab;
  padding-bottom: 10px;
  border-bottom:1px solid #012dab;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap:6px 10px;
}

.common_products_search_frame .search_label span{
  font-size: 15px;
}
.common_products_search_frame .search_check_list{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.common_products_search_frame .search_check_list li{
  margin-top: 15px;
  width:33.3%;
  padding-right: 12px;
}

.common_products_search_frame .search_check_list label{
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: normal;
  font-size: 15px;
  list-style: 1.3;
}

.common_products_search_frame .search_check_list .check_box_frame{
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #80c1e4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  margin-top: 2px;
}

.common_products_search_frame .search_check_list input[type="checkbox"]{
  display: none;
}

.common_products_search_frame .search_check_list input[type="checkbox"]:checked + .check_box_frame::after{
  content:'';
  width:13px;
  height:13px;
  background-image: url('../img/common/icon_check_blue.svg');
}


.common_products_search_frame .nozzle_remark{
  margin-top: 16px;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.5;
  color: #717171;
}

.common_products_search_frame .nozzle_remark + .nozzle_remark{
  margin-top: 12px;
}

.common_products_search_frame .search_select_button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  min-height: 52px;
  border-radius: 52px;
  background-color: #012dab;
  border:2px solid #012dab;
  padding:4px 8px;
  margin:36px auto 0;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .common_products_search_frame .search_select_button:hover{
    color: #012dab;
    background-color: #fff;
  }
}


.products_section02{
  padding-bottom: 100px;
}

/*
------------------------------------
製品情報　一覧
------------------------------------
*/


.products_section .parent_term_list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  gap:40px 40px;
}

@media screen and (max-width:1200px){
  .products_section .parent_term_list{
    max-width: 750px;
    gap:40px 0;
    margin:50px auto 0;
    justify-content: space-between;
  }
}

.products_section .parent_term_list .parent_term_item{
  width: 355px;
}

.products_section .parent_term_list .parent_term_card{
  display: block;
  height: 100%;
  background-color: #fff;
  padding:30px 26px 32px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.16);
}

.products_section .parent_term_list .parent_term_name{
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  color: #0f31a7;
  border-bottom:1px solid #0f31a7;
  padding-bottom: 3px;
}

.products_section .parent_term_list .parent_term_thumb{
  width: 85%;
  aspect-ratio: 1/0.715;
  margin:20px auto 0;
}

.products_section .parent_term_list .parent_term_thumb img{
  width: 100%;
  height:100%;
  object-fit: cover;
}

.products_section .parent_term_list .parent_term_text{
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.8;
}

.products_section .parent_term_list .parent_term_button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 45px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #0f31a7;
  margin:16px auto 0;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  color: #0f31a7;
}

/*
------------------------------------
製品情報　大カテゴリー絞り込み
------------------------------------
*/

.products_section .child_term_list{
  max-width: 900px;
  margin:50px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap:80px 0;
}

.products_section .child_term_list .child_term_item{
  width:400px;
}

.products_section .child_term_list .child_term_card{
  display: block;
}

.products_section .child_term_list .child_term_name_flex{
  display: flex;
  justify-content: space-between;
  padding-bottom: 2px;
  align-items: flex-start;
  border-bottom: 1px solid #0F31A7;
}

.products_section .child_term_list .child_term_name{
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  color: #0f31a7;
}

.products_section .child_term_list .child_term_link_text{
  flex-shrink: 0;
  /* margin-left: 12px; */
  margin-top: 7px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  color: #0f31a7;
  padding-left: 20px;
  position: relative;
}

/* .products_section .child_term_list .child_term_link_text::before{
  content:'';
  width:8px;
  height:11px;
  background-image: url('../img/common/angle_right_blue.svg');
  position: absolute;
  left:0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
} */

.products_section .child_term_list .child_term_thumb{
  aspect-ratio: 1/0.625;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.products_section .child_term_list .child_term_thumb img{
  width:85%;
  height:85%;
  object-fit: contain;
}

.products_section .child_term_list .child_term_text{
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  min-height:80px;
}

.products_section .child_term_list .child_term_item_down{
  margin-top: 10px;
}

.products_section .child_term_list .name_box{

}

.products_section .child_term_list .name_head{
  min-height:46px;
  padding:10px 20px;
  background-color: #0F31A7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
}

.products_section .child_term_list .name_head::after{
  content:'';
  width:15px;
  height:15px;
  background-image: url('../img/common/icon_plus_white.svg');
}

.products_section .child_term_list .name_head.active::after{
  background-image: url('../img/common/icon_minus_white.svg');
  height:2px;
  border-radius: 1px;
}


.products_section .child_term_list .name_contents{
  background-color: #fff;
  padding:20px 30px;
  display: none;
}

.products_section .child_term_list .name_list{
  display: flex;
  flex-wrap: wrap;
  gap:20px 0;
}

.products_section .child_term_list .name_list li{
  width: 33.3%;
  padding:0 4px;
}

.products_section .child_term_list .name_list a{
  text-decoration: underline;
  font-size: 14px;
  line-height: 1.3;
}

@media(any-hover:hover){
  .products_section .child_term_list .name_list a:hover{
    text-decoration: none;
  }
}



/*
------------------------------------
製品情報　詳細
------------------------------------
*/

body.single_products_body{
  
}

main.single_products_main{

}

.single_products_section{
  padding-bottom: 100px;
}

.single_products_section .single_products_article{
  max-width: 1066px;
  margin:0 auto;
}

.single_products_section .single_products_flex{
  display: flex;
  align-items: flex-start;
}

.single_products_section .single_products_flex + .single_products_flex{
  margin-top: 40px;
}
.single_products_section .products_area01{
  width:100%;
}

.single_products_section .products_area02{
  flex-shrink: 0;
  margin-left: 32px;
}


.single_products_section .single_products_flex02{
  justify-content: space-between;
}

.single_products_section .products_area03{
  width:42%;
}

.single_products_section .products_area04{
  width:53%;
} 

.single_products_section .products_name{
  font-weight: bold;
  font-size: 46px;
  line-height: 1.6;
  color: #0f31a7;
}

.single_products_section .products_read_text{
  font-weight: bold;
  font-size: 22px;
  line-height:1.5;
  color: #0f31a7;
}

.single_products_section .products_icon_list{
  display: flex;
  flex-wrap: wrap;
  gap:5px;
  padding-top: 40px;
}

.single_products_section .products_icon_list li{
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 56px;
  min-height: 51px;
  padding:2px 8px;
  border-radius: 6px;
  background: #0f31a7;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.single_products_section .products_icon_list li.products_icon_amount{
  letter-spacing: 0.08em;
}
.single_products_section .products_icon_list li.products_icon_soda_nozzle{
  line-height: 1.1;
}

.single_products_section .products_icon_list li span{
  display: inline-block;
  line-height: 1;
}

.single_products_section .products_icon_list li .num01{
  font-size: 19px;
}
.single_products_section .products_icon_list li .num02{
  font-size: 18px;
}
.single_products_section .products_icon_list li .min{
  font-size: 10px;
}
.single_products_section .products_img{
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.single_products_section .products_img img{
  width: 85%;
  height: 90%;
  object-fit: contain;
}

.single_products_section .products_drawing{
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  background-color: #fff;
}

.single_products_section .products_drawing img{
  width: 85%;
  height: 90%;
  object-fit: contain;
}

.single_products_section .products_status{
  padding-top: 40px;
  padding-bottom: 40px;
}

.single_products_section .products_min_head{
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  color: #0f31a7;
}

.single_products_section .products_info_area{
  margin-bottom: 40px;
}

.single_products_section .products_info_list{
  margin-top: 20px;
}

.single_products_section .products_info_list li{
  display: flex;
  align-items: center;
  padding:8px 0;
  border-top:1px solid #80C1E4;
  border-bottom:1px solid #80C1E4;
  font-size: 17px;
  line-height: 1.5;

}

.single_products_section .products_info_list li + li{
  border-top:none;
}

.single_products_section .products_info_list .products_info_label{
  flex-shrink: 0;
  width:190px;
  padding-right: 12px;
}

.single_products_section .products_info_list .products_info_contents{
  width: 100%;
}

.single_products_section .products_catch{
  display: flex;
  align-items: flex-start;
  font-weight: bold;
  font-size: 19px;
  line-height: 1.5;
  margin-top: 20px;
}

.single_products_section .products_catch::before{
  content:'';
  width:48px;
  height:1px;
  background-color: #000;
  flex-shrink: 0;
  margin-top: 14px;
  margin-right: 14px;
}

.single_products_section .products_feature{
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.9;
}

.single_products_section .products_download_list{
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap:0 18px;
}

.single_products_section .products_download_list li{
  min-width:23.7%;
  
}

.single_products_section .products_download_list li a{
  display: flex;
  justify-content: center;
  align-items: center;
  padding:6px 0;
  border-radius: 100px;
  min-height: 82px;
  border-radius: 41px;
  background-color: #80c1e4;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  transition-duration: 0.4s;
  border:2px solid #80C1E4;
}

.single_products_section .products_download_list li a::before{
  content:'';
  width:19px;
  height:18px;
  background-image: url('../img/common/icon_download_white.svg');
  flex-shrink: 0;
  margin-right: 10px;
  transition-duration: 0.4s;
}


.single_products_section .products_download_list li a span{
  font-size: 16px;
}

@media(any-hover:hover){
  .single_products_section .products_download_list li a:hover{
    color: #80c1e4;
    background-color: #fff;
  }

  .single_products_section .products_download_list li a:hover::before{
    background-image: url('../img/common/icon_download_light_blue.svg');
  }
}

@media screen and (max-width:1100px){
  .single_products_section .products_download_list li a{
    font-size: 15px;
    min-height: 72px;
  }
  .single_products_section .products_download_list li a::before{
    width:15px;
    height:14px;
    margin-right: 6px;
  }
}


.single_products_section .products_alert_box{
  max-width: 1010px;
  margin:50px auto 0;
  border:2px solid #012DAB;
  padding:30px 6.8% 32px;
  background-color: #fff;
}

.single_products_section .products_alert_box .products_alert_head{
  font-weight: bold;
  font-size: 21px;
  line-height: 1.5;
  text-align: center;
  color: #012dab;
}

.single_products_section .products_alert_box .products_alert_text{
  line-height: 1.5;
}

.single_products_section .products_alert_box .products_alert_text p{
  margin-top: 16px;
}

.single_products_section .back_link{
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 52px;
  border-radius: 4px;
  background: #0f31a7;
  font-weight: bold;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
}

.single_products_section .back_link span{
  padding-left: 20px;
  position: relative;
}

.single_products_section .back_link span::before,
.single_products_section .back_link span::after{
  content:'';
  width:12px;
  height:16px;
  background-image: url('../img/common/angle_left_white.svg');
  transition-duration: 0.3s;
  position: absolute;
  left:0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.single_products_section .back_link span::before{
  opacity: 0;
  left:10px;
}

@media(any-hover:hover){
  .single_products_section .back_link:hover span::before{
    opacity: 1;
    left:0;
  }

  .single_products_section .back_link:hover span::after{
    opacity: 0;
    left:-10px;
  }
}