@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ------------------
 グローバル変数
------------------ */
:root {
  /* 色 */
  --base-color: #F0F0F0;
  --main-color: #0070C0;
  --sub-color: #333333;
}

/* ------------------
 フォント
------------------ */
body{
  font-size: 1.6rem;
  color: #333333;
  font-family: "Noto Sans JP";
}

main{
}

/* スマホメニュー非表示 */
.spNav_btn,.spNav_panel {display: none;}

/* PCのみ表示する要素を表示 */
.pc_block {display: block;}
.sp_block {display: none;}

.bold{
  font-weight: bold;
}

a:hover {
  opacity: 0.7;
}

/* インデント */
.indent{
  text-indent: -1em;
  padding-left: 1em;
}

/* アニメーション */
.fade{
  opacity: 0;
  transition: .5s ease-in-out;
}
.fade.fade--bot{
  transform: translate(0,100px);
}
.fade.fade--top{
  transform: translate(0,-100px);
}
.fade.fade--left{
  transform: translate(-100px,0);
}
.fade.fade--right{
  transform: translate(100px,0);
}
.fade.fadein{
  transform: translate(0,0);
  opacity: 1;
}
/* 子要素を順番にフェードイン */
.fade.fade--list{
  opacity: 1;
}
.fade_child{
  opacity: 0;
  transform: translate(0,100px);
  transition: .5s ease-in-out;
}
.fadein .fade_child{
  transform: translate(0,0);
  opacity: 1;
}
.fade_child:nth-child(1){
  transition-delay: 0.15s;
}
.fade_child:nth-child(2){
  transition-delay: 0.3s;
}
.fade_child:nth-child(3){
  transition-delay: 0.45s;
}
.fade_child:nth-child(4){
  transition-delay: 0.6s;
}
.fade_child:nth-child(5){
  transition-delay: 0.75s;
}
.fade_child:nth-child(6){
  transition-delay: 0.9s;
}
.fade_child:nth-child(7){
  transition-delay: 1.05s;
}
.fade_child:nth-child(8){
  transition-delay: 1.2s;
}
.fade_child:nth-child(9){
  transition-delay: 1.35s;
}
.fade.roll-in {
opacity: 0;
}
.fade.roll-in.roll-in.fadein {
animation: rollFadeIn 1s ease-in-out;
opacity: 1;
}
@keyframes rollFadeIn {
from {
  opacity: 0;
  transform: rotate(-180deg) translate(0);
}
to {
  opacity: 1;
  transform: rotate(0deg) translate(0);
}
}

/* ------------------
 header
------------------ */
header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: all .3s;
  background: rgb(255, 255, 255, 0);
}
header.scrolled {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
  background: rgb(255, 255, 255, 1);
  transition: 0.5s;
}
.hd_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 75px;
  border-top: 2px solid var(--main-color);
}
.hd_logo{
  max-height: 50px;
}
.hd_cont{
  max-width: 154px;
  width: 100%;
  background: var(--main-color);
  color: #FFF;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  padding-right: 15px;
  transition: 0.5s;
  position: relative;
  font-weight: 700;
  border: 1px solid var(--main-color);
  &::before{
    content: url(../../common/img/mail.svg);
    position: absolute;
    left: 15px;
  }
  &:hover{
    background: #FFF;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: 0.5s;
    opacity: 1;
    &::before{
      content: url(../../common/img/blue_mail.svg);
    }
  }
}

/* page_visual */
.page_visual{
  min-height: 300px;
}

/* ------------------
 footer
------------------ */
.jrva {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 60px 0;
}
.jrva_txt{
  font-size: 2.0rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.ft_main{
  background: var(--sub-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  padding: 50px 0;
}
.ft_add{
  color: #FFF;
  line-height: 200%;
}
.fa_comp{
  font-weight: 800;
  color: #FFF;
}
.ft_main_r {
  display: flex;
  align-items: center;
  gap: 20px;
}
.privacy{
  width: 221px;
  background: #666;
  position: relative;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  &::after{
    content: url(../../common/img/link.svg);
    position: relative;
    top: 1px;
  }
}
.ft_cont_btn{
  width: 260px;
  background: var(--main-color);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-weight: 500;
  padding: 10px 0;
  padding-right: 20px;
  position: relative;
  transition: 0.5s;
  border: 1px solid var(--main-color);
  &::before{
    position: absolute;
    content: url(../../common/img/mail.svg);
    left: 15px;
  }
  &:hover{
    background: #FFF;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: 0.5s;
    opacity: 1;
    &::before{
      content: url(../../common/img/blue_mail.svg);
    }
  }
}
.group_link{
  color: #FFF;
  font-weight: 500;
}
.copyright{
  display: flex;
  justify-content: center;
  padding: 20px 0;
  & small{
    display: flex;
    align-items: center;
    & a{
      position: relative;
      top: 1px;
    }
  }
}

/*ページトップ*/
#page_top {
  width: 56px;
  height: 56px;
  position: fixed;
  bottom: -200px;
  opacity: 1;
  right: calc(4% + 14px);
  z-index: 2;
  background: url("../../common/img/backtop.svg") no-repeat center;
  -webkit-background-size: contain;
  background-size: contain;
  border-radius: 50%;
  box-shadow: 5px 5px 10px #0000001A;
  transition: .5s;
}
#page_top.active{
  bottom: 40px;
}
#page_top a{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
}

@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px){
  /* ------------------
  header
  ------------------ */
  .hd_inner{
    padding: 0 5%;
    height: 80px;
  }
  .hd_logo{
    max-width: 200px;
    width: 100%;
  }
  .hd_cont{
    width: 36px !important;
    height: 36px !important;
    padding: 0;
    & p{
      display: none;
    }
    &::before{
      left: 50%;
      transform: translateX(-50%);
    }
  }
	
	/* スマホ閲覧時、横幅可変 */
  body {
    width: 100%;
  }

	/* スマホのみ表示する要素を表示 */
	.sp_block {display: block;}
	.pc_block {display: none;}

  /* ------------------
  footer
  ------------------ */
  .jrva {
    padding: 30px 5%;
    flex-direction: column;
  }
  .jrva_txt{
    flex-direction: column;
    gap: 10px;
  }
  .ft_main{
    flex-direction: column;
    gap: 40px;
    padding: 50px 5%;
  }
  .ft_main_r {
    flex-direction: column;
  }
  .comp_link{
    font-size: 1.4rem;
  }
  .copyright{
    padding: 20px 5%;
  }
  .copyright small{
    display: inline-block;
    & a{
      display: inline-block;
      top: 4px;
    }
  }
}

/* 印刷用設定 */
@media print {
  body {
    width:1280px!important;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
  .swiper-slide picture{
    display: none;
  }
  .mv_pri{
    display: block!important;
  }
  header{
    position: absolute;
  }
  .bg-image-fixed{
    display: none;
  }
  .intro{
    .bg-image-clip{
      background-image: url(../../img/intro_visual.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
    }
  }
  .products{
    .bg-image-clip{
      background-image: url(../../img/pro_visual.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
    }
  }
  .contact_para{
    background-image: url(../../contact/img/contact_para.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
@page {
  size: A4;margin: 5px;
}