@charset "UTF-8";

/* 共通部分
===========================================　*/
html{
  font-size: 100%;
  scroll-behavior: smooth;
}
body{
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  color: #333;
}
img{
  max-width: 100%;
  height: auto;
}
.wrapper{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}



/* ===========================================
ヘッダー
=========================================== */
.logo{
  width: 260px;
  margin-top: 20px;
}
.page-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
nav{
  z-index: 999;
}

/* ----- PC用のメニュー ----- */
.pc-nav{
  list-style: none;
  font-weight: bold;
}
.pc-nav li{
  display: inline-block;
  margin-left: 40px;
}

/* ----- モバイル用のメニュー ----- */
.sp-nav{
  display: flex;
  flex-direction: column;
  position: fixed;
  background-color: #333;
  opacity: 85%;
  padding: 100px 50px 75px;
  top: 0;
  right: -75vw;
  width: 75vw;
  transition: ease .4s;
  visibility: hidden; /* 非表示 */
}
.sp-nav li{
  list-style: none;
  margin: 0;
  border-bottom: 1.5px solid #a2a2a2;
}
.sp-nav a{
  display: block;
  color: #fff;
  font-size: 1.125rem;
  padding: 30px 10px 5px 10px;
}
#overlay{ /* ハンバーガーメニュー展開時、背景をクリックで閉じるとき使用 */
  visibility: hidden; /* 非表示 */
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 998;
}
#overlay.active{
  visibility: visible; /* 表示 */
}
/* -----　PC用、モバイル用メニュー共通部分　----- */
nav a{
  text-decoration: none;
  color: rgb(0, 50, 125);
}
nav a:hover,
nav a:focus{
  color: #33ccff ;
}

/* ----- ハンバーガーメニュー ----- */
.hamburger{
  display: none;
  position: absolute;
  right: 15px;
  top: 12px;
}
.nav-icon{ 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 55px;
}
.nav-icon:focus{
  box-shadow: 0 0 10px rgb(150, 150, 150);
  border-radius: 10px;
}
.nav-icon span{
  width: 30px;
  height: 3px;
  margin: 3px;
  background-color: #333;
  transition: ease .4s;
}
.nav-icon p{
  font-size: 9px;
  font-family: sans-serif;
}
/* ----- ハンバーガーメニューをクリックしたあとのスタイル ----- */
.nav-icon.active span:nth-child(1){
  transform: rotate(45deg);
  position: relative;
  top: 9px;
  background-color: #fff;
}
.nav-icon.active span:nth-child(2){
  opacity: 0;
}
.nav-icon.active span:nth-child(3){
  transform: rotate(-45deg);
  position: relative;
  top: -9px;
  background-color: #fff;
}
.nav-icon.active p{
  color: #fff;
  position: relative;
}

