@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, 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(200px);
  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(255,250,153) 50%);
  background: linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
  background-repeat: repeat-x;
  background-size: 200% .8em;
  background-position: 0 1em;
  transition: all 2s ease;
}



/*------------------ヘッダー------------------*/
.logo{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 28px 40px 25px;
}
/*------------------ヘッダー途中から固定------------------*/
.header_area{
  position: absolute; /*--子--*/
  width: 100%;
  z-index: 500;
  background: rgb(255, 255, 255, 0.9);
}

.header_area.fixed{
  position: fixed;
  top: 0;
}



/*------------------ナビゲーション------------------*/
.nav ul{
  display: flex;
}

.nav li{
  width: 25%; /*--1つの幅--*/
  text-align: center;
}

.nav li a{
  display: block;
  padding: 18px 0;
  background: #e60069;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.6s;     
}
.nav li a:hover{
  color: #e60069;  
  background: #faebd7;
}

.nav ul li{
  list-style: none;
  border-right: 1px solid #fff;
}
.nav ul li:last-child{
  border-right: none;
}

.mgl10{
  position: static;
  margin-left: 10px;
  border: none;
}



/*------------------ヘッダー部分------------------*/
.slider{
  position:relative; /*--親--*/
	z-index: 1;
	height: 100vh; /*縦幅を画面の高さいっぱい*/
}
/*------------------ヒーローイメージ------------------*/
.img01{
  background:url("../img/main01.jpg");
}
.img02{
  background:url("../img/main02.jpg");
}
.img03{
  background:url("../img/main03.jpg");
}
.img04{
  background:url("../img/main04.jpg");
}
.slider-item{
  width: 100%; /*横幅を画面の高さいっぱい*/
  height:100vh; /*縦幅を画面の高さいっぱい*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /*全体を覆い表示*/
}
/*------------------タイトル------------------*/
.main_area{
  position: relative; /*--親--*/
  z-index: 5;
}

.title_area{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.title_area>img{
  width: 100vw;
  height: 100%;  
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}



/*------------------スクロール------------------*/
.scroll_area{
  position: absolute; /*--子--*/
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 100;
}

a {
  color: #fff;
}
a span {
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@keyframes sdb {
  0% {transform: translate(0, 0); opacity: 0;}
  40% {opacity: 1;}
  80% {transform: translate(0, 20px); opacity: 0;
  }
  100% {opacity: 0;}
}
/*------------------ページ内リンク------------------*/
#head{
  margin-top:-0px;
  padding-top:0px;   
}
#header{
  width: 100%;
  background-color: #EA9D9F;
}


/*------------------リンクボタン------------------*/
.btn{
  width: 160px;
  margin: 0 auto;
}
.btn>a{
  display: block;
  padding: 6px 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #e60039;
  background: #fff;
  text-align: center;
  border: solid 1.4px #e60039;
  border-radius: 14px;
  transition: 0.6s;
}
.btn>a:hover{
  color: #fff;
  background: #e60069;
}



/*------------------冊子------------------*/
.magazine_area{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 300px 0 160px;
}
.magazine_area>li:nth-child(1){
  padding-right: 40px;
}

.magazine>li:nth-child(1){
  padding-bottom: 8px;  
  font-size: 1.6rem;
  font-weight: 600;
}
.magazine>li:nth-child(2){
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 8px;
}
.magazine>li:nth-child(3){
  padding-bottom: 18px;
}
.magazine>li:nth-child(3)>span{
  font-size: 4rem;
  font-weight: 800; 
  color: #880025;
}

.magazine_text>li:nth-child(-n+4)>span{ /*--4番目まで--*/
  font-size: 2.8rem;
  font-weight: 700;
}
.magazine_text>li:nth-child(n+5){ /*--5番目から--*/
  padding-bottom: 14px;
  font-size: 1.6rem;
  font-weight: 400;
}
.magazine_text>li{
  padding-bottom: 18px;
}
.magazine_text>li:last-child{
  padding-bottom: 0;
}

