@charset "utf-8";

/*----------------------------------------------------------------------------------------------------

  Main Catch / メインキャッチコピー部分

----------------------------------------------------------------------------------------------------　*/

.catch{
  position: relative;
  height: calc( 100vh - 190px );
  display: flex;
  align-items: center;
  margin: 0px;
  text-align: center;
  border-top: 1px #dfdfdf solid;
  background: #f0f0f0 url(../img/catch-bg.jpg) center/cover no-repeat;
}

.catch .in{
  width: 1000px;
  margin: 0px auto;
  text-align: left;
}

main.home .catch h2{
  position: relative;
  display: inline-block;
  margin: 0px 0px 0px 50px;
  padding: 30px;
  color: #fff;
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: left;
  text-shadow: 2px 2px 3px #f39600;
  border-radius: 5px;
  background: rgba(243, 150, 0, 0.3);
  box-shadow: 5px 5px 10px 3px #fff;
}

main.home .catch h2::before,
main.home .catch h2::after{
  display: none;
}


@media only screen and ( max-width: 1019px ){
  .catch{
    height: auto;
  }

  .catch .in{
    width: 100%;
    margin: 0px 25px;
    padding: 125px 0px;
    text-align: center;
  }

  main.home .catch h2{
    margin: 0px;
    font-size: 3.8rem;
    line-height: 1.25;
  }
}


@media only screen and ( max-width: 640px ){
  .catch .in{
    margin: 0px 15px;
    padding: 75px 0px;
  }

  main.home .catch h2{
    padding: 20px 15px;
    font-size: 2.7rem;
    line-height: 1.3;
  }
}



/*----------------------------------------------------------------------------------------------------

  Topics / 1行ニュース・お知らせ

----------------------------------------------------------------------------------------------------　*/

.topics{
  position: relative;
  display: flex;
  width: 1000px;
  margin: -30px auto 0px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px 0px #ccc;
  z-index: 100;
}

.topics p{
  width: 120px;
  height: 100%;
  color: #2f2f2f;
  font-size: 2.0rem;
  font-family: "EB Garamond", sans-serif;
  text-align: center;
  line-height: 60px;
  border-radius: 5px 0px 0px 5px;
  background-color: #efefef;
}

.topics .topicsbox{
  width: 1000px;
}

.topics .topicsbox dl{
  width: 100%;
  margin: 0px;
  text-align: left;
}

.topics .topicsbox dl dt{
  display: block;
  width: 100%;
  margin: 0px;
  padding: 0px 0px 0px 30px;
  color: #4f4f4f;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  text-decoration: underline;
  line-height: 58px;
}

.topics .topicsbox dl dt:hover{
  color: #f39600;
}

.topics .topicsbox dl dt::after{
  position: absolute;
  top: 0px;
  right: 12px;
  font-family: "Font Awesome 5 Free";
  content: '\f13a';
  color: #9f9f9f;
  font-size: 2.0rem;
  font-weight: 900;
}

.topics .topicsbox dl dt:hover::after{
  color: #f39600;
}

.topics .topicsbox dl dt span{
  display: inline-block;
  margin-right: 10px;
}

.topics .topicsbox dl dt span::after{
  content: "－";
  margin-left: 10px;
  font-size: 1.0rem;
}

.topics .topicsbox dl dd{
  position: relative;
  width: calc( 100% + 65px );
  display: block;
  margin: 15px 0px 15px -85px;
  padding: 15px 0px 12px;
  font-size: 1.6rem;
}


@media only screen and ( max-width: 1019px ){
  .topics{
    width: auto;
    margin: 0px;
    border-radius: 0px;
  }

  .topics p{
    width: 20%;
    font-size: 1.8rem;
    line-height: 50px;
    border-radius: 0px;
  }

  .topics .topicsbox{
    width: 80%;
  }

  .topics .topicsbox dl dt{
    padding: 2px 0px 0px 15px;
    font-size: 1.4rem;
    line-height: 44px;
  }

  .topics .topicsbox dl dt::after{
    top: 3px;
    right: 10px;
    font-size: 1.6rem;
  }

  .topics .topicsbox dl dt span{
    margin-right: 5px;
    font-size: 1.5rem;
  }

  .topics .topicsbox dl dt span::after{
    content: "－";
    margin-left: 5px;
    font-size: 0.8rem;
  }

  .topics .topicsbox dl dd{
    width: 120%;
    display: block;
    margin: 15px 0px 15px -20%;
    padding: 10px 10px 10px 0px;
    font-size: 1.5rem;
  }
}
