@charset "utf-8";
/* CSS Document */
/*===============================================
●pc 画面の横幅が737px以上
===============================================*/
@media screen and (min-width: 737px) {
 div#atenbnr {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
 }
 /*=============btn=============*/
 div#atenbnr .btn {
  width: 100%;
  font-weight: bold;
  text-align: left;
  border-radius: 10px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #000;
  display: inline-block;
  margin: 3% 0 0 0;
  padding: 1.7%;
  box-sizing: border-box;
 }
 div#atenbnr .btn h3 {
  font-family: 'Zen Old Mincho', serif;
  color: #000;
  font-size: clamp(1.16rem, 4vw, 1.66rem);
 }
 div#atenbnr .txt {
  font-size: 1.0666666666666667rem;
  margin: 10px 0;
  padding: 0;
  font-weight: normal;
 }
 div#atenbnr ul {
  width: 100%;
  font-weight: normal;
 }
 div#atenbnr li {
  font-size: 1.0666666666666667rem;
 }
 div#atenbnr .arrow_list li a {
  position: relative;
  padding-left: 1rem;
 }
 div#atenbnr .arrow_list li a:after {
  content: '';
  width: 0;
  height: 0;
  display: inline-block;
  border-top: 3px solid #007DB8;
  border-left: 3px solid #007DB8;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(135deg);
 }
}
/*===============================================
●sp  画面の横幅が736pxまで
===============================================*/
@media screen and (max-width : 736px) {
 div#atenbnr {
  width: 94%;
  margin: 0 auto;
  padding: 0;
 }
 div#atenbnr .btn {
  width: 100%;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #000;
  display: inline-block;
  margin: 3% 0;
  padding: 3%;
  box-sizing: border-box;
 }
 div#atenbnr .btn h3 {
  font-family: 'Zen Old Mincho', serif;
  color: #000;
  font-size: clamp(1.26rem, 3vw, 1.66rem);
  font-weight: bold;
 }
 div#atenbnr .txt {
  font-size: .899em;
  margin: 8px 0;
  padding: 0;
  text-align: left;
 }
 div#atenbnr ul {
  width: 100%;
  text-align: left;
  font-weight: normal;
 }
 div#atenbnr li {
  font-size: 1rem;
 }
 div#atenbnr .arrow_list li a {
  position: relative;
  padding-left: 1rem;
 }
 div#atenbnr .arrow_list li a:after {
  content: '';
  width: 0;
  height: 0;
  display: inline-block;
  border-top: 3px solid #007DB8;
  border-left: 3px solid #007DB8;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(135deg);
 }
}