@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;
  animation: fadein 1s ease forwards;
}
@keyframes fadein{
  100% { opacity: 1;}
}
/*------------------以下遅延の指定------------------*/ 
.txt01 { animation-delay: 0.5s;}
.txt02 { animation-delay: 1s;}
.txt03 { animation-delay: 1.5s;}
.txt04 { animation-delay: 2s;}



.fade_item{
  overflow: hidden; 
}
/*------------------下からフェードイン------------------*/
.fadeIn_up{
  opacity: 0;
  transform: translate(0, 50%);
  transition: 1s;
  
}
.fadeIn_up.is-show{
  transform: translate(0, 0);
  opacity: 1;
}
/*------------------左からフェードイン------------------*/
.fadeIn_left{
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 1s;
  overflow: hidden;
}
.fadeIn_left.is-show{
  transform: translate(0, 0);
  opacity: 1;
}
/*------------------右からフェードイン------------------*/
.fadeIn_right{
  opacity: 0;
  transform: translate(50%, 0);
  transition: 1s;
  overflow: hidden;
}
.fadeIn_right.is-show{
  transform: translate(0, 0);
  opacity: 1;
}



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

.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.1rem;
}

.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_copy{
  font-size: 3.7rem;
  font-weight: 600;
  padding-bottom: 34px;
}

.sub_title{
  font-size: 12rem;
  font-weight: 600;
  padding-bottom: 34px;
}
.sub_title>span{
  font-size: 10rem;
  font-weight: 600;  
}

.main_title{
  font-size: 15rem;
  font-weight: 600;
  padding-bottom: 60px;
}

.text{
  font-size: 1.8rem;
  line-height: 1.7;  
  font-weight: 400;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/  
}

.item_title{
  font-size: 2.3rem;
  font-weight: 600;
  padding-bottom: 10px;
}



/*------------------新しい広告媒体------------------*/
.ad_area{
  padding: 82px 0 180px;
}

.ad_title{
  padding-bottom: 18px;
}

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

.main_ill{
  padding-right: 38px;
}

.ad_copy{
  color: #ffee00;
  background: #c5005a;
  width: 586px;
  padding: 12px 0;
  margin-bottom: 32px;
  font-size: 2rem;
  font-weight: 400; 
  text-align: center;
  border-radius: 22px;
}



/*------------------こんなご希望はございませんか？------------------*/
.promotion_area{
  margin-bottom: 180px;
}

.promotion_title{
  font-size: 3.8rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  color: #009e96;
  padding-bottom: 30px;  
}

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

.promotion_pict>li{
  padding-right: 70px;  
}
.promotion_pict>li:last-child{
  padding-right: 0px;  
}

.true_title{
  color: #fff;
  background: #00a0e9;
  width: 785px;
  padding: 16px 0 10px;  
  font-size: 4.8rem;
  font-weight: 600;
  text-align: center;
  border-radius: 37px;  
  margin: 30px auto 0;  
}



/*------------------ここに広告が出せます!------------------*/
.feature_area{
  display: flex;
  align-items: flex-end; 
}

.smartphone{
  padding-right: 52px;
}

.feature_title{
  font-size: 4.3rem;
  font-weight: 600;
  color: #00aee9;
  padding-bottom: 26px;  
}

.feature_item_area{
  width: 626px;
}

.feature_item_area>li{
  padding-bottom: 36px;
}
.feature_item_area>li:last-child{
  padding-bottom: 0;
}

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

.red{
  color: #ea5532;
}

.red_area{
  width: 325px;
}

.orange{
  color: #f08437;  
}

.orange_area{
  width: 446px;  
}

.blue{
  color: #187fc4;
  line-height: 1.4;  
}

.blue_area{
  width: 498px;  
}
/*------------------広告主のSDGs------------------*/
.sdg_area{
  display: flex;
  justify-content: space-between;
  align-items: center; 
  padding: 60px 0 140px;
}

.sdg_title{
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 5px;
  color: #009b63;
}

.sdg_text{
  width: 750px;
  font-size: 1.6rem;
  line-height: 1.5;  
  font-weight: 400;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/  
}