/* ===========================================
フッター
=========================================== */
footer {
  background-color: #ECE8E4;
}
.footer-container{
  display: flex;
  justify-content: space-around;
  padding: 70px 40px 70px;
  line-height: 1.5;
  margin-top: 70px;
}
.footer-prf img{
  height: 16px;
  vertical-align: middle;
}
.footer-process-name{
  font-size: 1.4em;
  font-weight: bold;
  padding-bottom: 10px;
}
.jpps_logo{
  width: 60px;
}
.jpps{
  font-size: 0.75em;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.jpps-txt{
  font-size: 0.75em;
  position: relative;
  width: 375px;
  padding: 10px;
  background: #ffffff;
  border-radius: 10px;
  margin-top: 15px;
  transition: 0.5s;
  box-shadow: 5px 5px 10px 0px rgba(51, 51, 51, 0.2);
}
.jpps-txt::after{ /* フキダシの三角 */
  content: "";
  position: absolute;
  top: -24px;
  left: 24px;
  border: 12px solid transparent;
  border-bottom: 12px solid #ffffff;
}
.copyright{
  color: #fff;
  background-image: linear-gradient(to right, #666666, #333333);
  font-size: 0.875rem;
  text-align: center;
  padding: 30px 0 20px;
  position: relative;
}
.cmyk{
  position: absolute;
  display: flex;
  left: calc(50% - 15px);
  top: 20px;
}
.cmyk span{
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin: 0 3px;
}
.cmyk span:nth-child(1){
  background-color: #00A0E9;
}
.cmyk span:nth-child(2){
  background-color: #E4007F;
}
.cmyk span:nth-child(3){
  background-color: #FFF100;
}
.cmyk span:nth-child(4){
  background-color: #231815;
}

/* ===========================================
ホーム
=========================================== */
.bg{
  background-image: repeating-linear-gradient(135deg, #00A8F4, #C7FFFF 1px, transparent 2px, transparent 6px);
}
.bg-white{
  background-color: #fff;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 70px;
}
.building{
  width: 1100px;
  object-fit: cover;
  display: block;
  margin: auto;
}
.concept{
  text-align: center;
  opacity: 0;
  transition: 2s;
  transform: translate(0, 20px);
}
.concept p{
  font-family: "sicyubi-penr", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2em;
  line-height: 2.25em;
  letter-spacing: 0.125em;
  margin: 100px 0 100px;
}

/* ----- お知らせ ----- */
.info{
  background-color: #FFDB91;
  max-width: 700px;
  margin: auto;
  color: #503200;
  border-radius: 30px;
  padding: 15px 30px;
  border: 2px dashed #fff;
  box-shadow: 0 0 0 8px #FFDB91;
  position: relative;
}
.info::before{
  content: '';
  background-image: url(../images/info.svg);
  width: 100px;
  height: 50px;
  background-size: contain;
  position: absolute;
  top: -25px;
  left: calc(50% - 50px);
}
.info-title{
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.info-content{
  padding-top: 8px;
  line-height: 1.5em;
  font-size: 0.8em;
}
.info-content-bold{
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin: 5px 0 5px;
  letter-spacing: 0.05em;
}


/* ===========================================
事業内容
===========================================　*/
.works-title{
  text-align: center;
  padding: 80px;
}
.works{
  margin-bottom: 70px;
}
.works h3{
  background: linear-gradient(#76a4bb 50%, #4084a6 50%);
  border-radius: 10px;
  color: #fff;
  padding: 0.3em 0.7em;
}
.works p{
  padding: 0 1em;
  margin: 5px 0;
}
.works-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px ;
}
.telephone{
  width: 480px;
  display: block;
  margin: auto;
  margin-top: 100px;
}


/* ===========================================
会社概要 プロフィール
=========================================== */
.profile-title{
  text-align: center;
  padding-top: 80px;
}
.profile{
  display: grid;
  grid-template-columns: repeat(2,26em);
  gap: 70px;
  justify-content: center;
  margin-top: 30px;
}
table{
  border-collapse: collapse;
  line-height: 1.5;
}
th,td{
  padding: 6px 12px;
  border-top: solid 1.5px #9FD3EF;
  border-bottom: solid 1.5px #9FD3EF;
}
th{
  font-weight: normal;
}

tr:nth-child(odd){
  background: #F0F9FE;
}
caption{
  font-size: 1.2rem;
  font-weight: bolder;
  padding: 7px;
}


/* ===========================================
個人情報保護　プライバシーポリシー
=========================================== */
.ppc{
  width: 80vw;
  margin: auto;
  text-align: justify;
  padding: 0 4%;
}
.ppc-lead {
  text-align: center;
}
.ppc-title{
  display: inline-block;
  background: linear-gradient(#00b400 50%, #008b00 50%);
  border-radius: 10px;
  color: #fff;
  font-size: 1.4em;
  padding: 0.375em 1em;
  margin-top: 60px;
}
.ppc-lead p{
  font-size: 0.9em;
  text-align: justify;
  margin-top: 50px;
  margin-bottom: 30px;
}
.ppc h3{
  font-size: 1.1em;
  border-bottom: 1.5px solid #00d000;
  padding-left: 5px;
  margin-top: 20px;
  margin-bottom: 5px;
}
.ppc p{
  font-size: 0.9em;
  padding-left: calc(5px + 2rem);
  padding-right: 5px;
}
.text-right{
  font-size: 0.875em;
  text-align: right;
  padding: 30px 0 50px;
}
#privacypolicy2{
  margin-top: 100px;
}
.list-2 ul{ /* 2.のリストの字下げ設定 */
  font-size: 0.9em;
  padding-left: calc(36px + 3em);
}
.list-5 ul{ /* 5.のリストの字下げ設定 */
  font-size: 0.9em;
  padding-left: calc(36px + 2em);
}
.indent2{ /* 左を2字下げ */
  padding-left: 2em;
}


/* ===========================================
アクセス
=========================================== */
.location iframe{
  display: block;
  padding: 70px 0 20px;
  margin: auto;
}
.location-info{
  max-width: 400px;
  margin: auto;
}
.vehicle{
  margin-top: 1em;
  padding: 0.25em 1em;
  background-color: #eb7575;
  color: #fff;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  transform: rotate(-6deg);
  top: 1em;
  left: -1em;
}
.vehicle::before{
  content: '';
  height: 0;
  width: 0;
  border: solid transparent;
  position: absolute;
  border-color: transparent;
  border-top-color: #eb7575;
  border-right-color: #eb7575;
  border-width: 6.5px;
  left: 30px;
  top: 100%;
}
.car-icon::before{
  content: '';
  background-image: url(../images/car.svg);
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.train-icon::before{
  content: '';
  background-image: url(../images/train.svg);
  width: 27px;
  height: 27px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.location ul{
  background-color: #fbe6e5;
  border-radius: 0px 20px;
  padding: 2em 1em 1.5em;
}
.location li{
  margin-left: 2em;
  color: #5d0e07;
}



/* ===========================================
モバイル版
=========================================== */
@media screen and (max-width:860px) {
/* ----- 企業情報 プロフィール ----- */
  .profile{
    grid-template-columns: repeat(1,24em);
    gap: 40px;
  }


/* ----- アクセス ----- */
  .location iframe{
    width: 100%;
  }
  .location-info{
    width: 70vw;
  }

/* ----- ホーム ----- */
  .building{
    width: 100vw;
  }
  .concept p{
    font-size: 1em;
    line-height: 2em;
  }
  .info{
    width: 88vw;
  }
  .slogan-svg{
  width: 120px;
  padding: 1.25em;
  background-color: rgba(255, 255, 255, 0.5);
  }
}


@media screen and (max-width: 700px){
/* ----- ヘッダー ----- */
  .pc-nav{
    display: none;
  }
  .sp-nav.active {
    right: 0;
    visibility: visible;/*表示させる*/
  }
  .hamburger{
    display: block;
  }


/* ----- フッター ----- */
  .footer-container{
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-bottom: 50px;
  }
  .jpps_logo{
    max-width: 45px;
  }
  .jpps{
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .jpps-txt{
    width: 300px;
  }
  .jpps-txt::after{
    left: calc(50% - 12px);
  }


  /* ----- ホーム -----*/
  .slogan-svg{
    width: 110px;
    padding: 1.25em;
    top: 200px;
    left: 30px;
    background-color: rgba(255, 255, 255, 0.5);
  }


  /* ----- 事業内容 -----*/
  .works-container{
  grid-template-columns: 1fr;
  gap: 30px;
  }


/* ----- 個人情報保護　プライバシーポリシー ----- */
  .ppc{
    width: auto;
  }

}