.m_text_low{
  font-size: 1.8rem;
  font-weight: 600;
  margin-right: 5px;
}

.mg4{
  margin: 0 16px;
  font-weight: 800;
}

.mgl6{
  margin-left: 6px;
}



/*------------------ドライブスポット------------------*/
.drive_area{
  position: relative; /*--親--*/
  margin-bottom: 100px;
}

.drive_catch{
  font-size: 10rem;
  font-weight: 900;
  letter-spacing: -5px;
  color: #880025;
  opacity: 0.2; /*--20%--*/
  position: absolute; /*--子--*/
  top: -80px;
  left: -50px;
}

.car_img{
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
}

.car_sb_img>li{
  padding-bottom: 10px;
}
.car_sb_img>li:last-child{
  padding-bottom: 0;
}

.drive_copy{
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 16px;
}

.drive_lead{
  font-size: 3rem;
  font-weight: 900;
  color: #880025;
  padding-bottom: 10px;
}

.drive_title>span{
  font-size: 4.2rem;
  font-weight: 900;
  color: #880025;
}

.mag20{
  margin: 0 20px;
  font-weight: 900;  
}

.drive_text{
  font-size: 1.9rem;
  line-height: 1.8;
  font-weight: 400;
  padding: 30px 0 30px;
}



/*------------------コンテンツ------------------*/
.content_area{
  background-color: #f7ecea;
  padding: 50px 0;
  margin-bottom: 140px;
}

.cassette_area{
  display: flex;
  justify-content: space-between; 
}

.content_item>li:nth-child(2)>h2{
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #880025;
  padding: 14px 0 7px;
}
.content_item>li:nth-child(3){
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 20px;
}



/*------------------トピックス------------------*/
.topic_area{
  position: relative; /*--親--*/
  padding: 40px 32px 32px;
  background-color: #880025;
  margin-bottom: 140px;
  box-sizing: border-box;
}

.topic_catch{
  font-size: 10rem;
  font-weight: 900;
  letter-spacing: -5px; /*--文字間--*/
  color: #f7ecea;
  mix-blend-mode: overlay;
  position: absolute; /*--子--*/
  top: -80px;
  left: -40px;
}

.topic_item>li{
  background: #fff;
  border-radius: 20px;
}
.topic_item>li:nth-child(1){
  margin-bottom: 40px;
}
.topic_item>li:nth-child(2){
  position: relative; /*--親--*/  
  background: repeating-linear-gradient(-45deg, rgba(251, 246, 222, 1), rgba(251, 246, 222, 1) 10px, rgba(254, 253, 245, 1) 0, rgba(254, 253, 245, 1) 20px);
}



