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

@font-face{
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', 'Noto Serif JP', sans-serif;
  font-style:normal;
}

html{
  font-size: 62.5%; /* 62.5％ X 16px=10px */
}

body{
  color: #4d5156;
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', 'Noto Serif JP', sans-serif;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
}

a{
  color: #4d5156;
}

img{
  max-width: 100%;
  height: auto;
}

.inner{
  max-width: 1040px;
  margin: 0 auto;
}

.text-center{
  text-align: center;
}  
  
.sp_img{
  display: none;
}

.pc_br{
  display: none;
}

.navToggle{
  display: none;
}



/*------------------ふわっと表示------------------*/
.fadein{
  opacity : 0;
  transform: translateY(80px);
  transition: all 1s;
}
/*------------------ぶるぶる------------------*/
.shake{
  animation: hurueru .8s  infinite;
}
@keyframes hurueru {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(2px, 2px) rotateZ(1deg)}
  50% {transform: translate(0px, 2px) rotateZ(0deg)}
  75% {transform: translate(2px, 0px) rotateZ(-1deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
/*------------------マーカー部分------------------*/
.marker-animation.active{
  background-position: -100% 1em;
}
.marker-animation{
  background: -webkit-linear-gradient(left, transparent 50%, rgb(220,20,60) 50%);
  background: -moz-linear-gradient(left, transparent 50%, rgb(220,20,60) 50%);
  background: -o-linear-gradient(left, transparent 50%, rgb(220,20,60) 50%);
  background: linear-gradient(left, transparent 50%, rgb(220,20,60) 50%);
  background-repeat: repeat-x;
  background-size: 200% .2em;
  background-position: 0 1em;
  transition: all 2s ease;
}



/*------------------ヘッダー------------------*/
.head_area{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px 40px 30px;
}

.navi_area{
  display: flex;
  align-items: flex-end;
}

.head_logo{
  width: 320px;
}
/*------------------ナビメニュー------------------*/
.navi-item{
  display: flex;
}

.navi-item>li{
  margin-right: 30px;
} 
.navi-item>li:last-child{
  margin-right: 0;
} 

.reading{
  font-size: 1.2rem;
}

.navi-item>li>a{
  font-size: 1.7rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  transition: 0.3s;
  display: inline-block;
  position: relative;
} 

.small{
  text-transform: lowercase;  
}
/*------------------マウスが乗った時の色------------------*/
.navi-item>li>a:after{ /*--アンダーライン--*/
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background: #9d1d2b;
  position: absolute;
  bottom: -6px;
  transform: scale(0, 1);
  transition: 0.3s;
}
.navi-item>li>a:hover{
  color: #9d1d2b;
}
.navi-item>li>a:hover:after{
  transform: scale(1, 1);
}
/*------------------カレント------------------*/
.navi-item>li.current>a{
  color: #01aad9;
  pointer-events: none;
}
.navi-item>li.current>a:after{
  height: 2px;
  width: 100%;
  background: #01aad9;
  position: absolute;
  bottom: -6px;
  transform: scale(1, 1);
}



/*------------------メイン画像------------------*/
.main_img{
  width: 100%;
  height: 0;
  padding-top: calc(250 / 1200 * 100%); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../company/company_img/company.jpg") center / cover no-repeat;
  margin-bottom: 110px;
}



/*------------------各コンテンツ部分------------------*/
.ad-ohmi_area{
  margin-bottom: 180px;
}

.company_area{
  margin-bottom: 180px;  
}



/*------------------テキスト部分------------------*/
h2{
  font-size: 4.4rem;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 16px;
  text-align: center;
}

.mgr20{
  margin-right: 6px;
  font-weight: 500;  
}

h2>span{
  margin-left: 16px;
  font-weight: 300;  
}

.japanese{
  font-size: 2rem;
  font-weight: 400;  
}

.service_img{
  padding: 100px 0 50px;
  text-align: center;  
}

.copy>p{
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;  
}



/*------------------○○○したい------------------*/
.planning_ill{
  position: relative; /*--親--*/
  margin-top: 80px;
  text-align: center;
}

.planning01{
  position: absolute; /*--子--*/
  bottom: 150px;
  left: 180px;
}

.planning02{
  position: absolute; /*--子--*/
  bottom: 160px;
  right: 210px;
}



/*------------------ピクト------------------*/
.pict_area{
  display: flex;
  justify-content: center;
  padding: 40px 0 110px;
}

.pict_area>li{
  margin-right: 90px;  
}
.pict_area>li:last-child{
  margin-right: 0;  
}
/*------------------クリエイティブ------------------*/
.creative_title{
  font-size: 4rem;
  font-weight: 300;
  padding: 30px 0 30px;
}

.creative_text{
  width: 770px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/  
}

.creative_area{
  padding-bottom: 100px;
}

.fas{
  margin-left: 7px;
}

.mg3{
  margin: 0 5px;
}



/*------------------会社案内------------------*/
table{
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 5px;
}

th{
  width: 170px;
  padding: 24px 30px 24px;
  font-size: 1.6rem;
  text-align: end;
  background: #f3f0e7;  
}

td{
  padding: 24px 0 24px 36px;
  font-size: 1.6rem;
}

.category{
  padding-bottom: 5px;
}

.category_item{
  line-height: 1.8;
}
.category_item>a:hover{
  color: #e60039;
}

.category_area>li{
  padding-bottom: 15px;
}
.category_area>li:last-child{
  padding-bottom: 0;
}

.mgl16{
  margin-left: 16px;
}

.mgl8{
  margin-left: 8px;
}



/*------------------アクセス------------------*/
.map>iframe{
  filter: grayscale(80%);
}

dl{
  display: flex;
}

.access_info>li>dl>dt,.access_info>li>dl>dd{
  font-size: 1.8rem;
  font-weight: 400;
}

.access_info>li>dl>dt{
  margin-right: 10px;
}

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

.access_info>li{
  margin-right: 56px;
}
.access_info>li:last-child{
  margin-right: 0;
}

.time>li{
  padding-bottom: 13px;
}
.time>dl:last-child{
  padding-bottom: 0;
}



/*------------------ページトップボタン------------------*/
.PageTopBtn{
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: capitalize; 
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.PageTopBtn>a{
  display: block; 
  color: #4d5156;
  background: #fff;
  border: solid 1px #4d5156;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  transition: 0.6s;
}
.PageTopBtn>a:hover{
  color: #fff;
  background: #e60039;
  border: solid 1px #e60039;
}



/*------------------footer------------------*/
.footer_area{
  margin-top: 200px;
  padding: 50px 0 20px;
  background: #000033;
}

.footer_title{
  font-size: 2.4rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 12px;
}
.footer_title>span{
  margin-left: 10px;
  font-weight: 300;  
}

.company_info{
  padding: 40px 0 6px; 
}
.company_info>li{
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  padding-bottom: 8px; 
}
.company_info>li:last-child{
  padding-bottom: 0px; 
}
.company_info>li:nth-child(1){
  font-size: 1.6rem;
}
.company_info>li:nth-child(2){
  font-size: 2.4rem;
  font-weight: 400;   
}
.company_info>li:nth-child(4){
  padding-top: 12px;   
}

.mglr10{
  margin: 0 18px; 
}

.tel{
  font-size: 1.5rem;
  margin-right: 4px;
}

.company_info>li>a{
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  padding-top: 10px;
}

.footer_nav{
  display: flex;
  justify-content: center;
}
.footer_nav>li>a{
  color: #fff;
}
.footer_nav>li:nth-child(1){
  padding-right: 18px;
}

.small{
  text-transform: lowercase;  
}

.copyright{
  padding-top: 10px;  
  font-size: 1.2rem;
  color: #fff;
}





/*------------------タブレット版------------------*/
@media screen and (min-width: 641px) and (max-width: 960px){
  html{
    min-width: 1500px;
  }
 }





/*------------------SP版------------------*/
@media screen and (max-width: 640px){

  .inner{
    padding: 0 20px;
  }
  
  .pc_img{
    display: none;
  }

  .sp_img{
    display: block;
  }
 
  .pc_br{
    display: block;
  }
  
  .sp_br{
    display: none;
  }
  
  
  
  /*------------------黒い半透過のレイヤー------------------*/
  .overlay{
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition: opacity .5s;
  }
  .overlay.open{
    position: fixed;
    width: 100%;
    height: 120%;
    opacity: 1;
  }



  /*------------------メニュー幅分スライド------------------*/
  main.open{
    transform: translateX(-250px);
  }
  

	
  /*------------------ヘッダー部分------------------*/
  .navi_area_sp{
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 20px;
  }
  
  .head_area{
    display: block;
    padding: 0 0 0;
  }  
  
  .logo_sp{
    width: 70vw;
  }



  /*------------------ハンバーガーメニュー------------------*/
  .navToggle{
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    top: 0;
    right: 0;
    z-index: 100;
  }

  .navToggle>span{
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #000033;
    transition: all .5s;
  }

  .navToggle.active>span{
    background-color: #fff;
  }

  .navToggle>span:nth-of-type(1){
    top: 0;
  }

  .navToggle.active>span:nth-of-type(1){
    transform: translateY(12px) rotate(-45deg);
  }

  .navToggle>span:nth-of-type(2){
    top: 12px;
  }

  .navToggle.active>span:nth-of-type(2){
    opacity: 0;
  }

  .navToggle>span:nth-of-type(3){
    bottom: 0;
  }

  .navToggle.active>span:nth-of-type(3){
    transform: translateY(-12px) rotate(45deg);
  }



  /*------------------右から左へ------------------*/
  nav.open {
    transform: translateZ(0);
  }
  /*------------------ナビメニュー------------------*/ 
  nav{
    width: 250px; 
    height: 100%;
    padding-top: 20px;
    background-color: rgb(0, 0, 51, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translate(250px);
    transition: all .5s;
  }

  .navi-item{
    display: block;
    overflow-y: scroll;
    overflow-scrolling: touch;
    max-height: 100vh; 
  }  

  .navi-item>li{
    margin-right: 0;
    font-size: 2.6rem;
    font-weight: 400;
    text-align: center;
    padding: 40px 0;
  }

  .navi-item>li:last-child{
    margin-bottom: 100px;
  } 
  
  .navi-item>li>a{
    color: #fff;
  } 

  
  
  /*------------------メイン画像------------------*/
  .main_img{
    padding-top: calc(300 / 768 * 100%); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../company/company_img/company_sp.jpg") center / cover no-repeat;
    margin-bottom: 40px;
  }  

  
  
  /*------------------各コンテンツ部分------------------*/
  .ad-ohmi_area{
    margin-bottom: 70px;
  }

  .company_area{
    margin-bottom: 70px;  
  }



  /*------------------テキスト部分------------------*/
  h2{
    font-size: 4rem;
    padding-bottom: 20px;
  }

  h2>span{
    margin-left: 0;
  }

  .japanese{
    font-size: 1.8rem;
  }

  .service_img{
    padding: 30px 0 40px;
  }

  .copy>p{
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left; 
    text-align: justify;
    text-justify: inter-ideograph; /*--edge--*/  
  }

  
  
  /*------------------○○○したい------------------*/
  .planning_ill{
    margin-top: 50px;
  }

  .planning01{
    bottom: 140px;
    left: 5px;
  }

  .planning02{
    bottom: 150px;
    right: 5px;
  }



  /*------------------ピクト------------------*/
  .pict_area{
    display: block;
    padding: 20px 0 60px;
  }

  .pict_area>li{
    margin-right: 0;
    margin-bottom: 20px;
    padding: 15px;
    background: #f3f0e7;
    border-radius: 20px; 
  }
  .pict_area>li:last-child{
    margin-right: 0;
    margin-bottom: 0;
  }
  /*------------------クリエイティブ------------------*/
  .creative_title{
    font-size: 3.6rem;
    padding: 18px 0 20px;
  }

  .creative_text{
    width: auto;
    font-size: 1.8rem;
    line-height: 1.7;
  }

  .creative_area{
    padding-bottom: 0;
  }

  .fas{
    margin-left: 5px;
  }

  .mg3{
    margin: 0 2px;
  }  

  
  
  /*------------------会社案内------------------*/
  table{
    width: 100%;
    border-spacing: 0;
  }

  th{
    width: auto;
    display: block;
    padding: 12px 0 12px;
    font-size: 1.5rem;
    text-align: center;
  }

  td{
    width: 100%;
    display: block;
    padding: 12px 0 20px 0;
    font-size: 1.5rem;
    text-align: center;
  }



  /*------------------アクセス------------------*/
  .access_map{
    position: relative;
    width: 100%;
    padding-bottom: 72.67%; /* = height ÷ width × 100 */
  }  
  .access_map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
  }    

  dl{
    display: block; 
  }

  .access_info>li>dl>dt,.access_info>li>dl>dd{
    font-size: 1.5rem;
    text-align: center;
  }

  .access_info>li>dl>dt{
    padding-bottom: 10px;
  }
  
  .access_info>li>dl>dt{
    margin-right: 0;
  }

  .access_info{
    margin-top: 25px;
    display: block;
  }

  .access_info>li{
    margin-right: 0;
    padding-bottom: 25px;
  }
  .access_info>li{
    padding-bottom: 0;
  }

  
  
  /*------------------ページトップ------------------*/
  .PageTopBtn{
    font-size: 1.4rem;
    position: fixed;
    bottom: 0;
    right: 0;
  }  

  .PageTopBtn>a{
    color: #fff;
    background: #e60039;
    border: solid 1px #e60039;
  }    

  
  
  /*------------------footer------------------*/
  .footer_area{
    margin-top: 70px;
  }  
  
  .footer_title{
    font-size: 3rem;
    padding-bottom: 14px;
  }

  .icon>a>img{
    width: 65px;
  }

  .company_info{
    padding: 50px 0 6px; 
  }  
  
  .company_info>li{
    line-height: 1.4;
    padding-bottom: 3px; 
  }

  .mglr10{
    margin: 0 0; 
  }

  .company_info>li>a{
    padding-top: 8px;
  } 
  
 }

