/*------------------資料はこちらから------------------*/
.document_title{
  font-size: 7rem;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  color: #cd6d2b;
  padding: 10px 0 20px;
}
/*------------------ボタン------------------*/
.btn>a{
  margin: 0 auto;
  padding: 12px 0;   
  width: 460px;  
  display: block;  
  font-size: 2.4rem; 
  font-weight: 400;  
  text-align: center;  
  color: #ffee00;
  background: #1ac8f0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
}
.btn>a::before{
  content: "";
  width: 120%;
  height: 200%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  background: #c5005a;
  border-radius: 0 100% 100% 0;
  transform: translateX(-100%);
  transition: transform ease 0.5s;
}
.btn>a:hover{
  color: #ffee00;
}
.btn>a:hover::before{
  transform: translateX(10%);
}



/*------------------ページトップボタン------------------*/
.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_copy{
    font-size: 1.8rem;
    padding-bottom: 15px;
  }

  .sub_title{
    font-size: 4.4rem;
    padding-bottom: 10px;
  }
  .sub_title>span{
    font-size: 3.5rem;
  }

  .main_title{
    font-size: 8rem;
    line-height: 1.1;
    padding-bottom: 20px;
  }

  .text{
    font-size: 1.6rem;
    line-height: 1.5;  
  }

  .item_title{
    font-size: 2rem;
    padding-bottom: 7px;
    text-align: center;
  }



  /*------------------新しい広告媒体------------------*/
  .ad_area{
    padding: 30px 20px 60px;
  }

  .ad_title{
    padding-top: 20px;
    padding-bottom: 15px;
  }

  .ad_imfo{
    display: block; 
  }

  .main_ill{
    padding-right: 0;
  }

  .ad_copy{
    width: auto;
    padding: 10px 0;
    margin-bottom: 24px;
    font-size: 1.8rem;
    line-height: 1.2;
    border-radius: 10px;
  }



  /*------------------こんなご希望はございませんか？------------------*/
  .promotion_area{
    margin-bottom: 60px;
  }

  .promotion_title{
    font-size: 2.4rem;
    padding-bottom: 15px;  
  }

  .promotion_pict{
    display: block; 
  }

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

  .true_title{
    width: auto;
    padding: 14px 0 12px;  
    font-size: 2.2rem;
    border-radius: 15px;  
    margin: 16px auto 0;  
  }  

  

  /*------------------ここに広告が出せます!------------------*/
  .feature_area{
    display: block; 
  }

  .smartphone{
    padding-right: 0;
    padding-bottom: 30px;
  }

  .feature_title{
    font-size: 2.4rem;
    text-align: center;
    padding-bottom: 16px;  
  }

  .feature_item_area{
    width: auto;
  }

  .feature_item{
    display: block;
  }

  .feature_item_area>li{
    padding-bottom: 40px;
  }  
  
  .feature_item_sp{
    display: flex;
    justify-content: space-between; 
  }  
  
  .red_area{
    width: auto;
    padding-bottom: 10px;
  }

  .media01,.media04{
    text-align: center;
  }
  
  .orange_area{
    width: auto;
    line-height: 1.4;
  }

  .media02,.media03{
    width: 100%;
    margin-left: 18px;
  }
  
  .blue_area{
    width: auto;  
  }
  /*------------------広告主のSDGs------------------*/
  .sdg_area{
    display: block;
    padding: 44px 0 60px;
  }

  .sdg_title{
    padding-bottom: 7px;
    line-height: 1.4;
    text-align: center;
  }

  .sdg_text{
    width: auto;
    padding-bottom: 10px;
  }



  /*------------------資料はこちらから------------------*/
  .document_title{
    font-size: 3.6rem;
    padding: 10px 0 10px;
  }
  /*------------------ボタン------------------*/
  .btn>a{
    padding: 16px 0;   
    width: auto;  
    font-size: 1.8rem; 
    position: static;
  }

  
  
  /*------------------ページトップ------------------*/
  .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;
  } 
  
 }

