/*------------------野球チーム------------------*/
.waves_area{
  padding: 16px 30px 34px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.waves>li:nth-child(1)>h2{
  padding-bottom: 24px;
  font-size: 3.8rem;
  font-weight: 700;
}
.waves>li:nth-child(2)>h3{
  margin: -5.6px 0;
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1.3;
  color: #be9a64;
}

.waves_text{
  margin: -5.6px 0; 
  padding: 0 30px;
  font-size: 1.6rem;
  font-weight: 400;  
  line-height: 1.7;  
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/   
}

.waves_content{
  margin-top: 34px; 
  padding: 30px;
  background: #eadecb;   
}
.waves_content>li:nth-child(1){
  padding-bottom: 50px;   
}

.w_headline{
  font-size: 2.2rem;
  font-weight: 600;  
  text-align: center;
  color: #be9a64;  
}

.w_region{
  display: flex;
  justify-content: center;  
  align-items: center;
}
.w_region>li:nth-child(1){
  padding-right: 24px;   
}
.w_region>li:nth-child(2){
  margin: -3.2px 0;    
  font-size: 1.6rem;
  font-weight: 500;  
  line-height: 1.4;   
}

.head_area{
  margin-bottom: 16px;
  padding: 20px 0;
  background: #fff;
}

.waves_item{
  display: flex;
  justify-content: space-between;
}
.waves_item>li{
  width: 280px;
}

.w_item>li:nth-child(1){
  padding-bottom: 8px; 
}
.w_item>li:nth-child(2){
  margin: -3.2px 0;    
  font-size: 1.6rem;
  font-weight: 400;  
  line-height: 1.4;  
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/ 
}

.waves_btn{
  width: 240px;
}
.waves_btn>a{
  padding: 10px 0;
  color: #fff;
  background: #be9a64;
  border: none;
  border-radius: 14px;
  transition: 0.6s;
}
.waves_btn>a:hover{
  color: #be9a64;
  background: #fff;
}

.waves_support{
  padding: 20px 0;
  background: #000;
  border-radius: 0 0 20px 20px;
}
.waves_support>li:nth-child(1)>h4{
  padding-bottom: 16px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #be9a64;
}



/*------------------きずな物語------------------*/
.event_title{
  position: relative; /*--親--*/
  padding: 0 30px 28px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 10;
}
.event_title>li:nth-child(2)>p{
  padding-bottom: 22px;
  margin: -5.4px 0;
  width: 460px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/  
}
.event_title>li:nth-child(2)>p>span{
  display: block;  
  font-size: 1rem;
  font-weight: 300;  
}

.event_story{
  position: relative; /*--親--*/
  padding: 0 30px;
  display: flex;
  justify-content: space-between; 
  flex-wrap: wrap;
  z-index: 10;
}

.event_content{
  position: relative; /*--親--*/
  margin-bottom: 38px;
  padding: 60px 16px 15px;
  display: flex;
  flex-direction: column;
  width: 436px;
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: 5px 5px 5px #b2b2b2;
}
.event_content>li:nth-child(1)>h3{
  padding-left: 54px;
}
.event_content>li:nth-child(2){
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.event_content>li:nth-child(2)>p{
  flex-grow: 1;
  margin: -5px 0;
  padding: 14px 0 18px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/  
}

.event_sub_img{
  padding-top: 10px;
  display: flex;
  justify-content: space-between;  
}

.place{
  position: absolute; /*--子--*/
  top: -20px;
  left: -20px;
}

.time{
  position: absolute; /*--子--*/  
  top: -14px;
  left: 80px;
  padding: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #fff; 
  background: #f39939;
  border-radius: 8px;
}
.time>span{
  font-size: 2.4rem;
  font-weight: 800;
}

.store{
  position: absolute; /*--子--*/  
  top: 12px;
  left: 190px;
  padding: 8px 15px;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: #8f0108;
  transform: rotate(-4deg);
}

.store_map{
  padding-top: 76px;
}

.company{
  position: relative; /*--親--*/
  padding-bottom: 30px;
  text-align: center;
  z-index: 10;
}


.a_ill{
  position: absolute; /*--子--*/  
  top: 10px;
  right: 10px;
}

.b_store{
  left: auto;
  right: -10px;
}

.b_ill{
  position: absolute; /*--子--*/  
  top: 40px;
  right: -60px;
}

.c_ill{
  position: absolute; /*--子--*/  
  top: -26px;
  right: 10px;
}

.d_ill{
  position: absolute; /*--子--*/  
  top: -36px;
  right: 10px;
}

.e_ill{
  position: absolute; /*--子--*/  
  top: -18px;
  right: 10px;
}

.f_ill{
  position: absolute; /*--子--*/  
  top: -18px;
  right: 10px;
}

.g_ill{
  position: absolute; /*--子--*/  
  top: -8px;
  right: -50px;
}

.event_patt01{
  position: absolute; /*--子--*/  
  top: 0;
  left: 0;
}
.event_patt01>img{
  width: 100vw;
  height: 100%;  
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.patt01{
  position: absolute; /*--子--*/  
  top: 200px;
  right: 70px;
}

.event_patt02{
  position: absolute; /*--子--*/  
  bottom: 0;
  left: 0;
}
.event_patt02>img{
  width: 100vw;
  height: 100%;  
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.patt02{
  position: absolute; /*--子--*/  
  bottom: 480px;
  right: 20px;
}



/*------------------KIZUNAマガジンとは------------------*/
.about_area{
  width: 820px;
  text-align: center;
  margin-top: 140px;
}

.about_title{
  font-size: 3.4rem;
  color: #790028;
  font-family: Noto Serif JP;
  padding: 18px 0 46px;
}

.about_catch{
  font-size: 2.4rem;
  font-weight: 500;
  color: #e60039;
  padding-bottom: 10px;
}

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



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

.PageTopBtn a{
  display: block; 
  color: #ff7f00;
  background: #fff;
  border: solid 2px #ff7f00;
  width: 90px;
  height: 50px;
  line-height: 3.5;
  text-align: center;
  border-radius: 10px;
  transition: 0.6s;
}

.PageTopBtn a:hover{
  color: #fff;
  background: #e60039;
  border: solid 2px #e60039;
}



/*------------------フッター------------------*/
.footer-area{
  margin-top: 100px;
  background-color: #f9f2f4;
  padding: 30px 0;
}

.footer_logo{
  display: flex;
  justify-content: space-between; 
  align-items: center;
  margin: 20px 40px 60px;
}

.copyright{
  font-size: 1rem; 
}





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





/*------------------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 20px 15px;
  }

  .logo_sp{
    width: 70vw;
  }  



  /*------------------ハンバーガーメニュー------------------*/
  .navToggle{
    margin-top: 15px;
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    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 ul{
    display: block; /*---解除---*/
  }  
  
  nav{
    width: 250px; /*---メニュー幅---*/
    height: 100%;
    padding-top: 50px;
    background-color: rgb(0, 0, 51, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translate(250px);
    transition: all .5s;
  }

  .nav li{
    width: auto; /*--1つの幅--*/
  }
 
  .nav li a{
    padding: 40px 0;
    background: none;
    font-size: 1.9rem;
    line-height: 1.5;
  }

  .nav ul li{
    border-right: none;
  }

  .mgl10{
    margin-left: 0;
  }  
  /*------------------スクロール------------------*/
  a span::before { /*--解除--*/
    position: static;
  }
  
  
  
  /*------------------ふわっと表示------------------*/
  .fadein{
    opacity : 0;
    transform: translateY(80px);
    transition: all 1s;
  }
  
  
  
  /*------------------ヘッダー------------------*/  
  .header_area{
    position: absolute; /*--子--*/
    width: 100%;
    z-index: 500;
    background: rgb(255, 255, 255, 0.9);
  }  
  /*------------------背景画像設定------------------*/
  .img01_sp{
    background:url("../img/main01_sp.jpg");
  }
  .img02_sp{
    background:url("../img/main02_sp.jpg");
  }
  .img03_sp{
    background:url("../img/main03_sp.jpg");
  }
  .img04_sp{
    background:url("../img/main04_sp.jpg");
  } 
  .slider-item{
    width: 100vw; /*横幅を画面の高さいっぱい*/
    height: 100vh; /*縦幅を画面の高さいっぱい*/
    background-repeat: no-repeat; /*リピートしない*/
    background-position: center; /*中央に*/
    background-size: cover; /*全体を覆い表示*/
  }  
 
  
  
  /*------------------詳しく見る------------------*/
  .btn{
    width: 180px;
  }

  .btn>a{
    font-size: 1.8rem;
    padding: 10px 0;  
  }

  
  
  /*------------------冊子------------------*/
  .magazine_area{
    display: block;
    padding: 0 0 0;
    margin: 140px 0 100px;
  } 
  .magazine_area>li:nth-child(1){
    padding-right: 0;
    padding-bottom: 20px;
    margin: 0 50px;  
  }
  
  .magazine{
    text-align: center;
  }
  .magazine>li:nth-child(1){
    font-size: 2rem;
  }
  .magazine>li:nth-child(2){
    font-size: 2.4rem;
    padding-bottom: 6px;
  }
  .magazine>li:nth-child(3){
    padding-bottom: 10px;
  }  
  .magazine>li:nth-child(3)>span{
    font-size: 3.2rem;
    line-height: 1.2;
  }
  
  .magazine_text{
    text-align: center;
  }   
  .magazine_text>li{
    padding-bottom: 6px;
  }  
  .magazine_text>li:nth-child(-n+4)>span{ /*--4番目まで--*/
    font-size: 2.4rem;
    line-height: 1.2;
  }
  .magazine_text>li:nth-child(n+5){ /*--5番目から--*/
    line-height: 1.3;
  }
  
  .m_text_low{
    font-size: 1.4rem;
    margin-right: 4px;
  }  

  
  
  /*------------------ドライブ------------------*/
  .drive_area{
    margin-bottom: 50px;
  }

  .drive_catch{
    font-size: 6rem;
    top: -45px;
    left: 8px;
  }

  .car_img{
    display: block; /*--解除--*/
    padding-bottom: 26px;
    width: 100vw;
    margin: calc(50% - 50vw);
  }

  .car_sb_img{
    display: flex;
    justify-content: space-between; /*--両端配置、均等に間隔--*/
  }
  
  .car_sb_img>li{
    padding-bottom: 0;
  }
  
  .drive_copy{
    font-size: 1.8rem;
    line-height: 1.4;
    padding-bottom: 2px;
  }  

  .drive_title>span{
    font-size: 3.4rem;
    line-height: 1.3;
  }

  .mag20{
    margin: 0;
    margin-left: 10px;
  }  
  
  .drive_text{
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 10px 0 18px;
    text-align: justify;
    text-justify: inter-ideograph; /*--edge--*/
  }  

  
  
  /*------------------コンテンツ------------------*/
  .content_area{
    padding: 32px 0;
    margin-bottom: 60px;
  }

  .cassette_area{
    display: block; /*--解除--*/
  }

  .cassette_area>li{
    padding-bottom: 42px;
  }
  .cassette_area>li:last-child{
    padding-bottom: 0;
  }
  
  .cassette{
    width: auto;
  }

  .content_title{
    font-size: 3rem;
    line-height: 1.2;
    padding: 6px 0 5px;
  }

  .content_text{
    font-size: 1.8rem;
    line-height: 1.4;
  }

  

  /*------------------トピックス------------------*/
  .topic_area{
    padding: 15px 15px 15px;
    margin-bottom: 70px;
  }

  .topic_catch{
    font-size: 7rem;
    top: -50px;
    left: 56vw;
    z-index: 10;
    opacity: 0.8;
  }

  .topic_item>li{
    border-radius: 10px;
  }
  .topic_item>li:nth-child(1){
    margin-bottom: 30px;
  }

  
  
  /*------------------野球チーム------------------*/
  .waves_area{
    padding: 21px 12px 15px;
    display: block;
  }

  .waves>li:nth-child(1)>h2{
    padding-bottom: 12px;
    font-size: 2.4rem;
    text-align: center;
  }
  .waves>li:nth-child(2)>h3{
    margin: -3.9px 0;
    font-size: 2.6rem;
    line-height: 1.3;
    text-align: center;
  }

  .waves_text{
    padding: 0 12px;  
  }

  .waves_content{
    margin-top: 24px; 
    padding: 20px 12px 24px;
  }
  .waves_content>li:nth-child(1){
    padding-bottom: 26px;   
  }

  .w_headline{
    margin: -2.4px 0;
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .w_region{
    display: block;
  }
  .w_region>li:nth-child(1){
    padding-right: 24px;   
  }
  .w_region>li:nth-child(2){
    padding-top: 6px;
    margin: -1.8px 0;    
    font-size: 1.2rem;
    line-height: 1.3;  
    text-align: justify;
    text-justify: inter-ideograph; /*--edge--*/ 
  }

  .head_area{
    margin-bottom: 12px;
    padding: 8px 12px;
  }

  .waves_item>li{
    width: 48%;
  }

  .w_item>li:nth-child(2){
    margin: -1.8px 0;    
    font-size: 1.2rem;
    line-height: 1.3;  
  }

  .waves_btn{
    width: auto;
  }
  .waves_btn>a{
    transition: none;
  }

  .waves_support{
    padding: 20px 30px 26px;
    border-radius: 0 0 10px 10px;
  }
  .waves_support>li:nth-child(1)>h4{
    margin: -3px 0;
    padding-bottom: 16px;
    font-size: 2rem;
    line-height: 1.3;
  }



  /*------------------きずな物語------------------*/
  .event_title{
    padding: 0 15px 0 15px;
    display: block;
  }

  .event_title>li:nth-child(1){
    padding-bottom: 10px;
    text-align: center;
  }  
  .event_title>li:nth-child(2)>p{
    padding-bottom: 30px;
    margin: -4.8px 0;
    width: auto;
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .event_story{
    padding: 0 16px;
    display: block;
  }

  .event_content{
    margin-bottom: 38px;
    padding: 50px 16px 15px;
    width: auto;
    border-radius: 10px;
    box-shadow: 3px 3px 5px #b2b2b2;
  }
  .event_content>li:nth-child(1)>h3{
    padding-left: 47px;
  }
  .event_content>li:nth-child(2)>p{
    padding: 12px 0 16px; 
  }

  .event_sub_img{
    padding-top: 0; 
  }

  .place{
    top: -16px;
    left: -14px;
    width: 18vw;
  }

  .time{
    font-size: 1.2rem;
  }
  .time>span{
    font-size: 1.8rem;
  }

  .store{
    top: 5px;
    left: 170px;
    padding: 8px 15px;
    font-size: 1.2rem;
  }  

  .store_map{
    padding-top: 0px;
  }

  .company{
    margin: 16px 24px 0;
    padding-bottom: 24px;
  }

  .a_ill{
    top: 5px;  
    width: 16vw;
  }

  .b_store{
    top: -10px;
    left: 190px;
    right: auto;
    line-height: 1.2;
  }

  .c_ill{
    width: 20vw;  
  }

  .d_ill{ 
    width: 18vw;
  }

  .e_ill{
    width: 22vw;  
  }

  .f_ill{
    right: 8px;
    width: 22vw;
  }

  .patt02{
    position: absolute; /*--子--*/  
    bottom: 420px;
    right: 10px;
  }
  

  
  /*------------------KIZUNAマガジンとは部分------------------*/
  .about_area{
    width: auto;
    margin-top: 0;
  }

  .about_title{
    font-size: 2.6rem;
    line-height: 1.5;
    padding: 10px 0 20px;
  }

  .about_catch{
    font-size: 2rem;
    padding-bottom: 10px;
  }

  .about_text{
    font-size: 1.7rem;
    line-height: 1.8;
  }   
  
  
  
  /*------------------ページトップ------------------*/
  .PageTopBtn{
    font-size: 1.4rem;
    position: fixed; /*配置場所を固定*/
    bottom: 15px; /*下からの位置*/
    right: 15px; /*右からの位置*/
  }

  
  
  /*------------------フッター------------------*/ 
  .footer-area{
    margin-top: 50px;  
    padding: 20px 0 20px 0;
  }

  .footer_logo{
    display: block;
    margin: 10px 20px 10px;
  }
  
  .w_logo_bot{
    margin: 0 auto;
  }
  
  .copyright{
    font-size: 1.2rem; 
    line-height: normal;
    padding: 10px 0 0;
  }

  
  
 }















